blob: 47877f0f66670c2e94ac33ad48945f45b6071a2e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03002#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03003#include <inttypes.h>
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -03004#include "string2.h"
Arnaldo Carvalho de Melo391e4202017-04-19 18:51:14 -03005#include <sys/param.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02006#include <sys/types.h>
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02007#include <byteswap.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02008#include <unistd.h>
9#include <stdio.h>
10#include <stdlib.h>
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -030011#include <linux/compiler.h>
Frederic Weisbecker8671dab2009-11-11 04:51:03 +010012#include <linux/list.h>
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -020013#include <linux/kernel.h>
Robert Richterb1e5a9b2011-12-07 10:02:57 +010014#include <linux/bitops.h>
Arnaldo Carvalho de Melofc6a1722019-06-25 21:33:14 -030015#include <linux/string.h>
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -070016#include <linux/stringify.h>
Arnaldo Carvalho de Melo7f7c5362019-07-04 11:32:27 -030017#include <linux/zalloc.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030018#include <sys/stat.h>
Stephane Eranianfbe96f22011-09-30 15:40:40 +020019#include <sys/utsname.h>
Jin Yao60115182017-12-08 21:13:41 +080020#include <linux/time64.h>
Jiri Olsae2091ce2018-03-07 16:50:08 +010021#include <dirent.h>
Song Liu606f9722019-03-11 22:30:43 -070022#include <bpf/libbpf.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020023
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020024#include "evlist.h"
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -030025#include "evsel.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020026#include "header.h"
Arnaldo Carvalho de Melo98521b32017-04-25 15:45:35 -030027#include "memswap.h"
Frederic Weisbecker03456a12009-10-06 23:36:47 +020028#include "../perf.h"
29#include "trace-event.h"
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -020030#include "session.h"
Frederic Weisbecker8671dab2009-11-11 04:51:03 +010031#include "symbol.h"
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +010032#include "debug.h"
Stephane Eranianfbe96f22011-09-30 15:40:40 +020033#include "cpumap.h"
Robert Richter50a96672012-08-16 21:10:24 +020034#include "pmu.h"
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020035#include "vdso.h"
Namhyung Kima1ae5652012-09-24 17:14:59 +090036#include "strbuf.h"
Jiri Olsaebb296c2012-10-27 23:18:28 +020037#include "build-id.h"
Jiri Olsacc9784bd2013-10-15 16:27:34 +020038#include "data.h"
Jiri Olsa720e98b2016-02-16 16:01:43 +010039#include <api/fs/fs.h>
40#include "asm/bug.h"
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -070041#include "tool.h"
Jin Yao60115182017-12-08 21:13:41 +080042#include "time-utils.h"
Jiri Olsae2091ce2018-03-07 16:50:08 +010043#include "units.h"
Jiri Olsa5135d5e2019-02-19 10:58:13 +010044#include "cputopo.h"
Song Liu606f9722019-03-11 22:30:43 -070045#include "bpf-event.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020046
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030047#include <linux/ctype.h>
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030048
Stephane Eranian73323f52012-02-02 13:54:44 +010049/*
50 * magic2 = "PERFILE2"
51 * must be a numerical value to let the endianness
52 * determine the memory layout. That way we are able
53 * to detect endianness when reading the perf.data file
54 * back.
55 *
56 * we check for legacy (PERFFILE) format.
57 */
58static const char *__perf_magic1 = "PERFFILE";
59static const u64 __perf_magic2 = 0x32454c4946524550ULL;
60static const u64 __perf_magic2_sw = 0x50455246494c4532ULL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020061
Stephane Eranian73323f52012-02-02 13:54:44 +010062#define PERF_MAGIC __perf_magic2
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020063
Soramichi AKIYAMAd25ed5d2017-01-17 00:22:37 +090064const char perf_version_string[] = PERF_VERSION;
65
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020066struct perf_file_attr {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020067 struct perf_event_attr attr;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020068 struct perf_file_section ids;
69};
70
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -070071struct feat_fd {
72 struct perf_header *ph;
73 int fd;
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -070074 void *buf; /* Either buf != NULL or fd >= 0 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -070075 ssize_t offset;
76 size_t size;
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -070077 struct perf_evsel *events;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -070078};
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
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700132/* Return: 0 if succeded, -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
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700140/* Return: 0 if succeded, -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
159/* Return: 0 if succeded, -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
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700175/* Return: 0 if succeded, -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
Jiri Olsae2091ce2018-03-07 16:50:08 +0100271/* Return: 0 if succeded, -ERR if failed. */
272static 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
282 set = bitmap_alloc(size);
283 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,
302 struct perf_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
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700307 return read_tracing_data(ff->fd, &evlist->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,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300311 struct perf_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,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300335 struct perf_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,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300348 struct perf_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,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300361 struct perf_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,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300374 struct perf_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,
Wang Nan493c3032014-10-24 09:45:26 +0800435 struct perf_evlist *evlist __maybe_unused)
436{
Wang Nan493c3032014-10-24 09:45:26 +0800437 const char *cpuinfo_procs[] = CPUINFO_PROC;
438 unsigned int i;
439
440 for (i = 0; i < ARRAY_SIZE(cpuinfo_procs); i++) {
441 int ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700442 ret = __write_cpudesc(ff, cpuinfo_procs[i]);
Wang Nan493c3032014-10-24 09:45:26 +0800443 if (ret >= 0)
444 return ret;
445 }
446 return -1;
447}
448
449
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700450static int write_nrcpus(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300451 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200452{
453 long nr;
454 u32 nrc, nra;
455 int ret;
456
Jan Stancekda8a58b2017-02-17 12:10:26 +0100457 nrc = cpu__max_present_cpu();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200458
459 nr = sysconf(_SC_NPROCESSORS_ONLN);
460 if (nr < 0)
461 return -1;
462
463 nra = (u32)(nr & UINT_MAX);
464
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700465 ret = do_write(ff, &nrc, sizeof(nrc));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200466 if (ret < 0)
467 return ret;
468
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700469 return do_write(ff, &nra, sizeof(nra));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200470}
471
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700472static int write_event_desc(struct feat_fd *ff,
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200473 struct perf_evlist *evlist)
474{
Robert Richter6606f872012-08-16 21:10:19 +0200475 struct perf_evsel *evsel;
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900476 u32 nre, nri, sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200477 int ret;
478
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900479 nre = evlist->nr_entries;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200480
481 /*
482 * write number of events
483 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700484 ret = do_write(ff, &nre, sizeof(nre));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200485 if (ret < 0)
486 return ret;
487
488 /*
489 * size of perf_event_attr struct
490 */
Robert Richter6606f872012-08-16 21:10:19 +0200491 sz = (u32)sizeof(evsel->attr);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700492 ret = do_write(ff, &sz, sizeof(sz));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200493 if (ret < 0)
494 return ret;
495
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300496 evlist__for_each_entry(evlist, evsel) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700497 ret = do_write(ff, &evsel->attr, sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200498 if (ret < 0)
499 return ret;
500 /*
501 * write number of unique id per event
502 * there is one id per instance of an event
503 *
504 * copy into an nri to be independent of the
505 * type of ids,
506 */
Robert Richter6606f872012-08-16 21:10:19 +0200507 nri = evsel->ids;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700508 ret = do_write(ff, &nri, sizeof(nri));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200509 if (ret < 0)
510 return ret;
511
512 /*
513 * write event string as passed on cmdline
514 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700515 ret = do_write_string(ff, perf_evsel__name(evsel));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200516 if (ret < 0)
517 return ret;
518 /*
519 * write unique ids for this event
520 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700521 ret = do_write(ff, evsel->id, evsel->ids * sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200522 if (ret < 0)
523 return ret;
524 }
525 return 0;
526}
527
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700528static int write_cmdline(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300529 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200530{
Andi Kleen94816ad2019-02-24 07:37:19 -0800531 char pbuf[MAXPATHLEN], *buf;
532 int i, ret, n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200533
Tommi Rantala55f771282017-03-22 15:06:24 +0200534 /* actual path to perf binary */
Andi Kleen94816ad2019-02-24 07:37:19 -0800535 buf = perf_exe(pbuf, MAXPATHLEN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200536
537 /* account for binary path */
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300538 n = perf_env.nr_cmdline + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200539
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700540 ret = do_write(ff, &n, sizeof(n));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200541 if (ret < 0)
542 return ret;
543
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700544 ret = do_write_string(ff, buf);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200545 if (ret < 0)
546 return ret;
547
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300548 for (i = 0 ; i < perf_env.nr_cmdline; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700549 ret = do_write_string(ff, perf_env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200550 if (ret < 0)
551 return ret;
552 }
553 return 0;
554}
555
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200556
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700557static int write_cpu_topology(struct feat_fd *ff,
558 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200559{
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100560 struct cpu_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200561 u32 i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300562 int ret, j;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200563
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100564 tp = cpu_topology__new();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200565 if (!tp)
566 return -1;
567
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700568 ret = do_write(ff, &tp->core_sib, sizeof(tp->core_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200569 if (ret < 0)
570 goto done;
571
572 for (i = 0; i < tp->core_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700573 ret = do_write_string(ff, tp->core_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200574 if (ret < 0)
575 goto done;
576 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700577 ret = do_write(ff, &tp->thread_sib, sizeof(tp->thread_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200578 if (ret < 0)
579 goto done;
580
581 for (i = 0; i < tp->thread_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700582 ret = do_write_string(ff, tp->thread_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200583 if (ret < 0)
584 break;
585 }
Kan Liang2bb00d22015-09-01 09:58:12 -0400586
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300587 ret = perf_env__read_cpu_topology_map(&perf_env);
588 if (ret < 0)
589 goto done;
590
591 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700592 ret = do_write(ff, &perf_env.cpu[j].core_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300593 sizeof(perf_env.cpu[j].core_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400594 if (ret < 0)
595 return ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700596 ret = do_write(ff, &perf_env.cpu[j].socket_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300597 sizeof(perf_env.cpu[j].socket_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400598 if (ret < 0)
599 return ret;
600 }
Kan Liangacae8b32019-06-04 15:50:41 -0700601
602 if (!tp->die_sib)
603 goto done;
604
605 ret = do_write(ff, &tp->die_sib, sizeof(tp->die_sib));
606 if (ret < 0)
607 goto done;
608
609 for (i = 0; i < tp->die_sib; i++) {
610 ret = do_write_string(ff, tp->die_siblings[i]);
611 if (ret < 0)
612 goto done;
613 }
614
615 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
616 ret = do_write(ff, &perf_env.cpu[j].die_id,
617 sizeof(perf_env.cpu[j].die_id));
618 if (ret < 0)
619 return ret;
620 }
621
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200622done:
Jiri Olsa5135d5e2019-02-19 10:58:13 +0100623 cpu_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200624 return ret;
625}
626
627
628
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700629static int write_total_mem(struct feat_fd *ff,
630 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200631{
632 char *buf = NULL;
633 FILE *fp;
634 size_t len = 0;
635 int ret = -1, n;
636 uint64_t mem;
637
638 fp = fopen("/proc/meminfo", "r");
639 if (!fp)
640 return -1;
641
642 while (getline(&buf, &len, fp) > 0) {
643 ret = strncmp(buf, "MemTotal:", 9);
644 if (!ret)
645 break;
646 }
647 if (!ret) {
648 n = sscanf(buf, "%*s %"PRIu64, &mem);
649 if (n == 1)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700650 ret = do_write(ff, &mem, sizeof(mem));
Wang Naned307752014-10-16 11:08:29 +0800651 } else
652 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200653 free(buf);
654 fclose(fp);
655 return ret;
656}
657
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700658static int write_numa_topology(struct feat_fd *ff,
659 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200660{
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100661 struct numa_topology *tp;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200662 int ret = -1;
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100663 u32 i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200664
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100665 tp = numa_topology__new();
666 if (!tp)
667 return -ENOMEM;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200668
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100669 ret = do_write(ff, &tp->nr, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200670 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100671 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200672
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100673 for (i = 0; i < tp->nr; i++) {
674 struct numa_topology_node *n = &tp->nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200675
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100676 ret = do_write(ff, &n->node, sizeof(u32));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200677 if (ret < 0)
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100678 goto err;
679
680 ret = do_write(ff, &n->mem_total, sizeof(u64));
681 if (ret)
682 goto err;
683
684 ret = do_write(ff, &n->mem_free, sizeof(u64));
685 if (ret)
686 goto err;
687
688 ret = do_write_string(ff, n->cpus);
689 if (ret < 0)
690 goto err;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200691 }
Jiri Olsa48e6c5a2019-02-19 10:58:14 +0100692
693 ret = 0;
694
695err:
696 numa_topology__delete(tp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200697 return ret;
698}
699
700/*
Robert Richter50a96672012-08-16 21:10:24 +0200701 * File format:
702 *
703 * struct pmu_mappings {
704 * u32 pmu_num;
705 * struct pmu_map {
706 * u32 type;
707 * char name[];
708 * }[pmu_num];
709 * };
710 */
711
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700712static int write_pmu_mappings(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300713 struct perf_evlist *evlist __maybe_unused)
Robert Richter50a96672012-08-16 21:10:24 +0200714{
715 struct perf_pmu *pmu = NULL;
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700716 u32 pmu_num = 0;
Namhyung Kim5323f602012-12-17 15:38:54 +0900717 int ret;
Robert Richter50a96672012-08-16 21:10:24 +0200718
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700719 /*
720 * Do a first pass to count number of pmu to avoid lseek so this
721 * works in pipe mode as well.
722 */
723 while ((pmu = perf_pmu__scan(pmu))) {
724 if (!pmu->name)
725 continue;
726 pmu_num++;
727 }
728
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700729 ret = do_write(ff, &pmu_num, sizeof(pmu_num));
Namhyung Kim5323f602012-12-17 15:38:54 +0900730 if (ret < 0)
731 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200732
733 while ((pmu = perf_pmu__scan(pmu))) {
734 if (!pmu->name)
735 continue;
Namhyung Kim5323f602012-12-17 15:38:54 +0900736
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700737 ret = do_write(ff, &pmu->type, sizeof(pmu->type));
Namhyung Kim5323f602012-12-17 15:38:54 +0900738 if (ret < 0)
739 return ret;
740
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700741 ret = do_write_string(ff, pmu->name);
Namhyung Kim5323f602012-12-17 15:38:54 +0900742 if (ret < 0)
743 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200744 }
745
Robert Richter50a96672012-08-16 21:10:24 +0200746 return 0;
747}
748
749/*
Namhyung Kima8bb5592013-01-22 18:09:31 +0900750 * File format:
751 *
752 * struct group_descs {
753 * u32 nr_groups;
754 * struct group_desc {
755 * char name[];
756 * u32 leader_idx;
757 * u32 nr_members;
758 * }[nr_groups];
759 * };
760 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700761static int write_group_desc(struct feat_fd *ff,
Namhyung Kima8bb5592013-01-22 18:09:31 +0900762 struct perf_evlist *evlist)
763{
764 u32 nr_groups = evlist->nr_groups;
765 struct perf_evsel *evsel;
766 int ret;
767
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700768 ret = do_write(ff, &nr_groups, sizeof(nr_groups));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900769 if (ret < 0)
770 return ret;
771
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300772 evlist__for_each_entry(evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +0900773 if (perf_evsel__is_group_leader(evsel) &&
774 evsel->nr_members > 1) {
775 const char *name = evsel->group_name ?: "{anon_group}";
776 u32 leader_idx = evsel->idx;
777 u32 nr_members = evsel->nr_members;
778
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700779 ret = do_write_string(ff, name);
Namhyung Kima8bb5592013-01-22 18:09:31 +0900780 if (ret < 0)
781 return ret;
782
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700783 ret = do_write(ff, &leader_idx, sizeof(leader_idx));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900784 if (ret < 0)
785 return ret;
786
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700787 ret = do_write(ff, &nr_members, sizeof(nr_members));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900788 if (ret < 0)
789 return ret;
790 }
791 }
792 return 0;
793}
794
795/*
Kan Liangf4a07422018-11-21 08:49:39 -0800796 * Return the CPU id as a raw string.
797 *
798 * Each architecture should provide a more precise id string that
799 * can be use to match the architecture's "mapfile".
800 */
801char * __weak get_cpuid_str(struct perf_pmu *pmu __maybe_unused)
802{
803 return NULL;
804}
805
806/* Return zero when the cpuid from the mapfile.csv matches the
807 * cpuid string generated on this platform.
808 * Otherwise return non-zero.
809 */
810int __weak strcmp_cpuid_str(const char *mapcpuid, const char *cpuid)
811{
812 regex_t re;
813 regmatch_t pmatch[1];
814 int match;
815
816 if (regcomp(&re, mapcpuid, REG_EXTENDED) != 0) {
817 /* Warn unable to generate match particular string. */
818 pr_info("Invalid regular expression %s\n", mapcpuid);
819 return 1;
820 }
821
822 match = !regexec(&re, cpuid, 1, pmatch, 0);
823 regfree(&re);
824 if (match) {
825 size_t match_len = (pmatch[0].rm_eo - pmatch[0].rm_so);
826
827 /* Verify the entire string matched. */
828 if (match_len == strlen(cpuid))
829 return 0;
830 }
831 return 1;
832}
833
834/*
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200835 * default get_cpuid(): nothing gets recorded
Jiada Wang7a759cd2017-04-09 20:02:37 -0700836 * actual implementation must be in arch/$(SRCARCH)/util/header.c
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200837 */
Rui Teng11d8f872016-07-28 10:05:57 +0800838int __weak get_cpuid(char *buffer __maybe_unused, size_t sz __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200839{
840 return -1;
841}
842
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700843static int write_cpuid(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300844 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200845{
846 char buffer[64];
847 int ret;
848
849 ret = get_cpuid(buffer, sizeof(buffer));
Jiri Olsaa9aeb872019-02-13 13:32:43 +0100850 if (ret)
851 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200852
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700853 return do_write_string(ff, buffer);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200854}
855
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700856static int write_branch_stack(struct feat_fd *ff __maybe_unused,
857 struct perf_evlist *evlist __maybe_unused)
Stephane Eranian330aa672012-03-08 23:47:46 +0100858{
859 return 0;
860}
861
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700862static int write_auxtrace(struct feat_fd *ff,
Adrian Hunter4025ea42015-04-09 18:53:41 +0300863 struct perf_evlist *evlist __maybe_unused)
864{
Adrian Hunter99fa2982015-04-30 17:37:25 +0300865 struct perf_session *session;
866 int err;
867
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700868 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
869 return -1;
870
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700871 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300872
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700873 err = auxtrace_index__write(ff->fd, &session->auxtrace_index);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300874 if (err < 0)
875 pr_err("Failed to write auxtrace index\n");
876 return err;
Adrian Hunter4025ea42015-04-09 18:53:41 +0300877}
878
Alexey Budankovcf790512018-10-09 17:36:24 +0300879static int write_clockid(struct feat_fd *ff,
880 struct perf_evlist *evlist __maybe_unused)
881{
882 return do_write(ff, &ff->ph->env.clockid_res_ns,
883 sizeof(ff->ph->env.clockid_res_ns));
884}
885
Jiri Olsa258031c2019-03-08 14:47:39 +0100886static int write_dir_format(struct feat_fd *ff,
887 struct perf_evlist *evlist __maybe_unused)
888{
889 struct perf_session *session;
890 struct perf_data *data;
891
892 session = container_of(ff->ph, struct perf_session, header);
893 data = session->data;
894
895 if (WARN_ON(!perf_data__is_dir(data)))
896 return -1;
897
898 return do_write(ff, &data->dir.version, sizeof(data->dir.version));
899}
900
Song Liu606f9722019-03-11 22:30:43 -0700901#ifdef HAVE_LIBBPF_SUPPORT
902static int write_bpf_prog_info(struct feat_fd *ff,
903 struct perf_evlist *evlist __maybe_unused)
904{
905 struct perf_env *env = &ff->ph->env;
906 struct rb_root *root;
907 struct rb_node *next;
908 int ret;
909
910 down_read(&env->bpf_progs.lock);
911
912 ret = do_write(ff, &env->bpf_progs.infos_cnt,
913 sizeof(env->bpf_progs.infos_cnt));
914 if (ret < 0)
915 goto out;
916
917 root = &env->bpf_progs.infos;
918 next = rb_first(root);
919 while (next) {
920 struct bpf_prog_info_node *node;
921 size_t len;
922
923 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
924 next = rb_next(&node->rb_node);
925 len = sizeof(struct bpf_prog_info_linear) +
926 node->info_linear->data_len;
927
928 /* before writing to file, translate address to offset */
929 bpf_program__bpil_addr_to_offs(node->info_linear);
930 ret = do_write(ff, node->info_linear, len);
931 /*
932 * translate back to address even when do_write() fails,
933 * so that this function never changes the data.
934 */
935 bpf_program__bpil_offs_to_addr(node->info_linear);
936 if (ret < 0)
937 goto out;
938 }
939out:
940 up_read(&env->bpf_progs.lock);
941 return ret;
942}
943#else // HAVE_LIBBPF_SUPPORT
944static int write_bpf_prog_info(struct feat_fd *ff __maybe_unused,
945 struct perf_evlist *evlist __maybe_unused)
946{
947 return 0;
948}
949#endif // HAVE_LIBBPF_SUPPORT
950
Song Liua70a112312019-03-11 22:30:45 -0700951static int write_bpf_btf(struct feat_fd *ff,
952 struct perf_evlist *evlist __maybe_unused)
953{
954 struct perf_env *env = &ff->ph->env;
955 struct rb_root *root;
956 struct rb_node *next;
957 int ret;
958
959 down_read(&env->bpf_progs.lock);
960
961 ret = do_write(ff, &env->bpf_progs.btfs_cnt,
962 sizeof(env->bpf_progs.btfs_cnt));
963
964 if (ret < 0)
965 goto out;
966
967 root = &env->bpf_progs.btfs;
968 next = rb_first(root);
969 while (next) {
970 struct btf_node *node;
971
972 node = rb_entry(next, struct btf_node, rb_node);
973 next = rb_next(&node->rb_node);
974 ret = do_write(ff, &node->id,
975 sizeof(u32) * 2 + node->data_size);
976 if (ret < 0)
977 goto out;
978 }
979out:
980 up_read(&env->bpf_progs.lock);
981 return ret;
982}
983
Jiri Olsa720e98b2016-02-16 16:01:43 +0100984static int cpu_cache_level__sort(const void *a, const void *b)
985{
986 struct cpu_cache_level *cache_a = (struct cpu_cache_level *)a;
987 struct cpu_cache_level *cache_b = (struct cpu_cache_level *)b;
988
989 return cache_a->level - cache_b->level;
990}
991
992static bool cpu_cache_level__cmp(struct cpu_cache_level *a, struct cpu_cache_level *b)
993{
994 if (a->level != b->level)
995 return false;
996
997 if (a->line_size != b->line_size)
998 return false;
999
1000 if (a->sets != b->sets)
1001 return false;
1002
1003 if (a->ways != b->ways)
1004 return false;
1005
1006 if (strcmp(a->type, b->type))
1007 return false;
1008
1009 if (strcmp(a->size, b->size))
1010 return false;
1011
1012 if (strcmp(a->map, b->map))
1013 return false;
1014
1015 return true;
1016}
1017
1018static int cpu_cache_level__read(struct cpu_cache_level *cache, u32 cpu, u16 level)
1019{
1020 char path[PATH_MAX], file[PATH_MAX];
1021 struct stat st;
1022 size_t len;
1023
1024 scnprintf(path, PATH_MAX, "devices/system/cpu/cpu%d/cache/index%d/", cpu, level);
1025 scnprintf(file, PATH_MAX, "%s/%s", sysfs__mountpoint(), path);
1026
1027 if (stat(file, &st))
1028 return 1;
1029
1030 scnprintf(file, PATH_MAX, "%s/level", path);
1031 if (sysfs__read_int(file, (int *) &cache->level))
1032 return -1;
1033
1034 scnprintf(file, PATH_MAX, "%s/coherency_line_size", path);
1035 if (sysfs__read_int(file, (int *) &cache->line_size))
1036 return -1;
1037
1038 scnprintf(file, PATH_MAX, "%s/number_of_sets", path);
1039 if (sysfs__read_int(file, (int *) &cache->sets))
1040 return -1;
1041
1042 scnprintf(file, PATH_MAX, "%s/ways_of_associativity", path);
1043 if (sysfs__read_int(file, (int *) &cache->ways))
1044 return -1;
1045
1046 scnprintf(file, PATH_MAX, "%s/type", path);
1047 if (sysfs__read_str(file, &cache->type, &len))
1048 return -1;
1049
1050 cache->type[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001051 cache->type = strim(cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001052
1053 scnprintf(file, PATH_MAX, "%s/size", path);
1054 if (sysfs__read_str(file, &cache->size, &len)) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001055 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001056 return -1;
1057 }
1058
1059 cache->size[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001060 cache->size = strim(cache->size);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001061
1062 scnprintf(file, PATH_MAX, "%s/shared_cpu_list", path);
1063 if (sysfs__read_str(file, &cache->map, &len)) {
Arnaldo Carvalho de Melod8f9da22019-07-04 12:06:20 -03001064 zfree(&cache->map);
1065 zfree(&cache->type);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001066 return -1;
1067 }
1068
1069 cache->map[len] = 0;
Arnaldo Carvalho de Melo13c230a2019-06-26 12:13:13 -03001070 cache->map = strim(cache->map);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001071 return 0;
1072}
1073
1074static void cpu_cache_level__fprintf(FILE *out, struct cpu_cache_level *c)
1075{
1076 fprintf(out, "L%d %-15s %8s [%s]\n", c->level, c->type, c->size, c->map);
1077}
1078
1079static int build_caches(struct cpu_cache_level caches[], u32 size, u32 *cntp)
1080{
1081 u32 i, cnt = 0;
1082 long ncpus;
1083 u32 nr, cpu;
1084 u16 level;
1085
1086 ncpus = sysconf(_SC_NPROCESSORS_CONF);
1087 if (ncpus < 0)
1088 return -1;
1089
1090 nr = (u32)(ncpus & UINT_MAX);
1091
1092 for (cpu = 0; cpu < nr; cpu++) {
1093 for (level = 0; level < 10; level++) {
1094 struct cpu_cache_level c;
1095 int err;
1096
1097 err = cpu_cache_level__read(&c, cpu, level);
1098 if (err < 0)
1099 return err;
1100
1101 if (err == 1)
1102 break;
1103
1104 for (i = 0; i < cnt; i++) {
1105 if (cpu_cache_level__cmp(&c, &caches[i]))
1106 break;
1107 }
1108
1109 if (i == cnt)
1110 caches[cnt++] = c;
1111 else
1112 cpu_cache_level__free(&c);
1113
1114 if (WARN_ONCE(cnt == size, "way too many cpu caches.."))
1115 goto out;
1116 }
1117 }
1118 out:
1119 *cntp = cnt;
1120 return 0;
1121}
1122
Kyle Meyer9f94c7f2019-06-20 14:36:30 -05001123#define MAX_CACHES (MAX_NR_CPUS * 4)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001124
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001125static int write_cache(struct feat_fd *ff,
1126 struct perf_evlist *evlist __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001127{
1128 struct cpu_cache_level caches[MAX_CACHES];
1129 u32 cnt = 0, i, version = 1;
1130 int ret;
1131
1132 ret = build_caches(caches, MAX_CACHES, &cnt);
1133 if (ret)
1134 goto out;
1135
1136 qsort(&caches, cnt, sizeof(struct cpu_cache_level), cpu_cache_level__sort);
1137
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001138 ret = do_write(ff, &version, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001139 if (ret < 0)
1140 goto out;
1141
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001142 ret = do_write(ff, &cnt, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001143 if (ret < 0)
1144 goto out;
1145
1146 for (i = 0; i < cnt; i++) {
1147 struct cpu_cache_level *c = &caches[i];
1148
1149 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001150 ret = do_write(ff, &c->v, sizeof(u32)); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001151 if (ret < 0) \
1152 goto out;
1153
1154 _W(level)
1155 _W(line_size)
1156 _W(sets)
1157 _W(ways)
1158 #undef _W
1159
1160 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001161 ret = do_write_string(ff, (const char *) c->v); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001162 if (ret < 0) \
1163 goto out;
1164
1165 _W(type)
1166 _W(size)
1167 _W(map)
1168 #undef _W
1169 }
1170
1171out:
1172 for (i = 0; i < cnt; i++)
1173 cpu_cache_level__free(&caches[i]);
1174 return ret;
1175}
1176
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001177static int write_stat(struct feat_fd *ff __maybe_unused,
Jiri Olsaffa517a2015-10-25 15:51:43 +01001178 struct perf_evlist *evlist __maybe_unused)
1179{
1180 return 0;
1181}
1182
Jin Yao60115182017-12-08 21:13:41 +08001183static int write_sample_time(struct feat_fd *ff,
1184 struct perf_evlist *evlist)
1185{
1186 int ret;
1187
1188 ret = do_write(ff, &evlist->first_sample_time,
1189 sizeof(evlist->first_sample_time));
1190 if (ret < 0)
1191 return ret;
1192
1193 return do_write(ff, &evlist->last_sample_time,
1194 sizeof(evlist->last_sample_time));
1195}
1196
Jiri Olsae2091ce2018-03-07 16:50:08 +01001197
1198static int memory_node__read(struct memory_node *n, unsigned long idx)
1199{
1200 unsigned int phys, size = 0;
1201 char path[PATH_MAX];
1202 struct dirent *ent;
1203 DIR *dir;
1204
1205#define for_each_memory(mem, dir) \
1206 while ((ent = readdir(dir))) \
1207 if (strcmp(ent->d_name, ".") && \
1208 strcmp(ent->d_name, "..") && \
1209 sscanf(ent->d_name, "memory%u", &mem) == 1)
1210
1211 scnprintf(path, PATH_MAX,
1212 "%s/devices/system/node/node%lu",
1213 sysfs__mountpoint(), idx);
1214
1215 dir = opendir(path);
1216 if (!dir) {
1217 pr_warning("failed: cant' open memory sysfs data\n");
1218 return -1;
1219 }
1220
1221 for_each_memory(phys, dir) {
1222 size = max(phys, size);
1223 }
1224
1225 size++;
1226
1227 n->set = bitmap_alloc(size);
1228 if (!n->set) {
1229 closedir(dir);
1230 return -ENOMEM;
1231 }
1232
Jiri Olsae2091ce2018-03-07 16:50:08 +01001233 n->node = idx;
1234 n->size = size;
1235
1236 rewinddir(dir);
1237
1238 for_each_memory(phys, dir) {
1239 set_bit(phys, n->set);
1240 }
1241
1242 closedir(dir);
1243 return 0;
1244}
1245
1246static int memory_node__sort(const void *a, const void *b)
1247{
1248 const struct memory_node *na = a;
1249 const struct memory_node *nb = b;
1250
1251 return na->node - nb->node;
1252}
1253
1254static int build_mem_topology(struct memory_node *nodes, u64 size, u64 *cntp)
1255{
1256 char path[PATH_MAX];
1257 struct dirent *ent;
1258 DIR *dir;
1259 u64 cnt = 0;
1260 int ret = 0;
1261
1262 scnprintf(path, PATH_MAX, "%s/devices/system/node/",
1263 sysfs__mountpoint());
1264
1265 dir = opendir(path);
1266 if (!dir) {
Thomas Richter4f75f1cb2018-04-12 15:32:46 +02001267 pr_debug2("%s: could't read %s, does this arch have topology information?\n",
1268 __func__, path);
Jiri Olsae2091ce2018-03-07 16:50:08 +01001269 return -1;
1270 }
1271
1272 while (!ret && (ent = readdir(dir))) {
1273 unsigned int idx;
1274 int r;
1275
1276 if (!strcmp(ent->d_name, ".") ||
1277 !strcmp(ent->d_name, ".."))
1278 continue;
1279
1280 r = sscanf(ent->d_name, "node%u", &idx);
1281 if (r != 1)
1282 continue;
1283
1284 if (WARN_ONCE(cnt >= size,
1285 "failed to write MEM_TOPOLOGY, way too many nodes\n"))
1286 return -1;
1287
1288 ret = memory_node__read(&nodes[cnt++], idx);
1289 }
1290
1291 *cntp = cnt;
1292 closedir(dir);
1293
1294 if (!ret)
1295 qsort(nodes, cnt, sizeof(nodes[0]), memory_node__sort);
1296
1297 return ret;
1298}
1299
1300#define MAX_MEMORY_NODES 2000
1301
1302/*
1303 * The MEM_TOPOLOGY holds physical memory map for every
1304 * node in system. The format of data is as follows:
1305 *
1306 * 0 - version | for future changes
1307 * 8 - block_size_bytes | /sys/devices/system/memory/block_size_bytes
1308 * 16 - count | number of nodes
1309 *
1310 * For each node we store map of physical indexes for
1311 * each node:
1312 *
1313 * 32 - node id | node index
1314 * 40 - size | size of bitmap
1315 * 48 - bitmap | bitmap of memory indexes that belongs to node
1316 */
1317static int write_mem_topology(struct feat_fd *ff __maybe_unused,
1318 struct perf_evlist *evlist __maybe_unused)
1319{
1320 static struct memory_node nodes[MAX_MEMORY_NODES];
1321 u64 bsize, version = 1, i, nr;
1322 int ret;
1323
1324 ret = sysfs__read_xll("devices/system/memory/block_size_bytes",
1325 (unsigned long long *) &bsize);
1326 if (ret)
1327 return ret;
1328
1329 ret = build_mem_topology(&nodes[0], MAX_MEMORY_NODES, &nr);
1330 if (ret)
1331 return ret;
1332
1333 ret = do_write(ff, &version, sizeof(version));
1334 if (ret < 0)
1335 goto out;
1336
1337 ret = do_write(ff, &bsize, sizeof(bsize));
1338 if (ret < 0)
1339 goto out;
1340
1341 ret = do_write(ff, &nr, sizeof(nr));
1342 if (ret < 0)
1343 goto out;
1344
1345 for (i = 0; i < nr; i++) {
1346 struct memory_node *n = &nodes[i];
1347
1348 #define _W(v) \
1349 ret = do_write(ff, &n->v, sizeof(n->v)); \
1350 if (ret < 0) \
1351 goto out;
1352
1353 _W(node)
1354 _W(size)
1355
1356 #undef _W
1357
1358 ret = do_write_bitmap(ff, n->set, n->size);
1359 if (ret < 0)
1360 goto out;
1361 }
1362
1363out:
1364 return ret;
1365}
1366
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001367static int write_compressed(struct feat_fd *ff __maybe_unused,
1368 struct perf_evlist *evlist __maybe_unused)
1369{
1370 int ret;
1371
1372 ret = do_write(ff, &(ff->ph->env.comp_ver), sizeof(ff->ph->env.comp_ver));
1373 if (ret)
1374 return ret;
1375
1376 ret = do_write(ff, &(ff->ph->env.comp_type), sizeof(ff->ph->env.comp_type));
1377 if (ret)
1378 return ret;
1379
1380 ret = do_write(ff, &(ff->ph->env.comp_level), sizeof(ff->ph->env.comp_level));
1381 if (ret)
1382 return ret;
1383
1384 ret = do_write(ff, &(ff->ph->env.comp_ratio), sizeof(ff->ph->env.comp_ratio));
1385 if (ret)
1386 return ret;
1387
1388 return do_write(ff, &(ff->ph->env.comp_mmap_len), sizeof(ff->ph->env.comp_mmap_len));
1389}
1390
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001391static void print_hostname(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001392{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001393 fprintf(fp, "# hostname : %s\n", ff->ph->env.hostname);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001394}
1395
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001396static void print_osrelease(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001397{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001398 fprintf(fp, "# os release : %s\n", ff->ph->env.os_release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001399}
1400
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001401static void print_arch(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001402{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001403 fprintf(fp, "# arch : %s\n", ff->ph->env.arch);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001404}
1405
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001406static void print_cpudesc(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001407{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001408 fprintf(fp, "# cpudesc : %s\n", ff->ph->env.cpu_desc);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001409}
1410
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001411static void print_nrcpus(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001412{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001413 fprintf(fp, "# nrcpus online : %u\n", ff->ph->env.nr_cpus_online);
1414 fprintf(fp, "# nrcpus avail : %u\n", ff->ph->env.nr_cpus_avail);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001415}
1416
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001417static void print_version(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001418{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001419 fprintf(fp, "# perf version : %s\n", ff->ph->env.version);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001420}
1421
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001422static void print_cmdline(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001423{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001424 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001425
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001426 nr = ff->ph->env.nr_cmdline;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001427
1428 fprintf(fp, "# cmdline : ");
1429
Alexey Budankovf92da712018-06-04 09:50:56 +03001430 for (i = 0; i < nr; i++) {
1431 char *argv_i = strdup(ff->ph->env.cmdline_argv[i]);
1432 if (!argv_i) {
1433 fprintf(fp, "%s ", ff->ph->env.cmdline_argv[i]);
1434 } else {
1435 char *mem = argv_i;
1436 do {
1437 char *quote = strchr(argv_i, '\'');
1438 if (!quote)
1439 break;
1440 *quote++ = '\0';
1441 fprintf(fp, "%s\\\'", argv_i);
1442 argv_i = quote;
1443 } while (1);
1444 fprintf(fp, "%s ", argv_i);
1445 free(mem);
1446 }
1447 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001448 fputc('\n', fp);
1449}
1450
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001451static void print_cpu_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001452{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001453 struct perf_header *ph = ff->ph;
1454 int cpu_nr = ph->env.nr_cpus_avail;
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001455 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001456 char *str;
1457
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001458 nr = ph->env.nr_sibling_cores;
1459 str = ph->env.sibling_cores;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001460
1461 for (i = 0; i < nr; i++) {
Kan Liange05a8992019-06-04 15:50:43 -07001462 fprintf(fp, "# sibling sockets : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001463 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001464 }
1465
Kan Liangacae8b32019-06-04 15:50:41 -07001466 if (ph->env.nr_sibling_dies) {
1467 nr = ph->env.nr_sibling_dies;
1468 str = ph->env.sibling_dies;
1469
1470 for (i = 0; i < nr; i++) {
1471 fprintf(fp, "# sibling dies : %s\n", str);
1472 str += strlen(str) + 1;
1473 }
1474 }
1475
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001476 nr = ph->env.nr_sibling_threads;
1477 str = ph->env.sibling_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001478
1479 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001480 fprintf(fp, "# sibling threads : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001481 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001482 }
Kan Liang2bb00d22015-09-01 09:58:12 -04001483
Kan Liangacae8b32019-06-04 15:50:41 -07001484 if (ph->env.nr_sibling_dies) {
1485 if (ph->env.cpu != NULL) {
1486 for (i = 0; i < cpu_nr; i++)
1487 fprintf(fp, "# CPU %d: Core ID %d, "
1488 "Die ID %d, Socket ID %d\n",
1489 i, ph->env.cpu[i].core_id,
1490 ph->env.cpu[i].die_id,
1491 ph->env.cpu[i].socket_id);
1492 } else
1493 fprintf(fp, "# Core ID, Die ID and Socket ID "
1494 "information is not available\n");
1495 } else {
1496 if (ph->env.cpu != NULL) {
1497 for (i = 0; i < cpu_nr; i++)
1498 fprintf(fp, "# CPU %d: Core ID %d, "
1499 "Socket ID %d\n",
1500 i, ph->env.cpu[i].core_id,
1501 ph->env.cpu[i].socket_id);
1502 } else
1503 fprintf(fp, "# Core ID and Socket ID "
1504 "information is not available\n");
1505 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001506}
1507
Alexey Budankovcf790512018-10-09 17:36:24 +03001508static void print_clockid(struct feat_fd *ff, FILE *fp)
1509{
1510 fprintf(fp, "# clockid frequency: %"PRIu64" MHz\n",
1511 ff->ph->env.clockid_res_ns * 1000);
1512}
1513
Jiri Olsa258031c2019-03-08 14:47:39 +01001514static void print_dir_format(struct feat_fd *ff, FILE *fp)
1515{
1516 struct perf_session *session;
1517 struct perf_data *data;
1518
1519 session = container_of(ff->ph, struct perf_session, header);
1520 data = session->data;
1521
1522 fprintf(fp, "# directory data version : %"PRIu64"\n", data->dir.version);
1523}
1524
Song Liu606f9722019-03-11 22:30:43 -07001525static void print_bpf_prog_info(struct feat_fd *ff, FILE *fp)
1526{
1527 struct perf_env *env = &ff->ph->env;
1528 struct rb_root *root;
1529 struct rb_node *next;
1530
1531 down_read(&env->bpf_progs.lock);
1532
1533 root = &env->bpf_progs.infos;
1534 next = rb_first(root);
1535
1536 while (next) {
1537 struct bpf_prog_info_node *node;
1538
1539 node = rb_entry(next, struct bpf_prog_info_node, rb_node);
1540 next = rb_next(&node->rb_node);
Song Liuf8dfeae2019-03-19 09:54:54 -07001541
1542 bpf_event__print_bpf_prog_info(&node->info_linear->info,
1543 env, fp);
Song Liu606f9722019-03-11 22:30:43 -07001544 }
1545
1546 up_read(&env->bpf_progs.lock);
1547}
1548
Song Liua70a112312019-03-11 22:30:45 -07001549static void print_bpf_btf(struct feat_fd *ff, FILE *fp)
1550{
1551 struct perf_env *env = &ff->ph->env;
1552 struct rb_root *root;
1553 struct rb_node *next;
1554
1555 down_read(&env->bpf_progs.lock);
1556
1557 root = &env->bpf_progs.btfs;
1558 next = rb_first(root);
1559
1560 while (next) {
1561 struct btf_node *node;
1562
1563 node = rb_entry(next, struct btf_node, rb_node);
1564 next = rb_next(&node->rb_node);
1565 fprintf(fp, "# btf info of id %u\n", node->id);
1566 }
1567
1568 up_read(&env->bpf_progs.lock);
1569}
1570
Robert Richter4e1b9c62012-08-16 21:10:22 +02001571static void free_event_desc(struct perf_evsel *events)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001572{
Robert Richter4e1b9c62012-08-16 21:10:22 +02001573 struct perf_evsel *evsel;
1574
1575 if (!events)
1576 return;
1577
1578 for (evsel = events; evsel->attr.size; evsel++) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001579 zfree(&evsel->name);
1580 zfree(&evsel->id);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001581 }
1582
1583 free(events);
1584}
1585
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001586static struct perf_evsel *read_event_desc(struct feat_fd *ff)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001587{
1588 struct perf_evsel *evsel, *events = NULL;
1589 u64 *id;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001590 void *buf = NULL;
Stephane Eranian62db9062012-02-09 23:21:07 +01001591 u32 nre, sz, nr, i, j;
Stephane Eranian62db9062012-02-09 23:21:07 +01001592 size_t msz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001593
1594 /* number of events */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001595 if (do_read_u32(ff, &nre))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001596 goto error;
1597
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001598 if (do_read_u32(ff, &sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001599 goto error;
1600
Stephane Eranian62db9062012-02-09 23:21:07 +01001601 /* buffer to hold on file attr struct */
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001602 buf = malloc(sz);
1603 if (!buf)
1604 goto error;
1605
Robert Richter4e1b9c62012-08-16 21:10:22 +02001606 /* the last event terminates with evsel->attr.size == 0: */
1607 events = calloc(nre + 1, sizeof(*events));
1608 if (!events)
1609 goto error;
1610
1611 msz = sizeof(evsel->attr);
Jiri Olsa9fafd982012-03-20 19:15:39 +01001612 if (sz < msz)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001613 msz = sz;
1614
Robert Richter4e1b9c62012-08-16 21:10:22 +02001615 for (i = 0, evsel = events; i < nre; evsel++, i++) {
1616 evsel->idx = i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001617
Stephane Eranian62db9062012-02-09 23:21:07 +01001618 /*
1619 * must read entire on-file attr struct to
1620 * sync up with layout.
1621 */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001622 if (__do_read(ff, buf, sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001623 goto error;
1624
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001625 if (ff->ph->needs_swap)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001626 perf_event__attr_swap(buf);
1627
Robert Richter4e1b9c62012-08-16 21:10:22 +02001628 memcpy(&evsel->attr, buf, msz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001629
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001630 if (do_read_u32(ff, &nr))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001631 goto error;
1632
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001633 if (ff->ph->needs_swap)
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001634 evsel->needs_swap = true;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001635
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001636 evsel->name = do_read_string(ff);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001637 if (!evsel->name)
1638 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001639
1640 if (!nr)
1641 continue;
1642
1643 id = calloc(nr, sizeof(*id));
1644 if (!id)
1645 goto error;
1646 evsel->ids = nr;
1647 evsel->id = id;
1648
1649 for (j = 0 ; j < nr; j++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001650 if (do_read_u64(ff, id))
Robert Richter4e1b9c62012-08-16 21:10:22 +02001651 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001652 id++;
1653 }
1654 }
1655out:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001656 free(buf);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001657 return events;
1658error:
Markus Elfring4cc97612015-06-25 17:12:32 +02001659 free_event_desc(events);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001660 events = NULL;
1661 goto out;
1662}
1663
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001664static int __desc_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001665 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001666{
1667 return fprintf(fp, ", %s = %s", name, val);
1668}
1669
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001670static void print_event_desc(struct feat_fd *ff, FILE *fp)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001671{
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001672 struct perf_evsel *evsel, *events;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001673 u32 j;
1674 u64 *id;
1675
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001676 if (ff->events)
1677 events = ff->events;
1678 else
1679 events = read_event_desc(ff);
1680
Robert Richter4e1b9c62012-08-16 21:10:22 +02001681 if (!events) {
1682 fprintf(fp, "# event desc: not available or unable to read\n");
1683 return;
1684 }
1685
1686 for (evsel = events; evsel->attr.size; evsel++) {
1687 fprintf(fp, "# event : name = %s, ", evsel->name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001688
Robert Richter4e1b9c62012-08-16 21:10:22 +02001689 if (evsel->ids) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001690 fprintf(fp, ", id = {");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001691 for (j = 0, id = evsel->id; j < evsel->ids; j++, id++) {
1692 if (j)
1693 fputc(',', fp);
1694 fprintf(fp, " %"PRIu64, *id);
1695 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001696 fprintf(fp, " }");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001697 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001698
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001699 perf_event_attr__fprintf(fp, &evsel->attr, __desc_attr__fprintf, NULL);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001700
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001701 fputc('\n', fp);
1702 }
Robert Richter4e1b9c62012-08-16 21:10:22 +02001703
1704 free_event_desc(events);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07001705 ff->events = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001706}
1707
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001708static void print_total_mem(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001709{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001710 fprintf(fp, "# total memory : %llu kB\n", ff->ph->env.total_mem);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001711}
1712
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001713static void print_numa_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001714{
Jiri Olsac60da222016-07-04 14:16:20 +02001715 int i;
1716 struct numa_node *n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001717
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001718 for (i = 0; i < ff->ph->env.nr_numa_nodes; i++) {
1719 n = &ff->ph->env.numa_nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001720
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001721 fprintf(fp, "# node%u meminfo : total = %"PRIu64" kB,"
1722 " free = %"PRIu64" kB\n",
Jiri Olsac60da222016-07-04 14:16:20 +02001723 n->node, n->mem_total, n->mem_free);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001724
Jiri Olsac60da222016-07-04 14:16:20 +02001725 fprintf(fp, "# node%u cpu list : ", n->node);
1726 cpu_map__fprintf(n->map, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001727 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001728}
1729
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001730static void print_cpuid(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001731{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001732 fprintf(fp, "# cpuid : %s\n", ff->ph->env.cpuid);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001733}
1734
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001735static void print_branch_stack(struct feat_fd *ff __maybe_unused, FILE *fp)
Stephane Eranian330aa672012-03-08 23:47:46 +01001736{
1737 fprintf(fp, "# contains samples with branch stack\n");
1738}
1739
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001740static void print_auxtrace(struct feat_fd *ff __maybe_unused, FILE *fp)
Adrian Hunter4025ea42015-04-09 18:53:41 +03001741{
1742 fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
1743}
1744
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001745static void print_stat(struct feat_fd *ff __maybe_unused, FILE *fp)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001746{
1747 fprintf(fp, "# contains stat data\n");
1748}
1749
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001750static void print_cache(struct feat_fd *ff, FILE *fp __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001751{
1752 int i;
1753
1754 fprintf(fp, "# CPU cache info:\n");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001755 for (i = 0; i < ff->ph->env.caches_cnt; i++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001756 fprintf(fp, "# ");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001757 cpu_cache_level__fprintf(fp, &ff->ph->env.caches[i]);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001758 }
1759}
1760
Alexey Budankov42e1fd82019-03-18 20:41:33 +03001761static void print_compressed(struct feat_fd *ff, FILE *fp)
1762{
1763 fprintf(fp, "# compressed : %s, level = %d, ratio = %d\n",
1764 ff->ph->env.comp_type == PERF_COMP_ZSTD ? "Zstd" : "Unknown",
1765 ff->ph->env.comp_level, ff->ph->env.comp_ratio);
1766}
1767
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001768static void print_pmu_mappings(struct feat_fd *ff, FILE *fp)
Robert Richter50a96672012-08-16 21:10:24 +02001769{
1770 const char *delimiter = "# pmu mappings: ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001771 char *str, *tmp;
Robert Richter50a96672012-08-16 21:10:24 +02001772 u32 pmu_num;
1773 u32 type;
1774
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001775 pmu_num = ff->ph->env.nr_pmu_mappings;
Robert Richter50a96672012-08-16 21:10:24 +02001776 if (!pmu_num) {
1777 fprintf(fp, "# pmu mappings: not available\n");
1778 return;
1779 }
1780
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001781 str = ff->ph->env.pmu_mappings;
Namhyung Kimbe4a2de2012-09-05 14:02:49 +09001782
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001783 while (pmu_num) {
1784 type = strtoul(str, &tmp, 0);
1785 if (*tmp != ':')
1786 goto error;
1787
1788 str = tmp + 1;
1789 fprintf(fp, "%s%s = %" PRIu32, delimiter, str, type);
1790
Robert Richter50a96672012-08-16 21:10:24 +02001791 delimiter = ", ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001792 str += strlen(str) + 1;
1793 pmu_num--;
Robert Richter50a96672012-08-16 21:10:24 +02001794 }
1795
1796 fprintf(fp, "\n");
1797
1798 if (!pmu_num)
1799 return;
1800error:
1801 fprintf(fp, "# pmu mappings: unable to read\n");
1802}
1803
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001804static void print_group_desc(struct feat_fd *ff, FILE *fp)
Namhyung Kima8bb5592013-01-22 18:09:31 +09001805{
1806 struct perf_session *session;
1807 struct perf_evsel *evsel;
1808 u32 nr = 0;
1809
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001810 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09001811
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001812 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09001813 if (perf_evsel__is_group_leader(evsel) &&
1814 evsel->nr_members > 1) {
1815 fprintf(fp, "# group: %s{%s", evsel->group_name ?: "",
1816 perf_evsel__name(evsel));
1817
1818 nr = evsel->nr_members - 1;
1819 } else if (nr) {
1820 fprintf(fp, ",%s", perf_evsel__name(evsel));
1821
1822 if (--nr == 0)
1823 fprintf(fp, "}\n");
1824 }
1825 }
1826}
1827
Jin Yao60115182017-12-08 21:13:41 +08001828static void print_sample_time(struct feat_fd *ff, FILE *fp)
1829{
1830 struct perf_session *session;
1831 char time_buf[32];
1832 double d;
1833
1834 session = container_of(ff->ph, struct perf_session, header);
1835
1836 timestamp__scnprintf_usec(session->evlist->first_sample_time,
1837 time_buf, sizeof(time_buf));
1838 fprintf(fp, "# time of first sample : %s\n", time_buf);
1839
1840 timestamp__scnprintf_usec(session->evlist->last_sample_time,
1841 time_buf, sizeof(time_buf));
1842 fprintf(fp, "# time of last sample : %s\n", time_buf);
1843
1844 d = (double)(session->evlist->last_sample_time -
1845 session->evlist->first_sample_time) / NSEC_PER_MSEC;
1846
1847 fprintf(fp, "# sample duration : %10.3f ms\n", d);
1848}
1849
Jiri Olsae2091ce2018-03-07 16:50:08 +01001850static void memory_node__fprintf(struct memory_node *n,
1851 unsigned long long bsize, FILE *fp)
1852{
1853 char buf_map[100], buf_size[50];
1854 unsigned long long size;
1855
1856 size = bsize * bitmap_weight(n->set, n->size);
1857 unit_number__scnprintf(buf_size, 50, size);
1858
1859 bitmap_scnprintf(n->set, n->size, buf_map, 100);
1860 fprintf(fp, "# %3" PRIu64 " [%s]: %s\n", n->node, buf_size, buf_map);
1861}
1862
1863static void print_mem_topology(struct feat_fd *ff, FILE *fp)
1864{
1865 struct memory_node *nodes;
1866 int i, nr;
1867
1868 nodes = ff->ph->env.memory_nodes;
1869 nr = ff->ph->env.nr_memory_nodes;
1870
1871 fprintf(fp, "# memory nodes (nr %d, block size 0x%llx):\n",
1872 nr, ff->ph->env.memory_bsize);
1873
1874 for (i = 0; i < nr; i++) {
1875 memory_node__fprintf(&nodes[i], ff->ph->env.memory_bsize, fp);
1876 }
1877}
1878
Robert Richter08d95bd2012-02-10 15:41:55 +01001879static int __event_process_build_id(struct build_id_event *bev,
1880 char *filename,
1881 struct perf_session *session)
1882{
1883 int err = -1;
Robert Richter08d95bd2012-02-10 15:41:55 +01001884 struct machine *machine;
Wang Nan1f121b02015-06-03 08:52:21 +00001885 u16 cpumode;
Robert Richter08d95bd2012-02-10 15:41:55 +01001886 struct dso *dso;
1887 enum dso_kernel_type dso_type;
1888
1889 machine = perf_session__findnew_machine(session, bev->pid);
1890 if (!machine)
1891 goto out;
1892
Wang Nan1f121b02015-06-03 08:52:21 +00001893 cpumode = bev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Robert Richter08d95bd2012-02-10 15:41:55 +01001894
Wang Nan1f121b02015-06-03 08:52:21 +00001895 switch (cpumode) {
Robert Richter08d95bd2012-02-10 15:41:55 +01001896 case PERF_RECORD_MISC_KERNEL:
1897 dso_type = DSO_TYPE_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001898 break;
1899 case PERF_RECORD_MISC_GUEST_KERNEL:
1900 dso_type = DSO_TYPE_GUEST_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001901 break;
1902 case PERF_RECORD_MISC_USER:
1903 case PERF_RECORD_MISC_GUEST_USER:
1904 dso_type = DSO_TYPE_USER;
Robert Richter08d95bd2012-02-10 15:41:55 +01001905 break;
1906 default:
1907 goto out;
1908 }
1909
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001910 dso = machine__findnew_dso(machine, filename);
Robert Richter08d95bd2012-02-10 15:41:55 +01001911 if (dso != NULL) {
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09001912 char sbuild_id[SBUILD_ID_SIZE];
Robert Richter08d95bd2012-02-10 15:41:55 +01001913
1914 dso__set_build_id(dso, &bev->build_id);
1915
Namhyung Kim1deec1b2017-05-31 21:01:03 +09001916 if (dso_type != DSO_TYPE_USER) {
1917 struct kmod_path m = { .name = NULL, };
1918
1919 if (!kmod_path__parse_name(&m, filename) && m.kmod)
Namhyung Kim6b335e82017-05-31 21:01:04 +09001920 dso__set_module_info(dso, &m, machine);
Namhyung Kim1deec1b2017-05-31 21:01:03 +09001921 else
1922 dso->kernel = dso_type;
1923
1924 free(m.name);
1925 }
Robert Richter08d95bd2012-02-10 15:41:55 +01001926
1927 build_id__sprintf(dso->build_id, sizeof(dso->build_id),
1928 sbuild_id);
1929 pr_debug("build id event received for %s: %s\n",
1930 dso->long_name, sbuild_id);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001931 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01001932 }
1933
1934 err = 0;
1935out:
1936 return err;
1937}
1938
1939static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
1940 int input, u64 offset, u64 size)
1941{
1942 struct perf_session *session = container_of(header, struct perf_session, header);
1943 struct {
1944 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03001945 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01001946 char filename[0];
1947 } old_bev;
1948 struct build_id_event bev;
1949 char filename[PATH_MAX];
1950 u64 limit = offset + size;
1951
1952 while (offset < limit) {
1953 ssize_t len;
1954
Namhyung Kim5323f602012-12-17 15:38:54 +09001955 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001956 return -1;
1957
1958 if (header->needs_swap)
1959 perf_event_header__bswap(&old_bev.header);
1960
1961 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001962 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001963 return -1;
1964
1965 bev.header = old_bev.header;
1966
1967 /*
1968 * As the pid is the missing value, we need to fill
1969 * it properly. The header.misc value give us nice hint.
1970 */
1971 bev.pid = HOST_KERNEL_ID;
1972 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
1973 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
1974 bev.pid = DEFAULT_GUEST_KERNEL_ID;
1975
1976 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
1977 __event_process_build_id(&bev, filename, session);
1978
1979 offset += bev.header.size;
1980 }
1981
1982 return 0;
1983}
1984
1985static int perf_header__read_build_ids(struct perf_header *header,
1986 int input, u64 offset, u64 size)
1987{
1988 struct perf_session *session = container_of(header, struct perf_session, header);
1989 struct build_id_event bev;
1990 char filename[PATH_MAX];
1991 u64 limit = offset + size, orig_offset = offset;
1992 int err = -1;
1993
1994 while (offset < limit) {
1995 ssize_t len;
1996
Namhyung Kim5323f602012-12-17 15:38:54 +09001997 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001998 goto out;
1999
2000 if (header->needs_swap)
2001 perf_event_header__bswap(&bev.header);
2002
2003 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09002004 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01002005 goto out;
2006 /*
2007 * The a1645ce1 changeset:
2008 *
2009 * "perf: 'perf kvm' tool for monitoring guest performance from host"
2010 *
2011 * Added a field to struct build_id_event that broke the file
2012 * format.
2013 *
2014 * Since the kernel build-id is the first entry, process the
2015 * table using the old format if the well known
2016 * '[kernel.kallsyms]' string for the kernel build-id has the
2017 * first 4 characters chopped off (where the pid_t sits).
2018 */
2019 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
2020 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
2021 return -1;
2022 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
2023 }
2024
2025 __event_process_build_id(&bev, filename, session);
2026
2027 offset += bev.header.size;
2028 }
2029 err = 0;
2030out:
2031 return err;
2032}
2033
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002034/* Macro for features that simply need to read and store a string. */
2035#define FEAT_PROCESS_STR_FUN(__feat, __feat_env) \
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002036static int process_##__feat(struct feat_fd *ff, void *data __maybe_unused) \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002037{\
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002038 ff->ph->env.__feat_env = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002039 return ff->ph->env.__feat_env ? 0 : -ENOMEM; \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07002040}
2041
2042FEAT_PROCESS_STR_FUN(hostname, hostname);
2043FEAT_PROCESS_STR_FUN(osrelease, os_release);
2044FEAT_PROCESS_STR_FUN(version, version);
2045FEAT_PROCESS_STR_FUN(arch, arch);
2046FEAT_PROCESS_STR_FUN(cpudesc, cpu_desc);
2047FEAT_PROCESS_STR_FUN(cpuid, cpuid);
2048
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002049static int process_tracing_data(struct feat_fd *ff, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01002050{
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002051 ssize_t ret = trace_report(ff->fd, data, false);
2052
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002053 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01002054}
2055
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002056static int process_build_id(struct feat_fd *ff, void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01002057{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002058 if (perf_header__read_build_ids(ff->ph, ff->fd, ff->offset, ff->size))
Robert Richterf1c67db2012-02-10 15:41:56 +01002059 pr_debug("Failed to read buildids, continuing...\n");
2060 return 0;
2061}
2062
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002063static int process_nrcpus(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002064{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002065 int ret;
2066 u32 nr_cpus_avail, nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002067
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002068 ret = do_read_u32(ff, &nr_cpus_avail);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002069 if (ret)
2070 return ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002071
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002072 ret = do_read_u32(ff, &nr_cpus_online);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002073 if (ret)
2074 return ret;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002075 ff->ph->env.nr_cpus_avail = (int)nr_cpus_avail;
2076 ff->ph->env.nr_cpus_online = (int)nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002077 return 0;
2078}
2079
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002080static int process_total_mem(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002081{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002082 u64 total_mem;
2083 int ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002084
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002085 ret = do_read_u64(ff, &total_mem);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07002086 if (ret)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002087 return -1;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002088 ff->ph->env.total_mem = (unsigned long long)total_mem;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002089 return 0;
2090}
2091
Robert Richter7c2f7af2012-08-16 21:10:23 +02002092static struct perf_evsel *
2093perf_evlist__find_by_index(struct perf_evlist *evlist, int idx)
2094{
2095 struct perf_evsel *evsel;
2096
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002097 evlist__for_each_entry(evlist, evsel) {
Robert Richter7c2f7af2012-08-16 21:10:23 +02002098 if (evsel->idx == idx)
2099 return evsel;
2100 }
2101
2102 return NULL;
2103}
2104
2105static void
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002106perf_evlist__set_event_name(struct perf_evlist *evlist,
2107 struct perf_evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002108{
2109 struct perf_evsel *evsel;
2110
2111 if (!event->name)
2112 return;
2113
2114 evsel = perf_evlist__find_by_index(evlist, event->idx);
2115 if (!evsel)
2116 return;
2117
2118 if (evsel->name)
2119 return;
2120
2121 evsel->name = strdup(event->name);
2122}
2123
2124static int
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002125process_event_desc(struct feat_fd *ff, void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02002126{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002127 struct perf_session *session;
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002128 struct perf_evsel *evsel, *events = read_event_desc(ff);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002129
2130 if (!events)
2131 return 0;
2132
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002133 session = container_of(ff->ph, struct perf_session, header);
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002134
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002135 if (session->data->is_pipe) {
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002136 /* Save events for reading later by print_event_desc,
2137 * since they can't be read again in pipe mode. */
2138 ff->events = events;
2139 }
2140
Robert Richter7c2f7af2012-08-16 21:10:23 +02002141 for (evsel = events; evsel->attr.size; evsel++)
2142 perf_evlist__set_event_name(session->evlist, evsel);
2143
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002144 if (!session->data->is_pipe)
David Carrillo-Cisnerosf9ebdcc2017-07-17 21:25:49 -07002145 free_event_desc(events);
Robert Richter7c2f7af2012-08-16 21:10:23 +02002146
2147 return 0;
2148}
2149
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002150static int process_cmdline(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002151{
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002152 char *str, *cmdline = NULL, **argv = NULL;
2153 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002154
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002155 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002156 return -1;
2157
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002158 ff->ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002159
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002160 cmdline = zalloc(ff->size + nr + 1);
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002161 if (!cmdline)
2162 return -1;
2163
2164 argv = zalloc(sizeof(char *) * (nr + 1));
2165 if (!argv)
2166 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002167
2168 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002169 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002170 if (!str)
2171 goto error;
2172
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002173 argv[i] = cmdline + len;
2174 memcpy(argv[i], str, strlen(str) + 1);
2175 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002176 free(str);
2177 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002178 ff->ph->env.cmdline = cmdline;
2179 ff->ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002180 return 0;
2181
2182error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02002183 free(argv);
2184 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002185 return -1;
2186}
2187
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002188static int process_cpu_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002189{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002190 u32 nr, i;
2191 char *str;
2192 struct strbuf sb;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002193 int cpu_nr = ff->ph->env.nr_cpus_avail;
Kan Liang2bb00d22015-09-01 09:58:12 -04002194 u64 size = 0;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002195 struct perf_header *ph = ff->ph;
Thomas Richter01766222018-06-11 09:31:52 +02002196 bool do_core_id_test = true;
Kan Liang2bb00d22015-09-01 09:58:12 -04002197
2198 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
2199 if (!ph->env.cpu)
2200 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002201
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002202 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002203 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002204
Namhyung Kima1ae5652012-09-24 17:14:59 +09002205 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002206 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002207 if (strbuf_init(&sb, 128) < 0)
2208 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002209
2210 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002211 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002212 if (!str)
2213 goto error;
2214
2215 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002216 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2217 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002218 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002219 free(str);
2220 }
2221 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
2222
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002223 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002224 return -1;
2225
Namhyung Kima1ae5652012-09-24 17:14:59 +09002226 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002227 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002228
2229 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002230 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002231 if (!str)
2232 goto error;
2233
2234 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002235 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2236 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04002237 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002238 free(str);
2239 }
2240 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04002241
2242 /*
2243 * The header may be from old perf,
2244 * which doesn't include core id and socket id information.
2245 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002246 if (ff->size <= size) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002247 zfree(&ph->env.cpu);
2248 return 0;
2249 }
2250
Thomas Richter01766222018-06-11 09:31:52 +02002251 /* On s390 the socket_id number is not related to the numbers of cpus.
2252 * The socket_id number might be higher than the numbers of cpus.
2253 * This depends on the configuration.
2254 */
2255 if (ph->env.arch && !strncmp(ph->env.arch, "s390", 4))
2256 do_core_id_test = false;
2257
Kan Liang2bb00d22015-09-01 09:58:12 -04002258 for (i = 0; i < (u32)cpu_nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002259 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002260 goto free_cpu;
2261
Kan Liang2bb00d22015-09-01 09:58:12 -04002262 ph->env.cpu[i].core_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002263 size += sizeof(u32);
Kan Liang2bb00d22015-09-01 09:58:12 -04002264
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002265 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04002266 goto free_cpu;
2267
Thomas Richter01766222018-06-11 09:31:52 +02002268 if (do_core_id_test && nr != (u32)-1 && nr > (u32)cpu_nr) {
Kan Liang2bb00d22015-09-01 09:58:12 -04002269 pr_debug("socket_id number is too big."
2270 "You may need to upgrade the perf tool.\n");
2271 goto free_cpu;
2272 }
2273
2274 ph->env.cpu[i].socket_id = nr;
Kan Liangacae8b32019-06-04 15:50:41 -07002275 size += sizeof(u32);
2276 }
2277
2278 /*
2279 * The header may be from old perf,
2280 * which doesn't include die information.
2281 */
2282 if (ff->size <= size)
2283 return 0;
2284
2285 if (do_read_u32(ff, &nr))
2286 return -1;
2287
2288 ph->env.nr_sibling_dies = nr;
2289 size += sizeof(u32);
2290
2291 for (i = 0; i < nr; i++) {
2292 str = do_read_string(ff);
2293 if (!str)
2294 goto error;
2295
2296 /* include a NULL character at the end */
2297 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
2298 goto error;
2299 size += string_size(str);
2300 free(str);
2301 }
2302 ph->env.sibling_dies = strbuf_detach(&sb, NULL);
2303
2304 for (i = 0; i < (u32)cpu_nr; i++) {
2305 if (do_read_u32(ff, &nr))
2306 goto free_cpu;
2307
2308 ph->env.cpu[i].die_id = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04002309 }
2310
Namhyung Kima1ae5652012-09-24 17:14:59 +09002311 return 0;
2312
2313error:
2314 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04002315free_cpu:
2316 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002317 return -1;
2318}
2319
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002320static int process_numa_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002321{
Jiri Olsac60da222016-07-04 14:16:20 +02002322 struct numa_node *nodes, *n;
Jiri Olsac60da222016-07-04 14:16:20 +02002323 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002324 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002325
2326 /* nr nodes */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002327 if (do_read_u32(ff, &nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002328 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002329
Jiri Olsac60da222016-07-04 14:16:20 +02002330 nodes = zalloc(sizeof(*nodes) * nr);
2331 if (!nodes)
2332 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002333
2334 for (i = 0; i < nr; i++) {
Jiri Olsac60da222016-07-04 14:16:20 +02002335 n = &nodes[i];
2336
Namhyung Kima1ae5652012-09-24 17:14:59 +09002337 /* node number */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002338 if (do_read_u32(ff, &n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002339 goto error;
2340
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002341 if (do_read_u64(ff, &n->mem_total))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002342 goto error;
2343
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002344 if (do_read_u64(ff, &n->mem_free))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002345 goto error;
2346
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002347 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002348 if (!str)
2349 goto error;
2350
Jiri Olsac60da222016-07-04 14:16:20 +02002351 n->map = cpu_map__new(str);
2352 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002353 goto error;
Jiri Olsac60da222016-07-04 14:16:20 +02002354
Namhyung Kima1ae5652012-09-24 17:14:59 +09002355 free(str);
2356 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002357 ff->ph->env.nr_numa_nodes = nr;
2358 ff->ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002359 return 0;
2360
2361error:
Jiri Olsac60da222016-07-04 14:16:20 +02002362 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002363 return -1;
2364}
2365
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002366static int process_pmu_mappings(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09002367{
Namhyung Kima1ae5652012-09-24 17:14:59 +09002368 char *name;
2369 u32 pmu_num;
2370 u32 type;
2371 struct strbuf sb;
2372
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002373 if (do_read_u32(ff, &pmu_num))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002374 return -1;
2375
Namhyung Kima1ae5652012-09-24 17:14:59 +09002376 if (!pmu_num) {
2377 pr_debug("pmu mappings not available\n");
2378 return 0;
2379 }
2380
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002381 ff->ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002382 if (strbuf_init(&sb, 128) < 0)
2383 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002384
2385 while (pmu_num) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002386 if (do_read_u32(ff, &type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09002387 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002388
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002389 name = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002390 if (!name)
2391 goto error;
2392
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002393 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
2394 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002395 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09002396 if (strbuf_add(&sb, "", 1) < 0)
2397 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09002398
Kan Liange0838e02015-09-10 11:03:05 -03002399 if (!strcmp(name, "msr"))
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002400 ff->ph->env.msr_pmu_type = type;
Kan Liange0838e02015-09-10 11:03:05 -03002401
Namhyung Kima1ae5652012-09-24 17:14:59 +09002402 free(name);
2403 pmu_num--;
2404 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002405 ff->ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
Namhyung Kima1ae5652012-09-24 17:14:59 +09002406 return 0;
2407
2408error:
2409 strbuf_release(&sb);
2410 return -1;
2411}
2412
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002413static int process_group_desc(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima8bb5592013-01-22 18:09:31 +09002414{
2415 size_t ret = -1;
2416 u32 i, nr, nr_groups;
2417 struct perf_session *session;
2418 struct perf_evsel *evsel, *leader = NULL;
2419 struct group_desc {
2420 char *name;
2421 u32 leader_idx;
2422 u32 nr_members;
2423 } *desc;
2424
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002425 if (do_read_u32(ff, &nr_groups))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002426 return -1;
2427
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002428 ff->ph->env.nr_groups = nr_groups;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002429 if (!nr_groups) {
2430 pr_debug("group desc not available\n");
2431 return 0;
2432 }
2433
2434 desc = calloc(nr_groups, sizeof(*desc));
2435 if (!desc)
2436 return -1;
2437
2438 for (i = 0; i < nr_groups; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002439 desc[i].name = do_read_string(ff);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002440 if (!desc[i].name)
2441 goto out_free;
2442
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002443 if (do_read_u32(ff, &desc[i].leader_idx))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002444 goto out_free;
2445
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002446 if (do_read_u32(ff, &desc[i].nr_members))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002447 goto out_free;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002448 }
2449
2450 /*
2451 * Rebuild group relationship based on the group_desc
2452 */
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002453 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002454 session->evlist->nr_groups = nr_groups;
2455
2456 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002457 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002458 if (evsel->idx == (int) desc[i].leader_idx) {
2459 evsel->leader = evsel;
2460 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002461 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002462 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002463 desc[i].name = NULL;
2464 }
Namhyung Kima8bb5592013-01-22 18:09:31 +09002465 evsel->nr_members = desc[i].nr_members;
2466
2467 if (i >= nr_groups || nr > 0) {
2468 pr_debug("invalid group desc\n");
2469 goto out_free;
2470 }
2471
2472 leader = evsel;
2473 nr = evsel->nr_members - 1;
2474 i++;
2475 } else if (nr) {
2476 /* This is a group member */
2477 evsel->leader = leader;
2478
2479 nr--;
2480 }
2481 }
2482
2483 if (i != nr_groups || nr != 0) {
2484 pr_debug("invalid group desc\n");
2485 goto out_free;
2486 }
2487
2488 ret = 0;
2489out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002490 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002491 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002492 free(desc);
2493
2494 return ret;
2495}
2496
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002497static int process_auxtrace(struct feat_fd *ff, void *data __maybe_unused)
Adrian Hunter99fa2982015-04-30 17:37:25 +03002498{
2499 struct perf_session *session;
2500 int err;
2501
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002502 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002503
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002504 err = auxtrace_index__process(ff->fd, ff->size, session,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002505 ff->ph->needs_swap);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002506 if (err < 0)
2507 pr_err("Failed to process auxtrace index\n");
2508 return err;
2509}
2510
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002511static int process_cache(struct feat_fd *ff, void *data __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01002512{
2513 struct cpu_cache_level *caches;
2514 u32 cnt, i, version;
2515
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002516 if (do_read_u32(ff, &version))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002517 return -1;
2518
Jiri Olsa720e98b2016-02-16 16:01:43 +01002519 if (version != 1)
2520 return -1;
2521
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002522 if (do_read_u32(ff, &cnt))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002523 return -1;
2524
Jiri Olsa720e98b2016-02-16 16:01:43 +01002525 caches = zalloc(sizeof(*caches) * cnt);
2526 if (!caches)
2527 return -1;
2528
2529 for (i = 0; i < cnt; i++) {
2530 struct cpu_cache_level c;
2531
2532 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002533 if (do_read_u32(ff, &c.v))\
Jiri Olsa720e98b2016-02-16 16:01:43 +01002534 goto out_free_caches; \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002535
2536 _R(level)
2537 _R(line_size)
2538 _R(sets)
2539 _R(ways)
2540 #undef _R
2541
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002542 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002543 c.v = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002544 if (!c.v) \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002545 goto out_free_caches;
2546
2547 _R(type)
2548 _R(size)
2549 _R(map)
2550 #undef _R
2551
2552 caches[i] = c;
2553 }
2554
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002555 ff->ph->env.caches = caches;
2556 ff->ph->env.caches_cnt = cnt;
Jiri Olsa720e98b2016-02-16 16:01:43 +01002557 return 0;
2558out_free_caches:
2559 free(caches);
2560 return -1;
2561}
2562
Jin Yao60115182017-12-08 21:13:41 +08002563static int process_sample_time(struct feat_fd *ff, void *data __maybe_unused)
2564{
2565 struct perf_session *session;
2566 u64 first_sample_time, last_sample_time;
2567 int ret;
2568
2569 session = container_of(ff->ph, struct perf_session, header);
2570
2571 ret = do_read_u64(ff, &first_sample_time);
2572 if (ret)
2573 return -1;
2574
2575 ret = do_read_u64(ff, &last_sample_time);
2576 if (ret)
2577 return -1;
2578
2579 session->evlist->first_sample_time = first_sample_time;
2580 session->evlist->last_sample_time = last_sample_time;
2581 return 0;
2582}
2583
Jiri Olsae2091ce2018-03-07 16:50:08 +01002584static int process_mem_topology(struct feat_fd *ff,
2585 void *data __maybe_unused)
2586{
2587 struct memory_node *nodes;
2588 u64 version, i, nr, bsize;
2589 int ret = -1;
2590
2591 if (do_read_u64(ff, &version))
2592 return -1;
2593
2594 if (version != 1)
2595 return -1;
2596
2597 if (do_read_u64(ff, &bsize))
2598 return -1;
2599
2600 if (do_read_u64(ff, &nr))
2601 return -1;
2602
2603 nodes = zalloc(sizeof(*nodes) * nr);
2604 if (!nodes)
2605 return -1;
2606
2607 for (i = 0; i < nr; i++) {
2608 struct memory_node n;
2609
2610 #define _R(v) \
2611 if (do_read_u64(ff, &n.v)) \
2612 goto out; \
2613
2614 _R(node)
2615 _R(size)
2616
2617 #undef _R
2618
2619 if (do_read_bitmap(ff, &n.set, &n.size))
2620 goto out;
2621
2622 nodes[i] = n;
2623 }
2624
2625 ff->ph->env.memory_bsize = bsize;
2626 ff->ph->env.memory_nodes = nodes;
2627 ff->ph->env.nr_memory_nodes = nr;
2628 ret = 0;
2629
2630out:
2631 if (ret)
2632 free(nodes);
2633 return ret;
2634}
2635
Alexey Budankovcf790512018-10-09 17:36:24 +03002636static int process_clockid(struct feat_fd *ff,
2637 void *data __maybe_unused)
2638{
2639 if (do_read_u64(ff, &ff->ph->env.clockid_res_ns))
2640 return -1;
2641
2642 return 0;
2643}
2644
Jiri Olsa258031c2019-03-08 14:47:39 +01002645static int process_dir_format(struct feat_fd *ff,
2646 void *_data __maybe_unused)
2647{
2648 struct perf_session *session;
2649 struct perf_data *data;
2650
2651 session = container_of(ff->ph, struct perf_session, header);
2652 data = session->data;
2653
2654 if (WARN_ON(!perf_data__is_dir(data)))
2655 return -1;
2656
2657 return do_read_u64(ff, &data->dir.version);
2658}
2659
Song Liu606f9722019-03-11 22:30:43 -07002660#ifdef HAVE_LIBBPF_SUPPORT
2661static int process_bpf_prog_info(struct feat_fd *ff, void *data __maybe_unused)
2662{
2663 struct bpf_prog_info_linear *info_linear;
2664 struct bpf_prog_info_node *info_node;
2665 struct perf_env *env = &ff->ph->env;
2666 u32 count, i;
2667 int err = -1;
2668
2669 if (ff->ph->needs_swap) {
2670 pr_warning("interpreting bpf_prog_info from systems with endianity is not yet supported\n");
2671 return 0;
2672 }
2673
2674 if (do_read_u32(ff, &count))
2675 return -1;
2676
2677 down_write(&env->bpf_progs.lock);
2678
2679 for (i = 0; i < count; ++i) {
2680 u32 info_len, data_len;
2681
2682 info_linear = NULL;
2683 info_node = NULL;
2684 if (do_read_u32(ff, &info_len))
2685 goto out;
2686 if (do_read_u32(ff, &data_len))
2687 goto out;
2688
2689 if (info_len > sizeof(struct bpf_prog_info)) {
2690 pr_warning("detected invalid bpf_prog_info\n");
2691 goto out;
2692 }
2693
2694 info_linear = malloc(sizeof(struct bpf_prog_info_linear) +
2695 data_len);
2696 if (!info_linear)
2697 goto out;
2698 info_linear->info_len = sizeof(struct bpf_prog_info);
2699 info_linear->data_len = data_len;
2700 if (do_read_u64(ff, (u64 *)(&info_linear->arrays)))
2701 goto out;
2702 if (__do_read(ff, &info_linear->info, info_len))
2703 goto out;
2704 if (info_len < sizeof(struct bpf_prog_info))
2705 memset(((void *)(&info_linear->info)) + info_len, 0,
2706 sizeof(struct bpf_prog_info) - info_len);
2707
2708 if (__do_read(ff, info_linear->data, data_len))
2709 goto out;
2710
2711 info_node = malloc(sizeof(struct bpf_prog_info_node));
2712 if (!info_node)
2713 goto out;
2714
2715 /* after reading from file, translate offset to address */
2716 bpf_program__bpil_offs_to_addr(info_linear);
2717 info_node->info_linear = info_linear;
2718 perf_env__insert_bpf_prog_info(env, info_node);
2719 }
2720
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002721 up_write(&env->bpf_progs.lock);
Song Liu606f9722019-03-11 22:30:43 -07002722 return 0;
2723out:
2724 free(info_linear);
2725 free(info_node);
2726 up_write(&env->bpf_progs.lock);
2727 return err;
2728}
2729#else // HAVE_LIBBPF_SUPPORT
2730static int process_bpf_prog_info(struct feat_fd *ff __maybe_unused, void *data __maybe_unused)
2731{
2732 return 0;
2733}
2734#endif // HAVE_LIBBPF_SUPPORT
2735
Song Liua70a112312019-03-11 22:30:45 -07002736static int process_bpf_btf(struct feat_fd *ff, void *data __maybe_unused)
2737{
2738 struct perf_env *env = &ff->ph->env;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002739 struct btf_node *node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002740 u32 count, i;
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002741 int err = -1;
Song Liua70a112312019-03-11 22:30:45 -07002742
2743 if (ff->ph->needs_swap) {
2744 pr_warning("interpreting btf from systems with endianity is not yet supported\n");
2745 return 0;
2746 }
2747
2748 if (do_read_u32(ff, &count))
2749 return -1;
2750
2751 down_write(&env->bpf_progs.lock);
2752
2753 for (i = 0; i < count; ++i) {
Song Liua70a112312019-03-11 22:30:45 -07002754 u32 id, data_size;
2755
2756 if (do_read_u32(ff, &id))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002757 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002758 if (do_read_u32(ff, &data_size))
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002759 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002760
2761 node = malloc(sizeof(struct btf_node) + data_size);
2762 if (!node)
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002763 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002764
2765 node->id = id;
2766 node->data_size = data_size;
2767
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002768 if (__do_read(ff, node->data, data_size))
2769 goto out;
Song Liua70a112312019-03-11 22:30:45 -07002770
2771 perf_env__insert_btf(env, node);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002772 node = NULL;
Song Liua70a112312019-03-11 22:30:45 -07002773 }
2774
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002775 err = 0;
2776out:
Song Liua70a112312019-03-11 22:30:45 -07002777 up_write(&env->bpf_progs.lock);
Gustavo A. R. Silva14c9b312019-04-08 12:33:55 -05002778 free(node);
2779 return err;
Song Liua70a112312019-03-11 22:30:45 -07002780}
2781
Alexey Budankov42e1fd82019-03-18 20:41:33 +03002782static int process_compressed(struct feat_fd *ff,
2783 void *data __maybe_unused)
2784{
2785 if (do_read_u32(ff, &(ff->ph->env.comp_ver)))
2786 return -1;
2787
2788 if (do_read_u32(ff, &(ff->ph->env.comp_type)))
2789 return -1;
2790
2791 if (do_read_u32(ff, &(ff->ph->env.comp_level)))
2792 return -1;
2793
2794 if (do_read_u32(ff, &(ff->ph->env.comp_ratio)))
2795 return -1;
2796
2797 if (do_read_u32(ff, &(ff->ph->env.comp_mmap_len)))
2798 return -1;
2799
2800 return 0;
2801}
2802
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002803struct feature_ops {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002804 int (*write)(struct feat_fd *ff, struct perf_evlist *evlist);
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002805 void (*print)(struct feat_fd *ff, FILE *fp);
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002806 int (*process)(struct feat_fd *ff, void *data);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002807 const char *name;
2808 bool full_only;
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002809 bool synthesize;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002810};
2811
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002812#define FEAT_OPR(n, func, __full_only) \
2813 [HEADER_##n] = { \
2814 .name = __stringify(n), \
2815 .write = write_##func, \
2816 .print = print_##func, \
2817 .full_only = __full_only, \
2818 .process = process_##func, \
2819 .synthesize = true \
2820 }
2821
2822#define FEAT_OPN(n, func, __full_only) \
2823 [HEADER_##n] = { \
2824 .name = __stringify(n), \
2825 .write = write_##func, \
2826 .print = print_##func, \
2827 .full_only = __full_only, \
2828 .process = process_##func \
2829 }
Robert Richter8cdfa782011-12-07 10:02:56 +01002830
2831/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002832#define print_tracing_data NULL
2833#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002834
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002835#define process_branch_stack NULL
2836#define process_stat NULL
2837
2838
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002839static const struct feature_ops feat_ops[HEADER_LAST_FEATURE] = {
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002840 FEAT_OPN(TRACING_DATA, tracing_data, false),
2841 FEAT_OPN(BUILD_ID, build_id, false),
2842 FEAT_OPR(HOSTNAME, hostname, false),
2843 FEAT_OPR(OSRELEASE, osrelease, false),
2844 FEAT_OPR(VERSION, version, false),
2845 FEAT_OPR(ARCH, arch, false),
2846 FEAT_OPR(NRCPUS, nrcpus, false),
2847 FEAT_OPR(CPUDESC, cpudesc, false),
2848 FEAT_OPR(CPUID, cpuid, false),
2849 FEAT_OPR(TOTAL_MEM, total_mem, false),
2850 FEAT_OPR(EVENT_DESC, event_desc, false),
2851 FEAT_OPR(CMDLINE, cmdline, false),
2852 FEAT_OPR(CPU_TOPOLOGY, cpu_topology, true),
2853 FEAT_OPR(NUMA_TOPOLOGY, numa_topology, true),
2854 FEAT_OPN(BRANCH_STACK, branch_stack, false),
2855 FEAT_OPR(PMU_MAPPINGS, pmu_mappings, false),
Jiri Olsae8fedff2018-07-12 15:52:02 +02002856 FEAT_OPR(GROUP_DESC, group_desc, false),
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002857 FEAT_OPN(AUXTRACE, auxtrace, false),
2858 FEAT_OPN(STAT, stat, false),
2859 FEAT_OPN(CACHE, cache, true),
Jin Yao60115182017-12-08 21:13:41 +08002860 FEAT_OPR(SAMPLE_TIME, sample_time, false),
Jiri Olsae2091ce2018-03-07 16:50:08 +01002861 FEAT_OPR(MEM_TOPOLOGY, mem_topology, true),
Jiri Olsa258031c2019-03-08 14:47:39 +01002862 FEAT_OPR(CLOCKID, clockid, false),
Song Liu606f9722019-03-11 22:30:43 -07002863 FEAT_OPN(DIR_FORMAT, dir_format, false),
Song Liua70a112312019-03-11 22:30:45 -07002864 FEAT_OPR(BPF_PROG_INFO, bpf_prog_info, false),
2865 FEAT_OPR(BPF_BTF, bpf_btf, false),
Alexey Budankov42e1fd82019-03-18 20:41:33 +03002866 FEAT_OPR(COMPRESSED, compressed, false),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002867};
2868
2869struct header_print_data {
2870 FILE *fp;
2871 bool full; /* extended list of headers */
2872};
2873
2874static int perf_file_section__fprintf_info(struct perf_file_section *section,
2875 struct perf_header *ph,
2876 int feat, int fd, void *data)
2877{
2878 struct header_print_data *hd = data;
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002879 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002880
2881 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
2882 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
2883 "%d, continuing...\n", section->offset, feat);
2884 return 0;
2885 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002886 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002887 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01002888 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002889 }
2890 if (!feat_ops[feat].print)
2891 return 0;
2892
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002893 ff = (struct feat_fd) {
2894 .fd = fd,
2895 .ph = ph,
2896 };
2897
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002898 if (!feat_ops[feat].full_only || hd->full)
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002899 feat_ops[feat].print(&ff, hd->fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002900 else
2901 fprintf(hd->fp, "# %s info available, use -I to display\n",
2902 feat_ops[feat].name);
2903
2904 return 0;
2905}
2906
2907int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
2908{
2909 struct header_print_data hd;
2910 struct perf_header *header = &session->header;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002911 int fd = perf_data__fd(session->data);
Jiri Olsaf45f5612016-10-10 09:03:07 +02002912 struct stat st;
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03002913 time_t stctime;
Jiri Olsaaabae162016-10-10 09:35:50 +02002914 int ret, bit;
Jiri Olsaf45f5612016-10-10 09:03:07 +02002915
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002916 hd.fp = fp;
2917 hd.full = full;
2918
Jiri Olsaf45f5612016-10-10 09:03:07 +02002919 ret = fstat(fd, &st);
2920 if (ret == -1)
2921 return -1;
2922
Arnaldo Carvalho de Melo0afcf292018-12-11 16:11:54 -03002923 stctime = st.st_ctime;
2924 fprintf(fp, "# captured on : %s", ctime(&stctime));
Jiri Olsae971a5a2018-03-07 16:50:03 +01002925
2926 fprintf(fp, "# header version : %u\n", header->version);
2927 fprintf(fp, "# data offset : %" PRIu64 "\n", header->data_offset);
2928 fprintf(fp, "# data size : %" PRIu64 "\n", header->data_size);
2929 fprintf(fp, "# feat offset : %" PRIu64 "\n", header->feat_offset);
Jiri Olsaf45f5612016-10-10 09:03:07 +02002930
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002931 perf_header__process_sections(header, fd, &hd,
2932 perf_file_section__fprintf_info);
Jiri Olsaaabae162016-10-10 09:35:50 +02002933
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01002934 if (session->data->is_pipe)
David Carrillo-Cisnerosc9d1c932017-04-10 13:14:32 -07002935 return 0;
2936
Jiri Olsaaabae162016-10-10 09:35:50 +02002937 fprintf(fp, "# missing features: ");
2938 for_each_clear_bit(bit, header->adds_features, HEADER_LAST_FEATURE) {
2939 if (bit)
2940 fprintf(fp, "%s ", feat_ops[bit].name);
2941 }
2942
2943 fprintf(fp, "\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002944 return 0;
2945}
2946
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002947static int do_write_feat(struct feat_fd *ff, int type,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002948 struct perf_file_section **p,
2949 struct perf_evlist *evlist)
2950{
2951 int err;
2952 int ret = 0;
2953
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002954 if (perf_header__has_feat(ff->ph, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002955 if (!feat_ops[type].write)
2956 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002957
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -07002958 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
2959 return -1;
2960
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002961 (*p)->offset = lseek(ff->fd, 0, SEEK_CUR);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002962
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002963 err = feat_ops[type].write(ff, evlist);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002964 if (err < 0) {
Jiri Olsa0c2aff42016-10-10 09:38:02 +02002965 pr_debug("failed to write feature %s\n", feat_ops[type].name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002966
2967 /* undo anything written */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002968 lseek(ff->fd, (*p)->offset, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002969
2970 return -1;
2971 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002972 (*p)->size = lseek(ff->fd, 0, SEEK_CUR) - (*p)->offset;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002973 (*p)++;
2974 }
2975 return ret;
2976}
2977
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002978static int perf_header__adds_write(struct perf_header *header,
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002979 struct perf_evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002980{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002981 int nr_sections;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002982 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002983 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002984 int sec_size;
2985 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002986 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002987 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002988
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002989 ff = (struct feat_fd){
2990 .fd = fd,
2991 .ph = header,
2992 };
2993
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002994 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002995 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002996 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002997
Paul Gortmaker91b98802013-01-30 20:05:49 -05002998 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002999 if (feat_sec == NULL)
3000 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003001
3002 sec_size = sizeof(*feat_sec) * nr_sections;
3003
Jiri Olsa8d541e92013-07-17 19:49:44 +02003004 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08003005 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003006
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003007 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003008 if (do_write_feat(&ff, feat, &p, evlist))
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003009 perf_header__clear_feat(header, feat);
3010 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003011
Xiao Guangrongf887f302010-02-04 16:46:42 +08003012 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003013 /*
3014 * may write more than needed due to dropped feature, but
Ingo Molnaradba1632018-12-03 11:22:00 +01003015 * this is okay, reader will skip the missing entries
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003016 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003017 err = do_write(&ff, feat_sec, sec_size);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003018 if (err < 0)
3019 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003020 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003021 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003022}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003023
Tom Zanussi8dc58102010-04-01 23:59:15 -05003024int perf_header__write_pipe(int fd)
3025{
3026 struct perf_pipe_file_header f_header;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003027 struct feat_fd ff;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003028 int err;
3029
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003030 ff = (struct feat_fd){ .fd = fd };
3031
Tom Zanussi8dc58102010-04-01 23:59:15 -05003032 f_header = (struct perf_pipe_file_header){
3033 .magic = PERF_MAGIC,
3034 .size = sizeof(f_header),
3035 };
3036
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003037 err = do_write(&ff, &f_header, sizeof(f_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05003038 if (err < 0) {
3039 pr_debug("failed to write perf pipe header\n");
3040 return err;
3041 }
3042
3043 return 0;
3044}
3045
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003046int perf_session__write_header(struct perf_session *session,
3047 struct perf_evlist *evlist,
3048 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003049{
3050 struct perf_file_header f_header;
3051 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003052 struct perf_header *header = &session->header;
Jiri Olsa563aecb2013-06-05 13:35:06 +02003053 struct perf_evsel *evsel;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003054 struct feat_fd ff;
Jiri Olsa944d62b2013-07-17 19:49:43 +02003055 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003056 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003057
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003058 ff = (struct feat_fd){ .fd = fd};
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003059 lseek(fd, sizeof(f_header), SEEK_SET);
3060
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003061 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003062 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003063 err = do_write(&ff, evsel->id, evsel->ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003064 if (err < 0) {
3065 pr_debug("failed to write perf header\n");
3066 return err;
3067 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003068 }
3069
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003070 attr_offset = lseek(ff.fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003071
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003072 evlist__for_each_entry(evlist, evsel) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003073 f_attr = (struct perf_file_attr){
Robert Richter6606f872012-08-16 21:10:19 +02003074 .attr = evsel->attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003075 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02003076 .offset = evsel->id_offset,
3077 .size = evsel->ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003078 }
3079 };
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003080 err = do_write(&ff, &f_attr, sizeof(f_attr));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003081 if (err < 0) {
3082 pr_debug("failed to write perf header attribute\n");
3083 return err;
3084 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003085 }
3086
Adrian Hunterd645c442013-12-11 14:36:28 +02003087 if (!header->data_offset)
3088 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02003089 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003090
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003091 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003092 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003093 if (err < 0)
3094 return err;
3095 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003096
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003097 f_header = (struct perf_file_header){
3098 .magic = PERF_MAGIC,
3099 .size = sizeof(f_header),
3100 .attr_size = sizeof(f_attr),
3101 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02003102 .offset = attr_offset,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003103 .size = evlist->nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003104 },
3105 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003106 .offset = header->data_offset,
3107 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003108 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02003109 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003110 };
3111
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003112 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003113
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003114 lseek(fd, 0, SEEK_SET);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003115 err = do_write(&ff, &f_header, sizeof(f_header));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003116 if (err < 0) {
3117 pr_debug("failed to write perf header\n");
3118 return err;
3119 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003120 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003121
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02003122 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003123}
3124
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003125static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003126 int fd, void *buf, size_t size)
3127{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02003128 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003129 return -1;
3130
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003131 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003132 mem_bswap_64(buf, size);
3133
3134 return 0;
3135}
3136
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003137int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003138 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003139 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003140 struct perf_header *ph,
3141 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003142{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003143 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003144 int nr_sections;
3145 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003146 int feat;
3147 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003148
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003149 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003150 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003151 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003152
Paul Gortmaker91b98802013-01-30 20:05:49 -05003153 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003154 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003155 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003156
3157 sec_size = sizeof(*feat_sec) * nr_sections;
3158
Jiri Olsa8d541e92013-07-17 19:49:44 +02003159 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003160
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003161 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
3162 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003163 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003164
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003165 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
3166 err = process(sec++, header, feat, fd, data);
3167 if (err < 0)
3168 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003169 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003170 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003171out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01003172 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003173 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003174}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02003175
Stephane Eranian114382a2012-02-09 23:21:08 +01003176static const int attr_file_abi_sizes[] = {
3177 [0] = PERF_ATTR_SIZE_VER0,
3178 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02003179 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02003180 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02003181 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01003182 0,
3183};
3184
3185/*
3186 * In the legacy file format, the magic number is not used to encode endianness.
3187 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
3188 * on ABI revisions, we need to try all combinations for all endianness to
3189 * detect the endianness.
3190 */
3191static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
3192{
3193 uint64_t ref_size, attr_size;
3194 int i;
3195
3196 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
3197 ref_size = attr_file_abi_sizes[i]
3198 + sizeof(struct perf_file_section);
3199 if (hdr_sz != ref_size) {
3200 attr_size = bswap_64(hdr_sz);
3201 if (attr_size != ref_size)
3202 continue;
3203
3204 ph->needs_swap = true;
3205 }
3206 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
3207 i,
3208 ph->needs_swap);
3209 return 0;
3210 }
3211 /* could not determine endianness */
3212 return -1;
3213}
3214
3215#define PERF_PIPE_HDR_VER0 16
3216
3217static const size_t attr_pipe_abi_sizes[] = {
3218 [0] = PERF_PIPE_HDR_VER0,
3219 0,
3220};
3221
3222/*
3223 * In the legacy pipe format, there is an implicit assumption that endiannesss
3224 * between host recording the samples, and host parsing the samples is the
3225 * same. This is not always the case given that the pipe output may always be
3226 * redirected into a file and analyzed on a different machine with possibly a
3227 * different endianness and perf_event ABI revsions in the perf tool itself.
3228 */
3229static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
3230{
3231 u64 attr_size;
3232 int i;
3233
3234 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
3235 if (hdr_sz != attr_pipe_abi_sizes[i]) {
3236 attr_size = bswap_64(hdr_sz);
3237 if (attr_size != hdr_sz)
3238 continue;
3239
3240 ph->needs_swap = true;
3241 }
3242 pr_debug("Pipe ABI%d perf.data file detected\n", i);
3243 return 0;
3244 }
3245 return -1;
3246}
3247
Feng Tange84ba4e2012-10-30 11:56:07 +08003248bool is_perf_magic(u64 magic)
3249{
3250 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
3251 || magic == __perf_magic2
3252 || magic == __perf_magic2_sw)
3253 return true;
3254
3255 return false;
3256}
3257
Stephane Eranian114382a2012-02-09 23:21:08 +01003258static int check_magic_endian(u64 magic, uint64_t hdr_sz,
3259 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01003260{
3261 int ret;
3262
3263 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01003264 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01003265 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02003266 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01003267 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01003268 if (is_pipe)
3269 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003270
Stephane Eranian114382a2012-02-09 23:21:08 +01003271 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01003272 }
Stephane Eranian114382a2012-02-09 23:21:08 +01003273 /*
3274 * the new magic number serves two purposes:
3275 * - unique number to identify actual perf.data files
3276 * - encode endianness of file
3277 */
Namhyung Kimf7913972015-01-29 17:06:45 +09003278 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01003279
Stephane Eranian114382a2012-02-09 23:21:08 +01003280 /* check magic number with one endianness */
3281 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01003282 return 0;
3283
Stephane Eranian114382a2012-02-09 23:21:08 +01003284 /* check magic number with opposite endianness */
3285 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01003286 return -1;
3287
3288 ph->needs_swap = true;
3289
3290 return 0;
3291}
3292
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003293int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003294 struct perf_header *ph, int fd)
3295{
Jiri Olsa727ebd52013-11-28 11:30:14 +01003296 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003297
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003298 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003299
Stephane Eranian73323f52012-02-02 13:54:44 +01003300 ret = readn(fd, header, sizeof(*header));
3301 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003302 return -1;
3303
Stephane Eranian114382a2012-02-09 23:21:08 +01003304 if (check_magic_endian(header->magic,
3305 header->attr_size, false, ph) < 0) {
3306 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01003307 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003308 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003309
Stephane Eranian73323f52012-02-02 13:54:44 +01003310 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003311 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01003312 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003313 }
3314
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003315 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003316 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003317 if (header->size == offsetof(typeof(*header), adds_features))
3318 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003319 else
3320 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06003321 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06003322 /*
3323 * feature bitmap is declared as an array of unsigned longs --
3324 * not good since its size can differ between the host that
3325 * generated the data file and the host analyzing the file.
3326 *
3327 * We need to handle endianness, but we don't know the size of
3328 * the unsigned long where the file was generated. Take a best
3329 * guess at determining it: try 64-bit swap first (ie., file
3330 * created on a 64-bit host), and check if the hostname feature
3331 * bit is set (this feature bit is forced on as of fbe96f2).
3332 * If the bit is not, undo the 64-bit swap and try a 32-bit
3333 * swap. If the hostname bit is still not set (e.g., older data
3334 * file), punt and fallback to the original behavior --
3335 * clearing all feature bits and setting buildid.
3336 */
David Ahern80c01202012-06-08 11:47:51 -03003337 mem_bswap_64(&header->adds_features,
3338 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003339
3340 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03003341 /* unswap as u64 */
3342 mem_bswap_64(&header->adds_features,
3343 BITS_TO_U64(HEADER_FEAT_BITS));
3344
3345 /* unswap as u32 */
3346 mem_bswap_32(&header->adds_features,
3347 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06003348 }
3349
3350 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
3351 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
3352 set_bit(HEADER_BUILD_ID, header->adds_features);
3353 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003354 }
3355
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003356 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003357 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003358
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003359 ph->data_offset = header->data.offset;
3360 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02003361 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003362 return 0;
3363}
3364
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003365static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003366 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003367 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003368{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003369 struct feat_fd fdd = {
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003370 .fd = fd,
3371 .ph = ph,
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003372 .size = section->size,
3373 .offset = section->offset,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07003374 };
3375
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003376 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02003377 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003378 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003379 return 0;
3380 }
3381
Robert Richterb1e5a9b2011-12-07 10:02:57 +01003382 if (feat >= HEADER_LAST_FEATURE) {
3383 pr_debug("unknown feature %d, continuing...\n", feat);
3384 return 0;
3385 }
3386
Robert Richterf1c67db2012-02-10 15:41:56 +01003387 if (!feat_ops[feat].process)
3388 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003389
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07003390 return feat_ops[feat].process(&fdd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02003391}
3392
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003393static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Tom Zanussi454c4072010-05-01 01:41:20 -05003394 struct perf_header *ph, int fd,
3395 bool repipe)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003396{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003397 struct feat_fd ff = {
3398 .fd = STDOUT_FILENO,
3399 .ph = ph,
3400 };
Jiri Olsa727ebd52013-11-28 11:30:14 +01003401 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01003402
3403 ret = readn(fd, header, sizeof(*header));
3404 if (ret <= 0)
3405 return -1;
3406
Stephane Eranian114382a2012-02-09 23:21:08 +01003407 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
3408 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05003409 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01003410 }
3411
3412 if (ph->needs_swap)
3413 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003414
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003415 if (repipe && do_write(&ff, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05003416 return -1;
3417
Tom Zanussi8dc58102010-04-01 23:59:15 -05003418 return 0;
3419}
3420
Jiri Olsad4339562013-07-17 19:49:41 +02003421static int perf_header__read_pipe(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003422{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003423 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05003424 struct perf_pipe_file_header f_header;
3425
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003426 if (perf_file_header__read_pipe(&f_header, header,
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003427 perf_data__fd(session->data),
Tom Zanussi454c4072010-05-01 01:41:20 -05003428 session->repipe) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05003429 pr_debug("incompatible file format\n");
3430 return -EINVAL;
3431 }
3432
Tom Zanussi8dc58102010-04-01 23:59:15 -05003433 return 0;
3434}
3435
Stephane Eranian69996df2012-02-09 23:21:06 +01003436static int read_attr(int fd, struct perf_header *ph,
3437 struct perf_file_attr *f_attr)
3438{
3439 struct perf_event_attr *attr = &f_attr->attr;
3440 size_t sz, left;
3441 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01003442 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01003443
3444 memset(f_attr, 0, sizeof(*f_attr));
3445
3446 /* read minimal guaranteed structure */
3447 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
3448 if (ret <= 0) {
3449 pr_debug("cannot read %d bytes of header attr\n",
3450 PERF_ATTR_SIZE_VER0);
3451 return -1;
3452 }
3453
3454 /* on file perf_event_attr size */
3455 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01003456
Stephane Eranian69996df2012-02-09 23:21:06 +01003457 if (ph->needs_swap)
3458 sz = bswap_32(sz);
3459
3460 if (sz == 0) {
3461 /* assume ABI0 */
3462 sz = PERF_ATTR_SIZE_VER0;
3463 } else if (sz > our_sz) {
3464 pr_debug("file uses a more recent and unsupported ABI"
3465 " (%zu bytes extra)\n", sz - our_sz);
3466 return -1;
3467 }
3468 /* what we have not yet read and that we know about */
3469 left = sz - PERF_ATTR_SIZE_VER0;
3470 if (left) {
3471 void *ptr = attr;
3472 ptr += PERF_ATTR_SIZE_VER0;
3473
3474 ret = readn(fd, ptr, left);
3475 }
3476 /* read perf_file_section, ids are read in caller */
3477 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
3478
3479 return ret <= 0 ? -1 : 0;
3480}
3481
Namhyung Kim831394b2012-09-06 11:10:46 +09003482static int perf_evsel__prepare_tracepoint_event(struct perf_evsel *evsel,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003483 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003484{
Tzvetomir Stoyanov97fbf3f2018-11-30 10:44:07 -05003485 struct tep_event *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003486 char bf[128];
3487
Namhyung Kim831394b2012-09-06 11:10:46 +09003488 /* already prepared */
3489 if (evsel->tp_format)
3490 return 0;
3491
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09003492 if (pevent == NULL) {
3493 pr_debug("broken or missing trace data\n");
3494 return -1;
3495 }
3496
Tzvetomir Stoyanov (VMware)af85cd12018-08-08 14:02:50 -04003497 event = tep_find_event(pevent, evsel->attr.config);
Namhyung Kima7619ae2013-04-18 21:24:16 +09003498 if (event == NULL) {
3499 pr_debug("cannot find event format for %d\n", (int)evsel->attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003500 return -1;
Namhyung Kima7619ae2013-04-18 21:24:16 +09003501 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003502
Namhyung Kim831394b2012-09-06 11:10:46 +09003503 if (!evsel->name) {
3504 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
3505 evsel->name = strdup(bf);
3506 if (evsel->name == NULL)
3507 return -1;
3508 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003509
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03003510 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003511 return 0;
3512}
3513
Namhyung Kim831394b2012-09-06 11:10:46 +09003514static int perf_evlist__prepare_tracepoint_events(struct perf_evlist *evlist,
Tzvetomir Stoyanov (VMware)096177a2018-08-08 14:02:46 -04003515 struct tep_handle *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003516{
3517 struct perf_evsel *pos;
3518
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003519 evlist__for_each_entry(evlist, pos) {
Namhyung Kim831394b2012-09-06 11:10:46 +09003520 if (pos->attr.type == PERF_TYPE_TRACEPOINT &&
3521 perf_evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003522 return -1;
3523 }
3524
3525 return 0;
3526}
3527
Jiri Olsad4339562013-07-17 19:49:41 +02003528int perf_session__read_header(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05003529{
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003530 struct perf_data *data = session->data;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003531 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003532 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003533 struct perf_file_attr f_attr;
3534 u64 f_id;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003535 int nr_attrs, nr_ids, i, j;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003536 int fd = perf_data__fd(data);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003537
Namhyung Kim334fe7a2013-03-11 16:43:12 +09003538 session->evlist = perf_evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003539 if (session->evlist == NULL)
3540 return -ENOMEM;
3541
Kan Liang2c071442015-08-28 05:48:05 -04003542 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03003543 session->machines.host.env = &header->env;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01003544 if (perf_data__is_pipe(data))
Jiri Olsad4339562013-07-17 19:49:41 +02003545 return perf_header__read_pipe(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05003546
Stephane Eranian69996df2012-02-09 23:21:06 +01003547 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003548 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003549
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003550 /*
3551 * Sanity check that perf.data was written cleanly; data size is
3552 * initialized to 0 and updated only if the on_exit function is run.
3553 * If data size is still 0 then the file contains only partial
3554 * information. Just warn user and process it as much as it can.
3555 */
3556 if (f_header.data.size == 0) {
3557 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
3558 "Was the 'perf record' command properly terminated?\n",
Jiri Olsaeae8ad82017-01-23 22:25:41 +01003559 data->file.path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09003560 }
3561
Vince Weaver76222362019-07-23 11:06:01 -04003562 if (f_header.attr_size == 0) {
3563 pr_err("ERROR: The %s file's attr size field is 0 which is unexpected.\n"
3564 "Was the 'perf record' command properly terminated?\n",
3565 data->file.path);
3566 return -EINVAL;
3567 }
3568
Stephane Eranian69996df2012-02-09 23:21:06 +01003569 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003570 lseek(fd, f_header.attrs.offset, SEEK_SET);
3571
3572 for (i = 0; i < nr_attrs; i++) {
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003573 struct perf_evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003574 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003575
Stephane Eranian69996df2012-02-09 23:21:06 +01003576 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003577 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003578
David Ahern1060ab82015-04-09 16:15:46 -04003579 if (header->needs_swap) {
3580 f_attr.ids.size = bswap_64(f_attr.ids.size);
3581 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06003582 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04003583 }
David Aherneda39132011-07-15 12:34:09 -06003584
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02003585 tmp = lseek(fd, 0, SEEK_CUR);
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03003586 evsel = perf_evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003587
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003588 if (evsel == NULL)
3589 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03003590
3591 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003592 /*
3593 * Do it before so that if perf_evsel__alloc_id fails, this
3594 * entry gets purged too at perf_evlist__delete().
3595 */
3596 perf_evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003597
3598 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003599 /*
3600 * We don't have the cpu and thread maps on the header, so
3601 * for allocating the perf_sample_id table we fake 1 cpu and
3602 * hattr->ids threads.
3603 */
3604 if (perf_evsel__alloc_id(evsel, 1, nr_ids))
3605 goto out_delete_evlist;
3606
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003607 lseek(fd, f_attr.ids.offset, SEEK_SET);
3608
3609 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03003610 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003611 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003612
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003613 perf_evlist__id_add(session->evlist, evsel, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003614 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02003615
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003616 lseek(fd, tmp, SEEK_SET);
3617 }
3618
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003619 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02003620 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01003621
Namhyung Kim831394b2012-09-06 11:10:46 +09003622 if (perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003623 session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03003624 goto out_delete_evlist;
3625
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02003626 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02003627out_errno:
3628 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003629
3630out_delete_evlist:
3631 perf_evlist__delete(session->evlist);
3632 session->evlist = NULL;
3633 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02003634}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02003635
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003636int perf_event__synthesize_attr(struct perf_tool *tool,
Robert Richterf4d83432012-08-16 21:10:17 +02003637 struct perf_event_attr *attr, u32 ids, u64 *id,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02003638 perf_event__handler_t process)
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02003639{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003640 union perf_event *ev;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003641 size_t size;
3642 int err;
3643
3644 size = sizeof(struct perf_event_attr);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003645 size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003646 size += sizeof(struct perf_event_header);
3647 size += ids * sizeof(u64);
3648
3649 ev = malloc(size);
3650
Chris Samuelce47dc52010-11-13 13:35:06 +11003651 if (ev == NULL)
3652 return -ENOMEM;
3653
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003654 ev->attr.attr = *attr;
3655 memcpy(ev->attr.id, id, ids * sizeof(u64));
3656
3657 ev->attr.header.type = PERF_RECORD_HEADER_ATTR;
Robert Richterf4d83432012-08-16 21:10:17 +02003658 ev->attr.header.size = (u16)size;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003659
Robert Richterf4d83432012-08-16 21:10:17 +02003660 if (ev->attr.header.size == size)
3661 err = process(tool, ev, NULL, NULL);
3662 else
3663 err = -E2BIG;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003664
3665 free(ev);
3666
3667 return err;
3668}
3669
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003670int perf_event__synthesize_features(struct perf_tool *tool,
3671 struct perf_session *session,
3672 struct perf_evlist *evlist,
3673 perf_event__handler_t process)
3674{
3675 struct perf_header *header = &session->header;
3676 struct feat_fd ff;
3677 struct feature_event *fe;
3678 size_t sz, sz_hdr;
3679 int feat, ret;
3680
3681 sz_hdr = sizeof(fe->header);
3682 sz = sizeof(union perf_event);
3683 /* get a nice alignment */
3684 sz = PERF_ALIGN(sz, page_size);
3685
3686 memset(&ff, 0, sizeof(ff));
3687
3688 ff.buf = malloc(sz);
3689 if (!ff.buf)
3690 return -ENOMEM;
3691
3692 ff.size = sz - sz_hdr;
Song Liuc952b352019-06-19 18:04:53 -07003693 ff.ph = &session->header;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003694
3695 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
3696 if (!feat_ops[feat].synthesize) {
3697 pr_debug("No record header feature for header :%d\n", feat);
3698 continue;
3699 }
3700
3701 ff.offset = sizeof(*fe);
3702
3703 ret = feat_ops[feat].write(&ff, evlist);
3704 if (ret || ff.offset <= (ssize_t)sizeof(*fe)) {
3705 pr_debug("Error writing feature\n");
3706 continue;
3707 }
3708 /* ff.buf may have changed due to realloc in do_write() */
3709 fe = ff.buf;
3710 memset(fe, 0, sizeof(*fe));
3711
3712 fe->feat_id = feat;
3713 fe->header.type = PERF_RECORD_HEADER_FEATURE;
3714 fe->header.size = ff.offset;
3715
3716 ret = process(tool, ff.buf, NULL, NULL);
3717 if (ret) {
3718 free(ff.buf);
3719 return ret;
3720 }
3721 }
Jiri Olsa57b5de42018-03-14 10:22:05 +01003722
3723 /* Send HEADER_LAST_FEATURE mark. */
3724 fe = ff.buf;
3725 fe->feat_id = HEADER_LAST_FEATURE;
3726 fe->header.type = PERF_RECORD_HEADER_FEATURE;
3727 fe->header.size = sizeof(*fe);
3728
3729 ret = process(tool, ff.buf, NULL, NULL);
3730
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003731 free(ff.buf);
Jiri Olsa57b5de42018-03-14 10:22:05 +01003732 return ret;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003733}
3734
Jiri Olsa89f16882018-09-13 14:54:03 +02003735int perf_event__process_feature(struct perf_session *session,
3736 union perf_event *event)
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003737{
Jiri Olsa89f16882018-09-13 14:54:03 +02003738 struct perf_tool *tool = session->tool;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003739 struct feat_fd ff = { .fd = 0 };
3740 struct feature_event *fe = (struct feature_event *)event;
3741 int type = fe->header.type;
3742 u64 feat = fe->feat_id;
3743
3744 if (type < 0 || type >= PERF_RECORD_HEADER_MAX) {
3745 pr_warning("invalid record type %d in pipe-mode\n", type);
3746 return 0;
3747 }
Ravi Bangoria92ead7e2018-06-25 18:12:20 +05303748 if (feat == HEADER_RESERVED || feat >= HEADER_LAST_FEATURE) {
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003749 pr_warning("invalid record type %d in pipe-mode\n", type);
3750 return -1;
3751 }
3752
3753 if (!feat_ops[feat].process)
3754 return 0;
3755
3756 ff.buf = (void *)fe->data;
Jiri Olsa79b2fe52019-07-15 16:04:26 +02003757 ff.size = event->header.size - sizeof(*fe);
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07003758 ff.ph = &session->header;
3759
3760 if (feat_ops[feat].process(&ff, NULL))
3761 return -1;
3762
3763 if (!feat_ops[feat].print || !tool->show_feat_hdr)
3764 return 0;
3765
3766 if (!feat_ops[feat].full_only ||
3767 tool->show_feat_hdr >= SHOW_FEAT_HEADER_FULL_INFO) {
3768 feat_ops[feat].print(&ff, stdout);
3769 } else {
3770 fprintf(stdout, "# %s info available, use -I to display\n",
3771 feat_ops[feat].name);
3772 }
3773
3774 return 0;
3775}
3776
Jiri Olsaa6e52812015-10-25 15:51:37 +01003777static struct event_update_event *
3778event_update_event__new(size_t size, u64 type, u64 id)
3779{
3780 struct event_update_event *ev;
3781
3782 size += sizeof(*ev);
3783 size = PERF_ALIGN(size, sizeof(u64));
3784
3785 ev = zalloc(size);
3786 if (ev) {
3787 ev->header.type = PERF_RECORD_EVENT_UPDATE;
3788 ev->header.size = (u16)size;
3789 ev->type = type;
3790 ev->id = id;
3791 }
3792 return ev;
3793}
3794
3795int
3796perf_event__synthesize_event_update_unit(struct perf_tool *tool,
3797 struct perf_evsel *evsel,
3798 perf_event__handler_t process)
3799{
3800 struct event_update_event *ev;
3801 size_t size = strlen(evsel->unit);
3802 int err;
3803
3804 ev = event_update_event__new(size + 1, PERF_EVENT_UPDATE__UNIT, evsel->id[0]);
3805 if (ev == NULL)
3806 return -ENOMEM;
3807
Arnaldo Carvalho de Melo75725882018-12-06 11:02:57 -03003808 strlcpy(ev->data, evsel->unit, size + 1);
Jiri Olsaa6e52812015-10-25 15:51:37 +01003809 err = process(tool, (union perf_event *)ev, NULL, NULL);
3810 free(ev);
3811 return err;
3812}
3813
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003814int
3815perf_event__synthesize_event_update_scale(struct perf_tool *tool,
3816 struct perf_evsel *evsel,
3817 perf_event__handler_t process)
3818{
3819 struct event_update_event *ev;
3820 struct event_update_event_scale *ev_data;
3821 int err;
3822
3823 ev = event_update_event__new(sizeof(*ev_data), PERF_EVENT_UPDATE__SCALE, evsel->id[0]);
3824 if (ev == NULL)
3825 return -ENOMEM;
3826
3827 ev_data = (struct event_update_event_scale *) ev->data;
3828 ev_data->scale = evsel->scale;
3829 err = process(tool, (union perf_event*) ev, NULL, NULL);
3830 free(ev);
3831 return err;
3832}
3833
Jiri Olsa802c9042015-10-25 15:51:39 +01003834int
3835perf_event__synthesize_event_update_name(struct perf_tool *tool,
3836 struct perf_evsel *evsel,
3837 perf_event__handler_t process)
3838{
3839 struct event_update_event *ev;
3840 size_t len = strlen(evsel->name);
3841 int err;
3842
3843 ev = event_update_event__new(len + 1, PERF_EVENT_UPDATE__NAME, evsel->id[0]);
3844 if (ev == NULL)
3845 return -ENOMEM;
3846
Arnaldo Carvalho de Melo5192bde2018-12-06 11:09:46 -03003847 strlcpy(ev->data, evsel->name, len + 1);
Jiri Olsa802c9042015-10-25 15:51:39 +01003848 err = process(tool, (union perf_event*) ev, NULL, NULL);
3849 free(ev);
3850 return err;
3851}
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003852
Jiri Olsa86ebb092015-10-25 15:51:40 +01003853int
3854perf_event__synthesize_event_update_cpus(struct perf_tool *tool,
3855 struct perf_evsel *evsel,
3856 perf_event__handler_t process)
3857{
3858 size_t size = sizeof(struct event_update_event);
3859 struct event_update_event *ev;
3860 int max, err;
3861 u16 type;
3862
3863 if (!evsel->own_cpus)
3864 return 0;
3865
3866 ev = cpu_map_data__alloc(evsel->own_cpus, &size, &type, &max);
3867 if (!ev)
3868 return -ENOMEM;
3869
3870 ev->header.type = PERF_RECORD_EVENT_UPDATE;
3871 ev->header.size = (u16)size;
3872 ev->type = PERF_EVENT_UPDATE__CPUS;
3873 ev->id = evsel->id[0];
3874
3875 cpu_map_data__synthesize((struct cpu_map_data *) ev->data,
3876 evsel->own_cpus,
3877 type, max);
3878
3879 err = process(tool, (union perf_event*) ev, NULL, NULL);
3880 free(ev);
3881 return err;
3882}
3883
Jiri Olsac853f932015-10-25 15:51:41 +01003884size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
3885{
3886 struct event_update_event *ev = &event->event_update;
3887 struct event_update_event_scale *ev_scale;
3888 struct event_update_event_cpus *ev_cpus;
3889 struct cpu_map *map;
3890 size_t ret;
3891
3892 ret = fprintf(fp, "\n... id: %" PRIu64 "\n", ev->id);
3893
3894 switch (ev->type) {
3895 case PERF_EVENT_UPDATE__SCALE:
3896 ev_scale = (struct event_update_event_scale *) ev->data;
3897 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
3898 break;
3899 case PERF_EVENT_UPDATE__UNIT:
3900 ret += fprintf(fp, "... unit: %s\n", ev->data);
3901 break;
3902 case PERF_EVENT_UPDATE__NAME:
3903 ret += fprintf(fp, "... name: %s\n", ev->data);
3904 break;
3905 case PERF_EVENT_UPDATE__CPUS:
3906 ev_cpus = (struct event_update_event_cpus *) ev->data;
3907 ret += fprintf(fp, "... ");
3908
3909 map = cpu_map__new_data(&ev_cpus->cpus);
3910 if (map)
3911 ret += cpu_map__fprintf(map, fp);
3912 else
3913 ret += fprintf(fp, "failed to get cpus\n");
3914 break;
3915 default:
3916 ret += fprintf(fp, "... unknown type\n");
3917 break;
3918 }
3919
3920 return ret;
3921}
Jiri Olsa86ebb092015-10-25 15:51:40 +01003922
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003923int perf_event__synthesize_attrs(struct perf_tool *tool,
Jiri Olsa318ec182018-08-30 08:32:15 +02003924 struct perf_evlist *evlist,
3925 perf_event__handler_t process)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003926{
Robert Richter6606f872012-08-16 21:10:19 +02003927 struct perf_evsel *evsel;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003928 int err = 0;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003929
Jiri Olsa318ec182018-08-30 08:32:15 +02003930 evlist__for_each_entry(evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003931 err = perf_event__synthesize_attr(tool, &evsel->attr, evsel->ids,
3932 evsel->id, process);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003933 if (err) {
3934 pr_debug("failed to create perf header attribute\n");
3935 return err;
3936 }
3937 }
3938
3939 return err;
3940}
3941
Andi Kleenbfd8f722017-11-17 13:42:58 -08003942static bool has_unit(struct perf_evsel *counter)
3943{
3944 return counter->unit && *counter->unit;
3945}
3946
3947static bool has_scale(struct perf_evsel *counter)
3948{
3949 return counter->scale != 1;
3950}
3951
3952int perf_event__synthesize_extra_attr(struct perf_tool *tool,
3953 struct perf_evlist *evsel_list,
3954 perf_event__handler_t process,
3955 bool is_pipe)
3956{
3957 struct perf_evsel *counter;
3958 int err;
3959
3960 /*
3961 * Synthesize other events stuff not carried within
3962 * attr event - unit, scale, name
3963 */
3964 evlist__for_each_entry(evsel_list, counter) {
3965 if (!counter->supported)
3966 continue;
3967
3968 /*
3969 * Synthesize unit and scale only if it's defined.
3970 */
3971 if (has_unit(counter)) {
3972 err = perf_event__synthesize_event_update_unit(tool, counter, process);
3973 if (err < 0) {
3974 pr_err("Couldn't synthesize evsel unit.\n");
3975 return err;
3976 }
3977 }
3978
3979 if (has_scale(counter)) {
3980 err = perf_event__synthesize_event_update_scale(tool, counter, process);
3981 if (err < 0) {
3982 pr_err("Couldn't synthesize evsel counter.\n");
3983 return err;
3984 }
3985 }
3986
3987 if (counter->own_cpus) {
3988 err = perf_event__synthesize_event_update_cpus(tool, counter, process);
3989 if (err < 0) {
3990 pr_err("Couldn't synthesize evsel cpus.\n");
3991 return err;
3992 }
3993 }
3994
3995 /*
3996 * Name is needed only for pipe output,
3997 * perf.data carries event names.
3998 */
3999 if (is_pipe) {
4000 err = perf_event__synthesize_event_update_name(tool, counter, process);
4001 if (err < 0) {
4002 pr_err("Couldn't synthesize evsel name.\n");
4003 return err;
4004 }
4005 }
4006 }
4007 return 0;
4008}
4009
Adrian Hunter47c3d102013-07-04 16:20:21 +03004010int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
4011 union perf_event *event,
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004012 struct perf_evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004013{
Robert Richterf4d83432012-08-16 21:10:17 +02004014 u32 i, ids, n_ids;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004015 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004016 struct perf_evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004017
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004018 if (evlist == NULL) {
Namhyung Kim334fe7a2013-03-11 16:43:12 +09004019 *pevlist = evlist = perf_evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004020 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004021 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004022 }
4023
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03004024 evsel = perf_evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004025 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004026 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004027
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004028 perf_evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004029
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004030 ids = event->header.size;
4031 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004032 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03004033 /*
4034 * We don't have the cpu and thread maps on the header, so
4035 * for allocating the perf_sample_id table we fake 1 cpu and
4036 * hattr->ids threads.
4037 */
4038 if (perf_evsel__alloc_id(evsel, 1, n_ids))
4039 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004040
4041 for (i = 0; i < n_ids; i++) {
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02004042 perf_evlist__id_add(evlist, evsel, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004043 }
4044
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05004045 return 0;
4046}
Tom Zanussicd19a032010-04-01 23:59:20 -05004047
Jiri Olsaffe777252015-10-25 15:51:36 +01004048int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
4049 union perf_event *event,
4050 struct perf_evlist **pevlist)
4051{
4052 struct event_update_event *ev = &event->event_update;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004053 struct event_update_event_scale *ev_scale;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004054 struct event_update_event_cpus *ev_cpus;
Jiri Olsaffe777252015-10-25 15:51:36 +01004055 struct perf_evlist *evlist;
4056 struct perf_evsel *evsel;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004057 struct cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01004058
4059 if (!pevlist || *pevlist == NULL)
4060 return -EINVAL;
4061
4062 evlist = *pevlist;
4063
4064 evsel = perf_evlist__id2evsel(evlist, ev->id);
4065 if (evsel == NULL)
4066 return -EINVAL;
4067
Jiri Olsaa6e52812015-10-25 15:51:37 +01004068 switch (ev->type) {
4069 case PERF_EVENT_UPDATE__UNIT:
4070 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004071 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01004072 case PERF_EVENT_UPDATE__NAME:
4073 evsel->name = strdup(ev->data);
4074 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01004075 case PERF_EVENT_UPDATE__SCALE:
4076 ev_scale = (struct event_update_event_scale *) ev->data;
4077 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melo8434a2e2017-02-08 21:57:22 -03004078 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01004079 case PERF_EVENT_UPDATE__CPUS:
4080 ev_cpus = (struct event_update_event_cpus *) ev->data;
4081
4082 map = cpu_map__new_data(&ev_cpus->cpus);
4083 if (map)
4084 evsel->own_cpus = map;
4085 else
4086 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01004087 default:
4088 break;
4089 }
4090
Jiri Olsaffe777252015-10-25 15:51:36 +01004091 return 0;
4092}
4093
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02004094int perf_event__synthesize_tracing_data(struct perf_tool *tool, int fd,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02004095 struct perf_evlist *evlist,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02004096 perf_event__handler_t process)
Tom Zanussi92155452010-04-01 23:59:21 -05004097{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004098 union perf_event ev;
Jiri Olsa29208e52011-10-20 15:59:43 +02004099 struct tracing_data *tdata;
Tom Zanussi92155452010-04-01 23:59:21 -05004100 ssize_t size = 0, aligned_size = 0, padding;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07004101 struct feat_fd ff;
Irina Tirdea1d037ca2012-09-11 01:15:03 +03004102 int err __maybe_unused = 0;
Tom Zanussi92155452010-04-01 23:59:21 -05004103
Jiri Olsa29208e52011-10-20 15:59:43 +02004104 /*
4105 * We are going to store the size of the data followed
4106 * by the data contents. Since the fd descriptor is a pipe,
4107 * we cannot seek back to store the size of the data once
4108 * we know it. Instead we:
4109 *
4110 * - write the tracing data to the temp file
4111 * - get/write the data size to pipe
4112 * - write the tracing data from the temp file
4113 * to the pipe
4114 */
4115 tdata = tracing_data_get(&evlist->entries, fd, true);
4116 if (!tdata)
4117 return -1;
4118
Tom Zanussi92155452010-04-01 23:59:21 -05004119 memset(&ev, 0, sizeof(ev));
4120
4121 ev.tracing_data.header.type = PERF_RECORD_HEADER_TRACING_DATA;
Jiri Olsa29208e52011-10-20 15:59:43 +02004122 size = tdata->size;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03004123 aligned_size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi92155452010-04-01 23:59:21 -05004124 padding = aligned_size - size;
4125 ev.tracing_data.header.size = sizeof(ev.tracing_data);
4126 ev.tracing_data.size = aligned_size;
4127
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02004128 process(tool, &ev, NULL, NULL);
Tom Zanussi92155452010-04-01 23:59:21 -05004129
Jiri Olsa29208e52011-10-20 15:59:43 +02004130 /*
4131 * The put function will copy all the tracing data
4132 * stored in temp file to the pipe.
4133 */
4134 tracing_data_put(tdata);
4135
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07004136 ff = (struct feat_fd){ .fd = fd };
4137 if (write_padded(&ff, NULL, 0, padding))
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -07004138 return -1;
Tom Zanussi92155452010-04-01 23:59:21 -05004139
4140 return aligned_size;
4141}
4142
Jiri Olsa89f16882018-09-13 14:54:03 +02004143int perf_event__process_tracing_data(struct perf_session *session,
4144 union perf_event *event)
Tom Zanussi92155452010-04-01 23:59:21 -05004145{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004146 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsa8ceb41d2017-01-23 22:07:59 +01004147 int fd = perf_data__fd(session->data);
Jiri Olsacc9784bd2013-10-15 16:27:34 +02004148 off_t offset = lseek(fd, 0, SEEK_CUR);
Tom Zanussi92155452010-04-01 23:59:21 -05004149 char buf[BUFSIZ];
4150
4151 /* setup for reading amidst mmap */
Jiri Olsacc9784bd2013-10-15 16:27:34 +02004152 lseek(fd, offset + sizeof(struct tracing_data_event),
Tom Zanussi92155452010-04-01 23:59:21 -05004153 SEEK_SET);
4154
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004155 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03004156 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03004157 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05004158
Jiri Olsacc9784bd2013-10-15 16:27:34 +02004159 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004160 pr_err("%s: reading input file", __func__);
4161 return -1;
4162 }
Tom Zanussi454c4072010-05-01 01:41:20 -05004163 if (session->repipe) {
4164 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004165 if (retw <= 0 || retw != padding) {
4166 pr_err("%s: repiping tracing data padding", __func__);
4167 return -1;
4168 }
Tom Zanussi454c4072010-05-01 01:41:20 -05004169 }
Tom Zanussi92155452010-04-01 23:59:21 -05004170
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03004171 if (size_read + padding != size) {
4172 pr_err("%s: tracing data size mismatch", __func__);
4173 return -1;
4174 }
Tom Zanussi92155452010-04-01 23:59:21 -05004175
Namhyung Kim831394b2012-09-06 11:10:46 +09004176 perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01004177 session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03004178
Tom Zanussi92155452010-04-01 23:59:21 -05004179 return size_read + padding;
4180}
Tom Zanussic7929e42010-04-01 23:59:22 -05004181
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02004182int perf_event__synthesize_build_id(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02004183 struct dso *pos, u16 misc,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004184 perf_event__handler_t process,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02004185 struct machine *machine)
Tom Zanussic7929e42010-04-01 23:59:22 -05004186{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004187 union perf_event ev;
Tom Zanussic7929e42010-04-01 23:59:22 -05004188 size_t len;
4189 int err = 0;
4190
4191 if (!pos->hit)
4192 return err;
4193
4194 memset(&ev, 0, sizeof(ev));
4195
4196 len = pos->long_name_len + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03004197 len = PERF_ALIGN(len, NAME_ALIGN);
Tom Zanussic7929e42010-04-01 23:59:22 -05004198 memcpy(&ev.build_id.build_id, pos->build_id, sizeof(pos->build_id));
4199 ev.build_id.header.type = PERF_RECORD_HEADER_BUILD_ID;
4200 ev.build_id.header.misc = misc;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03004201 ev.build_id.pid = machine->pid;
Tom Zanussic7929e42010-04-01 23:59:22 -05004202 ev.build_id.header.size = sizeof(ev.build_id) + len;
4203 memcpy(&ev.build_id.filename, pos->long_name, pos->long_name_len);
4204
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02004205 err = process(tool, &ev, NULL, machine);
Tom Zanussic7929e42010-04-01 23:59:22 -05004206
4207 return err;
4208}
4209
Jiri Olsa89f16882018-09-13 14:54:03 +02004210int perf_event__process_build_id(struct perf_session *session,
4211 union perf_event *event)
Tom Zanussic7929e42010-04-01 23:59:22 -05004212{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02004213 __event_process_build_id(&event->build_id,
4214 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08004215 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05004216 return 0;
4217}