blob: 6da12e522edc0192b2d1585ea0898d1b519b9948 [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>
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -030022#ifdef HAVE_LIBBPF_SUPPORT
Song Liu606f9722019-03-11 22:30:43 -070023#include <bpf/libbpf.h>
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -030024#endif
Jiri Olsa9c3516d2019-07-21 13:24:30 +020025#include <perf/cpumap.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020026
Arnaldo Carvalho de Melo4a3cec82019-08-30 11:11:01 -030027#include "dso.h"
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020028#include "evlist.h"
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -030029#include "evsel.h"
Arnaldo Carvalho de Meloca125272019-09-24 15:41:51 -030030#include "util/evsel_fprintf.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020031#include "header.h"
Arnaldo Carvalho de Melo98521b32017-04-25 15:45:35 -030032#include "memswap.h"
Frederic Weisbecker03456a12009-10-06 23:36:47 +020033#include "trace-event.h"
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -020034#include "session.h"
Frederic Weisbecker8671dab2009-11-11 04:51:03 +010035#include "symbol.h"
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +010036#include "debug.h"
Stephane Eranianfbe96f22011-09-30 15:40:40 +020037#include "cpumap.h"
Robert Richter50a96672012-08-16 21:10:24 +020038#include "pmu.h"
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020039#include "vdso.h"
Namhyung Kima1ae5652012-09-24 17:14:59 +090040#include "strbuf.h"
Jiri Olsaebb296c2012-10-27 23:18:28 +020041#include "build-id.h"
Jiri Olsacc9784bd2013-10-15 16:27:34 +020042#include "data.h"
Jiri Olsa720e98b2016-02-16 16:01:43 +010043#include <api/fs/fs.h>
44#include "asm/bug.h"
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -070045#include "tool.h"
Jin Yao60115182017-12-08 21:13:41 +080046#include "time-utils.h"
Jiri Olsae2091ce2018-03-07 16:50:08 +010047#include "units.h"
Jiri Olsa20f2be12019-08-06 15:25:25 +020048#include "util/util.h" // perf_exe()
Jiri Olsa5135d5e2019-02-19 10:58:13 +010049#include "cputopo.h"
Song Liu606f9722019-03-11 22:30:43 -070050#include "bpf-event.h"
Dave Marchevsky6ac22d02021-10-11 01:20:30 -070051#include "bpf-utils.h"
Jiri Olsad1e325c2020-08-05 11:34:40 +020052#include "clockid.h"
Jin Yaoe1190832021-05-14 20:29:48 +080053#include "pmu-hybrid.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020054
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030055#include <linux/ctype.h>
Arnaldo Carvalho de Melofb71c86c2019-09-03 10:56:06 -030056#include <internal/lib.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030057
Stephane Eranian73323f52012-02-02 13:54:44 +010058/*
59 * magic2 = "PERFILE2"
60 * must be a numerical value to let the endianness
61 * determine the memory layout. That way we are able
62 * to detect endianness when reading the perf.data file
63 * back.
64 *
65 * we check for legacy (PERFFILE) format.
66 */
67static const char *__perf_magic1 = "PERFFILE";
68static const u64 __perf_magic2 = 0x32454c4946524550ULL;
69static const u64 __perf_magic2_sw = 0x50455246494c4532ULL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020070
Stephane Eranian73323f52012-02-02 13:54:44 +010071#define PERF_MAGIC __perf_magic2
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020072
Soramichi AKIYAMAd25ed5d2017-01-17 00:22:37 +090073const char perf_version_string[] = PERF_VERSION;
74
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020075struct perf_file_attr {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020076 struct perf_event_attr attr;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020077 struct perf_file_section ids;
78};
79
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030080void perf_header__set_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020081{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030082 set_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020083}
84
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030085void perf_header__clear_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020086{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030087 clear_bit(feat, header->adds_features);
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020088}
89
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030090bool perf_header__has_feat(const struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020091{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030092 return test_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020093}
94
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -070095static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size)
96{
97 ssize_t ret = writen(ff->fd, buf, size);
98
99 if (ret != (ssize_t)size)
100 return ret < 0 ? (int)ret : -1;
101 return 0;
102}
103
104static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size)
105{
106 /* struct perf_event_header::size is u16 */
107 const size_t max_size = 0xffff - sizeof(struct perf_event_header);
108 size_t new_size = ff->size;
109 void *addr;
110
111 if (size + ff->offset > max_size)
112 return -E2BIG;
113
114 while (size > (new_size - ff->offset))
115 new_size <<= 1;
116 new_size = min(max_size, new_size);
117
118 if (ff->size < new_size) {
119 addr = realloc(ff->buf, new_size);
120 if (!addr)
121 return -ENOMEM;
122 ff->buf = addr;
123 ff->size = new_size;
124 }
125
126 memcpy(ff->buf + ff->offset, buf, size);
127 ff->offset += size;
128
129 return 0;
130}
131
Ingo Molnar4d39c892021-03-23 17:09:15 +0100132/* Return: 0 if succeeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700133int do_write(struct feat_fd *ff, const void *buf, size_t size)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200134{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700135 if (!ff->buf)
136 return __do_write_fd(ff, buf, size);
137 return __do_write_buf(ff, buf, size);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200138}
139
Ingo Molnar4d39c892021-03-23 17:09:15 +0100140/* Return: 0 if succeeded, -ERR if failed. */
Jiri Olsae2091ce2018-03-07 16:50:08 +0100141static int do_write_bitmap(struct feat_fd *ff, unsigned long *set, u64 size)
142{
143 u64 *p = (u64 *) set;
144 int i, ret;
145
146 ret = do_write(ff, &size, sizeof(size));
147 if (ret < 0)
148 return ret;
149
150 for (i = 0; (u64) i < BITS_TO_U64(size); i++) {
151 ret = do_write(ff, p + i, sizeof(*p));
152 if (ret < 0)
153 return ret;
154 }
155
156 return 0;
157}
158
Ingo Molnar4d39c892021-03-23 17:09:15 +0100159/* Return: 0 if succeeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700160int write_padded(struct feat_fd *ff, const void *bf,
161 size_t count, size_t count_aligned)
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200162{
163 static const char zero_buf[NAME_ALIGN];
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700164 int err = do_write(ff, bf, count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200165
166 if (!err)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700167 err = do_write(ff, zero_buf, count_aligned - count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200168
169 return err;
170}
171
Kan Liang2bb00d22015-09-01 09:58:12 -0400172#define string_size(str) \
173 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
174
Ingo Molnar4d39c892021-03-23 17:09:15 +0100175/* Return: 0 if succeeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700176static int do_write_string(struct feat_fd *ff, const char *str)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200177{
178 u32 len, olen;
179 int ret;
180
181 olen = strlen(str) + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300182 len = PERF_ALIGN(olen, NAME_ALIGN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200183
184 /* write len, incl. \0 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700185 ret = do_write(ff, &len, sizeof(len));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200186 if (ret < 0)
187 return ret;
188
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700189 return write_padded(ff, str, olen, len);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200190}
191
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700192static int __do_read_fd(struct feat_fd *ff, void *addr, ssize_t size)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700193{
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700194 ssize_t ret = readn(ff->fd, addr, size);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700195
196 if (ret != size)
197 return ret < 0 ? (int)ret : -1;
198 return 0;
199}
200
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700201static int __do_read_buf(struct feat_fd *ff, void *addr, ssize_t size)
202{
203 if (size > (ssize_t)ff->size - ff->offset)
204 return -1;
205
206 memcpy(addr, ff->buf + ff->offset, size);
207 ff->offset += size;
208
209 return 0;
210
211}
212
213static int __do_read(struct feat_fd *ff, void *addr, ssize_t size)
214{
215 if (!ff->buf)
216 return __do_read_fd(ff, addr, size);
217 return __do_read_buf(ff, addr, size);
218}
219
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700220static int do_read_u32(struct feat_fd *ff, u32 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700221{
222 int ret;
223
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700224 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700225 if (ret)
226 return ret;
227
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700228 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700229 *addr = bswap_32(*addr);
230 return 0;
231}
232
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700233static int do_read_u64(struct feat_fd *ff, u64 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700234{
235 int ret;
236
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700237 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700238 if (ret)
239 return ret;
240
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700241 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700242 *addr = bswap_64(*addr);
243 return 0;
244}
245
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700246static char *do_read_string(struct feat_fd *ff)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200247{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200248 u32 len;
249 char *buf;
250
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700251 if (do_read_u32(ff, &len))
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200252 return NULL;
253
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200254 buf = malloc(len);
255 if (!buf)
256 return NULL;
257
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700258 if (!__do_read(ff, buf, len)) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200259 /*
260 * strings are padded by zeroes
261 * thus the actual strlen of buf
262 * may be less than len
263 */
264 return buf;
265 }
266
267 free(buf);
268 return NULL;
269}
270
Ingo Molnar4d39c892021-03-23 17:09:15 +0100271/* Return: 0 if succeeded, -ERR if failed. */
Jiri Olsae2091ce2018-03-07 16:50:08 +0100272static int do_read_bitmap(struct feat_fd *ff, unsigned long **pset, u64 *psize)
273{
274 unsigned long *set;
275 u64 size, *p;
276 int i, ret;
277
278 ret = do_read_u64(ff, &size);
279 if (ret)
280 return ret;
281
Andy Shevchenko7fc5b572021-09-07 19:59:35 -0700282 set = bitmap_zalloc(size);
Jiri Olsae2091ce2018-03-07 16:50:08 +0100283 if (!set)
284 return -ENOMEM;
285
Jiri Olsae2091ce2018-03-07 16:50:08 +0100286 p = (u64 *) set;
287
288 for (i = 0; (u64) i < BITS_TO_U64(size); i++) {
289 ret = do_read_u64(ff, p + i);
290 if (ret < 0) {
291 free(set);
292 return ret;
293 }
294 }
295
296 *pset = set;
297 *psize = size;
298 return 0;
299}
300
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700301static int write_tracing_data(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200302 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200303{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700304 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
305 return -1;
306
Jiri Olsace9036a2019-07-21 13:24:23 +0200307 return read_tracing_data(ff->fd, &evlist->core.entries);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200308}
309
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700310static int write_build_id(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200311 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200312{
313 struct perf_session *session;
314 int err;
315
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700316 session = container_of(ff->ph, struct perf_session, header);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200317
Robert Richtere20960c2011-12-07 10:02:55 +0100318 if (!perf_session__read_build_ids(session, true))
319 return -1;
320
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700321 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
322 return -1;
323
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700324 err = perf_session__write_buildid_table(session, ff);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200325 if (err < 0) {
326 pr_debug("failed to write buildid table\n");
327 return err;
328 }
Namhyung Kim73c5d222014-11-07 22:57:56 +0900329 perf_session__cache_build_ids(session);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200330
331 return 0;
332}
333
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700334static int write_hostname(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200335 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200336{
337 struct utsname uts;
338 int ret;
339
340 ret = uname(&uts);
341 if (ret < 0)
342 return -1;
343
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700344 return do_write_string(ff, uts.nodename);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200345}
346
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700347static int write_osrelease(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200348 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200349{
350 struct utsname uts;
351 int ret;
352
353 ret = uname(&uts);
354 if (ret < 0)
355 return -1;
356
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700357 return do_write_string(ff, uts.release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200358}
359
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700360static int write_arch(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200361 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200362{
363 struct utsname uts;
364 int ret;
365
366 ret = uname(&uts);
367 if (ret < 0)
368 return -1;
369
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700370 return do_write_string(ff, uts.machine);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200371}
372
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700373static int write_version(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200374 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200375{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700376 return do_write_string(ff, perf_version_string);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200377}
378
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700379static int __write_cpudesc(struct feat_fd *ff, const char *cpuinfo_proc)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200380{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200381 FILE *file;
382 char *buf = NULL;
383 char *s, *p;
Wang Nan493c3032014-10-24 09:45:26 +0800384 const char *search = cpuinfo_proc;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200385 size_t len = 0;
386 int ret = -1;
387
388 if (!search)
389 return -1;
390
391 file = fopen("/proc/cpuinfo", "r");
392 if (!file)
393 return -1;
394
395 while (getline(&buf, &len, file) > 0) {
396 ret = strncmp(buf, search, strlen(search));
397 if (!ret)
398 break;
399 }
400
Wang Naned307752014-10-16 11:08:29 +0800401 if (ret) {
402 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200403 goto done;
Wang Naned307752014-10-16 11:08:29 +0800404 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200405
406 s = buf;
407
408 p = strchr(buf, ':');
409 if (p && *(p+1) == ' ' && *(p+2))
410 s = p + 2;
411 p = strchr(s, '\n');
412 if (p)
413 *p = '\0';
414
415 /* squash extra space characters (branding string) */
416 p = s;
417 while (*p) {
418 if (isspace(*p)) {
419 char *r = p + 1;
Arnaldo Carvalho de Melofc6a1722019-06-25 21:33:14 -0300420 char *q = skip_spaces(r);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200421 *p = ' ';
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200422 if (q != (p+1))
423 while ((*r++ = *q++));
424 }
425 p++;
426 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700427 ret = do_write_string(ff, s);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200428done:
429 free(buf);
430 fclose(file);
431 return ret;
432}
433
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700434static int write_cpudesc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200435 struct evlist *evlist __maybe_unused)
Wang Nan493c3032014-10-24 09:45:26 +0800436{
Arnaldo Carvalho de Meloa7749402019-08-29 14:40:28 -0300437#if defined(__powerpc__) || defined(__hppa__) || defined(__sparc__)
438#define CPUINFO_PROC { "cpu", }
439#elif defined(__s390__)
440#define CPUINFO_PROC { "vendor_id", }
441#elif defined(__sh__)
442#define CPUINFO_PROC { "cpu type", }
443#elif defined(__alpha__) || defined(__mips__)
444#define CPUINFO_PROC { "cpu model", }
445#elif defined(__arm__)
446#define CPUINFO_PROC { "model name", "Processor", }
447#elif defined(__arc__)
448#define CPUINFO_PROC { "Processor", }
449#elif defined(__xtensa__)
450#define CPUINFO_PROC { "core ID", }
451#else
452#define CPUINFO_PROC { "model name", }
453#endif
Wang Nan493c3032014-10-24 09:45:26 +0800454 const char *cpuinfo_procs[] = CPUINFO_PROC;
Arnaldo Carvalho de Meloa7749402019-08-29 14:40:28 -0300455#undef CPUINFO_PROC
Wang Nan493c3032014-10-24 09:45:26 +0800456 unsigned int i;
457
458 for (i = 0; i < ARRAY_SIZE(cpuinfo_procs); i++) {
459 int ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700460 ret = __write_cpudesc(ff, cpuinfo_procs[i]);
Wang Nan493c3032014-10-24 09:45:26 +0800461 if (ret >= 0)
462 return ret;
463 }
464 return -1;
465}
466
467
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700468static int write_nrcpus(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200469 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200470{
471 long nr;
472 u32 nrc, nra;
473 int ret;
474
Ian Rogers6d188042022-01-04 22:13:51 -0800475 nrc = cpu__max_present_cpu().cpu;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200476
477 nr = sysconf(_SC_NPROCESSORS_ONLN);
478 if (nr < 0)
479 return -1;
480
481 nra = (u32)(nr & UINT_MAX);
482
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700483 ret = do_write(ff, &nrc, sizeof(nrc));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200484 if (ret < 0)
485 return ret;
486
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700487 return do_write(ff, &nra, sizeof(nra));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200488}
489
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700490static int write_event_desc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200491 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200492{
Jiri Olsa32dcd022019-07-21 13:23:51 +0200493 struct evsel *evsel;
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900494 u32 nre, nri, sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200495 int ret;
496
Jiri Olsa6484d2f2019-07-21 13:24:28 +0200497 nre = evlist->core.nr_entries;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200498
499 /*
500 * write number of events
501 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700502 ret = do_write(ff, &nre, sizeof(nre));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200503 if (ret < 0)
504 return ret;
505
506 /*
507 * size of perf_event_attr struct
508 */
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200509 sz = (u32)sizeof(evsel->core.attr);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700510 ret = do_write(ff, &sz, sizeof(sz));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200511 if (ret < 0)
512 return ret;
513
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300514 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200515 ret = do_write(ff, &evsel->core.attr, sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200516 if (ret < 0)
517 return ret;
518 /*
519 * write number of unique id per event
520 * there is one id per instance of an event
521 *
522 * copy into an nri to be independent of the
523 * type of ids,
524 */
Jiri Olsae7eb9002019-09-02 22:15:47 +0200525 nri = evsel->core.ids;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700526 ret = do_write(ff, &nri, sizeof(nri));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200527 if (ret < 0)
528 return ret;
529
530 /*
531 * write event string as passed on cmdline
532 */
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300533 ret = do_write_string(ff, evsel__name(evsel));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200534 if (ret < 0)
535 return ret;
536 /*
537 * write unique ids for this event
538 */
Jiri Olsae7eb9002019-09-02 22:15:47 +0200539 ret = do_write(ff, evsel->core.id, evsel->core.ids * sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200540 if (ret < 0)
541 return ret;
542 }
543 return 0;
544}
545
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700546static int write_cmdline(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200547 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200548{
Andi Kleen94816ad2019-02-24 07:37:19 -0800549 char pbuf[MAXPATHLEN], *buf;
550 int i, ret, n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200551
Tommi Rantala55f771282017-03-22 15:06:24 +0200552 /* actual path to perf binary */
Andi Kleen94816ad2019-02-24 07:37:19 -0800553 buf = perf_exe(pbuf, MAXPATHLEN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200554
555 /* account for binary path */
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300556 n = perf_env.nr_cmdline + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200557
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700558 ret = do_write(ff, &n, sizeof(n));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200559 if (ret < 0)
560 return ret;
561
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700562 ret = do_write_string(ff, buf);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200563 if (ret < 0)
564 return ret;
565
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300566 for (i = 0 ; i < perf_env.nr_cmdline; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700567 ret = do_write_string(ff, perf_env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200568 if (ret < 0)
569 return ret;
570 }
571 return 0;
572}
573
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200574
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700575static int write_cpu_topology(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200576 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200577{
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100578 struct cpu_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200579 u32 i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300580 int ret, j;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200581
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100582 tp = cpu_topology__new();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200583 if (!tp)
584 return -1;
585
Ian Rogers48f07b02021-11-10 16:21:03 -0800586 ret = do_write(ff, &tp->package_cpus_lists, sizeof(tp->package_cpus_lists));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200587 if (ret < 0)
588 goto done;
589
Ian Rogers48f07b02021-11-10 16:21:03 -0800590 for (i = 0; i < tp->package_cpus_lists; i++) {
591 ret = do_write_string(ff, tp->package_cpus_list[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200592 if (ret < 0)
593 goto done;
594 }
Ian Rogers0b6b84c2021-11-10 16:21:05 -0800595 ret = do_write(ff, &tp->core_cpus_lists, sizeof(tp->core_cpus_lists));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200596 if (ret < 0)
597 goto done;
598
Ian Rogers0b6b84c2021-11-10 16:21:05 -0800599 for (i = 0; i < tp->core_cpus_lists; i++) {
600 ret = do_write_string(ff, tp->core_cpus_list[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200601 if (ret < 0)
602 break;
603 }
Kan Liang2bb00d22015-09-01 09:58:12 -0400604
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300605 ret = perf_env__read_cpu_topology_map(&perf_env);
606 if (ret < 0)
607 goto done;
608
609 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700610 ret = do_write(ff, &perf_env.cpu[j].core_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300611 sizeof(perf_env.cpu[j].core_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400612 if (ret < 0)
613 return ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700614 ret = do_write(ff, &perf_env.cpu[j].socket_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300615 sizeof(perf_env.cpu[j].socket_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400616 if (ret < 0)
617 return ret;
618 }
Kan Liangacae8b32019-06-04 15:50:41 -0700619
Ian Rogers406018d2021-11-10 16:21:04 -0800620 if (!tp->die_cpus_lists)
Kan Liangacae8b32019-06-04 15:50:41 -0700621 goto done;
622
Ian Rogers406018d2021-11-10 16:21:04 -0800623 ret = do_write(ff, &tp->die_cpus_lists, sizeof(tp->die_cpus_lists));
Kan Liangacae8b32019-06-04 15:50:41 -0700624 if (ret < 0)
625 goto done;
626
Ian Rogers406018d2021-11-10 16:21:04 -0800627 for (i = 0; i < tp->die_cpus_lists; i++) {
628 ret = do_write_string(ff, tp->die_cpus_list[i]);
Kan Liangacae8b32019-06-04 15:50:41 -0700629 if (ret < 0)
630 goto done;
631 }
632
633 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
634 ret = do_write(ff, &perf_env.cpu[j].die_id,
635 sizeof(perf_env.cpu[j].die_id));
636 if (ret < 0)
637 return ret;
638 }
639
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200640done:
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100641 cpu_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200642 return ret;
643}
644
645
646
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700647static int write_total_mem(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200648 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200649{
650 char *buf = NULL;
651 FILE *fp;
652 size_t len = 0;
653 int ret = -1, n;
654 uint64_t mem;
655
656 fp = fopen("/proc/meminfo", "r");
657 if (!fp)
658 return -1;
659
660 while (getline(&buf, &len, fp) > 0) {
661 ret = strncmp(buf, "MemTotal:", 9);
662 if (!ret)
663 break;
664 }
665 if (!ret) {
666 n = sscanf(buf, "%*s %"PRIu64, &mem);
667 if (n == 1)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700668 ret = do_write(ff, &mem, sizeof(mem));
Wang Naned307752014-10-16 11:08:29 +0800669 } else
670 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200671 free(buf);
672 fclose(fp);
673 return ret;
674}
675
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700676static int write_numa_topology(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200677 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200678{
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100679 struct numa_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200680 int ret = -1;
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100681 u32 i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200682
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100683 tp = numa_topology__new();
684 if (!tp)
685 return -ENOMEM;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200686
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100687 ret = do_write(ff, &tp->nr, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200688 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100689 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200690
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100691 for (i = 0; i < tp->nr; i++) {
692 struct numa_topology_node *n = &tp->nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200693
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100694 ret = do_write(ff, &n->node, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200695 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100696 goto err;
697
698 ret = do_write(ff, &n->mem_total, sizeof(u64));
699 if (ret)
700 goto err;
701
702 ret = do_write(ff, &n->mem_free, sizeof(u64));
703 if (ret)
704 goto err;
705
706 ret = do_write_string(ff, n->cpus);
707 if (ret < 0)
708 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200709 }
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100710
711 ret = 0;
712
713err:
714 numa_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200715 return ret;
716}
717
718/*
Robert Richter50a96672012-08-16 21:10:24 +0200719 * File format:
720 *
721 * struct pmu_mappings {
722 * u32 pmu_num;
723 * struct pmu_map {
724 * u32 type;
725 * char name[];
726 * }[pmu_num];
727 * };
728 */
729
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700730static int write_pmu_mappings(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200731 struct evlist *evlist __maybe_unused)
Robert Richter50a96672012-08-16 21:10:24 +0200732{
733 struct perf_pmu *pmu = NULL;
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700734 u32 pmu_num = 0;
Namhyung Kim5323f602012-12-17 15:38:54 +0900735 int ret;
Robert Richter50a96672012-08-16 21:10:24 +0200736
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700737 /*
738 * Do a first pass to count number of pmu to avoid lseek so this
739 * works in pipe mode as well.
740 */
741 while ((pmu = perf_pmu__scan(pmu))) {
742 if (!pmu->name)
743 continue;
744 pmu_num++;
745 }
746
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700747 ret = do_write(ff, &pmu_num, sizeof(pmu_num));
Namhyung Kim5323f602012-12-17 15:38:54 +0900748 if (ret < 0)
749 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200750
751 while ((pmu = perf_pmu__scan(pmu))) {
752 if (!pmu->name)
753 continue;
Namhyung Kim5323f602012-12-17 15:38:54 +0900754
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700755 ret = do_write(ff, &pmu->type, sizeof(pmu->type));
Namhyung Kim5323f602012-12-17 15:38:54 +0900756 if (ret < 0)
757 return ret;
758
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700759 ret = do_write_string(ff, pmu->name);
Namhyung Kim5323f602012-12-17 15:38:54 +0900760 if (ret < 0)
761 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200762 }
763
Robert Richter50a96672012-08-16 21:10:24 +0200764 return 0;
765}
766
767/*
Namhyung Kima8bb5592013-01-22 18:09:31 +0900768 * File format:
769 *
770 * struct group_descs {
771 * u32 nr_groups;
772 * struct group_desc {
773 * char name[];
774 * u32 leader_idx;
775 * u32 nr_members;
776 * }[nr_groups];
777 * };
778 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700779static int write_group_desc(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200780 struct evlist *evlist)
Namhyung Kima8bb5592013-01-22 18:09:31 +0900781{
Jiri Olsa3a683122021-07-06 17:17:01 +0200782 u32 nr_groups = evlist->core.nr_groups;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200783 struct evsel *evsel;
Namhyung Kima8bb5592013-01-22 18:09:31 +0900784 int ret;
785
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700786 ret = do_write(ff, &nr_groups, sizeof(nr_groups));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900787 if (ret < 0)
788 return ret;
789
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300790 evlist__for_each_entry(evlist, evsel) {
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -0300791 if (evsel__is_group_leader(evsel) && evsel->core.nr_members > 1) {
Namhyung Kima8bb5592013-01-22 18:09:31 +0900792 const char *name = evsel->group_name ?: "{anon_group}";
Jiri Olsa38fe0e02021-07-06 17:16:59 +0200793 u32 leader_idx = evsel->core.idx;
Jiri Olsa5643b1a2019-07-21 13:24:46 +0200794 u32 nr_members = evsel->core.nr_members;
Namhyung Kima8bb5592013-01-22 18:09:31 +0900795
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700796 ret = do_write_string(ff, name);
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, &leader_idx, sizeof(leader_idx));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900801 if (ret < 0)
802 return ret;
803
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700804 ret = do_write(ff, &nr_members, sizeof(nr_members));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900805 if (ret < 0)
806 return ret;
807 }
808 }
809 return 0;
810}
811
812/*
Kan Liangf4a07422018-11-21 08:49:39 -0800813 * Return the CPU id as a raw string.
814 *
815 * Each architecture should provide a more precise id string that
816 * can be use to match the architecture's "mapfile".
817 */
818char * __weak get_cpuid_str(struct perf_pmu *pmu __maybe_unused)
819{
820 return NULL;
821}
822
823/* Return zero when the cpuid from the mapfile.csv matches the
824 * cpuid string generated on this platform.
825 * Otherwise return non-zero.
826 */
827int __weak strcmp_cpuid_str(const char *mapcpuid, const char *cpuid)
828{
829 regex_t re;
830 regmatch_t pmatch[1];
831 int match;
832
833 if (regcomp(&re, mapcpuid, REG_EXTENDED) != 0) {
834 /* Warn unable to generate match particular string. */
835 pr_info("Invalid regular expression %s\n", mapcpuid);
836 return 1;
837 }
838
839 match = !regexec(&re, cpuid, 1, pmatch, 0);
840 regfree(&re);
841 if (match) {
842 size_t match_len = (pmatch[0].rm_eo - pmatch[0].rm_so);
843
844 /* Verify the entire string matched. */
845 if (match_len == strlen(cpuid))
846 return 0;
847 }
848 return 1;
849}
850
851/*
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200852 * default get_cpuid(): nothing gets recorded
Jiada Wang7a759cd2017-04-09 20:02:37 -0700853 * actual implementation must be in arch/$(SRCARCH)/util/header.c
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200854 */
Rui Teng11d8f872016-07-28 10:05:57 +0800855int __weak get_cpuid(char *buffer __maybe_unused, size_t sz __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200856{
Arnaldo Carvalho de Melo05267c72019-12-11 10:09:24 -0300857 return ENOSYS; /* Not implemented */
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200858}
859
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700860static int write_cpuid(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200861 struct evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200862{
863 char buffer[64];
864 int ret;
865
866 ret = get_cpuid(buffer, sizeof(buffer));
Jiri Olsaa9aeb872019-02-13 13:32:43 +0100867 if (ret)
868 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200869
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700870 return do_write_string(ff, buffer);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200871}
872
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700873static int write_branch_stack(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +0200874 struct evlist *evlist __maybe_unused)
Stephane Eranian330aa672012-03-08 23:47:46 +0100875{
876 return 0;
877}
878
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700879static int write_auxtrace(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200880 struct evlist *evlist __maybe_unused)
Adrian Hunter4025ea42015-04-09 18:53:41 +0300881{
Adrian Hunter99fa2982015-04-30 17:37:25 +0300882 struct perf_session *session;
883 int err;
884
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700885 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
886 return -1;
887
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700888 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300889
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700890 err = auxtrace_index__write(ff->fd, &session->auxtrace_index);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300891 if (err < 0)
892 pr_err("Failed to write auxtrace index\n");
893 return err;
Adrian Hunter4025ea42015-04-09 18:53:41 +0300894}
895
Alexey Budankovcf790512018-10-09 17:36:24 +0300896static int write_clockid(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200897 struct evlist *evlist __maybe_unused)
Alexey Budankovcf790512018-10-09 17:36:24 +0300898{
Jiri Olsa9d88a1a12020-08-05 11:34:41 +0200899 return do_write(ff, &ff->ph->env.clock.clockid_res_ns,
900 sizeof(ff->ph->env.clock.clockid_res_ns));
Alexey Budankovcf790512018-10-09 17:36:24 +0300901}
902
Jiri Olsad1e325c2020-08-05 11:34:40 +0200903static int write_clock_data(struct feat_fd *ff,
904 struct evlist *evlist __maybe_unused)
905{
906 u64 *data64;
907 u32 data32;
908 int ret;
909
910 /* version */
911 data32 = 1;
912
913 ret = do_write(ff, &data32, sizeof(data32));
914 if (ret < 0)
915 return ret;
916
917 /* clockid */
918 data32 = ff->ph->env.clock.clockid;
919
920 ret = do_write(ff, &data32, sizeof(data32));
921 if (ret < 0)
922 return ret;
923
924 /* TOD ref time */
925 data64 = &ff->ph->env.clock.tod_ns;
926
927 ret = do_write(ff, data64, sizeof(*data64));
928 if (ret < 0)
929 return ret;
930
931 /* clockid ref time */
932 data64 = &ff->ph->env.clock.clockid_ns;
933
934 return do_write(ff, data64, sizeof(*data64));
935}
936
Jin Yaof7d74ce2021-05-14 20:29:47 +0800937static int write_hybrid_topology(struct feat_fd *ff,
938 struct evlist *evlist __maybe_unused)
939{
940 struct hybrid_topology *tp;
941 int ret;
942 u32 i;
943
944 tp = hybrid_topology__new();
945 if (!tp)
946 return -ENOENT;
947
948 ret = do_write(ff, &tp->nr, sizeof(u32));
949 if (ret < 0)
950 goto err;
951
952 for (i = 0; i < tp->nr; i++) {
953 struct hybrid_topology_node *n = &tp->nodes[i];
954
955 ret = do_write_string(ff, n->pmu_name);
956 if (ret < 0)
957 goto err;
958
959 ret = do_write_string(ff, n->cpus);
960 if (ret < 0)
961 goto err;
962 }
963
964 ret = 0;
965
966err:
967 hybrid_topology__delete(tp);
968 return ret;
969}
970
Jiri Olsa258031c2019-03-08 14:47:39 +0100971static int write_dir_format(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200972 struct evlist *evlist __maybe_unused)
Jiri Olsa258031c2019-03-08 14:47:39 +0100973{
974 struct perf_session *session;
975 struct perf_data *data;
976
977 session = container_of(ff->ph, struct perf_session, header);
978 data = session->data;
979
980 if (WARN_ON(!perf_data__is_dir(data)))
981 return -1;
982
983 return do_write(ff, &data->dir.version, sizeof(data->dir.version));
984}
985
Song Liu606f9722019-03-11 22:30:43 -0700986#ifdef HAVE_LIBBPF_SUPPORT
987static int write_bpf_prog_info(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +0200988 struct evlist *evlist __maybe_unused)
Song Liu606f9722019-03-11 22:30:43 -0700989{
990 struct perf_env *env = &ff->ph->env;
991 struct rb_root *root;
992 struct rb_node *next;
993 int ret;
994
995 down_read(&env->bpf_progs.lock);
996
997 ret = do_write(ff, &env->bpf_progs.infos_cnt,
998 sizeof(env->bpf_progs.infos_cnt));
999 if (ret < 0)
1000 goto out;
1001
1002 root = &env->bpf_progs.infos;
1003 next = rb_first(root);
1004 while (next) {
1005 struct bpf_prog_info_node *node;
1006 size_t len;
1007
1008 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
1009 next = rb_next(&node->rb_node);
Dave Marchevsky6ac22d02021-10-11 01:20:30 -07001010 len = sizeof(struct perf_bpil) +
Song Liu606f9722019-03-11 22:30:43 -07001011 node->info_linear->data_len;
1012
1013 /* before writing to file, translate address to offset */
Dave Marchevsky6ac22d02021-10-11 01:20:30 -07001014 bpil_addr_to_offs(node->info_linear);
Song Liu606f9722019-03-11 22:30:43 -07001015 ret = do_write(ff, node->info_linear, len);
1016 /*
1017 * translate back to address even when do_write() fails,
1018 * so that this function never changes the data.
1019 */
Dave Marchevsky6ac22d02021-10-11 01:20:30 -07001020 bpil_offs_to_addr(node->info_linear);
Song Liu606f9722019-03-11 22:30:43 -07001021 if (ret < 0)
1022 goto out;
1023 }
1024out:
1025 up_read(&env->bpf_progs.lock);
1026 return ret;
1027}
Song Liu606f9722019-03-11 22:30:43 -07001028
Song Liua70a112312019-03-11 22:30:45 -07001029static int write_bpf_btf(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001030 struct evlist *evlist __maybe_unused)
Song Liua70a112312019-03-11 22:30:45 -07001031{
1032 struct perf_env *env = &ff->ph->env;
1033 struct rb_root *root;
1034 struct rb_node *next;
1035 int ret;
1036
1037 down_read(&env->bpf_progs.lock);
1038
1039 ret = do_write(ff, &env->bpf_progs.btfs_cnt,
1040 sizeof(env->bpf_progs.btfs_cnt));
1041
1042 if (ret < 0)
1043 goto out;
1044
1045 root = &env->bpf_progs.btfs;
1046 next = rb_first(root);
1047 while (next) {
1048 struct btf_node *node;
1049
1050 node = rb_entry(next, struct btf_node, rb_node);
1051 next = rb_next(&node->rb_node);
1052 ret = do_write(ff, &node->id,
1053 sizeof(u32) * 2 + node->data_size);
1054 if (ret < 0)
1055 goto out;
1056 }
1057out:
1058 up_read(&env->bpf_progs.lock);
1059 return ret;
1060}
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -03001061#endif // HAVE_LIBBPF_SUPPORT
Song Liua70a112312019-03-11 22:30:45 -07001062
Jiri Olsa720e98b2016-02-16 16:01:43 +01001063static int cpu_cache_level__sort(const void *a, const void *b)
1064{
1065 struct cpu_cache_level *cache_a = (struct cpu_cache_level *)a;
1066 struct cpu_cache_level *cache_b = (struct cpu_cache_level *)b;
1067
1068 return cache_a->level - cache_b->level;
1069}
1070
1071static bool cpu_cache_level__cmp(struct cpu_cache_level *a, struct cpu_cache_level *b)
1072{
1073 if (a->level != b->level)
1074 return false;
1075
1076 if (a->line_size != b->line_size)
1077 return false;
1078
1079 if (a->sets != b->sets)
1080 return false;
1081
1082 if (a->ways != b->ways)
1083 return false;
1084
1085 if (strcmp(a->type, b->type))
1086 return false;
1087
1088 if (strcmp(a->size, b->size))
1089 return false;
1090
1091 if (strcmp(a->map, b->map))
1092 return false;
1093
1094 return true;
1095}
1096
1097static int cpu_cache_level__read(struct cpu_cache_level *cache, u32 cpu, u16 level)
1098{
1099 char path[PATH_MAX], file[PATH_MAX];
1100 struct stat st;
1101 size_t len;
1102
1103 scnprintf(path, PATH_MAX, "devices/system/cpu/cpu%d/cache/index%d/", cpu, level);
1104 scnprintf(file, PATH_MAX, "%s/%s", sysfs__mountpoint(), path);
1105
1106 if (stat(file, &st))
1107 return 1;
1108
1109 scnprintf(file, PATH_MAX, "%s/level", path);
1110 if (sysfs__read_int(file, (int *) &cache->level))
1111 return -1;
1112
1113 scnprintf(file, PATH_MAX, "%s/coherency_line_size", path);
1114 if (sysfs__read_int(file, (int *) &cache->line_size))
1115 return -1;
1116
1117 scnprintf(file, PATH_MAX, "%s/number_of_sets", path);
1118 if (sysfs__read_int(file, (int *) &cache->sets))
1119 return -1;
1120
1121 scnprintf(file, PATH_MAX, "%s/ways_of_associativity", path);
1122 if (sysfs__read_int(file, (int *) &cache->ways))
1123 return -1;
1124
1125 scnprintf(file, PATH_MAX, "%s/type", path);
1126 if (sysfs__read_str(file, &cache->type, &len))
1127 return -1;
1128
1129 cache->type[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001130 cache->type = strim(cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001131
1132 scnprintf(file, PATH_MAX, "%s/size", path);
1133 if (sysfs__read_str(file, &cache->size, &len)) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001134 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001135 return -1;
1136 }
1137
1138 cache->size[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001139 cache->size = strim(cache->size);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001140
1141 scnprintf(file, PATH_MAX, "%s/shared_cpu_list", path);
1142 if (sysfs__read_str(file, &cache->map, &len)) {
Jiri Olsa02162342019-09-12 12:52:35 +02001143 zfree(&cache->size);
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001144 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001145 return -1;
1146 }
1147
1148 cache->map[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001149 cache->map = strim(cache->map);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001150 return 0;
1151}
1152
1153static void cpu_cache_level__fprintf(FILE *out, struct cpu_cache_level *c)
1154{
1155 fprintf(out, "L%d %-15s %8s [%s]\n", c->level, c->type, c->size, c->map);
1156}
1157
Michael Petlan28707822019-12-08 17:20:56 +01001158#define MAX_CACHE_LVL 4
1159
1160static int build_caches(struct cpu_cache_level caches[], u32 *cntp)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001161{
1162 u32 i, cnt = 0;
Jiri Olsa720e98b2016-02-16 16:01:43 +01001163 u32 nr, cpu;
1164 u16 level;
1165
Ian Rogers6d188042022-01-04 22:13:51 -08001166 nr = cpu__max_cpu().cpu;
Jiri Olsa720e98b2016-02-16 16:01:43 +01001167
1168 for (cpu = 0; cpu < nr; cpu++) {
Michael Petlan28707822019-12-08 17:20:56 +01001169 for (level = 0; level < MAX_CACHE_LVL; level++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001170 struct cpu_cache_level c;
1171 int err;
1172
1173 err = cpu_cache_level__read(&c, cpu, level);
1174 if (err < 0)
1175 return err;
1176
1177 if (err == 1)
1178 break;
1179
1180 for (i = 0; i < cnt; i++) {
1181 if (cpu_cache_level__cmp(&c, &caches[i]))
1182 break;
1183 }
1184
1185 if (i == cnt)
1186 caches[cnt++] = c;
1187 else
1188 cpu_cache_level__free(&c);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001189 }
1190 }
Jiri Olsa720e98b2016-02-16 16:01:43 +01001191 *cntp = cnt;
1192 return 0;
1193}
1194
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001195static int write_cache(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001196 struct evlist *evlist __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001197{
Ian Rogers6d188042022-01-04 22:13:51 -08001198 u32 max_caches = cpu__max_cpu().cpu * MAX_CACHE_LVL;
Kyle Meyerdc841872019-08-27 16:43:51 -05001199 struct cpu_cache_level caches[max_caches];
Jiri Olsa720e98b2016-02-16 16:01:43 +01001200 u32 cnt = 0, i, version = 1;
1201 int ret;
1202
Michael Petlan28707822019-12-08 17:20:56 +01001203 ret = build_caches(caches, &cnt);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001204 if (ret)
1205 goto out;
1206
1207 qsort(&caches, cnt, sizeof(struct cpu_cache_level), cpu_cache_level__sort);
1208
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001209 ret = do_write(ff, &version, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001210 if (ret < 0)
1211 goto out;
1212
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001213 ret = do_write(ff, &cnt, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001214 if (ret < 0)
1215 goto out;
1216
1217 for (i = 0; i < cnt; i++) {
1218 struct cpu_cache_level *c = &caches[i];
1219
1220 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001221 ret = do_write(ff, &c->v, sizeof(u32)); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001222 if (ret < 0) \
1223 goto out;
1224
1225 _W(level)
1226 _W(line_size)
1227 _W(sets)
1228 _W(ways)
1229 #undef _W
1230
1231 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001232 ret = do_write_string(ff, (const char *) c->v); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001233 if (ret < 0) \
1234 goto out;
1235
1236 _W(type)
1237 _W(size)
1238 _W(map)
1239 #undef _W
1240 }
1241
1242out:
1243 for (i = 0; i < cnt; i++)
1244 cpu_cache_level__free(&caches[i]);
1245 return ret;
1246}
1247
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001248static int write_stat(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001249 struct evlist *evlist __maybe_unused)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001250{
1251 return 0;
1252}
1253
Jin Yao60115182017-12-08 21:13:41 +08001254static int write_sample_time(struct feat_fd *ff,
Jiri Olsa63503db2019-07-21 13:23:52 +02001255 struct evlist *evlist)
Jin Yao60115182017-12-08 21:13:41 +08001256{
1257 int ret;
1258
1259 ret = do_write(ff, &evlist->first_sample_time,
1260 sizeof(evlist->first_sample_time));
1261 if (ret < 0)
1262 return ret;
1263
1264 return do_write(ff, &evlist->last_sample_time,
1265 sizeof(evlist->last_sample_time));
1266}
1267
Jiri Olsae2091ce2018-03-07 16:50:08 +01001268
1269static int memory_node__read(struct memory_node *n, unsigned long idx)
1270{
1271 unsigned int phys, size = 0;
1272 char path[PATH_MAX];
1273 struct dirent *ent;
1274 DIR *dir;
1275
1276#define for_each_memory(mem, dir) \
1277 while ((ent = readdir(dir))) \
1278 if (strcmp(ent->d_name, ".") && \
1279 strcmp(ent->d_name, "..") && \
1280 sscanf(ent->d_name, "memory%u", &mem) == 1)
1281
1282 scnprintf(path, PATH_MAX,
1283 "%s/devices/system/node/node%lu",
1284 sysfs__mountpoint(), idx);
1285
1286 dir = opendir(path);
1287 if (!dir) {
Colin Ian Kingcb5a2eb2021-08-26 13:18:01 +01001288 pr_warning("failed: can't open memory sysfs data\n");
Jiri Olsae2091ce2018-03-07 16:50:08 +01001289 return -1;
1290 }
1291
1292 for_each_memory(phys, dir) {
1293 size = max(phys, size);
1294 }
1295
1296 size++;
1297
Andy Shevchenko7fc5b572021-09-07 19:59:35 -07001298 n->set = bitmap_zalloc(size);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001299 if (!n->set) {
1300 closedir(dir);
1301 return -ENOMEM;
1302 }
1303
Jiri Olsae2091ce2018-03-07 16:50:08 +01001304 n->node = idx;
1305 n->size = size;
1306
1307 rewinddir(dir);
1308
1309 for_each_memory(phys, dir) {
1310 set_bit(phys, n->set);
1311 }
1312
1313 closedir(dir);
1314 return 0;
1315}
1316
1317static int memory_node__sort(const void *a, const void *b)
1318{
1319 const struct memory_node *na = a;
1320 const struct memory_node *nb = b;
1321
1322 return na->node - nb->node;
1323}
1324
1325static int build_mem_topology(struct memory_node *nodes, u64 size, u64 *cntp)
1326{
1327 char path[PATH_MAX];
1328 struct dirent *ent;
1329 DIR *dir;
1330 u64 cnt = 0;
1331 int ret = 0;
1332
1333 scnprintf(path, PATH_MAX, "%s/devices/system/node/",
1334 sysfs__mountpoint());
1335
1336 dir = opendir(path);
1337 if (!dir) {
Thomas Richter4f75f1cb2018-04-12 15:32:46 +02001338 pr_debug2("%s: could't read %s, does this arch have topology information?\n",
1339 __func__, path);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001340 return -1;
1341 }
1342
1343 while (!ret && (ent = readdir(dir))) {
1344 unsigned int idx;
1345 int r;
1346
1347 if (!strcmp(ent->d_name, ".") ||
1348 !strcmp(ent->d_name, ".."))
1349 continue;
1350
1351 r = sscanf(ent->d_name, "node%u", &idx);
1352 if (r != 1)
1353 continue;
1354
1355 if (WARN_ONCE(cnt >= size,
Yunfeng Ye60807282019-10-15 16:30:08 +08001356 "failed to write MEM_TOPOLOGY, way too many nodes\n")) {
1357 closedir(dir);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001358 return -1;
Yunfeng Ye60807282019-10-15 16:30:08 +08001359 }
Jiri Olsae2091ce2018-03-07 16:50:08 +01001360
1361 ret = memory_node__read(&nodes[cnt++], idx);
1362 }
1363
1364 *cntp = cnt;
1365 closedir(dir);
1366
1367 if (!ret)
1368 qsort(nodes, cnt, sizeof(nodes[0]), memory_node__sort);
1369
1370 return ret;
1371}
1372
1373#define MAX_MEMORY_NODES 2000
1374
1375/*
1376 * The MEM_TOPOLOGY holds physical memory map for every
1377 * node in system. The format of data is as follows:
1378 *
1379 * 0 - version | for future changes
1380 * 8 - block_size_bytes | /sys/devices/system/memory/block_size_bytes
1381 * 16 - count | number of nodes
1382 *
1383 * For each node we store map of physical indexes for
1384 * each node:
1385 *
1386 * 32 - node id | node index
1387 * 40 - size | size of bitmap
1388 * 48 - bitmap | bitmap of memory indexes that belongs to node
1389 */
1390static int write_mem_topology(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001391 struct evlist *evlist __maybe_unused)
Jiri Olsae2091ce2018-03-07 16:50:08 +01001392{
1393 static struct memory_node nodes[MAX_MEMORY_NODES];
1394 u64 bsize, version = 1, i, nr;
1395 int ret;
1396
1397 ret = sysfs__read_xll("devices/system/memory/block_size_bytes",
1398 (unsigned long long *) &bsize);
1399 if (ret)
1400 return ret;
1401
1402 ret = build_mem_topology(&nodes[0], MAX_MEMORY_NODES, &nr);
1403 if (ret)
1404 return ret;
1405
1406 ret = do_write(ff, &version, sizeof(version));
1407 if (ret < 0)
1408 goto out;
1409
1410 ret = do_write(ff, &bsize, sizeof(bsize));
1411 if (ret < 0)
1412 goto out;
1413
1414 ret = do_write(ff, &nr, sizeof(nr));
1415 if (ret < 0)
1416 goto out;
1417
1418 for (i = 0; i < nr; i++) {
1419 struct memory_node *n = &nodes[i];
1420
1421 #define _W(v) \
1422 ret = do_write(ff, &n->v, sizeof(n->v)); \
1423 if (ret < 0) \
1424 goto out;
1425
1426 _W(node)
1427 _W(size)
1428
1429 #undef _W
1430
1431 ret = do_write_bitmap(ff, n->set, n->size);
1432 if (ret < 0)
1433 goto out;
1434 }
1435
1436out:
1437 return ret;
1438}
1439
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001440static int write_compressed(struct feat_fd *ff __maybe_unused,
Jiri Olsa63503db2019-07-21 13:23:52 +02001441 struct evlist *evlist __maybe_unused)
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001442{
1443 int ret;
1444
1445 ret = do_write(ff, &(ff->ph->env.comp_ver), sizeof(ff->ph->env.comp_ver));
1446 if (ret)
1447 return ret;
1448
1449 ret = do_write(ff, &(ff->ph->env.comp_type), sizeof(ff->ph->env.comp_type));
1450 if (ret)
1451 return ret;
1452
1453 ret = do_write(ff, &(ff->ph->env.comp_level), sizeof(ff->ph->env.comp_level));
1454 if (ret)
1455 return ret;
1456
1457 ret = do_write(ff, &(ff->ph->env.comp_ratio), sizeof(ff->ph->env.comp_ratio));
1458 if (ret)
1459 return ret;
1460
1461 return do_write(ff, &(ff->ph->env.comp_mmap_len), sizeof(ff->ph->env.comp_mmap_len));
1462}
1463
Jin Yaoe1190832021-05-14 20:29:48 +08001464static int write_per_cpu_pmu_caps(struct feat_fd *ff, struct perf_pmu *pmu,
1465 bool write_pmu)
Kan Liang6f91ea22020-03-19 13:25:02 -07001466{
Kan Liang6f91ea22020-03-19 13:25:02 -07001467 struct perf_pmu_caps *caps = NULL;
1468 int nr_caps;
1469 int ret;
1470
Jin Yaoe1190832021-05-14 20:29:48 +08001471 nr_caps = perf_pmu__caps_parse(pmu);
Kan Liang6f91ea22020-03-19 13:25:02 -07001472 if (nr_caps < 0)
1473 return nr_caps;
1474
1475 ret = do_write(ff, &nr_caps, sizeof(nr_caps));
1476 if (ret < 0)
1477 return ret;
1478
Jin Yaoe1190832021-05-14 20:29:48 +08001479 list_for_each_entry(caps, &pmu->caps, list) {
Kan Liang6f91ea22020-03-19 13:25:02 -07001480 ret = do_write_string(ff, caps->name);
1481 if (ret < 0)
1482 return ret;
1483
1484 ret = do_write_string(ff, caps->value);
1485 if (ret < 0)
1486 return ret;
1487 }
1488
Jin Yaoe1190832021-05-14 20:29:48 +08001489 if (write_pmu) {
1490 ret = do_write_string(ff, pmu->name);
1491 if (ret < 0)
1492 return ret;
1493 }
1494
Kan Liang6f91ea22020-03-19 13:25:02 -07001495 return ret;
1496}
1497
Jin Yaoe1190832021-05-14 20:29:48 +08001498static int write_cpu_pmu_caps(struct feat_fd *ff,
1499 struct evlist *evlist __maybe_unused)
1500{
1501 struct perf_pmu *cpu_pmu = perf_pmu__find("cpu");
1502
1503 if (!cpu_pmu)
1504 return -ENOENT;
1505
1506 return write_per_cpu_pmu_caps(ff, cpu_pmu, false);
1507}
1508
1509static int write_hybrid_cpu_pmu_caps(struct feat_fd *ff,
1510 struct evlist *evlist __maybe_unused)
1511{
1512 struct perf_pmu *pmu;
1513 u32 nr_pmu = perf_pmu__hybrid_pmu_num();
1514 int ret;
1515
1516 if (nr_pmu == 0)
1517 return -ENOENT;
1518
1519 ret = do_write(ff, &nr_pmu, sizeof(nr_pmu));
1520 if (ret < 0)
1521 return ret;
1522
1523 perf_pmu__for_each_hybrid_pmu(pmu) {
1524 ret = write_per_cpu_pmu_caps(ff, pmu, true);
1525 if (ret < 0)
1526 return ret;
1527 }
1528
1529 return 0;
1530}
1531
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001532static void print_hostname(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001533{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001534 fprintf(fp, "# hostname : %s\n", ff->ph->env.hostname);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001535}
1536
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001537static void print_osrelease(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001538{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001539 fprintf(fp, "# os release : %s\n", ff->ph->env.os_release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001540}
1541
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001542static void print_arch(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001543{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001544 fprintf(fp, "# arch : %s\n", ff->ph->env.arch);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001545}
1546
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001547static void print_cpudesc(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001548{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001549 fprintf(fp, "# cpudesc : %s\n", ff->ph->env.cpu_desc);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001550}
1551
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001552static void print_nrcpus(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001553{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001554 fprintf(fp, "# nrcpus online : %u\n", ff->ph->env.nr_cpus_online);
1555 fprintf(fp, "# nrcpus avail : %u\n", ff->ph->env.nr_cpus_avail);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001556}
1557
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001558static void print_version(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001559{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001560 fprintf(fp, "# perf version : %s\n", ff->ph->env.version);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001561}
1562
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001563static void print_cmdline(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001564{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001565 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001566
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001567 nr = ff->ph->env.nr_cmdline;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001568
1569 fprintf(fp, "# cmdline : ");
1570
Alexey Budankovf92da712018-06-04 09:50:56 +03001571 for (i = 0; i < nr; i++) {
1572 char *argv_i = strdup(ff->ph->env.cmdline_argv[i]);
1573 if (!argv_i) {
1574 fprintf(fp, "%s ", ff->ph->env.cmdline_argv[i]);
1575 } else {
1576 char *mem = argv_i;
1577 do {
1578 char *quote = strchr(argv_i, '\'');
1579 if (!quote)
1580 break;
1581 *quote++ = '\0';
1582 fprintf(fp, "%s\\\'", argv_i);
1583 argv_i = quote;
1584 } while (1);
1585 fprintf(fp, "%s ", argv_i);
1586 free(mem);
1587 }
1588 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001589 fputc('\n', fp);
1590}
1591
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001592static void print_cpu_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001593{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001594 struct perf_header *ph = ff->ph;
1595 int cpu_nr = ph->env.nr_cpus_avail;
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001596 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001597 char *str;
1598
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001599 nr = ph->env.nr_sibling_cores;
1600 str = ph->env.sibling_cores;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001601
1602 for (i = 0; i < nr; i++) {
Kan Liange05a8992019-06-04 15:50:43 -07001603 fprintf(fp, "# sibling sockets : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001604 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001605 }
1606
Kan Liangacae8b32019-06-04 15:50:41 -07001607 if (ph->env.nr_sibling_dies) {
1608 nr = ph->env.nr_sibling_dies;
1609 str = ph->env.sibling_dies;
1610
1611 for (i = 0; i < nr; i++) {
1612 fprintf(fp, "# sibling dies : %s\n", str);
1613 str += strlen(str) + 1;
1614 }
1615 }
1616
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001617 nr = ph->env.nr_sibling_threads;
1618 str = ph->env.sibling_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001619
1620 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001621 fprintf(fp, "# sibling threads : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001622 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001623 }
Kan Liang2bb00d22015-09-01 09:58:12 -04001624
Kan Liangacae8b32019-06-04 15:50:41 -07001625 if (ph->env.nr_sibling_dies) {
1626 if (ph->env.cpu != NULL) {
1627 for (i = 0; i < cpu_nr; i++)
1628 fprintf(fp, "# CPU %d: Core ID %d, "
1629 "Die ID %d, Socket ID %d\n",
1630 i, ph->env.cpu[i].core_id,
1631 ph->env.cpu[i].die_id,
1632 ph->env.cpu[i].socket_id);
1633 } else
1634 fprintf(fp, "# Core ID, Die ID and Socket ID "
1635 "information is not available\n");
1636 } else {
1637 if (ph->env.cpu != NULL) {
1638 for (i = 0; i < cpu_nr; i++)
1639 fprintf(fp, "# CPU %d: Core ID %d, "
1640 "Socket ID %d\n",
1641 i, ph->env.cpu[i].core_id,
1642 ph->env.cpu[i].socket_id);
1643 } else
1644 fprintf(fp, "# Core ID and Socket ID "
1645 "information is not available\n");
1646 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001647}
1648
Alexey Budankovcf790512018-10-09 17:36:24 +03001649static void print_clockid(struct feat_fd *ff, FILE *fp)
1650{
1651 fprintf(fp, "# clockid frequency: %"PRIu64" MHz\n",
Jiri Olsa9d88a1a12020-08-05 11:34:41 +02001652 ff->ph->env.clock.clockid_res_ns * 1000);
Alexey Budankovcf790512018-10-09 17:36:24 +03001653}
1654
Jiri Olsad1e325c2020-08-05 11:34:40 +02001655static void print_clock_data(struct feat_fd *ff, FILE *fp)
1656{
1657 struct timespec clockid_ns;
1658 char tstr[64], date[64];
1659 struct timeval tod_ns;
1660 clockid_t clockid;
1661 struct tm ltime;
1662 u64 ref;
1663
1664 if (!ff->ph->env.clock.enabled) {
1665 fprintf(fp, "# reference time disabled\n");
1666 return;
1667 }
1668
1669 /* Compute TOD time. */
1670 ref = ff->ph->env.clock.tod_ns;
1671 tod_ns.tv_sec = ref / NSEC_PER_SEC;
1672 ref -= tod_ns.tv_sec * NSEC_PER_SEC;
1673 tod_ns.tv_usec = ref / NSEC_PER_USEC;
1674
1675 /* Compute clockid time. */
1676 ref = ff->ph->env.clock.clockid_ns;
1677 clockid_ns.tv_sec = ref / NSEC_PER_SEC;
1678 ref -= clockid_ns.tv_sec * NSEC_PER_SEC;
1679 clockid_ns.tv_nsec = ref;
1680
1681 clockid = ff->ph->env.clock.clockid;
1682
1683 if (localtime_r(&tod_ns.tv_sec, &ltime) == NULL)
1684 snprintf(tstr, sizeof(tstr), "<error>");
1685 else {
1686 strftime(date, sizeof(date), "%F %T", &ltime);
1687 scnprintf(tstr, sizeof(tstr), "%s.%06d",
1688 date, (int) tod_ns.tv_usec);
1689 }
1690
1691 fprintf(fp, "# clockid: %s (%u)\n", clockid_name(clockid), clockid);
1692 fprintf(fp, "# reference time: %s = %ld.%06d (TOD) = %ld.%09ld (%s)\n",
Pierre Gondoisded2e512021-02-24 18:24:10 +00001693 tstr, (long) tod_ns.tv_sec, (int) tod_ns.tv_usec,
1694 (long) clockid_ns.tv_sec, clockid_ns.tv_nsec,
Jiri Olsad1e325c2020-08-05 11:34:40 +02001695 clockid_name(clockid));
1696}
1697
Jin Yaof7d74ce2021-05-14 20:29:47 +08001698static void print_hybrid_topology(struct feat_fd *ff, FILE *fp)
1699{
1700 int i;
1701 struct hybrid_node *n;
1702
1703 fprintf(fp, "# hybrid cpu system:\n");
1704 for (i = 0; i < ff->ph->env.nr_hybrid_nodes; i++) {
1705 n = &ff->ph->env.hybrid_nodes[i];
1706 fprintf(fp, "# %s cpu list : %s\n", n->pmu_name, n->cpus);
1707 }
1708}
1709
Jiri Olsa258031c2019-03-08 14:47:39 +01001710static void print_dir_format(struct feat_fd *ff, FILE *fp)
1711{
1712 struct perf_session *session;
1713 struct perf_data *data;
1714
1715 session = container_of(ff->ph, struct perf_session, header);
1716 data = session->data;
1717
1718 fprintf(fp, "# directory data version : %"PRIu64"\n", data->dir.version);
1719}
1720
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -03001721#ifdef HAVE_LIBBPF_SUPPORT
Song Liu606f9722019-03-11 22:30:43 -07001722static void print_bpf_prog_info(struct feat_fd *ff, FILE *fp)
1723{
1724 struct perf_env *env = &ff->ph->env;
1725 struct rb_root *root;
1726 struct rb_node *next;
1727
1728 down_read(&env->bpf_progs.lock);
1729
1730 root = &env->bpf_progs.infos;
1731 next = rb_first(root);
1732
1733 while (next) {
1734 struct bpf_prog_info_node *node;
1735
1736 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
1737 next = rb_next(&node->rb_node);
Song Liuf8dfeae2019-03-19 09:54:54 -07001738
1739 bpf_event__print_bpf_prog_info(&node->info_linear->info,
1740 env, fp);
Song Liu606f9722019-03-11 22:30:43 -07001741 }
1742
1743 up_read(&env->bpf_progs.lock);
1744}
1745
Song Liua70a112312019-03-11 22:30:45 -07001746static void print_bpf_btf(struct feat_fd *ff, FILE *fp)
1747{
1748 struct perf_env *env = &ff->ph->env;
1749 struct rb_root *root;
1750 struct rb_node *next;
1751
1752 down_read(&env->bpf_progs.lock);
1753
1754 root = &env->bpf_progs.btfs;
1755 next = rb_first(root);
1756
1757 while (next) {
1758 struct btf_node *node;
1759
1760 node = rb_entry(next, struct btf_node, rb_node);
1761 next = rb_next(&node->rb_node);
1762 fprintf(fp, "# btf info of id %u\n", node->id);
1763 }
1764
1765 up_read(&env->bpf_progs.lock);
1766}
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -03001767#endif // HAVE_LIBBPF_SUPPORT
Song Liua70a112312019-03-11 22:30:45 -07001768
Jiri Olsa32dcd022019-07-21 13:23:51 +02001769static void free_event_desc(struct evsel *events)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001770{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001771 struct evsel *evsel;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001772
1773 if (!events)
1774 return;
1775
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001776 for (evsel = events; evsel->core.attr.size; evsel++) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001777 zfree(&evsel->name);
Jiri Olsadeaf3212019-09-02 22:12:26 +02001778 zfree(&evsel->core.id);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001779 }
1780
1781 free(events);
1782}
1783
Kan Liang277ce1e2020-02-28 08:30:02 -08001784static bool perf_attr_check(struct perf_event_attr *attr)
1785{
1786 if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3) {
1787 pr_warning("Reserved bits are set unexpectedly. "
1788 "Please update perf tool.\n");
1789 return false;
1790 }
1791
1792 if (attr->sample_type & ~(PERF_SAMPLE_MAX-1)) {
1793 pr_warning("Unknown sample type (0x%llx) is detected. "
1794 "Please update perf tool.\n",
1795 attr->sample_type);
1796 return false;
1797 }
1798
1799 if (attr->read_format & ~(PERF_FORMAT_MAX-1)) {
1800 pr_warning("Unknown read format (0x%llx) is detected. "
1801 "Please update perf tool.\n",
1802 attr->read_format);
1803 return false;
1804 }
1805
1806 if ((attr->sample_type & PERF_SAMPLE_BRANCH_STACK) &&
1807 (attr->branch_sample_type & ~(PERF_SAMPLE_BRANCH_MAX-1))) {
1808 pr_warning("Unknown branch sample type (0x%llx) is detected. "
1809 "Please update perf tool.\n",
1810 attr->branch_sample_type);
1811
1812 return false;
1813 }
1814
1815 return true;
1816}
1817
Jiri Olsa32dcd022019-07-21 13:23:51 +02001818static struct evsel *read_event_desc(struct feat_fd *ff)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001819{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001820 struct evsel *evsel, *events = NULL;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001821 u64 *id;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001822 void *buf = NULL;
Stephane Eranian62db9062012-02-09 23:21:07 +01001823 u32 nre, sz, nr, i, j;
Stephane Eranian62db9062012-02-09 23:21:07 +01001824 size_t msz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001825
1826 /* number of events */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001827 if (do_read_u32(ff, &nre))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001828 goto error;
1829
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001830 if (do_read_u32(ff, &sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001831 goto error;
1832
Stephane Eranian62db9062012-02-09 23:21:07 +01001833 /* buffer to hold on file attr struct */
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001834 buf = malloc(sz);
1835 if (!buf)
1836 goto error;
1837
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001838 /* the last event terminates with evsel->core.attr.size == 0: */
Robert Richter4e1b9c62012-08-16 21:10:22 +02001839 events = calloc(nre + 1, sizeof(*events));
1840 if (!events)
1841 goto error;
1842
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001843 msz = sizeof(evsel->core.attr);
Jiri Olsa9fafd982012-03-20 19:15:39 +01001844 if (sz < msz)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001845 msz = sz;
1846
Robert Richter4e1b9c62012-08-16 21:10:22 +02001847 for (i = 0, evsel = events; i < nre; evsel++, i++) {
Jiri Olsa38fe0e02021-07-06 17:16:59 +02001848 evsel->core.idx = i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001849
Stephane Eranian62db9062012-02-09 23:21:07 +01001850 /*
1851 * must read entire on-file attr struct to
1852 * sync up with layout.
1853 */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001854 if (__do_read(ff, buf, sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001855 goto error;
1856
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001857 if (ff->ph->needs_swap)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001858 perf_event__attr_swap(buf);
1859
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001860 memcpy(&evsel->core.attr, buf, msz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001861
Kan Liang277ce1e2020-02-28 08:30:02 -08001862 if (!perf_attr_check(&evsel->core.attr))
1863 goto error;
1864
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001865 if (do_read_u32(ff, &nr))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001866 goto error;
1867
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001868 if (ff->ph->needs_swap)
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001869 evsel->needs_swap = true;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001870
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001871 evsel->name = do_read_string(ff);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001872 if (!evsel->name)
1873 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001874
1875 if (!nr)
1876 continue;
1877
1878 id = calloc(nr, sizeof(*id));
1879 if (!id)
1880 goto error;
Jiri Olsae7eb9002019-09-02 22:15:47 +02001881 evsel->core.ids = nr;
Jiri Olsadeaf3212019-09-02 22:12:26 +02001882 evsel->core.id = id;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001883
1884 for (j = 0 ; j < nr; j++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001885 if (do_read_u64(ff, id))
Robert Richter4e1b9c62012-08-16 21:10:22 +02001886 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001887 id++;
1888 }
1889 }
1890out:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001891 free(buf);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001892 return events;
1893error:
Markus Elfring4cc97612015-06-25 17:12:32 +02001894 free_event_desc(events);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001895 events = NULL;
1896 goto out;
1897}
1898
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001899static int __desc_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001900 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001901{
1902 return fprintf(fp, ", %s = %s", name, val);
1903}
1904
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001905static void print_event_desc(struct feat_fd *ff, FILE *fp)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001906{
Jiri Olsa32dcd022019-07-21 13:23:51 +02001907 struct evsel *evsel, *events;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001908 u32 j;
1909 u64 *id;
1910
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001911 if (ff->events)
1912 events = ff->events;
1913 else
1914 events = read_event_desc(ff);
1915
Robert Richter4e1b9c62012-08-16 21:10:22 +02001916 if (!events) {
1917 fprintf(fp, "# event desc: not available or unable to read\n");
1918 return;
1919 }
1920
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001921 for (evsel = events; evsel->core.attr.size; evsel++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001922 fprintf(fp, "# event : name = %s, ", evsel->name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001923
Jiri Olsae7eb9002019-09-02 22:15:47 +02001924 if (evsel->core.ids) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001925 fprintf(fp, ", id = {");
Jiri Olsae7eb9002019-09-02 22:15:47 +02001926 for (j = 0, id = evsel->core.id; j < evsel->core.ids; j++, id++) {
Robert Richter4e1b9c62012-08-16 21:10:22 +02001927 if (j)
1928 fputc(',', fp);
1929 fprintf(fp, " %"PRIu64, *id);
1930 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001931 fprintf(fp, " }");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001932 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001933
Jiri Olsa1fc632c2019-07-21 13:24:29 +02001934 perf_event_attr__fprintf(fp, &evsel->core.attr, __desc_attr__fprintf, NULL);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001935
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001936 fputc('\n', fp);
1937 }
Robert Richter4e1b9c62012-08-16 21:10:22 +02001938
1939 free_event_desc(events);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001940 ff->events = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001941}
1942
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001943static void print_total_mem(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001944{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001945 fprintf(fp, "# total memory : %llu kB\n", ff->ph->env.total_mem);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001946}
1947
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001948static void print_numa_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001949{
Jiri Olsac60da222016-07-04 14:16:20 +02001950 int i;
1951 struct numa_node *n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001952
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001953 for (i = 0; i < ff->ph->env.nr_numa_nodes; i++) {
1954 n = &ff->ph->env.numa_nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001955
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001956 fprintf(fp, "# node%u meminfo : total = %"PRIu64" kB,"
1957 " free = %"PRIu64" kB\n",
Jiri Olsac60da222016-07-04 14:16:20 +02001958 n->node, n->mem_total, n->mem_free);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001959
Jiri Olsac60da222016-07-04 14:16:20 +02001960 fprintf(fp, "# node%u cpu list : ", n->node);
1961 cpu_map__fprintf(n->map, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001962 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001963}
1964
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001965static void print_cpuid(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001966{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001967 fprintf(fp, "# cpuid : %s\n", ff->ph->env.cpuid);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001968}
1969
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001970static void print_branch_stack(struct feat_fd *ff __maybe_unused, FILE *fp)
Stephane Eranian330aa672012-03-08 23:47:46 +01001971{
1972 fprintf(fp, "# contains samples with branch stack\n");
1973}
1974
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001975static void print_auxtrace(struct feat_fd *ff __maybe_unused, FILE *fp)
Adrian Hunter4025ea42015-04-09 18:53:41 +03001976{
1977 fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
1978}
1979
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001980static void print_stat(struct feat_fd *ff __maybe_unused, FILE *fp)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001981{
1982 fprintf(fp, "# contains stat data\n");
1983}
1984
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001985static void print_cache(struct feat_fd *ff, FILE *fp __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001986{
1987 int i;
1988
1989 fprintf(fp, "# CPU cache info:\n");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001990 for (i = 0; i < ff->ph->env.caches_cnt; i++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001991 fprintf(fp, "# ");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001992 cpu_cache_level__fprintf(fp, &ff->ph->env.caches[i]);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001993 }
1994}
1995
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001996static void print_compressed(struct feat_fd *ff, FILE *fp)
1997{
1998 fprintf(fp, "# compressed : %s, level = %d, ratio = %d\n",
1999 ff->ph->env.comp_type == PERF_COMP_ZSTD ? "Zstd" : "Unknown",
2000 ff->ph->env.comp_level, ff->ph->env.comp_ratio);
2001}
2002
Jin Yaoe1190832021-05-14 20:29:48 +08002003static void print_per_cpu_pmu_caps(FILE *fp, int nr_caps, char *cpu_pmu_caps,
2004 char *pmu_name)
Kan Liang6f91ea22020-03-19 13:25:02 -07002005{
Jin Yaoe1190832021-05-14 20:29:48 +08002006 const char *delimiter;
2007 char *str, buf[128];
Kan Liang6f91ea22020-03-19 13:25:02 -07002008
2009 if (!nr_caps) {
Jin Yaoe1190832021-05-14 20:29:48 +08002010 if (!pmu_name)
2011 fprintf(fp, "# cpu pmu capabilities: not available\n");
2012 else
2013 fprintf(fp, "# %s pmu capabilities: not available\n", pmu_name);
Kan Liang6f91ea22020-03-19 13:25:02 -07002014 return;
2015 }
2016
Jin Yaoe1190832021-05-14 20:29:48 +08002017 if (!pmu_name)
2018 scnprintf(buf, sizeof(buf), "# cpu pmu capabilities: ");
2019 else
2020 scnprintf(buf, sizeof(buf), "# %s pmu capabilities: ", pmu_name);
2021
2022 delimiter = buf;
2023
2024 str = cpu_pmu_caps;
Kan Liang6f91ea22020-03-19 13:25:02 -07002025 while (nr_caps--) {
2026 fprintf(fp, "%s%s", delimiter, str);
2027 delimiter = ", ";
2028 str += strlen(str) + 1;
2029 }
2030
2031 fprintf(fp, "\n");
2032}
2033
Jin Yaoe1190832021-05-14 20:29:48 +08002034static void print_cpu_pmu_caps(struct feat_fd *ff, FILE *fp)
2035{
2036 print_per_cpu_pmu_caps(fp, ff->ph->env.nr_cpu_pmu_caps,
2037 ff->ph->env.cpu_pmu_caps, NULL);
2038}
2039
2040static void print_hybrid_cpu_pmu_caps(struct feat_fd *ff, FILE *fp)
2041{
2042 struct hybrid_cpc_node *n;
2043
2044 for (int i = 0; i < ff->ph->env.nr_hybrid_cpc_nodes; i++) {
2045 n = &ff->ph->env.hybrid_cpc_nodes[i];
2046 print_per_cpu_pmu_caps(fp, n->nr_cpu_pmu_caps,
2047 n->cpu_pmu_caps,
2048 n->pmu_name);
2049 }
2050}
2051
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002052static void print_pmu_mappings(struct feat_fd *ff, FILE *fp)
Robert Richter50a96672012-08-16 21:10:24 +02002053{
2054 const char *delimiter = "# pmu mappings: ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09002055 char *str, *tmp;
Robert Richter50a96672012-08-16 21:10:24 +02002056 u32 pmu_num;
2057 u32 type;
2058
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002059 pmu_num = ff->ph->env.nr_pmu_mappings;
Robert Richter50a96672012-08-16 21:10:24 +02002060 if (!pmu_num) {
2061 fprintf(fp, "# pmu mappings: not available\n");
2062 return;
2063 }
2064
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002065 str = ff->ph->env.pmu_mappings;
Namhyung Kimbe4a2de2012-09-05 14:02:49 +09002066
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09002067 while (pmu_num) {
2068 type = strtoul(str, &tmp, 0);
2069 if (*tmp != ':')
2070 goto error;
2071
2072 str = tmp + 1;
2073 fprintf(fp, "%s%s = %" PRIu32, delimiter, str, type);
2074
Robert Richter50a96672012-08-16 21:10:24 +02002075 delimiter = ", ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09002076 str += strlen(str) + 1;
2077 pmu_num--;
Robert Richter50a96672012-08-16 21:10:24 +02002078 }
2079
2080 fprintf(fp, "\n");
2081
2082 if (!pmu_num)
2083 return;
2084error:
2085 fprintf(fp, "# pmu mappings: unable to read\n");
2086}
2087
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002088static void print_group_desc(struct feat_fd *ff, FILE *fp)
Namhyung Kima8bb5592013-01-22 18:09:31 +09002089{
2090 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002091 struct evsel *evsel;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002092 u32 nr = 0;
2093
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002094 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002095
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002096 evlist__for_each_entry(session->evlist, evsel) {
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -03002097 if (evsel__is_group_leader(evsel) && evsel->core.nr_members > 1) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002098 fprintf(fp, "# group: %s{%s", evsel->group_name ?: "", evsel__name(evsel));
Namhyung Kima8bb5592013-01-22 18:09:31 +09002099
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002100 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002101 } else if (nr) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -03002102 fprintf(fp, ",%s", evsel__name(evsel));
Namhyung Kima8bb5592013-01-22 18:09:31 +09002103
2104 if (--nr == 0)
2105 fprintf(fp, "}\n");
2106 }
2107 }
2108}
2109
Jin Yao60115182017-12-08 21:13:41 +08002110static void print_sample_time(struct feat_fd *ff, FILE *fp)
2111{
2112 struct perf_session *session;
2113 char time_buf[32];
2114 double d;
2115
2116 session = container_of(ff->ph, struct perf_session, header);
2117
2118 timestamp__scnprintf_usec(session->evlist->first_sample_time,
2119 time_buf, sizeof(time_buf));
2120 fprintf(fp, "# time of first sample : %s\n", time_buf);
2121
2122 timestamp__scnprintf_usec(session->evlist->last_sample_time,
2123 time_buf, sizeof(time_buf));
2124 fprintf(fp, "# time of last sample : %s\n", time_buf);
2125
2126 d = (double)(session->evlist->last_sample_time -
2127 session->evlist->first_sample_time) / NSEC_PER_MSEC;
2128
2129 fprintf(fp, "# sample duration : %10.3f ms\n", d);
2130}
2131
Jiri Olsae2091ce2018-03-07 16:50:08 +01002132static void memory_node__fprintf(struct memory_node *n,
2133 unsigned long long bsize, FILE *fp)
2134{
2135 char buf_map[100], buf_size[50];
2136 unsigned long long size;
2137
2138 size = bsize * bitmap_weight(n->set, n->size);
2139 unit_number__scnprintf(buf_size, 50, size);
2140
2141 bitmap_scnprintf(n->set, n->size, buf_map, 100);
2142 fprintf(fp, "# %3" PRIu64 " [%s]: %s\n", n->node, buf_size, buf_map);
2143}
2144
2145static void print_mem_topology(struct feat_fd *ff, FILE *fp)
2146{
2147 struct memory_node *nodes;
2148 int i, nr;
2149
2150 nodes = ff->ph->env.memory_nodes;
2151 nr = ff->ph->env.nr_memory_nodes;
2152
2153 fprintf(fp, "# memory nodes (nr %d, block size 0x%llx):\n",
2154 nr, ff->ph->env.memory_bsize);
2155
2156 for (i = 0; i < nr; i++) {
2157 memory_node__fprintf(&nodes[i], ff->ph->env.memory_bsize, fp);
2158 }
2159}
2160
Jiri Olsa72932372019-08-28 15:57:16 +02002161static int __event_process_build_id(struct perf_record_header_build_id *bev,
Robert Richter08d95bd2012-02-10 15:41:55 +01002162 char *filename,
2163 struct perf_session *session)
2164{
2165 int err = -1;
Robert Richter08d95bd2012-02-10 15:41:55 +01002166 struct machine *machine;
Wang Nan1f121b02015-06-03 08:52:21 +00002167 u16 cpumode;
Robert Richter08d95bd2012-02-10 15:41:55 +01002168 struct dso *dso;
Jiri Olsa1c695c82020-08-08 14:21:54 +02002169 enum dso_space_type dso_space;
Robert Richter08d95bd2012-02-10 15:41:55 +01002170
2171 machine = perf_session__findnew_machine(session, bev->pid);
2172 if (!machine)
2173 goto out;
2174
Wang Nan1f121b02015-06-03 08:52:21 +00002175 cpumode = bev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Robert Richter08d95bd2012-02-10 15:41:55 +01002176
Wang Nan1f121b02015-06-03 08:52:21 +00002177 switch (cpumode) {
Robert Richter08d95bd2012-02-10 15:41:55 +01002178 case PERF_RECORD_MISC_KERNEL:
Jiri Olsa1c695c82020-08-08 14:21:54 +02002179 dso_space = DSO_SPACE__KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01002180 break;
2181 case PERF_RECORD_MISC_GUEST_KERNEL:
Jiri Olsa1c695c82020-08-08 14:21:54 +02002182 dso_space = DSO_SPACE__KERNEL_GUEST;
Robert Richter08d95bd2012-02-10 15:41:55 +01002183 break;
2184 case PERF_RECORD_MISC_USER:
2185 case PERF_RECORD_MISC_GUEST_USER:
Jiri Olsa1c695c82020-08-08 14:21:54 +02002186 dso_space = DSO_SPACE__USER;
Robert Richter08d95bd2012-02-10 15:41:55 +01002187 break;
2188 default:
2189 goto out;
2190 }
2191
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03002192 dso = machine__findnew_dso(machine, filename);
Robert Richter08d95bd2012-02-10 15:41:55 +01002193 if (dso != NULL) {
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09002194 char sbuild_id[SBUILD_ID_SIZE];
Jiri Olsa8dfdf442020-10-13 21:24:37 +02002195 struct build_id bid;
Jiri Olsab0a323c2020-10-13 21:24:39 +02002196 size_t size = BUILD_ID_SIZE;
Robert Richter08d95bd2012-02-10 15:41:55 +01002197
Jiri Olsab0a323c2020-10-13 21:24:39 +02002198 if (bev->header.misc & PERF_RECORD_MISC_BUILD_ID_SIZE)
2199 size = bev->size;
2200
2201 build_id__init(&bid, bev->data, size);
Jiri Olsa8dfdf442020-10-13 21:24:37 +02002202 dso__set_build_id(dso, &bid);
Robert Richter08d95bd2012-02-10 15:41:55 +01002203
Jiri Olsa1c695c82020-08-08 14:21:54 +02002204 if (dso_space != DSO_SPACE__USER) {
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002205 struct kmod_path m = { .name = NULL, };
2206
2207 if (!kmod_path__parse_name(&m, filename) && m.kmod)
Namhyung Kim6b335e82017-05-31 21:01:04 +09002208 dso__set_module_info(dso, &m, machine);
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002209
Jiri Olsab2fe96a2020-08-08 14:26:56 +02002210 dso->kernel = dso_space;
Namhyung Kim1deec1b2017-05-31 21:01:03 +09002211 free(m.name);
2212 }
Robert Richter08d95bd2012-02-10 15:41:55 +01002213
Jiri Olsabf541162020-10-13 21:24:36 +02002214 build_id__sprintf(&dso->bid, sbuild_id);
Jiri Olsab0a323c2020-10-13 21:24:39 +02002215 pr_debug("build id event received for %s: %s [%zu]\n",
2216 dso->long_name, sbuild_id, size);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03002217 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01002218 }
2219
2220 err = 0;
2221out:
2222 return err;
2223}
2224
2225static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
2226 int input, u64 offset, u64 size)
2227{
2228 struct perf_session *session = container_of(header, struct perf_session, header);
2229 struct {
2230 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03002231 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01002232 char filename[0];
2233 } old_bev;
Jiri Olsa72932372019-08-28 15:57:16 +02002234 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01002235 char filename[PATH_MAX];
2236 u64 limit = offset + size;
2237
2238 while (offset < limit) {
2239 ssize_t len;
2240
Namhyung Kim5323f602012-12-17 15:38:54 +09002241 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01002242 return -1;
2243
2244 if (header->needs_swap)
2245 perf_event_header__bswap(&old_bev.header);
2246
2247 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002248 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002249 return -1;
2250
2251 bev.header = old_bev.header;
2252
2253 /*
2254 * As the pid is the missing value, we need to fill
2255 * it properly. The header.misc value give us nice hint.
2256 */
2257 bev.pid = HOST_KERNEL_ID;
2258 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
2259 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
2260 bev.pid = DEFAULT_GUEST_KERNEL_ID;
2261
2262 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
2263 __event_process_build_id(&bev, filename, session);
2264
2265 offset += bev.header.size;
2266 }
2267
2268 return 0;
2269}
2270
2271static int perf_header__read_build_ids(struct perf_header *header,
2272 int input, u64 offset, u64 size)
2273{
2274 struct perf_session *session = container_of(header, struct perf_session, header);
Jiri Olsa72932372019-08-28 15:57:16 +02002275 struct perf_record_header_build_id bev;
Robert Richter08d95bd2012-02-10 15:41:55 +01002276 char filename[PATH_MAX];
2277 u64 limit = offset + size, orig_offset = offset;
2278 int err = -1;
2279
2280 while (offset < limit) {
2281 ssize_t len;
2282
Namhyung Kim5323f602012-12-17 15:38:54 +09002283 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01002284 goto out;
2285
2286 if (header->needs_swap)
2287 perf_event_header__bswap(&bev.header);
2288
2289 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002290 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002291 goto out;
2292 /*
2293 * The a1645ce1 changeset:
2294 *
2295 * "perf: 'perf kvm' tool for monitoring guest performance from host"
2296 *
Jiri Olsa72932372019-08-28 15:57:16 +02002297 * Added a field to struct perf_record_header_build_id that broke the file
Robert Richter08d95bd2012-02-10 15:41:55 +01002298 * format.
2299 *
2300 * Since the kernel build-id is the first entry, process the
2301 * table using the old format if the well known
2302 * '[kernel.kallsyms]' string for the kernel build-id has the
2303 * first 4 characters chopped off (where the pid_t sits).
2304 */
2305 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
2306 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
2307 return -1;
2308 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
2309 }
2310
2311 __event_process_build_id(&bev, filename, session);
2312
2313 offset += bev.header.size;
2314 }
2315 err = 0;
2316out:
2317 return err;
2318}
2319
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002320/* Macro for features that simply need to read and store a string. */
2321#define FEAT_PROCESS_STR_FUN(__feat, __feat_env) \
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002322static int process_##__feat(struct feat_fd *ff, void *data __maybe_unused) \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002323{\
Ian Rogers47473952021-11-18 12:17:30 -08002324 free(ff->ph->env.__feat_env); \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002325 ff->ph->env.__feat_env = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002326 return ff->ph->env.__feat_env ? 0 : -ENOMEM; \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002327}
2328
2329FEAT_PROCESS_STR_FUN(hostname, hostname);
2330FEAT_PROCESS_STR_FUN(osrelease, os_release);
2331FEAT_PROCESS_STR_FUN(version, version);
2332FEAT_PROCESS_STR_FUN(arch, arch);
2333FEAT_PROCESS_STR_FUN(cpudesc, cpu_desc);
2334FEAT_PROCESS_STR_FUN(cpuid, cpuid);
2335
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002336static int process_tracing_data(struct feat_fd *ff, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01002337{
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002338 ssize_t ret = trace_report(ff->fd, data, false);
2339
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002340 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01002341}
2342
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002343static int process_build_id(struct feat_fd *ff, void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01002344{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002345 if (perf_header__read_build_ids(ff->ph, ff->fd, ff->offset, ff->size))
Robert Richterf1c67db2012-02-10 15:41:56 +01002346 pr_debug("Failed to read buildids, continuing...\n");
2347 return 0;
2348}
2349
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002350static int process_nrcpus(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002351{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002352 int ret;
2353 u32 nr_cpus_avail, nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002354
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002355 ret = do_read_u32(ff, &nr_cpus_avail);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002356 if (ret)
2357 return ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002358
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002359 ret = do_read_u32(ff, &nr_cpus_online);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002360 if (ret)
2361 return ret;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002362 ff->ph->env.nr_cpus_avail = (int)nr_cpus_avail;
2363 ff->ph->env.nr_cpus_online = (int)nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002364 return 0;
2365}
2366
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002367static int process_total_mem(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002368{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002369 u64 total_mem;
2370 int ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002371
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002372 ret = do_read_u64(ff, &total_mem);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002373 if (ret)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002374 return -1;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002375 ff->ph->env.total_mem = (unsigned long long)total_mem;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002376 return 0;
2377}
2378
Arnaldo Carvalho de Melob02736f2020-11-30 09:48:07 -03002379static struct evsel *evlist__find_by_index(struct evlist *evlist, int idx)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002380{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002381 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002382
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002383 evlist__for_each_entry(evlist, evsel) {
Jiri Olsa38fe0e02021-07-06 17:16:59 +02002384 if (evsel->core.idx == idx)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002385 return evsel;
2386 }
2387
2388 return NULL;
2389}
2390
Arnaldo Carvalho de Melo1420ba22020-11-30 15:13:12 -03002391static void evlist__set_event_name(struct evlist *evlist, struct evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002392{
Jiri Olsa32dcd022019-07-21 13:23:51 +02002393 struct evsel *evsel;
Robert Richter7c2f7af2012-08-16 21:10:23 +02002394
2395 if (!event->name)
2396 return;
2397
Jiri Olsa38fe0e02021-07-06 17:16:59 +02002398 evsel = evlist__find_by_index(evlist, event->core.idx);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002399 if (!evsel)
2400 return;
2401
2402 if (evsel->name)
2403 return;
2404
2405 evsel->name = strdup(event->name);
2406}
2407
2408static int
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002409process_event_desc(struct feat_fd *ff, void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002410{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002411 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002412 struct evsel *evsel, *events = read_event_desc(ff);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002413
2414 if (!events)
2415 return 0;
2416
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002417 session = container_of(ff->ph, struct perf_session, header);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002418
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002419 if (session->data->is_pipe) {
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002420 /* Save events for reading later by print_event_desc,
2421 * since they can't be read again in pipe mode. */
2422 ff->events = events;
2423 }
2424
Jiri Olsa1fc632c2019-07-21 13:24:29 +02002425 for (evsel = events; evsel->core.attr.size; evsel++)
Arnaldo Carvalho de Melo1420ba22020-11-30 15:13:12 -03002426 evlist__set_event_name(session->evlist, evsel);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002427
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002428 if (!session->data->is_pipe)
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002429 free_event_desc(events);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002430
2431 return 0;
2432}
2433
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002434static int process_cmdline(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002435{
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002436 char *str, *cmdline = NULL, **argv = NULL;
2437 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002438
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002439 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002440 return -1;
2441
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002442 ff->ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002443
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002444 cmdline = zalloc(ff->size + nr + 1);
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002445 if (!cmdline)
2446 return -1;
2447
2448 argv = zalloc(sizeof(char *) * (nr + 1));
2449 if (!argv)
2450 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002451
2452 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002453 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002454 if (!str)
2455 goto error;
2456
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002457 argv[i] = cmdline + len;
2458 memcpy(argv[i], str, strlen(str) + 1);
2459 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002460 free(str);
2461 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002462 ff->ph->env.cmdline = cmdline;
2463 ff->ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002464 return 0;
2465
2466error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002467 free(argv);
2468 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002469 return -1;
2470}
2471
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002472static int process_cpu_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002473{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002474 u32 nr, i;
2475 char *str;
2476 struct strbuf sb;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002477 int cpu_nr = ff->ph->env.nr_cpus_avail;
Kan Liang2bb00d22015-09-01 09:58:12 -04002478 u64 size = 0;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002479 struct perf_header *ph = ff->ph;
Thomas Richter01766222018-06-11 09:31:52 +02002480 bool do_core_id_test = true;
Kan Liang2bb00d22015-09-01 09:58:12 -04002481
2482 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
2483 if (!ph->env.cpu)
2484 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002485
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002486 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002487 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002488
Namhyung Kima1ae5652012-09-24 17:14:59 +09002489 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002490 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002491 if (strbuf_init(&sb, 128) < 0)
2492 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002493
2494 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002495 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002496 if (!str)
2497 goto error;
2498
2499 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002500 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2501 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002502 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002503 free(str);
2504 }
2505 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
2506
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002507 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002508 return -1;
2509
Namhyung Kima1ae5652012-09-24 17:14:59 +09002510 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002511 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002512
2513 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002514 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002515 if (!str)
2516 goto error;
2517
2518 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002519 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2520 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002521 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002522 free(str);
2523 }
2524 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04002525
2526 /*
2527 * The header may be from old perf,
2528 * which doesn't include core id and socket id information.
2529 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002530 if (ff->size <= size) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002531 zfree(&ph->env.cpu);
2532 return 0;
2533 }
2534
Thomas Richter01766222018-06-11 09:31:52 +02002535 /* On s390 the socket_id number is not related to the numbers of cpus.
2536 * The socket_id number might be higher than the numbers of cpus.
2537 * This depends on the configuration.
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002538 * AArch64 is the same.
Thomas Richter01766222018-06-11 09:31:52 +02002539 */
Tan Xiaojun0a4d8fb2019-08-02 11:48:57 +08002540 if (ph->env.arch && (!strncmp(ph->env.arch, "s390", 4)
2541 || !strncmp(ph->env.arch, "aarch64", 7)))
Thomas Richter01766222018-06-11 09:31:52 +02002542 do_core_id_test = false;
2543
Kan Liang2bb00d22015-09-01 09:58:12 -04002544 for (i = 0; i < (u32)cpu_nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002545 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002546 goto free_cpu;
2547
Kan Liang2bb00d22015-09-01 09:58:12 -04002548 ph->env.cpu[i].core_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002549 size += sizeof(u32);
Kan Liang2bb00d22015-09-01 09:58:12 -04002550
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002551 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002552 goto free_cpu;
2553
Thomas Richter01766222018-06-11 09:31:52 +02002554 if (do_core_id_test && nr != (u32)-1 && nr > (u32)cpu_nr) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002555 pr_debug("socket_id number is too big."
2556 "You may need to upgrade the perf tool.\n");
2557 goto free_cpu;
2558 }
2559
2560 ph->env.cpu[i].socket_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002561 size += sizeof(u32);
2562 }
2563
2564 /*
2565 * The header may be from old perf,
2566 * which doesn't include die information.
2567 */
2568 if (ff->size <= size)
2569 return 0;
2570
2571 if (do_read_u32(ff, &nr))
2572 return -1;
2573
2574 ph->env.nr_sibling_dies = nr;
2575 size += sizeof(u32);
2576
2577 for (i = 0; i < nr; i++) {
2578 str = do_read_string(ff);
2579 if (!str)
2580 goto error;
2581
2582 /* include a NULL character at the end */
2583 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2584 goto error;
2585 size += string_size(str);
2586 free(str);
2587 }
2588 ph->env.sibling_dies = strbuf_detach(&sb, NULL);
2589
2590 for (i = 0; i < (u32)cpu_nr; i++) {
2591 if (do_read_u32(ff, &nr))
2592 goto free_cpu;
2593
2594 ph->env.cpu[i].die_id = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002595 }
2596
Namhyung Kima1ae5652012-09-24 17:14:59 +09002597 return 0;
2598
2599error:
2600 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04002601free_cpu:
2602 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002603 return -1;
2604}
2605
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002606static int process_numa_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002607{
Jiri Olsac60da222016-07-04 14:16:20 +02002608 struct numa_node *nodes, *n;
Jiri Olsac60da222016-07-04 14:16:20 +02002609 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002610 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002611
2612 /* nr nodes */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002613 if (do_read_u32(ff, &nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002614 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002615
Jiri Olsac60da222016-07-04 14:16:20 +02002616 nodes = zalloc(sizeof(*nodes) * nr);
2617 if (!nodes)
2618 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002619
2620 for (i = 0; i < nr; i++) {
Jiri Olsac60da222016-07-04 14:16:20 +02002621 n = &nodes[i];
2622
Namhyung Kima1ae5652012-09-24 17:14:59 +09002623 /* node number */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002624 if (do_read_u32(ff, &n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002625 goto error;
2626
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002627 if (do_read_u64(ff, &n->mem_total))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002628 goto error;
2629
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002630 if (do_read_u64(ff, &n->mem_free))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002631 goto error;
2632
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002633 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002634 if (!str)
2635 goto error;
2636
Jiri Olsa9c3516d2019-07-21 13:24:30 +02002637 n->map = perf_cpu_map__new(str);
Jiri Olsac60da222016-07-04 14:16:20 +02002638 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002639 goto error;
Jiri Olsac60da222016-07-04 14:16:20 +02002640
Namhyung Kima1ae5652012-09-24 17:14:59 +09002641 free(str);
2642 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002643 ff->ph->env.nr_numa_nodes = nr;
2644 ff->ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002645 return 0;
2646
2647error:
Jiri Olsac60da222016-07-04 14:16:20 +02002648 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002649 return -1;
2650}
2651
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002652static int process_pmu_mappings(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002653{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002654 char *name;
2655 u32 pmu_num;
2656 u32 type;
2657 struct strbuf sb;
2658
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002659 if (do_read_u32(ff, &pmu_num))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002660 return -1;
2661
Namhyung Kima1ae5652012-09-24 17:14:59 +09002662 if (!pmu_num) {
2663 pr_debug("pmu mappings not available\n");
2664 return 0;
2665 }
2666
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002667 ff->ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002668 if (strbuf_init(&sb, 128) < 0)
2669 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002670
2671 while (pmu_num) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002672 if (do_read_u32(ff, &type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002673 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002674
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002675 name = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002676 if (!name)
2677 goto error;
2678
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002679 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
2680 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002681 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002682 if (strbuf_add(&sb, "", 1) < 0)
2683 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002684
Kan Liange0838e02015-09-10 11:03:05 -03002685 if (!strcmp(name, "msr"))
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002686 ff->ph->env.msr_pmu_type = type;
Kan Liange0838e02015-09-10 11:03:05 -03002687
Namhyung Kima1ae5652012-09-24 17:14:59 +09002688 free(name);
2689 pmu_num--;
2690 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002691 ff->ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002692 return 0;
2693
2694error:
2695 strbuf_release(&sb);
2696 return -1;
2697}
2698
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002699static int process_group_desc(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima8bb5592013-01-22 18:09:31 +09002700{
2701 size_t ret = -1;
2702 u32 i, nr, nr_groups;
2703 struct perf_session *session;
Jiri Olsa32dcd022019-07-21 13:23:51 +02002704 struct evsel *evsel, *leader = NULL;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002705 struct group_desc {
2706 char *name;
2707 u32 leader_idx;
2708 u32 nr_members;
2709 } *desc;
2710
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002711 if (do_read_u32(ff, &nr_groups))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002712 return -1;
2713
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002714 ff->ph->env.nr_groups = nr_groups;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002715 if (!nr_groups) {
2716 pr_debug("group desc not available\n");
2717 return 0;
2718 }
2719
2720 desc = calloc(nr_groups, sizeof(*desc));
2721 if (!desc)
2722 return -1;
2723
2724 for (i = 0; i < nr_groups; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002725 desc[i].name = do_read_string(ff);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002726 if (!desc[i].name)
2727 goto out_free;
2728
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002729 if (do_read_u32(ff, &desc[i].leader_idx))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002730 goto out_free;
2731
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002732 if (do_read_u32(ff, &desc[i].nr_members))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002733 goto out_free;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002734 }
2735
2736 /*
2737 * Rebuild group relationship based on the group_desc
2738 */
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002739 session = container_of(ff->ph, struct perf_session, header);
Jiri Olsa3a683122021-07-06 17:17:01 +02002740 session->evlist->core.nr_groups = nr_groups;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002741
2742 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002743 evlist__for_each_entry(session->evlist, evsel) {
Jiri Olsa38fe0e02021-07-06 17:16:59 +02002744 if (evsel->core.idx == (int) desc[i].leader_idx) {
Jiri Olsafba7c862021-07-06 17:17:00 +02002745 evsel__set_leader(evsel, evsel);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002746 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002747 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002748 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002749 desc[i].name = NULL;
2750 }
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002751 evsel->core.nr_members = desc[i].nr_members;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002752
2753 if (i >= nr_groups || nr > 0) {
2754 pr_debug("invalid group desc\n");
2755 goto out_free;
2756 }
2757
2758 leader = evsel;
Jiri Olsa5643b1a2019-07-21 13:24:46 +02002759 nr = evsel->core.nr_members - 1;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002760 i++;
2761 } else if (nr) {
2762 /* This is a group member */
Jiri Olsafba7c862021-07-06 17:17:00 +02002763 evsel__set_leader(evsel, leader);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002764
2765 nr--;
2766 }
2767 }
2768
2769 if (i != nr_groups || nr != 0) {
2770 pr_debug("invalid group desc\n");
2771 goto out_free;
2772 }
2773
2774 ret = 0;
2775out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002776 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002777 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002778 free(desc);
2779
2780 return ret;
2781}
2782
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002783static int process_auxtrace(struct feat_fd *ff, void *data __maybe_unused)
Adrian Hunter99fa2982015-04-30 17:37:25 +03002784{
2785 struct perf_session *session;
2786 int err;
2787
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002788 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002789
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002790 err = auxtrace_index__process(ff->fd, ff->size, session,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002791 ff->ph->needs_swap);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002792 if (err < 0)
2793 pr_err("Failed to process auxtrace index\n");
2794 return err;
2795}
2796
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002797static int process_cache(struct feat_fd *ff, void *data __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01002798{
2799 struct cpu_cache_level *caches;
2800 u32 cnt, i, version;
2801
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002802 if (do_read_u32(ff, &version))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002803 return -1;
2804
Jiri Olsa720e98b2016-02-16 16:01:43 +01002805 if (version != 1)
2806 return -1;
2807
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002808 if (do_read_u32(ff, &cnt))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002809 return -1;
2810
Jiri Olsa720e98b2016-02-16 16:01:43 +01002811 caches = zalloc(sizeof(*caches) * cnt);
2812 if (!caches)
2813 return -1;
2814
2815 for (i = 0; i < cnt; i++) {
2816 struct cpu_cache_level c;
2817
2818 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002819 if (do_read_u32(ff, &c.v))\
Jiri Olsa720e98b2016-02-16 16:01:43 +01002820 goto out_free_caches; \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002821
2822 _R(level)
2823 _R(line_size)
2824 _R(sets)
2825 _R(ways)
2826 #undef _R
2827
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002828 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002829 c.v = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002830 if (!c.v) \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002831 goto out_free_caches;
2832
2833 _R(type)
2834 _R(size)
2835 _R(map)
2836 #undef _R
2837
2838 caches[i] = c;
2839 }
2840
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002841 ff->ph->env.caches = caches;
2842 ff->ph->env.caches_cnt = cnt;
Jiri Olsa720e98b2016-02-16 16:01:43 +01002843 return 0;
2844out_free_caches:
2845 free(caches);
2846 return -1;
2847}
2848
Jin Yao60115182017-12-08 21:13:41 +08002849static int process_sample_time(struct feat_fd *ff, void *data __maybe_unused)
2850{
2851 struct perf_session *session;
2852 u64 first_sample_time, last_sample_time;
2853 int ret;
2854
2855 session = container_of(ff->ph, struct perf_session, header);
2856
2857 ret = do_read_u64(ff, &first_sample_time);
2858 if (ret)
2859 return -1;
2860
2861 ret = do_read_u64(ff, &last_sample_time);
2862 if (ret)
2863 return -1;
2864
2865 session->evlist->first_sample_time = first_sample_time;
2866 session->evlist->last_sample_time = last_sample_time;
2867 return 0;
2868}
2869
Jiri Olsae2091ce2018-03-07 16:50:08 +01002870static int process_mem_topology(struct feat_fd *ff,
2871 void *data __maybe_unused)
2872{
2873 struct memory_node *nodes;
2874 u64 version, i, nr, bsize;
2875 int ret = -1;
2876
2877 if (do_read_u64(ff, &version))
2878 return -1;
2879
2880 if (version != 1)
2881 return -1;
2882
2883 if (do_read_u64(ff, &bsize))
2884 return -1;
2885
2886 if (do_read_u64(ff, &nr))
2887 return -1;
2888
2889 nodes = zalloc(sizeof(*nodes) * nr);
2890 if (!nodes)
2891 return -1;
2892
2893 for (i = 0; i < nr; i++) {
2894 struct memory_node n;
2895
2896 #define _R(v) \
2897 if (do_read_u64(ff, &n.v)) \
2898 goto out; \
2899
2900 _R(node)
2901 _R(size)
2902
2903 #undef _R
2904
2905 if (do_read_bitmap(ff, &n.set, &n.size))
2906 goto out;
2907
2908 nodes[i] = n;
2909 }
2910
2911 ff->ph->env.memory_bsize = bsize;
2912 ff->ph->env.memory_nodes = nodes;
2913 ff->ph->env.nr_memory_nodes = nr;
2914 ret = 0;
2915
2916out:
2917 if (ret)
2918 free(nodes);
2919 return ret;
2920}
2921
Alexey Budankovcf790512018-10-09 17:36:24 +03002922static int process_clockid(struct feat_fd *ff,
2923 void *data __maybe_unused)
2924{
Jiri Olsa9d88a1a12020-08-05 11:34:41 +02002925 if (do_read_u64(ff, &ff->ph->env.clock.clockid_res_ns))
Alexey Budankovcf790512018-10-09 17:36:24 +03002926 return -1;
2927
2928 return 0;
2929}
2930
Jiri Olsad1e325c2020-08-05 11:34:40 +02002931static int process_clock_data(struct feat_fd *ff,
2932 void *_data __maybe_unused)
2933{
2934 u32 data32;
2935 u64 data64;
2936
2937 /* version */
2938 if (do_read_u32(ff, &data32))
2939 return -1;
2940
2941 if (data32 != 1)
2942 return -1;
2943
2944 /* clockid */
2945 if (do_read_u32(ff, &data32))
2946 return -1;
2947
2948 ff->ph->env.clock.clockid = data32;
2949
2950 /* TOD ref time */
2951 if (do_read_u64(ff, &data64))
2952 return -1;
2953
2954 ff->ph->env.clock.tod_ns = data64;
2955
2956 /* clockid ref time */
2957 if (do_read_u64(ff, &data64))
2958 return -1;
2959
2960 ff->ph->env.clock.clockid_ns = data64;
2961 ff->ph->env.clock.enabled = true;
2962 return 0;
2963}
2964
Jin Yaof7d74ce2021-05-14 20:29:47 +08002965static int process_hybrid_topology(struct feat_fd *ff,
2966 void *data __maybe_unused)
2967{
2968 struct hybrid_node *nodes, *n;
2969 u32 nr, i;
2970
2971 /* nr nodes */
2972 if (do_read_u32(ff, &nr))
2973 return -1;
2974
2975 nodes = zalloc(sizeof(*nodes) * nr);
2976 if (!nodes)
2977 return -ENOMEM;
2978
2979 for (i = 0; i < nr; i++) {
2980 n = &nodes[i];
2981
2982 n->pmu_name = do_read_string(ff);
2983 if (!n->pmu_name)
2984 goto error;
2985
2986 n->cpus = do_read_string(ff);
2987 if (!n->cpus)
2988 goto error;
2989 }
2990
2991 ff->ph->env.nr_hybrid_nodes = nr;
2992 ff->ph->env.hybrid_nodes = nodes;
2993 return 0;
2994
2995error:
2996 for (i = 0; i < nr; i++) {
2997 free(nodes[i].pmu_name);
2998 free(nodes[i].cpus);
2999 }
3000
3001 free(nodes);
3002 return -1;
3003}
3004
Jiri Olsa258031c2019-03-08 14:47:39 +01003005static int process_dir_format(struct feat_fd *ff,
3006 void *_data __maybe_unused)
3007{
3008 struct perf_session *session;
3009 struct perf_data *data;
3010
3011 session = container_of(ff->ph, struct perf_session, header);
3012 data = session->data;
3013
3014 if (WARN_ON(!perf_data__is_dir(data)))
3015 return -1;
3016
3017 return do_read_u64(ff, &data->dir.version);
3018}
3019
Song Liu606f9722019-03-11 22:30:43 -07003020#ifdef HAVE_LIBBPF_SUPPORT
3021static int process_bpf_prog_info(struct feat_fd *ff, void *data __maybe_unused)
3022{
Song Liu606f9722019-03-11 22:30:43 -07003023 struct bpf_prog_info_node *info_node;
3024 struct perf_env *env = &ff->ph->env;
Dave Marchevsky6ac22d02021-10-11 01:20:30 -07003025 struct perf_bpil *info_linear;
Song Liu606f9722019-03-11 22:30:43 -07003026 u32 count, i;
3027 int err = -1;
3028
3029 if (ff->ph->needs_swap) {
Ingo Molnar4d39c892021-03-23 17:09:15 +01003030 pr_warning("interpreting bpf_prog_info from systems with endianness is not yet supported\n");
Song Liu606f9722019-03-11 22:30:43 -07003031 return 0;
3032 }
3033
3034 if (do_read_u32(ff, &count))
3035 return -1;
3036
3037 down_write(&env->bpf_progs.lock);
3038
3039 for (i = 0; i < count; ++i) {
3040 u32 info_len, data_len;
3041
3042 info_linear = NULL;
3043 info_node = NULL;
3044 if (do_read_u32(ff, &info_len))
3045 goto out;
3046 if (do_read_u32(ff, &data_len))
3047 goto out;
3048
3049 if (info_len > sizeof(struct bpf_prog_info)) {
3050 pr_warning("detected invalid bpf_prog_info\n");
3051 goto out;
3052 }
3053
Dave Marchevsky6ac22d02021-10-11 01:20:30 -07003054 info_linear = malloc(sizeof(struct perf_bpil) +
Song Liu606f9722019-03-11 22:30:43 -07003055 data_len);
3056 if (!info_linear)
3057 goto out;
3058 info_linear->info_len = sizeof(struct bpf_prog_info);
3059 info_linear->data_len = data_len;
3060 if (do_read_u64(ff, (u64 *)(&info_linear->arrays)))
3061 goto out;
3062 if (__do_read(ff, &info_linear->info, info_len))
3063 goto out;
3064 if (info_len < sizeof(struct bpf_prog_info))
3065 memset(((void *)(&info_linear->info)) + info_len, 0,
3066 sizeof(struct bpf_prog_info) - info_len);
3067
3068 if (__do_read(ff, info_linear->data, data_len))
3069 goto out;
3070
3071 info_node = malloc(sizeof(struct bpf_prog_info_node));
3072 if (!info_node)
3073 goto out;
3074
3075 /* after reading from file, translate offset to address */
Dave Marchevsky6ac22d02021-10-11 01:20:30 -07003076 bpil_offs_to_addr(info_linear);
Song Liu606f9722019-03-11 22:30:43 -07003077 info_node->info_linear = info_linear;
3078 perf_env__insert_bpf_prog_info(env, info_node);
3079 }
3080
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003081 up_write(&env->bpf_progs.lock);
Song Liu606f9722019-03-11 22:30:43 -07003082 return 0;
3083out:
3084 free(info_linear);
3085 free(info_node);
3086 up_write(&env->bpf_progs.lock);
3087 return err;
3088}
Song Liu606f9722019-03-11 22:30:43 -07003089
Song Liua70a112312019-03-11 22:30:45 -07003090static int process_bpf_btf(struct feat_fd *ff, void *data __maybe_unused)
3091{
3092 struct perf_env *env = &ff->ph->env;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003093 struct btf_node *node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07003094 u32 count, i;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003095 int err = -1;
Song Liua70a112312019-03-11 22:30:45 -07003096
3097 if (ff->ph->needs_swap) {
Ingo Molnar4d39c892021-03-23 17:09:15 +01003098 pr_warning("interpreting btf from systems with endianness is not yet supported\n");
Song Liua70a112312019-03-11 22:30:45 -07003099 return 0;
3100 }
3101
3102 if (do_read_u32(ff, &count))
3103 return -1;
3104
3105 down_write(&env->bpf_progs.lock);
3106
3107 for (i = 0; i < count; ++i) {
Song Liua70a112312019-03-11 22:30:45 -07003108 u32 id, data_size;
3109
3110 if (do_read_u32(ff, &id))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003111 goto out;
Song Liua70a112312019-03-11 22:30:45 -07003112 if (do_read_u32(ff, &data_size))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003113 goto out;
Song Liua70a112312019-03-11 22:30:45 -07003114
3115 node = malloc(sizeof(struct btf_node) + data_size);
3116 if (!node)
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003117 goto out;
Song Liua70a112312019-03-11 22:30:45 -07003118
3119 node->id = id;
3120 node->data_size = data_size;
3121
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003122 if (__do_read(ff, node->data, data_size))
3123 goto out;
Song Liua70a112312019-03-11 22:30:45 -07003124
3125 perf_env__insert_btf(env, node);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003126 node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07003127 }
3128
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003129 err = 0;
3130out:
Song Liua70a112312019-03-11 22:30:45 -07003131 up_write(&env->bpf_progs.lock);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05003132 free(node);
3133 return err;
Song Liua70a112312019-03-11 22:30:45 -07003134}
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -03003135#endif // HAVE_LIBBPF_SUPPORT
Song Liua70a112312019-03-11 22:30:45 -07003136
Alexey Budankov42e1fd82019-03-18 20:41:33 +03003137static int process_compressed(struct feat_fd *ff,
3138 void *data __maybe_unused)
3139{
3140 if (do_read_u32(ff, &(ff->ph->env.comp_ver)))
3141 return -1;
3142
3143 if (do_read_u32(ff, &(ff->ph->env.comp_type)))
3144 return -1;
3145
3146 if (do_read_u32(ff, &(ff->ph->env.comp_level)))
3147 return -1;
3148
3149 if (do_read_u32(ff, &(ff->ph->env.comp_ratio)))
3150 return -1;
3151
3152 if (do_read_u32(ff, &(ff->ph->env.comp_mmap_len)))
3153 return -1;
3154
3155 return 0;
3156}
3157
Jin Yaoe1190832021-05-14 20:29:48 +08003158static int process_per_cpu_pmu_caps(struct feat_fd *ff, int *nr_cpu_pmu_caps,
3159 char **cpu_pmu_caps,
3160 unsigned int *max_branches)
Kan Liang6f91ea22020-03-19 13:25:02 -07003161{
3162 char *name, *value;
3163 struct strbuf sb;
3164 u32 nr_caps;
3165
3166 if (do_read_u32(ff, &nr_caps))
3167 return -1;
3168
3169 if (!nr_caps) {
3170 pr_debug("cpu pmu capabilities not available\n");
3171 return 0;
3172 }
3173
Jin Yaoe1190832021-05-14 20:29:48 +08003174 *nr_cpu_pmu_caps = nr_caps;
Kan Liang6f91ea22020-03-19 13:25:02 -07003175
3176 if (strbuf_init(&sb, 128) < 0)
3177 return -1;
3178
3179 while (nr_caps--) {
3180 name = do_read_string(ff);
3181 if (!name)
3182 goto error;
3183
3184 value = do_read_string(ff);
3185 if (!value)
3186 goto free_name;
3187
3188 if (strbuf_addf(&sb, "%s=%s", name, value) < 0)
3189 goto free_value;
3190
3191 /* include a NULL character at the end */
3192 if (strbuf_add(&sb, "", 1) < 0)
3193 goto free_value;
3194
3195 if (!strcmp(name, "branches"))
Jin Yaoe1190832021-05-14 20:29:48 +08003196 *max_branches = atoi(value);
Kan Liang6f91ea22020-03-19 13:25:02 -07003197
3198 free(value);
3199 free(name);
3200 }
Jin Yaoe1190832021-05-14 20:29:48 +08003201 *cpu_pmu_caps = strbuf_detach(&sb, NULL);
Kan Liang6f91ea22020-03-19 13:25:02 -07003202 return 0;
3203
3204free_value:
3205 free(value);
3206free_name:
3207 free(name);
3208error:
3209 strbuf_release(&sb);
3210 return -1;
3211}
3212
Jin Yaoe1190832021-05-14 20:29:48 +08003213static int process_cpu_pmu_caps(struct feat_fd *ff,
3214 void *data __maybe_unused)
3215{
3216 return process_per_cpu_pmu_caps(ff, &ff->ph->env.nr_cpu_pmu_caps,
3217 &ff->ph->env.cpu_pmu_caps,
3218 &ff->ph->env.max_branches);
3219}
3220
3221static int process_hybrid_cpu_pmu_caps(struct feat_fd *ff,
3222 void *data __maybe_unused)
3223{
3224 struct hybrid_cpc_node *nodes;
3225 u32 nr_pmu, i;
3226 int ret;
3227
3228 if (do_read_u32(ff, &nr_pmu))
3229 return -1;
3230
3231 if (!nr_pmu) {
3232 pr_debug("hybrid cpu pmu capabilities not available\n");
3233 return 0;
3234 }
3235
3236 nodes = zalloc(sizeof(*nodes) * nr_pmu);
3237 if (!nodes)
3238 return -ENOMEM;
3239
3240 for (i = 0; i < nr_pmu; i++) {
3241 struct hybrid_cpc_node *n = &nodes[i];
3242
3243 ret = process_per_cpu_pmu_caps(ff, &n->nr_cpu_pmu_caps,
3244 &n->cpu_pmu_caps,
3245 &n->max_branches);
3246 if (ret)
3247 goto err;
3248
3249 n->pmu_name = do_read_string(ff);
3250 if (!n->pmu_name) {
3251 ret = -1;
3252 goto err;
3253 }
3254 }
3255
3256 ff->ph->env.nr_hybrid_cpc_nodes = nr_pmu;
3257 ff->ph->env.hybrid_cpc_nodes = nodes;
3258 return 0;
3259
3260err:
3261 for (i = 0; i < nr_pmu; i++) {
3262 free(nodes[i].cpu_pmu_caps);
3263 free(nodes[i].pmu_name);
3264 }
3265
3266 free(nodes);
3267 return ret;
3268}
3269
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003270#define FEAT_OPR(n, func, __full_only) \
3271 [HEADER_##n] = { \
3272 .name = __stringify(n), \
3273 .write = write_##func, \
3274 .print = print_##func, \
3275 .full_only = __full_only, \
3276 .process = process_##func, \
3277 .synthesize = true \
3278 }
3279
3280#define FEAT_OPN(n, func, __full_only) \
3281 [HEADER_##n] = { \
3282 .name = __stringify(n), \
3283 .write = write_##func, \
3284 .print = print_##func, \
3285 .full_only = __full_only, \
3286 .process = process_##func \
3287 }
Robert Richter8cdfa782011-12-07 10:02:56 +01003288
3289/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02003290#define print_tracing_data NULL
3291#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003292
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003293#define process_branch_stack NULL
3294#define process_stat NULL
3295
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03003296// Only used in util/synthetic-events.c
3297const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE];
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003298
Arnaldo Carvalho de Melo055c67e2019-09-18 16:08:52 -03003299const struct perf_header_feature_ops feat_ops[HEADER_LAST_FEATURE] = {
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003300 FEAT_OPN(TRACING_DATA, tracing_data, false),
3301 FEAT_OPN(BUILD_ID, build_id, false),
3302 FEAT_OPR(HOSTNAME, hostname, false),
3303 FEAT_OPR(OSRELEASE, osrelease, false),
3304 FEAT_OPR(VERSION, version, false),
3305 FEAT_OPR(ARCH, arch, false),
3306 FEAT_OPR(NRCPUS, nrcpus, false),
3307 FEAT_OPR(CPUDESC, cpudesc, false),
3308 FEAT_OPR(CPUID, cpuid, false),
3309 FEAT_OPR(TOTAL_MEM, total_mem, false),
3310 FEAT_OPR(EVENT_DESC, event_desc, false),
3311 FEAT_OPR(CMDLINE, cmdline, false),
3312 FEAT_OPR(CPU_TOPOLOGY, cpu_topology, true),
3313 FEAT_OPR(NUMA_TOPOLOGY, numa_topology, true),
3314 FEAT_OPN(BRANCH_STACK, branch_stack, false),
3315 FEAT_OPR(PMU_MAPPINGS, pmu_mappings, false),
Jiri Olsae8fedff2018-07-12 15:52:02 +02003316 FEAT_OPR(GROUP_DESC, group_desc, false),
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07003317 FEAT_OPN(AUXTRACE, auxtrace, false),
3318 FEAT_OPN(STAT, stat, false),
3319 FEAT_OPN(CACHE, cache, true),
Jin Yao60115182017-12-08 21:13:41 +08003320 FEAT_OPR(SAMPLE_TIME, sample_time, false),
Jiri Olsae2091ce2018-03-07 16:50:08 +01003321 FEAT_OPR(MEM_TOPOLOGY, mem_topology, true),
Jiri Olsa258031c2019-03-08 14:47:39 +01003322 FEAT_OPR(CLOCKID, clockid, false),
Song Liu606f9722019-03-11 22:30:43 -07003323 FEAT_OPN(DIR_FORMAT, dir_format, false),
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -03003324#ifdef HAVE_LIBBPF_SUPPORT
Song Liua70a112312019-03-11 22:30:45 -07003325 FEAT_OPR(BPF_PROG_INFO, bpf_prog_info, false),
3326 FEAT_OPR(BPF_BTF, bpf_btf, false),
Arnaldo Carvalho de Meloef0580e2020-10-20 15:57:21 -03003327#endif
Alexey Budankov42e1fd82019-03-18 20:41:33 +03003328 FEAT_OPR(COMPRESSED, compressed, false),
Kan Liang6f91ea22020-03-19 13:25:02 -07003329 FEAT_OPR(CPU_PMU_CAPS, cpu_pmu_caps, false),
Jiri Olsad1e325c2020-08-05 11:34:40 +02003330 FEAT_OPR(CLOCK_DATA, clock_data, false),
Jin Yaof7d74ce2021-05-14 20:29:47 +08003331 FEAT_OPN(HYBRID_TOPOLOGY, hybrid_topology, true),
Jin Yaoe1190832021-05-14 20:29:48 +08003332 FEAT_OPR(HYBRID_CPU_PMU_CAPS, hybrid_cpu_pmu_caps, false),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003333};
3334
3335struct header_print_data {
3336 FILE *fp;
3337 bool full; /* extended list of headers */
3338};
3339
3340static int perf_file_section__fprintf_info(struct perf_file_section *section,
3341 struct perf_header *ph,
3342 int feat, int fd, void *data)
3343{
3344 struct header_print_data *hd = data;
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003345 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003346
3347 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
3348 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
3349 "%d, continuing...\n", section->offset, feat);
3350 return 0;
3351 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003352 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003353 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01003354 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003355 }
3356 if (!feat_ops[feat].print)
3357 return 0;
3358
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003359 ff = (struct feat_fd) {
3360 .fd = fd,
3361 .ph = ph,
3362 };
3363
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003364 if (!feat_ops[feat].full_only || hd->full)
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07003365 feat_ops[feat].print(&ff, hd->fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003366 else
3367 fprintf(hd->fp, "# %s info available, use -I to display\n",
3368 feat_ops[feat].name);
3369
3370 return 0;
3371}
3372
3373int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
3374{
3375 struct header_print_data hd;
3376 struct perf_header *header = &session->header;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003377 int fd = perf_data__fd(session->data);
Jiri Olsaf45f5612016-10-10 09:03:07 +02003378 struct stat st;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03003379 time_t stctime;
Jiri Olsaaabae162016-10-10 09:35:50 +02003380 int ret, bit;
Jiri Olsaf45f5612016-10-10 09:03:07 +02003381
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003382 hd.fp = fp;
3383 hd.full = full;
3384
Jiri Olsaf45f5612016-10-10 09:03:07 +02003385 ret = fstat(fd, &st);
3386 if (ret == -1)
3387 return -1;
3388
Michael Petlan8af19d62020-01-14 11:42:36 +01003389 stctime = st.st_mtime;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03003390 fprintf(fp, "# captured on : %s", ctime(&stctime));
Jiri Olsae971a5a2018-03-07 16:50:03 +01003391
3392 fprintf(fp, "# header version : %u\n", header->version);
3393 fprintf(fp, "# data offset : %" PRIu64 "\n", header->data_offset);
3394 fprintf(fp, "# data size : %" PRIu64 "\n", header->data_size);
3395 fprintf(fp, "# feat offset : %" PRIu64 "\n", header->feat_offset);
Jiri Olsaf45f5612016-10-10 09:03:07 +02003396
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003397 perf_header__process_sections(header, fd, &hd,
3398 perf_file_section__fprintf_info);
Jiri Olsaaabae162016-10-10 09:35:50 +02003399
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003400 if (session->data->is_pipe)
David Carrillo-Cisnerosc9d1c932017-04-10 13:14:32 -07003401 return 0;
3402
Jiri Olsaaabae162016-10-10 09:35:50 +02003403 fprintf(fp, "# missing features: ");
3404 for_each_clear_bit(bit, header->adds_features, HEADER_LAST_FEATURE) {
3405 if (bit)
3406 fprintf(fp, "%s ", feat_ops[bit].name);
3407 }
3408
3409 fprintf(fp, "\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003410 return 0;
3411}
3412
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003413static int do_write_feat(struct feat_fd *ff, int type,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003414 struct perf_file_section **p,
Jiri Olsa63503db2019-07-21 13:23:52 +02003415 struct evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003416{
3417 int err;
3418 int ret = 0;
3419
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003420 if (perf_header__has_feat(ff->ph, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003421 if (!feat_ops[type].write)
3422 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003423
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -07003424 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
3425 return -1;
3426
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003427 (*p)->offset = lseek(ff->fd, 0, SEEK_CUR);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003428
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003429 err = feat_ops[type].write(ff, evlist);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003430 if (err < 0) {
Jiri Olsa0c2aff42016-10-10 09:38:02 +02003431 pr_debug("failed to write feature %s\n", feat_ops[type].name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003432
3433 /* undo anything written */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003434 lseek(ff->fd, (*p)->offset, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003435
3436 return -1;
3437 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003438 (*p)->size = lseek(ff->fd, 0, SEEK_CUR) - (*p)->offset;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003439 (*p)++;
3440 }
3441 return ret;
3442}
3443
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003444static int perf_header__adds_write(struct perf_header *header,
Jiri Olsa63503db2019-07-21 13:23:52 +02003445 struct evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003446{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003447 int nr_sections;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003448 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003449 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003450 int sec_size;
3451 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003452 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003453 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003454
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003455 ff = (struct feat_fd){
3456 .fd = fd,
3457 .ph = header,
3458 };
3459
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003460 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003461 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003462 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003463
Paul Gortmaker91b98802013-01-30 20:05:49 -05003464 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003465 if (feat_sec == NULL)
3466 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003467
3468 sec_size = sizeof(*feat_sec) * nr_sections;
3469
Jiri Olsa8d541e92013-07-17 19:49:44 +02003470 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08003471 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003472
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003473 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003474 if (do_write_feat(&ff, feat, &p, evlist))
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003475 perf_header__clear_feat(header, feat);
3476 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003477
Xiao Guangrongf887f302010-02-04 16:46:42 +08003478 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003479 /*
3480 * may write more than needed due to dropped feature, but
Ingo Molnaradba1632018-12-03 11:22:00 +01003481 * this is okay, reader will skip the missing entries
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003482 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003483 err = do_write(&ff, feat_sec, sec_size);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003484 if (err < 0)
3485 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003486 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003487 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003488}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003489
Tom Zanussi8dc58102010-04-01 23:59:15 -05003490int perf_header__write_pipe(int fd)
3491{
3492 struct perf_pipe_file_header f_header;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003493 struct feat_fd ff;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003494 int err;
3495
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003496 ff = (struct feat_fd){ .fd = fd };
3497
Tom Zanussi8dc58102010-04-01 23:59:15 -05003498 f_header = (struct perf_pipe_file_header){
3499 .magic = PERF_MAGIC,
3500 .size = sizeof(f_header),
3501 };
3502
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003503 err = do_write(&ff, &f_header, sizeof(f_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05003504 if (err < 0) {
3505 pr_debug("failed to write perf pipe header\n");
3506 return err;
3507 }
3508
3509 return 0;
3510}
3511
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003512int perf_session__write_header(struct perf_session *session,
Jiri Olsa63503db2019-07-21 13:23:52 +02003513 struct evlist *evlist,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003514 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003515{
3516 struct perf_file_header f_header;
3517 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003518 struct perf_header *header = &session->header;
Jiri Olsa32dcd022019-07-21 13:23:51 +02003519 struct evsel *evsel;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003520 struct feat_fd ff;
Jiri Olsa944d62b2013-07-17 19:49:43 +02003521 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003522 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003523
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003524 ff = (struct feat_fd){ .fd = fd};
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003525 lseek(fd, sizeof(f_header), SEEK_SET);
3526
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003527 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003528 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsae7eb9002019-09-02 22:15:47 +02003529 err = do_write(&ff, evsel->core.id, evsel->core.ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003530 if (err < 0) {
3531 pr_debug("failed to write perf header\n");
3532 return err;
3533 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003534 }
3535
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003536 attr_offset = lseek(ff.fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003537
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003538 evlist__for_each_entry(evlist, evsel) {
Al Grant648b0542020-11-24 19:58:17 +00003539 if (evsel->core.attr.size < sizeof(evsel->core.attr)) {
3540 /*
3541 * We are likely in "perf inject" and have read
3542 * from an older file. Update attr size so that
3543 * reader gets the right offset to the ids.
3544 */
3545 evsel->core.attr.size = sizeof(evsel->core.attr);
3546 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003547 f_attr = (struct perf_file_attr){
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003548 .attr = evsel->core.attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003549 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02003550 .offset = evsel->id_offset,
Jiri Olsae7eb9002019-09-02 22:15:47 +02003551 .size = evsel->core.ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003552 }
3553 };
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003554 err = do_write(&ff, &f_attr, sizeof(f_attr));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003555 if (err < 0) {
3556 pr_debug("failed to write perf header attribute\n");
3557 return err;
3558 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003559 }
3560
Adrian Hunterd645c442013-12-11 14:36:28 +02003561 if (!header->data_offset)
3562 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02003563 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003564
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003565 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003566 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003567 if (err < 0)
3568 return err;
3569 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003570
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003571 f_header = (struct perf_file_header){
3572 .magic = PERF_MAGIC,
3573 .size = sizeof(f_header),
3574 .attr_size = sizeof(f_attr),
3575 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02003576 .offset = attr_offset,
Jiri Olsa6484d2f2019-07-21 13:24:28 +02003577 .size = evlist->core.nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003578 },
3579 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003580 .offset = header->data_offset,
3581 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003582 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02003583 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003584 };
3585
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003586 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003587
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003588 lseek(fd, 0, SEEK_SET);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003589 err = do_write(&ff, &f_header, sizeof(f_header));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003590 if (err < 0) {
3591 pr_debug("failed to write perf header\n");
3592 return err;
3593 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003594 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003595
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003596 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003597}
3598
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003599static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003600 int fd, void *buf, size_t size)
3601{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02003602 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003603 return -1;
3604
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003605 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003606 mem_bswap_64(buf, size);
3607
3608 return 0;
3609}
3610
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003611int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003612 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003613 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003614 struct perf_header *ph,
3615 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003616{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003617 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003618 int nr_sections;
3619 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003620 int feat;
3621 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003622
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003623 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003624 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003625 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003626
Paul Gortmaker91b98802013-01-30 20:05:49 -05003627 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003628 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003629 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003630
3631 sec_size = sizeof(*feat_sec) * nr_sections;
3632
Jiri Olsa8d541e92013-07-17 19:49:44 +02003633 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003634
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003635 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
3636 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003637 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003638
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003639 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
3640 err = process(sec++, header, feat, fd, data);
3641 if (err < 0)
3642 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003643 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003644 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003645out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003646 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003647 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003648}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003649
Stephane Eranian114382a2012-02-09 23:21:08 +01003650static const int attr_file_abi_sizes[] = {
3651 [0] = PERF_ATTR_SIZE_VER0,
3652 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02003653 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02003654 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02003655 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01003656 0,
3657};
3658
3659/*
3660 * In the legacy file format, the magic number is not used to encode endianness.
3661 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
3662 * on ABI revisions, we need to try all combinations for all endianness to
3663 * detect the endianness.
3664 */
3665static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
3666{
3667 uint64_t ref_size, attr_size;
3668 int i;
3669
3670 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
3671 ref_size = attr_file_abi_sizes[i]
3672 + sizeof(struct perf_file_section);
3673 if (hdr_sz != ref_size) {
3674 attr_size = bswap_64(hdr_sz);
3675 if (attr_size != ref_size)
3676 continue;
3677
3678 ph->needs_swap = true;
3679 }
3680 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
3681 i,
3682 ph->needs_swap);
3683 return 0;
3684 }
3685 /* could not determine endianness */
3686 return -1;
3687}
3688
3689#define PERF_PIPE_HDR_VER0 16
3690
3691static const size_t attr_pipe_abi_sizes[] = {
3692 [0] = PERF_PIPE_HDR_VER0,
3693 0,
3694};
3695
3696/*
Ingo Molnar4d39c892021-03-23 17:09:15 +01003697 * In the legacy pipe format, there is an implicit assumption that endianness
Stephane Eranian114382a2012-02-09 23:21:08 +01003698 * between host recording the samples, and host parsing the samples is the
3699 * same. This is not always the case given that the pipe output may always be
3700 * redirected into a file and analyzed on a different machine with possibly a
Ingo Molnar4d39c892021-03-23 17:09:15 +01003701 * different endianness and perf_event ABI revisions in the perf tool itself.
Stephane Eranian114382a2012-02-09 23:21:08 +01003702 */
3703static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
3704{
3705 u64 attr_size;
3706 int i;
3707
3708 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
3709 if (hdr_sz != attr_pipe_abi_sizes[i]) {
3710 attr_size = bswap_64(hdr_sz);
3711 if (attr_size != hdr_sz)
3712 continue;
3713
3714 ph->needs_swap = true;
3715 }
3716 pr_debug("Pipe ABI%d perf.data file detected\n", i);
3717 return 0;
3718 }
3719 return -1;
3720}
3721
Feng Tange84ba4e2012-10-30 11:56:07 +08003722bool is_perf_magic(u64 magic)
3723{
3724 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
3725 || magic == __perf_magic2
3726 || magic == __perf_magic2_sw)
3727 return true;
3728
3729 return false;
3730}
3731
Stephane Eranian114382a2012-02-09 23:21:08 +01003732static int check_magic_endian(u64 magic, uint64_t hdr_sz,
3733 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01003734{
3735 int ret;
3736
3737 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01003738 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01003739 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02003740 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01003741 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01003742 if (is_pipe)
3743 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003744
Stephane Eranian114382a2012-02-09 23:21:08 +01003745 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003746 }
Stephane Eranian114382a2012-02-09 23:21:08 +01003747 /*
3748 * the new magic number serves two purposes:
3749 * - unique number to identify actual perf.data files
3750 * - encode endianness of file
3751 */
Namhyung Kimf7913972015-01-29 17:06:45 +09003752 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01003753
Stephane Eranian114382a2012-02-09 23:21:08 +01003754 /* check magic number with one endianness */
3755 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01003756 return 0;
3757
Stephane Eranian114382a2012-02-09 23:21:08 +01003758 /* check magic number with opposite endianness */
3759 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01003760 return -1;
3761
3762 ph->needs_swap = true;
3763
3764 return 0;
3765}
3766
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003767int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003768 struct perf_header *ph, int fd)
3769{
Jiri Olsa727ebd52013-11-28 11:30:14 +01003770 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003771
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003772 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003773
Stephane Eranian73323f52012-02-02 13:54:44 +01003774 ret = readn(fd, header, sizeof(*header));
3775 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003776 return -1;
3777
Stephane Eranian114382a2012-02-09 23:21:08 +01003778 if (check_magic_endian(header->magic,
3779 header->attr_size, false, ph) < 0) {
3780 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01003781 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003782 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003783
Stephane Eranian73323f52012-02-02 13:54:44 +01003784 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003785 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01003786 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003787 }
3788
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003789 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003790 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003791 if (header->size == offsetof(typeof(*header), adds_features))
3792 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003793 else
3794 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06003795 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06003796 /*
3797 * feature bitmap is declared as an array of unsigned longs --
3798 * not good since its size can differ between the host that
3799 * generated the data file and the host analyzing the file.
3800 *
3801 * We need to handle endianness, but we don't know the size of
3802 * the unsigned long where the file was generated. Take a best
3803 * guess at determining it: try 64-bit swap first (ie., file
3804 * created on a 64-bit host), and check if the hostname feature
3805 * bit is set (this feature bit is forced on as of fbe96f2).
3806 * If the bit is not, undo the 64-bit swap and try a 32-bit
3807 * swap. If the hostname bit is still not set (e.g., older data
3808 * file), punt and fallback to the original behavior --
3809 * clearing all feature bits and setting buildid.
3810 */
David Ahern80c01202012-06-08 11:47:51 -03003811 mem_bswap_64(&header->adds_features,
3812 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003813
3814 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03003815 /* unswap as u64 */
3816 mem_bswap_64(&header->adds_features,
3817 BITS_TO_U64(HEADER_FEAT_BITS));
3818
3819 /* unswap as u32 */
3820 mem_bswap_32(&header->adds_features,
3821 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003822 }
3823
3824 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
3825 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
3826 set_bit(HEADER_BUILD_ID, header->adds_features);
3827 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003828 }
3829
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003830 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003831 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003832
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003833 ph->data_offset = header->data.offset;
3834 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02003835 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003836 return 0;
3837}
3838
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003839static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003840 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003841 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003842{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003843 struct feat_fd fdd = {
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003844 .fd = fd,
3845 .ph = ph,
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003846 .size = section->size,
3847 .offset = section->offset,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003848 };
3849
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003850 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02003851 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003852 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003853 return 0;
3854 }
3855
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003856 if (feat >= HEADER_LAST_FEATURE) {
3857 pr_debug("unknown feature %d, continuing...\n", feat);
3858 return 0;
3859 }
3860
Robert Richterf1c67db2012-02-10 15:41:56 +01003861 if (!feat_ops[feat].process)
3862 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003863
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003864 return feat_ops[feat].process(&fdd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003865}
3866
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003867static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Namhyung Kim60136662020-10-30 14:47:42 +09003868 struct perf_header *ph,
3869 struct perf_data* data,
Namhyung Kim0ae03892021-07-19 15:31:50 -07003870 bool repipe, int repipe_fd)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003871{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003872 struct feat_fd ff = {
Namhyung Kim0ae03892021-07-19 15:31:50 -07003873 .fd = repipe_fd,
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003874 .ph = ph,
3875 };
Jiri Olsa727ebd52013-11-28 11:30:14 +01003876 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003877
Namhyung Kim60136662020-10-30 14:47:42 +09003878 ret = perf_data__read(data, header, sizeof(*header));
Stephane Eranian73323f52012-02-02 13:54:44 +01003879 if (ret <= 0)
3880 return -1;
3881
Stephane Eranian114382a2012-02-09 23:21:08 +01003882 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
3883 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05003884 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003885 }
3886
3887 if (ph->needs_swap)
3888 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003889
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003890 if (repipe && do_write(&ff, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05003891 return -1;
3892
Tom Zanussi8dc58102010-04-01 23:59:15 -05003893 return 0;
3894}
3895
Namhyung Kim0ae03892021-07-19 15:31:50 -07003896static int perf_header__read_pipe(struct perf_session *session, int repipe_fd)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003897{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003898 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003899 struct perf_pipe_file_header f_header;
3900
Namhyung Kim60136662020-10-30 14:47:42 +09003901 if (perf_file_header__read_pipe(&f_header, header, session->data,
Namhyung Kim0ae03892021-07-19 15:31:50 -07003902 session->repipe, repipe_fd) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05003903 pr_debug("incompatible file format\n");
3904 return -EINVAL;
3905 }
3906
Jiri Olsa14d3d542020-05-07 11:50:22 +02003907 return f_header.size == sizeof(f_header) ? 0 : -1;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003908}
3909
Stephane Eranian69996df2012-02-09 23:21:06 +01003910static int read_attr(int fd, struct perf_header *ph,
3911 struct perf_file_attr *f_attr)
3912{
3913 struct perf_event_attr *attr = &f_attr->attr;
3914 size_t sz, left;
3915 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01003916 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01003917
3918 memset(f_attr, 0, sizeof(*f_attr));
3919
3920 /* read minimal guaranteed structure */
3921 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
3922 if (ret <= 0) {
3923 pr_debug("cannot read %d bytes of header attr\n",
3924 PERF_ATTR_SIZE_VER0);
3925 return -1;
3926 }
3927
3928 /* on file perf_event_attr size */
3929 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01003930
Stephane Eranian69996df2012-02-09 23:21:06 +01003931 if (ph->needs_swap)
3932 sz = bswap_32(sz);
3933
3934 if (sz == 0) {
3935 /* assume ABI0 */
3936 sz = PERF_ATTR_SIZE_VER0;
3937 } else if (sz > our_sz) {
3938 pr_debug("file uses a more recent and unsupported ABI"
3939 " (%zu bytes extra)\n", sz - our_sz);
3940 return -1;
3941 }
3942 /* what we have not yet read and that we know about */
3943 left = sz - PERF_ATTR_SIZE_VER0;
3944 if (left) {
3945 void *ptr = attr;
3946 ptr += PERF_ATTR_SIZE_VER0;
3947
3948 ret = readn(fd, ptr, left);
3949 }
3950 /* read perf_file_section, ids are read in caller */
3951 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
3952
3953 return ret <= 0 ? -1 : 0;
3954}
3955
Arnaldo Carvalho de Melo56933022020-11-30 09:08:24 -03003956static int evsel__prepare_tracepoint_event(struct evsel *evsel, struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003957{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003958 struct tep_event *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003959 char bf[128];
3960
Namhyung Kim831394b2012-09-06 11:10:46 +09003961 /* already prepared */
3962 if (evsel->tp_format)
3963 return 0;
3964
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09003965 if (pevent == NULL) {
3966 pr_debug("broken or missing trace data\n");
3967 return -1;
3968 }
3969
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003970 event = tep_find_event(pevent, evsel->core.attr.config);
Namhyung Kima7619ae2013-04-18 21:24:16 +09003971 if (event == NULL) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003972 pr_debug("cannot find event format for %d\n", (int)evsel->core.attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003973 return -1;
Namhyung Kima7619ae2013-04-18 21:24:16 +09003974 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003975
Namhyung Kim831394b2012-09-06 11:10:46 +09003976 if (!evsel->name) {
3977 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
3978 evsel->name = strdup(bf);
3979 if (evsel->name == NULL)
3980 return -1;
3981 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003982
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03003983 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003984 return 0;
3985}
3986
Arnaldo Carvalho de Melo1420ba22020-11-30 15:13:12 -03003987static int evlist__prepare_tracepoint_events(struct evlist *evlist, struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003988{
Jiri Olsa32dcd022019-07-21 13:23:51 +02003989 struct evsel *pos;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003990
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003991 evlist__for_each_entry(evlist, pos) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +02003992 if (pos->core.attr.type == PERF_TYPE_TRACEPOINT &&
Arnaldo Carvalho de Melo56933022020-11-30 09:08:24 -03003993 evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003994 return -1;
3995 }
3996
3997 return 0;
3998}
3999
Namhyung Kim0ae03892021-07-19 15:31:50 -07004000int perf_session__read_header(struct perf_session *session, int repipe_fd)
Tom Zanussi8dc58102010-04-01 23:59:15 -05004001{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01004002 struct perf_data *data = session->data;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03004003 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02004004 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004005 struct perf_file_attr f_attr;
4006 u64 f_id;
Jiri Olsa14d3d542020-05-07 11:50:22 +02004007 int nr_attrs, nr_ids, i, j, err;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01004008 int fd = perf_data__fd(data);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004009
Jiri Olsa0f98b112019-07-21 13:23:55 +02004010 session->evlist = evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004011 if (session->evlist == NULL)
4012 return -ENOMEM;
4013
Kan Liang2c071442015-08-28 05:48:05 -04004014 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03004015 session->machines.host.env = &header->env;
Jiri Olsa14d3d542020-05-07 11:50:22 +02004016
4017 /*
4018 * We can read 'pipe' data event from regular file,
4019 * check for the pipe header regardless of source.
4020 */
Namhyung Kim0ae03892021-07-19 15:31:50 -07004021 err = perf_header__read_pipe(session, repipe_fd);
Jiapeng Chong52bcc602021-02-05 11:54:15 +08004022 if (!err || perf_data__is_pipe(data)) {
Jiri Olsa14d3d542020-05-07 11:50:22 +02004023 data->is_pipe = true;
4024 return err;
4025 }
Tom Zanussi8dc58102010-04-01 23:59:15 -05004026
Stephane Eranian69996df2012-02-09 23:21:06 +01004027 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02004028 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004029
Adrian Hunter2a525f62021-04-30 10:03:01 +03004030 if (header->needs_swap && data->in_place_update) {
4031 pr_err("In-place update not supported when byte-swapping is required\n");
4032 return -EINVAL;
4033 }
4034
Namhyung Kimb314e5c2013-09-30 17:19:48 +09004035 /*
4036 * Sanity check that perf.data was written cleanly; data size is
4037 * initialized to 0 and updated only if the on_exit function is run.
4038 * If data size is still 0 then the file contains only partial
4039 * information. Just warn user and process it as much as it can.
4040 */
4041 if (f_header.data.size == 0) {
4042 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
4043 "Was the 'perf record' command properly terminated?\n",
Jiri Olsaeae8ad82017-01-23 22:25:41 +01004044 data->file.path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09004045 }
4046
Vince Weaver76222362019-07-23 11:06:01 -04004047 if (f_header.attr_size == 0) {
4048 pr_err("ERROR: The %s file's attr size field is 0 which is unexpected.\n"
4049 "Was the 'perf record' command properly terminated?\n",
4050 data->file.path);
4051 return -EINVAL;
4052 }
4053
Stephane Eranian69996df2012-02-09 23:21:06 +01004054 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004055 lseek(fd, f_header.attrs.offset, SEEK_SET);
4056
4057 for (i = 0; i < nr_attrs; i++) {
Jiri Olsa32dcd022019-07-21 13:23:51 +02004058 struct evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02004059 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004060
Stephane Eranian69996df2012-02-09 23:21:06 +01004061 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02004062 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02004063
David Ahern1060ab82015-04-09 16:15:46 -04004064 if (header->needs_swap) {
4065 f_attr.ids.size = bswap_64(f_attr.ids.size);
4066 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06004067 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04004068 }
David Aherneda39132011-07-15 12:34:09 -06004069
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02004070 tmp = lseek(fd, 0, SEEK_CUR);
Jiri Olsa365c3ae2019-07-21 13:23:58 +02004071 evsel = evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004072
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004073 if (evsel == NULL)
4074 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03004075
4076 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004077 /*
4078 * Do it before so that if perf_evsel__alloc_id fails, this
Jiri Olsac12995a2019-07-21 13:23:56 +02004079 * entry gets purged too at evlist__delete().
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004080 */
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02004081 evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004082
4083 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004084 /*
4085 * We don't have the cpu and thread maps on the header, so
4086 * for allocating the perf_sample_id table we fake 1 cpu and
4087 * hattr->ids threads.
4088 */
Jiri Olsa70c20362019-09-03 10:34:29 +02004089 if (perf_evsel__alloc_id(&evsel->core, 1, nr_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004090 goto out_delete_evlist;
4091
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004092 lseek(fd, f_attr.ids.offset, SEEK_SET);
4093
4094 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03004095 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02004096 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004097
Jiri Olsab0031c22019-09-03 11:01:04 +02004098 perf_evlist__id_add(&session->evlist->core, &evsel->core, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02004099 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02004100
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004101 lseek(fd, tmp, SEEK_SET);
4102 }
4103
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004104 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02004105 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01004106
Arnaldo Carvalho de Melo1420ba22020-11-30 15:13:12 -03004107 if (evlist__prepare_tracepoint_events(session->evlist, session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03004108 goto out_delete_evlist;
4109
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02004110 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02004111out_errno:
4112 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004113
4114out_delete_evlist:
Jiri Olsac12995a2019-07-21 13:23:56 +02004115 evlist__delete(session->evlist);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004116 session->evlist = NULL;
4117 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004118}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02004119
Jiri Olsa89f16882018-09-13 14:54:03 +02004120int perf_event__process_feature(struct perf_session *session,
4121 union perf_event *event)
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004122{
Jiri Olsa89f16882018-09-13 14:54:03 +02004123 struct perf_tool *tool = session->tool;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004124 struct feat_fd ff = { .fd = 0 };
Jiri Olsa72932372019-08-28 15:57:16 +02004125 struct perf_record_header_feature *fe = (struct perf_record_header_feature *)event;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004126 int type = fe->header.type;
4127 u64 feat = fe->feat_id;
Ian Rogers47473952021-11-18 12:17:30 -08004128 int ret = 0;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004129
4130 if (type < 0 || type >= PERF_RECORD_HEADER_MAX) {
4131 pr_warning("invalid record type %d in pipe-mode\n", type);
4132 return 0;
4133 }
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05304134 if (feat == HEADER_RESERVED || feat >= HEADER_LAST_FEATURE) {
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004135 pr_warning("invalid record type %d in pipe-mode\n", type);
4136 return -1;
4137 }
4138
4139 if (!feat_ops[feat].process)
4140 return 0;
4141
4142 ff.buf = (void *)fe->data;
Jiri Olsa79b2fe52019-07-15 16:04:26 +02004143 ff.size = event->header.size - sizeof(*fe);
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004144 ff.ph = &session->header;
4145
Ian Rogers47473952021-11-18 12:17:30 -08004146 if (feat_ops[feat].process(&ff, NULL)) {
4147 ret = -1;
4148 goto out;
4149 }
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004150
4151 if (!feat_ops[feat].print || !tool->show_feat_hdr)
Ian Rogers47473952021-11-18 12:17:30 -08004152 goto out;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004153
4154 if (!feat_ops[feat].full_only ||
4155 tool->show_feat_hdr >= SHOW_FEAT_HEADER_FULL_INFO) {
4156 feat_ops[feat].print(&ff, stdout);
4157 } else {
4158 fprintf(stdout, "# %s info available, use -I to display\n",
4159 feat_ops[feat].name);
4160 }
Ian Rogers47473952021-11-18 12:17:30 -08004161out:
4162 free_event_desc(ff.events);
4163 return ret;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07004164}
4165
Jiri Olsac853f932015-10-25 15:51:41 +01004166size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
4167{
Jiri Olsa72932372019-08-28 15:57:16 +02004168 struct perf_record_event_update *ev = &event->event_update;
4169 struct perf_record_event_update_scale *ev_scale;
4170 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsaf8548392019-07-21 13:23:49 +02004171 struct perf_cpu_map *map;
Jiri Olsac853f932015-10-25 15:51:41 +01004172 size_t ret;
4173
Jiri Olsa5ded0682019-08-28 15:56:57 +02004174 ret = fprintf(fp, "\n... id: %" PRI_lu64 "\n", ev->id);
Jiri Olsac853f932015-10-25 15:51:41 +01004175
4176 switch (ev->type) {
4177 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02004178 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01004179 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
4180 break;
4181 case PERF_EVENT_UPDATE__UNIT:
4182 ret += fprintf(fp, "... unit: %s\n", ev->data);
4183 break;
4184 case PERF_EVENT_UPDATE__NAME:
4185 ret += fprintf(fp, "... name: %s\n", ev->data);
4186 break;
4187 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02004188 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsac853f932015-10-25 15:51:41 +01004189 ret += fprintf(fp, "... ");
4190
4191 map = cpu_map__new_data(&ev_cpus->cpus);
4192 if (map)
4193 ret += cpu_map__fprintf(map, fp);
4194 else
4195 ret += fprintf(fp, "failed to get cpus\n");
4196 break;
4197 default:
4198 ret += fprintf(fp, "... unknown type\n");
4199 break;
4200 }
4201
4202 return ret;
4203}
Jiri Olsa86ebb092015-10-25 15:51:40 +01004204
Adrian Hunter47c3d102013-07-04 16:20:21 +03004205int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
4206 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02004207 struct evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004208{
Robert Richterf4d83432012-08-16 21:10:17 +02004209 u32 i, ids, n_ids;
Jiri Olsa32dcd022019-07-21 13:23:51 +02004210 struct evsel *evsel;
Jiri Olsa63503db2019-07-21 13:23:52 +02004211 struct evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004212
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004213 if (evlist == NULL) {
Jiri Olsa0f98b112019-07-21 13:23:55 +02004214 *pevlist = evlist = evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004215 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004216 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004217 }
4218
Jiri Olsa365c3ae2019-07-21 13:23:58 +02004219 evsel = evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004220 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004221 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004222
Jiri Olsaa1cf3a72019-07-21 13:23:59 +02004223 evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004224
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004225 ids = event->header.size;
4226 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004227 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004228 /*
4229 * We don't have the cpu and thread maps on the header, so
4230 * for allocating the perf_sample_id table we fake 1 cpu and
4231 * hattr->ids threads.
4232 */
Jiri Olsa70c20362019-09-03 10:34:29 +02004233 if (perf_evsel__alloc_id(&evsel->core, 1, n_ids))
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004234 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004235
4236 for (i = 0; i < n_ids; i++) {
Jiri Olsab0031c22019-09-03 11:01:04 +02004237 perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004238 }
4239
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004240 return 0;
4241}
Tom Zanussicd19a032010-04-01 23:59:20 -05004242
Jiri Olsaffe777252015-10-25 15:51:36 +01004243int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
4244 union perf_event *event,
Jiri Olsa63503db2019-07-21 13:23:52 +02004245 struct evlist **pevlist)
Jiri Olsaffe777252015-10-25 15:51:36 +01004246{
Jiri Olsa72932372019-08-28 15:57:16 +02004247 struct perf_record_event_update *ev = &event->event_update;
4248 struct perf_record_event_update_scale *ev_scale;
4249 struct perf_record_event_update_cpus *ev_cpus;
Jiri Olsa63503db2019-07-21 13:23:52 +02004250 struct evlist *evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +02004251 struct evsel *evsel;
Jiri Olsaf8548392019-07-21 13:23:49 +02004252 struct perf_cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01004253
4254 if (!pevlist || *pevlist == NULL)
4255 return -EINVAL;
4256
4257 evlist = *pevlist;
4258
Arnaldo Carvalho de Melo3ccf8a72020-11-30 14:17:57 -03004259 evsel = evlist__id2evsel(evlist, ev->id);
Jiri Olsaffe777252015-10-25 15:51:36 +01004260 if (evsel == NULL)
4261 return -EINVAL;
4262
Jiri Olsaa6e52812015-10-25 15:51:37 +01004263 switch (ev->type) {
4264 case PERF_EVENT_UPDATE__UNIT:
Ian Rogersb194c9c2021-11-18 00:47:49 -08004265 free((char *)evsel->unit);
Jiri Olsaa6e52812015-10-25 15:51:37 +01004266 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004267 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01004268 case PERF_EVENT_UPDATE__NAME:
Ian Rogersb194c9c2021-11-18 00:47:49 -08004269 free(evsel->name);
Jiri Olsa802c9042015-10-25 15:51:39 +01004270 evsel->name = strdup(ev->data);
4271 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004272 case PERF_EVENT_UPDATE__SCALE:
Jiri Olsa72932372019-08-28 15:57:16 +02004273 ev_scale = (struct perf_record_event_update_scale *)ev->data;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004274 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melo8434a2e2017-02-08 21:57:22 -03004275 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004276 case PERF_EVENT_UPDATE__CPUS:
Jiri Olsa72932372019-08-28 15:57:16 +02004277 ev_cpus = (struct perf_record_event_update_cpus *)ev->data;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004278 map = cpu_map__new_data(&ev_cpus->cpus);
Ian Rogersb194c9c2021-11-18 00:47:49 -08004279 if (map) {
4280 perf_cpu_map__put(evsel->core.own_cpus);
Jiri Olsafe1f61b2019-07-21 13:24:38 +02004281 evsel->core.own_cpus = map;
Ian Rogersb194c9c2021-11-18 00:47:49 -08004282 } else
Jiri Olsa86ebb092015-10-25 15:51:40 +01004283 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01004284 default:
4285 break;
4286 }
4287
Jiri Olsaffe777252015-10-25 15:51:36 +01004288 return 0;
4289}
4290
Jiri Olsa89f16882018-09-13 14:54:03 +02004291int perf_event__process_tracing_data(struct perf_session *session,
4292 union perf_event *event)
Tom Zanussi92155452010-04-01 23:59:21 -05004293{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004294 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01004295 int fd = perf_data__fd(session->data);
Tom Zanussi92155452010-04-01 23:59:21 -05004296 char buf[BUFSIZ];
4297
Jiri Olsab4911982020-05-07 11:50:21 +02004298 /*
4299 * The pipe fd is already in proper place and in any case
4300 * we can't move it, and we'd screw the case where we read
4301 * 'pipe' data from regular file. The trace_report reads
4302 * data from 'fd' so we need to set it directly behind the
4303 * event, where the tracing data starts.
4304 */
4305 if (!perf_data__is_pipe(session->data)) {
4306 off_t offset = lseek(fd, 0, SEEK_CUR);
4307
4308 /* setup for reading amidst mmap */
4309 lseek(fd, offset + sizeof(struct perf_record_header_tracing_data),
4310 SEEK_SET);
4311 }
Tom Zanussi92155452010-04-01 23:59:21 -05004312
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004313 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03004314 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03004315 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05004316
Jiri Olsacc9784bd2013-10-15 16:27:34 +02004317 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004318 pr_err("%s: reading input file", __func__);
4319 return -1;
4320 }
Tom Zanussi454c4072010-05-01 01:41:20 -05004321 if (session->repipe) {
4322 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004323 if (retw <= 0 || retw != padding) {
4324 pr_err("%s: repiping tracing data padding", __func__);
4325 return -1;
4326 }
Tom Zanussi454c4072010-05-01 01:41:20 -05004327 }
Tom Zanussi92155452010-04-01 23:59:21 -05004328
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004329 if (size_read + padding != size) {
4330 pr_err("%s: tracing data size mismatch", __func__);
4331 return -1;
4332 }
Tom Zanussi92155452010-04-01 23:59:21 -05004333
Arnaldo Carvalho de Melo1420ba22020-11-30 15:13:12 -03004334 evlist__prepare_tracepoint_events(session->evlist, session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03004335
Tom Zanussi92155452010-04-01 23:59:21 -05004336 return size_read + padding;
4337}
Tom Zanussic7929e42010-04-01 23:59:22 -05004338
Jiri Olsa89f16882018-09-13 14:54:03 +02004339int perf_event__process_build_id(struct perf_session *session,
4340 union perf_event *event)
Tom Zanussic7929e42010-04-01 23:59:22 -05004341{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004342 __event_process_build_id(&event->build_id,
4343 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08004344 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05004345 return 0;
4346}