blob: b3d947b98a7c23408220fbc9fafbbea1d9aa5782 [file] [log] [blame]
Arnaldo Carvalho de Meloa9072bc2011-10-26 12:41:38 -02001#include "util.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002#include <sys/types.h>
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02003#include <byteswap.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02004#include <unistd.h>
5#include <stdio.h>
6#include <stdlib.h>
Frederic Weisbecker8671dab2009-11-11 04:51:03 +01007#include <linux/list.h>
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02008#include <linux/kernel.h>
Robert Richterb1e5a9b2011-12-07 10:02:57 +01009#include <linux/bitops.h>
Stephane Eranianfbe96f22011-09-30 15:40:40 +020010#include <sys/utsname.h>
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020011
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -020012#include "evlist.h"
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -030013#include "evsel.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020014#include "header.h"
Frederic Weisbecker03456a12009-10-06 23:36:47 +020015#include "../perf.h"
16#include "trace-event.h"
Arnaldo Carvalho de Melo301a0b02009-12-13 19:50:25 -020017#include "session.h"
Frederic Weisbecker8671dab2009-11-11 04:51:03 +010018#include "symbol.h"
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +010019#include "debug.h"
Stephane Eranianfbe96f22011-09-30 15:40:40 +020020#include "cpumap.h"
Robert Richter50a96672012-08-16 21:10:24 +020021#include "pmu.h"
Jiri Olsa7dbf4dc2012-09-10 18:50:19 +020022#include "vdso.h"
Namhyung Kima1ae5652012-09-24 17:14:59 +090023#include "strbuf.h"
Jiri Olsaebb296c2012-10-27 23:18:28 +020024#include "build-id.h"
Jiri Olsacc9784bd2013-10-15 16:27:34 +020025#include "data.h"
Jiri Olsa720e98b2016-02-16 16:01:43 +010026#include <api/fs/fs.h>
27#include "asm/bug.h"
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020028
Stephane Eranian73323f52012-02-02 13:54:44 +010029/*
30 * magic2 = "PERFILE2"
31 * must be a numerical value to let the endianness
32 * determine the memory layout. That way we are able
33 * to detect endianness when reading the perf.data file
34 * back.
35 *
36 * we check for legacy (PERFFILE) format.
37 */
38static const char *__perf_magic1 = "PERFFILE";
39static const u64 __perf_magic2 = 0x32454c4946524550ULL;
40static const u64 __perf_magic2_sw = 0x50455246494c4532ULL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020041
Stephane Eranian73323f52012-02-02 13:54:44 +010042#define PERF_MAGIC __perf_magic2
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020043
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020044struct perf_file_attr {
Ingo Molnarcdd6c482009-09-21 12:02:48 +020045 struct perf_event_attr attr;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020046 struct perf_file_section ids;
47};
48
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030049void perf_header__set_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020050{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030051 set_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020052}
53
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030054void perf_header__clear_feat(struct perf_header *header, int feat)
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020055{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030056 clear_bit(feat, header->adds_features);
Arnaldo Carvalho de Melobaa2f6c2010-11-26 19:39:15 -020057}
58
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030059bool perf_header__has_feat(const struct perf_header *header, int feat)
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020060{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -030061 return test_bit(feat, header->adds_features);
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -020062}
63
Arnaldo Carvalho de Melo3726cc72009-11-17 01:18:12 -020064static int do_write(int fd, const void *buf, size_t size)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020065{
66 while (size) {
67 int ret = write(fd, buf, size);
68
69 if (ret < 0)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -020070 return -errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020071
72 size -= ret;
73 buf += ret;
74 }
Arnaldo Carvalho de Melo3726cc72009-11-17 01:18:12 -020075
76 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +020077}
78
Namhyung Kime195fac2014-11-04 10:14:30 +090079int write_padded(int fd, const void *bf, size_t count, size_t count_aligned)
Arnaldo Carvalho de Melof92cb242010-01-04 16:19:28 -020080{
81 static const char zero_buf[NAME_ALIGN];
82 int err = do_write(fd, bf, count);
83
84 if (!err)
85 err = do_write(fd, zero_buf, count_aligned - count);
86
87 return err;
88}
89
Kan Liang2bb00d22015-09-01 09:58:12 -040090#define string_size(str) \
91 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
92
Stephane Eranianfbe96f22011-09-30 15:40:40 +020093static int do_write_string(int fd, const char *str)
94{
95 u32 len, olen;
96 int ret;
97
98 olen = strlen(str) + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +030099 len = PERF_ALIGN(olen, NAME_ALIGN);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200100
101 /* write len, incl. \0 */
102 ret = do_write(fd, &len, sizeof(len));
103 if (ret < 0)
104 return ret;
105
106 return write_padded(fd, str, olen, len);
107}
108
109static char *do_read_string(int fd, struct perf_header *ph)
110{
111 ssize_t sz, ret;
112 u32 len;
113 char *buf;
114
Namhyung Kim5323f602012-12-17 15:38:54 +0900115 sz = readn(fd, &len, sizeof(len));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200116 if (sz < (ssize_t)sizeof(len))
117 return NULL;
118
119 if (ph->needs_swap)
120 len = bswap_32(len);
121
122 buf = malloc(len);
123 if (!buf)
124 return NULL;
125
Namhyung Kim5323f602012-12-17 15:38:54 +0900126 ret = readn(fd, buf, len);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200127 if (ret == (ssize_t)len) {
128 /*
129 * strings are padded by zeroes
130 * thus the actual strlen of buf
131 * may be less than len
132 */
133 return buf;
134 }
135
136 free(buf);
137 return NULL;
138}
139
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300140static int write_tracing_data(int fd, struct perf_header *h __maybe_unused,
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200141 struct perf_evlist *evlist)
142{
143 return read_tracing_data(fd, &evlist->entries);
144}
145
146
147static int write_build_id(int fd, struct perf_header *h,
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300148 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200149{
150 struct perf_session *session;
151 int err;
152
153 session = container_of(h, struct perf_session, header);
154
Robert Richtere20960c2011-12-07 10:02:55 +0100155 if (!perf_session__read_build_ids(session, true))
156 return -1;
157
Namhyung Kim714c9c42014-11-04 10:14:29 +0900158 err = perf_session__write_buildid_table(session, fd);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200159 if (err < 0) {
160 pr_debug("failed to write buildid table\n");
161 return err;
162 }
Namhyung Kim73c5d222014-11-07 22:57:56 +0900163 perf_session__cache_build_ids(session);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200164
165 return 0;
166}
167
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300168static int write_hostname(int fd, struct perf_header *h __maybe_unused,
169 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200170{
171 struct utsname uts;
172 int ret;
173
174 ret = uname(&uts);
175 if (ret < 0)
176 return -1;
177
178 return do_write_string(fd, uts.nodename);
179}
180
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300181static int write_osrelease(int fd, struct perf_header *h __maybe_unused,
182 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200183{
184 struct utsname uts;
185 int ret;
186
187 ret = uname(&uts);
188 if (ret < 0)
189 return -1;
190
191 return do_write_string(fd, uts.release);
192}
193
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300194static int write_arch(int fd, struct perf_header *h __maybe_unused,
195 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200196{
197 struct utsname uts;
198 int ret;
199
200 ret = uname(&uts);
201 if (ret < 0)
202 return -1;
203
204 return do_write_string(fd, uts.machine);
205}
206
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300207static int write_version(int fd, struct perf_header *h __maybe_unused,
208 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200209{
210 return do_write_string(fd, perf_version_string);
211}
212
Wang Nan493c3032014-10-24 09:45:26 +0800213static int __write_cpudesc(int fd, const char *cpuinfo_proc)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200214{
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200215 FILE *file;
216 char *buf = NULL;
217 char *s, *p;
Wang Nan493c3032014-10-24 09:45:26 +0800218 const char *search = cpuinfo_proc;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200219 size_t len = 0;
220 int ret = -1;
221
222 if (!search)
223 return -1;
224
225 file = fopen("/proc/cpuinfo", "r");
226 if (!file)
227 return -1;
228
229 while (getline(&buf, &len, file) > 0) {
230 ret = strncmp(buf, search, strlen(search));
231 if (!ret)
232 break;
233 }
234
Wang Naned307752014-10-16 11:08:29 +0800235 if (ret) {
236 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200237 goto done;
Wang Naned307752014-10-16 11:08:29 +0800238 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200239
240 s = buf;
241
242 p = strchr(buf, ':');
243 if (p && *(p+1) == ' ' && *(p+2))
244 s = p + 2;
245 p = strchr(s, '\n');
246 if (p)
247 *p = '\0';
248
249 /* squash extra space characters (branding string) */
250 p = s;
251 while (*p) {
252 if (isspace(*p)) {
253 char *r = p + 1;
254 char *q = r;
255 *p = ' ';
256 while (*q && isspace(*q))
257 q++;
258 if (q != (p+1))
259 while ((*r++ = *q++));
260 }
261 p++;
262 }
263 ret = do_write_string(fd, s);
264done:
265 free(buf);
266 fclose(file);
267 return ret;
268}
269
Wang Nan493c3032014-10-24 09:45:26 +0800270static int write_cpudesc(int fd, struct perf_header *h __maybe_unused,
271 struct perf_evlist *evlist __maybe_unused)
272{
273#ifndef CPUINFO_PROC
274#define CPUINFO_PROC {"model name", }
275#endif
276 const char *cpuinfo_procs[] = CPUINFO_PROC;
277 unsigned int i;
278
279 for (i = 0; i < ARRAY_SIZE(cpuinfo_procs); i++) {
280 int ret;
281 ret = __write_cpudesc(fd, cpuinfo_procs[i]);
282 if (ret >= 0)
283 return ret;
284 }
285 return -1;
286}
287
288
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300289static int write_nrcpus(int fd, struct perf_header *h __maybe_unused,
290 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200291{
292 long nr;
293 u32 nrc, nra;
294 int ret;
295
296 nr = sysconf(_SC_NPROCESSORS_CONF);
297 if (nr < 0)
298 return -1;
299
300 nrc = (u32)(nr & UINT_MAX);
301
302 nr = sysconf(_SC_NPROCESSORS_ONLN);
303 if (nr < 0)
304 return -1;
305
306 nra = (u32)(nr & UINT_MAX);
307
308 ret = do_write(fd, &nrc, sizeof(nrc));
309 if (ret < 0)
310 return ret;
311
312 return do_write(fd, &nra, sizeof(nra));
313}
314
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300315static int write_event_desc(int fd, struct perf_header *h __maybe_unused,
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200316 struct perf_evlist *evlist)
317{
Robert Richter6606f872012-08-16 21:10:19 +0200318 struct perf_evsel *evsel;
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900319 u32 nre, nri, sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200320 int ret;
321
Namhyung Kim74ba9e12012-09-05 14:02:47 +0900322 nre = evlist->nr_entries;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200323
324 /*
325 * write number of events
326 */
327 ret = do_write(fd, &nre, sizeof(nre));
328 if (ret < 0)
329 return ret;
330
331 /*
332 * size of perf_event_attr struct
333 */
Robert Richter6606f872012-08-16 21:10:19 +0200334 sz = (u32)sizeof(evsel->attr);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200335 ret = do_write(fd, &sz, sizeof(sz));
336 if (ret < 0)
337 return ret;
338
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300339 evlist__for_each_entry(evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +0200340 ret = do_write(fd, &evsel->attr, sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200341 if (ret < 0)
342 return ret;
343 /*
344 * write number of unique id per event
345 * there is one id per instance of an event
346 *
347 * copy into an nri to be independent of the
348 * type of ids,
349 */
Robert Richter6606f872012-08-16 21:10:19 +0200350 nri = evsel->ids;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200351 ret = do_write(fd, &nri, sizeof(nri));
352 if (ret < 0)
353 return ret;
354
355 /*
356 * write event string as passed on cmdline
357 */
Robert Richter6606f872012-08-16 21:10:19 +0200358 ret = do_write_string(fd, perf_evsel__name(evsel));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200359 if (ret < 0)
360 return ret;
361 /*
362 * write unique ids for this event
363 */
Robert Richter6606f872012-08-16 21:10:19 +0200364 ret = do_write(fd, evsel->id, evsel->ids * sizeof(u64));
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200365 if (ret < 0)
366 return ret;
367 }
368 return 0;
369}
370
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300371static int write_cmdline(int fd, struct perf_header *h __maybe_unused,
372 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200373{
374 char buf[MAXPATHLEN];
375 char proc[32];
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300376 u32 n;
377 int i, ret;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200378
379 /*
380 * actual atual path to perf binary
381 */
382 sprintf(proc, "/proc/%d/exe", getpid());
383 ret = readlink(proc, buf, sizeof(buf));
384 if (ret <= 0)
385 return -1;
386
387 /* readlink() does not add null termination */
388 buf[ret] = '\0';
389
390 /* account for binary path */
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300391 n = perf_env.nr_cmdline + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200392
393 ret = do_write(fd, &n, sizeof(n));
394 if (ret < 0)
395 return ret;
396
397 ret = do_write_string(fd, buf);
398 if (ret < 0)
399 return ret;
400
Arnaldo Carvalho de Melob6998692015-09-08 16:58:20 -0300401 for (i = 0 ; i < perf_env.nr_cmdline; i++) {
402 ret = do_write_string(fd, perf_env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200403 if (ret < 0)
404 return ret;
405 }
406 return 0;
407}
408
409#define CORE_SIB_FMT \
410 "/sys/devices/system/cpu/cpu%d/topology/core_siblings_list"
411#define THRD_SIB_FMT \
412 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list"
413
414struct cpu_topo {
Kan Liang2bb00d22015-09-01 09:58:12 -0400415 u32 cpu_nr;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200416 u32 core_sib;
417 u32 thread_sib;
418 char **core_siblings;
419 char **thread_siblings;
420};
421
422static int build_cpu_topo(struct cpu_topo *tp, int cpu)
423{
424 FILE *fp;
425 char filename[MAXPATHLEN];
426 char *buf = NULL, *p;
427 size_t len = 0;
Stephane Eranianc5885742013-08-14 12:04:26 +0200428 ssize_t sret;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200429 u32 i = 0;
430 int ret = -1;
431
432 sprintf(filename, CORE_SIB_FMT, cpu);
433 fp = fopen(filename, "r");
434 if (!fp)
Stephane Eranianc5885742013-08-14 12:04:26 +0200435 goto try_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200436
Stephane Eranianc5885742013-08-14 12:04:26 +0200437 sret = getline(&buf, &len, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200438 fclose(fp);
Stephane Eranianc5885742013-08-14 12:04:26 +0200439 if (sret <= 0)
440 goto try_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200441
442 p = strchr(buf, '\n');
443 if (p)
444 *p = '\0';
445
446 for (i = 0; i < tp->core_sib; i++) {
447 if (!strcmp(buf, tp->core_siblings[i]))
448 break;
449 }
450 if (i == tp->core_sib) {
451 tp->core_siblings[i] = buf;
452 tp->core_sib++;
453 buf = NULL;
454 len = 0;
455 }
Stephane Eranianc5885742013-08-14 12:04:26 +0200456 ret = 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200457
Stephane Eranianc5885742013-08-14 12:04:26 +0200458try_threads:
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200459 sprintf(filename, THRD_SIB_FMT, cpu);
460 fp = fopen(filename, "r");
461 if (!fp)
462 goto done;
463
464 if (getline(&buf, &len, fp) <= 0)
465 goto done;
466
467 p = strchr(buf, '\n');
468 if (p)
469 *p = '\0';
470
471 for (i = 0; i < tp->thread_sib; i++) {
472 if (!strcmp(buf, tp->thread_siblings[i]))
473 break;
474 }
475 if (i == tp->thread_sib) {
476 tp->thread_siblings[i] = buf;
477 tp->thread_sib++;
478 buf = NULL;
479 }
480 ret = 0;
481done:
482 if(fp)
483 fclose(fp);
484 free(buf);
485 return ret;
486}
487
488static void free_cpu_topo(struct cpu_topo *tp)
489{
490 u32 i;
491
492 if (!tp)
493 return;
494
495 for (i = 0 ; i < tp->core_sib; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300496 zfree(&tp->core_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200497
498 for (i = 0 ; i < tp->thread_sib; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300499 zfree(&tp->thread_siblings[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200500
501 free(tp);
502}
503
504static struct cpu_topo *build_cpu_topology(void)
505{
506 struct cpu_topo *tp;
507 void *addr;
508 u32 nr, i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300509 size_t sz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200510 long ncpus;
511 int ret = -1;
512
513 ncpus = sysconf(_SC_NPROCESSORS_CONF);
514 if (ncpus < 0)
515 return NULL;
516
517 nr = (u32)(ncpus & UINT_MAX);
518
519 sz = nr * sizeof(char *);
520
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300521 addr = calloc(1, sizeof(*tp) + 2 * sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200522 if (!addr)
523 return NULL;
524
525 tp = addr;
Kan Liang2bb00d22015-09-01 09:58:12 -0400526 tp->cpu_nr = nr;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200527 addr += sizeof(*tp);
528 tp->core_siblings = addr;
529 addr += sz;
530 tp->thread_siblings = addr;
531
532 for (i = 0; i < nr; i++) {
533 ret = build_cpu_topo(tp, i);
534 if (ret < 0)
535 break;
536 }
537 if (ret) {
538 free_cpu_topo(tp);
539 tp = NULL;
540 }
541 return tp;
542}
543
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300544static int write_cpu_topology(int fd, struct perf_header *h __maybe_unused,
545 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200546{
547 struct cpu_topo *tp;
548 u32 i;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300549 int ret, j;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200550
551 tp = build_cpu_topology();
552 if (!tp)
553 return -1;
554
555 ret = do_write(fd, &tp->core_sib, sizeof(tp->core_sib));
556 if (ret < 0)
557 goto done;
558
559 for (i = 0; i < tp->core_sib; i++) {
560 ret = do_write_string(fd, tp->core_siblings[i]);
561 if (ret < 0)
562 goto done;
563 }
564 ret = do_write(fd, &tp->thread_sib, sizeof(tp->thread_sib));
565 if (ret < 0)
566 goto done;
567
568 for (i = 0; i < tp->thread_sib; i++) {
569 ret = do_write_string(fd, tp->thread_siblings[i]);
570 if (ret < 0)
571 break;
572 }
Kan Liang2bb00d22015-09-01 09:58:12 -0400573
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300574 ret = perf_env__read_cpu_topology_map(&perf_env);
575 if (ret < 0)
576 goto done;
577
578 for (j = 0; j < perf_env.nr_cpus_avail; j++) {
579 ret = do_write(fd, &perf_env.cpu[j].core_id,
580 sizeof(perf_env.cpu[j].core_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400581 if (ret < 0)
582 return ret;
Arnaldo Carvalho de Meloaa36ddd2015-09-09 10:37:01 -0300583 ret = do_write(fd, &perf_env.cpu[j].socket_id,
584 sizeof(perf_env.cpu[j].socket_id));
Kan Liang2bb00d22015-09-01 09:58:12 -0400585 if (ret < 0)
586 return ret;
587 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200588done:
589 free_cpu_topo(tp);
590 return ret;
591}
592
593
594
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300595static int write_total_mem(int fd, struct perf_header *h __maybe_unused,
596 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200597{
598 char *buf = NULL;
599 FILE *fp;
600 size_t len = 0;
601 int ret = -1, n;
602 uint64_t mem;
603
604 fp = fopen("/proc/meminfo", "r");
605 if (!fp)
606 return -1;
607
608 while (getline(&buf, &len, fp) > 0) {
609 ret = strncmp(buf, "MemTotal:", 9);
610 if (!ret)
611 break;
612 }
613 if (!ret) {
614 n = sscanf(buf, "%*s %"PRIu64, &mem);
615 if (n == 1)
616 ret = do_write(fd, &mem, sizeof(mem));
Wang Naned307752014-10-16 11:08:29 +0800617 } else
618 ret = -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200619 free(buf);
620 fclose(fp);
621 return ret;
622}
623
624static int write_topo_node(int fd, int node)
625{
626 char str[MAXPATHLEN];
627 char field[32];
628 char *buf = NULL, *p;
629 size_t len = 0;
630 FILE *fp;
631 u64 mem_total, mem_free, mem;
632 int ret = -1;
633
634 sprintf(str, "/sys/devices/system/node/node%d/meminfo", node);
635 fp = fopen(str, "r");
636 if (!fp)
637 return -1;
638
639 while (getline(&buf, &len, fp) > 0) {
640 /* skip over invalid lines */
641 if (!strchr(buf, ':'))
642 continue;
Alan Coxa761a2d2014-01-20 19:10:11 +0100643 if (sscanf(buf, "%*s %*d %31s %"PRIu64, field, &mem) != 2)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200644 goto done;
645 if (!strcmp(field, "MemTotal:"))
646 mem_total = mem;
647 if (!strcmp(field, "MemFree:"))
648 mem_free = mem;
649 }
650
651 fclose(fp);
Thomas Jarosch5809fde2013-01-28 10:21:14 +0100652 fp = NULL;
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200653
654 ret = do_write(fd, &mem_total, sizeof(u64));
655 if (ret)
656 goto done;
657
658 ret = do_write(fd, &mem_free, sizeof(u64));
659 if (ret)
660 goto done;
661
662 ret = -1;
663 sprintf(str, "/sys/devices/system/node/node%d/cpulist", node);
664
665 fp = fopen(str, "r");
666 if (!fp)
667 goto done;
668
669 if (getline(&buf, &len, fp) <= 0)
670 goto done;
671
672 p = strchr(buf, '\n');
673 if (p)
674 *p = '\0';
675
676 ret = do_write_string(fd, buf);
677done:
678 free(buf);
Thomas Jarosch5809fde2013-01-28 10:21:14 +0100679 if (fp)
680 fclose(fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200681 return ret;
682}
683
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300684static int write_numa_topology(int fd, struct perf_header *h __maybe_unused,
685 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200686{
687 char *buf = NULL;
688 size_t len = 0;
689 FILE *fp;
690 struct cpu_map *node_map = NULL;
691 char *c;
692 u32 nr, i, j;
693 int ret = -1;
694
695 fp = fopen("/sys/devices/system/node/online", "r");
696 if (!fp)
697 return -1;
698
699 if (getline(&buf, &len, fp) <= 0)
700 goto done;
701
702 c = strchr(buf, '\n');
703 if (c)
704 *c = '\0';
705
706 node_map = cpu_map__new(buf);
707 if (!node_map)
708 goto done;
709
710 nr = (u32)node_map->nr;
711
712 ret = do_write(fd, &nr, sizeof(nr));
713 if (ret < 0)
714 goto done;
715
716 for (i = 0; i < nr; i++) {
717 j = (u32)node_map->map[i];
718 ret = do_write(fd, &j, sizeof(j));
719 if (ret < 0)
720 break;
721
722 ret = write_topo_node(fd, i);
723 if (ret < 0)
724 break;
725 }
726done:
727 free(buf);
728 fclose(fp);
Masami Hiramatsu5191d8872015-12-09 11:11:35 +0900729 cpu_map__put(node_map);
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200730 return ret;
731}
732
733/*
Robert Richter50a96672012-08-16 21:10:24 +0200734 * File format:
735 *
736 * struct pmu_mappings {
737 * u32 pmu_num;
738 * struct pmu_map {
739 * u32 type;
740 * char name[];
741 * }[pmu_num];
742 * };
743 */
744
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300745static int write_pmu_mappings(int fd, struct perf_header *h __maybe_unused,
746 struct perf_evlist *evlist __maybe_unused)
Robert Richter50a96672012-08-16 21:10:24 +0200747{
748 struct perf_pmu *pmu = NULL;
749 off_t offset = lseek(fd, 0, SEEK_CUR);
750 __u32 pmu_num = 0;
Namhyung Kim5323f602012-12-17 15:38:54 +0900751 int ret;
Robert Richter50a96672012-08-16 21:10:24 +0200752
753 /* write real pmu_num later */
Namhyung Kim5323f602012-12-17 15:38:54 +0900754 ret = do_write(fd, &pmu_num, sizeof(pmu_num));
755 if (ret < 0)
756 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200757
758 while ((pmu = perf_pmu__scan(pmu))) {
759 if (!pmu->name)
760 continue;
761 pmu_num++;
Namhyung Kim5323f602012-12-17 15:38:54 +0900762
763 ret = do_write(fd, &pmu->type, sizeof(pmu->type));
764 if (ret < 0)
765 return ret;
766
767 ret = do_write_string(fd, pmu->name);
768 if (ret < 0)
769 return ret;
Robert Richter50a96672012-08-16 21:10:24 +0200770 }
771
772 if (pwrite(fd, &pmu_num, sizeof(pmu_num), offset) != sizeof(pmu_num)) {
773 /* discard all */
774 lseek(fd, offset, SEEK_SET);
775 return -1;
776 }
777
778 return 0;
779}
780
781/*
Namhyung Kima8bb5592013-01-22 18:09:31 +0900782 * File format:
783 *
784 * struct group_descs {
785 * u32 nr_groups;
786 * struct group_desc {
787 * char name[];
788 * u32 leader_idx;
789 * u32 nr_members;
790 * }[nr_groups];
791 * };
792 */
793static int write_group_desc(int fd, struct perf_header *h __maybe_unused,
794 struct perf_evlist *evlist)
795{
796 u32 nr_groups = evlist->nr_groups;
797 struct perf_evsel *evsel;
798 int ret;
799
800 ret = do_write(fd, &nr_groups, sizeof(nr_groups));
801 if (ret < 0)
802 return ret;
803
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -0300804 evlist__for_each_entry(evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +0900805 if (perf_evsel__is_group_leader(evsel) &&
806 evsel->nr_members > 1) {
807 const char *name = evsel->group_name ?: "{anon_group}";
808 u32 leader_idx = evsel->idx;
809 u32 nr_members = evsel->nr_members;
810
811 ret = do_write_string(fd, name);
812 if (ret < 0)
813 return ret;
814
815 ret = do_write(fd, &leader_idx, sizeof(leader_idx));
816 if (ret < 0)
817 return ret;
818
819 ret = do_write(fd, &nr_members, sizeof(nr_members));
820 if (ret < 0)
821 return ret;
822 }
823 }
824 return 0;
825}
826
827/*
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200828 * default get_cpuid(): nothing gets recorded
Jiada Wang9792f9b2017-04-09 20:02:37 -0700829 * actual implementation must be in arch/$(SRCARCH)/util/header.c
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200830 */
Rui Teng11d8f872016-07-28 10:05:57 +0800831int __weak get_cpuid(char *buffer __maybe_unused, size_t sz __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200832{
833 return -1;
834}
835
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300836static int write_cpuid(int fd, struct perf_header *h __maybe_unused,
837 struct perf_evlist *evlist __maybe_unused)
Stephane Eranianfbe96f22011-09-30 15:40:40 +0200838{
839 char buffer[64];
840 int ret;
841
842 ret = get_cpuid(buffer, sizeof(buffer));
843 if (!ret)
844 goto write_it;
845
846 return -1;
847write_it:
848 return do_write_string(fd, buffer);
849}
850
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300851static int write_branch_stack(int fd __maybe_unused,
852 struct perf_header *h __maybe_unused,
853 struct perf_evlist *evlist __maybe_unused)
Stephane Eranian330aa672012-03-08 23:47:46 +0100854{
855 return 0;
856}
857
Adrian Hunter99fa2982015-04-30 17:37:25 +0300858static int write_auxtrace(int fd, struct perf_header *h,
Adrian Hunter4025ea42015-04-09 18:53:41 +0300859 struct perf_evlist *evlist __maybe_unused)
860{
Adrian Hunter99fa2982015-04-30 17:37:25 +0300861 struct perf_session *session;
862 int err;
863
864 session = container_of(h, struct perf_session, header);
865
866 err = auxtrace_index__write(fd, &session->auxtrace_index);
867 if (err < 0)
868 pr_err("Failed to write auxtrace index\n");
869 return err;
Adrian Hunter4025ea42015-04-09 18:53:41 +0300870}
871
Jiri Olsa720e98b2016-02-16 16:01:43 +0100872static int cpu_cache_level__sort(const void *a, const void *b)
873{
874 struct cpu_cache_level *cache_a = (struct cpu_cache_level *)a;
875 struct cpu_cache_level *cache_b = (struct cpu_cache_level *)b;
876
877 return cache_a->level - cache_b->level;
878}
879
880static bool cpu_cache_level__cmp(struct cpu_cache_level *a, struct cpu_cache_level *b)
881{
882 if (a->level != b->level)
883 return false;
884
885 if (a->line_size != b->line_size)
886 return false;
887
888 if (a->sets != b->sets)
889 return false;
890
891 if (a->ways != b->ways)
892 return false;
893
894 if (strcmp(a->type, b->type))
895 return false;
896
897 if (strcmp(a->size, b->size))
898 return false;
899
900 if (strcmp(a->map, b->map))
901 return false;
902
903 return true;
904}
905
906static int cpu_cache_level__read(struct cpu_cache_level *cache, u32 cpu, u16 level)
907{
908 char path[PATH_MAX], file[PATH_MAX];
909 struct stat st;
910 size_t len;
911
912 scnprintf(path, PATH_MAX, "devices/system/cpu/cpu%d/cache/index%d/", cpu, level);
913 scnprintf(file, PATH_MAX, "%s/%s", sysfs__mountpoint(), path);
914
915 if (stat(file, &st))
916 return 1;
917
918 scnprintf(file, PATH_MAX, "%s/level", path);
919 if (sysfs__read_int(file, (int *) &cache->level))
920 return -1;
921
922 scnprintf(file, PATH_MAX, "%s/coherency_line_size", path);
923 if (sysfs__read_int(file, (int *) &cache->line_size))
924 return -1;
925
926 scnprintf(file, PATH_MAX, "%s/number_of_sets", path);
927 if (sysfs__read_int(file, (int *) &cache->sets))
928 return -1;
929
930 scnprintf(file, PATH_MAX, "%s/ways_of_associativity", path);
931 if (sysfs__read_int(file, (int *) &cache->ways))
932 return -1;
933
934 scnprintf(file, PATH_MAX, "%s/type", path);
935 if (sysfs__read_str(file, &cache->type, &len))
936 return -1;
937
938 cache->type[len] = 0;
939 cache->type = rtrim(cache->type);
940
941 scnprintf(file, PATH_MAX, "%s/size", path);
942 if (sysfs__read_str(file, &cache->size, &len)) {
943 free(cache->type);
944 return -1;
945 }
946
947 cache->size[len] = 0;
948 cache->size = rtrim(cache->size);
949
950 scnprintf(file, PATH_MAX, "%s/shared_cpu_list", path);
951 if (sysfs__read_str(file, &cache->map, &len)) {
Jiri Olsa8530a7e2019-09-12 12:52:35 +0200952 free(cache->size);
Jiri Olsa720e98b2016-02-16 16:01:43 +0100953 free(cache->type);
954 return -1;
955 }
956
957 cache->map[len] = 0;
958 cache->map = rtrim(cache->map);
959 return 0;
960}
961
962static void cpu_cache_level__fprintf(FILE *out, struct cpu_cache_level *c)
963{
964 fprintf(out, "L%d %-15s %8s [%s]\n", c->level, c->type, c->size, c->map);
965}
966
967static int build_caches(struct cpu_cache_level caches[], u32 size, u32 *cntp)
968{
969 u32 i, cnt = 0;
970 long ncpus;
971 u32 nr, cpu;
972 u16 level;
973
974 ncpus = sysconf(_SC_NPROCESSORS_CONF);
975 if (ncpus < 0)
976 return -1;
977
978 nr = (u32)(ncpus & UINT_MAX);
979
980 for (cpu = 0; cpu < nr; cpu++) {
981 for (level = 0; level < 10; level++) {
982 struct cpu_cache_level c;
983 int err;
984
985 err = cpu_cache_level__read(&c, cpu, level);
986 if (err < 0)
987 return err;
988
989 if (err == 1)
990 break;
991
992 for (i = 0; i < cnt; i++) {
993 if (cpu_cache_level__cmp(&c, &caches[i]))
994 break;
995 }
996
997 if (i == cnt)
998 caches[cnt++] = c;
999 else
1000 cpu_cache_level__free(&c);
1001
1002 if (WARN_ONCE(cnt == size, "way too many cpu caches.."))
1003 goto out;
1004 }
1005 }
1006 out:
1007 *cntp = cnt;
1008 return 0;
1009}
1010
Kyle Meyercb993d32019-06-20 14:36:30 -05001011#define MAX_CACHES (MAX_NR_CPUS * 4)
Jiri Olsa720e98b2016-02-16 16:01:43 +01001012
1013static int write_cache(int fd, struct perf_header *h __maybe_unused,
1014 struct perf_evlist *evlist __maybe_unused)
1015{
1016 struct cpu_cache_level caches[MAX_CACHES];
1017 u32 cnt = 0, i, version = 1;
1018 int ret;
1019
1020 ret = build_caches(caches, MAX_CACHES, &cnt);
1021 if (ret)
1022 goto out;
1023
1024 qsort(&caches, cnt, sizeof(struct cpu_cache_level), cpu_cache_level__sort);
1025
1026 ret = do_write(fd, &version, sizeof(u32));
1027 if (ret < 0)
1028 goto out;
1029
1030 ret = do_write(fd, &cnt, sizeof(u32));
1031 if (ret < 0)
1032 goto out;
1033
1034 for (i = 0; i < cnt; i++) {
1035 struct cpu_cache_level *c = &caches[i];
1036
1037 #define _W(v) \
1038 ret = do_write(fd, &c->v, sizeof(u32)); \
1039 if (ret < 0) \
1040 goto out;
1041
1042 _W(level)
1043 _W(line_size)
1044 _W(sets)
1045 _W(ways)
1046 #undef _W
1047
1048 #define _W(v) \
1049 ret = do_write_string(fd, (const char *) c->v); \
1050 if (ret < 0) \
1051 goto out;
1052
1053 _W(type)
1054 _W(size)
1055 _W(map)
1056 #undef _W
1057 }
1058
1059out:
1060 for (i = 0; i < cnt; i++)
1061 cpu_cache_level__free(&caches[i]);
1062 return ret;
1063}
1064
Jiri Olsaffa517a2015-10-25 15:51:43 +01001065static int write_stat(int fd __maybe_unused,
1066 struct perf_header *h __maybe_unused,
1067 struct perf_evlist *evlist __maybe_unused)
1068{
1069 return 0;
1070}
1071
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001072static void print_hostname(struct perf_header *ph, int fd __maybe_unused,
1073 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001074{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001075 fprintf(fp, "# hostname : %s\n", ph->env.hostname);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001076}
1077
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001078static void print_osrelease(struct perf_header *ph, int fd __maybe_unused,
1079 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001080{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001081 fprintf(fp, "# os release : %s\n", ph->env.os_release);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001082}
1083
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001084static void print_arch(struct perf_header *ph, int fd __maybe_unused, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001085{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001086 fprintf(fp, "# arch : %s\n", ph->env.arch);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001087}
1088
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001089static void print_cpudesc(struct perf_header *ph, int fd __maybe_unused,
1090 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001091{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001092 fprintf(fp, "# cpudesc : %s\n", ph->env.cpu_desc);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001093}
1094
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001095static void print_nrcpus(struct perf_header *ph, int fd __maybe_unused,
1096 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001097{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001098 fprintf(fp, "# nrcpus online : %u\n", ph->env.nr_cpus_online);
1099 fprintf(fp, "# nrcpus avail : %u\n", ph->env.nr_cpus_avail);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001100}
1101
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001102static void print_version(struct perf_header *ph, int fd __maybe_unused,
1103 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001104{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001105 fprintf(fp, "# perf version : %s\n", ph->env.version);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001106}
1107
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001108static void print_cmdline(struct perf_header *ph, int fd __maybe_unused,
1109 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001110{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001111 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001112
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001113 nr = ph->env.nr_cmdline;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001114
1115 fprintf(fp, "# cmdline : ");
1116
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001117 for (i = 0; i < nr; i++)
1118 fprintf(fp, "%s ", ph->env.cmdline_argv[i]);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001119 fputc('\n', fp);
1120}
1121
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001122static void print_cpu_topology(struct perf_header *ph, int fd __maybe_unused,
1123 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001124{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001125 int nr, i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001126 char *str;
Kan Liang2bb00d22015-09-01 09:58:12 -04001127 int cpu_nr = ph->env.nr_cpus_online;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001128
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001129 nr = ph->env.nr_sibling_cores;
1130 str = ph->env.sibling_cores;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001131
1132 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001133 fprintf(fp, "# sibling cores : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001134 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001135 }
1136
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001137 nr = ph->env.nr_sibling_threads;
1138 str = ph->env.sibling_threads;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001139
1140 for (i = 0; i < nr; i++) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001141 fprintf(fp, "# sibling threads : %s\n", str);
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001142 str += strlen(str) + 1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001143 }
Kan Liang2bb00d22015-09-01 09:58:12 -04001144
1145 if (ph->env.cpu != NULL) {
1146 for (i = 0; i < cpu_nr; i++)
1147 fprintf(fp, "# CPU %d: Core ID %d, Socket ID %d\n", i,
1148 ph->env.cpu[i].core_id, ph->env.cpu[i].socket_id);
1149 } else
1150 fprintf(fp, "# Core ID and Socket ID information is not available\n");
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001151}
1152
Robert Richter4e1b9c62012-08-16 21:10:22 +02001153static void free_event_desc(struct perf_evsel *events)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001154{
Robert Richter4e1b9c62012-08-16 21:10:22 +02001155 struct perf_evsel *evsel;
1156
1157 if (!events)
1158 return;
1159
1160 for (evsel = events; evsel->attr.size; evsel++) {
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03001161 zfree(&evsel->name);
1162 zfree(&evsel->id);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001163 }
1164
1165 free(events);
1166}
1167
1168static struct perf_evsel *
1169read_event_desc(struct perf_header *ph, int fd)
1170{
1171 struct perf_evsel *evsel, *events = NULL;
1172 u64 *id;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001173 void *buf = NULL;
Stephane Eranian62db9062012-02-09 23:21:07 +01001174 u32 nre, sz, nr, i, j;
1175 ssize_t ret;
1176 size_t msz;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001177
1178 /* number of events */
Namhyung Kim5323f602012-12-17 15:38:54 +09001179 ret = readn(fd, &nre, sizeof(nre));
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001180 if (ret != (ssize_t)sizeof(nre))
1181 goto error;
1182
1183 if (ph->needs_swap)
1184 nre = bswap_32(nre);
1185
Namhyung Kim5323f602012-12-17 15:38:54 +09001186 ret = readn(fd, &sz, sizeof(sz));
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001187 if (ret != (ssize_t)sizeof(sz))
1188 goto error;
1189
1190 if (ph->needs_swap)
1191 sz = bswap_32(sz);
1192
Stephane Eranian62db9062012-02-09 23:21:07 +01001193 /* buffer to hold on file attr struct */
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001194 buf = malloc(sz);
1195 if (!buf)
1196 goto error;
1197
Robert Richter4e1b9c62012-08-16 21:10:22 +02001198 /* the last event terminates with evsel->attr.size == 0: */
1199 events = calloc(nre + 1, sizeof(*events));
1200 if (!events)
1201 goto error;
1202
1203 msz = sizeof(evsel->attr);
Jiri Olsa9fafd982012-03-20 19:15:39 +01001204 if (sz < msz)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001205 msz = sz;
1206
Robert Richter4e1b9c62012-08-16 21:10:22 +02001207 for (i = 0, evsel = events; i < nre; evsel++, i++) {
1208 evsel->idx = i;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001209
Stephane Eranian62db9062012-02-09 23:21:07 +01001210 /*
1211 * must read entire on-file attr struct to
1212 * sync up with layout.
1213 */
Namhyung Kim5323f602012-12-17 15:38:54 +09001214 ret = readn(fd, buf, sz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001215 if (ret != (ssize_t)sz)
1216 goto error;
1217
1218 if (ph->needs_swap)
1219 perf_event__attr_swap(buf);
1220
Robert Richter4e1b9c62012-08-16 21:10:22 +02001221 memcpy(&evsel->attr, buf, msz);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001222
Namhyung Kim5323f602012-12-17 15:38:54 +09001223 ret = readn(fd, &nr, sizeof(nr));
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001224 if (ret != (ssize_t)sizeof(nr))
1225 goto error;
1226
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001227 if (ph->needs_swap) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001228 nr = bswap_32(nr);
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03001229 evsel->needs_swap = true;
1230 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001231
Robert Richter4e1b9c62012-08-16 21:10:22 +02001232 evsel->name = do_read_string(fd, ph);
1233
1234 if (!nr)
1235 continue;
1236
1237 id = calloc(nr, sizeof(*id));
1238 if (!id)
1239 goto error;
1240 evsel->ids = nr;
1241 evsel->id = id;
1242
1243 for (j = 0 ; j < nr; j++) {
Namhyung Kim5323f602012-12-17 15:38:54 +09001244 ret = readn(fd, id, sizeof(*id));
Robert Richter4e1b9c62012-08-16 21:10:22 +02001245 if (ret != (ssize_t)sizeof(*id))
1246 goto error;
1247 if (ph->needs_swap)
1248 *id = bswap_64(*id);
1249 id++;
1250 }
1251 }
1252out:
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001253 free(buf);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001254 return events;
1255error:
Markus Elfring4cc97612015-06-25 17:12:32 +02001256 free_event_desc(events);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001257 events = NULL;
1258 goto out;
1259}
1260
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001261static int __desc_attr__fprintf(FILE *fp, const char *name, const char *val,
1262 void *priv __attribute__((unused)))
1263{
1264 return fprintf(fp, ", %s = %s", name, val);
1265}
1266
Robert Richter4e1b9c62012-08-16 21:10:22 +02001267static void print_event_desc(struct perf_header *ph, int fd, FILE *fp)
1268{
1269 struct perf_evsel *evsel, *events = read_event_desc(ph, fd);
1270 u32 j;
1271 u64 *id;
1272
1273 if (!events) {
1274 fprintf(fp, "# event desc: not available or unable to read\n");
1275 return;
1276 }
1277
1278 for (evsel = events; evsel->attr.size; evsel++) {
1279 fprintf(fp, "# event : name = %s, ", evsel->name);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001280
Robert Richter4e1b9c62012-08-16 21:10:22 +02001281 if (evsel->ids) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001282 fprintf(fp, ", id = {");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001283 for (j = 0, id = evsel->id; j < evsel->ids; j++, id++) {
1284 if (j)
1285 fputc(',', fp);
1286 fprintf(fp, " %"PRIu64, *id);
1287 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001288 fprintf(fp, " }");
Robert Richter4e1b9c62012-08-16 21:10:22 +02001289 }
Peter Zijlstra814c8c32015-03-31 00:19:31 +02001290
Peter Zijlstra2c5e8c52015-04-07 11:09:54 +02001291 perf_event_attr__fprintf(fp, &evsel->attr, __desc_attr__fprintf, NULL);
Robert Richter4e1b9c62012-08-16 21:10:22 +02001292
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001293 fputc('\n', fp);
1294 }
Robert Richter4e1b9c62012-08-16 21:10:22 +02001295
1296 free_event_desc(events);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001297}
1298
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001299static void print_total_mem(struct perf_header *ph, int fd __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001300 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001301{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001302 fprintf(fp, "# total memory : %Lu kB\n", ph->env.total_mem);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001303}
1304
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001305static void print_numa_topology(struct perf_header *ph, int fd __maybe_unused,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001306 FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001307{
Jiri Olsac60da22a2016-07-04 14:16:20 +02001308 int i;
1309 struct numa_node *n;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001310
Jiri Olsac60da22a2016-07-04 14:16:20 +02001311 for (i = 0; i < ph->env.nr_numa_nodes; i++) {
1312 n = &ph->env.numa_nodes[i];
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001313
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001314 fprintf(fp, "# node%u meminfo : total = %"PRIu64" kB,"
1315 " free = %"PRIu64" kB\n",
Jiri Olsac60da22a2016-07-04 14:16:20 +02001316 n->node, n->mem_total, n->mem_free);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001317
Jiri Olsac60da22a2016-07-04 14:16:20 +02001318 fprintf(fp, "# node%u cpu list : ", n->node);
1319 cpu_map__fprintf(n->map, fp);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001320 }
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001321}
1322
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001323static void print_cpuid(struct perf_header *ph, int fd __maybe_unused, FILE *fp)
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001324{
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001325 fprintf(fp, "# cpuid : %s\n", ph->env.cpuid);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02001326}
1327
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001328static void print_branch_stack(struct perf_header *ph __maybe_unused,
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001329 int fd __maybe_unused, FILE *fp)
Stephane Eranian330aa672012-03-08 23:47:46 +01001330{
1331 fprintf(fp, "# contains samples with branch stack\n");
1332}
1333
Adrian Hunter4025ea42015-04-09 18:53:41 +03001334static void print_auxtrace(struct perf_header *ph __maybe_unused,
1335 int fd __maybe_unused, FILE *fp)
1336{
1337 fprintf(fp, "# contains AUX area data (e.g. instruction trace)\n");
1338}
1339
Jiri Olsaffa517a2015-10-25 15:51:43 +01001340static void print_stat(struct perf_header *ph __maybe_unused,
1341 int fd __maybe_unused, FILE *fp)
1342{
1343 fprintf(fp, "# contains stat data\n");
1344}
1345
Jiri Olsa720e98b2016-02-16 16:01:43 +01001346static void print_cache(struct perf_header *ph __maybe_unused,
1347 int fd __maybe_unused, FILE *fp __maybe_unused)
1348{
1349 int i;
1350
1351 fprintf(fp, "# CPU cache info:\n");
1352 for (i = 0; i < ph->env.caches_cnt; i++) {
1353 fprintf(fp, "# ");
1354 cpu_cache_level__fprintf(fp, &ph->env.caches[i]);
1355 }
1356}
1357
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001358static void print_pmu_mappings(struct perf_header *ph, int fd __maybe_unused,
1359 FILE *fp)
Robert Richter50a96672012-08-16 21:10:24 +02001360{
1361 const char *delimiter = "# pmu mappings: ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001362 char *str, *tmp;
Robert Richter50a96672012-08-16 21:10:24 +02001363 u32 pmu_num;
1364 u32 type;
1365
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001366 pmu_num = ph->env.nr_pmu_mappings;
Robert Richter50a96672012-08-16 21:10:24 +02001367 if (!pmu_num) {
1368 fprintf(fp, "# pmu mappings: not available\n");
1369 return;
1370 }
1371
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001372 str = ph->env.pmu_mappings;
Namhyung Kimbe4a2de2012-09-05 14:02:49 +09001373
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001374 while (pmu_num) {
1375 type = strtoul(str, &tmp, 0);
1376 if (*tmp != ':')
1377 goto error;
1378
1379 str = tmp + 1;
1380 fprintf(fp, "%s%s = %" PRIu32, delimiter, str, type);
1381
Robert Richter50a96672012-08-16 21:10:24 +02001382 delimiter = ", ";
Namhyung Kim7e94cfc2012-09-24 17:15:00 +09001383 str += strlen(str) + 1;
1384 pmu_num--;
Robert Richter50a96672012-08-16 21:10:24 +02001385 }
1386
1387 fprintf(fp, "\n");
1388
1389 if (!pmu_num)
1390 return;
1391error:
1392 fprintf(fp, "# pmu mappings: unable to read\n");
1393}
1394
Namhyung Kima8bb5592013-01-22 18:09:31 +09001395static void print_group_desc(struct perf_header *ph, int fd __maybe_unused,
1396 FILE *fp)
1397{
1398 struct perf_session *session;
1399 struct perf_evsel *evsel;
1400 u32 nr = 0;
1401
1402 session = container_of(ph, struct perf_session, header);
1403
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001404 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09001405 if (perf_evsel__is_group_leader(evsel) &&
1406 evsel->nr_members > 1) {
1407 fprintf(fp, "# group: %s{%s", evsel->group_name ?: "",
1408 perf_evsel__name(evsel));
1409
1410 nr = evsel->nr_members - 1;
1411 } else if (nr) {
1412 fprintf(fp, ",%s", perf_evsel__name(evsel));
1413
1414 if (--nr == 0)
1415 fprintf(fp, "}\n");
1416 }
1417 }
1418}
1419
Robert Richter08d95bd2012-02-10 15:41:55 +01001420static int __event_process_build_id(struct build_id_event *bev,
1421 char *filename,
1422 struct perf_session *session)
1423{
1424 int err = -1;
Robert Richter08d95bd2012-02-10 15:41:55 +01001425 struct machine *machine;
Wang Nan1f121b02015-06-03 08:52:21 +00001426 u16 cpumode;
Robert Richter08d95bd2012-02-10 15:41:55 +01001427 struct dso *dso;
1428 enum dso_kernel_type dso_type;
1429
1430 machine = perf_session__findnew_machine(session, bev->pid);
1431 if (!machine)
1432 goto out;
1433
Wang Nan1f121b02015-06-03 08:52:21 +00001434 cpumode = bev->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
Robert Richter08d95bd2012-02-10 15:41:55 +01001435
Wang Nan1f121b02015-06-03 08:52:21 +00001436 switch (cpumode) {
Robert Richter08d95bd2012-02-10 15:41:55 +01001437 case PERF_RECORD_MISC_KERNEL:
1438 dso_type = DSO_TYPE_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001439 break;
1440 case PERF_RECORD_MISC_GUEST_KERNEL:
1441 dso_type = DSO_TYPE_GUEST_KERNEL;
Robert Richter08d95bd2012-02-10 15:41:55 +01001442 break;
1443 case PERF_RECORD_MISC_USER:
1444 case PERF_RECORD_MISC_GUEST_USER:
1445 dso_type = DSO_TYPE_USER;
Robert Richter08d95bd2012-02-10 15:41:55 +01001446 break;
1447 default:
1448 goto out;
1449 }
1450
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001451 dso = machine__findnew_dso(machine, filename);
Robert Richter08d95bd2012-02-10 15:41:55 +01001452 if (dso != NULL) {
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09001453 char sbuild_id[SBUILD_ID_SIZE];
Robert Richter08d95bd2012-02-10 15:41:55 +01001454
1455 dso__set_build_id(dso, &bev->build_id);
1456
Namhyung Kim81da6722017-05-31 21:01:03 +09001457 if (dso_type != DSO_TYPE_USER) {
1458 struct kmod_path m = { .name = NULL, };
1459
1460 if (!kmod_path__parse_name(&m, filename) && m.kmod)
1461 dso__set_short_name(dso, strdup(m.name), true);
1462 else
1463 dso->kernel = dso_type;
1464
1465 free(m.name);
1466 }
Robert Richter08d95bd2012-02-10 15:41:55 +01001467
1468 build_id__sprintf(dso->build_id, sizeof(dso->build_id),
1469 sbuild_id);
1470 pr_debug("build id event received for %s: %s\n",
1471 dso->long_name, sbuild_id);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001472 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01001473 }
1474
1475 err = 0;
1476out:
1477 return err;
1478}
1479
1480static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
1481 int input, u64 offset, u64 size)
1482{
1483 struct perf_session *session = container_of(header, struct perf_session, header);
1484 struct {
1485 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03001486 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01001487 char filename[0];
1488 } old_bev;
1489 struct build_id_event bev;
1490 char filename[PATH_MAX];
1491 u64 limit = offset + size;
1492
1493 while (offset < limit) {
1494 ssize_t len;
1495
Namhyung Kim5323f602012-12-17 15:38:54 +09001496 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001497 return -1;
1498
1499 if (header->needs_swap)
1500 perf_event_header__bswap(&old_bev.header);
1501
1502 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001503 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001504 return -1;
1505
1506 bev.header = old_bev.header;
1507
1508 /*
1509 * As the pid is the missing value, we need to fill
1510 * it properly. The header.misc value give us nice hint.
1511 */
1512 bev.pid = HOST_KERNEL_ID;
1513 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
1514 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
1515 bev.pid = DEFAULT_GUEST_KERNEL_ID;
1516
1517 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
1518 __event_process_build_id(&bev, filename, session);
1519
1520 offset += bev.header.size;
1521 }
1522
1523 return 0;
1524}
1525
1526static int perf_header__read_build_ids(struct perf_header *header,
1527 int input, u64 offset, u64 size)
1528{
1529 struct perf_session *session = container_of(header, struct perf_session, header);
1530 struct build_id_event bev;
1531 char filename[PATH_MAX];
1532 u64 limit = offset + size, orig_offset = offset;
1533 int err = -1;
1534
1535 while (offset < limit) {
1536 ssize_t len;
1537
Namhyung Kim5323f602012-12-17 15:38:54 +09001538 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001539 goto out;
1540
1541 if (header->needs_swap)
1542 perf_event_header__bswap(&bev.header);
1543
1544 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001545 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001546 goto out;
1547 /*
1548 * The a1645ce1 changeset:
1549 *
1550 * "perf: 'perf kvm' tool for monitoring guest performance from host"
1551 *
1552 * Added a field to struct build_id_event that broke the file
1553 * format.
1554 *
1555 * Since the kernel build-id is the first entry, process the
1556 * table using the old format if the well known
1557 * '[kernel.kallsyms]' string for the kernel build-id has the
1558 * first 4 characters chopped off (where the pid_t sits).
1559 */
1560 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
1561 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
1562 return -1;
1563 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
1564 }
1565
1566 __event_process_build_id(&bev, filename, session);
1567
1568 offset += bev.header.size;
1569 }
1570 err = 0;
1571out:
1572 return err;
1573}
1574
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001575static int process_tracing_data(struct perf_file_section *section __maybe_unused,
1576 struct perf_header *ph __maybe_unused,
1577 int fd, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01001578{
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09001579 ssize_t ret = trace_report(fd, data, false);
1580 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01001581}
1582
1583static int process_build_id(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001584 struct perf_header *ph, int fd,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001585 void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01001586{
1587 if (perf_header__read_build_ids(ph, fd, section->offset, section->size))
1588 pr_debug("Failed to read buildids, continuing...\n");
1589 return 0;
1590}
1591
Namhyung Kima1ae5652012-09-24 17:14:59 +09001592static int process_hostname(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001593 struct perf_header *ph, int fd,
1594 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001595{
1596 ph->env.hostname = do_read_string(fd, ph);
1597 return ph->env.hostname ? 0 : -ENOMEM;
1598}
1599
1600static int process_osrelease(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001601 struct perf_header *ph, int fd,
1602 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001603{
1604 ph->env.os_release = do_read_string(fd, ph);
1605 return ph->env.os_release ? 0 : -ENOMEM;
1606}
1607
1608static int process_version(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001609 struct perf_header *ph, int fd,
1610 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001611{
1612 ph->env.version = do_read_string(fd, ph);
1613 return ph->env.version ? 0 : -ENOMEM;
1614}
1615
1616static int process_arch(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001617 struct perf_header *ph, int fd,
1618 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001619{
1620 ph->env.arch = do_read_string(fd, ph);
1621 return ph->env.arch ? 0 : -ENOMEM;
1622}
1623
1624static int process_nrcpus(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001625 struct perf_header *ph, int fd,
1626 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001627{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001628 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001629 u32 nr;
1630
Namhyung Kim5323f602012-12-17 15:38:54 +09001631 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001632 if (ret != sizeof(nr))
1633 return -1;
1634
1635 if (ph->needs_swap)
1636 nr = bswap_32(nr);
1637
Arnaldo Carvalho de Melocaa47042015-09-11 12:36:12 -03001638 ph->env.nr_cpus_avail = nr;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001639
Namhyung Kim5323f602012-12-17 15:38:54 +09001640 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001641 if (ret != sizeof(nr))
1642 return -1;
1643
1644 if (ph->needs_swap)
1645 nr = bswap_32(nr);
1646
Arnaldo Carvalho de Melocaa47042015-09-11 12:36:12 -03001647 ph->env.nr_cpus_online = nr;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001648 return 0;
1649}
1650
1651static int process_cpudesc(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001652 struct perf_header *ph, int fd,
1653 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001654{
1655 ph->env.cpu_desc = do_read_string(fd, ph);
1656 return ph->env.cpu_desc ? 0 : -ENOMEM;
1657}
1658
1659static int process_cpuid(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001660 struct perf_header *ph, int fd,
1661 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001662{
1663 ph->env.cpuid = do_read_string(fd, ph);
1664 return ph->env.cpuid ? 0 : -ENOMEM;
1665}
1666
1667static int process_total_mem(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001668 struct perf_header *ph, int fd,
1669 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001670{
1671 uint64_t mem;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001672 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001673
Namhyung Kim5323f602012-12-17 15:38:54 +09001674 ret = readn(fd, &mem, sizeof(mem));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001675 if (ret != sizeof(mem))
1676 return -1;
1677
1678 if (ph->needs_swap)
1679 mem = bswap_64(mem);
1680
1681 ph->env.total_mem = mem;
1682 return 0;
1683}
1684
Robert Richter7c2f7af2012-08-16 21:10:23 +02001685static struct perf_evsel *
1686perf_evlist__find_by_index(struct perf_evlist *evlist, int idx)
1687{
1688 struct perf_evsel *evsel;
1689
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001690 evlist__for_each_entry(evlist, evsel) {
Robert Richter7c2f7af2012-08-16 21:10:23 +02001691 if (evsel->idx == idx)
1692 return evsel;
1693 }
1694
1695 return NULL;
1696}
1697
1698static void
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001699perf_evlist__set_event_name(struct perf_evlist *evlist,
1700 struct perf_evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02001701{
1702 struct perf_evsel *evsel;
1703
1704 if (!event->name)
1705 return;
1706
1707 evsel = perf_evlist__find_by_index(evlist, event->idx);
1708 if (!evsel)
1709 return;
1710
1711 if (evsel->name)
1712 return;
1713
1714 evsel->name = strdup(event->name);
1715}
1716
1717static int
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001718process_event_desc(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001719 struct perf_header *header, int fd,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001720 void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02001721{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001722 struct perf_session *session;
Robert Richter7c2f7af2012-08-16 21:10:23 +02001723 struct perf_evsel *evsel, *events = read_event_desc(header, fd);
1724
1725 if (!events)
1726 return 0;
1727
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001728 session = container_of(header, struct perf_session, header);
Robert Richter7c2f7af2012-08-16 21:10:23 +02001729 for (evsel = events; evsel->attr.size; evsel++)
1730 perf_evlist__set_event_name(session->evlist, evsel);
1731
1732 free_event_desc(events);
1733
1734 return 0;
1735}
1736
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001737static int process_cmdline(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001738 struct perf_header *ph, int fd,
1739 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001740{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001741 ssize_t ret;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001742 char *str, *cmdline = NULL, **argv = NULL;
1743 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001744
Namhyung Kim5323f602012-12-17 15:38:54 +09001745 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001746 if (ret != sizeof(nr))
1747 return -1;
1748
1749 if (ph->needs_swap)
1750 nr = bswap_32(nr);
1751
1752 ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001753
1754 cmdline = zalloc(section->size + nr + 1);
1755 if (!cmdline)
1756 return -1;
1757
1758 argv = zalloc(sizeof(char *) * (nr + 1));
1759 if (!argv)
1760 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001761
1762 for (i = 0; i < nr; i++) {
1763 str = do_read_string(fd, ph);
1764 if (!str)
1765 goto error;
1766
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001767 argv[i] = cmdline + len;
1768 memcpy(argv[i], str, strlen(str) + 1);
1769 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001770 free(str);
1771 }
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001772 ph->env.cmdline = cmdline;
1773 ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001774 return 0;
1775
1776error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001777 free(argv);
1778 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001779 return -1;
1780}
1781
Kan Liang2bb00d22015-09-01 09:58:12 -04001782static int process_cpu_topology(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001783 struct perf_header *ph, int fd,
1784 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001785{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001786 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001787 u32 nr, i;
1788 char *str;
1789 struct strbuf sb;
Kan Liang2bb00d22015-09-01 09:58:12 -04001790 int cpu_nr = ph->env.nr_cpus_online;
1791 u64 size = 0;
1792
1793 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
1794 if (!ph->env.cpu)
1795 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001796
Namhyung Kim5323f602012-12-17 15:38:54 +09001797 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001798 if (ret != sizeof(nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04001799 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001800
1801 if (ph->needs_swap)
1802 nr = bswap_32(nr);
1803
1804 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04001805 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001806 if (strbuf_init(&sb, 128) < 0)
1807 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001808
1809 for (i = 0; i < nr; i++) {
1810 str = do_read_string(fd, ph);
1811 if (!str)
1812 goto error;
1813
1814 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001815 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
1816 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04001817 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001818 free(str);
1819 }
1820 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
1821
Namhyung Kim5323f602012-12-17 15:38:54 +09001822 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001823 if (ret != sizeof(nr))
1824 return -1;
1825
1826 if (ph->needs_swap)
1827 nr = bswap_32(nr);
1828
1829 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04001830 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001831
1832 for (i = 0; i < nr; i++) {
1833 str = do_read_string(fd, ph);
1834 if (!str)
1835 goto error;
1836
1837 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001838 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
1839 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04001840 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001841 free(str);
1842 }
1843 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04001844
1845 /*
1846 * The header may be from old perf,
1847 * which doesn't include core id and socket id information.
1848 */
1849 if (section->size <= size) {
1850 zfree(&ph->env.cpu);
1851 return 0;
1852 }
1853
1854 for (i = 0; i < (u32)cpu_nr; i++) {
1855 ret = readn(fd, &nr, sizeof(nr));
1856 if (ret != sizeof(nr))
1857 goto free_cpu;
1858
1859 if (ph->needs_swap)
1860 nr = bswap_32(nr);
1861
Kan Liang2bb00d22015-09-01 09:58:12 -04001862 ph->env.cpu[i].core_id = nr;
1863
1864 ret = readn(fd, &nr, sizeof(nr));
1865 if (ret != sizeof(nr))
1866 goto free_cpu;
1867
1868 if (ph->needs_swap)
1869 nr = bswap_32(nr);
1870
1871 if (nr > (u32)cpu_nr) {
1872 pr_debug("socket_id number is too big."
1873 "You may need to upgrade the perf tool.\n");
1874 goto free_cpu;
1875 }
1876
1877 ph->env.cpu[i].socket_id = nr;
1878 }
1879
Namhyung Kima1ae5652012-09-24 17:14:59 +09001880 return 0;
1881
1882error:
1883 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04001884free_cpu:
1885 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001886 return -1;
1887}
1888
1889static int process_numa_topology(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001890 struct perf_header *ph, int fd,
1891 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001892{
Jiri Olsac60da22a2016-07-04 14:16:20 +02001893 struct numa_node *nodes, *n;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001894 ssize_t ret;
Jiri Olsac60da22a2016-07-04 14:16:20 +02001895 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001896 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001897
1898 /* nr nodes */
Namhyung Kim5323f602012-12-17 15:38:54 +09001899 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001900 if (ret != sizeof(nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001901 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001902
1903 if (ph->needs_swap)
1904 nr = bswap_32(nr);
1905
Jiri Olsac60da22a2016-07-04 14:16:20 +02001906 nodes = zalloc(sizeof(*nodes) * nr);
1907 if (!nodes)
1908 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001909
1910 for (i = 0; i < nr; i++) {
Jiri Olsac60da22a2016-07-04 14:16:20 +02001911 n = &nodes[i];
1912
Namhyung Kima1ae5652012-09-24 17:14:59 +09001913 /* node number */
Jiri Olsac60da22a2016-07-04 14:16:20 +02001914 ret = readn(fd, &n->node, sizeof(u32));
1915 if (ret != sizeof(n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001916 goto error;
1917
Jiri Olsac60da22a2016-07-04 14:16:20 +02001918 ret = readn(fd, &n->mem_total, sizeof(u64));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001919 if (ret != sizeof(u64))
1920 goto error;
1921
Jiri Olsac60da22a2016-07-04 14:16:20 +02001922 ret = readn(fd, &n->mem_free, sizeof(u64));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001923 if (ret != sizeof(u64))
1924 goto error;
1925
1926 if (ph->needs_swap) {
Jiri Olsac60da22a2016-07-04 14:16:20 +02001927 n->node = bswap_32(n->node);
1928 n->mem_total = bswap_64(n->mem_total);
1929 n->mem_free = bswap_64(n->mem_free);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001930 }
1931
Namhyung Kima1ae5652012-09-24 17:14:59 +09001932 str = do_read_string(fd, ph);
1933 if (!str)
1934 goto error;
1935
Jiri Olsac60da22a2016-07-04 14:16:20 +02001936 n->map = cpu_map__new(str);
1937 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001938 goto error;
Jiri Olsac60da22a2016-07-04 14:16:20 +02001939
Namhyung Kima1ae5652012-09-24 17:14:59 +09001940 free(str);
1941 }
Jiri Olsaf957a532016-10-10 09:56:32 +02001942 ph->env.nr_numa_nodes = nr;
Jiri Olsac60da22a2016-07-04 14:16:20 +02001943 ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001944 return 0;
1945
1946error:
Jiri Olsac60da22a2016-07-04 14:16:20 +02001947 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001948 return -1;
1949}
1950
1951static int process_pmu_mappings(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001952 struct perf_header *ph, int fd,
1953 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001954{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001955 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001956 char *name;
1957 u32 pmu_num;
1958 u32 type;
1959 struct strbuf sb;
1960
Namhyung Kim5323f602012-12-17 15:38:54 +09001961 ret = readn(fd, &pmu_num, sizeof(pmu_num));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001962 if (ret != sizeof(pmu_num))
1963 return -1;
1964
1965 if (ph->needs_swap)
1966 pmu_num = bswap_32(pmu_num);
1967
1968 if (!pmu_num) {
1969 pr_debug("pmu mappings not available\n");
1970 return 0;
1971 }
1972
1973 ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001974 if (strbuf_init(&sb, 128) < 0)
1975 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001976
1977 while (pmu_num) {
Namhyung Kim5323f602012-12-17 15:38:54 +09001978 if (readn(fd, &type, sizeof(type)) != sizeof(type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001979 goto error;
1980 if (ph->needs_swap)
1981 type = bswap_32(type);
1982
1983 name = do_read_string(fd, ph);
1984 if (!name)
1985 goto error;
1986
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001987 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
1988 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001989 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001990 if (strbuf_add(&sb, "", 1) < 0)
1991 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001992
Kan Liange0838e02015-09-10 11:03:05 -03001993 if (!strcmp(name, "msr"))
1994 ph->env.msr_pmu_type = type;
1995
Namhyung Kima1ae5652012-09-24 17:14:59 +09001996 free(name);
1997 pmu_num--;
1998 }
1999 ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
2000 return 0;
2001
2002error:
2003 strbuf_release(&sb);
2004 return -1;
2005}
2006
Namhyung Kima8bb5592013-01-22 18:09:31 +09002007static int process_group_desc(struct perf_file_section *section __maybe_unused,
2008 struct perf_header *ph, int fd,
2009 void *data __maybe_unused)
2010{
2011 size_t ret = -1;
2012 u32 i, nr, nr_groups;
2013 struct perf_session *session;
2014 struct perf_evsel *evsel, *leader = NULL;
2015 struct group_desc {
2016 char *name;
2017 u32 leader_idx;
2018 u32 nr_members;
2019 } *desc;
2020
2021 if (readn(fd, &nr_groups, sizeof(nr_groups)) != sizeof(nr_groups))
2022 return -1;
2023
2024 if (ph->needs_swap)
2025 nr_groups = bswap_32(nr_groups);
2026
2027 ph->env.nr_groups = nr_groups;
2028 if (!nr_groups) {
2029 pr_debug("group desc not available\n");
2030 return 0;
2031 }
2032
2033 desc = calloc(nr_groups, sizeof(*desc));
2034 if (!desc)
2035 return -1;
2036
2037 for (i = 0; i < nr_groups; i++) {
2038 desc[i].name = do_read_string(fd, ph);
2039 if (!desc[i].name)
2040 goto out_free;
2041
2042 if (readn(fd, &desc[i].leader_idx, sizeof(u32)) != sizeof(u32))
2043 goto out_free;
2044
2045 if (readn(fd, &desc[i].nr_members, sizeof(u32)) != sizeof(u32))
2046 goto out_free;
2047
2048 if (ph->needs_swap) {
2049 desc[i].leader_idx = bswap_32(desc[i].leader_idx);
2050 desc[i].nr_members = bswap_32(desc[i].nr_members);
2051 }
2052 }
2053
2054 /*
2055 * Rebuild group relationship based on the group_desc
2056 */
2057 session = container_of(ph, struct perf_session, header);
2058 session->evlist->nr_groups = nr_groups;
2059
2060 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002061 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002062 if (evsel->idx == (int) desc[i].leader_idx) {
2063 evsel->leader = evsel;
2064 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002065 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002066 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002067 desc[i].name = NULL;
2068 }
Namhyung Kima8bb5592013-01-22 18:09:31 +09002069 evsel->nr_members = desc[i].nr_members;
2070
2071 if (i >= nr_groups || nr > 0) {
2072 pr_debug("invalid group desc\n");
2073 goto out_free;
2074 }
2075
2076 leader = evsel;
2077 nr = evsel->nr_members - 1;
2078 i++;
2079 } else if (nr) {
2080 /* This is a group member */
2081 evsel->leader = leader;
2082
2083 nr--;
2084 }
2085 }
2086
2087 if (i != nr_groups || nr != 0) {
2088 pr_debug("invalid group desc\n");
2089 goto out_free;
2090 }
2091
2092 ret = 0;
2093out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002094 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002095 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002096 free(desc);
2097
2098 return ret;
2099}
2100
Adrian Hunter99fa2982015-04-30 17:37:25 +03002101static int process_auxtrace(struct perf_file_section *section,
2102 struct perf_header *ph, int fd,
2103 void *data __maybe_unused)
2104{
2105 struct perf_session *session;
2106 int err;
2107
2108 session = container_of(ph, struct perf_session, header);
2109
2110 err = auxtrace_index__process(fd, section->size, session,
2111 ph->needs_swap);
2112 if (err < 0)
2113 pr_err("Failed to process auxtrace index\n");
2114 return err;
2115}
2116
Jiri Olsa720e98b2016-02-16 16:01:43 +01002117static int process_cache(struct perf_file_section *section __maybe_unused,
2118 struct perf_header *ph __maybe_unused, int fd __maybe_unused,
2119 void *data __maybe_unused)
2120{
2121 struct cpu_cache_level *caches;
2122 u32 cnt, i, version;
2123
2124 if (readn(fd, &version, sizeof(version)) != sizeof(version))
2125 return -1;
2126
2127 if (ph->needs_swap)
2128 version = bswap_32(version);
2129
2130 if (version != 1)
2131 return -1;
2132
2133 if (readn(fd, &cnt, sizeof(cnt)) != sizeof(cnt))
2134 return -1;
2135
2136 if (ph->needs_swap)
2137 cnt = bswap_32(cnt);
2138
2139 caches = zalloc(sizeof(*caches) * cnt);
2140 if (!caches)
2141 return -1;
2142
2143 for (i = 0; i < cnt; i++) {
2144 struct cpu_cache_level c;
2145
2146 #define _R(v) \
2147 if (readn(fd, &c.v, sizeof(u32)) != sizeof(u32))\
2148 goto out_free_caches; \
2149 if (ph->needs_swap) \
2150 c.v = bswap_32(c.v); \
2151
2152 _R(level)
2153 _R(line_size)
2154 _R(sets)
2155 _R(ways)
2156 #undef _R
2157
2158 #define _R(v) \
2159 c.v = do_read_string(fd, ph); \
2160 if (!c.v) \
2161 goto out_free_caches;
2162
2163 _R(type)
2164 _R(size)
2165 _R(map)
2166 #undef _R
2167
2168 caches[i] = c;
2169 }
2170
2171 ph->env.caches = caches;
2172 ph->env.caches_cnt = cnt;
2173 return 0;
2174out_free_caches:
2175 free(caches);
2176 return -1;
2177}
2178
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002179struct feature_ops {
2180 int (*write)(int fd, struct perf_header *h, struct perf_evlist *evlist);
2181 void (*print)(struct perf_header *h, int fd, FILE *fp);
Robert Richterf1c67db2012-02-10 15:41:56 +01002182 int (*process)(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002183 struct perf_header *h, int fd, void *data);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002184 const char *name;
2185 bool full_only;
2186};
2187
Robert Richter8cdfa782011-12-07 10:02:56 +01002188#define FEAT_OPA(n, func) \
2189 [n] = { .name = #n, .write = write_##func, .print = print_##func }
Robert Richterf1c67db2012-02-10 15:41:56 +01002190#define FEAT_OPP(n, func) \
2191 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
2192 .process = process_##func }
Robert Richter8cdfa782011-12-07 10:02:56 +01002193#define FEAT_OPF(n, func) \
Robert Richterf1c67db2012-02-10 15:41:56 +01002194 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
Namhyung Kima1ae5652012-09-24 17:14:59 +09002195 .process = process_##func, .full_only = true }
Robert Richter8cdfa782011-12-07 10:02:56 +01002196
2197/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002198#define print_tracing_data NULL
2199#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002200
2201static const struct feature_ops feat_ops[HEADER_LAST_FEATURE] = {
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002202 FEAT_OPP(HEADER_TRACING_DATA, tracing_data),
Robert Richterf1c67db2012-02-10 15:41:56 +01002203 FEAT_OPP(HEADER_BUILD_ID, build_id),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002204 FEAT_OPP(HEADER_HOSTNAME, hostname),
2205 FEAT_OPP(HEADER_OSRELEASE, osrelease),
2206 FEAT_OPP(HEADER_VERSION, version),
2207 FEAT_OPP(HEADER_ARCH, arch),
2208 FEAT_OPP(HEADER_NRCPUS, nrcpus),
2209 FEAT_OPP(HEADER_CPUDESC, cpudesc),
Namhyung Kim37e9d752012-09-24 17:15:03 +09002210 FEAT_OPP(HEADER_CPUID, cpuid),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002211 FEAT_OPP(HEADER_TOTAL_MEM, total_mem),
Robert Richter7c2f7af2012-08-16 21:10:23 +02002212 FEAT_OPP(HEADER_EVENT_DESC, event_desc),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002213 FEAT_OPP(HEADER_CMDLINE, cmdline),
Robert Richter8cdfa782011-12-07 10:02:56 +01002214 FEAT_OPF(HEADER_CPU_TOPOLOGY, cpu_topology),
2215 FEAT_OPF(HEADER_NUMA_TOPOLOGY, numa_topology),
Stephane Eranian330aa672012-03-08 23:47:46 +01002216 FEAT_OPA(HEADER_BRANCH_STACK, branch_stack),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002217 FEAT_OPP(HEADER_PMU_MAPPINGS, pmu_mappings),
Namhyung Kima8bb5592013-01-22 18:09:31 +09002218 FEAT_OPP(HEADER_GROUP_DESC, group_desc),
Adrian Hunter99fa2982015-04-30 17:37:25 +03002219 FEAT_OPP(HEADER_AUXTRACE, auxtrace),
Jiri Olsaffa517a2015-10-25 15:51:43 +01002220 FEAT_OPA(HEADER_STAT, stat),
Jiri Olsa720e98b2016-02-16 16:01:43 +01002221 FEAT_OPF(HEADER_CACHE, cache),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002222};
2223
2224struct header_print_data {
2225 FILE *fp;
2226 bool full; /* extended list of headers */
2227};
2228
2229static int perf_file_section__fprintf_info(struct perf_file_section *section,
2230 struct perf_header *ph,
2231 int feat, int fd, void *data)
2232{
2233 struct header_print_data *hd = data;
2234
2235 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
2236 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
2237 "%d, continuing...\n", section->offset, feat);
2238 return 0;
2239 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002240 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002241 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01002242 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002243 }
2244 if (!feat_ops[feat].print)
2245 return 0;
2246
2247 if (!feat_ops[feat].full_only || hd->full)
2248 feat_ops[feat].print(ph, fd, hd->fp);
2249 else
2250 fprintf(hd->fp, "# %s info available, use -I to display\n",
2251 feat_ops[feat].name);
2252
2253 return 0;
2254}
2255
2256int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
2257{
2258 struct header_print_data hd;
2259 struct perf_header *header = &session->header;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002260 int fd = perf_data_file__fd(session->file);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002261 hd.fp = fp;
2262 hd.full = full;
2263
2264 perf_header__process_sections(header, fd, &hd,
2265 perf_file_section__fprintf_info);
2266 return 0;
2267}
2268
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002269static int do_write_feat(int fd, struct perf_header *h, int type,
2270 struct perf_file_section **p,
2271 struct perf_evlist *evlist)
2272{
2273 int err;
2274 int ret = 0;
2275
2276 if (perf_header__has_feat(h, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002277 if (!feat_ops[type].write)
2278 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002279
2280 (*p)->offset = lseek(fd, 0, SEEK_CUR);
2281
2282 err = feat_ops[type].write(fd, h, evlist);
2283 if (err < 0) {
2284 pr_debug("failed to write feature %d\n", type);
2285
2286 /* undo anything written */
2287 lseek(fd, (*p)->offset, SEEK_SET);
2288
2289 return -1;
2290 }
2291 (*p)->size = lseek(fd, 0, SEEK_CUR) - (*p)->offset;
2292 (*p)++;
2293 }
2294 return ret;
2295}
2296
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002297static int perf_header__adds_write(struct perf_header *header,
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002298 struct perf_evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002299{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002300 int nr_sections;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002301 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002302 int sec_size;
2303 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002304 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002305 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002306
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002307 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002308 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002309 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002310
Paul Gortmaker91b98802013-01-30 20:05:49 -05002311 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002312 if (feat_sec == NULL)
2313 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002314
2315 sec_size = sizeof(*feat_sec) * nr_sections;
2316
Jiri Olsa8d541e92013-07-17 19:49:44 +02002317 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08002318 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002319
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002320 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
2321 if (do_write_feat(fd, header, feat, &p, evlist))
2322 perf_header__clear_feat(header, feat);
2323 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002324
Xiao Guangrongf887f302010-02-04 16:46:42 +08002325 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002326 /*
2327 * may write more than needed due to dropped feature, but
2328 * this is okay, reader will skip the mising entries
2329 */
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002330 err = do_write(fd, feat_sec, sec_size);
2331 if (err < 0)
2332 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002333 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002334 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002335}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002336
Tom Zanussi8dc58102010-04-01 23:59:15 -05002337int perf_header__write_pipe(int fd)
2338{
2339 struct perf_pipe_file_header f_header;
2340 int err;
2341
2342 f_header = (struct perf_pipe_file_header){
2343 .magic = PERF_MAGIC,
2344 .size = sizeof(f_header),
2345 };
2346
2347 err = do_write(fd, &f_header, sizeof(f_header));
2348 if (err < 0) {
2349 pr_debug("failed to write perf pipe header\n");
2350 return err;
2351 }
2352
2353 return 0;
2354}
2355
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002356int perf_session__write_header(struct perf_session *session,
2357 struct perf_evlist *evlist,
2358 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002359{
2360 struct perf_file_header f_header;
2361 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002362 struct perf_header *header = &session->header;
Jiri Olsa563aecb2013-06-05 13:35:06 +02002363 struct perf_evsel *evsel;
Jiri Olsa944d62b2013-07-17 19:49:43 +02002364 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002365 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002366
2367 lseek(fd, sizeof(f_header), SEEK_SET);
2368
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002369 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02002370 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
2371 err = do_write(fd, evsel->id, evsel->ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002372 if (err < 0) {
2373 pr_debug("failed to write perf header\n");
2374 return err;
2375 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002376 }
2377
Jiri Olsa944d62b2013-07-17 19:49:43 +02002378 attr_offset = lseek(fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002379
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002380 evlist__for_each_entry(evlist, evsel) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002381 f_attr = (struct perf_file_attr){
Robert Richter6606f872012-08-16 21:10:19 +02002382 .attr = evsel->attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002383 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02002384 .offset = evsel->id_offset,
2385 .size = evsel->ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002386 }
2387 };
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002388 err = do_write(fd, &f_attr, sizeof(f_attr));
2389 if (err < 0) {
2390 pr_debug("failed to write perf header attribute\n");
2391 return err;
2392 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002393 }
2394
Adrian Hunterd645c442013-12-11 14:36:28 +02002395 if (!header->data_offset)
2396 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02002397 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002398
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002399 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002400 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002401 if (err < 0)
2402 return err;
2403 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002404
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002405 f_header = (struct perf_file_header){
2406 .magic = PERF_MAGIC,
2407 .size = sizeof(f_header),
2408 .attr_size = sizeof(f_attr),
2409 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02002410 .offset = attr_offset,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002411 .size = evlist->nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002412 },
2413 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002414 .offset = header->data_offset,
2415 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002416 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02002417 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002418 };
2419
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002420 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002421
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002422 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002423 err = do_write(fd, &f_header, sizeof(f_header));
2424 if (err < 0) {
2425 pr_debug("failed to write perf header\n");
2426 return err;
2427 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002428 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002429
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002430 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002431}
2432
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002433static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002434 int fd, void *buf, size_t size)
2435{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02002436 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002437 return -1;
2438
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002439 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002440 mem_bswap_64(buf, size);
2441
2442 return 0;
2443}
2444
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002445int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002446 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002447 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002448 struct perf_header *ph,
2449 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002450{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002451 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002452 int nr_sections;
2453 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002454 int feat;
2455 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002456
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002457 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002458 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002459 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002460
Paul Gortmaker91b98802013-01-30 20:05:49 -05002461 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002462 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002463 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002464
2465 sec_size = sizeof(*feat_sec) * nr_sections;
2466
Jiri Olsa8d541e92013-07-17 19:49:44 +02002467 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002468
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002469 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
2470 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002471 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002472
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002473 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
2474 err = process(sec++, header, feat, fd, data);
2475 if (err < 0)
2476 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01002477 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002478 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002479out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002480 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002481 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002482}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002483
Stephane Eranian114382a2012-02-09 23:21:08 +01002484static const int attr_file_abi_sizes[] = {
2485 [0] = PERF_ATTR_SIZE_VER0,
2486 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02002487 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002488 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002489 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01002490 0,
2491};
2492
2493/*
2494 * In the legacy file format, the magic number is not used to encode endianness.
2495 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
2496 * on ABI revisions, we need to try all combinations for all endianness to
2497 * detect the endianness.
2498 */
2499static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
2500{
2501 uint64_t ref_size, attr_size;
2502 int i;
2503
2504 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
2505 ref_size = attr_file_abi_sizes[i]
2506 + sizeof(struct perf_file_section);
2507 if (hdr_sz != ref_size) {
2508 attr_size = bswap_64(hdr_sz);
2509 if (attr_size != ref_size)
2510 continue;
2511
2512 ph->needs_swap = true;
2513 }
2514 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
2515 i,
2516 ph->needs_swap);
2517 return 0;
2518 }
2519 /* could not determine endianness */
2520 return -1;
2521}
2522
2523#define PERF_PIPE_HDR_VER0 16
2524
2525static const size_t attr_pipe_abi_sizes[] = {
2526 [0] = PERF_PIPE_HDR_VER0,
2527 0,
2528};
2529
2530/*
2531 * In the legacy pipe format, there is an implicit assumption that endiannesss
2532 * between host recording the samples, and host parsing the samples is the
2533 * same. This is not always the case given that the pipe output may always be
2534 * redirected into a file and analyzed on a different machine with possibly a
2535 * different endianness and perf_event ABI revsions in the perf tool itself.
2536 */
2537static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
2538{
2539 u64 attr_size;
2540 int i;
2541
2542 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
2543 if (hdr_sz != attr_pipe_abi_sizes[i]) {
2544 attr_size = bswap_64(hdr_sz);
2545 if (attr_size != hdr_sz)
2546 continue;
2547
2548 ph->needs_swap = true;
2549 }
2550 pr_debug("Pipe ABI%d perf.data file detected\n", i);
2551 return 0;
2552 }
2553 return -1;
2554}
2555
Feng Tange84ba4e2012-10-30 11:56:07 +08002556bool is_perf_magic(u64 magic)
2557{
2558 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
2559 || magic == __perf_magic2
2560 || magic == __perf_magic2_sw)
2561 return true;
2562
2563 return false;
2564}
2565
Stephane Eranian114382a2012-02-09 23:21:08 +01002566static int check_magic_endian(u64 magic, uint64_t hdr_sz,
2567 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01002568{
2569 int ret;
2570
2571 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01002572 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01002573 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02002574 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01002575 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01002576 if (is_pipe)
2577 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01002578
Stephane Eranian114382a2012-02-09 23:21:08 +01002579 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01002580 }
Stephane Eranian114382a2012-02-09 23:21:08 +01002581 /*
2582 * the new magic number serves two purposes:
2583 * - unique number to identify actual perf.data files
2584 * - encode endianness of file
2585 */
Namhyung Kimf7913972015-01-29 17:06:45 +09002586 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01002587
Stephane Eranian114382a2012-02-09 23:21:08 +01002588 /* check magic number with one endianness */
2589 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01002590 return 0;
2591
Stephane Eranian114382a2012-02-09 23:21:08 +01002592 /* check magic number with opposite endianness */
2593 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01002594 return -1;
2595
2596 ph->needs_swap = true;
2597
2598 return 0;
2599}
2600
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002601int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002602 struct perf_header *ph, int fd)
2603{
Jiri Olsa727ebd52013-11-28 11:30:14 +01002604 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01002605
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002606 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002607
Stephane Eranian73323f52012-02-02 13:54:44 +01002608 ret = readn(fd, header, sizeof(*header));
2609 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002610 return -1;
2611
Stephane Eranian114382a2012-02-09 23:21:08 +01002612 if (check_magic_endian(header->magic,
2613 header->attr_size, false, ph) < 0) {
2614 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01002615 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01002616 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002617
Stephane Eranian73323f52012-02-02 13:54:44 +01002618 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002619 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01002620 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002621 }
2622
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002623 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002624 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002625 if (header->size == offsetof(typeof(*header), adds_features))
2626 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002627 else
2628 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06002629 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06002630 /*
2631 * feature bitmap is declared as an array of unsigned longs --
2632 * not good since its size can differ between the host that
2633 * generated the data file and the host analyzing the file.
2634 *
2635 * We need to handle endianness, but we don't know the size of
2636 * the unsigned long where the file was generated. Take a best
2637 * guess at determining it: try 64-bit swap first (ie., file
2638 * created on a 64-bit host), and check if the hostname feature
2639 * bit is set (this feature bit is forced on as of fbe96f2).
2640 * If the bit is not, undo the 64-bit swap and try a 32-bit
2641 * swap. If the hostname bit is still not set (e.g., older data
2642 * file), punt and fallback to the original behavior --
2643 * clearing all feature bits and setting buildid.
2644 */
David Ahern80c01202012-06-08 11:47:51 -03002645 mem_bswap_64(&header->adds_features,
2646 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06002647
2648 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03002649 /* unswap as u64 */
2650 mem_bswap_64(&header->adds_features,
2651 BITS_TO_U64(HEADER_FEAT_BITS));
2652
2653 /* unswap as u32 */
2654 mem_bswap_32(&header->adds_features,
2655 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06002656 }
2657
2658 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
2659 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
2660 set_bit(HEADER_BUILD_ID, header->adds_features);
2661 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002662 }
2663
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002664 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002665 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002666
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002667 ph->data_offset = header->data.offset;
2668 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02002669 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002670 return 0;
2671}
2672
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002673static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002674 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002675 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002676{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002677 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002678 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002679 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002680 return 0;
2681 }
2682
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002683 if (feat >= HEADER_LAST_FEATURE) {
2684 pr_debug("unknown feature %d, continuing...\n", feat);
2685 return 0;
2686 }
2687
Robert Richterf1c67db2012-02-10 15:41:56 +01002688 if (!feat_ops[feat].process)
2689 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002690
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002691 return feat_ops[feat].process(section, ph, fd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002692}
2693
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002694static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Tom Zanussi454c4072010-05-01 01:41:20 -05002695 struct perf_header *ph, int fd,
2696 bool repipe)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002697{
Jiri Olsa727ebd52013-11-28 11:30:14 +01002698 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01002699
2700 ret = readn(fd, header, sizeof(*header));
2701 if (ret <= 0)
2702 return -1;
2703
Stephane Eranian114382a2012-02-09 23:21:08 +01002704 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
2705 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05002706 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01002707 }
2708
2709 if (ph->needs_swap)
2710 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002711
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002712 if (repipe && do_write(STDOUT_FILENO, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05002713 return -1;
2714
Tom Zanussi8dc58102010-04-01 23:59:15 -05002715 return 0;
2716}
2717
Jiri Olsad4339562013-07-17 19:49:41 +02002718static int perf_header__read_pipe(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05002719{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002720 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002721 struct perf_pipe_file_header f_header;
2722
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002723 if (perf_file_header__read_pipe(&f_header, header,
2724 perf_data_file__fd(session->file),
Tom Zanussi454c4072010-05-01 01:41:20 -05002725 session->repipe) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05002726 pr_debug("incompatible file format\n");
2727 return -EINVAL;
2728 }
2729
Tom Zanussi8dc58102010-04-01 23:59:15 -05002730 return 0;
2731}
2732
Stephane Eranian69996df2012-02-09 23:21:06 +01002733static int read_attr(int fd, struct perf_header *ph,
2734 struct perf_file_attr *f_attr)
2735{
2736 struct perf_event_attr *attr = &f_attr->attr;
2737 size_t sz, left;
2738 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01002739 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01002740
2741 memset(f_attr, 0, sizeof(*f_attr));
2742
2743 /* read minimal guaranteed structure */
2744 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
2745 if (ret <= 0) {
2746 pr_debug("cannot read %d bytes of header attr\n",
2747 PERF_ATTR_SIZE_VER0);
2748 return -1;
2749 }
2750
2751 /* on file perf_event_attr size */
2752 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01002753
Stephane Eranian69996df2012-02-09 23:21:06 +01002754 if (ph->needs_swap)
2755 sz = bswap_32(sz);
2756
2757 if (sz == 0) {
2758 /* assume ABI0 */
2759 sz = PERF_ATTR_SIZE_VER0;
2760 } else if (sz > our_sz) {
2761 pr_debug("file uses a more recent and unsupported ABI"
2762 " (%zu bytes extra)\n", sz - our_sz);
2763 return -1;
2764 }
2765 /* what we have not yet read and that we know about */
2766 left = sz - PERF_ATTR_SIZE_VER0;
2767 if (left) {
2768 void *ptr = attr;
2769 ptr += PERF_ATTR_SIZE_VER0;
2770
2771 ret = readn(fd, ptr, left);
2772 }
2773 /* read perf_file_section, ids are read in caller */
2774 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
2775
2776 return ret <= 0 ? -1 : 0;
2777}
2778
Namhyung Kim831394b2012-09-06 11:10:46 +09002779static int perf_evsel__prepare_tracepoint_event(struct perf_evsel *evsel,
2780 struct pevent *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002781{
Namhyung Kim831394b2012-09-06 11:10:46 +09002782 struct event_format *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002783 char bf[128];
2784
Namhyung Kim831394b2012-09-06 11:10:46 +09002785 /* already prepared */
2786 if (evsel->tp_format)
2787 return 0;
2788
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002789 if (pevent == NULL) {
2790 pr_debug("broken or missing trace data\n");
2791 return -1;
2792 }
2793
Namhyung Kim831394b2012-09-06 11:10:46 +09002794 event = pevent_find_event(pevent, evsel->attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002795 if (event == NULL)
2796 return -1;
2797
Namhyung Kim831394b2012-09-06 11:10:46 +09002798 if (!evsel->name) {
2799 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
2800 evsel->name = strdup(bf);
2801 if (evsel->name == NULL)
2802 return -1;
2803 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002804
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03002805 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002806 return 0;
2807}
2808
Namhyung Kim831394b2012-09-06 11:10:46 +09002809static int perf_evlist__prepare_tracepoint_events(struct perf_evlist *evlist,
2810 struct pevent *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002811{
2812 struct perf_evsel *pos;
2813
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002814 evlist__for_each_entry(evlist, pos) {
Namhyung Kim831394b2012-09-06 11:10:46 +09002815 if (pos->attr.type == PERF_TYPE_TRACEPOINT &&
2816 perf_evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002817 return -1;
2818 }
2819
2820 return 0;
2821}
2822
Jiri Olsad4339562013-07-17 19:49:41 +02002823int perf_session__read_header(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05002824{
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002825 struct perf_data_file *file = session->file;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002826 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002827 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002828 struct perf_file_attr f_attr;
2829 u64 f_id;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002830 int nr_attrs, nr_ids, i, j;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002831 int fd = perf_data_file__fd(file);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002832
Namhyung Kim334fe7a2013-03-11 16:43:12 +09002833 session->evlist = perf_evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002834 if (session->evlist == NULL)
2835 return -ENOMEM;
2836
Kan Liang2c071442015-08-28 05:48:05 -04002837 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03002838 session->machines.host.env = &header->env;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002839 if (perf_data_file__is_pipe(file))
Jiri Olsad4339562013-07-17 19:49:41 +02002840 return perf_header__read_pipe(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002841
Stephane Eranian69996df2012-02-09 23:21:06 +01002842 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002843 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002844
Namhyung Kimb314e5c2013-09-30 17:19:48 +09002845 /*
2846 * Sanity check that perf.data was written cleanly; data size is
2847 * initialized to 0 and updated only if the on_exit function is run.
2848 * If data size is still 0 then the file contains only partial
2849 * information. Just warn user and process it as much as it can.
2850 */
2851 if (f_header.data.size == 0) {
2852 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
2853 "Was the 'perf record' command properly terminated?\n",
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002854 file->path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09002855 }
2856
Vince Weaver5b9310f2019-07-23 11:06:01 -04002857 if (f_header.attr_size == 0) {
2858 pr_err("ERROR: The %s file's attr size field is 0 which is unexpected.\n"
2859 "Was the 'perf record' command properly terminated?\n",
2860 file->path);
2861 return -EINVAL;
2862 }
2863
Stephane Eranian69996df2012-02-09 23:21:06 +01002864 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002865 lseek(fd, f_header.attrs.offset, SEEK_SET);
2866
2867 for (i = 0; i < nr_attrs; i++) {
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002868 struct perf_evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02002869 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002870
Stephane Eranian69996df2012-02-09 23:21:06 +01002871 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002872 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002873
David Ahern1060ab82015-04-09 16:15:46 -04002874 if (header->needs_swap) {
2875 f_attr.ids.size = bswap_64(f_attr.ids.size);
2876 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06002877 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04002878 }
David Aherneda39132011-07-15 12:34:09 -06002879
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02002880 tmp = lseek(fd, 0, SEEK_CUR);
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03002881 evsel = perf_evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002882
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002883 if (evsel == NULL)
2884 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002885
2886 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002887 /*
2888 * Do it before so that if perf_evsel__alloc_id fails, this
2889 * entry gets purged too at perf_evlist__delete().
2890 */
2891 perf_evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002892
2893 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002894 /*
2895 * We don't have the cpu and thread maps on the header, so
2896 * for allocating the perf_sample_id table we fake 1 cpu and
2897 * hattr->ids threads.
2898 */
2899 if (perf_evsel__alloc_id(evsel, 1, nr_ids))
2900 goto out_delete_evlist;
2901
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002902 lseek(fd, f_attr.ids.offset, SEEK_SET);
2903
2904 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002905 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002906 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002907
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002908 perf_evlist__id_add(session->evlist, evsel, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002909 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02002910
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002911 lseek(fd, tmp, SEEK_SET);
2912 }
2913
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -02002914 symbol_conf.nr_events = nr_attrs;
2915
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002916 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002917 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01002918
Namhyung Kim831394b2012-09-06 11:10:46 +09002919 if (perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002920 session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002921 goto out_delete_evlist;
2922
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002923 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002924out_errno:
2925 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002926
2927out_delete_evlist:
2928 perf_evlist__delete(session->evlist);
2929 session->evlist = NULL;
2930 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002931}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02002932
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02002933int perf_event__synthesize_attr(struct perf_tool *tool,
Robert Richterf4d83432012-08-16 21:10:17 +02002934 struct perf_event_attr *attr, u32 ids, u64 *id,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002935 perf_event__handler_t process)
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02002936{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002937 union perf_event *ev;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002938 size_t size;
2939 int err;
2940
2941 size = sizeof(struct perf_event_attr);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03002942 size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002943 size += sizeof(struct perf_event_header);
2944 size += ids * sizeof(u64);
2945
Numfor Mbiziwo-Tiapo219db722019-07-24 16:44:58 -07002946 ev = zalloc(size);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002947
Chris Samuelce47dc52010-11-13 13:35:06 +11002948 if (ev == NULL)
2949 return -ENOMEM;
2950
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002951 ev->attr.attr = *attr;
2952 memcpy(ev->attr.id, id, ids * sizeof(u64));
2953
2954 ev->attr.header.type = PERF_RECORD_HEADER_ATTR;
Robert Richterf4d83432012-08-16 21:10:17 +02002955 ev->attr.header.size = (u16)size;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002956
Robert Richterf4d83432012-08-16 21:10:17 +02002957 if (ev->attr.header.size == size)
2958 err = process(tool, ev, NULL, NULL);
2959 else
2960 err = -E2BIG;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002961
2962 free(ev);
2963
2964 return err;
2965}
2966
Jiri Olsaa6e52812015-10-25 15:51:37 +01002967static struct event_update_event *
2968event_update_event__new(size_t size, u64 type, u64 id)
2969{
2970 struct event_update_event *ev;
2971
2972 size += sizeof(*ev);
2973 size = PERF_ALIGN(size, sizeof(u64));
2974
2975 ev = zalloc(size);
2976 if (ev) {
2977 ev->header.type = PERF_RECORD_EVENT_UPDATE;
2978 ev->header.size = (u16)size;
2979 ev->type = type;
2980 ev->id = id;
2981 }
2982 return ev;
2983}
2984
2985int
2986perf_event__synthesize_event_update_unit(struct perf_tool *tool,
2987 struct perf_evsel *evsel,
2988 perf_event__handler_t process)
2989{
2990 struct event_update_event *ev;
2991 size_t size = strlen(evsel->unit);
2992 int err;
2993
2994 ev = event_update_event__new(size + 1, PERF_EVENT_UPDATE__UNIT, evsel->id[0]);
2995 if (ev == NULL)
2996 return -ENOMEM;
2997
Arnaldo Carvalho de Melo769d74b2018-12-06 11:02:57 -03002998 strlcpy(ev->data, evsel->unit, size + 1);
Jiri Olsaa6e52812015-10-25 15:51:37 +01002999 err = process(tool, (union perf_event *)ev, NULL, NULL);
3000 free(ev);
3001 return err;
3002}
3003
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003004int
3005perf_event__synthesize_event_update_scale(struct perf_tool *tool,
3006 struct perf_evsel *evsel,
3007 perf_event__handler_t process)
3008{
3009 struct event_update_event *ev;
3010 struct event_update_event_scale *ev_data;
3011 int err;
3012
3013 ev = event_update_event__new(sizeof(*ev_data), PERF_EVENT_UPDATE__SCALE, evsel->id[0]);
3014 if (ev == NULL)
3015 return -ENOMEM;
3016
3017 ev_data = (struct event_update_event_scale *) ev->data;
3018 ev_data->scale = evsel->scale;
3019 err = process(tool, (union perf_event*) ev, NULL, NULL);
3020 free(ev);
3021 return err;
3022}
3023
Jiri Olsa802c9042015-10-25 15:51:39 +01003024int
3025perf_event__synthesize_event_update_name(struct perf_tool *tool,
3026 struct perf_evsel *evsel,
3027 perf_event__handler_t process)
3028{
3029 struct event_update_event *ev;
3030 size_t len = strlen(evsel->name);
3031 int err;
3032
3033 ev = event_update_event__new(len + 1, PERF_EVENT_UPDATE__NAME, evsel->id[0]);
3034 if (ev == NULL)
3035 return -ENOMEM;
3036
Arnaldo Carvalho de Melo16977a92018-12-06 11:09:46 -03003037 strlcpy(ev->data, evsel->name, len + 1);
Jiri Olsa802c9042015-10-25 15:51:39 +01003038 err = process(tool, (union perf_event*) ev, NULL, NULL);
3039 free(ev);
3040 return err;
3041}
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003042
Jiri Olsa86ebb092015-10-25 15:51:40 +01003043int
3044perf_event__synthesize_event_update_cpus(struct perf_tool *tool,
3045 struct perf_evsel *evsel,
3046 perf_event__handler_t process)
3047{
3048 size_t size = sizeof(struct event_update_event);
3049 struct event_update_event *ev;
3050 int max, err;
3051 u16 type;
3052
3053 if (!evsel->own_cpus)
3054 return 0;
3055
3056 ev = cpu_map_data__alloc(evsel->own_cpus, &size, &type, &max);
3057 if (!ev)
3058 return -ENOMEM;
3059
3060 ev->header.type = PERF_RECORD_EVENT_UPDATE;
3061 ev->header.size = (u16)size;
3062 ev->type = PERF_EVENT_UPDATE__CPUS;
3063 ev->id = evsel->id[0];
3064
3065 cpu_map_data__synthesize((struct cpu_map_data *) ev->data,
3066 evsel->own_cpus,
3067 type, max);
3068
3069 err = process(tool, (union perf_event*) ev, NULL, NULL);
3070 free(ev);
3071 return err;
3072}
3073
Jiri Olsac853f932015-10-25 15:51:41 +01003074size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
3075{
3076 struct event_update_event *ev = &event->event_update;
3077 struct event_update_event_scale *ev_scale;
3078 struct event_update_event_cpus *ev_cpus;
3079 struct cpu_map *map;
3080 size_t ret;
3081
3082 ret = fprintf(fp, "\n... id: %" PRIu64 "\n", ev->id);
3083
3084 switch (ev->type) {
3085 case PERF_EVENT_UPDATE__SCALE:
3086 ev_scale = (struct event_update_event_scale *) ev->data;
3087 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
3088 break;
3089 case PERF_EVENT_UPDATE__UNIT:
3090 ret += fprintf(fp, "... unit: %s\n", ev->data);
3091 break;
3092 case PERF_EVENT_UPDATE__NAME:
3093 ret += fprintf(fp, "... name: %s\n", ev->data);
3094 break;
3095 case PERF_EVENT_UPDATE__CPUS:
3096 ev_cpus = (struct event_update_event_cpus *) ev->data;
3097 ret += fprintf(fp, "... ");
3098
3099 map = cpu_map__new_data(&ev_cpus->cpus);
3100 if (map)
3101 ret += cpu_map__fprintf(map, fp);
3102 else
3103 ret += fprintf(fp, "failed to get cpus\n");
3104 break;
3105 default:
3106 ret += fprintf(fp, "... unknown type\n");
3107 break;
3108 }
3109
3110 return ret;
3111}
Jiri Olsa86ebb092015-10-25 15:51:40 +01003112
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003113int perf_event__synthesize_attrs(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003114 struct perf_session *session,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003115 perf_event__handler_t process)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003116{
Robert Richter6606f872012-08-16 21:10:19 +02003117 struct perf_evsel *evsel;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003118 int err = 0;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003119
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003120 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003121 err = perf_event__synthesize_attr(tool, &evsel->attr, evsel->ids,
3122 evsel->id, process);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003123 if (err) {
3124 pr_debug("failed to create perf header attribute\n");
3125 return err;
3126 }
3127 }
3128
3129 return err;
3130}
3131
Adrian Hunter47c3d102013-07-04 16:20:21 +03003132int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
3133 union perf_event *event,
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003134 struct perf_evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003135{
Robert Richterf4d83432012-08-16 21:10:17 +02003136 u32 i, ids, n_ids;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003137 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003138 struct perf_evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003139
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003140 if (evlist == NULL) {
Namhyung Kim334fe7a2013-03-11 16:43:12 +09003141 *pevlist = evlist = perf_evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003142 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003143 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003144 }
3145
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03003146 evsel = perf_evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003147 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003148 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003149
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003150 perf_evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003151
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003152 ids = event->header.size;
3153 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003154 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003155 /*
3156 * We don't have the cpu and thread maps on the header, so
3157 * for allocating the perf_sample_id table we fake 1 cpu and
3158 * hattr->ids threads.
3159 */
3160 if (perf_evsel__alloc_id(evsel, 1, n_ids))
3161 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003162
3163 for (i = 0; i < n_ids; i++) {
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003164 perf_evlist__id_add(evlist, evsel, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003165 }
3166
Adrian Hunter7e0d6fc2013-07-04 16:20:29 +03003167 symbol_conf.nr_events = evlist->nr_entries;
3168
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003169 return 0;
3170}
Tom Zanussicd19a032010-04-01 23:59:20 -05003171
Jiri Olsaffe777252015-10-25 15:51:36 +01003172int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
3173 union perf_event *event,
3174 struct perf_evlist **pevlist)
3175{
3176 struct event_update_event *ev = &event->event_update;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003177 struct event_update_event_scale *ev_scale;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003178 struct event_update_event_cpus *ev_cpus;
Jiri Olsaffe777252015-10-25 15:51:36 +01003179 struct perf_evlist *evlist;
3180 struct perf_evsel *evsel;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003181 struct cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01003182
3183 if (!pevlist || *pevlist == NULL)
3184 return -EINVAL;
3185
3186 evlist = *pevlist;
3187
3188 evsel = perf_evlist__id2evsel(evlist, ev->id);
3189 if (evsel == NULL)
3190 return -EINVAL;
3191
Jiri Olsaa6e52812015-10-25 15:51:37 +01003192 switch (ev->type) {
3193 case PERF_EVENT_UPDATE__UNIT:
3194 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003195 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01003196 case PERF_EVENT_UPDATE__NAME:
3197 evsel->name = strdup(ev->data);
3198 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003199 case PERF_EVENT_UPDATE__SCALE:
3200 ev_scale = (struct event_update_event_scale *) ev->data;
3201 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melob9175b32017-02-08 21:57:22 -03003202 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003203 case PERF_EVENT_UPDATE__CPUS:
3204 ev_cpus = (struct event_update_event_cpus *) ev->data;
3205
3206 map = cpu_map__new_data(&ev_cpus->cpus);
3207 if (map)
3208 evsel->own_cpus = map;
3209 else
3210 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01003211 default:
3212 break;
3213 }
3214
Jiri Olsaffe777252015-10-25 15:51:36 +01003215 return 0;
3216}
3217
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003218int perf_event__synthesize_tracing_data(struct perf_tool *tool, int fd,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003219 struct perf_evlist *evlist,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02003220 perf_event__handler_t process)
Tom Zanussi92155452010-04-01 23:59:21 -05003221{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003222 union perf_event ev;
Jiri Olsa29208e52011-10-20 15:59:43 +02003223 struct tracing_data *tdata;
Tom Zanussi92155452010-04-01 23:59:21 -05003224 ssize_t size = 0, aligned_size = 0, padding;
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003225 int err __maybe_unused = 0;
Tom Zanussi92155452010-04-01 23:59:21 -05003226
Jiri Olsa29208e52011-10-20 15:59:43 +02003227 /*
3228 * We are going to store the size of the data followed
3229 * by the data contents. Since the fd descriptor is a pipe,
3230 * we cannot seek back to store the size of the data once
3231 * we know it. Instead we:
3232 *
3233 * - write the tracing data to the temp file
3234 * - get/write the data size to pipe
3235 * - write the tracing data from the temp file
3236 * to the pipe
3237 */
3238 tdata = tracing_data_get(&evlist->entries, fd, true);
3239 if (!tdata)
3240 return -1;
3241
Tom Zanussi92155452010-04-01 23:59:21 -05003242 memset(&ev, 0, sizeof(ev));
3243
3244 ev.tracing_data.header.type = PERF_RECORD_HEADER_TRACING_DATA;
Jiri Olsa29208e52011-10-20 15:59:43 +02003245 size = tdata->size;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003246 aligned_size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi92155452010-04-01 23:59:21 -05003247 padding = aligned_size - size;
3248 ev.tracing_data.header.size = sizeof(ev.tracing_data);
3249 ev.tracing_data.size = aligned_size;
3250
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003251 process(tool, &ev, NULL, NULL);
Tom Zanussi92155452010-04-01 23:59:21 -05003252
Jiri Olsa29208e52011-10-20 15:59:43 +02003253 /*
3254 * The put function will copy all the tracing data
3255 * stored in temp file to the pipe.
3256 */
3257 tracing_data_put(tdata);
3258
Tom Zanussi92155452010-04-01 23:59:21 -05003259 write_padded(fd, NULL, 0, padding);
3260
3261 return aligned_size;
3262}
3263
Adrian Hunter47c3d102013-07-04 16:20:21 +03003264int perf_event__process_tracing_data(struct perf_tool *tool __maybe_unused,
3265 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003266 struct perf_session *session)
Tom Zanussi92155452010-04-01 23:59:21 -05003267{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003268 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003269 int fd = perf_data_file__fd(session->file);
3270 off_t offset = lseek(fd, 0, SEEK_CUR);
Tom Zanussi92155452010-04-01 23:59:21 -05003271 char buf[BUFSIZ];
3272
3273 /* setup for reading amidst mmap */
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003274 lseek(fd, offset + sizeof(struct tracing_data_event),
Tom Zanussi92155452010-04-01 23:59:21 -05003275 SEEK_SET);
3276
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003277 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003278 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003279 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05003280
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003281 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003282 pr_err("%s: reading input file", __func__);
3283 return -1;
3284 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003285 if (session->repipe) {
3286 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003287 if (retw <= 0 || retw != padding) {
3288 pr_err("%s: repiping tracing data padding", __func__);
3289 return -1;
3290 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003291 }
Tom Zanussi92155452010-04-01 23:59:21 -05003292
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003293 if (size_read + padding != size) {
3294 pr_err("%s: tracing data size mismatch", __func__);
3295 return -1;
3296 }
Tom Zanussi92155452010-04-01 23:59:21 -05003297
Namhyung Kim831394b2012-09-06 11:10:46 +09003298 perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003299 session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03003300
Tom Zanussi92155452010-04-01 23:59:21 -05003301 return size_read + padding;
3302}
Tom Zanussic7929e42010-04-01 23:59:22 -05003303
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003304int perf_event__synthesize_build_id(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003305 struct dso *pos, u16 misc,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003306 perf_event__handler_t process,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02003307 struct machine *machine)
Tom Zanussic7929e42010-04-01 23:59:22 -05003308{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003309 union perf_event ev;
Tom Zanussic7929e42010-04-01 23:59:22 -05003310 size_t len;
3311 int err = 0;
3312
3313 if (!pos->hit)
3314 return err;
3315
3316 memset(&ev, 0, sizeof(ev));
3317
3318 len = pos->long_name_len + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003319 len = PERF_ALIGN(len, NAME_ALIGN);
Tom Zanussic7929e42010-04-01 23:59:22 -05003320 memcpy(&ev.build_id.build_id, pos->build_id, sizeof(pos->build_id));
3321 ev.build_id.header.type = PERF_RECORD_HEADER_BUILD_ID;
3322 ev.build_id.header.misc = misc;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03003323 ev.build_id.pid = machine->pid;
Tom Zanussic7929e42010-04-01 23:59:22 -05003324 ev.build_id.header.size = sizeof(ev.build_id) + len;
3325 memcpy(&ev.build_id.filename, pos->long_name, pos->long_name_len);
3326
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003327 err = process(tool, &ev, NULL, machine);
Tom Zanussic7929e42010-04-01 23:59:22 -05003328
3329 return err;
3330}
3331
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003332int perf_event__process_build_id(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003333 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003334 struct perf_session *session)
Tom Zanussic7929e42010-04-01 23:59:22 -05003335{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003336 __event_process_build_id(&event->build_id,
3337 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08003338 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05003339 return 0;
3340}