7 #include <linux/list.h>
8 #include <linux/kernel.h>
9 #include <linux/bitops.h>
10 #include <sys/utsname.h>
16 #include "trace-event.h"
27 static u32 header_argc
;
28 static const char **header_argv
;
32 * must be a numerical value to let the endianness
33 * determine the memory layout. That way we are able
34 * to detect endianness when reading the perf.data file
37 * we check for legacy (PERFFILE) format.
39 static const char *__perf_magic1
= "PERFFILE";
40 static const u64 __perf_magic2
= 0x32454c4946524550ULL
;
41 static const u64 __perf_magic2_sw
= 0x50455246494c4532ULL
;
43 #define PERF_MAGIC __perf_magic2
45 struct perf_file_attr
{
46 struct perf_event_attr attr
;
47 struct perf_file_section ids
;
50 void perf_header__set_feat(struct perf_header
*header
, int feat
)
52 set_bit(feat
, header
->adds_features
);
55 void perf_header__clear_feat(struct perf_header
*header
, int feat
)
57 clear_bit(feat
, header
->adds_features
);
60 bool perf_header__has_feat(const struct perf_header
*header
, int feat
)
62 return test_bit(feat
, header
->adds_features
);
65 static int do_write(int fd
, const void *buf
, size_t size
)
68 int ret
= write(fd
, buf
, size
);
80 int write_padded(int fd
, const void *bf
, size_t count
, size_t count_aligned
)
82 static const char zero_buf
[NAME_ALIGN
];
83 int err
= do_write(fd
, bf
, count
);
86 err
= do_write(fd
, zero_buf
, count_aligned
- count
);
91 static int do_write_string(int fd
, const char *str
)
96 olen
= strlen(str
) + 1;
97 len
= PERF_ALIGN(olen
, NAME_ALIGN
);
99 /* write len, incl. \0 */
100 ret
= do_write(fd
, &len
, sizeof(len
));
104 return write_padded(fd
, str
, olen
, len
);
107 static char *do_read_string(int fd
, struct perf_header
*ph
)
113 sz
= readn(fd
, &len
, sizeof(len
));
114 if (sz
< (ssize_t
)sizeof(len
))
124 ret
= readn(fd
, buf
, len
);
125 if (ret
== (ssize_t
)len
) {
127 * strings are padded by zeroes
128 * thus the actual strlen of buf
129 * may be less than len
139 perf_header__set_cmdline(int argc
, const char **argv
)
144 * If header_argv has already been set, do not override it.
145 * This allows a command to set the cmdline, parse args and
146 * then call another builtin function that implements a
147 * command -- e.g, cmd_kvm calling cmd_record.
152 header_argc
= (u32
)argc
;
154 /* do not include NULL termination */
155 header_argv
= calloc(argc
, sizeof(char *));
160 * must copy argv contents because it gets moved
161 * around during option parsing
163 for (i
= 0; i
< argc
; i
++)
164 header_argv
[i
] = argv
[i
];
169 static int write_tracing_data(int fd
, struct perf_header
*h __maybe_unused
,
170 struct perf_evlist
*evlist
)
172 return read_tracing_data(fd
, &evlist
->entries
);
176 static int write_build_id(int fd
, struct perf_header
*h
,
177 struct perf_evlist
*evlist __maybe_unused
)
179 struct perf_session
*session
;
182 session
= container_of(h
, struct perf_session
, header
);
184 if (!perf_session__read_build_ids(session
, true))
187 err
= perf_session__write_buildid_table(session
, fd
);
189 pr_debug("failed to write buildid table\n");
192 perf_session__cache_build_ids(session
);
197 static int write_hostname(int fd
, struct perf_header
*h __maybe_unused
,
198 struct perf_evlist
*evlist __maybe_unused
)
207 return do_write_string(fd
, uts
.nodename
);
210 static int write_osrelease(int fd
, struct perf_header
*h __maybe_unused
,
211 struct perf_evlist
*evlist __maybe_unused
)
220 return do_write_string(fd
, uts
.release
);
223 static int write_arch(int fd
, struct perf_header
*h __maybe_unused
,
224 struct perf_evlist
*evlist __maybe_unused
)
233 return do_write_string(fd
, uts
.machine
);
236 static int write_version(int fd
, struct perf_header
*h __maybe_unused
,
237 struct perf_evlist
*evlist __maybe_unused
)
239 return do_write_string(fd
, perf_version_string
);
242 static int __write_cpudesc(int fd
, const char *cpuinfo_proc
)
247 const char *search
= cpuinfo_proc
;
254 file
= fopen("/proc/cpuinfo", "r");
258 while (getline(&buf
, &len
, file
) > 0) {
259 ret
= strncmp(buf
, search
, strlen(search
));
271 p
= strchr(buf
, ':');
272 if (p
&& *(p
+1) == ' ' && *(p
+2))
278 /* squash extra space characters (branding string) */
285 while (*q
&& isspace(*q
))
288 while ((*r
++ = *q
++));
292 ret
= do_write_string(fd
, s
);
299 static int write_cpudesc(int fd
, struct perf_header
*h __maybe_unused
,
300 struct perf_evlist
*evlist __maybe_unused
)
303 #define CPUINFO_PROC {"model name", }
305 const char *cpuinfo_procs
[] = CPUINFO_PROC
;
308 for (i
= 0; i
< ARRAY_SIZE(cpuinfo_procs
); i
++) {
310 ret
= __write_cpudesc(fd
, cpuinfo_procs
[i
]);
318 static int write_nrcpus(int fd
, struct perf_header
*h __maybe_unused
,
319 struct perf_evlist
*evlist __maybe_unused
)
325 nr
= sysconf(_SC_NPROCESSORS_CONF
);
329 nrc
= (u32
)(nr
& UINT_MAX
);
331 nr
= sysconf(_SC_NPROCESSORS_ONLN
);
335 nra
= (u32
)(nr
& UINT_MAX
);
337 ret
= do_write(fd
, &nrc
, sizeof(nrc
));
341 return do_write(fd
, &nra
, sizeof(nra
));
344 static int write_event_desc(int fd
, struct perf_header
*h __maybe_unused
,
345 struct perf_evlist
*evlist
)
347 struct perf_evsel
*evsel
;
351 nre
= evlist
->nr_entries
;
354 * write number of events
356 ret
= do_write(fd
, &nre
, sizeof(nre
));
361 * size of perf_event_attr struct
363 sz
= (u32
)sizeof(evsel
->attr
);
364 ret
= do_write(fd
, &sz
, sizeof(sz
));
368 evlist__for_each(evlist
, evsel
) {
369 ret
= do_write(fd
, &evsel
->attr
, sz
);
373 * write number of unique id per event
374 * there is one id per instance of an event
376 * copy into an nri to be independent of the
380 ret
= do_write(fd
, &nri
, sizeof(nri
));
385 * write event string as passed on cmdline
387 ret
= do_write_string(fd
, perf_evsel__name(evsel
));
391 * write unique ids for this event
393 ret
= do_write(fd
, evsel
->id
, evsel
->ids
* sizeof(u64
));
400 static int write_cmdline(int fd
, struct perf_header
*h __maybe_unused
,
401 struct perf_evlist
*evlist __maybe_unused
)
403 char buf
[MAXPATHLEN
];
409 * actual atual path to perf binary
411 sprintf(proc
, "/proc/%d/exe", getpid());
412 ret
= readlink(proc
, buf
, sizeof(buf
));
416 /* readlink() does not add null termination */
419 /* account for binary path */
422 ret
= do_write(fd
, &n
, sizeof(n
));
426 ret
= do_write_string(fd
, buf
);
430 for (i
= 0 ; i
< header_argc
; i
++) {
431 ret
= do_write_string(fd
, header_argv
[i
]);
438 #define CORE_SIB_FMT \
439 "/sys/devices/system/cpu/cpu%d/topology/core_siblings_list"
440 #define THRD_SIB_FMT \
441 "/sys/devices/system/cpu/cpu%d/topology/thread_siblings_list"
446 char **core_siblings
;
447 char **thread_siblings
;
450 static int build_cpu_topo(struct cpu_topo
*tp
, int cpu
)
453 char filename
[MAXPATHLEN
];
454 char *buf
= NULL
, *p
;
460 sprintf(filename
, CORE_SIB_FMT
, cpu
);
461 fp
= fopen(filename
, "r");
465 sret
= getline(&buf
, &len
, fp
);
470 p
= strchr(buf
, '\n');
474 for (i
= 0; i
< tp
->core_sib
; i
++) {
475 if (!strcmp(buf
, tp
->core_siblings
[i
]))
478 if (i
== tp
->core_sib
) {
479 tp
->core_siblings
[i
] = buf
;
487 sprintf(filename
, THRD_SIB_FMT
, cpu
);
488 fp
= fopen(filename
, "r");
492 if (getline(&buf
, &len
, fp
) <= 0)
495 p
= strchr(buf
, '\n');
499 for (i
= 0; i
< tp
->thread_sib
; i
++) {
500 if (!strcmp(buf
, tp
->thread_siblings
[i
]))
503 if (i
== tp
->thread_sib
) {
504 tp
->thread_siblings
[i
] = buf
;
516 static void free_cpu_topo(struct cpu_topo
*tp
)
523 for (i
= 0 ; i
< tp
->core_sib
; i
++)
524 zfree(&tp
->core_siblings
[i
]);
526 for (i
= 0 ; i
< tp
->thread_sib
; i
++)
527 zfree(&tp
->thread_siblings
[i
]);
532 static struct cpu_topo
*build_cpu_topology(void)
541 ncpus
= sysconf(_SC_NPROCESSORS_CONF
);
545 nr
= (u32
)(ncpus
& UINT_MAX
);
547 sz
= nr
* sizeof(char *);
549 addr
= calloc(1, sizeof(*tp
) + 2 * sz
);
556 tp
->core_siblings
= addr
;
558 tp
->thread_siblings
= addr
;
560 for (i
= 0; i
< nr
; i
++) {
561 ret
= build_cpu_topo(tp
, i
);
572 static int write_cpu_topology(int fd
, struct perf_header
*h __maybe_unused
,
573 struct perf_evlist
*evlist __maybe_unused
)
579 tp
= build_cpu_topology();
583 ret
= do_write(fd
, &tp
->core_sib
, sizeof(tp
->core_sib
));
587 for (i
= 0; i
< tp
->core_sib
; i
++) {
588 ret
= do_write_string(fd
, tp
->core_siblings
[i
]);
592 ret
= do_write(fd
, &tp
->thread_sib
, sizeof(tp
->thread_sib
));
596 for (i
= 0; i
< tp
->thread_sib
; i
++) {
597 ret
= do_write_string(fd
, tp
->thread_siblings
[i
]);
608 static int write_total_mem(int fd
, struct perf_header
*h __maybe_unused
,
609 struct perf_evlist
*evlist __maybe_unused
)
617 fp
= fopen("/proc/meminfo", "r");
621 while (getline(&buf
, &len
, fp
) > 0) {
622 ret
= strncmp(buf
, "MemTotal:", 9);
627 n
= sscanf(buf
, "%*s %"PRIu64
, &mem
);
629 ret
= do_write(fd
, &mem
, sizeof(mem
));
637 static int write_topo_node(int fd
, int node
)
639 char str
[MAXPATHLEN
];
641 char *buf
= NULL
, *p
;
644 u64 mem_total
, mem_free
, mem
;
647 sprintf(str
, "/sys/devices/system/node/node%d/meminfo", node
);
648 fp
= fopen(str
, "r");
652 while (getline(&buf
, &len
, fp
) > 0) {
653 /* skip over invalid lines */
654 if (!strchr(buf
, ':'))
656 if (sscanf(buf
, "%*s %*d %31s %"PRIu64
, field
, &mem
) != 2)
658 if (!strcmp(field
, "MemTotal:"))
660 if (!strcmp(field
, "MemFree:"))
667 ret
= do_write(fd
, &mem_total
, sizeof(u64
));
671 ret
= do_write(fd
, &mem_free
, sizeof(u64
));
676 sprintf(str
, "/sys/devices/system/node/node%d/cpulist", node
);
678 fp
= fopen(str
, "r");
682 if (getline(&buf
, &len
, fp
) <= 0)
685 p
= strchr(buf
, '\n');
689 ret
= do_write_string(fd
, buf
);
697 static int write_numa_topology(int fd
, struct perf_header
*h __maybe_unused
,
698 struct perf_evlist
*evlist __maybe_unused
)
703 struct cpu_map
*node_map
= NULL
;
708 fp
= fopen("/sys/devices/system/node/online", "r");
712 if (getline(&buf
, &len
, fp
) <= 0)
715 c
= strchr(buf
, '\n');
719 node_map
= cpu_map__new(buf
);
723 nr
= (u32
)node_map
->nr
;
725 ret
= do_write(fd
, &nr
, sizeof(nr
));
729 for (i
= 0; i
< nr
; i
++) {
730 j
= (u32
)node_map
->map
[i
];
731 ret
= do_write(fd
, &j
, sizeof(j
));
735 ret
= write_topo_node(fd
, i
);
749 * struct pmu_mappings {
758 static int write_pmu_mappings(int fd
, struct perf_header
*h __maybe_unused
,
759 struct perf_evlist
*evlist __maybe_unused
)
761 struct perf_pmu
*pmu
= NULL
;
762 off_t offset
= lseek(fd
, 0, SEEK_CUR
);
766 /* write real pmu_num later */
767 ret
= do_write(fd
, &pmu_num
, sizeof(pmu_num
));
771 while ((pmu
= perf_pmu__scan(pmu
))) {
776 ret
= do_write(fd
, &pmu
->type
, sizeof(pmu
->type
));
780 ret
= do_write_string(fd
, pmu
->name
);
785 if (pwrite(fd
, &pmu_num
, sizeof(pmu_num
), offset
) != sizeof(pmu_num
)) {
787 lseek(fd
, offset
, SEEK_SET
);
797 * struct group_descs {
799 * struct group_desc {
806 static int write_group_desc(int fd
, struct perf_header
*h __maybe_unused
,
807 struct perf_evlist
*evlist
)
809 u32 nr_groups
= evlist
->nr_groups
;
810 struct perf_evsel
*evsel
;
813 ret
= do_write(fd
, &nr_groups
, sizeof(nr_groups
));
817 evlist__for_each(evlist
, evsel
) {
818 if (perf_evsel__is_group_leader(evsel
) &&
819 evsel
->nr_members
> 1) {
820 const char *name
= evsel
->group_name
?: "{anon_group}";
821 u32 leader_idx
= evsel
->idx
;
822 u32 nr_members
= evsel
->nr_members
;
824 ret
= do_write_string(fd
, name
);
828 ret
= do_write(fd
, &leader_idx
, sizeof(leader_idx
));
832 ret
= do_write(fd
, &nr_members
, sizeof(nr_members
));
841 * default get_cpuid(): nothing gets recorded
842 * actual implementation must be in arch/$(ARCH)/util/header.c
844 int __attribute__ ((weak
)) get_cpuid(char *buffer __maybe_unused
,
845 size_t sz __maybe_unused
)
850 static int write_cpuid(int fd
, struct perf_header
*h __maybe_unused
,
851 struct perf_evlist
*evlist __maybe_unused
)
856 ret
= get_cpuid(buffer
, sizeof(buffer
));
862 return do_write_string(fd
, buffer
);
865 static int write_branch_stack(int fd __maybe_unused
,
866 struct perf_header
*h __maybe_unused
,
867 struct perf_evlist
*evlist __maybe_unused
)
872 static void print_hostname(struct perf_header
*ph
, int fd __maybe_unused
,
875 fprintf(fp
, "# hostname : %s\n", ph
->env
.hostname
);
878 static void print_osrelease(struct perf_header
*ph
, int fd __maybe_unused
,
881 fprintf(fp
, "# os release : %s\n", ph
->env
.os_release
);
884 static void print_arch(struct perf_header
*ph
, int fd __maybe_unused
, FILE *fp
)
886 fprintf(fp
, "# arch : %s\n", ph
->env
.arch
);
889 static void print_cpudesc(struct perf_header
*ph
, int fd __maybe_unused
,
892 fprintf(fp
, "# cpudesc : %s\n", ph
->env
.cpu_desc
);
895 static void print_nrcpus(struct perf_header
*ph
, int fd __maybe_unused
,
898 fprintf(fp
, "# nrcpus online : %u\n", ph
->env
.nr_cpus_online
);
899 fprintf(fp
, "# nrcpus avail : %u\n", ph
->env
.nr_cpus_avail
);
902 static void print_version(struct perf_header
*ph
, int fd __maybe_unused
,
905 fprintf(fp
, "# perf version : %s\n", ph
->env
.version
);
908 static void print_cmdline(struct perf_header
*ph
, int fd __maybe_unused
,
914 nr
= ph
->env
.nr_cmdline
;
915 str
= ph
->env
.cmdline
;
917 fprintf(fp
, "# cmdline : ");
919 for (i
= 0; i
< nr
; i
++) {
920 fprintf(fp
, "%s ", str
);
921 str
+= strlen(str
) + 1;
926 static void print_cpu_topology(struct perf_header
*ph
, int fd __maybe_unused
,
932 nr
= ph
->env
.nr_sibling_cores
;
933 str
= ph
->env
.sibling_cores
;
935 for (i
= 0; i
< nr
; i
++) {
936 fprintf(fp
, "# sibling cores : %s\n", str
);
937 str
+= strlen(str
) + 1;
940 nr
= ph
->env
.nr_sibling_threads
;
941 str
= ph
->env
.sibling_threads
;
943 for (i
= 0; i
< nr
; i
++) {
944 fprintf(fp
, "# sibling threads : %s\n", str
);
945 str
+= strlen(str
) + 1;
949 static void free_event_desc(struct perf_evsel
*events
)
951 struct perf_evsel
*evsel
;
956 for (evsel
= events
; evsel
->attr
.size
; evsel
++) {
964 static struct perf_evsel
*
965 read_event_desc(struct perf_header
*ph
, int fd
)
967 struct perf_evsel
*evsel
, *events
= NULL
;
970 u32 nre
, sz
, nr
, i
, j
;
974 /* number of events */
975 ret
= readn(fd
, &nre
, sizeof(nre
));
976 if (ret
!= (ssize_t
)sizeof(nre
))
982 ret
= readn(fd
, &sz
, sizeof(sz
));
983 if (ret
!= (ssize_t
)sizeof(sz
))
989 /* buffer to hold on file attr struct */
994 /* the last event terminates with evsel->attr.size == 0: */
995 events
= calloc(nre
+ 1, sizeof(*events
));
999 msz
= sizeof(evsel
->attr
);
1003 for (i
= 0, evsel
= events
; i
< nre
; evsel
++, i
++) {
1007 * must read entire on-file attr struct to
1008 * sync up with layout.
1010 ret
= readn(fd
, buf
, sz
);
1011 if (ret
!= (ssize_t
)sz
)
1015 perf_event__attr_swap(buf
);
1017 memcpy(&evsel
->attr
, buf
, msz
);
1019 ret
= readn(fd
, &nr
, sizeof(nr
));
1020 if (ret
!= (ssize_t
)sizeof(nr
))
1023 if (ph
->needs_swap
) {
1025 evsel
->needs_swap
= true;
1028 evsel
->name
= do_read_string(fd
, ph
);
1033 id
= calloc(nr
, sizeof(*id
));
1039 for (j
= 0 ; j
< nr
; j
++) {
1040 ret
= readn(fd
, id
, sizeof(*id
));
1041 if (ret
!= (ssize_t
)sizeof(*id
))
1044 *id
= bswap_64(*id
);
1053 free_event_desc(events
);
1058 static int __desc_attr__fprintf(FILE *fp
, const char *name
, const char *val
,
1059 void *priv
__attribute__((unused
)))
1061 return fprintf(fp
, ", %s = %s", name
, val
);
1064 static void print_event_desc(struct perf_header
*ph
, int fd
, FILE *fp
)
1066 struct perf_evsel
*evsel
, *events
= read_event_desc(ph
, fd
);
1071 fprintf(fp
, "# event desc: not available or unable to read\n");
1075 for (evsel
= events
; evsel
->attr
.size
; evsel
++) {
1076 fprintf(fp
, "# event : name = %s, ", evsel
->name
);
1079 fprintf(fp
, ", id = {");
1080 for (j
= 0, id
= evsel
->id
; j
< evsel
->ids
; j
++, id
++) {
1083 fprintf(fp
, " %"PRIu64
, *id
);
1088 perf_event_attr__fprintf(fp
, &evsel
->attr
, __desc_attr__fprintf
, NULL
);
1093 free_event_desc(events
);
1096 static void print_total_mem(struct perf_header
*ph
, int fd __maybe_unused
,
1099 fprintf(fp
, "# total memory : %Lu kB\n", ph
->env
.total_mem
);
1102 static void print_numa_topology(struct perf_header
*ph
, int fd __maybe_unused
,
1107 uint64_t mem_total
, mem_free
;
1110 nr
= ph
->env
.nr_numa_nodes
;
1111 str
= ph
->env
.numa_nodes
;
1113 for (i
= 0; i
< nr
; i
++) {
1115 c
= strtoul(str
, &tmp
, 0);
1120 mem_total
= strtoull(str
, &tmp
, 0);
1125 mem_free
= strtoull(str
, &tmp
, 0);
1129 fprintf(fp
, "# node%u meminfo : total = %"PRIu64
" kB,"
1130 " free = %"PRIu64
" kB\n",
1131 c
, mem_total
, mem_free
);
1134 fprintf(fp
, "# node%u cpu list : %s\n", c
, str
);
1136 str
+= strlen(str
) + 1;
1140 fprintf(fp
, "# numa topology : not available\n");
1143 static void print_cpuid(struct perf_header
*ph
, int fd __maybe_unused
, FILE *fp
)
1145 fprintf(fp
, "# cpuid : %s\n", ph
->env
.cpuid
);
1148 static void print_branch_stack(struct perf_header
*ph __maybe_unused
,
1149 int fd __maybe_unused
, FILE *fp
)
1151 fprintf(fp
, "# contains samples with branch stack\n");
1154 static void print_pmu_mappings(struct perf_header
*ph
, int fd __maybe_unused
,
1157 const char *delimiter
= "# pmu mappings: ";
1162 pmu_num
= ph
->env
.nr_pmu_mappings
;
1164 fprintf(fp
, "# pmu mappings: not available\n");
1168 str
= ph
->env
.pmu_mappings
;
1171 type
= strtoul(str
, &tmp
, 0);
1176 fprintf(fp
, "%s%s = %" PRIu32
, delimiter
, str
, type
);
1179 str
+= strlen(str
) + 1;
1188 fprintf(fp
, "# pmu mappings: unable to read\n");
1191 static void print_group_desc(struct perf_header
*ph
, int fd __maybe_unused
,
1194 struct perf_session
*session
;
1195 struct perf_evsel
*evsel
;
1198 session
= container_of(ph
, struct perf_session
, header
);
1200 evlist__for_each(session
->evlist
, evsel
) {
1201 if (perf_evsel__is_group_leader(evsel
) &&
1202 evsel
->nr_members
> 1) {
1203 fprintf(fp
, "# group: %s{%s", evsel
->group_name
?: "",
1204 perf_evsel__name(evsel
));
1206 nr
= evsel
->nr_members
- 1;
1208 fprintf(fp
, ",%s", perf_evsel__name(evsel
));
1216 static int __event_process_build_id(struct build_id_event
*bev
,
1218 struct perf_session
*session
)
1222 struct machine
*machine
;
1225 enum dso_kernel_type dso_type
;
1227 machine
= perf_session__findnew_machine(session
, bev
->pid
);
1231 misc
= bev
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
;
1234 case PERF_RECORD_MISC_KERNEL
:
1235 dso_type
= DSO_TYPE_KERNEL
;
1236 dsos
= &machine
->kernel_dsos
;
1238 case PERF_RECORD_MISC_GUEST_KERNEL
:
1239 dso_type
= DSO_TYPE_GUEST_KERNEL
;
1240 dsos
= &machine
->kernel_dsos
;
1242 case PERF_RECORD_MISC_USER
:
1243 case PERF_RECORD_MISC_GUEST_USER
:
1244 dso_type
= DSO_TYPE_USER
;
1245 dsos
= &machine
->user_dsos
;
1251 dso
= __dsos__findnew(dsos
, filename
);
1253 char sbuild_id
[BUILD_ID_SIZE
* 2 + 1];
1255 dso__set_build_id(dso
, &bev
->build_id
);
1257 if (!is_kernel_module(filename
))
1258 dso
->kernel
= dso_type
;
1260 build_id__sprintf(dso
->build_id
, sizeof(dso
->build_id
),
1262 pr_debug("build id event received for %s: %s\n",
1263 dso
->long_name
, sbuild_id
);
1271 static int perf_header__read_build_ids_abi_quirk(struct perf_header
*header
,
1272 int input
, u64 offset
, u64 size
)
1274 struct perf_session
*session
= container_of(header
, struct perf_session
, header
);
1276 struct perf_event_header header
;
1277 u8 build_id
[PERF_ALIGN(BUILD_ID_SIZE
, sizeof(u64
))];
1280 struct build_id_event bev
;
1281 char filename
[PATH_MAX
];
1282 u64 limit
= offset
+ size
;
1284 while (offset
< limit
) {
1287 if (readn(input
, &old_bev
, sizeof(old_bev
)) != sizeof(old_bev
))
1290 if (header
->needs_swap
)
1291 perf_event_header__bswap(&old_bev
.header
);
1293 len
= old_bev
.header
.size
- sizeof(old_bev
);
1294 if (readn(input
, filename
, len
) != len
)
1297 bev
.header
= old_bev
.header
;
1300 * As the pid is the missing value, we need to fill
1301 * it properly. The header.misc value give us nice hint.
1303 bev
.pid
= HOST_KERNEL_ID
;
1304 if (bev
.header
.misc
== PERF_RECORD_MISC_GUEST_USER
||
1305 bev
.header
.misc
== PERF_RECORD_MISC_GUEST_KERNEL
)
1306 bev
.pid
= DEFAULT_GUEST_KERNEL_ID
;
1308 memcpy(bev
.build_id
, old_bev
.build_id
, sizeof(bev
.build_id
));
1309 __event_process_build_id(&bev
, filename
, session
);
1311 offset
+= bev
.header
.size
;
1317 static int perf_header__read_build_ids(struct perf_header
*header
,
1318 int input
, u64 offset
, u64 size
)
1320 struct perf_session
*session
= container_of(header
, struct perf_session
, header
);
1321 struct build_id_event bev
;
1322 char filename
[PATH_MAX
];
1323 u64 limit
= offset
+ size
, orig_offset
= offset
;
1326 while (offset
< limit
) {
1329 if (readn(input
, &bev
, sizeof(bev
)) != sizeof(bev
))
1332 if (header
->needs_swap
)
1333 perf_event_header__bswap(&bev
.header
);
1335 len
= bev
.header
.size
- sizeof(bev
);
1336 if (readn(input
, filename
, len
) != len
)
1339 * The a1645ce1 changeset:
1341 * "perf: 'perf kvm' tool for monitoring guest performance from host"
1343 * Added a field to struct build_id_event that broke the file
1346 * Since the kernel build-id is the first entry, process the
1347 * table using the old format if the well known
1348 * '[kernel.kallsyms]' string for the kernel build-id has the
1349 * first 4 characters chopped off (where the pid_t sits).
1351 if (memcmp(filename
, "nel.kallsyms]", 13) == 0) {
1352 if (lseek(input
, orig_offset
, SEEK_SET
) == (off_t
)-1)
1354 return perf_header__read_build_ids_abi_quirk(header
, input
, offset
, size
);
1357 __event_process_build_id(&bev
, filename
, session
);
1359 offset
+= bev
.header
.size
;
1366 static int process_tracing_data(struct perf_file_section
*section __maybe_unused
,
1367 struct perf_header
*ph __maybe_unused
,
1370 ssize_t ret
= trace_report(fd
, data
, false);
1371 return ret
< 0 ? -1 : 0;
1374 static int process_build_id(struct perf_file_section
*section
,
1375 struct perf_header
*ph
, int fd
,
1376 void *data __maybe_unused
)
1378 if (perf_header__read_build_ids(ph
, fd
, section
->offset
, section
->size
))
1379 pr_debug("Failed to read buildids, continuing...\n");
1383 static int process_hostname(struct perf_file_section
*section __maybe_unused
,
1384 struct perf_header
*ph
, int fd
,
1385 void *data __maybe_unused
)
1387 ph
->env
.hostname
= do_read_string(fd
, ph
);
1388 return ph
->env
.hostname
? 0 : -ENOMEM
;
1391 static int process_osrelease(struct perf_file_section
*section __maybe_unused
,
1392 struct perf_header
*ph
, int fd
,
1393 void *data __maybe_unused
)
1395 ph
->env
.os_release
= do_read_string(fd
, ph
);
1396 return ph
->env
.os_release
? 0 : -ENOMEM
;
1399 static int process_version(struct perf_file_section
*section __maybe_unused
,
1400 struct perf_header
*ph
, int fd
,
1401 void *data __maybe_unused
)
1403 ph
->env
.version
= do_read_string(fd
, ph
);
1404 return ph
->env
.version
? 0 : -ENOMEM
;
1407 static int process_arch(struct perf_file_section
*section __maybe_unused
,
1408 struct perf_header
*ph
, int fd
,
1409 void *data __maybe_unused
)
1411 ph
->env
.arch
= do_read_string(fd
, ph
);
1412 return ph
->env
.arch
? 0 : -ENOMEM
;
1415 static int process_nrcpus(struct perf_file_section
*section __maybe_unused
,
1416 struct perf_header
*ph
, int fd
,
1417 void *data __maybe_unused
)
1422 ret
= readn(fd
, &nr
, sizeof(nr
));
1423 if (ret
!= sizeof(nr
))
1429 ph
->env
.nr_cpus_online
= nr
;
1431 ret
= readn(fd
, &nr
, sizeof(nr
));
1432 if (ret
!= sizeof(nr
))
1438 ph
->env
.nr_cpus_avail
= nr
;
1442 static int process_cpudesc(struct perf_file_section
*section __maybe_unused
,
1443 struct perf_header
*ph
, int fd
,
1444 void *data __maybe_unused
)
1446 ph
->env
.cpu_desc
= do_read_string(fd
, ph
);
1447 return ph
->env
.cpu_desc
? 0 : -ENOMEM
;
1450 static int process_cpuid(struct perf_file_section
*section __maybe_unused
,
1451 struct perf_header
*ph
, int fd
,
1452 void *data __maybe_unused
)
1454 ph
->env
.cpuid
= do_read_string(fd
, ph
);
1455 return ph
->env
.cpuid
? 0 : -ENOMEM
;
1458 static int process_total_mem(struct perf_file_section
*section __maybe_unused
,
1459 struct perf_header
*ph
, int fd
,
1460 void *data __maybe_unused
)
1465 ret
= readn(fd
, &mem
, sizeof(mem
));
1466 if (ret
!= sizeof(mem
))
1470 mem
= bswap_64(mem
);
1472 ph
->env
.total_mem
= mem
;
1476 static struct perf_evsel
*
1477 perf_evlist__find_by_index(struct perf_evlist
*evlist
, int idx
)
1479 struct perf_evsel
*evsel
;
1481 evlist__for_each(evlist
, evsel
) {
1482 if (evsel
->idx
== idx
)
1490 perf_evlist__set_event_name(struct perf_evlist
*evlist
,
1491 struct perf_evsel
*event
)
1493 struct perf_evsel
*evsel
;
1498 evsel
= perf_evlist__find_by_index(evlist
, event
->idx
);
1505 evsel
->name
= strdup(event
->name
);
1509 process_event_desc(struct perf_file_section
*section __maybe_unused
,
1510 struct perf_header
*header
, int fd
,
1511 void *data __maybe_unused
)
1513 struct perf_session
*session
;
1514 struct perf_evsel
*evsel
, *events
= read_event_desc(header
, fd
);
1519 session
= container_of(header
, struct perf_session
, header
);
1520 for (evsel
= events
; evsel
->attr
.size
; evsel
++)
1521 perf_evlist__set_event_name(session
->evlist
, evsel
);
1523 free_event_desc(events
);
1528 static int process_cmdline(struct perf_file_section
*section __maybe_unused
,
1529 struct perf_header
*ph
, int fd
,
1530 void *data __maybe_unused
)
1537 ret
= readn(fd
, &nr
, sizeof(nr
));
1538 if (ret
!= sizeof(nr
))
1544 ph
->env
.nr_cmdline
= nr
;
1545 strbuf_init(&sb
, 128);
1547 for (i
= 0; i
< nr
; i
++) {
1548 str
= do_read_string(fd
, ph
);
1552 /* include a NULL character at the end */
1553 strbuf_add(&sb
, str
, strlen(str
) + 1);
1556 ph
->env
.cmdline
= strbuf_detach(&sb
, NULL
);
1560 strbuf_release(&sb
);
1564 static int process_cpu_topology(struct perf_file_section
*section __maybe_unused
,
1565 struct perf_header
*ph
, int fd
,
1566 void *data __maybe_unused
)
1573 ret
= readn(fd
, &nr
, sizeof(nr
));
1574 if (ret
!= sizeof(nr
))
1580 ph
->env
.nr_sibling_cores
= nr
;
1581 strbuf_init(&sb
, 128);
1583 for (i
= 0; i
< nr
; i
++) {
1584 str
= do_read_string(fd
, ph
);
1588 /* include a NULL character at the end */
1589 strbuf_add(&sb
, str
, strlen(str
) + 1);
1592 ph
->env
.sibling_cores
= strbuf_detach(&sb
, NULL
);
1594 ret
= readn(fd
, &nr
, sizeof(nr
));
1595 if (ret
!= sizeof(nr
))
1601 ph
->env
.nr_sibling_threads
= nr
;
1603 for (i
= 0; i
< nr
; i
++) {
1604 str
= do_read_string(fd
, ph
);
1608 /* include a NULL character at the end */
1609 strbuf_add(&sb
, str
, strlen(str
) + 1);
1612 ph
->env
.sibling_threads
= strbuf_detach(&sb
, NULL
);
1616 strbuf_release(&sb
);
1620 static int process_numa_topology(struct perf_file_section
*section __maybe_unused
,
1621 struct perf_header
*ph
, int fd
,
1622 void *data __maybe_unused
)
1627 uint64_t mem_total
, mem_free
;
1631 ret
= readn(fd
, &nr
, sizeof(nr
));
1632 if (ret
!= sizeof(nr
))
1638 ph
->env
.nr_numa_nodes
= nr
;
1639 strbuf_init(&sb
, 256);
1641 for (i
= 0; i
< nr
; i
++) {
1643 ret
= readn(fd
, &node
, sizeof(node
));
1644 if (ret
!= sizeof(node
))
1647 ret
= readn(fd
, &mem_total
, sizeof(u64
));
1648 if (ret
!= sizeof(u64
))
1651 ret
= readn(fd
, &mem_free
, sizeof(u64
));
1652 if (ret
!= sizeof(u64
))
1655 if (ph
->needs_swap
) {
1656 node
= bswap_32(node
);
1657 mem_total
= bswap_64(mem_total
);
1658 mem_free
= bswap_64(mem_free
);
1661 strbuf_addf(&sb
, "%u:%"PRIu64
":%"PRIu64
":",
1662 node
, mem_total
, mem_free
);
1664 str
= do_read_string(fd
, ph
);
1668 /* include a NULL character at the end */
1669 strbuf_add(&sb
, str
, strlen(str
) + 1);
1672 ph
->env
.numa_nodes
= strbuf_detach(&sb
, NULL
);
1676 strbuf_release(&sb
);
1680 static int process_pmu_mappings(struct perf_file_section
*section __maybe_unused
,
1681 struct perf_header
*ph
, int fd
,
1682 void *data __maybe_unused
)
1690 ret
= readn(fd
, &pmu_num
, sizeof(pmu_num
));
1691 if (ret
!= sizeof(pmu_num
))
1695 pmu_num
= bswap_32(pmu_num
);
1698 pr_debug("pmu mappings not available\n");
1702 ph
->env
.nr_pmu_mappings
= pmu_num
;
1703 strbuf_init(&sb
, 128);
1706 if (readn(fd
, &type
, sizeof(type
)) != sizeof(type
))
1709 type
= bswap_32(type
);
1711 name
= do_read_string(fd
, ph
);
1715 strbuf_addf(&sb
, "%u:%s", type
, name
);
1716 /* include a NULL character at the end */
1717 strbuf_add(&sb
, "", 1);
1722 ph
->env
.pmu_mappings
= strbuf_detach(&sb
, NULL
);
1726 strbuf_release(&sb
);
1730 static int process_group_desc(struct perf_file_section
*section __maybe_unused
,
1731 struct perf_header
*ph
, int fd
,
1732 void *data __maybe_unused
)
1735 u32 i
, nr
, nr_groups
;
1736 struct perf_session
*session
;
1737 struct perf_evsel
*evsel
, *leader
= NULL
;
1744 if (readn(fd
, &nr_groups
, sizeof(nr_groups
)) != sizeof(nr_groups
))
1748 nr_groups
= bswap_32(nr_groups
);
1750 ph
->env
.nr_groups
= nr_groups
;
1752 pr_debug("group desc not available\n");
1756 desc
= calloc(nr_groups
, sizeof(*desc
));
1760 for (i
= 0; i
< nr_groups
; i
++) {
1761 desc
[i
].name
= do_read_string(fd
, ph
);
1765 if (readn(fd
, &desc
[i
].leader_idx
, sizeof(u32
)) != sizeof(u32
))
1768 if (readn(fd
, &desc
[i
].nr_members
, sizeof(u32
)) != sizeof(u32
))
1771 if (ph
->needs_swap
) {
1772 desc
[i
].leader_idx
= bswap_32(desc
[i
].leader_idx
);
1773 desc
[i
].nr_members
= bswap_32(desc
[i
].nr_members
);
1778 * Rebuild group relationship based on the group_desc
1780 session
= container_of(ph
, struct perf_session
, header
);
1781 session
->evlist
->nr_groups
= nr_groups
;
1784 evlist__for_each(session
->evlist
, evsel
) {
1785 if (evsel
->idx
== (int) desc
[i
].leader_idx
) {
1786 evsel
->leader
= evsel
;
1787 /* {anon_group} is a dummy name */
1788 if (strcmp(desc
[i
].name
, "{anon_group}")) {
1789 evsel
->group_name
= desc
[i
].name
;
1790 desc
[i
].name
= NULL
;
1792 evsel
->nr_members
= desc
[i
].nr_members
;
1794 if (i
>= nr_groups
|| nr
> 0) {
1795 pr_debug("invalid group desc\n");
1800 nr
= evsel
->nr_members
- 1;
1803 /* This is a group member */
1804 evsel
->leader
= leader
;
1810 if (i
!= nr_groups
|| nr
!= 0) {
1811 pr_debug("invalid group desc\n");
1817 for (i
= 0; i
< nr_groups
; i
++)
1818 zfree(&desc
[i
].name
);
1824 struct feature_ops
{
1825 int (*write
)(int fd
, struct perf_header
*h
, struct perf_evlist
*evlist
);
1826 void (*print
)(struct perf_header
*h
, int fd
, FILE *fp
);
1827 int (*process
)(struct perf_file_section
*section
,
1828 struct perf_header
*h
, int fd
, void *data
);
1833 #define FEAT_OPA(n, func) \
1834 [n] = { .name = #n, .write = write_##func, .print = print_##func }
1835 #define FEAT_OPP(n, func) \
1836 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
1837 .process = process_##func }
1838 #define FEAT_OPF(n, func) \
1839 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
1840 .process = process_##func, .full_only = true }
1842 /* feature_ops not implemented: */
1843 #define print_tracing_data NULL
1844 #define print_build_id NULL
1846 static const struct feature_ops feat_ops
[HEADER_LAST_FEATURE
] = {
1847 FEAT_OPP(HEADER_TRACING_DATA
, tracing_data
),
1848 FEAT_OPP(HEADER_BUILD_ID
, build_id
),
1849 FEAT_OPP(HEADER_HOSTNAME
, hostname
),
1850 FEAT_OPP(HEADER_OSRELEASE
, osrelease
),
1851 FEAT_OPP(HEADER_VERSION
, version
),
1852 FEAT_OPP(HEADER_ARCH
, arch
),
1853 FEAT_OPP(HEADER_NRCPUS
, nrcpus
),
1854 FEAT_OPP(HEADER_CPUDESC
, cpudesc
),
1855 FEAT_OPP(HEADER_CPUID
, cpuid
),
1856 FEAT_OPP(HEADER_TOTAL_MEM
, total_mem
),
1857 FEAT_OPP(HEADER_EVENT_DESC
, event_desc
),
1858 FEAT_OPP(HEADER_CMDLINE
, cmdline
),
1859 FEAT_OPF(HEADER_CPU_TOPOLOGY
, cpu_topology
),
1860 FEAT_OPF(HEADER_NUMA_TOPOLOGY
, numa_topology
),
1861 FEAT_OPA(HEADER_BRANCH_STACK
, branch_stack
),
1862 FEAT_OPP(HEADER_PMU_MAPPINGS
, pmu_mappings
),
1863 FEAT_OPP(HEADER_GROUP_DESC
, group_desc
),
1866 struct header_print_data
{
1868 bool full
; /* extended list of headers */
1871 static int perf_file_section__fprintf_info(struct perf_file_section
*section
,
1872 struct perf_header
*ph
,
1873 int feat
, int fd
, void *data
)
1875 struct header_print_data
*hd
= data
;
1877 if (lseek(fd
, section
->offset
, SEEK_SET
) == (off_t
)-1) {
1878 pr_debug("Failed to lseek to %" PRIu64
" offset for feature "
1879 "%d, continuing...\n", section
->offset
, feat
);
1882 if (feat
>= HEADER_LAST_FEATURE
) {
1883 pr_warning("unknown feature %d\n", feat
);
1886 if (!feat_ops
[feat
].print
)
1889 if (!feat_ops
[feat
].full_only
|| hd
->full
)
1890 feat_ops
[feat
].print(ph
, fd
, hd
->fp
);
1892 fprintf(hd
->fp
, "# %s info available, use -I to display\n",
1893 feat_ops
[feat
].name
);
1898 int perf_header__fprintf_info(struct perf_session
*session
, FILE *fp
, bool full
)
1900 struct header_print_data hd
;
1901 struct perf_header
*header
= &session
->header
;
1902 int fd
= perf_data_file__fd(session
->file
);
1906 perf_header__process_sections(header
, fd
, &hd
,
1907 perf_file_section__fprintf_info
);
1911 static int do_write_feat(int fd
, struct perf_header
*h
, int type
,
1912 struct perf_file_section
**p
,
1913 struct perf_evlist
*evlist
)
1918 if (perf_header__has_feat(h
, type
)) {
1919 if (!feat_ops
[type
].write
)
1922 (*p
)->offset
= lseek(fd
, 0, SEEK_CUR
);
1924 err
= feat_ops
[type
].write(fd
, h
, evlist
);
1926 pr_debug("failed to write feature %d\n", type
);
1928 /* undo anything written */
1929 lseek(fd
, (*p
)->offset
, SEEK_SET
);
1933 (*p
)->size
= lseek(fd
, 0, SEEK_CUR
) - (*p
)->offset
;
1939 static int perf_header__adds_write(struct perf_header
*header
,
1940 struct perf_evlist
*evlist
, int fd
)
1943 struct perf_file_section
*feat_sec
, *p
;
1949 nr_sections
= bitmap_weight(header
->adds_features
, HEADER_FEAT_BITS
);
1953 feat_sec
= p
= calloc(nr_sections
, sizeof(*feat_sec
));
1954 if (feat_sec
== NULL
)
1957 sec_size
= sizeof(*feat_sec
) * nr_sections
;
1959 sec_start
= header
->feat_offset
;
1960 lseek(fd
, sec_start
+ sec_size
, SEEK_SET
);
1962 for_each_set_bit(feat
, header
->adds_features
, HEADER_FEAT_BITS
) {
1963 if (do_write_feat(fd
, header
, feat
, &p
, evlist
))
1964 perf_header__clear_feat(header
, feat
);
1967 lseek(fd
, sec_start
, SEEK_SET
);
1969 * may write more than needed due to dropped feature, but
1970 * this is okay, reader will skip the mising entries
1972 err
= do_write(fd
, feat_sec
, sec_size
);
1974 pr_debug("failed to write feature section\n");
1979 int perf_header__write_pipe(int fd
)
1981 struct perf_pipe_file_header f_header
;
1984 f_header
= (struct perf_pipe_file_header
){
1985 .magic
= PERF_MAGIC
,
1986 .size
= sizeof(f_header
),
1989 err
= do_write(fd
, &f_header
, sizeof(f_header
));
1991 pr_debug("failed to write perf pipe header\n");
1998 int perf_session__write_header(struct perf_session
*session
,
1999 struct perf_evlist
*evlist
,
2000 int fd
, bool at_exit
)
2002 struct perf_file_header f_header
;
2003 struct perf_file_attr f_attr
;
2004 struct perf_header
*header
= &session
->header
;
2005 struct perf_evsel
*evsel
;
2009 lseek(fd
, sizeof(f_header
), SEEK_SET
);
2011 evlist__for_each(session
->evlist
, evsel
) {
2012 evsel
->id_offset
= lseek(fd
, 0, SEEK_CUR
);
2013 err
= do_write(fd
, evsel
->id
, evsel
->ids
* sizeof(u64
));
2015 pr_debug("failed to write perf header\n");
2020 attr_offset
= lseek(fd
, 0, SEEK_CUR
);
2022 evlist__for_each(evlist
, evsel
) {
2023 f_attr
= (struct perf_file_attr
){
2024 .attr
= evsel
->attr
,
2026 .offset
= evsel
->id_offset
,
2027 .size
= evsel
->ids
* sizeof(u64
),
2030 err
= do_write(fd
, &f_attr
, sizeof(f_attr
));
2032 pr_debug("failed to write perf header attribute\n");
2037 if (!header
->data_offset
)
2038 header
->data_offset
= lseek(fd
, 0, SEEK_CUR
);
2039 header
->feat_offset
= header
->data_offset
+ header
->data_size
;
2042 err
= perf_header__adds_write(header
, evlist
, fd
);
2047 f_header
= (struct perf_file_header
){
2048 .magic
= PERF_MAGIC
,
2049 .size
= sizeof(f_header
),
2050 .attr_size
= sizeof(f_attr
),
2052 .offset
= attr_offset
,
2053 .size
= evlist
->nr_entries
* sizeof(f_attr
),
2056 .offset
= header
->data_offset
,
2057 .size
= header
->data_size
,
2059 /* event_types is ignored, store zeros */
2062 memcpy(&f_header
.adds_features
, &header
->adds_features
, sizeof(header
->adds_features
));
2064 lseek(fd
, 0, SEEK_SET
);
2065 err
= do_write(fd
, &f_header
, sizeof(f_header
));
2067 pr_debug("failed to write perf header\n");
2070 lseek(fd
, header
->data_offset
+ header
->data_size
, SEEK_SET
);
2075 static int perf_header__getbuffer64(struct perf_header
*header
,
2076 int fd
, void *buf
, size_t size
)
2078 if (readn(fd
, buf
, size
) <= 0)
2081 if (header
->needs_swap
)
2082 mem_bswap_64(buf
, size
);
2087 int perf_header__process_sections(struct perf_header
*header
, int fd
,
2089 int (*process
)(struct perf_file_section
*section
,
2090 struct perf_header
*ph
,
2091 int feat
, int fd
, void *data
))
2093 struct perf_file_section
*feat_sec
, *sec
;
2099 nr_sections
= bitmap_weight(header
->adds_features
, HEADER_FEAT_BITS
);
2103 feat_sec
= sec
= calloc(nr_sections
, sizeof(*feat_sec
));
2107 sec_size
= sizeof(*feat_sec
) * nr_sections
;
2109 lseek(fd
, header
->feat_offset
, SEEK_SET
);
2111 err
= perf_header__getbuffer64(header
, fd
, feat_sec
, sec_size
);
2115 for_each_set_bit(feat
, header
->adds_features
, HEADER_LAST_FEATURE
) {
2116 err
= process(sec
++, header
, feat
, fd
, data
);
2126 static const int attr_file_abi_sizes
[] = {
2127 [0] = PERF_ATTR_SIZE_VER0
,
2128 [1] = PERF_ATTR_SIZE_VER1
,
2129 [2] = PERF_ATTR_SIZE_VER2
,
2130 [3] = PERF_ATTR_SIZE_VER3
,
2131 [4] = PERF_ATTR_SIZE_VER4
,
2136 * In the legacy file format, the magic number is not used to encode endianness.
2137 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
2138 * on ABI revisions, we need to try all combinations for all endianness to
2139 * detect the endianness.
2141 static int try_all_file_abis(uint64_t hdr_sz
, struct perf_header
*ph
)
2143 uint64_t ref_size
, attr_size
;
2146 for (i
= 0 ; attr_file_abi_sizes
[i
]; i
++) {
2147 ref_size
= attr_file_abi_sizes
[i
]
2148 + sizeof(struct perf_file_section
);
2149 if (hdr_sz
!= ref_size
) {
2150 attr_size
= bswap_64(hdr_sz
);
2151 if (attr_size
!= ref_size
)
2154 ph
->needs_swap
= true;
2156 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
2161 /* could not determine endianness */
2165 #define PERF_PIPE_HDR_VER0 16
2167 static const size_t attr_pipe_abi_sizes
[] = {
2168 [0] = PERF_PIPE_HDR_VER0
,
2173 * In the legacy pipe format, there is an implicit assumption that endiannesss
2174 * between host recording the samples, and host parsing the samples is the
2175 * same. This is not always the case given that the pipe output may always be
2176 * redirected into a file and analyzed on a different machine with possibly a
2177 * different endianness and perf_event ABI revsions in the perf tool itself.
2179 static int try_all_pipe_abis(uint64_t hdr_sz
, struct perf_header
*ph
)
2184 for (i
= 0 ; attr_pipe_abi_sizes
[i
]; i
++) {
2185 if (hdr_sz
!= attr_pipe_abi_sizes
[i
]) {
2186 attr_size
= bswap_64(hdr_sz
);
2187 if (attr_size
!= hdr_sz
)
2190 ph
->needs_swap
= true;
2192 pr_debug("Pipe ABI%d perf.data file detected\n", i
);
2198 bool is_perf_magic(u64 magic
)
2200 if (!memcmp(&magic
, __perf_magic1
, sizeof(magic
))
2201 || magic
== __perf_magic2
2202 || magic
== __perf_magic2_sw
)
2208 static int check_magic_endian(u64 magic
, uint64_t hdr_sz
,
2209 bool is_pipe
, struct perf_header
*ph
)
2213 /* check for legacy format */
2214 ret
= memcmp(&magic
, __perf_magic1
, sizeof(magic
));
2216 ph
->version
= PERF_HEADER_VERSION_1
;
2217 pr_debug("legacy perf.data format\n");
2219 return try_all_pipe_abis(hdr_sz
, ph
);
2221 return try_all_file_abis(hdr_sz
, ph
);
2224 * the new magic number serves two purposes:
2225 * - unique number to identify actual perf.data files
2226 * - encode endianness of file
2228 ph
->version
= PERF_HEADER_VERSION_2
;
2230 /* check magic number with one endianness */
2231 if (magic
== __perf_magic2
)
2234 /* check magic number with opposite endianness */
2235 if (magic
!= __perf_magic2_sw
)
2238 ph
->needs_swap
= true;
2243 int perf_file_header__read(struct perf_file_header
*header
,
2244 struct perf_header
*ph
, int fd
)
2248 lseek(fd
, 0, SEEK_SET
);
2250 ret
= readn(fd
, header
, sizeof(*header
));
2254 if (check_magic_endian(header
->magic
,
2255 header
->attr_size
, false, ph
) < 0) {
2256 pr_debug("magic/endian check failed\n");
2260 if (ph
->needs_swap
) {
2261 mem_bswap_64(header
, offsetof(struct perf_file_header
,
2265 if (header
->size
!= sizeof(*header
)) {
2266 /* Support the previous format */
2267 if (header
->size
== offsetof(typeof(*header
), adds_features
))
2268 bitmap_zero(header
->adds_features
, HEADER_FEAT_BITS
);
2271 } else if (ph
->needs_swap
) {
2273 * feature bitmap is declared as an array of unsigned longs --
2274 * not good since its size can differ between the host that
2275 * generated the data file and the host analyzing the file.
2277 * We need to handle endianness, but we don't know the size of
2278 * the unsigned long where the file was generated. Take a best
2279 * guess at determining it: try 64-bit swap first (ie., file
2280 * created on a 64-bit host), and check if the hostname feature
2281 * bit is set (this feature bit is forced on as of fbe96f2).
2282 * If the bit is not, undo the 64-bit swap and try a 32-bit
2283 * swap. If the hostname bit is still not set (e.g., older data
2284 * file), punt and fallback to the original behavior --
2285 * clearing all feature bits and setting buildid.
2287 mem_bswap_64(&header
->adds_features
,
2288 BITS_TO_U64(HEADER_FEAT_BITS
));
2290 if (!test_bit(HEADER_HOSTNAME
, header
->adds_features
)) {
2292 mem_bswap_64(&header
->adds_features
,
2293 BITS_TO_U64(HEADER_FEAT_BITS
));
2296 mem_bswap_32(&header
->adds_features
,
2297 BITS_TO_U32(HEADER_FEAT_BITS
));
2300 if (!test_bit(HEADER_HOSTNAME
, header
->adds_features
)) {
2301 bitmap_zero(header
->adds_features
, HEADER_FEAT_BITS
);
2302 set_bit(HEADER_BUILD_ID
, header
->adds_features
);
2306 memcpy(&ph
->adds_features
, &header
->adds_features
,
2307 sizeof(ph
->adds_features
));
2309 ph
->data_offset
= header
->data
.offset
;
2310 ph
->data_size
= header
->data
.size
;
2311 ph
->feat_offset
= header
->data
.offset
+ header
->data
.size
;
2315 static int perf_file_section__process(struct perf_file_section
*section
,
2316 struct perf_header
*ph
,
2317 int feat
, int fd
, void *data
)
2319 if (lseek(fd
, section
->offset
, SEEK_SET
) == (off_t
)-1) {
2320 pr_debug("Failed to lseek to %" PRIu64
" offset for feature "
2321 "%d, continuing...\n", section
->offset
, feat
);
2325 if (feat
>= HEADER_LAST_FEATURE
) {
2326 pr_debug("unknown feature %d, continuing...\n", feat
);
2330 if (!feat_ops
[feat
].process
)
2333 return feat_ops
[feat
].process(section
, ph
, fd
, data
);
2336 static int perf_file_header__read_pipe(struct perf_pipe_file_header
*header
,
2337 struct perf_header
*ph
, int fd
,
2342 ret
= readn(fd
, header
, sizeof(*header
));
2346 if (check_magic_endian(header
->magic
, header
->size
, true, ph
) < 0) {
2347 pr_debug("endian/magic failed\n");
2352 header
->size
= bswap_64(header
->size
);
2354 if (repipe
&& do_write(STDOUT_FILENO
, header
, sizeof(*header
)) < 0)
2360 static int perf_header__read_pipe(struct perf_session
*session
)
2362 struct perf_header
*header
= &session
->header
;
2363 struct perf_pipe_file_header f_header
;
2365 if (perf_file_header__read_pipe(&f_header
, header
,
2366 perf_data_file__fd(session
->file
),
2367 session
->repipe
) < 0) {
2368 pr_debug("incompatible file format\n");
2375 static int read_attr(int fd
, struct perf_header
*ph
,
2376 struct perf_file_attr
*f_attr
)
2378 struct perf_event_attr
*attr
= &f_attr
->attr
;
2380 size_t our_sz
= sizeof(f_attr
->attr
);
2383 memset(f_attr
, 0, sizeof(*f_attr
));
2385 /* read minimal guaranteed structure */
2386 ret
= readn(fd
, attr
, PERF_ATTR_SIZE_VER0
);
2388 pr_debug("cannot read %d bytes of header attr\n",
2389 PERF_ATTR_SIZE_VER0
);
2393 /* on file perf_event_attr size */
2401 sz
= PERF_ATTR_SIZE_VER0
;
2402 } else if (sz
> our_sz
) {
2403 pr_debug("file uses a more recent and unsupported ABI"
2404 " (%zu bytes extra)\n", sz
- our_sz
);
2407 /* what we have not yet read and that we know about */
2408 left
= sz
- PERF_ATTR_SIZE_VER0
;
2411 ptr
+= PERF_ATTR_SIZE_VER0
;
2413 ret
= readn(fd
, ptr
, left
);
2415 /* read perf_file_section, ids are read in caller */
2416 ret
= readn(fd
, &f_attr
->ids
, sizeof(f_attr
->ids
));
2418 return ret
<= 0 ? -1 : 0;
2421 static int perf_evsel__prepare_tracepoint_event(struct perf_evsel
*evsel
,
2422 struct pevent
*pevent
)
2424 struct event_format
*event
;
2427 /* already prepared */
2428 if (evsel
->tp_format
)
2431 if (pevent
== NULL
) {
2432 pr_debug("broken or missing trace data\n");
2436 event
= pevent_find_event(pevent
, evsel
->attr
.config
);
2441 snprintf(bf
, sizeof(bf
), "%s:%s", event
->system
, event
->name
);
2442 evsel
->name
= strdup(bf
);
2443 if (evsel
->name
== NULL
)
2447 evsel
->tp_format
= event
;
2451 static int perf_evlist__prepare_tracepoint_events(struct perf_evlist
*evlist
,
2452 struct pevent
*pevent
)
2454 struct perf_evsel
*pos
;
2456 evlist__for_each(evlist
, pos
) {
2457 if (pos
->attr
.type
== PERF_TYPE_TRACEPOINT
&&
2458 perf_evsel__prepare_tracepoint_event(pos
, pevent
))
2465 int perf_session__read_header(struct perf_session
*session
)
2467 struct perf_data_file
*file
= session
->file
;
2468 struct perf_header
*header
= &session
->header
;
2469 struct perf_file_header f_header
;
2470 struct perf_file_attr f_attr
;
2472 int nr_attrs
, nr_ids
, i
, j
;
2473 int fd
= perf_data_file__fd(file
);
2475 session
->evlist
= perf_evlist__new();
2476 if (session
->evlist
== NULL
)
2479 if (perf_data_file__is_pipe(file
))
2480 return perf_header__read_pipe(session
);
2482 if (perf_file_header__read(&f_header
, header
, fd
) < 0)
2486 * Sanity check that perf.data was written cleanly; data size is
2487 * initialized to 0 and updated only if the on_exit function is run.
2488 * If data size is still 0 then the file contains only partial
2489 * information. Just warn user and process it as much as it can.
2491 if (f_header
.data
.size
== 0) {
2492 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
2493 "Was the 'perf record' command properly terminated?\n",
2497 nr_attrs
= f_header
.attrs
.size
/ f_header
.attr_size
;
2498 lseek(fd
, f_header
.attrs
.offset
, SEEK_SET
);
2500 for (i
= 0; i
< nr_attrs
; i
++) {
2501 struct perf_evsel
*evsel
;
2504 if (read_attr(fd
, header
, &f_attr
) < 0)
2507 if (header
->needs_swap
) {
2508 f_attr
.ids
.size
= bswap_64(f_attr
.ids
.size
);
2509 f_attr
.ids
.offset
= bswap_64(f_attr
.ids
.offset
);
2510 perf_event__attr_swap(&f_attr
.attr
);
2513 tmp
= lseek(fd
, 0, SEEK_CUR
);
2514 evsel
= perf_evsel__new(&f_attr
.attr
);
2517 goto out_delete_evlist
;
2519 evsel
->needs_swap
= header
->needs_swap
;
2521 * Do it before so that if perf_evsel__alloc_id fails, this
2522 * entry gets purged too at perf_evlist__delete().
2524 perf_evlist__add(session
->evlist
, evsel
);
2526 nr_ids
= f_attr
.ids
.size
/ sizeof(u64
);
2528 * We don't have the cpu and thread maps on the header, so
2529 * for allocating the perf_sample_id table we fake 1 cpu and
2530 * hattr->ids threads.
2532 if (perf_evsel__alloc_id(evsel
, 1, nr_ids
))
2533 goto out_delete_evlist
;
2535 lseek(fd
, f_attr
.ids
.offset
, SEEK_SET
);
2537 for (j
= 0; j
< nr_ids
; j
++) {
2538 if (perf_header__getbuffer64(header
, fd
, &f_id
, sizeof(f_id
)))
2541 perf_evlist__id_add(session
->evlist
, evsel
, 0, j
, f_id
);
2544 lseek(fd
, tmp
, SEEK_SET
);
2547 symbol_conf
.nr_events
= nr_attrs
;
2549 perf_header__process_sections(header
, fd
, &session
->tevent
,
2550 perf_file_section__process
);
2552 if (perf_evlist__prepare_tracepoint_events(session
->evlist
,
2553 session
->tevent
.pevent
))
2554 goto out_delete_evlist
;
2561 perf_evlist__delete(session
->evlist
);
2562 session
->evlist
= NULL
;
2566 int perf_event__synthesize_attr(struct perf_tool
*tool
,
2567 struct perf_event_attr
*attr
, u32 ids
, u64
*id
,
2568 perf_event__handler_t process
)
2570 union perf_event
*ev
;
2574 size
= sizeof(struct perf_event_attr
);
2575 size
= PERF_ALIGN(size
, sizeof(u64
));
2576 size
+= sizeof(struct perf_event_header
);
2577 size
+= ids
* sizeof(u64
);
2584 ev
->attr
.attr
= *attr
;
2585 memcpy(ev
->attr
.id
, id
, ids
* sizeof(u64
));
2587 ev
->attr
.header
.type
= PERF_RECORD_HEADER_ATTR
;
2588 ev
->attr
.header
.size
= (u16
)size
;
2590 if (ev
->attr
.header
.size
== size
)
2591 err
= process(tool
, ev
, NULL
, NULL
);
2600 int perf_event__synthesize_attrs(struct perf_tool
*tool
,
2601 struct perf_session
*session
,
2602 perf_event__handler_t process
)
2604 struct perf_evsel
*evsel
;
2607 evlist__for_each(session
->evlist
, evsel
) {
2608 err
= perf_event__synthesize_attr(tool
, &evsel
->attr
, evsel
->ids
,
2609 evsel
->id
, process
);
2611 pr_debug("failed to create perf header attribute\n");
2619 int perf_event__process_attr(struct perf_tool
*tool __maybe_unused
,
2620 union perf_event
*event
,
2621 struct perf_evlist
**pevlist
)
2624 struct perf_evsel
*evsel
;
2625 struct perf_evlist
*evlist
= *pevlist
;
2627 if (evlist
== NULL
) {
2628 *pevlist
= evlist
= perf_evlist__new();
2633 evsel
= perf_evsel__new(&event
->attr
.attr
);
2637 perf_evlist__add(evlist
, evsel
);
2639 ids
= event
->header
.size
;
2640 ids
-= (void *)&event
->attr
.id
- (void *)event
;
2641 n_ids
= ids
/ sizeof(u64
);
2643 * We don't have the cpu and thread maps on the header, so
2644 * for allocating the perf_sample_id table we fake 1 cpu and
2645 * hattr->ids threads.
2647 if (perf_evsel__alloc_id(evsel
, 1, n_ids
))
2650 for (i
= 0; i
< n_ids
; i
++) {
2651 perf_evlist__id_add(evlist
, evsel
, 0, i
, event
->attr
.id
[i
]);
2654 symbol_conf
.nr_events
= evlist
->nr_entries
;
2659 int perf_event__synthesize_tracing_data(struct perf_tool
*tool
, int fd
,
2660 struct perf_evlist
*evlist
,
2661 perf_event__handler_t process
)
2663 union perf_event ev
;
2664 struct tracing_data
*tdata
;
2665 ssize_t size
= 0, aligned_size
= 0, padding
;
2666 int err __maybe_unused
= 0;
2669 * We are going to store the size of the data followed
2670 * by the data contents. Since the fd descriptor is a pipe,
2671 * we cannot seek back to store the size of the data once
2672 * we know it. Instead we:
2674 * - write the tracing data to the temp file
2675 * - get/write the data size to pipe
2676 * - write the tracing data from the temp file
2679 tdata
= tracing_data_get(&evlist
->entries
, fd
, true);
2683 memset(&ev
, 0, sizeof(ev
));
2685 ev
.tracing_data
.header
.type
= PERF_RECORD_HEADER_TRACING_DATA
;
2687 aligned_size
= PERF_ALIGN(size
, sizeof(u64
));
2688 padding
= aligned_size
- size
;
2689 ev
.tracing_data
.header
.size
= sizeof(ev
.tracing_data
);
2690 ev
.tracing_data
.size
= aligned_size
;
2692 process(tool
, &ev
, NULL
, NULL
);
2695 * The put function will copy all the tracing data
2696 * stored in temp file to the pipe.
2698 tracing_data_put(tdata
);
2700 write_padded(fd
, NULL
, 0, padding
);
2702 return aligned_size
;
2705 int perf_event__process_tracing_data(struct perf_tool
*tool __maybe_unused
,
2706 union perf_event
*event
,
2707 struct perf_session
*session
)
2709 ssize_t size_read
, padding
, size
= event
->tracing_data
.size
;
2710 int fd
= perf_data_file__fd(session
->file
);
2711 off_t offset
= lseek(fd
, 0, SEEK_CUR
);
2714 /* setup for reading amidst mmap */
2715 lseek(fd
, offset
+ sizeof(struct tracing_data_event
),
2718 size_read
= trace_report(fd
, &session
->tevent
,
2720 padding
= PERF_ALIGN(size_read
, sizeof(u64
)) - size_read
;
2722 if (readn(fd
, buf
, padding
) < 0) {
2723 pr_err("%s: reading input file", __func__
);
2726 if (session
->repipe
) {
2727 int retw
= write(STDOUT_FILENO
, buf
, padding
);
2728 if (retw
<= 0 || retw
!= padding
) {
2729 pr_err("%s: repiping tracing data padding", __func__
);
2734 if (size_read
+ padding
!= size
) {
2735 pr_err("%s: tracing data size mismatch", __func__
);
2739 perf_evlist__prepare_tracepoint_events(session
->evlist
,
2740 session
->tevent
.pevent
);
2742 return size_read
+ padding
;
2745 int perf_event__synthesize_build_id(struct perf_tool
*tool
,
2746 struct dso
*pos
, u16 misc
,
2747 perf_event__handler_t process
,
2748 struct machine
*machine
)
2750 union perf_event ev
;
2757 memset(&ev
, 0, sizeof(ev
));
2759 len
= pos
->long_name_len
+ 1;
2760 len
= PERF_ALIGN(len
, NAME_ALIGN
);
2761 memcpy(&ev
.build_id
.build_id
, pos
->build_id
, sizeof(pos
->build_id
));
2762 ev
.build_id
.header
.type
= PERF_RECORD_HEADER_BUILD_ID
;
2763 ev
.build_id
.header
.misc
= misc
;
2764 ev
.build_id
.pid
= machine
->pid
;
2765 ev
.build_id
.header
.size
= sizeof(ev
.build_id
) + len
;
2766 memcpy(&ev
.build_id
.filename
, pos
->long_name
, pos
->long_name_len
);
2768 err
= process(tool
, &ev
, NULL
, machine
);
2773 int perf_event__process_build_id(struct perf_tool
*tool __maybe_unused
,
2774 union perf_event
*event
,
2775 struct perf_session
*session
)
2777 __event_process_build_id(&event
->build_id
,
2778 event
->build_id
.filename
,