blob: 2e6036d3e5847cd7513e03146fbd13eaed6e638b [file] [log] [blame]
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03001#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03002#include <inttypes.h>
Arnaldo Carvalho de Meloa9072bc2011-10-26 12:41:38 -02003#include "util.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>
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -070015#include <linux/stringify.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030016#include <sys/stat.h>
17#include <sys/types.h>
Stephane Eranianfbe96f22011-09-30 15:40:40 +020018#include <sys/utsname.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -030019#include <unistd.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020020
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020021#include "evlist.h"
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -030022#include "evsel.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020023#include "header.h"
Arnaldo Carvalho de Melo98521b32017-04-25 15:45:35 -030024#include "memswap.h"
Frederic Weisbecker03456a12009-10-06 23:36:47 +020025#include "../perf.h"
26#include "trace-event.h"
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -020027#include "session.h"
Frederic Weisbecker8671dab2009-11-11 04:51:03 +010028#include "symbol.h"
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +010029#include "debug.h"
Stephane Eranianfbe96f22011-09-30 15:40:40 +020030#include "cpumap.h"
Robert Richter50a96672012-08-16 21:10:24 +020031#include "pmu.h"
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020032#include "vdso.h"
Namhyung Kima1ae5652012-09-24 17:14:59 +090033#include "strbuf.h"
Jiri Olsaebb296c2012-10-27 23:18:28 +020034#include "build-id.h"
Jiri Olsacc9784bd2013-10-15 16:27:34 +020035#include "data.h"
Jiri Olsa720e98b2016-02-16 16:01:43 +010036#include <api/fs/fs.h>
37#include "asm/bug.h"
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -070038#include "tool.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020039
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030040#include "sane_ctype.h"
41
Stephane Eranian73323f52012-02-02 13:54:44 +010042/*
43 * magic2 = "PERFILE2"
44 * must be a numerical value to let the endianness
45 * determine the memory layout. That way we are able
46 * to detect endianness when reading the perf.data file
47 * back.
48 *
49 * we check for legacy (PERFFILE) format.
50 */
51static const char *__perf_magic1 = "PERFFILE";
52static const u64 __perf_magic2 = 0x32454c4946524550ULL;
53static const u64 __perf_magic2_sw = 0x50455246494c4532ULL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020054
Stephane Eranian73323f52012-02-02 13:54:44 +010055#define PERF_MAGIC __perf_magic2
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020056
Soramichi AKIYAMAd25ed5d2017-01-17 00:22:37 +090057const char perf_version_string[] = PERF_VERSION;
58
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020059struct perf_file_attr {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020060 struct perf_event_attr attr;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020061 struct perf_file_section ids;
62};
63
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -070064struct feat_fd {
65 struct perf_header *ph;
66 int fd;
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -070067 void *buf; /* Either buf != NULL or fd >= 0 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -070068 ssize_t offset;
69 size_t size;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -070070};
71
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030072void perf_header__set_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020073{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030074 set_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020075}
76
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030077void perf_header__clear_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020078{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030079 clear_bit(feat, header->adds_features);
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020080}
81
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030082bool perf_header__has_feat(const struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020083{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030084 return test_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020085}
86
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -070087static int __do_write_fd(struct feat_fd *ff, const void *buf, size_t size)
88{
89 ssize_t ret = writen(ff->fd, buf, size);
90
91 if (ret != (ssize_t)size)
92 return ret < 0 ? (int)ret : -1;
93 return 0;
94}
95
96static int __do_write_buf(struct feat_fd *ff, const void *buf, size_t size)
97{
98 /* struct perf_event_header::size is u16 */
99 const size_t max_size = 0xffff - sizeof(struct perf_event_header);
100 size_t new_size = ff->size;
101 void *addr;
102
103 if (size + ff->offset > max_size)
104 return -E2BIG;
105
106 while (size > (new_size - ff->offset))
107 new_size <<= 1;
108 new_size = min(max_size, new_size);
109
110 if (ff->size < new_size) {
111 addr = realloc(ff->buf, new_size);
112 if (!addr)
113 return -ENOMEM;
114 ff->buf = addr;
115 ff->size = new_size;
116 }
117
118 memcpy(ff->buf + ff->offset, buf, size);
119 ff->offset += size;
120
121 return 0;
122}
123
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700124/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700125int do_write(struct feat_fd *ff, const void *buf, size_t size)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200126{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700127 if (!ff->buf)
128 return __do_write_fd(ff, buf, size);
129 return __do_write_buf(ff, buf, size);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +0200130}
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 write_padded(struct feat_fd *ff, const void *bf,
134 size_t count, size_t count_aligned)
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200135{
136 static const char zero_buf[NAME_ALIGN];
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700137 int err = do_write(ff, bf, count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200138
139 if (!err)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700140 err = do_write(ff, zero_buf, count_aligned - count);
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -0200141
142 return err;
143}
144
Kan Liang2bb00d22015-09-01 09:58:12 -0400145#define string_size(str) \
146 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
147
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -0700148/* Return: 0 if succeded, -ERR if failed. */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700149static int do_write_string(struct feat_fd *ff, const char *str)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200150{
151 u32 len, olen;
152 int ret;
153
154 olen = strlen(str) + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300155 len = PERF_ALIGN(olen, NAME_ALIGN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200156
157 /* write len, incl. \0 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700158 ret = do_write(ff, &len, sizeof(len));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200159 if (ret < 0)
160 return ret;
161
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700162 return write_padded(ff, str, olen, len);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200163}
164
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700165static int __do_read_fd(struct feat_fd *ff, void *addr, ssize_t size)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700166{
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700167 ssize_t ret = readn(ff->fd, addr, size);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700168
169 if (ret != size)
170 return ret < 0 ? (int)ret : -1;
171 return 0;
172}
173
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700174static int __do_read_buf(struct feat_fd *ff, void *addr, ssize_t size)
175{
176 if (size > (ssize_t)ff->size - ff->offset)
177 return -1;
178
179 memcpy(addr, ff->buf + ff->offset, size);
180 ff->offset += size;
181
182 return 0;
183
184}
185
186static int __do_read(struct feat_fd *ff, void *addr, ssize_t size)
187{
188 if (!ff->buf)
189 return __do_read_fd(ff, addr, size);
190 return __do_read_buf(ff, addr, size);
191}
192
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700193static int do_read_u32(struct feat_fd *ff, u32 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700194{
195 int ret;
196
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700197 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700198 if (ret)
199 return ret;
200
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700201 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700202 *addr = bswap_32(*addr);
203 return 0;
204}
205
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700206static int do_read_u64(struct feat_fd *ff, u64 *addr)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700207{
208 int ret;
209
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700210 ret = __do_read(ff, addr, sizeof(*addr));
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700211 if (ret)
212 return ret;
213
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700214 if (ff->ph->needs_swap)
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -0700215 *addr = bswap_64(*addr);
216 return 0;
217}
218
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700219static char *do_read_string(struct feat_fd *ff)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200220{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200221 u32 len;
222 char *buf;
223
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700224 if (do_read_u32(ff, &len))
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200225 return NULL;
226
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200227 buf = malloc(len);
228 if (!buf)
229 return NULL;
230
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -0700231 if (!__do_read(ff, buf, len)) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200232 /*
233 * strings are padded by zeroes
234 * thus the actual strlen of buf
235 * may be less than len
236 */
237 return buf;
238 }
239
240 free(buf);
241 return NULL;
242}
243
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700244static int write_tracing_data(struct feat_fd *ff,
245 struct perf_evlist *evlist)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200246{
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700247 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
248 return -1;
249
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700250 return read_tracing_data(ff->fd, &evlist->entries);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200251}
252
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700253static int write_build_id(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300254 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200255{
256 struct perf_session *session;
257 int err;
258
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700259 session = container_of(ff->ph, struct perf_session, header);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200260
Robert Richtere20960c2011-12-07 10:02:55 +0100261 if (!perf_session__read_build_ids(session, true))
262 return -1;
263
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700264 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
265 return -1;
266
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700267 err = perf_session__write_buildid_table(session, ff);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200268 if (err < 0) {
269 pr_debug("failed to write buildid table\n");
270 return err;
271 }
Namhyung Kim73c5d222014-11-07 22:57:56 +0900272 perf_session__cache_build_ids(session);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200273
274 return 0;
275}
276
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700277static int write_hostname(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300278 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200279{
280 struct utsname uts;
281 int ret;
282
283 ret = uname(&uts);
284 if (ret < 0)
285 return -1;
286
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700287 return do_write_string(ff, uts.nodename);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200288}
289
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700290static int write_osrelease(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300291 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200292{
293 struct utsname uts;
294 int ret;
295
296 ret = uname(&uts);
297 if (ret < 0)
298 return -1;
299
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700300 return do_write_string(ff, uts.release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200301}
302
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700303static int write_arch(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300304 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200305{
306 struct utsname uts;
307 int ret;
308
309 ret = uname(&uts);
310 if (ret < 0)
311 return -1;
312
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700313 return do_write_string(ff, uts.machine);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200314}
315
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700316static int write_version(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300317 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200318{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700319 return do_write_string(ff, perf_version_string);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200320}
321
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700322static int __write_cpudesc(struct feat_fd *ff, const char *cpuinfo_proc)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200323{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200324 FILE *file;
325 char *buf = NULL;
326 char *s, *p;
Wang Nan493c3032014-10-24 09:45:26 +0800327 const char *search = cpuinfo_proc;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200328 size_t len = 0;
329 int ret = -1;
330
331 if (!search)
332 return -1;
333
334 file = fopen("/proc/cpuinfo", "r");
335 if (!file)
336 return -1;
337
338 while (getline(&buf, &len, file) > 0) {
339 ret = strncmp(buf, search, strlen(search));
340 if (!ret)
341 break;
342 }
343
Wang Naned307752014-10-16 11:08:29 +0800344 if (ret) {
345 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200346 goto done;
Wang Naned307752014-10-16 11:08:29 +0800347 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200348
349 s = buf;
350
351 p = strchr(buf, ':');
352 if (p && *(p+1) == ' ' && *(p+2))
353 s = p + 2;
354 p = strchr(s, '\n');
355 if (p)
356 *p = '\0';
357
358 /* squash extra space characters (branding string) */
359 p = s;
360 while (*p) {
361 if (isspace(*p)) {
362 char *r = p + 1;
363 char *q = r;
364 *p = ' ';
365 while (*q && isspace(*q))
366 q++;
367 if (q != (p+1))
368 while ((*r++ = *q++));
369 }
370 p++;
371 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700372 ret = do_write_string(ff, s);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200373done:
374 free(buf);
375 fclose(file);
376 return ret;
377}
378
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700379static int write_cpudesc(struct feat_fd *ff,
Wang Nan493c3032014-10-24 09:45:26 +0800380 struct perf_evlist *evlist __maybe_unused)
381{
382#ifndef CPUINFO_PROC
383#define CPUINFO_PROC {"model name", }
384#endif
385 const char *cpuinfo_procs[] = CPUINFO_PROC;
386 unsigned int i;
387
388 for (i = 0; i < ARRAY_SIZE(cpuinfo_procs); i++) {
389 int ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700390 ret = __write_cpudesc(ff, cpuinfo_procs[i]);
Wang Nan493c3032014-10-24 09:45:26 +0800391 if (ret >= 0)
392 return ret;
393 }
394 return -1;
395}
396
397
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700398static int write_nrcpus(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300399 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200400{
401 long nr;
402 u32 nrc, nra;
403 int ret;
404
Jan Stancekda8a58b2017-02-17 12:10:26 +0100405 nrc = cpu__max_present_cpu();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200406
407 nr = sysconf(_SC_NPROCESSORS_ONLN);
408 if (nr < 0)
409 return -1;
410
411 nra = (u32)(nr & UINT_MAX);
412
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700413 ret = do_write(ff, &nrc, sizeof(nrc));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200414 if (ret < 0)
415 return ret;
416
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700417 return do_write(ff, &nra, sizeof(nra));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200418}
419
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700420static int write_event_desc(struct feat_fd *ff,
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200421 struct perf_evlist *evlist)
422{
Robert Richter6606f872012-08-16 21:10:19 +0200423 struct perf_evsel *evsel;
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900424 u32 nre, nri, sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200425 int ret;
426
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900427 nre = evlist->nr_entries;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200428
429 /*
430 * write number of events
431 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700432 ret = do_write(ff, &nre, sizeof(nre));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200433 if (ret < 0)
434 return ret;
435
436 /*
437 * size of perf_event_attr struct
438 */
Robert Richter6606f872012-08-16 21:10:19 +0200439 sz = (u32)sizeof(evsel->attr);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700440 ret = do_write(ff, &sz, sizeof(sz));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200441 if (ret < 0)
442 return ret;
443
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300444 evlist__for_each_entry(evlist, evsel) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700445 ret = do_write(ff, &evsel->attr, sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200446 if (ret < 0)
447 return ret;
448 /*
449 * write number of unique id per event
450 * there is one id per instance of an event
451 *
452 * copy into an nri to be independent of the
453 * type of ids,
454 */
Robert Richter6606f872012-08-16 21:10:19 +0200455 nri = evsel->ids;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700456 ret = do_write(ff, &nri, sizeof(nri));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200457 if (ret < 0)
458 return ret;
459
460 /*
461 * write event string as passed on cmdline
462 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700463 ret = do_write_string(ff, perf_evsel__name(evsel));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200464 if (ret < 0)
465 return ret;
466 /*
467 * write unique ids for this event
468 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700469 ret = do_write(ff, evsel->id, evsel->ids * sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200470 if (ret < 0)
471 return ret;
472 }
473 return 0;
474}
475
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700476static int write_cmdline(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300477 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200478{
479 char buf[MAXPATHLEN];
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300480 u32 n;
481 int i, ret;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200482
Tommi Rantala55f771282017-03-22 15:06:24 +0200483 /* actual path to perf binary */
484 ret = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200485 if (ret <= 0)
486 return -1;
487
488 /* readlink() does not add null termination */
489 buf[ret] = '\0';
490
491 /* account for binary path */
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300492 n = perf_env.nr_cmdline + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200493
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700494 ret = do_write(ff, &n, sizeof(n));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200495 if (ret < 0)
496 return ret;
497
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700498 ret = do_write_string(ff, buf);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200499 if (ret < 0)
500 return ret;
501
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300502 for (i = 0 ; i < perf_env.nr_cmdline; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700503 ret = do_write_string(ff, perf_env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200504 if (ret < 0)
505 return ret;
506 }
507 return 0;
508}
509
510#define CORE_SIB_FMT \
511 "/sys/devices/system/cpu/cpu%d/topology/core_siblings_list"
512#define THRD_SIB_FMT \
513 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list"
514
515struct cpu_topo {
Kan Liang2bb00d22015-09-01 09:58:12 -0400516 u32 cpu_nr;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200517 u32 core_sib;
518 u32 thread_sib;
519 char **core_siblings;
520 char **thread_siblings;
521};
522
523static int build_cpu_topo(struct cpu_topo *tp, int cpu)
524{
525 FILE *fp;
526 char filename[MAXPATHLEN];
527 char *buf = NULL, *p;
528 size_t len = 0;
Stephane Eranianc5885742013-08-14 12:04:26 +0200529 ssize_t sret;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200530 u32 i = 0;
531 int ret = -1;
532
533 sprintf(filename, CORE_SIB_FMT, cpu);
534 fp = fopen(filename, "r");
535 if (!fp)
Stephane Eranianc5885742013-08-14 12:04:26 +0200536 goto try_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200537
Stephane Eranianc5885742013-08-14 12:04:26 +0200538 sret = getline(&buf, &len, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200539 fclose(fp);
Stephane Eranianc5885742013-08-14 12:04:26 +0200540 if (sret <= 0)
541 goto try_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200542
543 p = strchr(buf, '\n');
544 if (p)
545 *p = '\0';
546
547 for (i = 0; i < tp->core_sib; i++) {
548 if (!strcmp(buf, tp->core_siblings[i]))
549 break;
550 }
551 if (i == tp->core_sib) {
552 tp->core_siblings[i] = buf;
553 tp->core_sib++;
554 buf = NULL;
555 len = 0;
556 }
Stephane Eranianc5885742013-08-14 12:04:26 +0200557 ret = 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200558
Stephane Eranianc5885742013-08-14 12:04:26 +0200559try_threads:
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200560 sprintf(filename, THRD_SIB_FMT, cpu);
561 fp = fopen(filename, "r");
562 if (!fp)
563 goto done;
564
565 if (getline(&buf, &len, fp) <= 0)
566 goto done;
567
568 p = strchr(buf, '\n');
569 if (p)
570 *p = '\0';
571
572 for (i = 0; i < tp->thread_sib; i++) {
573 if (!strcmp(buf, tp->thread_siblings[i]))
574 break;
575 }
576 if (i == tp->thread_sib) {
577 tp->thread_siblings[i] = buf;
578 tp->thread_sib++;
579 buf = NULL;
580 }
581 ret = 0;
582done:
583 if(fp)
584 fclose(fp);
585 free(buf);
586 return ret;
587}
588
589static void free_cpu_topo(struct cpu_topo *tp)
590{
591 u32 i;
592
593 if (!tp)
594 return;
595
596 for (i = 0 ; i < tp->core_sib; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300597 zfree(&tp->core_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200598
599 for (i = 0 ; i < tp->thread_sib; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300600 zfree(&tp->thread_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200601
602 free(tp);
603}
604
605static struct cpu_topo *build_cpu_topology(void)
606{
Jan Stancek43db2842017-02-17 12:10:25 +0100607 struct cpu_topo *tp = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200608 void *addr;
609 u32 nr, i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300610 size_t sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200611 long ncpus;
612 int ret = -1;
Jan Stancek43db2842017-02-17 12:10:25 +0100613 struct cpu_map *map;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200614
Jan Stancekda8a58b2017-02-17 12:10:26 +0100615 ncpus = cpu__max_present_cpu();
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200616
Jan Stancek43db2842017-02-17 12:10:25 +0100617 /* build online CPU map */
618 map = cpu_map__new(NULL);
619 if (map == NULL) {
620 pr_debug("failed to get system cpumap\n");
621 return NULL;
622 }
623
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200624 nr = (u32)(ncpus & UINT_MAX);
625
626 sz = nr * sizeof(char *);
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300627 addr = calloc(1, sizeof(*tp) + 2 * sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200628 if (!addr)
Jan Stancek43db2842017-02-17 12:10:25 +0100629 goto out_free;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200630
631 tp = addr;
Kan Liang2bb00d22015-09-01 09:58:12 -0400632 tp->cpu_nr = nr;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200633 addr += sizeof(*tp);
634 tp->core_siblings = addr;
635 addr += sz;
636 tp->thread_siblings = addr;
637
638 for (i = 0; i < nr; i++) {
Jan Stancek43db2842017-02-17 12:10:25 +0100639 if (!cpu_map__has(map, i))
640 continue;
641
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200642 ret = build_cpu_topo(tp, i);
643 if (ret < 0)
644 break;
645 }
Jan Stancek43db2842017-02-17 12:10:25 +0100646
647out_free:
648 cpu_map__put(map);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200649 if (ret) {
650 free_cpu_topo(tp);
651 tp = NULL;
652 }
653 return tp;
654}
655
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700656static int write_cpu_topology(struct feat_fd *ff,
657 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200658{
659 struct cpu_topo *tp;
660 u32 i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300661 int ret, j;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200662
663 tp = build_cpu_topology();
664 if (!tp)
665 return -1;
666
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700667 ret = do_write(ff, &tp->core_sib, sizeof(tp->core_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200668 if (ret < 0)
669 goto done;
670
671 for (i = 0; i < tp->core_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700672 ret = do_write_string(ff, tp->core_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200673 if (ret < 0)
674 goto done;
675 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700676 ret = do_write(ff, &tp->thread_sib, sizeof(tp->thread_sib));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200677 if (ret < 0)
678 goto done;
679
680 for (i = 0; i < tp->thread_sib; i++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700681 ret = do_write_string(ff, tp->thread_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200682 if (ret < 0)
683 break;
684 }
Kan Liang2bb00d22015-09-01 09:58:12 -0400685
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300686 ret = perf_env__read_cpu_topology_map(&perf_env);
687 if (ret < 0)
688 goto done;
689
690 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700691 ret = do_write(ff, &perf_env.cpu[j].core_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300692 sizeof(perf_env.cpu[j].core_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400693 if (ret < 0)
694 return ret;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700695 ret = do_write(ff, &perf_env.cpu[j].socket_id,
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300696 sizeof(perf_env.cpu[j].socket_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400697 if (ret < 0)
698 return ret;
699 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200700done:
701 free_cpu_topo(tp);
702 return ret;
703}
704
705
706
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700707static int write_total_mem(struct feat_fd *ff,
708 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200709{
710 char *buf = NULL;
711 FILE *fp;
712 size_t len = 0;
713 int ret = -1, n;
714 uint64_t mem;
715
716 fp = fopen("/proc/meminfo", "r");
717 if (!fp)
718 return -1;
719
720 while (getline(&buf, &len, fp) > 0) {
721 ret = strncmp(buf, "MemTotal:", 9);
722 if (!ret)
723 break;
724 }
725 if (!ret) {
726 n = sscanf(buf, "%*s %"PRIu64, &mem);
727 if (n == 1)
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700728 ret = do_write(ff, &mem, sizeof(mem));
Wang Naned307752014-10-16 11:08:29 +0800729 } else
730 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200731 free(buf);
732 fclose(fp);
733 return ret;
734}
735
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700736static int write_topo_node(struct feat_fd *ff, int node)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200737{
738 char str[MAXPATHLEN];
739 char field[32];
740 char *buf = NULL, *p;
741 size_t len = 0;
742 FILE *fp;
743 u64 mem_total, mem_free, mem;
744 int ret = -1;
745
746 sprintf(str, "/sys/devices/system/node/node%d/meminfo", node);
747 fp = fopen(str, "r");
748 if (!fp)
749 return -1;
750
751 while (getline(&buf, &len, fp) > 0) {
752 /* skip over invalid lines */
753 if (!strchr(buf, ':'))
754 continue;
Alan Coxa761a2d2014-01-20 19:10:11 +0100755 if (sscanf(buf, "%*s %*d %31s %"PRIu64, field, &mem) != 2)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200756 goto done;
757 if (!strcmp(field, "MemTotal:"))
758 mem_total = mem;
759 if (!strcmp(field, "MemFree:"))
760 mem_free = mem;
761 }
762
763 fclose(fp);
Thomas Jarosch5809fde2013-01-28 10:21:14 +0100764 fp = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200765
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700766 ret = do_write(ff, &mem_total, sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200767 if (ret)
768 goto done;
769
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700770 ret = do_write(ff, &mem_free, sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200771 if (ret)
772 goto done;
773
774 ret = -1;
775 sprintf(str, "/sys/devices/system/node/node%d/cpulist", node);
776
777 fp = fopen(str, "r");
778 if (!fp)
779 goto done;
780
781 if (getline(&buf, &len, fp) <= 0)
782 goto done;
783
784 p = strchr(buf, '\n');
785 if (p)
786 *p = '\0';
787
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700788 ret = do_write_string(ff, buf);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200789done:
790 free(buf);
Thomas Jarosch5809fde2013-01-28 10:21:14 +0100791 if (fp)
792 fclose(fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200793 return ret;
794}
795
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700796static int write_numa_topology(struct feat_fd *ff,
797 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200798{
799 char *buf = NULL;
800 size_t len = 0;
801 FILE *fp;
802 struct cpu_map *node_map = NULL;
803 char *c;
804 u32 nr, i, j;
805 int ret = -1;
806
807 fp = fopen("/sys/devices/system/node/online", "r");
808 if (!fp)
809 return -1;
810
811 if (getline(&buf, &len, fp) <= 0)
812 goto done;
813
814 c = strchr(buf, '\n');
815 if (c)
816 *c = '\0';
817
818 node_map = cpu_map__new(buf);
819 if (!node_map)
820 goto done;
821
822 nr = (u32)node_map->nr;
823
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700824 ret = do_write(ff, &nr, sizeof(nr));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200825 if (ret < 0)
826 goto done;
827
828 for (i = 0; i < nr; i++) {
829 j = (u32)node_map->map[i];
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700830 ret = do_write(ff, &j, sizeof(j));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200831 if (ret < 0)
832 break;
833
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700834 ret = write_topo_node(ff, i);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200835 if (ret < 0)
836 break;
837 }
838done:
839 free(buf);
840 fclose(fp);
Masami Hiramatsu5191d8872015-12-09 11:11:35 +0900841 cpu_map__put(node_map);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200842 return ret;
843}
844
845/*
Robert Richter50a96672012-08-16 21:10:24 +0200846 * File format:
847 *
848 * struct pmu_mappings {
849 * u32 pmu_num;
850 * struct pmu_map {
851 * u32 type;
852 * char name[];
853 * }[pmu_num];
854 * };
855 */
856
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700857static int write_pmu_mappings(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300858 struct perf_evlist *evlist __maybe_unused)
Robert Richter50a96672012-08-16 21:10:24 +0200859{
860 struct perf_pmu *pmu = NULL;
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700861 u32 pmu_num = 0;
Namhyung Kim5323f602012-12-17 15:38:54 +0900862 int ret;
Robert Richter50a96672012-08-16 21:10:24 +0200863
David Carrillo-Cisnerosa02c3952017-07-17 21:25:44 -0700864 /*
865 * Do a first pass to count number of pmu to avoid lseek so this
866 * works in pipe mode as well.
867 */
868 while ((pmu = perf_pmu__scan(pmu))) {
869 if (!pmu->name)
870 continue;
871 pmu_num++;
872 }
873
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700874 ret = do_write(ff, &pmu_num, sizeof(pmu_num));
Namhyung Kim5323f602012-12-17 15:38:54 +0900875 if (ret < 0)
876 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200877
878 while ((pmu = perf_pmu__scan(pmu))) {
879 if (!pmu->name)
880 continue;
Namhyung Kim5323f602012-12-17 15:38:54 +0900881
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700882 ret = do_write(ff, &pmu->type, sizeof(pmu->type));
Namhyung Kim5323f602012-12-17 15:38:54 +0900883 if (ret < 0)
884 return ret;
885
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700886 ret = do_write_string(ff, pmu->name);
Namhyung Kim5323f602012-12-17 15:38:54 +0900887 if (ret < 0)
888 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200889 }
890
Robert Richter50a96672012-08-16 21:10:24 +0200891 return 0;
892}
893
894/*
Namhyung Kima8bb5592013-01-22 18:09:31 +0900895 * File format:
896 *
897 * struct group_descs {
898 * u32 nr_groups;
899 * struct group_desc {
900 * char name[];
901 * u32 leader_idx;
902 * u32 nr_members;
903 * }[nr_groups];
904 * };
905 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700906static int write_group_desc(struct feat_fd *ff,
Namhyung Kima8bb5592013-01-22 18:09:31 +0900907 struct perf_evlist *evlist)
908{
909 u32 nr_groups = evlist->nr_groups;
910 struct perf_evsel *evsel;
911 int ret;
912
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700913 ret = do_write(ff, &nr_groups, sizeof(nr_groups));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900914 if (ret < 0)
915 return ret;
916
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300917 evlist__for_each_entry(evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +0900918 if (perf_evsel__is_group_leader(evsel) &&
919 evsel->nr_members > 1) {
920 const char *name = evsel->group_name ?: "{anon_group}";
921 u32 leader_idx = evsel->idx;
922 u32 nr_members = evsel->nr_members;
923
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700924 ret = do_write_string(ff, name);
Namhyung Kima8bb5592013-01-22 18:09:31 +0900925 if (ret < 0)
926 return ret;
927
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700928 ret = do_write(ff, &leader_idx, sizeof(leader_idx));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900929 if (ret < 0)
930 return ret;
931
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700932 ret = do_write(ff, &nr_members, sizeof(nr_members));
Namhyung Kima8bb5592013-01-22 18:09:31 +0900933 if (ret < 0)
934 return ret;
935 }
936 }
937 return 0;
938}
939
940/*
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200941 * default get_cpuid(): nothing gets recorded
Jiada Wang7a759cd2017-04-09 20:02:37 -0700942 * actual implementation must be in arch/$(SRCARCH)/util/header.c
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200943 */
Rui Teng11d8f872016-07-28 10:05:57 +0800944int __weak get_cpuid(char *buffer __maybe_unused, size_t sz __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200945{
946 return -1;
947}
948
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700949static int write_cpuid(struct feat_fd *ff,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300950 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200951{
952 char buffer[64];
953 int ret;
954
955 ret = get_cpuid(buffer, sizeof(buffer));
956 if (!ret)
957 goto write_it;
958
959 return -1;
960write_it:
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700961 return do_write_string(ff, buffer);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200962}
963
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700964static int write_branch_stack(struct feat_fd *ff __maybe_unused,
965 struct perf_evlist *evlist __maybe_unused)
Stephane Eranian330aa672012-03-08 23:47:46 +0100966{
967 return 0;
968}
969
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700970static int write_auxtrace(struct feat_fd *ff,
Adrian Hunter4025ea42015-04-09 18:53:41 +0300971 struct perf_evlist *evlist __maybe_unused)
972{
Adrian Hunter99fa2982015-04-30 17:37:25 +0300973 struct perf_session *session;
974 int err;
975
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -0700976 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
977 return -1;
978
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700979 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300980
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -0700981 err = auxtrace_index__write(ff->fd, &session->auxtrace_index);
Adrian Hunter99fa2982015-04-30 17:37:25 +0300982 if (err < 0)
983 pr_err("Failed to write auxtrace index\n");
984 return err;
Adrian Hunter4025ea42015-04-09 18:53:41 +0300985}
986
Jiri Olsa720e98b2016-02-16 16:01:43 +0100987static int cpu_cache_level__sort(const void *a, const void *b)
988{
989 struct cpu_cache_level *cache_a = (struct cpu_cache_level *)a;
990 struct cpu_cache_level *cache_b = (struct cpu_cache_level *)b;
991
992 return cache_a->level - cache_b->level;
993}
994
995static bool cpu_cache_level__cmp(struct cpu_cache_level *a, struct cpu_cache_level *b)
996{
997 if (a->level != b->level)
998 return false;
999
1000 if (a->line_size != b->line_size)
1001 return false;
1002
1003 if (a->sets != b->sets)
1004 return false;
1005
1006 if (a->ways != b->ways)
1007 return false;
1008
1009 if (strcmp(a->type, b->type))
1010 return false;
1011
1012 if (strcmp(a->size, b->size))
1013 return false;
1014
1015 if (strcmp(a->map, b->map))
1016 return false;
1017
1018 return true;
1019}
1020
1021static int cpu_cache_level__read(struct cpu_cache_level *cache, u32 cpu, u16 level)
1022{
1023 char path[PATH_MAX], file[PATH_MAX];
1024 struct stat st;
1025 size_t len;
1026
1027 scnprintf(path, PATH_MAX, "devices/system/cpu/cpu%d/cache/index%d/", cpu, level);
1028 scnprintf(file, PATH_MAX, "%s/%s", sysfs__mountpoint(), path);
1029
1030 if (stat(file, &st))
1031 return 1;
1032
1033 scnprintf(file, PATH_MAX, "%s/level", path);
1034 if (sysfs__read_int(file, (int *) &cache->level))
1035 return -1;
1036
1037 scnprintf(file, PATH_MAX, "%s/coherency_line_size", path);
1038 if (sysfs__read_int(file, (int *) &cache->line_size))
1039 return -1;
1040
1041 scnprintf(file, PATH_MAX, "%s/number_of_sets", path);
1042 if (sysfs__read_int(file, (int *) &cache->sets))
1043 return -1;
1044
1045 scnprintf(file, PATH_MAX, "%s/ways_of_associativity", path);
1046 if (sysfs__read_int(file, (int *) &cache->ways))
1047 return -1;
1048
1049 scnprintf(file, PATH_MAX, "%s/type", path);
1050 if (sysfs__read_str(file, &cache->type, &len))
1051 return -1;
1052
1053 cache->type[len] = 0;
1054 cache->type = rtrim(cache->type);
1055
1056 scnprintf(file, PATH_MAX, "%s/size", path);
1057 if (sysfs__read_str(file, &cache->size, &len)) {
1058 free(cache->type);
1059 return -1;
1060 }
1061
1062 cache->size[len] = 0;
1063 cache->size = rtrim(cache->size);
1064
1065 scnprintf(file, PATH_MAX, "%s/shared_cpu_list", path);
1066 if (sysfs__read_str(file, &cache->map, &len)) {
1067 free(cache->map);
1068 free(cache->type);
1069 return -1;
1070 }
1071
1072 cache->map[len] = 0;
1073 cache->map = rtrim(cache->map);
1074 return 0;
1075}
1076
1077static void cpu_cache_level__fprintf(FILE *out, struct cpu_cache_level *c)
1078{
1079 fprintf(out, "L%d %-15s %8s [%s]\n", c->level, c->type, c->size, c->map);
1080}
1081
1082static int build_caches(struct cpu_cache_level caches[], u32 size, u32 *cntp)
1083{
1084 u32 i, cnt = 0;
1085 long ncpus;
1086 u32 nr, cpu;
1087 u16 level;
1088
1089 ncpus = sysconf(_SC_NPROCESSORS_CONF);
1090 if (ncpus < 0)
1091 return -1;
1092
1093 nr = (u32)(ncpus & UINT_MAX);
1094
1095 for (cpu = 0; cpu < nr; cpu++) {
1096 for (level = 0; level < 10; level++) {
1097 struct cpu_cache_level c;
1098 int err;
1099
1100 err = cpu_cache_level__read(&c, cpu, level);
1101 if (err < 0)
1102 return err;
1103
1104 if (err == 1)
1105 break;
1106
1107 for (i = 0; i < cnt; i++) {
1108 if (cpu_cache_level__cmp(&c, &caches[i]))
1109 break;
1110 }
1111
1112 if (i == cnt)
1113 caches[cnt++] = c;
1114 else
1115 cpu_cache_level__free(&c);
1116
1117 if (WARN_ONCE(cnt == size, "way too many cpu caches.."))
1118 goto out;
1119 }
1120 }
1121 out:
1122 *cntp = cnt;
1123 return 0;
1124}
1125
1126#define MAX_CACHES 2000
1127
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001128static int write_cache(struct feat_fd *ff,
1129 struct perf_evlist *evlist __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001130{
1131 struct cpu_cache_level caches[MAX_CACHES];
1132 u32 cnt = 0, i, version = 1;
1133 int ret;
1134
1135 ret = build_caches(caches, MAX_CACHES, &cnt);
1136 if (ret)
1137 goto out;
1138
1139 qsort(&caches, cnt, sizeof(struct cpu_cache_level), cpu_cache_level__sort);
1140
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001141 ret = do_write(ff, &version, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001142 if (ret < 0)
1143 goto out;
1144
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001145 ret = do_write(ff, &cnt, sizeof(u32));
Jiri Olsa720e98b2016-02-16 16:01:43 +01001146 if (ret < 0)
1147 goto out;
1148
1149 for (i = 0; i < cnt; i++) {
1150 struct cpu_cache_level *c = &caches[i];
1151
1152 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001153 ret = do_write(ff, &c->v, sizeof(u32)); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001154 if (ret < 0) \
1155 goto out;
1156
1157 _W(level)
1158 _W(line_size)
1159 _W(sets)
1160 _W(ways)
1161 #undef _W
1162
1163 #define _W(v) \
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001164 ret = do_write_string(ff, (const char *) c->v); \
Jiri Olsa720e98b2016-02-16 16:01:43 +01001165 if (ret < 0) \
1166 goto out;
1167
1168 _W(type)
1169 _W(size)
1170 _W(map)
1171 #undef _W
1172 }
1173
1174out:
1175 for (i = 0; i < cnt; i++)
1176 cpu_cache_level__free(&caches[i]);
1177 return ret;
1178}
1179
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07001180static int write_stat(struct feat_fd *ff __maybe_unused,
Jiri Olsaffa517a2015-10-25 15:51:43 +01001181 struct perf_evlist *evlist __maybe_unused)
1182{
1183 return 0;
1184}
1185
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001186static void print_hostname(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001187{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001188 fprintf(fp, "# hostname : %s\n", ff->ph->env.hostname);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001189}
1190
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001191static void print_osrelease(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001192{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001193 fprintf(fp, "# os release : %s\n", ff->ph->env.os_release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001194}
1195
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001196static void print_arch(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001197{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001198 fprintf(fp, "# arch : %s\n", ff->ph->env.arch);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001199}
1200
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001201static void print_cpudesc(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001202{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001203 fprintf(fp, "# cpudesc : %s\n", ff->ph->env.cpu_desc);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001204}
1205
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001206static void print_nrcpus(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001207{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001208 fprintf(fp, "# nrcpus online : %u\n", ff->ph->env.nr_cpus_online);
1209 fprintf(fp, "# nrcpus avail : %u\n", ff->ph->env.nr_cpus_avail);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001210}
1211
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001212static void print_version(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001213{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001214 fprintf(fp, "# perf version : %s\n", ff->ph->env.version);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001215}
1216
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001217static void print_cmdline(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001218{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001219 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001220
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001221 nr = ff->ph->env.nr_cmdline;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001222
1223 fprintf(fp, "# cmdline : ");
1224
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001225 for (i = 0; i < nr; i++)
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001226 fprintf(fp, "%s ", ff->ph->env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001227 fputc('\n', fp);
1228}
1229
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001230static void print_cpu_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001231{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001232 struct perf_header *ph = ff->ph;
1233 int cpu_nr = ph->env.nr_cpus_avail;
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001234 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001235 char *str;
1236
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001237 nr = ph->env.nr_sibling_cores;
1238 str = ph->env.sibling_cores;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001239
1240 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001241 fprintf(fp, "# sibling cores : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001242 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001243 }
1244
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001245 nr = ph->env.nr_sibling_threads;
1246 str = ph->env.sibling_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001247
1248 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001249 fprintf(fp, "# sibling threads : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001250 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001251 }
Kan Liang2bb00d22015-09-01 09:58:12 -04001252
1253 if (ph->env.cpu != NULL) {
1254 for (i = 0; i < cpu_nr; i++)
1255 fprintf(fp, "# CPU %d: Core ID %d, Socket ID %d\n", i,
1256 ph->env.cpu[i].core_id, ph->env.cpu[i].socket_id);
1257 } else
1258 fprintf(fp, "# Core ID and Socket ID information is not available\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001259}
1260
Robert Richter4e1b9c62012-08-16 21:10:22 +02001261static void free_event_desc(struct perf_evsel *events)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001262{
Robert Richter4e1b9c62012-08-16 21:10:22 +02001263 struct perf_evsel *evsel;
1264
1265 if (!events)
1266 return;
1267
1268 for (evsel = events; evsel->attr.size; evsel++) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001269 zfree(&evsel->name);
1270 zfree(&evsel->id);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001271 }
1272
1273 free(events);
1274}
1275
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001276static struct perf_evsel *read_event_desc(struct feat_fd *ff)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001277{
1278 struct perf_evsel *evsel, *events = NULL;
1279 u64 *id;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001280 void *buf = NULL;
Stephane Eranian62db9062012-02-09 23:21:07 +01001281 u32 nre, sz, nr, i, j;
Stephane Eranian62db9062012-02-09 23:21:07 +01001282 size_t msz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001283
1284 /* number of events */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001285 if (do_read_u32(ff, &nre))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001286 goto error;
1287
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001288 if (do_read_u32(ff, &sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001289 goto error;
1290
Stephane Eranian62db9062012-02-09 23:21:07 +01001291 /* buffer to hold on file attr struct */
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001292 buf = malloc(sz);
1293 if (!buf)
1294 goto error;
1295
Robert Richter4e1b9c62012-08-16 21:10:22 +02001296 /* the last event terminates with evsel->attr.size == 0: */
1297 events = calloc(nre + 1, sizeof(*events));
1298 if (!events)
1299 goto error;
1300
1301 msz = sizeof(evsel->attr);
Jiri Olsa9fafd982012-03-20 19:15:39 +01001302 if (sz < msz)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001303 msz = sz;
1304
Robert Richter4e1b9c62012-08-16 21:10:22 +02001305 for (i = 0, evsel = events; i < nre; evsel++, i++) {
1306 evsel->idx = i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001307
Stephane Eranian62db9062012-02-09 23:21:07 +01001308 /*
1309 * must read entire on-file attr struct to
1310 * sync up with layout.
1311 */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001312 if (__do_read(ff, buf, sz))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001313 goto error;
1314
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001315 if (ff->ph->needs_swap)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001316 perf_event__attr_swap(buf);
1317
Robert Richter4e1b9c62012-08-16 21:10:22 +02001318 memcpy(&evsel->attr, buf, msz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001319
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001320 if (do_read_u32(ff, &nr))
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001321 goto error;
1322
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001323 if (ff->ph->needs_swap)
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001324 evsel->needs_swap = true;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001325
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001326 evsel->name = do_read_string(ff);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001327 if (!evsel->name)
1328 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001329
1330 if (!nr)
1331 continue;
1332
1333 id = calloc(nr, sizeof(*id));
1334 if (!id)
1335 goto error;
1336 evsel->ids = nr;
1337 evsel->id = id;
1338
1339 for (j = 0 ; j < nr; j++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001340 if (do_read_u64(ff, id))
Robert Richter4e1b9c62012-08-16 21:10:22 +02001341 goto error;
Robert Richter4e1b9c62012-08-16 21:10:22 +02001342 id++;
1343 }
1344 }
1345out:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001346 free(buf);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001347 return events;
1348error:
Markus Elfring4cc97612015-06-25 17:12:32 +02001349 free_event_desc(events);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001350 events = NULL;
1351 goto out;
1352}
1353
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001354static int __desc_attr__fprintf(FILE *fp, const char *name, const char *val,
Arnaldo Carvalho de Melo03536312017-06-16 12:18:27 -03001355 void *priv __maybe_unused)
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001356{
1357 return fprintf(fp, ", %s = %s", name, val);
1358}
1359
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001360static void print_event_desc(struct feat_fd *ff, FILE *fp)
Robert Richter4e1b9c62012-08-16 21:10:22 +02001361{
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001362 struct perf_evsel *evsel, *events = read_event_desc(ff);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001363 u32 j;
1364 u64 *id;
1365
1366 if (!events) {
1367 fprintf(fp, "# event desc: not available or unable to read\n");
1368 return;
1369 }
1370
1371 for (evsel = events; evsel->attr.size; evsel++) {
1372 fprintf(fp, "# event : name = %s, ", evsel->name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001373
Robert Richter4e1b9c62012-08-16 21:10:22 +02001374 if (evsel->ids) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001375 fprintf(fp, ", id = {");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001376 for (j = 0, id = evsel->id; j < evsel->ids; j++, id++) {
1377 if (j)
1378 fputc(',', fp);
1379 fprintf(fp, " %"PRIu64, *id);
1380 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001381 fprintf(fp, " }");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001382 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001383
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001384 perf_event_attr__fprintf(fp, &evsel->attr, __desc_attr__fprintf, NULL);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001385
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001386 fputc('\n', fp);
1387 }
Robert Richter4e1b9c62012-08-16 21:10:22 +02001388
1389 free_event_desc(events);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001390}
1391
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001392static void print_total_mem(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001393{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001394 fprintf(fp, "# total memory : %llu kB\n", ff->ph->env.total_mem);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001395}
1396
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001397static void print_numa_topology(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001398{
Jiri Olsac60da222016-07-04 14:16:20 +02001399 int i;
1400 struct numa_node *n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001401
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001402 for (i = 0; i < ff->ph->env.nr_numa_nodes; i++) {
1403 n = &ff->ph->env.numa_nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001404
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001405 fprintf(fp, "# node%u meminfo : total = %"PRIu64" kB,"
1406 " free = %"PRIu64" kB\n",
Jiri Olsac60da222016-07-04 14:16:20 +02001407 n->node, n->mem_total, n->mem_free);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001408
Jiri Olsac60da222016-07-04 14:16:20 +02001409 fprintf(fp, "# node%u cpu list : ", n->node);
1410 cpu_map__fprintf(n->map, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001411 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001412}
1413
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001414static void print_cpuid(struct feat_fd *ff, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001415{
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001416 fprintf(fp, "# cpuid : %s\n", ff->ph->env.cpuid);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001417}
1418
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001419static void print_branch_stack(struct feat_fd *ff __maybe_unused, FILE *fp)
Stephane Eranian330aa672012-03-08 23:47:46 +01001420{
1421 fprintf(fp, "# contains samples with branch stack\n");
1422}
1423
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001424static void print_auxtrace(struct feat_fd *ff __maybe_unused, FILE *fp)
Adrian Hunter4025ea42015-04-09 18:53:41 +03001425{
1426 fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
1427}
1428
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001429static void print_stat(struct feat_fd *ff __maybe_unused, FILE *fp)
Jiri Olsaffa517a2015-10-25 15:51:43 +01001430{
1431 fprintf(fp, "# contains stat data\n");
1432}
1433
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001434static void print_cache(struct feat_fd *ff, FILE *fp __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001435{
1436 int i;
1437
1438 fprintf(fp, "# CPU cache info:\n");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001439 for (i = 0; i < ff->ph->env.caches_cnt; i++) {
Jiri Olsa720e98b2016-02-16 16:01:43 +01001440 fprintf(fp, "# ");
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001441 cpu_cache_level__fprintf(fp, &ff->ph->env.caches[i]);
Jiri Olsa720e98b2016-02-16 16:01:43 +01001442 }
1443}
1444
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001445static void print_pmu_mappings(struct feat_fd *ff, FILE *fp)
Robert Richter50a96672012-08-16 21:10:24 +02001446{
1447 const char *delimiter = "# pmu mappings: ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001448 char *str, *tmp;
Robert Richter50a96672012-08-16 21:10:24 +02001449 u32 pmu_num;
1450 u32 type;
1451
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001452 pmu_num = ff->ph->env.nr_pmu_mappings;
Robert Richter50a96672012-08-16 21:10:24 +02001453 if (!pmu_num) {
1454 fprintf(fp, "# pmu mappings: not available\n");
1455 return;
1456 }
1457
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001458 str = ff->ph->env.pmu_mappings;
Namhyung Kimbe4a2de2012-09-05 14:02:49 +09001459
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001460 while (pmu_num) {
1461 type = strtoul(str, &tmp, 0);
1462 if (*tmp != ':')
1463 goto error;
1464
1465 str = tmp + 1;
1466 fprintf(fp, "%s%s = %" PRIu32, delimiter, str, type);
1467
Robert Richter50a96672012-08-16 21:10:24 +02001468 delimiter = ", ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001469 str += strlen(str) + 1;
1470 pmu_num--;
Robert Richter50a96672012-08-16 21:10:24 +02001471 }
1472
1473 fprintf(fp, "\n");
1474
1475 if (!pmu_num)
1476 return;
1477error:
1478 fprintf(fp, "# pmu mappings: unable to read\n");
1479}
1480
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001481static void print_group_desc(struct feat_fd *ff, FILE *fp)
Namhyung Kima8bb5592013-01-22 18:09:31 +09001482{
1483 struct perf_session *session;
1484 struct perf_evsel *evsel;
1485 u32 nr = 0;
1486
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07001487 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09001488
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001489 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09001490 if (perf_evsel__is_group_leader(evsel) &&
1491 evsel->nr_members > 1) {
1492 fprintf(fp, "# group: %s{%s", evsel->group_name ?: "",
1493 perf_evsel__name(evsel));
1494
1495 nr = evsel->nr_members - 1;
1496 } else if (nr) {
1497 fprintf(fp, ",%s", perf_evsel__name(evsel));
1498
1499 if (--nr == 0)
1500 fprintf(fp, "}\n");
1501 }
1502 }
1503}
1504
Robert Richter08d95bd2012-02-10 15:41:55 +01001505static int __event_process_build_id(struct build_id_event *bev,
1506 char *filename,
1507 struct perf_session *session)
1508{
1509 int err = -1;
Robert Richter08d95bd2012-02-10 15:41:55 +01001510 struct machine *machine;
Wang Nan1f121b02015-06-03 08:52:21 +00001511 u16 cpumode;
Robert Richter08d95bd2012-02-10 15:41:55 +01001512 struct dso *dso;
1513 enum dso_kernel_type dso_type;
1514
1515 machine = perf_session__findnew_machine(session, bev->pid);
1516 if (!machine)
1517 goto out;
1518
Wang Nan1f121b02015-06-03 08:52:21 +00001519 cpumode = bev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Robert Richter08d95bd2012-02-10 15:41:55 +01001520
Wang Nan1f121b02015-06-03 08:52:21 +00001521 switch (cpumode) {
Robert Richter08d95bd2012-02-10 15:41:55 +01001522 case PERF_RECORD_MISC_KERNEL:
1523 dso_type = DSO_TYPE_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001524 break;
1525 case PERF_RECORD_MISC_GUEST_KERNEL:
1526 dso_type = DSO_TYPE_GUEST_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001527 break;
1528 case PERF_RECORD_MISC_USER:
1529 case PERF_RECORD_MISC_GUEST_USER:
1530 dso_type = DSO_TYPE_USER;
Robert Richter08d95bd2012-02-10 15:41:55 +01001531 break;
1532 default:
1533 goto out;
1534 }
1535
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001536 dso = machine__findnew_dso(machine, filename);
Robert Richter08d95bd2012-02-10 15:41:55 +01001537 if (dso != NULL) {
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09001538 char sbuild_id[SBUILD_ID_SIZE];
Robert Richter08d95bd2012-02-10 15:41:55 +01001539
1540 dso__set_build_id(dso, &bev->build_id);
1541
Namhyung Kim1deec1b2017-05-31 21:01:03 +09001542 if (dso_type != DSO_TYPE_USER) {
1543 struct kmod_path m = { .name = NULL, };
1544
1545 if (!kmod_path__parse_name(&m, filename) && m.kmod)
Namhyung Kim6b335e82017-05-31 21:01:04 +09001546 dso__set_module_info(dso, &m, machine);
Namhyung Kim1deec1b2017-05-31 21:01:03 +09001547 else
1548 dso->kernel = dso_type;
1549
1550 free(m.name);
1551 }
Robert Richter08d95bd2012-02-10 15:41:55 +01001552
1553 build_id__sprintf(dso->build_id, sizeof(dso->build_id),
1554 sbuild_id);
1555 pr_debug("build id event received for %s: %s\n",
1556 dso->long_name, sbuild_id);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001557 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01001558 }
1559
1560 err = 0;
1561out:
1562 return err;
1563}
1564
1565static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
1566 int input, u64 offset, u64 size)
1567{
1568 struct perf_session *session = container_of(header, struct perf_session, header);
1569 struct {
1570 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03001571 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01001572 char filename[0];
1573 } old_bev;
1574 struct build_id_event bev;
1575 char filename[PATH_MAX];
1576 u64 limit = offset + size;
1577
1578 while (offset < limit) {
1579 ssize_t len;
1580
Namhyung Kim5323f602012-12-17 15:38:54 +09001581 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001582 return -1;
1583
1584 if (header->needs_swap)
1585 perf_event_header__bswap(&old_bev.header);
1586
1587 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001588 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001589 return -1;
1590
1591 bev.header = old_bev.header;
1592
1593 /*
1594 * As the pid is the missing value, we need to fill
1595 * it properly. The header.misc value give us nice hint.
1596 */
1597 bev.pid = HOST_KERNEL_ID;
1598 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
1599 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
1600 bev.pid = DEFAULT_GUEST_KERNEL_ID;
1601
1602 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
1603 __event_process_build_id(&bev, filename, session);
1604
1605 offset += bev.header.size;
1606 }
1607
1608 return 0;
1609}
1610
1611static int perf_header__read_build_ids(struct perf_header *header,
1612 int input, u64 offset, u64 size)
1613{
1614 struct perf_session *session = container_of(header, struct perf_session, header);
1615 struct build_id_event bev;
1616 char filename[PATH_MAX];
1617 u64 limit = offset + size, orig_offset = offset;
1618 int err = -1;
1619
1620 while (offset < limit) {
1621 ssize_t len;
1622
Namhyung Kim5323f602012-12-17 15:38:54 +09001623 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001624 goto out;
1625
1626 if (header->needs_swap)
1627 perf_event_header__bswap(&bev.header);
1628
1629 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001630 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001631 goto out;
1632 /*
1633 * The a1645ce1 changeset:
1634 *
1635 * "perf: 'perf kvm' tool for monitoring guest performance from host"
1636 *
1637 * Added a field to struct build_id_event that broke the file
1638 * format.
1639 *
1640 * Since the kernel build-id is the first entry, process the
1641 * table using the old format if the well known
1642 * '[kernel.kallsyms]' string for the kernel build-id has the
1643 * first 4 characters chopped off (where the pid_t sits).
1644 */
1645 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
1646 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
1647 return -1;
1648 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
1649 }
1650
1651 __event_process_build_id(&bev, filename, session);
1652
1653 offset += bev.header.size;
1654 }
1655 err = 0;
1656out:
1657 return err;
1658}
1659
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07001660/* Macro for features that simply need to read and store a string. */
1661#define FEAT_PROCESS_STR_FUN(__feat, __feat_env) \
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001662static int process_##__feat(struct feat_fd *ff, void *data __maybe_unused) \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07001663{\
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001664 ff->ph->env.__feat_env = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001665 return ff->ph->env.__feat_env ? 0 : -ENOMEM; \
David Carrillo-Cisnerosdfaa1582017-07-17 21:25:35 -07001666}
1667
1668FEAT_PROCESS_STR_FUN(hostname, hostname);
1669FEAT_PROCESS_STR_FUN(osrelease, os_release);
1670FEAT_PROCESS_STR_FUN(version, version);
1671FEAT_PROCESS_STR_FUN(arch, arch);
1672FEAT_PROCESS_STR_FUN(cpudesc, cpu_desc);
1673FEAT_PROCESS_STR_FUN(cpuid, cpuid);
1674
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001675static int process_tracing_data(struct feat_fd *ff, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01001676{
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001677 ssize_t ret = trace_report(ff->fd, data, false);
1678
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09001679 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01001680}
1681
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001682static int process_build_id(struct feat_fd *ff, void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01001683{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001684 if (perf_header__read_build_ids(ff->ph, ff->fd, ff->offset, ff->size))
Robert Richterf1c67db2012-02-10 15:41:56 +01001685 pr_debug("Failed to read buildids, continuing...\n");
1686 return 0;
1687}
1688
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001689static int process_nrcpus(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001690{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001691 int ret;
1692 u32 nr_cpus_avail, nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001693
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001694 ret = do_read_u32(ff, &nr_cpus_avail);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001695 if (ret)
1696 return ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001697
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001698 ret = do_read_u32(ff, &nr_cpus_online);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001699 if (ret)
1700 return ret;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001701 ff->ph->env.nr_cpus_avail = (int)nr_cpus_avail;
1702 ff->ph->env.nr_cpus_online = (int)nr_cpus_online;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001703 return 0;
1704}
1705
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001706static int process_total_mem(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001707{
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001708 u64 total_mem;
1709 int ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001710
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001711 ret = do_read_u64(ff, &total_mem);
David Carrillo-Cisneros6200e4942017-07-17 21:25:34 -07001712 if (ret)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001713 return -1;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001714 ff->ph->env.total_mem = (unsigned long long)total_mem;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001715 return 0;
1716}
1717
Robert Richter7c2f7af2012-08-16 21:10:23 +02001718static struct perf_evsel *
1719perf_evlist__find_by_index(struct perf_evlist *evlist, int idx)
1720{
1721 struct perf_evsel *evsel;
1722
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001723 evlist__for_each_entry(evlist, evsel) {
Robert Richter7c2f7af2012-08-16 21:10:23 +02001724 if (evsel->idx == idx)
1725 return evsel;
1726 }
1727
1728 return NULL;
1729}
1730
1731static void
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001732perf_evlist__set_event_name(struct perf_evlist *evlist,
1733 struct perf_evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02001734{
1735 struct perf_evsel *evsel;
1736
1737 if (!event->name)
1738 return;
1739
1740 evsel = perf_evlist__find_by_index(evlist, event->idx);
1741 if (!evsel)
1742 return;
1743
1744 if (evsel->name)
1745 return;
1746
1747 evsel->name = strdup(event->name);
1748}
1749
1750static int
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001751process_event_desc(struct feat_fd *ff, void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02001752{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001753 struct perf_session *session;
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001754 struct perf_evsel *evsel, *events = read_event_desc(ff);
Robert Richter7c2f7af2012-08-16 21:10:23 +02001755
1756 if (!events)
1757 return 0;
1758
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001759 session = container_of(ff->ph, struct perf_session, header);
Robert Richter7c2f7af2012-08-16 21:10:23 +02001760 for (evsel = events; evsel->attr.size; evsel++)
1761 perf_evlist__set_event_name(session->evlist, evsel);
1762
1763 free_event_desc(events);
1764
1765 return 0;
1766}
1767
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001768static int process_cmdline(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001769{
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001770 char *str, *cmdline = NULL, **argv = NULL;
1771 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001772
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001773 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001774 return -1;
1775
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001776 ff->ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001777
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001778 cmdline = zalloc(ff->size + nr + 1);
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001779 if (!cmdline)
1780 return -1;
1781
1782 argv = zalloc(sizeof(char *) * (nr + 1));
1783 if (!argv)
1784 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001785
1786 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001787 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001788 if (!str)
1789 goto error;
1790
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001791 argv[i] = cmdline + len;
1792 memcpy(argv[i], str, strlen(str) + 1);
1793 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001794 free(str);
1795 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001796 ff->ph->env.cmdline = cmdline;
1797 ff->ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001798 return 0;
1799
1800error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001801 free(argv);
1802 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001803 return -1;
1804}
1805
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001806static int process_cpu_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001807{
Namhyung Kima1ae5652012-09-24 17:14:59 +09001808 u32 nr, i;
1809 char *str;
1810 struct strbuf sb;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001811 int cpu_nr = ff->ph->env.nr_cpus_avail;
Kan Liang2bb00d22015-09-01 09:58:12 -04001812 u64 size = 0;
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001813 struct perf_header *ph = ff->ph;
Kan Liang2bb00d22015-09-01 09:58:12 -04001814
1815 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
1816 if (!ph->env.cpu)
1817 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001818
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001819 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04001820 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001821
Namhyung Kima1ae5652012-09-24 17:14:59 +09001822 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04001823 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001824 if (strbuf_init(&sb, 128) < 0)
1825 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001826
1827 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001828 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001829 if (!str)
1830 goto error;
1831
1832 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001833 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
1834 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04001835 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001836 free(str);
1837 }
1838 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
1839
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001840 if (do_read_u32(ff, &nr))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001841 return -1;
1842
Namhyung Kima1ae5652012-09-24 17:14:59 +09001843 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04001844 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001845
1846 for (i = 0; i < nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001847 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001848 if (!str)
1849 goto error;
1850
1851 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001852 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
1853 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04001854 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001855 free(str);
1856 }
1857 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04001858
1859 /*
1860 * The header may be from old perf,
1861 * which doesn't include core id and socket id information.
1862 */
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001863 if (ff->size <= size) {
Kan Liang2bb00d22015-09-01 09:58:12 -04001864 zfree(&ph->env.cpu);
1865 return 0;
1866 }
1867
1868 for (i = 0; i < (u32)cpu_nr; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001869 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04001870 goto free_cpu;
1871
Kan Liang2bb00d22015-09-01 09:58:12 -04001872 ph->env.cpu[i].core_id = nr;
1873
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001874 if (do_read_u32(ff, &nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04001875 goto free_cpu;
1876
Jan Stancekda8a58b2017-02-17 12:10:26 +01001877 if (nr != (u32)-1 && nr > (u32)cpu_nr) {
Kan Liang2bb00d22015-09-01 09:58:12 -04001878 pr_debug("socket_id number is too big."
1879 "You may need to upgrade the perf tool.\n");
1880 goto free_cpu;
1881 }
1882
1883 ph->env.cpu[i].socket_id = nr;
1884 }
1885
Namhyung Kima1ae5652012-09-24 17:14:59 +09001886 return 0;
1887
1888error:
1889 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04001890free_cpu:
1891 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001892 return -1;
1893}
1894
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001895static int process_numa_topology(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001896{
Jiri Olsac60da222016-07-04 14:16:20 +02001897 struct numa_node *nodes, *n;
Jiri Olsac60da222016-07-04 14:16:20 +02001898 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001899 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001900
1901 /* nr nodes */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001902 if (do_read_u32(ff, &nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001903 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001904
Jiri Olsac60da222016-07-04 14:16:20 +02001905 nodes = zalloc(sizeof(*nodes) * nr);
1906 if (!nodes)
1907 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001908
1909 for (i = 0; i < nr; i++) {
Jiri Olsac60da222016-07-04 14:16:20 +02001910 n = &nodes[i];
1911
Namhyung Kima1ae5652012-09-24 17:14:59 +09001912 /* node number */
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001913 if (do_read_u32(ff, &n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001914 goto error;
1915
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001916 if (do_read_u64(ff, &n->mem_total))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001917 goto error;
1918
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001919 if (do_read_u64(ff, &n->mem_free))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001920 goto error;
1921
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001922 str = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001923 if (!str)
1924 goto error;
1925
Jiri Olsac60da222016-07-04 14:16:20 +02001926 n->map = cpu_map__new(str);
1927 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001928 goto error;
Jiri Olsac60da222016-07-04 14:16:20 +02001929
Namhyung Kima1ae5652012-09-24 17:14:59 +09001930 free(str);
1931 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001932 ff->ph->env.nr_numa_nodes = nr;
1933 ff->ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001934 return 0;
1935
1936error:
Jiri Olsac60da222016-07-04 14:16:20 +02001937 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001938 return -1;
1939}
1940
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001941static int process_pmu_mappings(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001942{
Namhyung Kima1ae5652012-09-24 17:14:59 +09001943 char *name;
1944 u32 pmu_num;
1945 u32 type;
1946 struct strbuf sb;
1947
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001948 if (do_read_u32(ff, &pmu_num))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001949 return -1;
1950
Namhyung Kima1ae5652012-09-24 17:14:59 +09001951 if (!pmu_num) {
1952 pr_debug("pmu mappings not available\n");
1953 return 0;
1954 }
1955
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001956 ff->ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001957 if (strbuf_init(&sb, 128) < 0)
1958 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001959
1960 while (pmu_num) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001961 if (do_read_u32(ff, &type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001962 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001963
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07001964 name = do_read_string(ff);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001965 if (!name)
1966 goto error;
1967
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001968 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
1969 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001970 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001971 if (strbuf_add(&sb, "", 1) < 0)
1972 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001973
Kan Liange0838e02015-09-10 11:03:05 -03001974 if (!strcmp(name, "msr"))
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001975 ff->ph->env.msr_pmu_type = type;
Kan Liange0838e02015-09-10 11:03:05 -03001976
Namhyung Kima1ae5652012-09-24 17:14:59 +09001977 free(name);
1978 pmu_num--;
1979 }
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07001980 ff->ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001981 return 0;
1982
1983error:
1984 strbuf_release(&sb);
1985 return -1;
1986}
1987
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07001988static int process_group_desc(struct feat_fd *ff, void *data __maybe_unused)
Namhyung Kima8bb5592013-01-22 18:09:31 +09001989{
1990 size_t ret = -1;
1991 u32 i, nr, nr_groups;
1992 struct perf_session *session;
1993 struct perf_evsel *evsel, *leader = NULL;
1994 struct group_desc {
1995 char *name;
1996 u32 leader_idx;
1997 u32 nr_members;
1998 } *desc;
1999
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002000 if (do_read_u32(ff, &nr_groups))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002001 return -1;
2002
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002003 ff->ph->env.nr_groups = nr_groups;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002004 if (!nr_groups) {
2005 pr_debug("group desc not available\n");
2006 return 0;
2007 }
2008
2009 desc = calloc(nr_groups, sizeof(*desc));
2010 if (!desc)
2011 return -1;
2012
2013 for (i = 0; i < nr_groups; i++) {
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002014 desc[i].name = do_read_string(ff);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002015 if (!desc[i].name)
2016 goto out_free;
2017
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002018 if (do_read_u32(ff, &desc[i].leader_idx))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002019 goto out_free;
2020
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002021 if (do_read_u32(ff, &desc[i].nr_members))
Namhyung Kima8bb5592013-01-22 18:09:31 +09002022 goto out_free;
Namhyung Kima8bb5592013-01-22 18:09:31 +09002023 }
2024
2025 /*
2026 * Rebuild group relationship based on the group_desc
2027 */
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002028 session = container_of(ff->ph, struct perf_session, header);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002029 session->evlist->nr_groups = nr_groups;
2030
2031 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002032 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002033 if (evsel->idx == (int) desc[i].leader_idx) {
2034 evsel->leader = evsel;
2035 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002036 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002037 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002038 desc[i].name = NULL;
2039 }
Namhyung Kima8bb5592013-01-22 18:09:31 +09002040 evsel->nr_members = desc[i].nr_members;
2041
2042 if (i >= nr_groups || nr > 0) {
2043 pr_debug("invalid group desc\n");
2044 goto out_free;
2045 }
2046
2047 leader = evsel;
2048 nr = evsel->nr_members - 1;
2049 i++;
2050 } else if (nr) {
2051 /* This is a group member */
2052 evsel->leader = leader;
2053
2054 nr--;
2055 }
2056 }
2057
2058 if (i != nr_groups || nr != 0) {
2059 pr_debug("invalid group desc\n");
2060 goto out_free;
2061 }
2062
2063 ret = 0;
2064out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002065 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002066 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002067 free(desc);
2068
2069 return ret;
2070}
2071
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002072static int process_auxtrace(struct feat_fd *ff, void *data __maybe_unused)
Adrian Hunter99fa2982015-04-30 17:37:25 +03002073{
2074 struct perf_session *session;
2075 int err;
2076
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002077 session = container_of(ff->ph, struct perf_session, header);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002078
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002079 err = auxtrace_index__process(ff->fd, ff->size, session,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002080 ff->ph->needs_swap);
Adrian Hunter99fa2982015-04-30 17:37:25 +03002081 if (err < 0)
2082 pr_err("Failed to process auxtrace index\n");
2083 return err;
2084}
2085
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002086static int process_cache(struct feat_fd *ff, void *data __maybe_unused)
Jiri Olsa720e98b2016-02-16 16:01:43 +01002087{
2088 struct cpu_cache_level *caches;
2089 u32 cnt, i, version;
2090
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002091 if (do_read_u32(ff, &version))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002092 return -1;
2093
Jiri Olsa720e98b2016-02-16 16:01:43 +01002094 if (version != 1)
2095 return -1;
2096
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002097 if (do_read_u32(ff, &cnt))
Jiri Olsa720e98b2016-02-16 16:01:43 +01002098 return -1;
2099
Jiri Olsa720e98b2016-02-16 16:01:43 +01002100 caches = zalloc(sizeof(*caches) * cnt);
2101 if (!caches)
2102 return -1;
2103
2104 for (i = 0; i < cnt; i++) {
2105 struct cpu_cache_level c;
2106
2107 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002108 if (do_read_u32(ff, &c.v))\
Jiri Olsa720e98b2016-02-16 16:01:43 +01002109 goto out_free_caches; \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002110
2111 _R(level)
2112 _R(line_size)
2113 _R(sets)
2114 _R(ways)
2115 #undef _R
2116
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002117 #define _R(v) \
David Carrillo-Cisneros48e5fce2017-07-17 21:25:43 -07002118 c.v = do_read_string(ff); \
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002119 if (!c.v) \
Jiri Olsa720e98b2016-02-16 16:01:43 +01002120 goto out_free_caches;
2121
2122 _R(type)
2123 _R(size)
2124 _R(map)
2125 #undef _R
2126
2127 caches[i] = c;
2128 }
2129
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002130 ff->ph->env.caches = caches;
2131 ff->ph->env.caches_cnt = cnt;
Jiri Olsa720e98b2016-02-16 16:01:43 +01002132 return 0;
2133out_free_caches:
2134 free(caches);
2135 return -1;
2136}
2137
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002138struct feature_ops {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002139 int (*write)(struct feat_fd *ff, struct perf_evlist *evlist);
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002140 void (*print)(struct feat_fd *ff, FILE *fp);
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002141 int (*process)(struct feat_fd *ff, void *data);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002142 const char *name;
2143 bool full_only;
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002144 bool synthesize;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002145};
2146
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002147#define FEAT_OPR(n, func, __full_only) \
2148 [HEADER_##n] = { \
2149 .name = __stringify(n), \
2150 .write = write_##func, \
2151 .print = print_##func, \
2152 .full_only = __full_only, \
2153 .process = process_##func, \
2154 .synthesize = true \
2155 }
2156
2157#define FEAT_OPN(n, func, __full_only) \
2158 [HEADER_##n] = { \
2159 .name = __stringify(n), \
2160 .write = write_##func, \
2161 .print = print_##func, \
2162 .full_only = __full_only, \
2163 .process = process_##func \
2164 }
Robert Richter8cdfa782011-12-07 10:02:56 +01002165
2166/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002167#define print_tracing_data NULL
2168#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002169
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002170#define process_branch_stack NULL
2171#define process_stat NULL
2172
2173
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002174static const struct feature_ops feat_ops[HEADER_LAST_FEATURE] = {
David Carrillo-Cisnerosa4d8c982017-07-17 21:25:46 -07002175 FEAT_OPN(TRACING_DATA, tracing_data, false),
2176 FEAT_OPN(BUILD_ID, build_id, false),
2177 FEAT_OPR(HOSTNAME, hostname, false),
2178 FEAT_OPR(OSRELEASE, osrelease, false),
2179 FEAT_OPR(VERSION, version, false),
2180 FEAT_OPR(ARCH, arch, false),
2181 FEAT_OPR(NRCPUS, nrcpus, false),
2182 FEAT_OPR(CPUDESC, cpudesc, false),
2183 FEAT_OPR(CPUID, cpuid, false),
2184 FEAT_OPR(TOTAL_MEM, total_mem, false),
2185 FEAT_OPR(EVENT_DESC, event_desc, false),
2186 FEAT_OPR(CMDLINE, cmdline, false),
2187 FEAT_OPR(CPU_TOPOLOGY, cpu_topology, true),
2188 FEAT_OPR(NUMA_TOPOLOGY, numa_topology, true),
2189 FEAT_OPN(BRANCH_STACK, branch_stack, false),
2190 FEAT_OPR(PMU_MAPPINGS, pmu_mappings, false),
2191 FEAT_OPN(GROUP_DESC, group_desc, false),
2192 FEAT_OPN(AUXTRACE, auxtrace, false),
2193 FEAT_OPN(STAT, stat, false),
2194 FEAT_OPN(CACHE, cache, true),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002195};
2196
2197struct header_print_data {
2198 FILE *fp;
2199 bool full; /* extended list of headers */
2200};
2201
2202static int perf_file_section__fprintf_info(struct perf_file_section *section,
2203 struct perf_header *ph,
2204 int feat, int fd, void *data)
2205{
2206 struct header_print_data *hd = data;
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002207 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002208
2209 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
2210 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
2211 "%d, continuing...\n", section->offset, feat);
2212 return 0;
2213 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002214 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002215 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01002216 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002217 }
2218 if (!feat_ops[feat].print)
2219 return 0;
2220
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002221 ff = (struct feat_fd) {
2222 .fd = fd,
2223 .ph = ph,
2224 };
2225
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002226 if (!feat_ops[feat].full_only || hd->full)
David Carrillo-Cisneroscfc65422017-07-17 21:25:40 -07002227 feat_ops[feat].print(&ff, hd->fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002228 else
2229 fprintf(hd->fp, "# %s info available, use -I to display\n",
2230 feat_ops[feat].name);
2231
2232 return 0;
2233}
2234
2235int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
2236{
2237 struct header_print_data hd;
2238 struct perf_header *header = &session->header;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002239 int fd = perf_data_file__fd(session->file);
Jiri Olsaf45f5612016-10-10 09:03:07 +02002240 struct stat st;
Jiri Olsaaabae162016-10-10 09:35:50 +02002241 int ret, bit;
Jiri Olsaf45f5612016-10-10 09:03:07 +02002242
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002243 hd.fp = fp;
2244 hd.full = full;
2245
Jiri Olsaf45f5612016-10-10 09:03:07 +02002246 ret = fstat(fd, &st);
2247 if (ret == -1)
2248 return -1;
2249
2250 fprintf(fp, "# captured on: %s", ctime(&st.st_ctime));
2251
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002252 perf_header__process_sections(header, fd, &hd,
2253 perf_file_section__fprintf_info);
Jiri Olsaaabae162016-10-10 09:35:50 +02002254
David Carrillo-Cisnerosc9d1c932017-04-10 13:14:32 -07002255 if (session->file->is_pipe)
2256 return 0;
2257
Jiri Olsaaabae162016-10-10 09:35:50 +02002258 fprintf(fp, "# missing features: ");
2259 for_each_clear_bit(bit, header->adds_features, HEADER_LAST_FEATURE) {
2260 if (bit)
2261 fprintf(fp, "%s ", feat_ops[bit].name);
2262 }
2263
2264 fprintf(fp, "\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002265 return 0;
2266}
2267
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002268static int do_write_feat(struct feat_fd *ff, int type,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002269 struct perf_file_section **p,
2270 struct perf_evlist *evlist)
2271{
2272 int err;
2273 int ret = 0;
2274
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002275 if (perf_header__has_feat(ff->ph, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002276 if (!feat_ops[type].write)
2277 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002278
David Carrillo-Cisneros0b3d3412017-07-17 21:25:45 -07002279 if (WARN(ff->buf, "Error: calling %s in pipe-mode.\n", __func__))
2280 return -1;
2281
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002282 (*p)->offset = lseek(ff->fd, 0, SEEK_CUR);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002283
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002284 err = feat_ops[type].write(ff, evlist);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002285 if (err < 0) {
Jiri Olsa0c2aff42016-10-10 09:38:02 +02002286 pr_debug("failed to write feature %s\n", feat_ops[type].name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002287
2288 /* undo anything written */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002289 lseek(ff->fd, (*p)->offset, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002290
2291 return -1;
2292 }
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002293 (*p)->size = lseek(ff->fd, 0, SEEK_CUR) - (*p)->offset;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002294 (*p)++;
2295 }
2296 return ret;
2297}
2298
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002299static int perf_header__adds_write(struct perf_header *header,
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002300 struct perf_evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002301{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002302 int nr_sections;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002303 struct feat_fd ff;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002304 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002305 int sec_size;
2306 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002307 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002308 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002309
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002310 ff = (struct feat_fd){
2311 .fd = fd,
2312 .ph = header,
2313 };
2314
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002315 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002316 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002317 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002318
Paul Gortmaker91b98802013-01-30 20:05:49 -05002319 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002320 if (feat_sec == NULL)
2321 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002322
2323 sec_size = sizeof(*feat_sec) * nr_sections;
2324
Jiri Olsa8d541e92013-07-17 19:49:44 +02002325 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08002326 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002327
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002328 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002329 if (do_write_feat(&ff, feat, &p, evlist))
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002330 perf_header__clear_feat(header, feat);
2331 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002332
Xiao Guangrongf887f302010-02-04 16:46:42 +08002333 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002334 /*
2335 * may write more than needed due to dropped feature, but
2336 * this is okay, reader will skip the mising entries
2337 */
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002338 err = do_write(&ff, feat_sec, sec_size);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002339 if (err < 0)
2340 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002341 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002342 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002343}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002344
Tom Zanussi8dc58102010-04-01 23:59:15 -05002345int perf_header__write_pipe(int fd)
2346{
2347 struct perf_pipe_file_header f_header;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002348 struct feat_fd ff;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002349 int err;
2350
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002351 ff = (struct feat_fd){ .fd = fd };
2352
Tom Zanussi8dc58102010-04-01 23:59:15 -05002353 f_header = (struct perf_pipe_file_header){
2354 .magic = PERF_MAGIC,
2355 .size = sizeof(f_header),
2356 };
2357
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002358 err = do_write(&ff, &f_header, sizeof(f_header));
Tom Zanussi8dc58102010-04-01 23:59:15 -05002359 if (err < 0) {
2360 pr_debug("failed to write perf pipe header\n");
2361 return err;
2362 }
2363
2364 return 0;
2365}
2366
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002367int perf_session__write_header(struct perf_session *session,
2368 struct perf_evlist *evlist,
2369 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002370{
2371 struct perf_file_header f_header;
2372 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002373 struct perf_header *header = &session->header;
Jiri Olsa563aecb2013-06-05 13:35:06 +02002374 struct perf_evsel *evsel;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002375 struct feat_fd ff;
Jiri Olsa944d62b2013-07-17 19:49:43 +02002376 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002377 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002378
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002379 ff = (struct feat_fd){ .fd = fd};
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002380 lseek(fd, sizeof(f_header), SEEK_SET);
2381
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002382 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02002383 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002384 err = do_write(&ff, evsel->id, evsel->ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002385 if (err < 0) {
2386 pr_debug("failed to write perf header\n");
2387 return err;
2388 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002389 }
2390
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002391 attr_offset = lseek(ff.fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002392
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002393 evlist__for_each_entry(evlist, evsel) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002394 f_attr = (struct perf_file_attr){
Robert Richter6606f872012-08-16 21:10:19 +02002395 .attr = evsel->attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002396 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02002397 .offset = evsel->id_offset,
2398 .size = evsel->ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002399 }
2400 };
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002401 err = do_write(&ff, &f_attr, sizeof(f_attr));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002402 if (err < 0) {
2403 pr_debug("failed to write perf header attribute\n");
2404 return err;
2405 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002406 }
2407
Adrian Hunterd645c442013-12-11 14:36:28 +02002408 if (!header->data_offset)
2409 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02002410 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002411
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002412 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002413 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002414 if (err < 0)
2415 return err;
2416 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002417
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002418 f_header = (struct perf_file_header){
2419 .magic = PERF_MAGIC,
2420 .size = sizeof(f_header),
2421 .attr_size = sizeof(f_attr),
2422 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02002423 .offset = attr_offset,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002424 .size = evlist->nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002425 },
2426 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002427 .offset = header->data_offset,
2428 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002429 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02002430 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002431 };
2432
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002433 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002434
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002435 lseek(fd, 0, SEEK_SET);
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002436 err = do_write(&ff, &f_header, sizeof(f_header));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002437 if (err < 0) {
2438 pr_debug("failed to write perf header\n");
2439 return err;
2440 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002441 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002442
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002443 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002444}
2445
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002446static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002447 int fd, void *buf, size_t size)
2448{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02002449 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002450 return -1;
2451
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002452 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002453 mem_bswap_64(buf, size);
2454
2455 return 0;
2456}
2457
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002458int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002459 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002460 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002461 struct perf_header *ph,
2462 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002463{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002464 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002465 int nr_sections;
2466 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002467 int feat;
2468 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002469
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002470 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002471 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002472 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002473
Paul Gortmaker91b98802013-01-30 20:05:49 -05002474 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002475 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002476 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002477
2478 sec_size = sizeof(*feat_sec) * nr_sections;
2479
Jiri Olsa8d541e92013-07-17 19:49:44 +02002480 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002481
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002482 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
2483 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002484 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002485
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002486 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
2487 err = process(sec++, header, feat, fd, data);
2488 if (err < 0)
2489 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01002490 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002491 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002492out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002493 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002494 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002495}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002496
Stephane Eranian114382a2012-02-09 23:21:08 +01002497static const int attr_file_abi_sizes[] = {
2498 [0] = PERF_ATTR_SIZE_VER0,
2499 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02002500 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002501 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002502 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01002503 0,
2504};
2505
2506/*
2507 * In the legacy file format, the magic number is not used to encode endianness.
2508 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
2509 * on ABI revisions, we need to try all combinations for all endianness to
2510 * detect the endianness.
2511 */
2512static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
2513{
2514 uint64_t ref_size, attr_size;
2515 int i;
2516
2517 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
2518 ref_size = attr_file_abi_sizes[i]
2519 + sizeof(struct perf_file_section);
2520 if (hdr_sz != ref_size) {
2521 attr_size = bswap_64(hdr_sz);
2522 if (attr_size != ref_size)
2523 continue;
2524
2525 ph->needs_swap = true;
2526 }
2527 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
2528 i,
2529 ph->needs_swap);
2530 return 0;
2531 }
2532 /* could not determine endianness */
2533 return -1;
2534}
2535
2536#define PERF_PIPE_HDR_VER0 16
2537
2538static const size_t attr_pipe_abi_sizes[] = {
2539 [0] = PERF_PIPE_HDR_VER0,
2540 0,
2541};
2542
2543/*
2544 * In the legacy pipe format, there is an implicit assumption that endiannesss
2545 * between host recording the samples, and host parsing the samples is the
2546 * same. This is not always the case given that the pipe output may always be
2547 * redirected into a file and analyzed on a different machine with possibly a
2548 * different endianness and perf_event ABI revsions in the perf tool itself.
2549 */
2550static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
2551{
2552 u64 attr_size;
2553 int i;
2554
2555 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
2556 if (hdr_sz != attr_pipe_abi_sizes[i]) {
2557 attr_size = bswap_64(hdr_sz);
2558 if (attr_size != hdr_sz)
2559 continue;
2560
2561 ph->needs_swap = true;
2562 }
2563 pr_debug("Pipe ABI%d perf.data file detected\n", i);
2564 return 0;
2565 }
2566 return -1;
2567}
2568
Feng Tange84ba4e2012-10-30 11:56:07 +08002569bool is_perf_magic(u64 magic)
2570{
2571 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
2572 || magic == __perf_magic2
2573 || magic == __perf_magic2_sw)
2574 return true;
2575
2576 return false;
2577}
2578
Stephane Eranian114382a2012-02-09 23:21:08 +01002579static int check_magic_endian(u64 magic, uint64_t hdr_sz,
2580 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01002581{
2582 int ret;
2583
2584 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01002585 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01002586 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02002587 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01002588 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01002589 if (is_pipe)
2590 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01002591
Stephane Eranian114382a2012-02-09 23:21:08 +01002592 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01002593 }
Stephane Eranian114382a2012-02-09 23:21:08 +01002594 /*
2595 * the new magic number serves two purposes:
2596 * - unique number to identify actual perf.data files
2597 * - encode endianness of file
2598 */
Namhyung Kimf7913972015-01-29 17:06:45 +09002599 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01002600
Stephane Eranian114382a2012-02-09 23:21:08 +01002601 /* check magic number with one endianness */
2602 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01002603 return 0;
2604
Stephane Eranian114382a2012-02-09 23:21:08 +01002605 /* check magic number with opposite endianness */
2606 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01002607 return -1;
2608
2609 ph->needs_swap = true;
2610
2611 return 0;
2612}
2613
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002614int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002615 struct perf_header *ph, int fd)
2616{
Jiri Olsa727ebd52013-11-28 11:30:14 +01002617 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01002618
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002619 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002620
Stephane Eranian73323f52012-02-02 13:54:44 +01002621 ret = readn(fd, header, sizeof(*header));
2622 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002623 return -1;
2624
Stephane Eranian114382a2012-02-09 23:21:08 +01002625 if (check_magic_endian(header->magic,
2626 header->attr_size, false, ph) < 0) {
2627 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01002628 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01002629 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002630
Stephane Eranian73323f52012-02-02 13:54:44 +01002631 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002632 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01002633 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002634 }
2635
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002636 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002637 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002638 if (header->size == offsetof(typeof(*header), adds_features))
2639 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002640 else
2641 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06002642 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06002643 /*
2644 * feature bitmap is declared as an array of unsigned longs --
2645 * not good since its size can differ between the host that
2646 * generated the data file and the host analyzing the file.
2647 *
2648 * We need to handle endianness, but we don't know the size of
2649 * the unsigned long where the file was generated. Take a best
2650 * guess at determining it: try 64-bit swap first (ie., file
2651 * created on a 64-bit host), and check if the hostname feature
2652 * bit is set (this feature bit is forced on as of fbe96f2).
2653 * If the bit is not, undo the 64-bit swap and try a 32-bit
2654 * swap. If the hostname bit is still not set (e.g., older data
2655 * file), punt and fallback to the original behavior --
2656 * clearing all feature bits and setting buildid.
2657 */
David Ahern80c01202012-06-08 11:47:51 -03002658 mem_bswap_64(&header->adds_features,
2659 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06002660
2661 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03002662 /* unswap as u64 */
2663 mem_bswap_64(&header->adds_features,
2664 BITS_TO_U64(HEADER_FEAT_BITS));
2665
2666 /* unswap as u32 */
2667 mem_bswap_32(&header->adds_features,
2668 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06002669 }
2670
2671 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
2672 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
2673 set_bit(HEADER_BUILD_ID, header->adds_features);
2674 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002675 }
2676
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002677 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002678 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002679
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002680 ph->data_offset = header->data.offset;
2681 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02002682 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002683 return 0;
2684}
2685
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002686static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002687 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002688 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002689{
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002690 struct feat_fd fdd = {
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002691 .fd = fd,
2692 .ph = ph,
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002693 .size = section->size,
2694 .offset = section->offset,
David Carrillo-Cisneros1a222752017-07-17 21:25:41 -07002695 };
2696
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002697 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002698 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002699 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002700 return 0;
2701 }
2702
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002703 if (feat >= HEADER_LAST_FEATURE) {
2704 pr_debug("unknown feature %d, continuing...\n", feat);
2705 return 0;
2706 }
2707
Robert Richterf1c67db2012-02-10 15:41:56 +01002708 if (!feat_ops[feat].process)
2709 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002710
David Carrillo-Cisneros62552452017-07-17 21:25:42 -07002711 return feat_ops[feat].process(&fdd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002712}
2713
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002714static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Tom Zanussi454c4072010-05-01 01:41:20 -05002715 struct perf_header *ph, int fd,
2716 bool repipe)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002717{
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002718 struct feat_fd ff = {
2719 .fd = STDOUT_FILENO,
2720 .ph = ph,
2721 };
Jiri Olsa727ebd52013-11-28 11:30:14 +01002722 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01002723
2724 ret = readn(fd, header, sizeof(*header));
2725 if (ret <= 0)
2726 return -1;
2727
Stephane Eranian114382a2012-02-09 23:21:08 +01002728 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
2729 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05002730 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01002731 }
2732
2733 if (ph->needs_swap)
2734 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002735
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07002736 if (repipe && do_write(&ff, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05002737 return -1;
2738
Tom Zanussi8dc58102010-04-01 23:59:15 -05002739 return 0;
2740}
2741
Jiri Olsad4339562013-07-17 19:49:41 +02002742static int perf_header__read_pipe(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05002743{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002744 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002745 struct perf_pipe_file_header f_header;
2746
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002747 if (perf_file_header__read_pipe(&f_header, header,
2748 perf_data_file__fd(session->file),
Tom Zanussi454c4072010-05-01 01:41:20 -05002749 session->repipe) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05002750 pr_debug("incompatible file format\n");
2751 return -EINVAL;
2752 }
2753
Tom Zanussi8dc58102010-04-01 23:59:15 -05002754 return 0;
2755}
2756
Stephane Eranian69996df2012-02-09 23:21:06 +01002757static int read_attr(int fd, struct perf_header *ph,
2758 struct perf_file_attr *f_attr)
2759{
2760 struct perf_event_attr *attr = &f_attr->attr;
2761 size_t sz, left;
2762 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01002763 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01002764
2765 memset(f_attr, 0, sizeof(*f_attr));
2766
2767 /* read minimal guaranteed structure */
2768 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
2769 if (ret <= 0) {
2770 pr_debug("cannot read %d bytes of header attr\n",
2771 PERF_ATTR_SIZE_VER0);
2772 return -1;
2773 }
2774
2775 /* on file perf_event_attr size */
2776 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01002777
Stephane Eranian69996df2012-02-09 23:21:06 +01002778 if (ph->needs_swap)
2779 sz = bswap_32(sz);
2780
2781 if (sz == 0) {
2782 /* assume ABI0 */
2783 sz = PERF_ATTR_SIZE_VER0;
2784 } else if (sz > our_sz) {
2785 pr_debug("file uses a more recent and unsupported ABI"
2786 " (%zu bytes extra)\n", sz - our_sz);
2787 return -1;
2788 }
2789 /* what we have not yet read and that we know about */
2790 left = sz - PERF_ATTR_SIZE_VER0;
2791 if (left) {
2792 void *ptr = attr;
2793 ptr += PERF_ATTR_SIZE_VER0;
2794
2795 ret = readn(fd, ptr, left);
2796 }
2797 /* read perf_file_section, ids are read in caller */
2798 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
2799
2800 return ret <= 0 ? -1 : 0;
2801}
2802
Namhyung Kim831394b2012-09-06 11:10:46 +09002803static int perf_evsel__prepare_tracepoint_event(struct perf_evsel *evsel,
2804 struct pevent *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002805{
Namhyung Kim831394b2012-09-06 11:10:46 +09002806 struct event_format *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002807 char bf[128];
2808
Namhyung Kim831394b2012-09-06 11:10:46 +09002809 /* already prepared */
2810 if (evsel->tp_format)
2811 return 0;
2812
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002813 if (pevent == NULL) {
2814 pr_debug("broken or missing trace data\n");
2815 return -1;
2816 }
2817
Namhyung Kim831394b2012-09-06 11:10:46 +09002818 event = pevent_find_event(pevent, evsel->attr.config);
Namhyung Kima7619ae2013-04-18 21:24:16 +09002819 if (event == NULL) {
2820 pr_debug("cannot find event format for %d\n", (int)evsel->attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002821 return -1;
Namhyung Kima7619ae2013-04-18 21:24:16 +09002822 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002823
Namhyung Kim831394b2012-09-06 11:10:46 +09002824 if (!evsel->name) {
2825 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
2826 evsel->name = strdup(bf);
2827 if (evsel->name == NULL)
2828 return -1;
2829 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002830
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03002831 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002832 return 0;
2833}
2834
Namhyung Kim831394b2012-09-06 11:10:46 +09002835static int perf_evlist__prepare_tracepoint_events(struct perf_evlist *evlist,
2836 struct pevent *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002837{
2838 struct perf_evsel *pos;
2839
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002840 evlist__for_each_entry(evlist, pos) {
Namhyung Kim831394b2012-09-06 11:10:46 +09002841 if (pos->attr.type == PERF_TYPE_TRACEPOINT &&
2842 perf_evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002843 return -1;
2844 }
2845
2846 return 0;
2847}
2848
Jiri Olsad4339562013-07-17 19:49:41 +02002849int perf_session__read_header(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05002850{
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002851 struct perf_data_file *file = session->file;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002852 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002853 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002854 struct perf_file_attr f_attr;
2855 u64 f_id;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002856 int nr_attrs, nr_ids, i, j;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002857 int fd = perf_data_file__fd(file);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002858
Namhyung Kim334fe7a2013-03-11 16:43:12 +09002859 session->evlist = perf_evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002860 if (session->evlist == NULL)
2861 return -ENOMEM;
2862
Kan Liang2c071442015-08-28 05:48:05 -04002863 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03002864 session->machines.host.env = &header->env;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002865 if (perf_data_file__is_pipe(file))
Jiri Olsad4339562013-07-17 19:49:41 +02002866 return perf_header__read_pipe(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002867
Stephane Eranian69996df2012-02-09 23:21:06 +01002868 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002869 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002870
Namhyung Kimb314e5c2013-09-30 17:19:48 +09002871 /*
2872 * Sanity check that perf.data was written cleanly; data size is
2873 * initialized to 0 and updated only if the on_exit function is run.
2874 * If data size is still 0 then the file contains only partial
2875 * information. Just warn user and process it as much as it can.
2876 */
2877 if (f_header.data.size == 0) {
2878 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
2879 "Was the 'perf record' command properly terminated?\n",
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002880 file->path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09002881 }
2882
Stephane Eranian69996df2012-02-09 23:21:06 +01002883 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002884 lseek(fd, f_header.attrs.offset, SEEK_SET);
2885
2886 for (i = 0; i < nr_attrs; i++) {
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002887 struct perf_evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02002888 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002889
Stephane Eranian69996df2012-02-09 23:21:06 +01002890 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002891 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002892
David Ahern1060ab82015-04-09 16:15:46 -04002893 if (header->needs_swap) {
2894 f_attr.ids.size = bswap_64(f_attr.ids.size);
2895 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06002896 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04002897 }
David Aherneda39132011-07-15 12:34:09 -06002898
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02002899 tmp = lseek(fd, 0, SEEK_CUR);
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03002900 evsel = perf_evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002901
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002902 if (evsel == NULL)
2903 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002904
2905 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002906 /*
2907 * Do it before so that if perf_evsel__alloc_id fails, this
2908 * entry gets purged too at perf_evlist__delete().
2909 */
2910 perf_evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002911
2912 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002913 /*
2914 * We don't have the cpu and thread maps on the header, so
2915 * for allocating the perf_sample_id table we fake 1 cpu and
2916 * hattr->ids threads.
2917 */
2918 if (perf_evsel__alloc_id(evsel, 1, nr_ids))
2919 goto out_delete_evlist;
2920
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002921 lseek(fd, f_attr.ids.offset, SEEK_SET);
2922
2923 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002924 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002925 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002926
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002927 perf_evlist__id_add(session->evlist, evsel, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002928 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02002929
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002930 lseek(fd, tmp, SEEK_SET);
2931 }
2932
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -02002933 symbol_conf.nr_events = nr_attrs;
2934
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002935 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002936 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01002937
Namhyung Kim831394b2012-09-06 11:10:46 +09002938 if (perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002939 session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002940 goto out_delete_evlist;
2941
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002942 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002943out_errno:
2944 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002945
2946out_delete_evlist:
2947 perf_evlist__delete(session->evlist);
2948 session->evlist = NULL;
2949 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002950}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02002951
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02002952int perf_event__synthesize_attr(struct perf_tool *tool,
Robert Richterf4d83432012-08-16 21:10:17 +02002953 struct perf_event_attr *attr, u32 ids, u64 *id,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002954 perf_event__handler_t process)
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02002955{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002956 union perf_event *ev;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002957 size_t size;
2958 int err;
2959
2960 size = sizeof(struct perf_event_attr);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03002961 size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002962 size += sizeof(struct perf_event_header);
2963 size += ids * sizeof(u64);
2964
2965 ev = malloc(size);
2966
Chris Samuelce47dc52010-11-13 13:35:06 +11002967 if (ev == NULL)
2968 return -ENOMEM;
2969
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002970 ev->attr.attr = *attr;
2971 memcpy(ev->attr.id, id, ids * sizeof(u64));
2972
2973 ev->attr.header.type = PERF_RECORD_HEADER_ATTR;
Robert Richterf4d83432012-08-16 21:10:17 +02002974 ev->attr.header.size = (u16)size;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002975
Robert Richterf4d83432012-08-16 21:10:17 +02002976 if (ev->attr.header.size == size)
2977 err = process(tool, ev, NULL, NULL);
2978 else
2979 err = -E2BIG;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002980
2981 free(ev);
2982
2983 return err;
2984}
2985
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -07002986int perf_event__synthesize_features(struct perf_tool *tool,
2987 struct perf_session *session,
2988 struct perf_evlist *evlist,
2989 perf_event__handler_t process)
2990{
2991 struct perf_header *header = &session->header;
2992 struct feat_fd ff;
2993 struct feature_event *fe;
2994 size_t sz, sz_hdr;
2995 int feat, ret;
2996
2997 sz_hdr = sizeof(fe->header);
2998 sz = sizeof(union perf_event);
2999 /* get a nice alignment */
3000 sz = PERF_ALIGN(sz, page_size);
3001
3002 memset(&ff, 0, sizeof(ff));
3003
3004 ff.buf = malloc(sz);
3005 if (!ff.buf)
3006 return -ENOMEM;
3007
3008 ff.size = sz - sz_hdr;
3009
3010 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
3011 if (!feat_ops[feat].synthesize) {
3012 pr_debug("No record header feature for header :%d\n", feat);
3013 continue;
3014 }
3015
3016 ff.offset = sizeof(*fe);
3017
3018 ret = feat_ops[feat].write(&ff, evlist);
3019 if (ret || ff.offset <= (ssize_t)sizeof(*fe)) {
3020 pr_debug("Error writing feature\n");
3021 continue;
3022 }
3023 /* ff.buf may have changed due to realloc in do_write() */
3024 fe = ff.buf;
3025 memset(fe, 0, sizeof(*fe));
3026
3027 fe->feat_id = feat;
3028 fe->header.type = PERF_RECORD_HEADER_FEATURE;
3029 fe->header.size = ff.offset;
3030
3031 ret = process(tool, ff.buf, NULL, NULL);
3032 if (ret) {
3033 free(ff.buf);
3034 return ret;
3035 }
3036 }
3037 free(ff.buf);
3038 return 0;
3039}
3040
3041int perf_event__process_feature(struct perf_tool *tool,
3042 union perf_event *event,
3043 struct perf_session *session __maybe_unused)
3044{
3045 struct feat_fd ff = { .fd = 0 };
3046 struct feature_event *fe = (struct feature_event *)event;
3047 int type = fe->header.type;
3048 u64 feat = fe->feat_id;
3049
3050 if (type < 0 || type >= PERF_RECORD_HEADER_MAX) {
3051 pr_warning("invalid record type %d in pipe-mode\n", type);
3052 return 0;
3053 }
3054 if (feat == HEADER_RESERVED || feat > HEADER_LAST_FEATURE) {
3055 pr_warning("invalid record type %d in pipe-mode\n", type);
3056 return -1;
3057 }
3058
3059 if (!feat_ops[feat].process)
3060 return 0;
3061
3062 ff.buf = (void *)fe->data;
3063 ff.size = event->header.size - sizeof(event->header);
3064 ff.ph = &session->header;
3065
3066 if (feat_ops[feat].process(&ff, NULL))
3067 return -1;
3068
3069 if (!feat_ops[feat].print || !tool->show_feat_hdr)
3070 return 0;
3071
3072 if (!feat_ops[feat].full_only ||
3073 tool->show_feat_hdr >= SHOW_FEAT_HEADER_FULL_INFO) {
3074 feat_ops[feat].print(&ff, stdout);
3075 } else {
3076 fprintf(stdout, "# %s info available, use -I to display\n",
3077 feat_ops[feat].name);
3078 }
3079
3080 return 0;
3081}
3082
Jiri Olsaa6e52812015-10-25 15:51:37 +01003083static struct event_update_event *
3084event_update_event__new(size_t size, u64 type, u64 id)
3085{
3086 struct event_update_event *ev;
3087
3088 size += sizeof(*ev);
3089 size = PERF_ALIGN(size, sizeof(u64));
3090
3091 ev = zalloc(size);
3092 if (ev) {
3093 ev->header.type = PERF_RECORD_EVENT_UPDATE;
3094 ev->header.size = (u16)size;
3095 ev->type = type;
3096 ev->id = id;
3097 }
3098 return ev;
3099}
3100
3101int
3102perf_event__synthesize_event_update_unit(struct perf_tool *tool,
3103 struct perf_evsel *evsel,
3104 perf_event__handler_t process)
3105{
3106 struct event_update_event *ev;
3107 size_t size = strlen(evsel->unit);
3108 int err;
3109
3110 ev = event_update_event__new(size + 1, PERF_EVENT_UPDATE__UNIT, evsel->id[0]);
3111 if (ev == NULL)
3112 return -ENOMEM;
3113
3114 strncpy(ev->data, evsel->unit, size);
3115 err = process(tool, (union perf_event *)ev, NULL, NULL);
3116 free(ev);
3117 return err;
3118}
3119
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003120int
3121perf_event__synthesize_event_update_scale(struct perf_tool *tool,
3122 struct perf_evsel *evsel,
3123 perf_event__handler_t process)
3124{
3125 struct event_update_event *ev;
3126 struct event_update_event_scale *ev_data;
3127 int err;
3128
3129 ev = event_update_event__new(sizeof(*ev_data), PERF_EVENT_UPDATE__SCALE, evsel->id[0]);
3130 if (ev == NULL)
3131 return -ENOMEM;
3132
3133 ev_data = (struct event_update_event_scale *) ev->data;
3134 ev_data->scale = evsel->scale;
3135 err = process(tool, (union perf_event*) ev, NULL, NULL);
3136 free(ev);
3137 return err;
3138}
3139
Jiri Olsa802c9042015-10-25 15:51:39 +01003140int
3141perf_event__synthesize_event_update_name(struct perf_tool *tool,
3142 struct perf_evsel *evsel,
3143 perf_event__handler_t process)
3144{
3145 struct event_update_event *ev;
3146 size_t len = strlen(evsel->name);
3147 int err;
3148
3149 ev = event_update_event__new(len + 1, PERF_EVENT_UPDATE__NAME, evsel->id[0]);
3150 if (ev == NULL)
3151 return -ENOMEM;
3152
3153 strncpy(ev->data, evsel->name, len);
3154 err = process(tool, (union perf_event*) ev, NULL, NULL);
3155 free(ev);
3156 return err;
3157}
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003158
Jiri Olsa86ebb092015-10-25 15:51:40 +01003159int
3160perf_event__synthesize_event_update_cpus(struct perf_tool *tool,
3161 struct perf_evsel *evsel,
3162 perf_event__handler_t process)
3163{
3164 size_t size = sizeof(struct event_update_event);
3165 struct event_update_event *ev;
3166 int max, err;
3167 u16 type;
3168
3169 if (!evsel->own_cpus)
3170 return 0;
3171
3172 ev = cpu_map_data__alloc(evsel->own_cpus, &size, &type, &max);
3173 if (!ev)
3174 return -ENOMEM;
3175
3176 ev->header.type = PERF_RECORD_EVENT_UPDATE;
3177 ev->header.size = (u16)size;
3178 ev->type = PERF_EVENT_UPDATE__CPUS;
3179 ev->id = evsel->id[0];
3180
3181 cpu_map_data__synthesize((struct cpu_map_data *) ev->data,
3182 evsel->own_cpus,
3183 type, max);
3184
3185 err = process(tool, (union perf_event*) ev, NULL, NULL);
3186 free(ev);
3187 return err;
3188}
3189
Jiri Olsac853f932015-10-25 15:51:41 +01003190size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
3191{
3192 struct event_update_event *ev = &event->event_update;
3193 struct event_update_event_scale *ev_scale;
3194 struct event_update_event_cpus *ev_cpus;
3195 struct cpu_map *map;
3196 size_t ret;
3197
3198 ret = fprintf(fp, "\n... id: %" PRIu64 "\n", ev->id);
3199
3200 switch (ev->type) {
3201 case PERF_EVENT_UPDATE__SCALE:
3202 ev_scale = (struct event_update_event_scale *) ev->data;
3203 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
3204 break;
3205 case PERF_EVENT_UPDATE__UNIT:
3206 ret += fprintf(fp, "... unit: %s\n", ev->data);
3207 break;
3208 case PERF_EVENT_UPDATE__NAME:
3209 ret += fprintf(fp, "... name: %s\n", ev->data);
3210 break;
3211 case PERF_EVENT_UPDATE__CPUS:
3212 ev_cpus = (struct event_update_event_cpus *) ev->data;
3213 ret += fprintf(fp, "... ");
3214
3215 map = cpu_map__new_data(&ev_cpus->cpus);
3216 if (map)
3217 ret += cpu_map__fprintf(map, fp);
3218 else
3219 ret += fprintf(fp, "failed to get cpus\n");
3220 break;
3221 default:
3222 ret += fprintf(fp, "... unknown type\n");
3223 break;
3224 }
3225
3226 return ret;
3227}
Jiri Olsa86ebb092015-10-25 15:51:40 +01003228
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003229int perf_event__synthesize_attrs(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003230 struct perf_session *session,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003231 perf_event__handler_t process)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003232{
Robert Richter6606f872012-08-16 21:10:19 +02003233 struct perf_evsel *evsel;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003234 int err = 0;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003235
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003236 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003237 err = perf_event__synthesize_attr(tool, &evsel->attr, evsel->ids,
3238 evsel->id, process);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003239 if (err) {
3240 pr_debug("failed to create perf header attribute\n");
3241 return err;
3242 }
3243 }
3244
3245 return err;
3246}
3247
Adrian Hunter47c3d102013-07-04 16:20:21 +03003248int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
3249 union perf_event *event,
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003250 struct perf_evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003251{
Robert Richterf4d83432012-08-16 21:10:17 +02003252 u32 i, ids, n_ids;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003253 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003254 struct perf_evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003255
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003256 if (evlist == NULL) {
Namhyung Kim334fe7a2013-03-11 16:43:12 +09003257 *pevlist = evlist = perf_evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003258 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003259 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003260 }
3261
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03003262 evsel = perf_evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003263 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003264 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003265
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003266 perf_evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003267
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003268 ids = event->header.size;
3269 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003270 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003271 /*
3272 * We don't have the cpu and thread maps on the header, so
3273 * for allocating the perf_sample_id table we fake 1 cpu and
3274 * hattr->ids threads.
3275 */
3276 if (perf_evsel__alloc_id(evsel, 1, n_ids))
3277 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003278
3279 for (i = 0; i < n_ids; i++) {
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003280 perf_evlist__id_add(evlist, evsel, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003281 }
3282
Adrian Hunter7e0d6fc2013-07-04 16:20:29 +03003283 symbol_conf.nr_events = evlist->nr_entries;
3284
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003285 return 0;
3286}
Tom Zanussicd19a032010-04-01 23:59:20 -05003287
Jiri Olsaffe777252015-10-25 15:51:36 +01003288int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
3289 union perf_event *event,
3290 struct perf_evlist **pevlist)
3291{
3292 struct event_update_event *ev = &event->event_update;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003293 struct event_update_event_scale *ev_scale;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003294 struct event_update_event_cpus *ev_cpus;
Jiri Olsaffe777252015-10-25 15:51:36 +01003295 struct perf_evlist *evlist;
3296 struct perf_evsel *evsel;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003297 struct cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01003298
3299 if (!pevlist || *pevlist == NULL)
3300 return -EINVAL;
3301
3302 evlist = *pevlist;
3303
3304 evsel = perf_evlist__id2evsel(evlist, ev->id);
3305 if (evsel == NULL)
3306 return -EINVAL;
3307
Jiri Olsaa6e52812015-10-25 15:51:37 +01003308 switch (ev->type) {
3309 case PERF_EVENT_UPDATE__UNIT:
3310 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003311 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01003312 case PERF_EVENT_UPDATE__NAME:
3313 evsel->name = strdup(ev->data);
3314 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003315 case PERF_EVENT_UPDATE__SCALE:
3316 ev_scale = (struct event_update_event_scale *) ev->data;
3317 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melo8434a2e2017-02-08 21:57:22 -03003318 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003319 case PERF_EVENT_UPDATE__CPUS:
3320 ev_cpus = (struct event_update_event_cpus *) ev->data;
3321
3322 map = cpu_map__new_data(&ev_cpus->cpus);
3323 if (map)
3324 evsel->own_cpus = map;
3325 else
3326 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01003327 default:
3328 break;
3329 }
3330
Jiri Olsaffe777252015-10-25 15:51:36 +01003331 return 0;
3332}
3333
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003334int perf_event__synthesize_tracing_data(struct perf_tool *tool, int fd,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003335 struct perf_evlist *evlist,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02003336 perf_event__handler_t process)
Tom Zanussi92155452010-04-01 23:59:21 -05003337{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003338 union perf_event ev;
Jiri Olsa29208e52011-10-20 15:59:43 +02003339 struct tracing_data *tdata;
Tom Zanussi92155452010-04-01 23:59:21 -05003340 ssize_t size = 0, aligned_size = 0, padding;
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003341 struct feat_fd ff;
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003342 int err __maybe_unused = 0;
Tom Zanussi92155452010-04-01 23:59:21 -05003343
Jiri Olsa29208e52011-10-20 15:59:43 +02003344 /*
3345 * We are going to store the size of the data followed
3346 * by the data contents. Since the fd descriptor is a pipe,
3347 * we cannot seek back to store the size of the data once
3348 * we know it. Instead we:
3349 *
3350 * - write the tracing data to the temp file
3351 * - get/write the data size to pipe
3352 * - write the tracing data from the temp file
3353 * to the pipe
3354 */
3355 tdata = tracing_data_get(&evlist->entries, fd, true);
3356 if (!tdata)
3357 return -1;
3358
Tom Zanussi92155452010-04-01 23:59:21 -05003359 memset(&ev, 0, sizeof(ev));
3360
3361 ev.tracing_data.header.type = PERF_RECORD_HEADER_TRACING_DATA;
Jiri Olsa29208e52011-10-20 15:59:43 +02003362 size = tdata->size;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003363 aligned_size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi92155452010-04-01 23:59:21 -05003364 padding = aligned_size - size;
3365 ev.tracing_data.header.size = sizeof(ev.tracing_data);
3366 ev.tracing_data.size = aligned_size;
3367
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003368 process(tool, &ev, NULL, NULL);
Tom Zanussi92155452010-04-01 23:59:21 -05003369
Jiri Olsa29208e52011-10-20 15:59:43 +02003370 /*
3371 * The put function will copy all the tracing data
3372 * stored in temp file to the pipe.
3373 */
3374 tracing_data_put(tdata);
3375
David Carrillo-Cisnerosccebbeb2017-07-17 21:25:39 -07003376 ff = (struct feat_fd){ .fd = fd };
3377 if (write_padded(&ff, NULL, 0, padding))
David Carrillo-Cisneros2ff53652017-07-17 21:25:36 -07003378 return -1;
Tom Zanussi92155452010-04-01 23:59:21 -05003379
3380 return aligned_size;
3381}
3382
Adrian Hunter47c3d102013-07-04 16:20:21 +03003383int perf_event__process_tracing_data(struct perf_tool *tool __maybe_unused,
3384 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003385 struct perf_session *session)
Tom Zanussi92155452010-04-01 23:59:21 -05003386{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003387 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003388 int fd = perf_data_file__fd(session->file);
3389 off_t offset = lseek(fd, 0, SEEK_CUR);
Tom Zanussi92155452010-04-01 23:59:21 -05003390 char buf[BUFSIZ];
3391
3392 /* setup for reading amidst mmap */
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003393 lseek(fd, offset + sizeof(struct tracing_data_event),
Tom Zanussi92155452010-04-01 23:59:21 -05003394 SEEK_SET);
3395
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003396 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003397 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003398 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05003399
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003400 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003401 pr_err("%s: reading input file", __func__);
3402 return -1;
3403 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003404 if (session->repipe) {
3405 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003406 if (retw <= 0 || retw != padding) {
3407 pr_err("%s: repiping tracing data padding", __func__);
3408 return -1;
3409 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003410 }
Tom Zanussi92155452010-04-01 23:59:21 -05003411
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003412 if (size_read + padding != size) {
3413 pr_err("%s: tracing data size mismatch", __func__);
3414 return -1;
3415 }
Tom Zanussi92155452010-04-01 23:59:21 -05003416
Namhyung Kim831394b2012-09-06 11:10:46 +09003417 perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003418 session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03003419
Tom Zanussi92155452010-04-01 23:59:21 -05003420 return size_read + padding;
3421}
Tom Zanussic7929e42010-04-01 23:59:22 -05003422
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003423int perf_event__synthesize_build_id(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003424 struct dso *pos, u16 misc,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003425 perf_event__handler_t process,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02003426 struct machine *machine)
Tom Zanussic7929e42010-04-01 23:59:22 -05003427{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003428 union perf_event ev;
Tom Zanussic7929e42010-04-01 23:59:22 -05003429 size_t len;
3430 int err = 0;
3431
3432 if (!pos->hit)
3433 return err;
3434
3435 memset(&ev, 0, sizeof(ev));
3436
3437 len = pos->long_name_len + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003438 len = PERF_ALIGN(len, NAME_ALIGN);
Tom Zanussic7929e42010-04-01 23:59:22 -05003439 memcpy(&ev.build_id.build_id, pos->build_id, sizeof(pos->build_id));
3440 ev.build_id.header.type = PERF_RECORD_HEADER_BUILD_ID;
3441 ev.build_id.header.misc = misc;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03003442 ev.build_id.pid = machine->pid;
Tom Zanussic7929e42010-04-01 23:59:22 -05003443 ev.build_id.header.size = sizeof(ev.build_id) + len;
3444 memcpy(&ev.build_id.filename, pos->long_name, pos->long_name_len);
3445
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003446 err = process(tool, &ev, NULL, machine);
Tom Zanussic7929e42010-04-01 23:59:22 -05003447
3448 return err;
3449}
3450
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003451int perf_event__process_build_id(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003452 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003453 struct perf_session *session)
Tom Zanussic7929e42010-04-01 23:59:22 -05003454{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003455 __event_process_build_id(&event->build_id,
3456 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08003457 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05003458 return 0;
3459}