blob: 28bdb48357f09ba0ad8e8a2109a008cf620d31de [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)) {
952 free(cache->map);
953 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
1011#define MAX_CACHES 2000
1012
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
Wang Nan1f121b02015-06-03 08:52:21 +00001457 if (!is_kernel_module(filename, cpumode))
Robert Richter08d95bd2012-02-10 15:41:55 +01001458 dso->kernel = dso_type;
1459
1460 build_id__sprintf(dso->build_id, sizeof(dso->build_id),
1461 sbuild_id);
1462 pr_debug("build id event received for %s: %s\n",
1463 dso->long_name, sbuild_id);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001464 dso__put(dso);
Robert Richter08d95bd2012-02-10 15:41:55 +01001465 }
1466
1467 err = 0;
1468out:
1469 return err;
1470}
1471
1472static int perf_header__read_build_ids_abi_quirk(struct perf_header *header,
1473 int input, u64 offset, u64 size)
1474{
1475 struct perf_session *session = container_of(header, struct perf_session, header);
1476 struct {
1477 struct perf_event_header header;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03001478 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Robert Richter08d95bd2012-02-10 15:41:55 +01001479 char filename[0];
1480 } old_bev;
1481 struct build_id_event bev;
1482 char filename[PATH_MAX];
1483 u64 limit = offset + size;
1484
1485 while (offset < limit) {
1486 ssize_t len;
1487
Namhyung Kim5323f602012-12-17 15:38:54 +09001488 if (readn(input, &old_bev, sizeof(old_bev)) != sizeof(old_bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001489 return -1;
1490
1491 if (header->needs_swap)
1492 perf_event_header__bswap(&old_bev.header);
1493
1494 len = old_bev.header.size - sizeof(old_bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001495 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001496 return -1;
1497
1498 bev.header = old_bev.header;
1499
1500 /*
1501 * As the pid is the missing value, we need to fill
1502 * it properly. The header.misc value give us nice hint.
1503 */
1504 bev.pid = HOST_KERNEL_ID;
1505 if (bev.header.misc == PERF_RECORD_MISC_GUEST_USER ||
1506 bev.header.misc == PERF_RECORD_MISC_GUEST_KERNEL)
1507 bev.pid = DEFAULT_GUEST_KERNEL_ID;
1508
1509 memcpy(bev.build_id, old_bev.build_id, sizeof(bev.build_id));
1510 __event_process_build_id(&bev, filename, session);
1511
1512 offset += bev.header.size;
1513 }
1514
1515 return 0;
1516}
1517
1518static int perf_header__read_build_ids(struct perf_header *header,
1519 int input, u64 offset, u64 size)
1520{
1521 struct perf_session *session = container_of(header, struct perf_session, header);
1522 struct build_id_event bev;
1523 char filename[PATH_MAX];
1524 u64 limit = offset + size, orig_offset = offset;
1525 int err = -1;
1526
1527 while (offset < limit) {
1528 ssize_t len;
1529
Namhyung Kim5323f602012-12-17 15:38:54 +09001530 if (readn(input, &bev, sizeof(bev)) != sizeof(bev))
Robert Richter08d95bd2012-02-10 15:41:55 +01001531 goto out;
1532
1533 if (header->needs_swap)
1534 perf_event_header__bswap(&bev.header);
1535
1536 len = bev.header.size - sizeof(bev);
Namhyung Kim5323f602012-12-17 15:38:54 +09001537 if (readn(input, filename, len) != len)
Robert Richter08d95bd2012-02-10 15:41:55 +01001538 goto out;
1539 /*
1540 * The a1645ce1 changeset:
1541 *
1542 * "perf: 'perf kvm' tool for monitoring guest performance from host"
1543 *
1544 * Added a field to struct build_id_event that broke the file
1545 * format.
1546 *
1547 * Since the kernel build-id is the first entry, process the
1548 * table using the old format if the well known
1549 * '[kernel.kallsyms]' string for the kernel build-id has the
1550 * first 4 characters chopped off (where the pid_t sits).
1551 */
1552 if (memcmp(filename, "nel.kallsyms]", 13) == 0) {
1553 if (lseek(input, orig_offset, SEEK_SET) == (off_t)-1)
1554 return -1;
1555 return perf_header__read_build_ids_abi_quirk(header, input, offset, size);
1556 }
1557
1558 __event_process_build_id(&bev, filename, session);
1559
1560 offset += bev.header.size;
1561 }
1562 err = 0;
1563out:
1564 return err;
1565}
1566
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001567static int process_tracing_data(struct perf_file_section *section __maybe_unused,
1568 struct perf_header *ph __maybe_unused,
1569 int fd, void *data)
Robert Richterf1c67db2012-02-10 15:41:56 +01001570{
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09001571 ssize_t ret = trace_report(fd, data, false);
1572 return ret < 0 ? -1 : 0;
Robert Richterf1c67db2012-02-10 15:41:56 +01001573}
1574
1575static int process_build_id(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001576 struct perf_header *ph, int fd,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001577 void *data __maybe_unused)
Robert Richterf1c67db2012-02-10 15:41:56 +01001578{
1579 if (perf_header__read_build_ids(ph, fd, section->offset, section->size))
1580 pr_debug("Failed to read buildids, continuing...\n");
1581 return 0;
1582}
1583
Namhyung Kima1ae5652012-09-24 17:14:59 +09001584static int process_hostname(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001585 struct perf_header *ph, int fd,
1586 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001587{
1588 ph->env.hostname = do_read_string(fd, ph);
1589 return ph->env.hostname ? 0 : -ENOMEM;
1590}
1591
1592static int process_osrelease(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.os_release = do_read_string(fd, ph);
1597 return ph->env.os_release ? 0 : -ENOMEM;
1598}
1599
1600static int process_version(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.version = do_read_string(fd, ph);
1605 return ph->env.version ? 0 : -ENOMEM;
1606}
1607
1608static int process_arch(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.arch = do_read_string(fd, ph);
1613 return ph->env.arch ? 0 : -ENOMEM;
1614}
1615
1616static int process_nrcpus(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{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001620 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001621 u32 nr;
1622
Namhyung Kim5323f602012-12-17 15:38:54 +09001623 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001624 if (ret != sizeof(nr))
1625 return -1;
1626
1627 if (ph->needs_swap)
1628 nr = bswap_32(nr);
1629
Arnaldo Carvalho de Melocaa47042015-09-11 12:36:12 -03001630 ph->env.nr_cpus_avail = nr;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001631
Namhyung Kim5323f602012-12-17 15:38:54 +09001632 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001633 if (ret != sizeof(nr))
1634 return -1;
1635
1636 if (ph->needs_swap)
1637 nr = bswap_32(nr);
1638
Arnaldo Carvalho de Melocaa47042015-09-11 12:36:12 -03001639 ph->env.nr_cpus_online = nr;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001640 return 0;
1641}
1642
1643static int process_cpudesc(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001644 struct perf_header *ph, int fd,
1645 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001646{
1647 ph->env.cpu_desc = do_read_string(fd, ph);
1648 return ph->env.cpu_desc ? 0 : -ENOMEM;
1649}
1650
1651static int process_cpuid(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.cpuid = do_read_string(fd, ph);
1656 return ph->env.cpuid ? 0 : -ENOMEM;
1657}
1658
1659static int process_total_mem(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 uint64_t mem;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001664 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001665
Namhyung Kim5323f602012-12-17 15:38:54 +09001666 ret = readn(fd, &mem, sizeof(mem));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001667 if (ret != sizeof(mem))
1668 return -1;
1669
1670 if (ph->needs_swap)
1671 mem = bswap_64(mem);
1672
1673 ph->env.total_mem = mem;
1674 return 0;
1675}
1676
Robert Richter7c2f7af2012-08-16 21:10:23 +02001677static struct perf_evsel *
1678perf_evlist__find_by_index(struct perf_evlist *evlist, int idx)
1679{
1680 struct perf_evsel *evsel;
1681
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03001682 evlist__for_each_entry(evlist, evsel) {
Robert Richter7c2f7af2012-08-16 21:10:23 +02001683 if (evsel->idx == idx)
1684 return evsel;
1685 }
1686
1687 return NULL;
1688}
1689
1690static void
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001691perf_evlist__set_event_name(struct perf_evlist *evlist,
1692 struct perf_evsel *event)
Robert Richter7c2f7af2012-08-16 21:10:23 +02001693{
1694 struct perf_evsel *evsel;
1695
1696 if (!event->name)
1697 return;
1698
1699 evsel = perf_evlist__find_by_index(evlist, event->idx);
1700 if (!evsel)
1701 return;
1702
1703 if (evsel->name)
1704 return;
1705
1706 evsel->name = strdup(event->name);
1707}
1708
1709static int
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001710process_event_desc(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001711 struct perf_header *header, int fd,
Irina Tirdea1d037ca2012-09-11 01:15:03 +03001712 void *data __maybe_unused)
Robert Richter7c2f7af2012-08-16 21:10:23 +02001713{
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001714 struct perf_session *session;
Robert Richter7c2f7af2012-08-16 21:10:23 +02001715 struct perf_evsel *evsel, *events = read_event_desc(header, fd);
1716
1717 if (!events)
1718 return 0;
1719
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001720 session = container_of(header, struct perf_session, header);
Robert Richter7c2f7af2012-08-16 21:10:23 +02001721 for (evsel = events; evsel->attr.size; evsel++)
1722 perf_evlist__set_event_name(session->evlist, evsel);
1723
1724 free_event_desc(events);
1725
1726 return 0;
1727}
1728
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001729static int process_cmdline(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001730 struct perf_header *ph, int fd,
1731 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001732{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001733 ssize_t ret;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001734 char *str, *cmdline = NULL, **argv = NULL;
1735 u32 nr, i, len = 0;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001736
Namhyung Kim5323f602012-12-17 15:38:54 +09001737 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001738 if (ret != sizeof(nr))
1739 return -1;
1740
1741 if (ph->needs_swap)
1742 nr = bswap_32(nr);
1743
1744 ph->env.nr_cmdline = nr;
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001745
1746 cmdline = zalloc(section->size + nr + 1);
1747 if (!cmdline)
1748 return -1;
1749
1750 argv = zalloc(sizeof(char *) * (nr + 1));
1751 if (!argv)
1752 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001753
1754 for (i = 0; i < nr; i++) {
1755 str = do_read_string(fd, ph);
1756 if (!str)
1757 goto error;
1758
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001759 argv[i] = cmdline + len;
1760 memcpy(argv[i], str, strlen(str) + 1);
1761 len += strlen(str) + 1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001762 free(str);
1763 }
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001764 ph->env.cmdline = cmdline;
1765 ph->env.cmdline_argv = (const char **) argv;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001766 return 0;
1767
1768error:
Jiri Olsa768dd3f2015-07-21 14:31:31 +02001769 free(argv);
1770 free(cmdline);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001771 return -1;
1772}
1773
Kan Liang2bb00d22015-09-01 09:58:12 -04001774static int process_cpu_topology(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001775 struct perf_header *ph, int fd,
1776 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001777{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001778 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001779 u32 nr, i;
1780 char *str;
1781 struct strbuf sb;
Kan Liang2bb00d22015-09-01 09:58:12 -04001782 int cpu_nr = ph->env.nr_cpus_online;
1783 u64 size = 0;
1784
1785 ph->env.cpu = calloc(cpu_nr, sizeof(*ph->env.cpu));
1786 if (!ph->env.cpu)
1787 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001788
Namhyung Kim5323f602012-12-17 15:38:54 +09001789 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001790 if (ret != sizeof(nr))
Kan Liang2bb00d22015-09-01 09:58:12 -04001791 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001792
1793 if (ph->needs_swap)
1794 nr = bswap_32(nr);
1795
1796 ph->env.nr_sibling_cores = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04001797 size += sizeof(u32);
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001798 if (strbuf_init(&sb, 128) < 0)
1799 goto free_cpu;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001800
1801 for (i = 0; i < nr; i++) {
1802 str = do_read_string(fd, ph);
1803 if (!str)
1804 goto error;
1805
1806 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001807 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
1808 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04001809 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001810 free(str);
1811 }
1812 ph->env.sibling_cores = strbuf_detach(&sb, NULL);
1813
Namhyung Kim5323f602012-12-17 15:38:54 +09001814 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001815 if (ret != sizeof(nr))
1816 return -1;
1817
1818 if (ph->needs_swap)
1819 nr = bswap_32(nr);
1820
1821 ph->env.nr_sibling_threads = nr;
Kan Liang2bb00d22015-09-01 09:58:12 -04001822 size += sizeof(u32);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001823
1824 for (i = 0; i < nr; i++) {
1825 str = do_read_string(fd, ph);
1826 if (!str)
1827 goto error;
1828
1829 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001830 if (strbuf_add(&sb, str, strlen(str) + 1) < 0)
1831 goto error;
Kan Liang2bb00d22015-09-01 09:58:12 -04001832 size += string_size(str);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001833 free(str);
1834 }
1835 ph->env.sibling_threads = strbuf_detach(&sb, NULL);
Kan Liang2bb00d22015-09-01 09:58:12 -04001836
1837 /*
1838 * The header may be from old perf,
1839 * which doesn't include core id and socket id information.
1840 */
1841 if (section->size <= size) {
1842 zfree(&ph->env.cpu);
1843 return 0;
1844 }
1845
1846 for (i = 0; i < (u32)cpu_nr; i++) {
1847 ret = readn(fd, &nr, sizeof(nr));
1848 if (ret != sizeof(nr))
1849 goto free_cpu;
1850
1851 if (ph->needs_swap)
1852 nr = bswap_32(nr);
1853
Kan Liang2bb00d22015-09-01 09:58:12 -04001854 ph->env.cpu[i].core_id = nr;
1855
1856 ret = readn(fd, &nr, sizeof(nr));
1857 if (ret != sizeof(nr))
1858 goto free_cpu;
1859
1860 if (ph->needs_swap)
1861 nr = bswap_32(nr);
1862
1863 if (nr > (u32)cpu_nr) {
1864 pr_debug("socket_id number is too big."
1865 "You may need to upgrade the perf tool.\n");
1866 goto free_cpu;
1867 }
1868
1869 ph->env.cpu[i].socket_id = nr;
1870 }
1871
Namhyung Kima1ae5652012-09-24 17:14:59 +09001872 return 0;
1873
1874error:
1875 strbuf_release(&sb);
Kan Liang2bb00d22015-09-01 09:58:12 -04001876free_cpu:
1877 zfree(&ph->env.cpu);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001878 return -1;
1879}
1880
1881static int process_numa_topology(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001882 struct perf_header *ph, int fd,
1883 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001884{
Jiri Olsac60da22a2016-07-04 14:16:20 +02001885 struct numa_node *nodes, *n;
Jiri Olsa727ebd52013-11-28 11:30:14 +01001886 ssize_t ret;
Jiri Olsac60da22a2016-07-04 14:16:20 +02001887 u32 nr, i;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001888 char *str;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001889
1890 /* nr nodes */
Namhyung Kim5323f602012-12-17 15:38:54 +09001891 ret = readn(fd, &nr, sizeof(nr));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001892 if (ret != sizeof(nr))
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001893 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001894
1895 if (ph->needs_swap)
1896 nr = bswap_32(nr);
1897
Jiri Olsac60da22a2016-07-04 14:16:20 +02001898 nodes = zalloc(sizeof(*nodes) * nr);
1899 if (!nodes)
1900 return -ENOMEM;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001901
1902 for (i = 0; i < nr; i++) {
Jiri Olsac60da22a2016-07-04 14:16:20 +02001903 n = &nodes[i];
1904
Namhyung Kima1ae5652012-09-24 17:14:59 +09001905 /* node number */
Jiri Olsac60da22a2016-07-04 14:16:20 +02001906 ret = readn(fd, &n->node, sizeof(u32));
1907 if (ret != sizeof(n->node))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001908 goto error;
1909
Jiri Olsac60da22a2016-07-04 14:16:20 +02001910 ret = readn(fd, &n->mem_total, sizeof(u64));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001911 if (ret != sizeof(u64))
1912 goto error;
1913
Jiri Olsac60da22a2016-07-04 14:16:20 +02001914 ret = readn(fd, &n->mem_free, sizeof(u64));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001915 if (ret != sizeof(u64))
1916 goto error;
1917
1918 if (ph->needs_swap) {
Jiri Olsac60da22a2016-07-04 14:16:20 +02001919 n->node = bswap_32(n->node);
1920 n->mem_total = bswap_64(n->mem_total);
1921 n->mem_free = bswap_64(n->mem_free);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001922 }
1923
Namhyung Kima1ae5652012-09-24 17:14:59 +09001924 str = do_read_string(fd, ph);
1925 if (!str)
1926 goto error;
1927
Jiri Olsac60da22a2016-07-04 14:16:20 +02001928 n->map = cpu_map__new(str);
1929 if (!n->map)
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001930 goto error;
Jiri Olsac60da22a2016-07-04 14:16:20 +02001931
Namhyung Kima1ae5652012-09-24 17:14:59 +09001932 free(str);
1933 }
Jiri Olsaf957a532016-10-10 09:56:32 +02001934 ph->env.nr_numa_nodes = nr;
Jiri Olsac60da22a2016-07-04 14:16:20 +02001935 ph->env.numa_nodes = nodes;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001936 return 0;
1937
1938error:
Jiri Olsac60da22a2016-07-04 14:16:20 +02001939 free(nodes);
Namhyung Kima1ae5652012-09-24 17:14:59 +09001940 return -1;
1941}
1942
1943static int process_pmu_mappings(struct perf_file_section *section __maybe_unused,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09001944 struct perf_header *ph, int fd,
1945 void *data __maybe_unused)
Namhyung Kima1ae5652012-09-24 17:14:59 +09001946{
Jiri Olsa727ebd52013-11-28 11:30:14 +01001947 ssize_t ret;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001948 char *name;
1949 u32 pmu_num;
1950 u32 type;
1951 struct strbuf sb;
1952
Namhyung Kim5323f602012-12-17 15:38:54 +09001953 ret = readn(fd, &pmu_num, sizeof(pmu_num));
Namhyung Kima1ae5652012-09-24 17:14:59 +09001954 if (ret != sizeof(pmu_num))
1955 return -1;
1956
1957 if (ph->needs_swap)
1958 pmu_num = bswap_32(pmu_num);
1959
1960 if (!pmu_num) {
1961 pr_debug("pmu mappings not available\n");
1962 return 0;
1963 }
1964
1965 ph->env.nr_pmu_mappings = pmu_num;
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001966 if (strbuf_init(&sb, 128) < 0)
1967 return -1;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001968
1969 while (pmu_num) {
Namhyung Kim5323f602012-12-17 15:38:54 +09001970 if (readn(fd, &type, sizeof(type)) != sizeof(type))
Namhyung Kima1ae5652012-09-24 17:14:59 +09001971 goto error;
1972 if (ph->needs_swap)
1973 type = bswap_32(type);
1974
1975 name = do_read_string(fd, ph);
1976 if (!name)
1977 goto error;
1978
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001979 if (strbuf_addf(&sb, "%u:%s", type, name) < 0)
1980 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001981 /* include a NULL character at the end */
Masami Hiramatsu642aada2016-05-10 14:47:35 +09001982 if (strbuf_add(&sb, "", 1) < 0)
1983 goto error;
Namhyung Kima1ae5652012-09-24 17:14:59 +09001984
Kan Liange0838e02015-09-10 11:03:05 -03001985 if (!strcmp(name, "msr"))
1986 ph->env.msr_pmu_type = type;
1987
Namhyung Kima1ae5652012-09-24 17:14:59 +09001988 free(name);
1989 pmu_num--;
1990 }
1991 ph->env.pmu_mappings = strbuf_detach(&sb, NULL);
1992 return 0;
1993
1994error:
1995 strbuf_release(&sb);
1996 return -1;
1997}
1998
Namhyung Kima8bb5592013-01-22 18:09:31 +09001999static int process_group_desc(struct perf_file_section *section __maybe_unused,
2000 struct perf_header *ph, int fd,
2001 void *data __maybe_unused)
2002{
2003 size_t ret = -1;
2004 u32 i, nr, nr_groups;
2005 struct perf_session *session;
2006 struct perf_evsel *evsel, *leader = NULL;
2007 struct group_desc {
2008 char *name;
2009 u32 leader_idx;
2010 u32 nr_members;
2011 } *desc;
2012
2013 if (readn(fd, &nr_groups, sizeof(nr_groups)) != sizeof(nr_groups))
2014 return -1;
2015
2016 if (ph->needs_swap)
2017 nr_groups = bswap_32(nr_groups);
2018
2019 ph->env.nr_groups = nr_groups;
2020 if (!nr_groups) {
2021 pr_debug("group desc not available\n");
2022 return 0;
2023 }
2024
2025 desc = calloc(nr_groups, sizeof(*desc));
2026 if (!desc)
2027 return -1;
2028
2029 for (i = 0; i < nr_groups; i++) {
2030 desc[i].name = do_read_string(fd, ph);
2031 if (!desc[i].name)
2032 goto out_free;
2033
2034 if (readn(fd, &desc[i].leader_idx, sizeof(u32)) != sizeof(u32))
2035 goto out_free;
2036
2037 if (readn(fd, &desc[i].nr_members, sizeof(u32)) != sizeof(u32))
2038 goto out_free;
2039
2040 if (ph->needs_swap) {
2041 desc[i].leader_idx = bswap_32(desc[i].leader_idx);
2042 desc[i].nr_members = bswap_32(desc[i].nr_members);
2043 }
2044 }
2045
2046 /*
2047 * Rebuild group relationship based on the group_desc
2048 */
2049 session = container_of(ph, struct perf_session, header);
2050 session->evlist->nr_groups = nr_groups;
2051
2052 i = nr = 0;
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002053 evlist__for_each_entry(session->evlist, evsel) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002054 if (evsel->idx == (int) desc[i].leader_idx) {
2055 evsel->leader = evsel;
2056 /* {anon_group} is a dummy name */
Namhyung Kim210e8122013-11-18 11:20:43 +09002057 if (strcmp(desc[i].name, "{anon_group}")) {
Namhyung Kima8bb5592013-01-22 18:09:31 +09002058 evsel->group_name = desc[i].name;
Namhyung Kim210e8122013-11-18 11:20:43 +09002059 desc[i].name = NULL;
2060 }
Namhyung Kima8bb5592013-01-22 18:09:31 +09002061 evsel->nr_members = desc[i].nr_members;
2062
2063 if (i >= nr_groups || nr > 0) {
2064 pr_debug("invalid group desc\n");
2065 goto out_free;
2066 }
2067
2068 leader = evsel;
2069 nr = evsel->nr_members - 1;
2070 i++;
2071 } else if (nr) {
2072 /* This is a group member */
2073 evsel->leader = leader;
2074
2075 nr--;
2076 }
2077 }
2078
2079 if (i != nr_groups || nr != 0) {
2080 pr_debug("invalid group desc\n");
2081 goto out_free;
2082 }
2083
2084 ret = 0;
2085out_free:
Namhyung Kim50a27402013-11-18 11:20:44 +09002086 for (i = 0; i < nr_groups; i++)
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -03002087 zfree(&desc[i].name);
Namhyung Kima8bb5592013-01-22 18:09:31 +09002088 free(desc);
2089
2090 return ret;
2091}
2092
Adrian Hunter99fa2982015-04-30 17:37:25 +03002093static int process_auxtrace(struct perf_file_section *section,
2094 struct perf_header *ph, int fd,
2095 void *data __maybe_unused)
2096{
2097 struct perf_session *session;
2098 int err;
2099
2100 session = container_of(ph, struct perf_session, header);
2101
2102 err = auxtrace_index__process(fd, section->size, session,
2103 ph->needs_swap);
2104 if (err < 0)
2105 pr_err("Failed to process auxtrace index\n");
2106 return err;
2107}
2108
Jiri Olsa720e98b2016-02-16 16:01:43 +01002109static int process_cache(struct perf_file_section *section __maybe_unused,
2110 struct perf_header *ph __maybe_unused, int fd __maybe_unused,
2111 void *data __maybe_unused)
2112{
2113 struct cpu_cache_level *caches;
2114 u32 cnt, i, version;
2115
2116 if (readn(fd, &version, sizeof(version)) != sizeof(version))
2117 return -1;
2118
2119 if (ph->needs_swap)
2120 version = bswap_32(version);
2121
2122 if (version != 1)
2123 return -1;
2124
2125 if (readn(fd, &cnt, sizeof(cnt)) != sizeof(cnt))
2126 return -1;
2127
2128 if (ph->needs_swap)
2129 cnt = bswap_32(cnt);
2130
2131 caches = zalloc(sizeof(*caches) * cnt);
2132 if (!caches)
2133 return -1;
2134
2135 for (i = 0; i < cnt; i++) {
2136 struct cpu_cache_level c;
2137
2138 #define _R(v) \
2139 if (readn(fd, &c.v, sizeof(u32)) != sizeof(u32))\
2140 goto out_free_caches; \
2141 if (ph->needs_swap) \
2142 c.v = bswap_32(c.v); \
2143
2144 _R(level)
2145 _R(line_size)
2146 _R(sets)
2147 _R(ways)
2148 #undef _R
2149
2150 #define _R(v) \
2151 c.v = do_read_string(fd, ph); \
2152 if (!c.v) \
2153 goto out_free_caches;
2154
2155 _R(type)
2156 _R(size)
2157 _R(map)
2158 #undef _R
2159
2160 caches[i] = c;
2161 }
2162
2163 ph->env.caches = caches;
2164 ph->env.caches_cnt = cnt;
2165 return 0;
2166out_free_caches:
2167 free(caches);
2168 return -1;
2169}
2170
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002171struct feature_ops {
2172 int (*write)(int fd, struct perf_header *h, struct perf_evlist *evlist);
2173 void (*print)(struct perf_header *h, int fd, FILE *fp);
Robert Richterf1c67db2012-02-10 15:41:56 +01002174 int (*process)(struct perf_file_section *section,
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002175 struct perf_header *h, int fd, void *data);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002176 const char *name;
2177 bool full_only;
2178};
2179
Robert Richter8cdfa782011-12-07 10:02:56 +01002180#define FEAT_OPA(n, func) \
2181 [n] = { .name = #n, .write = write_##func, .print = print_##func }
Robert Richterf1c67db2012-02-10 15:41:56 +01002182#define FEAT_OPP(n, func) \
2183 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
2184 .process = process_##func }
Robert Richter8cdfa782011-12-07 10:02:56 +01002185#define FEAT_OPF(n, func) \
Robert Richterf1c67db2012-02-10 15:41:56 +01002186 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
Namhyung Kima1ae5652012-09-24 17:14:59 +09002187 .process = process_##func, .full_only = true }
Robert Richter8cdfa782011-12-07 10:02:56 +01002188
2189/* feature_ops not implemented: */
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002190#define print_tracing_data NULL
2191#define print_build_id NULL
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002192
2193static const struct feature_ops feat_ops[HEADER_LAST_FEATURE] = {
Stephane Eranian2eeaaa02012-05-15 13:28:13 +02002194 FEAT_OPP(HEADER_TRACING_DATA, tracing_data),
Robert Richterf1c67db2012-02-10 15:41:56 +01002195 FEAT_OPP(HEADER_BUILD_ID, build_id),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002196 FEAT_OPP(HEADER_HOSTNAME, hostname),
2197 FEAT_OPP(HEADER_OSRELEASE, osrelease),
2198 FEAT_OPP(HEADER_VERSION, version),
2199 FEAT_OPP(HEADER_ARCH, arch),
2200 FEAT_OPP(HEADER_NRCPUS, nrcpus),
2201 FEAT_OPP(HEADER_CPUDESC, cpudesc),
Namhyung Kim37e9d752012-09-24 17:15:03 +09002202 FEAT_OPP(HEADER_CPUID, cpuid),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002203 FEAT_OPP(HEADER_TOTAL_MEM, total_mem),
Robert Richter7c2f7af2012-08-16 21:10:23 +02002204 FEAT_OPP(HEADER_EVENT_DESC, event_desc),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002205 FEAT_OPP(HEADER_CMDLINE, cmdline),
Robert Richter8cdfa782011-12-07 10:02:56 +01002206 FEAT_OPF(HEADER_CPU_TOPOLOGY, cpu_topology),
2207 FEAT_OPF(HEADER_NUMA_TOPOLOGY, numa_topology),
Stephane Eranian330aa672012-03-08 23:47:46 +01002208 FEAT_OPA(HEADER_BRANCH_STACK, branch_stack),
Namhyung Kima1ae5652012-09-24 17:14:59 +09002209 FEAT_OPP(HEADER_PMU_MAPPINGS, pmu_mappings),
Namhyung Kima8bb5592013-01-22 18:09:31 +09002210 FEAT_OPP(HEADER_GROUP_DESC, group_desc),
Adrian Hunter99fa2982015-04-30 17:37:25 +03002211 FEAT_OPP(HEADER_AUXTRACE, auxtrace),
Jiri Olsaffa517a2015-10-25 15:51:43 +01002212 FEAT_OPA(HEADER_STAT, stat),
Jiri Olsa720e98b2016-02-16 16:01:43 +01002213 FEAT_OPF(HEADER_CACHE, cache),
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002214};
2215
2216struct header_print_data {
2217 FILE *fp;
2218 bool full; /* extended list of headers */
2219};
2220
2221static int perf_file_section__fprintf_info(struct perf_file_section *section,
2222 struct perf_header *ph,
2223 int feat, int fd, void *data)
2224{
2225 struct header_print_data *hd = data;
2226
2227 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
2228 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
2229 "%d, continuing...\n", section->offset, feat);
2230 return 0;
2231 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002232 if (feat >= HEADER_LAST_FEATURE) {
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002233 pr_warning("unknown feature %d\n", feat);
Robert Richterf7a8a132011-12-07 10:02:51 +01002234 return 0;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002235 }
2236 if (!feat_ops[feat].print)
2237 return 0;
2238
2239 if (!feat_ops[feat].full_only || hd->full)
2240 feat_ops[feat].print(ph, fd, hd->fp);
2241 else
2242 fprintf(hd->fp, "# %s info available, use -I to display\n",
2243 feat_ops[feat].name);
2244
2245 return 0;
2246}
2247
2248int perf_header__fprintf_info(struct perf_session *session, FILE *fp, bool full)
2249{
2250 struct header_print_data hd;
2251 struct perf_header *header = &session->header;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002252 int fd = perf_data_file__fd(session->file);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002253 hd.fp = fp;
2254 hd.full = full;
2255
2256 perf_header__process_sections(header, fd, &hd,
2257 perf_file_section__fprintf_info);
2258 return 0;
2259}
2260
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002261static int do_write_feat(int fd, struct perf_header *h, int type,
2262 struct perf_file_section **p,
2263 struct perf_evlist *evlist)
2264{
2265 int err;
2266 int ret = 0;
2267
2268 if (perf_header__has_feat(h, type)) {
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002269 if (!feat_ops[type].write)
2270 return -1;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002271
2272 (*p)->offset = lseek(fd, 0, SEEK_CUR);
2273
2274 err = feat_ops[type].write(fd, h, evlist);
2275 if (err < 0) {
2276 pr_debug("failed to write feature %d\n", type);
2277
2278 /* undo anything written */
2279 lseek(fd, (*p)->offset, SEEK_SET);
2280
2281 return -1;
2282 }
2283 (*p)->size = lseek(fd, 0, SEEK_CUR) - (*p)->offset;
2284 (*p)++;
2285 }
2286 return ret;
2287}
2288
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002289static int perf_header__adds_write(struct perf_header *header,
Arnaldo Carvalho de Melo361c99a2011-01-11 20:56:53 -02002290 struct perf_evlist *evlist, int fd)
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002291{
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002292 int nr_sections;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002293 struct perf_file_section *feat_sec, *p;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002294 int sec_size;
2295 u64 sec_start;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002296 int feat;
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002297 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002298
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002299 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002300 if (!nr_sections)
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002301 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002302
Paul Gortmaker91b98802013-01-30 20:05:49 -05002303 feat_sec = p = calloc(nr_sections, sizeof(*feat_sec));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002304 if (feat_sec == NULL)
2305 return -ENOMEM;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002306
2307 sec_size = sizeof(*feat_sec) * nr_sections;
2308
Jiri Olsa8d541e92013-07-17 19:49:44 +02002309 sec_start = header->feat_offset;
Xiao Guangrongf887f302010-02-04 16:46:42 +08002310 lseek(fd, sec_start + sec_size, SEEK_SET);
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002311
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002312 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) {
2313 if (do_write_feat(fd, header, feat, &p, evlist))
2314 perf_header__clear_feat(header, feat);
2315 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002316
Xiao Guangrongf887f302010-02-04 16:46:42 +08002317 lseek(fd, sec_start, SEEK_SET);
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002318 /*
2319 * may write more than needed due to dropped feature, but
2320 * this is okay, reader will skip the mising entries
2321 */
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002322 err = do_write(fd, feat_sec, sec_size);
2323 if (err < 0)
2324 pr_debug("failed to write feature section\n");
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002325 free(feat_sec);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002326 return err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002327}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002328
Tom Zanussi8dc58102010-04-01 23:59:15 -05002329int perf_header__write_pipe(int fd)
2330{
2331 struct perf_pipe_file_header f_header;
2332 int err;
2333
2334 f_header = (struct perf_pipe_file_header){
2335 .magic = PERF_MAGIC,
2336 .size = sizeof(f_header),
2337 };
2338
2339 err = do_write(fd, &f_header, sizeof(f_header));
2340 if (err < 0) {
2341 pr_debug("failed to write perf pipe header\n");
2342 return err;
2343 }
2344
2345 return 0;
2346}
2347
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002348int perf_session__write_header(struct perf_session *session,
2349 struct perf_evlist *evlist,
2350 int fd, bool at_exit)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002351{
2352 struct perf_file_header f_header;
2353 struct perf_file_attr f_attr;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002354 struct perf_header *header = &session->header;
Jiri Olsa563aecb2013-06-05 13:35:06 +02002355 struct perf_evsel *evsel;
Jiri Olsa944d62b2013-07-17 19:49:43 +02002356 u64 attr_offset;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002357 int err;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002358
2359 lseek(fd, sizeof(f_header), SEEK_SET);
2360
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002361 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02002362 evsel->id_offset = lseek(fd, 0, SEEK_CUR);
2363 err = do_write(fd, evsel->id, evsel->ids * sizeof(u64));
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002364 if (err < 0) {
2365 pr_debug("failed to write perf header\n");
2366 return err;
2367 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002368 }
2369
Jiri Olsa944d62b2013-07-17 19:49:43 +02002370 attr_offset = lseek(fd, 0, SEEK_CUR);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002371
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002372 evlist__for_each_entry(evlist, evsel) {
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002373 f_attr = (struct perf_file_attr){
Robert Richter6606f872012-08-16 21:10:19 +02002374 .attr = evsel->attr,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002375 .ids = {
Robert Richter6606f872012-08-16 21:10:19 +02002376 .offset = evsel->id_offset,
2377 .size = evsel->ids * sizeof(u64),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002378 }
2379 };
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002380 err = do_write(fd, &f_attr, sizeof(f_attr));
2381 if (err < 0) {
2382 pr_debug("failed to write perf header attribute\n");
2383 return err;
2384 }
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002385 }
2386
Adrian Hunterd645c442013-12-11 14:36:28 +02002387 if (!header->data_offset)
2388 header->data_offset = lseek(fd, 0, SEEK_CUR);
Jiri Olsa8d541e92013-07-17 19:49:44 +02002389 header->feat_offset = header->data_offset + header->data_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002390
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002391 if (at_exit) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002392 err = perf_header__adds_write(header, evlist, fd);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002393 if (err < 0)
2394 return err;
2395 }
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002396
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002397 f_header = (struct perf_file_header){
2398 .magic = PERF_MAGIC,
2399 .size = sizeof(f_header),
2400 .attr_size = sizeof(f_attr),
2401 .attrs = {
Jiri Olsa944d62b2013-07-17 19:49:43 +02002402 .offset = attr_offset,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002403 .size = evlist->nr_entries * sizeof(f_attr),
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002404 },
2405 .data = {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002406 .offset = header->data_offset,
2407 .size = header->data_size,
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002408 },
Jiri Olsa44b3c572013-07-11 17:28:31 +02002409 /* event_types is ignored, store zeros */
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002410 };
2411
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002412 memcpy(&f_header.adds_features, &header->adds_features, sizeof(header->adds_features));
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002413
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002414 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002415 err = do_write(fd, &f_header, sizeof(f_header));
2416 if (err < 0) {
2417 pr_debug("failed to write perf header\n");
2418 return err;
2419 }
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002420 lseek(fd, header->data_offset + header->data_size, SEEK_SET);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002421
Arnaldo Carvalho de Melod5eed902009-11-19 14:55:56 -02002422 return 0;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002423}
2424
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002425static int perf_header__getbuffer64(struct perf_header *header,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002426 int fd, void *buf, size_t size)
2427{
Arnaldo Carvalho de Melo1e7972c2011-01-03 16:50:55 -02002428 if (readn(fd, buf, size) <= 0)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002429 return -1;
2430
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002431 if (header->needs_swap)
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002432 mem_bswap_64(buf, size);
2433
2434 return 0;
2435}
2436
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002437int perf_header__process_sections(struct perf_header *header, int fd,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002438 void *data,
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002439 int (*process)(struct perf_file_section *section,
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002440 struct perf_header *ph,
2441 int feat, int fd, void *data))
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002442{
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002443 struct perf_file_section *feat_sec, *sec;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002444 int nr_sections;
2445 int sec_size;
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002446 int feat;
2447 int err;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002448
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002449 nr_sections = bitmap_weight(header->adds_features, HEADER_FEAT_BITS);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002450 if (!nr_sections)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002451 return 0;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002452
Paul Gortmaker91b98802013-01-30 20:05:49 -05002453 feat_sec = sec = calloc(nr_sections, sizeof(*feat_sec));
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002454 if (!feat_sec)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002455 return -1;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002456
2457 sec_size = sizeof(*feat_sec) * nr_sections;
2458
Jiri Olsa8d541e92013-07-17 19:49:44 +02002459 lseek(fd, header->feat_offset, SEEK_SET);
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002460
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002461 err = perf_header__getbuffer64(header, fd, feat_sec, sec_size);
2462 if (err < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002463 goto out_free;
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002464
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002465 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) {
2466 err = process(sec++, header, feat, fd, data);
2467 if (err < 0)
2468 goto out_free;
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01002469 }
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002470 err = 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002471out_free:
Frederic Weisbecker9e827dd2009-11-11 04:51:07 +01002472 free(feat_sec);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002473 return err;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002474}
Frederic Weisbecker2ba08252009-10-17 17:12:34 +02002475
Stephane Eranian114382a2012-02-09 23:21:08 +01002476static const int attr_file_abi_sizes[] = {
2477 [0] = PERF_ATTR_SIZE_VER0,
2478 [1] = PERF_ATTR_SIZE_VER1,
Jiri Olsa239cc472012-08-07 15:20:42 +02002479 [2] = PERF_ATTR_SIZE_VER2,
Jiri Olsa0f6a3012012-08-07 15:20:45 +02002480 [3] = PERF_ATTR_SIZE_VER3,
Stephane Eranian6a21c0b2014-09-24 13:48:39 +02002481 [4] = PERF_ATTR_SIZE_VER4,
Stephane Eranian114382a2012-02-09 23:21:08 +01002482 0,
2483};
2484
2485/*
2486 * In the legacy file format, the magic number is not used to encode endianness.
2487 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
2488 * on ABI revisions, we need to try all combinations for all endianness to
2489 * detect the endianness.
2490 */
2491static int try_all_file_abis(uint64_t hdr_sz, struct perf_header *ph)
2492{
2493 uint64_t ref_size, attr_size;
2494 int i;
2495
2496 for (i = 0 ; attr_file_abi_sizes[i]; i++) {
2497 ref_size = attr_file_abi_sizes[i]
2498 + sizeof(struct perf_file_section);
2499 if (hdr_sz != ref_size) {
2500 attr_size = bswap_64(hdr_sz);
2501 if (attr_size != ref_size)
2502 continue;
2503
2504 ph->needs_swap = true;
2505 }
2506 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
2507 i,
2508 ph->needs_swap);
2509 return 0;
2510 }
2511 /* could not determine endianness */
2512 return -1;
2513}
2514
2515#define PERF_PIPE_HDR_VER0 16
2516
2517static const size_t attr_pipe_abi_sizes[] = {
2518 [0] = PERF_PIPE_HDR_VER0,
2519 0,
2520};
2521
2522/*
2523 * In the legacy pipe format, there is an implicit assumption that endiannesss
2524 * between host recording the samples, and host parsing the samples is the
2525 * same. This is not always the case given that the pipe output may always be
2526 * redirected into a file and analyzed on a different machine with possibly a
2527 * different endianness and perf_event ABI revsions in the perf tool itself.
2528 */
2529static int try_all_pipe_abis(uint64_t hdr_sz, struct perf_header *ph)
2530{
2531 u64 attr_size;
2532 int i;
2533
2534 for (i = 0 ; attr_pipe_abi_sizes[i]; i++) {
2535 if (hdr_sz != attr_pipe_abi_sizes[i]) {
2536 attr_size = bswap_64(hdr_sz);
2537 if (attr_size != hdr_sz)
2538 continue;
2539
2540 ph->needs_swap = true;
2541 }
2542 pr_debug("Pipe ABI%d perf.data file detected\n", i);
2543 return 0;
2544 }
2545 return -1;
2546}
2547
Feng Tange84ba4e2012-10-30 11:56:07 +08002548bool is_perf_magic(u64 magic)
2549{
2550 if (!memcmp(&magic, __perf_magic1, sizeof(magic))
2551 || magic == __perf_magic2
2552 || magic == __perf_magic2_sw)
2553 return true;
2554
2555 return false;
2556}
2557
Stephane Eranian114382a2012-02-09 23:21:08 +01002558static int check_magic_endian(u64 magic, uint64_t hdr_sz,
2559 bool is_pipe, struct perf_header *ph)
Stephane Eranian73323f52012-02-02 13:54:44 +01002560{
2561 int ret;
2562
2563 /* check for legacy format */
Stephane Eranian114382a2012-02-09 23:21:08 +01002564 ret = memcmp(&magic, __perf_magic1, sizeof(magic));
Stephane Eranian73323f52012-02-02 13:54:44 +01002565 if (ret == 0) {
Jiri Olsa2a08c3e2013-07-17 19:49:47 +02002566 ph->version = PERF_HEADER_VERSION_1;
Stephane Eranian73323f52012-02-02 13:54:44 +01002567 pr_debug("legacy perf.data format\n");
Stephane Eranian114382a2012-02-09 23:21:08 +01002568 if (is_pipe)
2569 return try_all_pipe_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01002570
Stephane Eranian114382a2012-02-09 23:21:08 +01002571 return try_all_file_abis(hdr_sz, ph);
Stephane Eranian73323f52012-02-02 13:54:44 +01002572 }
Stephane Eranian114382a2012-02-09 23:21:08 +01002573 /*
2574 * the new magic number serves two purposes:
2575 * - unique number to identify actual perf.data files
2576 * - encode endianness of file
2577 */
Namhyung Kimf7913972015-01-29 17:06:45 +09002578 ph->version = PERF_HEADER_VERSION_2;
Stephane Eranian73323f52012-02-02 13:54:44 +01002579
Stephane Eranian114382a2012-02-09 23:21:08 +01002580 /* check magic number with one endianness */
2581 if (magic == __perf_magic2)
Stephane Eranian73323f52012-02-02 13:54:44 +01002582 return 0;
2583
Stephane Eranian114382a2012-02-09 23:21:08 +01002584 /* check magic number with opposite endianness */
2585 if (magic != __perf_magic2_sw)
Stephane Eranian73323f52012-02-02 13:54:44 +01002586 return -1;
2587
2588 ph->needs_swap = true;
2589
2590 return 0;
2591}
2592
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002593int perf_file_header__read(struct perf_file_header *header,
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002594 struct perf_header *ph, int fd)
2595{
Jiri Olsa727ebd52013-11-28 11:30:14 +01002596 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01002597
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002598 lseek(fd, 0, SEEK_SET);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002599
Stephane Eranian73323f52012-02-02 13:54:44 +01002600 ret = readn(fd, header, sizeof(*header));
2601 if (ret <= 0)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002602 return -1;
2603
Stephane Eranian114382a2012-02-09 23:21:08 +01002604 if (check_magic_endian(header->magic,
2605 header->attr_size, false, ph) < 0) {
2606 pr_debug("magic/endian check failed\n");
Stephane Eranian73323f52012-02-02 13:54:44 +01002607 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01002608 }
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002609
Stephane Eranian73323f52012-02-02 13:54:44 +01002610 if (ph->needs_swap) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002611 mem_bswap_64(header, offsetof(struct perf_file_header,
Stephane Eranian73323f52012-02-02 13:54:44 +01002612 adds_features));
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002613 }
2614
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002615 if (header->size != sizeof(*header)) {
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002616 /* Support the previous format */
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002617 if (header->size == offsetof(typeof(*header), adds_features))
2618 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002619 else
2620 return -1;
David Ahernd327fa42011-10-18 17:34:01 -06002621 } else if (ph->needs_swap) {
David Ahernd327fa42011-10-18 17:34:01 -06002622 /*
2623 * feature bitmap is declared as an array of unsigned longs --
2624 * not good since its size can differ between the host that
2625 * generated the data file and the host analyzing the file.
2626 *
2627 * We need to handle endianness, but we don't know the size of
2628 * the unsigned long where the file was generated. Take a best
2629 * guess at determining it: try 64-bit swap first (ie., file
2630 * created on a 64-bit host), and check if the hostname feature
2631 * bit is set (this feature bit is forced on as of fbe96f2).
2632 * If the bit is not, undo the 64-bit swap and try a 32-bit
2633 * swap. If the hostname bit is still not set (e.g., older data
2634 * file), punt and fallback to the original behavior --
2635 * clearing all feature bits and setting buildid.
2636 */
David Ahern80c01202012-06-08 11:47:51 -03002637 mem_bswap_64(&header->adds_features,
2638 BITS_TO_U64(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06002639
2640 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
David Ahern80c01202012-06-08 11:47:51 -03002641 /* unswap as u64 */
2642 mem_bswap_64(&header->adds_features,
2643 BITS_TO_U64(HEADER_FEAT_BITS));
2644
2645 /* unswap as u32 */
2646 mem_bswap_32(&header->adds_features,
2647 BITS_TO_U32(HEADER_FEAT_BITS));
David Ahernd327fa42011-10-18 17:34:01 -06002648 }
2649
2650 if (!test_bit(HEADER_HOSTNAME, header->adds_features)) {
2651 bitmap_zero(header->adds_features, HEADER_FEAT_BITS);
2652 set_bit(HEADER_BUILD_ID, header->adds_features);
2653 }
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002654 }
2655
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002656 memcpy(&ph->adds_features, &header->adds_features,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002657 sizeof(ph->adds_features));
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002658
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002659 ph->data_offset = header->data.offset;
2660 ph->data_size = header->data.size;
Jiri Olsa8d541e92013-07-17 19:49:44 +02002661 ph->feat_offset = header->data.offset + header->data.size;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002662 return 0;
2663}
2664
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002665static int perf_file_section__process(struct perf_file_section *section,
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002666 struct perf_header *ph,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03002667 int feat, int fd, void *data)
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002668{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002669 if (lseek(fd, section->offset, SEEK_SET) == (off_t)-1) {
Arnaldo Carvalho de Melo9486aa32011-01-22 20:37:02 -02002670 pr_debug("Failed to lseek to %" PRIu64 " offset for feature "
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002671 "%d, continuing...\n", section->offset, feat);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002672 return 0;
2673 }
2674
Robert Richterb1e5a9b2011-12-07 10:02:57 +01002675 if (feat >= HEADER_LAST_FEATURE) {
2676 pr_debug("unknown feature %d, continuing...\n", feat);
2677 return 0;
2678 }
2679
Robert Richterf1c67db2012-02-10 15:41:56 +01002680 if (!feat_ops[feat].process)
2681 return 0;
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002682
Namhyung Kim3d7eb862012-09-24 17:15:01 +09002683 return feat_ops[feat].process(section, ph, fd, data);
Arnaldo Carvalho de Melo37562ea2009-11-16 16:32:43 -02002684}
2685
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002686static int perf_file_header__read_pipe(struct perf_pipe_file_header *header,
Tom Zanussi454c4072010-05-01 01:41:20 -05002687 struct perf_header *ph, int fd,
2688 bool repipe)
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002689{
Jiri Olsa727ebd52013-11-28 11:30:14 +01002690 ssize_t ret;
Stephane Eranian73323f52012-02-02 13:54:44 +01002691
2692 ret = readn(fd, header, sizeof(*header));
2693 if (ret <= 0)
2694 return -1;
2695
Stephane Eranian114382a2012-02-09 23:21:08 +01002696 if (check_magic_endian(header->magic, header->size, true, ph) < 0) {
2697 pr_debug("endian/magic failed\n");
Tom Zanussi8dc58102010-04-01 23:59:15 -05002698 return -1;
Stephane Eranian114382a2012-02-09 23:21:08 +01002699 }
2700
2701 if (ph->needs_swap)
2702 header->size = bswap_64(header->size);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002703
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002704 if (repipe && do_write(STDOUT_FILENO, header, sizeof(*header)) < 0)
Tom Zanussi454c4072010-05-01 01:41:20 -05002705 return -1;
2706
Tom Zanussi8dc58102010-04-01 23:59:15 -05002707 return 0;
2708}
2709
Jiri Olsad4339562013-07-17 19:49:41 +02002710static int perf_header__read_pipe(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05002711{
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002712 struct perf_header *header = &session->header;
Tom Zanussi8dc58102010-04-01 23:59:15 -05002713 struct perf_pipe_file_header f_header;
2714
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002715 if (perf_file_header__read_pipe(&f_header, header,
2716 perf_data_file__fd(session->file),
Tom Zanussi454c4072010-05-01 01:41:20 -05002717 session->repipe) < 0) {
Tom Zanussi8dc58102010-04-01 23:59:15 -05002718 pr_debug("incompatible file format\n");
2719 return -EINVAL;
2720 }
2721
Tom Zanussi8dc58102010-04-01 23:59:15 -05002722 return 0;
2723}
2724
Stephane Eranian69996df2012-02-09 23:21:06 +01002725static int read_attr(int fd, struct perf_header *ph,
2726 struct perf_file_attr *f_attr)
2727{
2728 struct perf_event_attr *attr = &f_attr->attr;
2729 size_t sz, left;
2730 size_t our_sz = sizeof(f_attr->attr);
Jiri Olsa727ebd52013-11-28 11:30:14 +01002731 ssize_t ret;
Stephane Eranian69996df2012-02-09 23:21:06 +01002732
2733 memset(f_attr, 0, sizeof(*f_attr));
2734
2735 /* read minimal guaranteed structure */
2736 ret = readn(fd, attr, PERF_ATTR_SIZE_VER0);
2737 if (ret <= 0) {
2738 pr_debug("cannot read %d bytes of header attr\n",
2739 PERF_ATTR_SIZE_VER0);
2740 return -1;
2741 }
2742
2743 /* on file perf_event_attr size */
2744 sz = attr->size;
Stephane Eranian114382a2012-02-09 23:21:08 +01002745
Stephane Eranian69996df2012-02-09 23:21:06 +01002746 if (ph->needs_swap)
2747 sz = bswap_32(sz);
2748
2749 if (sz == 0) {
2750 /* assume ABI0 */
2751 sz = PERF_ATTR_SIZE_VER0;
2752 } else if (sz > our_sz) {
2753 pr_debug("file uses a more recent and unsupported ABI"
2754 " (%zu bytes extra)\n", sz - our_sz);
2755 return -1;
2756 }
2757 /* what we have not yet read and that we know about */
2758 left = sz - PERF_ATTR_SIZE_VER0;
2759 if (left) {
2760 void *ptr = attr;
2761 ptr += PERF_ATTR_SIZE_VER0;
2762
2763 ret = readn(fd, ptr, left);
2764 }
2765 /* read perf_file_section, ids are read in caller */
2766 ret = readn(fd, &f_attr->ids, sizeof(f_attr->ids));
2767
2768 return ret <= 0 ? -1 : 0;
2769}
2770
Namhyung Kim831394b2012-09-06 11:10:46 +09002771static int perf_evsel__prepare_tracepoint_event(struct perf_evsel *evsel,
2772 struct pevent *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002773{
Namhyung Kim831394b2012-09-06 11:10:46 +09002774 struct event_format *event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002775 char bf[128];
2776
Namhyung Kim831394b2012-09-06 11:10:46 +09002777 /* already prepared */
2778 if (evsel->tp_format)
2779 return 0;
2780
Namhyung Kim3dce2ce2013-03-21 16:18:48 +09002781 if (pevent == NULL) {
2782 pr_debug("broken or missing trace data\n");
2783 return -1;
2784 }
2785
Namhyung Kim831394b2012-09-06 11:10:46 +09002786 event = pevent_find_event(pevent, evsel->attr.config);
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002787 if (event == NULL)
2788 return -1;
2789
Namhyung Kim831394b2012-09-06 11:10:46 +09002790 if (!evsel->name) {
2791 snprintf(bf, sizeof(bf), "%s:%s", event->system, event->name);
2792 evsel->name = strdup(bf);
2793 if (evsel->name == NULL)
2794 return -1;
2795 }
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002796
Arnaldo Carvalho de Melofcf65bf2012-08-07 09:58:03 -03002797 evsel->tp_format = event;
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002798 return 0;
2799}
2800
Namhyung Kim831394b2012-09-06 11:10:46 +09002801static int perf_evlist__prepare_tracepoint_events(struct perf_evlist *evlist,
2802 struct pevent *pevent)
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002803{
2804 struct perf_evsel *pos;
2805
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03002806 evlist__for_each_entry(evlist, pos) {
Namhyung Kim831394b2012-09-06 11:10:46 +09002807 if (pos->attr.type == PERF_TYPE_TRACEPOINT &&
2808 perf_evsel__prepare_tracepoint_event(pos, pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002809 return -1;
2810 }
2811
2812 return 0;
2813}
2814
Jiri Olsad4339562013-07-17 19:49:41 +02002815int perf_session__read_header(struct perf_session *session)
Tom Zanussi8dc58102010-04-01 23:59:15 -05002816{
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002817 struct perf_data_file *file = session->file;
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002818 struct perf_header *header = &session->header;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002819 struct perf_file_header f_header;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002820 struct perf_file_attr f_attr;
2821 u64 f_id;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002822 int nr_attrs, nr_ids, i, j;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002823 int fd = perf_data_file__fd(file);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002824
Namhyung Kim334fe7a2013-03-11 16:43:12 +09002825 session->evlist = perf_evlist__new();
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002826 if (session->evlist == NULL)
2827 return -ENOMEM;
2828
Kan Liang2c071442015-08-28 05:48:05 -04002829 session->evlist->env = &header->env;
Arnaldo Carvalho de Melo4cde9982015-09-09 12:25:00 -03002830 session->machines.host.env = &header->env;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002831 if (perf_data_file__is_pipe(file))
Jiri Olsad4339562013-07-17 19:49:41 +02002832 return perf_header__read_pipe(session);
Tom Zanussi8dc58102010-04-01 23:59:15 -05002833
Stephane Eranian69996df2012-02-09 23:21:06 +01002834 if (perf_file_header__read(&f_header, header, fd) < 0)
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002835 return -EINVAL;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002836
Namhyung Kimb314e5c2013-09-30 17:19:48 +09002837 /*
2838 * Sanity check that perf.data was written cleanly; data size is
2839 * initialized to 0 and updated only if the on_exit function is run.
2840 * If data size is still 0 then the file contains only partial
2841 * information. Just warn user and process it as much as it can.
2842 */
2843 if (f_header.data.size == 0) {
2844 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
2845 "Was the 'perf record' command properly terminated?\n",
Jiri Olsacc9784bd2013-10-15 16:27:34 +02002846 file->path);
Namhyung Kimb314e5c2013-09-30 17:19:48 +09002847 }
2848
Stephane Eranian69996df2012-02-09 23:21:06 +01002849 nr_attrs = f_header.attrs.size / f_header.attr_size;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002850 lseek(fd, f_header.attrs.offset, SEEK_SET);
2851
2852 for (i = 0; i < nr_attrs; i++) {
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002853 struct perf_evsel *evsel;
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02002854 off_t tmp;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002855
Stephane Eranian69996df2012-02-09 23:21:06 +01002856 if (read_attr(fd, header, &f_attr) < 0)
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002857 goto out_errno;
Arnaldo Carvalho de Meloba215942010-01-14 12:23:10 -02002858
David Ahern1060ab82015-04-09 16:15:46 -04002859 if (header->needs_swap) {
2860 f_attr.ids.size = bswap_64(f_attr.ids.size);
2861 f_attr.ids.offset = bswap_64(f_attr.ids.offset);
David Aherneda39132011-07-15 12:34:09 -06002862 perf_event__attr_swap(&f_attr.attr);
David Ahern1060ab82015-04-09 16:15:46 -04002863 }
David Aherneda39132011-07-15 12:34:09 -06002864
Peter Zijlstra1c222bc2009-08-06 20:57:41 +02002865 tmp = lseek(fd, 0, SEEK_CUR);
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03002866 evsel = perf_evsel__new(&f_attr.attr);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002867
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002868 if (evsel == NULL)
2869 goto out_delete_evlist;
Arnaldo Carvalho de Melo0807d2d2012-09-26 12:48:18 -03002870
2871 evsel->needs_swap = header->needs_swap;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002872 /*
2873 * Do it before so that if perf_evsel__alloc_id fails, this
2874 * entry gets purged too at perf_evlist__delete().
2875 */
2876 perf_evlist__add(session->evlist, evsel);
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002877
2878 nr_ids = f_attr.ids.size / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002879 /*
2880 * We don't have the cpu and thread maps on the header, so
2881 * for allocating the perf_sample_id table we fake 1 cpu and
2882 * hattr->ids threads.
2883 */
2884 if (perf_evsel__alloc_id(evsel, 1, nr_ids))
2885 goto out_delete_evlist;
2886
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002887 lseek(fd, f_attr.ids.offset, SEEK_SET);
2888
2889 for (j = 0; j < nr_ids; j++) {
Arnaldo Carvalho de Melo1c0b04d2011-03-09 08:13:19 -03002890 if (perf_header__getbuffer64(header, fd, &f_id, sizeof(f_id)))
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002891 goto out_errno;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002892
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002893 perf_evlist__id_add(session->evlist, evsel, 0, j, f_id);
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002894 }
Arnaldo Carvalho de Melo11deb1f2009-11-17 01:18:09 -02002895
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002896 lseek(fd, tmp, SEEK_SET);
2897 }
2898
Arnaldo Carvalho de Melod04b35f2011-11-11 22:17:32 -02002899 symbol_conf.nr_events = nr_attrs;
2900
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002901 perf_header__process_sections(header, fd, &session->tevent,
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002902 perf_file_section__process);
Frederic Weisbecker4778d2e2009-11-11 04:51:05 +01002903
Namhyung Kim831394b2012-09-06 11:10:46 +09002904 if (perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01002905 session->tevent.pevent))
Arnaldo Carvalho de Melocb9dd492012-06-11 19:03:32 -03002906 goto out_delete_evlist;
2907
Arnaldo Carvalho de Melo4dc0a042009-11-19 14:55:55 -02002908 return 0;
Arnaldo Carvalho de Melo769885f2009-12-28 22:48:32 -02002909out_errno:
2910 return -errno;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03002911
2912out_delete_evlist:
2913 perf_evlist__delete(session->evlist);
2914 session->evlist = NULL;
2915 return -ENOMEM;
Peter Zijlstra7c6a1c62009-06-25 17:05:54 +02002916}
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02002917
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02002918int perf_event__synthesize_attr(struct perf_tool *tool,
Robert Richterf4d83432012-08-16 21:10:17 +02002919 struct perf_event_attr *attr, u32 ids, u64 *id,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02002920 perf_event__handler_t process)
Frederic Weisbecker0d3a5c82009-08-16 20:56:37 +02002921{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02002922 union perf_event *ev;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002923 size_t size;
2924 int err;
2925
2926 size = sizeof(struct perf_event_attr);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03002927 size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002928 size += sizeof(struct perf_event_header);
2929 size += ids * sizeof(u64);
2930
2931 ev = malloc(size);
2932
Chris Samuelce47dc52010-11-13 13:35:06 +11002933 if (ev == NULL)
2934 return -ENOMEM;
2935
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002936 ev->attr.attr = *attr;
2937 memcpy(ev->attr.id, id, ids * sizeof(u64));
2938
2939 ev->attr.header.type = PERF_RECORD_HEADER_ATTR;
Robert Richterf4d83432012-08-16 21:10:17 +02002940 ev->attr.header.size = (u16)size;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002941
Robert Richterf4d83432012-08-16 21:10:17 +02002942 if (ev->attr.header.size == size)
2943 err = process(tool, ev, NULL, NULL);
2944 else
2945 err = -E2BIG;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05002946
2947 free(ev);
2948
2949 return err;
2950}
2951
Jiri Olsaa6e52812015-10-25 15:51:37 +01002952static struct event_update_event *
2953event_update_event__new(size_t size, u64 type, u64 id)
2954{
2955 struct event_update_event *ev;
2956
2957 size += sizeof(*ev);
2958 size = PERF_ALIGN(size, sizeof(u64));
2959
2960 ev = zalloc(size);
2961 if (ev) {
2962 ev->header.type = PERF_RECORD_EVENT_UPDATE;
2963 ev->header.size = (u16)size;
2964 ev->type = type;
2965 ev->id = id;
2966 }
2967 return ev;
2968}
2969
2970int
2971perf_event__synthesize_event_update_unit(struct perf_tool *tool,
2972 struct perf_evsel *evsel,
2973 perf_event__handler_t process)
2974{
2975 struct event_update_event *ev;
2976 size_t size = strlen(evsel->unit);
2977 int err;
2978
2979 ev = event_update_event__new(size + 1, PERF_EVENT_UPDATE__UNIT, evsel->id[0]);
2980 if (ev == NULL)
2981 return -ENOMEM;
2982
2983 strncpy(ev->data, evsel->unit, size);
2984 err = process(tool, (union perf_event *)ev, NULL, NULL);
2985 free(ev);
2986 return err;
2987}
2988
Jiri Olsadaeecbc2015-10-25 15:51:38 +01002989int
2990perf_event__synthesize_event_update_scale(struct perf_tool *tool,
2991 struct perf_evsel *evsel,
2992 perf_event__handler_t process)
2993{
2994 struct event_update_event *ev;
2995 struct event_update_event_scale *ev_data;
2996 int err;
2997
2998 ev = event_update_event__new(sizeof(*ev_data), PERF_EVENT_UPDATE__SCALE, evsel->id[0]);
2999 if (ev == NULL)
3000 return -ENOMEM;
3001
3002 ev_data = (struct event_update_event_scale *) ev->data;
3003 ev_data->scale = evsel->scale;
3004 err = process(tool, (union perf_event*) ev, NULL, NULL);
3005 free(ev);
3006 return err;
3007}
3008
Jiri Olsa802c9042015-10-25 15:51:39 +01003009int
3010perf_event__synthesize_event_update_name(struct perf_tool *tool,
3011 struct perf_evsel *evsel,
3012 perf_event__handler_t process)
3013{
3014 struct event_update_event *ev;
3015 size_t len = strlen(evsel->name);
3016 int err;
3017
3018 ev = event_update_event__new(len + 1, PERF_EVENT_UPDATE__NAME, evsel->id[0]);
3019 if (ev == NULL)
3020 return -ENOMEM;
3021
3022 strncpy(ev->data, evsel->name, len);
3023 err = process(tool, (union perf_event*) ev, NULL, NULL);
3024 free(ev);
3025 return err;
3026}
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003027
Jiri Olsa86ebb092015-10-25 15:51:40 +01003028int
3029perf_event__synthesize_event_update_cpus(struct perf_tool *tool,
3030 struct perf_evsel *evsel,
3031 perf_event__handler_t process)
3032{
3033 size_t size = sizeof(struct event_update_event);
3034 struct event_update_event *ev;
3035 int max, err;
3036 u16 type;
3037
3038 if (!evsel->own_cpus)
3039 return 0;
3040
3041 ev = cpu_map_data__alloc(evsel->own_cpus, &size, &type, &max);
3042 if (!ev)
3043 return -ENOMEM;
3044
3045 ev->header.type = PERF_RECORD_EVENT_UPDATE;
3046 ev->header.size = (u16)size;
3047 ev->type = PERF_EVENT_UPDATE__CPUS;
3048 ev->id = evsel->id[0];
3049
3050 cpu_map_data__synthesize((struct cpu_map_data *) ev->data,
3051 evsel->own_cpus,
3052 type, max);
3053
3054 err = process(tool, (union perf_event*) ev, NULL, NULL);
3055 free(ev);
3056 return err;
3057}
3058
Jiri Olsac853f932015-10-25 15:51:41 +01003059size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp)
3060{
3061 struct event_update_event *ev = &event->event_update;
3062 struct event_update_event_scale *ev_scale;
3063 struct event_update_event_cpus *ev_cpus;
3064 struct cpu_map *map;
3065 size_t ret;
3066
3067 ret = fprintf(fp, "\n... id: %" PRIu64 "\n", ev->id);
3068
3069 switch (ev->type) {
3070 case PERF_EVENT_UPDATE__SCALE:
3071 ev_scale = (struct event_update_event_scale *) ev->data;
3072 ret += fprintf(fp, "... scale: %f\n", ev_scale->scale);
3073 break;
3074 case PERF_EVENT_UPDATE__UNIT:
3075 ret += fprintf(fp, "... unit: %s\n", ev->data);
3076 break;
3077 case PERF_EVENT_UPDATE__NAME:
3078 ret += fprintf(fp, "... name: %s\n", ev->data);
3079 break;
3080 case PERF_EVENT_UPDATE__CPUS:
3081 ev_cpus = (struct event_update_event_cpus *) ev->data;
3082 ret += fprintf(fp, "... ");
3083
3084 map = cpu_map__new_data(&ev_cpus->cpus);
3085 if (map)
3086 ret += cpu_map__fprintf(map, fp);
3087 else
3088 ret += fprintf(fp, "failed to get cpus\n");
3089 break;
3090 default:
3091 ret += fprintf(fp, "... unknown type\n");
3092 break;
3093 }
3094
3095 return ret;
3096}
Jiri Olsa86ebb092015-10-25 15:51:40 +01003097
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003098int perf_event__synthesize_attrs(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003099 struct perf_session *session,
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003100 perf_event__handler_t process)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003101{
Robert Richter6606f872012-08-16 21:10:19 +02003102 struct perf_evsel *evsel;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003103 int err = 0;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003104
Arnaldo Carvalho de Meloe5cadb92016-06-23 11:26:15 -03003105 evlist__for_each_entry(session->evlist, evsel) {
Robert Richter6606f872012-08-16 21:10:19 +02003106 err = perf_event__synthesize_attr(tool, &evsel->attr, evsel->ids,
3107 evsel->id, process);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003108 if (err) {
3109 pr_debug("failed to create perf header attribute\n");
3110 return err;
3111 }
3112 }
3113
3114 return err;
3115}
3116
Adrian Hunter47c3d102013-07-04 16:20:21 +03003117int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
3118 union perf_event *event,
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003119 struct perf_evlist **pevlist)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003120{
Robert Richterf4d83432012-08-16 21:10:17 +02003121 u32 i, ids, n_ids;
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003122 struct perf_evsel *evsel;
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003123 struct perf_evlist *evlist = *pevlist;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003124
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003125 if (evlist == NULL) {
Namhyung Kim334fe7a2013-03-11 16:43:12 +09003126 *pevlist = evlist = perf_evlist__new();
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003127 if (evlist == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003128 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003129 }
3130
Arnaldo Carvalho de Meloef503832013-11-07 16:41:19 -03003131 evsel = perf_evsel__new(&event->attr.attr);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003132 if (evsel == NULL)
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003133 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003134
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003135 perf_evlist__add(evlist, evsel);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003136
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003137 ids = event->header.size;
3138 ids -= (void *)&event->attr.id - (void *)event;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003139 n_ids = ids / sizeof(u64);
Arnaldo Carvalho de Meloa91e5432011-03-10 11:15:54 -03003140 /*
3141 * We don't have the cpu and thread maps on the header, so
3142 * for allocating the perf_sample_id table we fake 1 cpu and
3143 * hattr->ids threads.
3144 */
3145 if (perf_evsel__alloc_id(evsel, 1, n_ids))
3146 return -ENOMEM;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003147
3148 for (i = 0; i < n_ids; i++) {
Arnaldo Carvalho de Melo10d0f082011-11-11 22:45:41 -02003149 perf_evlist__id_add(evlist, evsel, 0, i, event->attr.id[i]);
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003150 }
3151
Adrian Hunter7e0d6fc2013-07-04 16:20:29 +03003152 symbol_conf.nr_events = evlist->nr_entries;
3153
Tom Zanussi2c46dbb2010-04-01 23:59:19 -05003154 return 0;
3155}
Tom Zanussicd19a032010-04-01 23:59:20 -05003156
Jiri Olsaffe777252015-10-25 15:51:36 +01003157int perf_event__process_event_update(struct perf_tool *tool __maybe_unused,
3158 union perf_event *event,
3159 struct perf_evlist **pevlist)
3160{
3161 struct event_update_event *ev = &event->event_update;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003162 struct event_update_event_scale *ev_scale;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003163 struct event_update_event_cpus *ev_cpus;
Jiri Olsaffe777252015-10-25 15:51:36 +01003164 struct perf_evlist *evlist;
3165 struct perf_evsel *evsel;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003166 struct cpu_map *map;
Jiri Olsaffe777252015-10-25 15:51:36 +01003167
3168 if (!pevlist || *pevlist == NULL)
3169 return -EINVAL;
3170
3171 evlist = *pevlist;
3172
3173 evsel = perf_evlist__id2evsel(evlist, ev->id);
3174 if (evsel == NULL)
3175 return -EINVAL;
3176
Jiri Olsaa6e52812015-10-25 15:51:37 +01003177 switch (ev->type) {
3178 case PERF_EVENT_UPDATE__UNIT:
3179 evsel->unit = strdup(ev->data);
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003180 break;
Jiri Olsa802c9042015-10-25 15:51:39 +01003181 case PERF_EVENT_UPDATE__NAME:
3182 evsel->name = strdup(ev->data);
3183 break;
Jiri Olsadaeecbc2015-10-25 15:51:38 +01003184 case PERF_EVENT_UPDATE__SCALE:
3185 ev_scale = (struct event_update_event_scale *) ev->data;
3186 evsel->scale = ev_scale->scale;
Arnaldo Carvalho de Melob9175b32017-02-08 21:57:22 -03003187 break;
Jiri Olsa86ebb092015-10-25 15:51:40 +01003188 case PERF_EVENT_UPDATE__CPUS:
3189 ev_cpus = (struct event_update_event_cpus *) ev->data;
3190
3191 map = cpu_map__new_data(&ev_cpus->cpus);
3192 if (map)
3193 evsel->own_cpus = map;
3194 else
3195 pr_err("failed to get event_update cpus\n");
Jiri Olsaa6e52812015-10-25 15:51:37 +01003196 default:
3197 break;
3198 }
3199
Jiri Olsaffe777252015-10-25 15:51:36 +01003200 return 0;
3201}
3202
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003203int perf_event__synthesize_tracing_data(struct perf_tool *tool, int fd,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003204 struct perf_evlist *evlist,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02003205 perf_event__handler_t process)
Tom Zanussi92155452010-04-01 23:59:21 -05003206{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003207 union perf_event ev;
Jiri Olsa29208e52011-10-20 15:59:43 +02003208 struct tracing_data *tdata;
Tom Zanussi92155452010-04-01 23:59:21 -05003209 ssize_t size = 0, aligned_size = 0, padding;
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003210 int err __maybe_unused = 0;
Tom Zanussi92155452010-04-01 23:59:21 -05003211
Jiri Olsa29208e52011-10-20 15:59:43 +02003212 /*
3213 * We are going to store the size of the data followed
3214 * by the data contents. Since the fd descriptor is a pipe,
3215 * we cannot seek back to store the size of the data once
3216 * we know it. Instead we:
3217 *
3218 * - write the tracing data to the temp file
3219 * - get/write the data size to pipe
3220 * - write the tracing data from the temp file
3221 * to the pipe
3222 */
3223 tdata = tracing_data_get(&evlist->entries, fd, true);
3224 if (!tdata)
3225 return -1;
3226
Tom Zanussi92155452010-04-01 23:59:21 -05003227 memset(&ev, 0, sizeof(ev));
3228
3229 ev.tracing_data.header.type = PERF_RECORD_HEADER_TRACING_DATA;
Jiri Olsa29208e52011-10-20 15:59:43 +02003230 size = tdata->size;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003231 aligned_size = PERF_ALIGN(size, sizeof(u64));
Tom Zanussi92155452010-04-01 23:59:21 -05003232 padding = aligned_size - size;
3233 ev.tracing_data.header.size = sizeof(ev.tracing_data);
3234 ev.tracing_data.size = aligned_size;
3235
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003236 process(tool, &ev, NULL, NULL);
Tom Zanussi92155452010-04-01 23:59:21 -05003237
Jiri Olsa29208e52011-10-20 15:59:43 +02003238 /*
3239 * The put function will copy all the tracing data
3240 * stored in temp file to the pipe.
3241 */
3242 tracing_data_put(tdata);
3243
Tom Zanussi92155452010-04-01 23:59:21 -05003244 write_padded(fd, NULL, 0, padding);
3245
3246 return aligned_size;
3247}
3248
Adrian Hunter47c3d102013-07-04 16:20:21 +03003249int perf_event__process_tracing_data(struct perf_tool *tool __maybe_unused,
3250 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003251 struct perf_session *session)
Tom Zanussi92155452010-04-01 23:59:21 -05003252{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003253 ssize_t size_read, padding, size = event->tracing_data.size;
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003254 int fd = perf_data_file__fd(session->file);
3255 off_t offset = lseek(fd, 0, SEEK_CUR);
Tom Zanussi92155452010-04-01 23:59:21 -05003256 char buf[BUFSIZ];
3257
3258 /* setup for reading amidst mmap */
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003259 lseek(fd, offset + sizeof(struct tracing_data_event),
Tom Zanussi92155452010-04-01 23:59:21 -05003260 SEEK_SET);
3261
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003262 size_read = trace_report(fd, &session->tevent,
Arnaldo Carvalho de Meloda378962012-06-27 13:08:42 -03003263 session->repipe);
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003264 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read;
Tom Zanussi92155452010-04-01 23:59:21 -05003265
Jiri Olsacc9784bd2013-10-15 16:27:34 +02003266 if (readn(fd, buf, padding) < 0) {
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003267 pr_err("%s: reading input file", __func__);
3268 return -1;
3269 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003270 if (session->repipe) {
3271 int retw = write(STDOUT_FILENO, buf, padding);
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003272 if (retw <= 0 || retw != padding) {
3273 pr_err("%s: repiping tracing data padding", __func__);
3274 return -1;
3275 }
Tom Zanussi454c4072010-05-01 01:41:20 -05003276 }
Tom Zanussi92155452010-04-01 23:59:21 -05003277
Arnaldo Carvalho de Melo2caa48a2013-01-24 22:34:33 -03003278 if (size_read + padding != size) {
3279 pr_err("%s: tracing data size mismatch", __func__);
3280 return -1;
3281 }
Tom Zanussi92155452010-04-01 23:59:21 -05003282
Namhyung Kim831394b2012-09-06 11:10:46 +09003283 perf_evlist__prepare_tracepoint_events(session->evlist,
Jiri Olsa29f5ffd2013-12-03 14:09:23 +01003284 session->tevent.pevent);
Arnaldo Carvalho de Melo8b6ee4c2012-08-07 23:36:16 -03003285
Tom Zanussi92155452010-04-01 23:59:21 -05003286 return size_read + padding;
3287}
Tom Zanussic7929e42010-04-01 23:59:22 -05003288
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003289int perf_event__synthesize_build_id(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003290 struct dso *pos, u16 misc,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003291 perf_event__handler_t process,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -02003292 struct machine *machine)
Tom Zanussic7929e42010-04-01 23:59:22 -05003293{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003294 union perf_event ev;
Tom Zanussic7929e42010-04-01 23:59:22 -05003295 size_t len;
3296 int err = 0;
3297
3298 if (!pos->hit)
3299 return err;
3300
3301 memset(&ev, 0, sizeof(ev));
3302
3303 len = pos->long_name_len + 1;
Irina Tirdea9ac3e482012-09-11 01:15:01 +03003304 len = PERF_ALIGN(len, NAME_ALIGN);
Tom Zanussic7929e42010-04-01 23:59:22 -05003305 memcpy(&ev.build_id.build_id, pos->build_id, sizeof(pos->build_id));
3306 ev.build_id.header.type = PERF_RECORD_HEADER_BUILD_ID;
3307 ev.build_id.header.misc = misc;
Arnaldo Carvalho de Melo23346f22010-04-27 21:17:50 -03003308 ev.build_id.pid = machine->pid;
Tom Zanussic7929e42010-04-01 23:59:22 -05003309 ev.build_id.header.size = sizeof(ev.build_id) + len;
3310 memcpy(&ev.build_id.filename, pos->long_name, pos->long_name_len);
3311
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -02003312 err = process(tool, &ev, NULL, machine);
Tom Zanussic7929e42010-04-01 23:59:22 -05003313
3314 return err;
3315}
3316
Irina Tirdea1d037ca2012-09-11 01:15:03 +03003317int perf_event__process_build_id(struct perf_tool *tool __maybe_unused,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -02003318 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003319 struct perf_session *session)
Tom Zanussic7929e42010-04-01 23:59:22 -05003320{
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -02003321 __event_process_build_id(&event->build_id,
3322 event->build_id.filename,
Zhang, Yanmina1645ce2010-04-19 13:32:50 +08003323 session);
Tom Zanussic7929e42010-04-01 23:59:22 -05003324 return 0;
3325}