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"
26 #include <api/fs/fs.h>
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
36 * we check for legacy (PERFFILE) format.
38 static const char *__perf_magic1
= "PERFFILE";
39 static const u64 __perf_magic2
= 0x32454c4946524550ULL
;
40 static const u64 __perf_magic2_sw
= 0x50455246494c4532ULL
;
42 #define PERF_MAGIC __perf_magic2
44 struct perf_file_attr
{
45 struct perf_event_attr attr
;
46 struct perf_file_section ids
;
49 void perf_header__set_feat(struct perf_header
*header
, int feat
)
51 set_bit(feat
, header
->adds_features
);
54 void perf_header__clear_feat(struct perf_header
*header
, int feat
)
56 clear_bit(feat
, header
->adds_features
);
59 bool perf_header__has_feat(const struct perf_header
*header
, int feat
)
61 return test_bit(feat
, header
->adds_features
);
64 static int do_write(int fd
, const void *buf
, size_t size
)
67 int ret
= write(fd
, buf
, size
);
79 int write_padded(int fd
, const void *bf
, size_t count
, size_t count_aligned
)
81 static const char zero_buf
[NAME_ALIGN
];
82 int err
= do_write(fd
, bf
, count
);
85 err
= do_write(fd
, zero_buf
, count_aligned
- count
);
90 #define string_size(str) \
91 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
93 static int do_write_string(int fd
, const char *str
)
98 olen
= strlen(str
) + 1;
99 len
= PERF_ALIGN(olen
, NAME_ALIGN
);
101 /* write len, incl. \0 */
102 ret
= do_write(fd
, &len
, sizeof(len
));
106 return write_padded(fd
, str
, olen
, len
);
109 static char *do_read_string(int fd
, struct perf_header
*ph
)
115 sz
= readn(fd
, &len
, sizeof(len
));
116 if (sz
< (ssize_t
)sizeof(len
))
126 ret
= readn(fd
, buf
, len
);
127 if (ret
== (ssize_t
)len
) {
129 * strings are padded by zeroes
130 * thus the actual strlen of buf
131 * may be less than len
140 static int write_tracing_data(int fd
, struct perf_header
*h __maybe_unused
,
141 struct perf_evlist
*evlist
)
143 return read_tracing_data(fd
, &evlist
->entries
);
147 static int write_build_id(int fd
, struct perf_header
*h
,
148 struct perf_evlist
*evlist __maybe_unused
)
150 struct perf_session
*session
;
153 session
= container_of(h
, struct perf_session
, header
);
155 if (!perf_session__read_build_ids(session
, true))
158 err
= perf_session__write_buildid_table(session
, fd
);
160 pr_debug("failed to write buildid table\n");
163 perf_session__cache_build_ids(session
);
168 static int write_hostname(int fd
, struct perf_header
*h __maybe_unused
,
169 struct perf_evlist
*evlist __maybe_unused
)
178 return do_write_string(fd
, uts
.nodename
);
181 static int write_osrelease(int fd
, struct perf_header
*h __maybe_unused
,
182 struct perf_evlist
*evlist __maybe_unused
)
191 return do_write_string(fd
, uts
.release
);
194 static int write_arch(int fd
, struct perf_header
*h __maybe_unused
,
195 struct perf_evlist
*evlist __maybe_unused
)
204 return do_write_string(fd
, uts
.machine
);
207 static int write_version(int fd
, struct perf_header
*h __maybe_unused
,
208 struct perf_evlist
*evlist __maybe_unused
)
210 return do_write_string(fd
, perf_version_string
);
213 static int __write_cpudesc(int fd
, const char *cpuinfo_proc
)
218 const char *search
= cpuinfo_proc
;
225 file
= fopen("/proc/cpuinfo", "r");
229 while (getline(&buf
, &len
, file
) > 0) {
230 ret
= strncmp(buf
, search
, strlen(search
));
242 p
= strchr(buf
, ':');
243 if (p
&& *(p
+1) == ' ' && *(p
+2))
249 /* squash extra space characters (branding string) */
256 while (*q
&& isspace(*q
))
259 while ((*r
++ = *q
++));
263 ret
= do_write_string(fd
, s
);
270 static int write_cpudesc(int fd
, struct perf_header
*h __maybe_unused
,
271 struct perf_evlist
*evlist __maybe_unused
)
274 #define CPUINFO_PROC {"model name", }
276 const char *cpuinfo_procs
[] = CPUINFO_PROC
;
279 for (i
= 0; i
< ARRAY_SIZE(cpuinfo_procs
); i
++) {
281 ret
= __write_cpudesc(fd
, cpuinfo_procs
[i
]);
289 static int write_nrcpus(int fd
, struct perf_header
*h __maybe_unused
,
290 struct perf_evlist
*evlist __maybe_unused
)
296 nr
= sysconf(_SC_NPROCESSORS_CONF
);
300 nrc
= (u32
)(nr
& UINT_MAX
);
302 nr
= sysconf(_SC_NPROCESSORS_ONLN
);
306 nra
= (u32
)(nr
& UINT_MAX
);
308 ret
= do_write(fd
, &nrc
, sizeof(nrc
));
312 return do_write(fd
, &nra
, sizeof(nra
));
315 static int write_event_desc(int fd
, struct perf_header
*h __maybe_unused
,
316 struct perf_evlist
*evlist
)
318 struct perf_evsel
*evsel
;
322 nre
= evlist
->nr_entries
;
325 * write number of events
327 ret
= do_write(fd
, &nre
, sizeof(nre
));
332 * size of perf_event_attr struct
334 sz
= (u32
)sizeof(evsel
->attr
);
335 ret
= do_write(fd
, &sz
, sizeof(sz
));
339 evlist__for_each(evlist
, evsel
) {
340 ret
= do_write(fd
, &evsel
->attr
, sz
);
344 * write number of unique id per event
345 * there is one id per instance of an event
347 * copy into an nri to be independent of the
351 ret
= do_write(fd
, &nri
, sizeof(nri
));
356 * write event string as passed on cmdline
358 ret
= do_write_string(fd
, perf_evsel__name(evsel
));
362 * write unique ids for this event
364 ret
= do_write(fd
, evsel
->id
, evsel
->ids
* sizeof(u64
));
371 static int write_cmdline(int fd
, struct perf_header
*h __maybe_unused
,
372 struct perf_evlist
*evlist __maybe_unused
)
374 char buf
[MAXPATHLEN
];
380 * actual atual path to perf binary
382 sprintf(proc
, "/proc/%d/exe", getpid());
383 ret
= readlink(proc
, buf
, sizeof(buf
));
387 /* readlink() does not add null termination */
390 /* account for binary path */
391 n
= perf_env
.nr_cmdline
+ 1;
393 ret
= do_write(fd
, &n
, sizeof(n
));
397 ret
= do_write_string(fd
, buf
);
401 for (i
= 0 ; i
< perf_env
.nr_cmdline
; i
++) {
402 ret
= do_write_string(fd
, perf_env
.cmdline_argv
[i
]);
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"
418 char **core_siblings
;
419 char **thread_siblings
;
422 static int build_cpu_topo(struct cpu_topo
*tp
, int cpu
)
425 char filename
[MAXPATHLEN
];
426 char *buf
= NULL
, *p
;
432 sprintf(filename
, CORE_SIB_FMT
, cpu
);
433 fp
= fopen(filename
, "r");
437 sret
= getline(&buf
, &len
, fp
);
442 p
= strchr(buf
, '\n');
446 for (i
= 0; i
< tp
->core_sib
; i
++) {
447 if (!strcmp(buf
, tp
->core_siblings
[i
]))
450 if (i
== tp
->core_sib
) {
451 tp
->core_siblings
[i
] = buf
;
459 sprintf(filename
, THRD_SIB_FMT
, cpu
);
460 fp
= fopen(filename
, "r");
464 if (getline(&buf
, &len
, fp
) <= 0)
467 p
= strchr(buf
, '\n');
471 for (i
= 0; i
< tp
->thread_sib
; i
++) {
472 if (!strcmp(buf
, tp
->thread_siblings
[i
]))
475 if (i
== tp
->thread_sib
) {
476 tp
->thread_siblings
[i
] = buf
;
488 static void free_cpu_topo(struct cpu_topo
*tp
)
495 for (i
= 0 ; i
< tp
->core_sib
; i
++)
496 zfree(&tp
->core_siblings
[i
]);
498 for (i
= 0 ; i
< tp
->thread_sib
; i
++)
499 zfree(&tp
->thread_siblings
[i
]);
504 static struct cpu_topo
*build_cpu_topology(void)
513 ncpus
= sysconf(_SC_NPROCESSORS_CONF
);
517 nr
= (u32
)(ncpus
& UINT_MAX
);
519 sz
= nr
* sizeof(char *);
521 addr
= calloc(1, sizeof(*tp
) + 2 * sz
);
528 tp
->core_siblings
= addr
;
530 tp
->thread_siblings
= addr
;
532 for (i
= 0; i
< nr
; i
++) {
533 ret
= build_cpu_topo(tp
, i
);
544 static int write_cpu_topology(int fd
, struct perf_header
*h __maybe_unused
,
545 struct perf_evlist
*evlist __maybe_unused
)
551 tp
= build_cpu_topology();
555 ret
= do_write(fd
, &tp
->core_sib
, sizeof(tp
->core_sib
));
559 for (i
= 0; i
< tp
->core_sib
; i
++) {
560 ret
= do_write_string(fd
, tp
->core_siblings
[i
]);
564 ret
= do_write(fd
, &tp
->thread_sib
, sizeof(tp
->thread_sib
));
568 for (i
= 0; i
< tp
->thread_sib
; i
++) {
569 ret
= do_write_string(fd
, tp
->thread_siblings
[i
]);
574 ret
= perf_env__read_cpu_topology_map(&perf_env
);
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
));
583 ret
= do_write(fd
, &perf_env
.cpu
[j
].socket_id
,
584 sizeof(perf_env
.cpu
[j
].socket_id
));
595 static int write_total_mem(int fd
, struct perf_header
*h __maybe_unused
,
596 struct perf_evlist
*evlist __maybe_unused
)
604 fp
= fopen("/proc/meminfo", "r");
608 while (getline(&buf
, &len
, fp
) > 0) {
609 ret
= strncmp(buf
, "MemTotal:", 9);
614 n
= sscanf(buf
, "%*s %"PRIu64
, &mem
);
616 ret
= do_write(fd
, &mem
, sizeof(mem
));
624 static int write_topo_node(int fd
, int node
)
626 char str
[MAXPATHLEN
];
628 char *buf
= NULL
, *p
;
631 u64 mem_total
, mem_free
, mem
;
634 sprintf(str
, "/sys/devices/system/node/node%d/meminfo", node
);
635 fp
= fopen(str
, "r");
639 while (getline(&buf
, &len
, fp
) > 0) {
640 /* skip over invalid lines */
641 if (!strchr(buf
, ':'))
643 if (sscanf(buf
, "%*s %*d %31s %"PRIu64
, field
, &mem
) != 2)
645 if (!strcmp(field
, "MemTotal:"))
647 if (!strcmp(field
, "MemFree:"))
654 ret
= do_write(fd
, &mem_total
, sizeof(u64
));
658 ret
= do_write(fd
, &mem_free
, sizeof(u64
));
663 sprintf(str
, "/sys/devices/system/node/node%d/cpulist", node
);
665 fp
= fopen(str
, "r");
669 if (getline(&buf
, &len
, fp
) <= 0)
672 p
= strchr(buf
, '\n');
676 ret
= do_write_string(fd
, buf
);
684 static int write_numa_topology(int fd
, struct perf_header
*h __maybe_unused
,
685 struct perf_evlist
*evlist __maybe_unused
)
690 struct cpu_map
*node_map
= NULL
;
695 fp
= fopen("/sys/devices/system/node/online", "r");
699 if (getline(&buf
, &len
, fp
) <= 0)
702 c
= strchr(buf
, '\n');
706 node_map
= cpu_map__new(buf
);
710 nr
= (u32
)node_map
->nr
;
712 ret
= do_write(fd
, &nr
, sizeof(nr
));
716 for (i
= 0; i
< nr
; i
++) {
717 j
= (u32
)node_map
->map
[i
];
718 ret
= do_write(fd
, &j
, sizeof(j
));
722 ret
= write_topo_node(fd
, i
);
729 cpu_map__put(node_map
);
736 * struct pmu_mappings {
745 static int write_pmu_mappings(int fd
, struct perf_header
*h __maybe_unused
,
746 struct perf_evlist
*evlist __maybe_unused
)
748 struct perf_pmu
*pmu
= NULL
;
749 off_t offset
= lseek(fd
, 0, SEEK_CUR
);
753 /* write real pmu_num later */
754 ret
= do_write(fd
, &pmu_num
, sizeof(pmu_num
));
758 while ((pmu
= perf_pmu__scan(pmu
))) {
763 ret
= do_write(fd
, &pmu
->type
, sizeof(pmu
->type
));
767 ret
= do_write_string(fd
, pmu
->name
);
772 if (pwrite(fd
, &pmu_num
, sizeof(pmu_num
), offset
) != sizeof(pmu_num
)) {
774 lseek(fd
, offset
, SEEK_SET
);
784 * struct group_descs {
786 * struct group_desc {
793 static int write_group_desc(int fd
, struct perf_header
*h __maybe_unused
,
794 struct perf_evlist
*evlist
)
796 u32 nr_groups
= evlist
->nr_groups
;
797 struct perf_evsel
*evsel
;
800 ret
= do_write(fd
, &nr_groups
, sizeof(nr_groups
));
804 evlist__for_each(evlist
, evsel
) {
805 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
;
811 ret
= do_write_string(fd
, name
);
815 ret
= do_write(fd
, &leader_idx
, sizeof(leader_idx
));
819 ret
= do_write(fd
, &nr_members
, sizeof(nr_members
));
828 * default get_cpuid(): nothing gets recorded
829 * actual implementation must be in arch/$(ARCH)/util/header.c
831 int __attribute__ ((weak
)) get_cpuid(char *buffer __maybe_unused
,
832 size_t sz __maybe_unused
)
837 static int write_cpuid(int fd
, struct perf_header
*h __maybe_unused
,
838 struct perf_evlist
*evlist __maybe_unused
)
843 ret
= get_cpuid(buffer
, sizeof(buffer
));
849 return do_write_string(fd
, buffer
);
852 static int write_branch_stack(int fd __maybe_unused
,
853 struct perf_header
*h __maybe_unused
,
854 struct perf_evlist
*evlist __maybe_unused
)
859 static int write_auxtrace(int fd
, struct perf_header
*h
,
860 struct perf_evlist
*evlist __maybe_unused
)
862 struct perf_session
*session
;
865 session
= container_of(h
, struct perf_session
, header
);
867 err
= auxtrace_index__write(fd
, &session
->auxtrace_index
);
869 pr_err("Failed to write auxtrace index\n");
873 static int cpu_cache_level__sort(const void *a
, const void *b
)
875 struct cpu_cache_level
*cache_a
= (struct cpu_cache_level
*)a
;
876 struct cpu_cache_level
*cache_b
= (struct cpu_cache_level
*)b
;
878 return cache_a
->level
- cache_b
->level
;
881 static bool cpu_cache_level__cmp(struct cpu_cache_level
*a
, struct cpu_cache_level
*b
)
883 if (a
->level
!= b
->level
)
886 if (a
->line_size
!= b
->line_size
)
889 if (a
->sets
!= b
->sets
)
892 if (a
->ways
!= b
->ways
)
895 if (strcmp(a
->type
, b
->type
))
898 if (strcmp(a
->size
, b
->size
))
901 if (strcmp(a
->map
, b
->map
))
907 static int cpu_cache_level__read(struct cpu_cache_level
*cache
, u32 cpu
, u16 level
)
909 char path
[PATH_MAX
], file
[PATH_MAX
];
913 scnprintf(path
, PATH_MAX
, "devices/system/cpu/cpu%d/cache/index%d/", cpu
, level
);
914 scnprintf(file
, PATH_MAX
, "%s/%s", sysfs__mountpoint(), path
);
919 scnprintf(file
, PATH_MAX
, "%s/level", path
);
920 if (sysfs__read_int(file
, (int *) &cache
->level
))
923 scnprintf(file
, PATH_MAX
, "%s/coherency_line_size", path
);
924 if (sysfs__read_int(file
, (int *) &cache
->line_size
))
927 scnprintf(file
, PATH_MAX
, "%s/number_of_sets", path
);
928 if (sysfs__read_int(file
, (int *) &cache
->sets
))
931 scnprintf(file
, PATH_MAX
, "%s/ways_of_associativity", path
);
932 if (sysfs__read_int(file
, (int *) &cache
->ways
))
935 scnprintf(file
, PATH_MAX
, "%s/type", path
);
936 if (sysfs__read_str(file
, &cache
->type
, &len
))
939 cache
->type
[len
] = 0;
940 cache
->type
= rtrim(cache
->type
);
942 scnprintf(file
, PATH_MAX
, "%s/size", path
);
943 if (sysfs__read_str(file
, &cache
->size
, &len
)) {
948 cache
->size
[len
] = 0;
949 cache
->size
= rtrim(cache
->size
);
951 scnprintf(file
, PATH_MAX
, "%s/shared_cpu_list", path
);
952 if (sysfs__read_str(file
, &cache
->map
, &len
)) {
959 cache
->map
= rtrim(cache
->map
);
963 static void cpu_cache_level__fprintf(FILE *out
, struct cpu_cache_level
*c
)
965 fprintf(out
, "L%d %-15s %8s [%s]\n", c
->level
, c
->type
, c
->size
, c
->map
);
968 static int build_caches(struct cpu_cache_level caches
[], u32 size
, u32
*cntp
)
975 ncpus
= sysconf(_SC_NPROCESSORS_CONF
);
979 nr
= (u32
)(ncpus
& UINT_MAX
);
981 for (cpu
= 0; cpu
< nr
; cpu
++) {
982 for (level
= 0; level
< 10; level
++) {
983 struct cpu_cache_level c
;
986 err
= cpu_cache_level__read(&c
, cpu
, level
);
993 for (i
= 0; i
< cnt
; i
++) {
994 if (cpu_cache_level__cmp(&c
, &caches
[i
]))
1001 cpu_cache_level__free(&c
);
1003 if (WARN_ONCE(cnt
== size
, "way too many cpu caches.."))
1012 #define MAX_CACHES 2000
1014 static int write_cache(int fd
, struct perf_header
*h __maybe_unused
,
1015 struct perf_evlist
*evlist __maybe_unused
)
1017 struct cpu_cache_level caches
[MAX_CACHES
];
1018 u32 cnt
= 0, i
, version
= 1;
1021 ret
= build_caches(caches
, MAX_CACHES
, &cnt
);
1025 qsort(&caches
, cnt
, sizeof(struct cpu_cache_level
), cpu_cache_level__sort
);
1027 ret
= do_write(fd
, &version
, sizeof(u32
));
1031 ret
= do_write(fd
, &cnt
, sizeof(u32
));
1035 for (i
= 0; i
< cnt
; i
++) {
1036 struct cpu_cache_level
*c
= &caches
[i
];
1039 ret = do_write(fd, &c->v, sizeof(u32)); \
1050 ret = do_write_string(fd, (const char *) c->v); \
1061 for (i
= 0; i
< cnt
; i
++)
1062 cpu_cache_level__free(&caches
[i
]);
1066 static int write_stat(int fd __maybe_unused
,
1067 struct perf_header
*h __maybe_unused
,
1068 struct perf_evlist
*evlist __maybe_unused
)
1073 static void print_hostname(struct perf_header
*ph
, int fd __maybe_unused
,
1076 fprintf(fp
, "# hostname : %s\n", ph
->env
.hostname
);
1079 static void print_osrelease(struct perf_header
*ph
, int fd __maybe_unused
,
1082 fprintf(fp
, "# os release : %s\n", ph
->env
.os_release
);
1085 static void print_arch(struct perf_header
*ph
, int fd __maybe_unused
, FILE *fp
)
1087 fprintf(fp
, "# arch : %s\n", ph
->env
.arch
);
1090 static void print_cpudesc(struct perf_header
*ph
, int fd __maybe_unused
,
1093 fprintf(fp
, "# cpudesc : %s\n", ph
->env
.cpu_desc
);
1096 static void print_nrcpus(struct perf_header
*ph
, int fd __maybe_unused
,
1099 fprintf(fp
, "# nrcpus online : %u\n", ph
->env
.nr_cpus_online
);
1100 fprintf(fp
, "# nrcpus avail : %u\n", ph
->env
.nr_cpus_avail
);
1103 static void print_version(struct perf_header
*ph
, int fd __maybe_unused
,
1106 fprintf(fp
, "# perf version : %s\n", ph
->env
.version
);
1109 static void print_cmdline(struct perf_header
*ph
, int fd __maybe_unused
,
1114 nr
= ph
->env
.nr_cmdline
;
1116 fprintf(fp
, "# cmdline : ");
1118 for (i
= 0; i
< nr
; i
++)
1119 fprintf(fp
, "%s ", ph
->env
.cmdline_argv
[i
]);
1123 static void print_cpu_topology(struct perf_header
*ph
, int fd __maybe_unused
,
1128 int cpu_nr
= ph
->env
.nr_cpus_online
;
1130 nr
= ph
->env
.nr_sibling_cores
;
1131 str
= ph
->env
.sibling_cores
;
1133 for (i
= 0; i
< nr
; i
++) {
1134 fprintf(fp
, "# sibling cores : %s\n", str
);
1135 str
+= strlen(str
) + 1;
1138 nr
= ph
->env
.nr_sibling_threads
;
1139 str
= ph
->env
.sibling_threads
;
1141 for (i
= 0; i
< nr
; i
++) {
1142 fprintf(fp
, "# sibling threads : %s\n", str
);
1143 str
+= strlen(str
) + 1;
1146 if (ph
->env
.cpu
!= NULL
) {
1147 for (i
= 0; i
< cpu_nr
; i
++)
1148 fprintf(fp
, "# CPU %d: Core ID %d, Socket ID %d\n", i
,
1149 ph
->env
.cpu
[i
].core_id
, ph
->env
.cpu
[i
].socket_id
);
1151 fprintf(fp
, "# Core ID and Socket ID information is not available\n");
1154 static void free_event_desc(struct perf_evsel
*events
)
1156 struct perf_evsel
*evsel
;
1161 for (evsel
= events
; evsel
->attr
.size
; evsel
++) {
1162 zfree(&evsel
->name
);
1169 static struct perf_evsel
*
1170 read_event_desc(struct perf_header
*ph
, int fd
)
1172 struct perf_evsel
*evsel
, *events
= NULL
;
1175 u32 nre
, sz
, nr
, i
, j
;
1179 /* number of events */
1180 ret
= readn(fd
, &nre
, sizeof(nre
));
1181 if (ret
!= (ssize_t
)sizeof(nre
))
1185 nre
= bswap_32(nre
);
1187 ret
= readn(fd
, &sz
, sizeof(sz
));
1188 if (ret
!= (ssize_t
)sizeof(sz
))
1194 /* buffer to hold on file attr struct */
1199 /* the last event terminates with evsel->attr.size == 0: */
1200 events
= calloc(nre
+ 1, sizeof(*events
));
1204 msz
= sizeof(evsel
->attr
);
1208 for (i
= 0, evsel
= events
; i
< nre
; evsel
++, i
++) {
1212 * must read entire on-file attr struct to
1213 * sync up with layout.
1215 ret
= readn(fd
, buf
, sz
);
1216 if (ret
!= (ssize_t
)sz
)
1220 perf_event__attr_swap(buf
);
1222 memcpy(&evsel
->attr
, buf
, msz
);
1224 ret
= readn(fd
, &nr
, sizeof(nr
));
1225 if (ret
!= (ssize_t
)sizeof(nr
))
1228 if (ph
->needs_swap
) {
1230 evsel
->needs_swap
= true;
1233 evsel
->name
= do_read_string(fd
, ph
);
1238 id
= calloc(nr
, sizeof(*id
));
1244 for (j
= 0 ; j
< nr
; j
++) {
1245 ret
= readn(fd
, id
, sizeof(*id
));
1246 if (ret
!= (ssize_t
)sizeof(*id
))
1249 *id
= bswap_64(*id
);
1257 free_event_desc(events
);
1262 static int __desc_attr__fprintf(FILE *fp
, const char *name
, const char *val
,
1263 void *priv
__attribute__((unused
)))
1265 return fprintf(fp
, ", %s = %s", name
, val
);
1268 static void print_event_desc(struct perf_header
*ph
, int fd
, FILE *fp
)
1270 struct perf_evsel
*evsel
, *events
= read_event_desc(ph
, fd
);
1275 fprintf(fp
, "# event desc: not available or unable to read\n");
1279 for (evsel
= events
; evsel
->attr
.size
; evsel
++) {
1280 fprintf(fp
, "# event : name = %s, ", evsel
->name
);
1283 fprintf(fp
, ", id = {");
1284 for (j
= 0, id
= evsel
->id
; j
< evsel
->ids
; j
++, id
++) {
1287 fprintf(fp
, " %"PRIu64
, *id
);
1292 perf_event_attr__fprintf(fp
, &evsel
->attr
, __desc_attr__fprintf
, NULL
);
1297 free_event_desc(events
);
1300 static void print_total_mem(struct perf_header
*ph
, int fd __maybe_unused
,
1303 fprintf(fp
, "# total memory : %Lu kB\n", ph
->env
.total_mem
);
1306 static void print_numa_topology(struct perf_header
*ph
, int fd __maybe_unused
,
1311 uint64_t mem_total
, mem_free
;
1314 nr
= ph
->env
.nr_numa_nodes
;
1315 str
= ph
->env
.numa_nodes
;
1317 for (i
= 0; i
< nr
; i
++) {
1319 c
= strtoul(str
, &tmp
, 0);
1324 mem_total
= strtoull(str
, &tmp
, 0);
1329 mem_free
= strtoull(str
, &tmp
, 0);
1333 fprintf(fp
, "# node%u meminfo : total = %"PRIu64
" kB,"
1334 " free = %"PRIu64
" kB\n",
1335 c
, mem_total
, mem_free
);
1338 fprintf(fp
, "# node%u cpu list : %s\n", c
, str
);
1340 str
+= strlen(str
) + 1;
1344 fprintf(fp
, "# numa topology : not available\n");
1347 static void print_cpuid(struct perf_header
*ph
, int fd __maybe_unused
, FILE *fp
)
1349 fprintf(fp
, "# cpuid : %s\n", ph
->env
.cpuid
);
1352 static void print_branch_stack(struct perf_header
*ph __maybe_unused
,
1353 int fd __maybe_unused
, FILE *fp
)
1355 fprintf(fp
, "# contains samples with branch stack\n");
1358 static void print_auxtrace(struct perf_header
*ph __maybe_unused
,
1359 int fd __maybe_unused
, FILE *fp
)
1361 fprintf(fp
, "# contains AUX area data (e.g. instruction trace)\n");
1364 static void print_stat(struct perf_header
*ph __maybe_unused
,
1365 int fd __maybe_unused
, FILE *fp
)
1367 fprintf(fp
, "# contains stat data\n");
1370 static void print_cache(struct perf_header
*ph __maybe_unused
,
1371 int fd __maybe_unused
, FILE *fp __maybe_unused
)
1375 fprintf(fp
, "# CPU cache info:\n");
1376 for (i
= 0; i
< ph
->env
.caches_cnt
; i
++) {
1378 cpu_cache_level__fprintf(fp
, &ph
->env
.caches
[i
]);
1382 static void print_pmu_mappings(struct perf_header
*ph
, int fd __maybe_unused
,
1385 const char *delimiter
= "# pmu mappings: ";
1390 pmu_num
= ph
->env
.nr_pmu_mappings
;
1392 fprintf(fp
, "# pmu mappings: not available\n");
1396 str
= ph
->env
.pmu_mappings
;
1399 type
= strtoul(str
, &tmp
, 0);
1404 fprintf(fp
, "%s%s = %" PRIu32
, delimiter
, str
, type
);
1407 str
+= strlen(str
) + 1;
1416 fprintf(fp
, "# pmu mappings: unable to read\n");
1419 static void print_group_desc(struct perf_header
*ph
, int fd __maybe_unused
,
1422 struct perf_session
*session
;
1423 struct perf_evsel
*evsel
;
1426 session
= container_of(ph
, struct perf_session
, header
);
1428 evlist__for_each(session
->evlist
, evsel
) {
1429 if (perf_evsel__is_group_leader(evsel
) &&
1430 evsel
->nr_members
> 1) {
1431 fprintf(fp
, "# group: %s{%s", evsel
->group_name
?: "",
1432 perf_evsel__name(evsel
));
1434 nr
= evsel
->nr_members
- 1;
1436 fprintf(fp
, ",%s", perf_evsel__name(evsel
));
1444 static int __event_process_build_id(struct build_id_event
*bev
,
1446 struct perf_session
*session
)
1449 struct machine
*machine
;
1452 enum dso_kernel_type dso_type
;
1454 machine
= perf_session__findnew_machine(session
, bev
->pid
);
1458 cpumode
= bev
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
;
1461 case PERF_RECORD_MISC_KERNEL
:
1462 dso_type
= DSO_TYPE_KERNEL
;
1464 case PERF_RECORD_MISC_GUEST_KERNEL
:
1465 dso_type
= DSO_TYPE_GUEST_KERNEL
;
1467 case PERF_RECORD_MISC_USER
:
1468 case PERF_RECORD_MISC_GUEST_USER
:
1469 dso_type
= DSO_TYPE_USER
;
1475 dso
= machine__findnew_dso(machine
, filename
);
1477 char sbuild_id
[BUILD_ID_SIZE
* 2 + 1];
1479 dso__set_build_id(dso
, &bev
->build_id
);
1481 if (!is_kernel_module(filename
, cpumode
))
1482 dso
->kernel
= dso_type
;
1484 build_id__sprintf(dso
->build_id
, sizeof(dso
->build_id
),
1486 pr_debug("build id event received for %s: %s\n",
1487 dso
->long_name
, sbuild_id
);
1496 static int perf_header__read_build_ids_abi_quirk(struct perf_header
*header
,
1497 int input
, u64 offset
, u64 size
)
1499 struct perf_session
*session
= container_of(header
, struct perf_session
, header
);
1501 struct perf_event_header header
;
1502 u8 build_id
[PERF_ALIGN(BUILD_ID_SIZE
, sizeof(u64
))];
1505 struct build_id_event bev
;
1506 char filename
[PATH_MAX
];
1507 u64 limit
= offset
+ size
;
1509 while (offset
< limit
) {
1512 if (readn(input
, &old_bev
, sizeof(old_bev
)) != sizeof(old_bev
))
1515 if (header
->needs_swap
)
1516 perf_event_header__bswap(&old_bev
.header
);
1518 len
= old_bev
.header
.size
- sizeof(old_bev
);
1519 if (readn(input
, filename
, len
) != len
)
1522 bev
.header
= old_bev
.header
;
1525 * As the pid is the missing value, we need to fill
1526 * it properly. The header.misc value give us nice hint.
1528 bev
.pid
= HOST_KERNEL_ID
;
1529 if (bev
.header
.misc
== PERF_RECORD_MISC_GUEST_USER
||
1530 bev
.header
.misc
== PERF_RECORD_MISC_GUEST_KERNEL
)
1531 bev
.pid
= DEFAULT_GUEST_KERNEL_ID
;
1533 memcpy(bev
.build_id
, old_bev
.build_id
, sizeof(bev
.build_id
));
1534 __event_process_build_id(&bev
, filename
, session
);
1536 offset
+= bev
.header
.size
;
1542 static int perf_header__read_build_ids(struct perf_header
*header
,
1543 int input
, u64 offset
, u64 size
)
1545 struct perf_session
*session
= container_of(header
, struct perf_session
, header
);
1546 struct build_id_event bev
;
1547 char filename
[PATH_MAX
];
1548 u64 limit
= offset
+ size
, orig_offset
= offset
;
1551 while (offset
< limit
) {
1554 if (readn(input
, &bev
, sizeof(bev
)) != sizeof(bev
))
1557 if (header
->needs_swap
)
1558 perf_event_header__bswap(&bev
.header
);
1560 len
= bev
.header
.size
- sizeof(bev
);
1561 if (readn(input
, filename
, len
) != len
)
1564 * The a1645ce1 changeset:
1566 * "perf: 'perf kvm' tool for monitoring guest performance from host"
1568 * Added a field to struct build_id_event that broke the file
1571 * Since the kernel build-id is the first entry, process the
1572 * table using the old format if the well known
1573 * '[kernel.kallsyms]' string for the kernel build-id has the
1574 * first 4 characters chopped off (where the pid_t sits).
1576 if (memcmp(filename
, "nel.kallsyms]", 13) == 0) {
1577 if (lseek(input
, orig_offset
, SEEK_SET
) == (off_t
)-1)
1579 return perf_header__read_build_ids_abi_quirk(header
, input
, offset
, size
);
1582 __event_process_build_id(&bev
, filename
, session
);
1584 offset
+= bev
.header
.size
;
1591 static int process_tracing_data(struct perf_file_section
*section __maybe_unused
,
1592 struct perf_header
*ph __maybe_unused
,
1595 ssize_t ret
= trace_report(fd
, data
, false);
1596 return ret
< 0 ? -1 : 0;
1599 static int process_build_id(struct perf_file_section
*section
,
1600 struct perf_header
*ph
, int fd
,
1601 void *data __maybe_unused
)
1603 if (perf_header__read_build_ids(ph
, fd
, section
->offset
, section
->size
))
1604 pr_debug("Failed to read buildids, continuing...\n");
1608 static int process_hostname(struct perf_file_section
*section __maybe_unused
,
1609 struct perf_header
*ph
, int fd
,
1610 void *data __maybe_unused
)
1612 ph
->env
.hostname
= do_read_string(fd
, ph
);
1613 return ph
->env
.hostname
? 0 : -ENOMEM
;
1616 static int process_osrelease(struct perf_file_section
*section __maybe_unused
,
1617 struct perf_header
*ph
, int fd
,
1618 void *data __maybe_unused
)
1620 ph
->env
.os_release
= do_read_string(fd
, ph
);
1621 return ph
->env
.os_release
? 0 : -ENOMEM
;
1624 static int process_version(struct perf_file_section
*section __maybe_unused
,
1625 struct perf_header
*ph
, int fd
,
1626 void *data __maybe_unused
)
1628 ph
->env
.version
= do_read_string(fd
, ph
);
1629 return ph
->env
.version
? 0 : -ENOMEM
;
1632 static int process_arch(struct perf_file_section
*section __maybe_unused
,
1633 struct perf_header
*ph
, int fd
,
1634 void *data __maybe_unused
)
1636 ph
->env
.arch
= do_read_string(fd
, ph
);
1637 return ph
->env
.arch
? 0 : -ENOMEM
;
1640 static int process_nrcpus(struct perf_file_section
*section __maybe_unused
,
1641 struct perf_header
*ph
, int fd
,
1642 void *data __maybe_unused
)
1647 ret
= readn(fd
, &nr
, sizeof(nr
));
1648 if (ret
!= sizeof(nr
))
1654 ph
->env
.nr_cpus_avail
= nr
;
1656 ret
= readn(fd
, &nr
, sizeof(nr
));
1657 if (ret
!= sizeof(nr
))
1663 ph
->env
.nr_cpus_online
= nr
;
1667 static int process_cpudesc(struct perf_file_section
*section __maybe_unused
,
1668 struct perf_header
*ph
, int fd
,
1669 void *data __maybe_unused
)
1671 ph
->env
.cpu_desc
= do_read_string(fd
, ph
);
1672 return ph
->env
.cpu_desc
? 0 : -ENOMEM
;
1675 static int process_cpuid(struct perf_file_section
*section __maybe_unused
,
1676 struct perf_header
*ph
, int fd
,
1677 void *data __maybe_unused
)
1679 ph
->env
.cpuid
= do_read_string(fd
, ph
);
1680 return ph
->env
.cpuid
? 0 : -ENOMEM
;
1683 static int process_total_mem(struct perf_file_section
*section __maybe_unused
,
1684 struct perf_header
*ph
, int fd
,
1685 void *data __maybe_unused
)
1690 ret
= readn(fd
, &mem
, sizeof(mem
));
1691 if (ret
!= sizeof(mem
))
1695 mem
= bswap_64(mem
);
1697 ph
->env
.total_mem
= mem
;
1701 static struct perf_evsel
*
1702 perf_evlist__find_by_index(struct perf_evlist
*evlist
, int idx
)
1704 struct perf_evsel
*evsel
;
1706 evlist__for_each(evlist
, evsel
) {
1707 if (evsel
->idx
== idx
)
1715 perf_evlist__set_event_name(struct perf_evlist
*evlist
,
1716 struct perf_evsel
*event
)
1718 struct perf_evsel
*evsel
;
1723 evsel
= perf_evlist__find_by_index(evlist
, event
->idx
);
1730 evsel
->name
= strdup(event
->name
);
1734 process_event_desc(struct perf_file_section
*section __maybe_unused
,
1735 struct perf_header
*header
, int fd
,
1736 void *data __maybe_unused
)
1738 struct perf_session
*session
;
1739 struct perf_evsel
*evsel
, *events
= read_event_desc(header
, fd
);
1744 session
= container_of(header
, struct perf_session
, header
);
1745 for (evsel
= events
; evsel
->attr
.size
; evsel
++)
1746 perf_evlist__set_event_name(session
->evlist
, evsel
);
1748 free_event_desc(events
);
1753 static int process_cmdline(struct perf_file_section
*section
,
1754 struct perf_header
*ph
, int fd
,
1755 void *data __maybe_unused
)
1758 char *str
, *cmdline
= NULL
, **argv
= NULL
;
1761 ret
= readn(fd
, &nr
, sizeof(nr
));
1762 if (ret
!= sizeof(nr
))
1768 ph
->env
.nr_cmdline
= nr
;
1770 cmdline
= zalloc(section
->size
+ nr
+ 1);
1774 argv
= zalloc(sizeof(char *) * (nr
+ 1));
1778 for (i
= 0; i
< nr
; i
++) {
1779 str
= do_read_string(fd
, ph
);
1783 argv
[i
] = cmdline
+ len
;
1784 memcpy(argv
[i
], str
, strlen(str
) + 1);
1785 len
+= strlen(str
) + 1;
1788 ph
->env
.cmdline
= cmdline
;
1789 ph
->env
.cmdline_argv
= (const char **) argv
;
1798 static int process_cpu_topology(struct perf_file_section
*section
,
1799 struct perf_header
*ph
, int fd
,
1800 void *data __maybe_unused
)
1806 int cpu_nr
= ph
->env
.nr_cpus_online
;
1809 ph
->env
.cpu
= calloc(cpu_nr
, sizeof(*ph
->env
.cpu
));
1813 ret
= readn(fd
, &nr
, sizeof(nr
));
1814 if (ret
!= sizeof(nr
))
1820 ph
->env
.nr_sibling_cores
= nr
;
1821 size
+= sizeof(u32
);
1822 strbuf_init(&sb
, 128);
1824 for (i
= 0; i
< nr
; i
++) {
1825 str
= do_read_string(fd
, ph
);
1829 /* include a NULL character at the end */
1830 strbuf_add(&sb
, str
, strlen(str
) + 1);
1831 size
+= string_size(str
);
1834 ph
->env
.sibling_cores
= strbuf_detach(&sb
, NULL
);
1836 ret
= readn(fd
, &nr
, sizeof(nr
));
1837 if (ret
!= sizeof(nr
))
1843 ph
->env
.nr_sibling_threads
= nr
;
1844 size
+= sizeof(u32
);
1846 for (i
= 0; i
< nr
; i
++) {
1847 str
= do_read_string(fd
, ph
);
1851 /* include a NULL character at the end */
1852 strbuf_add(&sb
, str
, strlen(str
) + 1);
1853 size
+= string_size(str
);
1856 ph
->env
.sibling_threads
= strbuf_detach(&sb
, NULL
);
1859 * The header may be from old perf,
1860 * which doesn't include core id and socket id information.
1862 if (section
->size
<= size
) {
1863 zfree(&ph
->env
.cpu
);
1867 for (i
= 0; i
< (u32
)cpu_nr
; i
++) {
1868 ret
= readn(fd
, &nr
, sizeof(nr
));
1869 if (ret
!= sizeof(nr
))
1875 ph
->env
.cpu
[i
].core_id
= nr
;
1877 ret
= readn(fd
, &nr
, sizeof(nr
));
1878 if (ret
!= sizeof(nr
))
1884 if (nr
> (u32
)cpu_nr
) {
1885 pr_debug("socket_id number is too big."
1886 "You may need to upgrade the perf tool.\n");
1890 ph
->env
.cpu
[i
].socket_id
= nr
;
1896 strbuf_release(&sb
);
1898 zfree(&ph
->env
.cpu
);
1902 static int process_numa_topology(struct perf_file_section
*section __maybe_unused
,
1903 struct perf_header
*ph
, int fd
,
1904 void *data __maybe_unused
)
1909 uint64_t mem_total
, mem_free
;
1913 ret
= readn(fd
, &nr
, sizeof(nr
));
1914 if (ret
!= sizeof(nr
))
1920 ph
->env
.nr_numa_nodes
= nr
;
1921 strbuf_init(&sb
, 256);
1923 for (i
= 0; i
< nr
; i
++) {
1925 ret
= readn(fd
, &node
, sizeof(node
));
1926 if (ret
!= sizeof(node
))
1929 ret
= readn(fd
, &mem_total
, sizeof(u64
));
1930 if (ret
!= sizeof(u64
))
1933 ret
= readn(fd
, &mem_free
, sizeof(u64
));
1934 if (ret
!= sizeof(u64
))
1937 if (ph
->needs_swap
) {
1938 node
= bswap_32(node
);
1939 mem_total
= bswap_64(mem_total
);
1940 mem_free
= bswap_64(mem_free
);
1943 strbuf_addf(&sb
, "%u:%"PRIu64
":%"PRIu64
":",
1944 node
, mem_total
, mem_free
);
1946 str
= do_read_string(fd
, ph
);
1950 /* include a NULL character at the end */
1951 strbuf_add(&sb
, str
, strlen(str
) + 1);
1954 ph
->env
.numa_nodes
= strbuf_detach(&sb
, NULL
);
1958 strbuf_release(&sb
);
1962 static int process_pmu_mappings(struct perf_file_section
*section __maybe_unused
,
1963 struct perf_header
*ph
, int fd
,
1964 void *data __maybe_unused
)
1972 ret
= readn(fd
, &pmu_num
, sizeof(pmu_num
));
1973 if (ret
!= sizeof(pmu_num
))
1977 pmu_num
= bswap_32(pmu_num
);
1980 pr_debug("pmu mappings not available\n");
1984 ph
->env
.nr_pmu_mappings
= pmu_num
;
1985 strbuf_init(&sb
, 128);
1988 if (readn(fd
, &type
, sizeof(type
)) != sizeof(type
))
1991 type
= bswap_32(type
);
1993 name
= do_read_string(fd
, ph
);
1997 strbuf_addf(&sb
, "%u:%s", type
, name
);
1998 /* include a NULL character at the end */
1999 strbuf_add(&sb
, "", 1);
2001 if (!strcmp(name
, "msr"))
2002 ph
->env
.msr_pmu_type
= type
;
2007 ph
->env
.pmu_mappings
= strbuf_detach(&sb
, NULL
);
2011 strbuf_release(&sb
);
2015 static int process_group_desc(struct perf_file_section
*section __maybe_unused
,
2016 struct perf_header
*ph
, int fd
,
2017 void *data __maybe_unused
)
2020 u32 i
, nr
, nr_groups
;
2021 struct perf_session
*session
;
2022 struct perf_evsel
*evsel
, *leader
= NULL
;
2029 if (readn(fd
, &nr_groups
, sizeof(nr_groups
)) != sizeof(nr_groups
))
2033 nr_groups
= bswap_32(nr_groups
);
2035 ph
->env
.nr_groups
= nr_groups
;
2037 pr_debug("group desc not available\n");
2041 desc
= calloc(nr_groups
, sizeof(*desc
));
2045 for (i
= 0; i
< nr_groups
; i
++) {
2046 desc
[i
].name
= do_read_string(fd
, ph
);
2050 if (readn(fd
, &desc
[i
].leader_idx
, sizeof(u32
)) != sizeof(u32
))
2053 if (readn(fd
, &desc
[i
].nr_members
, sizeof(u32
)) != sizeof(u32
))
2056 if (ph
->needs_swap
) {
2057 desc
[i
].leader_idx
= bswap_32(desc
[i
].leader_idx
);
2058 desc
[i
].nr_members
= bswap_32(desc
[i
].nr_members
);
2063 * Rebuild group relationship based on the group_desc
2065 session
= container_of(ph
, struct perf_session
, header
);
2066 session
->evlist
->nr_groups
= nr_groups
;
2069 evlist__for_each(session
->evlist
, evsel
) {
2070 if (evsel
->idx
== (int) desc
[i
].leader_idx
) {
2071 evsel
->leader
= evsel
;
2072 /* {anon_group} is a dummy name */
2073 if (strcmp(desc
[i
].name
, "{anon_group}")) {
2074 evsel
->group_name
= desc
[i
].name
;
2075 desc
[i
].name
= NULL
;
2077 evsel
->nr_members
= desc
[i
].nr_members
;
2079 if (i
>= nr_groups
|| nr
> 0) {
2080 pr_debug("invalid group desc\n");
2085 nr
= evsel
->nr_members
- 1;
2088 /* This is a group member */
2089 evsel
->leader
= leader
;
2095 if (i
!= nr_groups
|| nr
!= 0) {
2096 pr_debug("invalid group desc\n");
2102 for (i
= 0; i
< nr_groups
; i
++)
2103 zfree(&desc
[i
].name
);
2109 static int process_auxtrace(struct perf_file_section
*section
,
2110 struct perf_header
*ph
, int fd
,
2111 void *data __maybe_unused
)
2113 struct perf_session
*session
;
2116 session
= container_of(ph
, struct perf_session
, header
);
2118 err
= auxtrace_index__process(fd
, section
->size
, session
,
2121 pr_err("Failed to process auxtrace index\n");
2125 static int process_cache(struct perf_file_section
*section __maybe_unused
,
2126 struct perf_header
*ph __maybe_unused
, int fd __maybe_unused
,
2127 void *data __maybe_unused
)
2129 struct cpu_cache_level
*caches
;
2130 u32 cnt
, i
, version
;
2132 if (readn(fd
, &version
, sizeof(version
)) != sizeof(version
))
2136 version
= bswap_32(version
);
2141 if (readn(fd
, &cnt
, sizeof(cnt
)) != sizeof(cnt
))
2145 cnt
= bswap_32(cnt
);
2147 caches
= zalloc(sizeof(*caches
) * cnt
);
2151 for (i
= 0; i
< cnt
; i
++) {
2152 struct cpu_cache_level c
;
2155 if (readn(fd, &c.v, sizeof(u32)) != sizeof(u32))\
2156 goto out_free_caches; \
2157 if (ph->needs_swap) \
2158 c.v = bswap_32(c.v); \
2167 c.v = do_read_string(fd, ph); \
2169 goto out_free_caches;
2179 ph
->env
.caches
= caches
;
2180 ph
->env
.caches_cnt
= cnt
;
2187 struct feature_ops
{
2188 int (*write
)(int fd
, struct perf_header
*h
, struct perf_evlist
*evlist
);
2189 void (*print
)(struct perf_header
*h
, int fd
, FILE *fp
);
2190 int (*process
)(struct perf_file_section
*section
,
2191 struct perf_header
*h
, int fd
, void *data
);
2196 #define FEAT_OPA(n, func) \
2197 [n] = { .name = #n, .write = write_##func, .print = print_##func }
2198 #define FEAT_OPP(n, func) \
2199 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
2200 .process = process_##func }
2201 #define FEAT_OPF(n, func) \
2202 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
2203 .process = process_##func, .full_only = true }
2205 /* feature_ops not implemented: */
2206 #define print_tracing_data NULL
2207 #define print_build_id NULL
2209 static const struct feature_ops feat_ops
[HEADER_LAST_FEATURE
] = {
2210 FEAT_OPP(HEADER_TRACING_DATA
, tracing_data
),
2211 FEAT_OPP(HEADER_BUILD_ID
, build_id
),
2212 FEAT_OPP(HEADER_HOSTNAME
, hostname
),
2213 FEAT_OPP(HEADER_OSRELEASE
, osrelease
),
2214 FEAT_OPP(HEADER_VERSION
, version
),
2215 FEAT_OPP(HEADER_ARCH
, arch
),
2216 FEAT_OPP(HEADER_NRCPUS
, nrcpus
),
2217 FEAT_OPP(HEADER_CPUDESC
, cpudesc
),
2218 FEAT_OPP(HEADER_CPUID
, cpuid
),
2219 FEAT_OPP(HEADER_TOTAL_MEM
, total_mem
),
2220 FEAT_OPP(HEADER_EVENT_DESC
, event_desc
),
2221 FEAT_OPP(HEADER_CMDLINE
, cmdline
),
2222 FEAT_OPF(HEADER_CPU_TOPOLOGY
, cpu_topology
),
2223 FEAT_OPF(HEADER_NUMA_TOPOLOGY
, numa_topology
),
2224 FEAT_OPA(HEADER_BRANCH_STACK
, branch_stack
),
2225 FEAT_OPP(HEADER_PMU_MAPPINGS
, pmu_mappings
),
2226 FEAT_OPP(HEADER_GROUP_DESC
, group_desc
),
2227 FEAT_OPP(HEADER_AUXTRACE
, auxtrace
),
2228 FEAT_OPA(HEADER_STAT
, stat
),
2229 FEAT_OPF(HEADER_CACHE
, cache
),
2232 struct header_print_data
{
2234 bool full
; /* extended list of headers */
2237 static int perf_file_section__fprintf_info(struct perf_file_section
*section
,
2238 struct perf_header
*ph
,
2239 int feat
, int fd
, void *data
)
2241 struct header_print_data
*hd
= data
;
2243 if (lseek(fd
, section
->offset
, SEEK_SET
) == (off_t
)-1) {
2244 pr_debug("Failed to lseek to %" PRIu64
" offset for feature "
2245 "%d, continuing...\n", section
->offset
, feat
);
2248 if (feat
>= HEADER_LAST_FEATURE
) {
2249 pr_warning("unknown feature %d\n", feat
);
2252 if (!feat_ops
[feat
].print
)
2255 if (!feat_ops
[feat
].full_only
|| hd
->full
)
2256 feat_ops
[feat
].print(ph
, fd
, hd
->fp
);
2258 fprintf(hd
->fp
, "# %s info available, use -I to display\n",
2259 feat_ops
[feat
].name
);
2264 int perf_header__fprintf_info(struct perf_session
*session
, FILE *fp
, bool full
)
2266 struct header_print_data hd
;
2267 struct perf_header
*header
= &session
->header
;
2268 int fd
= perf_data_file__fd(session
->file
);
2272 perf_header__process_sections(header
, fd
, &hd
,
2273 perf_file_section__fprintf_info
);
2277 static int do_write_feat(int fd
, struct perf_header
*h
, int type
,
2278 struct perf_file_section
**p
,
2279 struct perf_evlist
*evlist
)
2284 if (perf_header__has_feat(h
, type
)) {
2285 if (!feat_ops
[type
].write
)
2288 (*p
)->offset
= lseek(fd
, 0, SEEK_CUR
);
2290 err
= feat_ops
[type
].write(fd
, h
, evlist
);
2292 pr_debug("failed to write feature %d\n", type
);
2294 /* undo anything written */
2295 lseek(fd
, (*p
)->offset
, SEEK_SET
);
2299 (*p
)->size
= lseek(fd
, 0, SEEK_CUR
) - (*p
)->offset
;
2305 static int perf_header__adds_write(struct perf_header
*header
,
2306 struct perf_evlist
*evlist
, int fd
)
2309 struct perf_file_section
*feat_sec
, *p
;
2315 nr_sections
= bitmap_weight(header
->adds_features
, HEADER_FEAT_BITS
);
2319 feat_sec
= p
= calloc(nr_sections
, sizeof(*feat_sec
));
2320 if (feat_sec
== NULL
)
2323 sec_size
= sizeof(*feat_sec
) * nr_sections
;
2325 sec_start
= header
->feat_offset
;
2326 lseek(fd
, sec_start
+ sec_size
, SEEK_SET
);
2328 for_each_set_bit(feat
, header
->adds_features
, HEADER_FEAT_BITS
) {
2329 if (do_write_feat(fd
, header
, feat
, &p
, evlist
))
2330 perf_header__clear_feat(header
, feat
);
2333 lseek(fd
, sec_start
, SEEK_SET
);
2335 * may write more than needed due to dropped feature, but
2336 * this is okay, reader will skip the mising entries
2338 err
= do_write(fd
, feat_sec
, sec_size
);
2340 pr_debug("failed to write feature section\n");
2345 int perf_header__write_pipe(int fd
)
2347 struct perf_pipe_file_header f_header
;
2350 f_header
= (struct perf_pipe_file_header
){
2351 .magic
= PERF_MAGIC
,
2352 .size
= sizeof(f_header
),
2355 err
= do_write(fd
, &f_header
, sizeof(f_header
));
2357 pr_debug("failed to write perf pipe header\n");
2364 int perf_session__write_header(struct perf_session
*session
,
2365 struct perf_evlist
*evlist
,
2366 int fd
, bool at_exit
)
2368 struct perf_file_header f_header
;
2369 struct perf_file_attr f_attr
;
2370 struct perf_header
*header
= &session
->header
;
2371 struct perf_evsel
*evsel
;
2375 lseek(fd
, sizeof(f_header
), SEEK_SET
);
2377 evlist__for_each(session
->evlist
, evsel
) {
2378 evsel
->id_offset
= lseek(fd
, 0, SEEK_CUR
);
2379 err
= do_write(fd
, evsel
->id
, evsel
->ids
* sizeof(u64
));
2381 pr_debug("failed to write perf header\n");
2386 attr_offset
= lseek(fd
, 0, SEEK_CUR
);
2388 evlist__for_each(evlist
, evsel
) {
2389 f_attr
= (struct perf_file_attr
){
2390 .attr
= evsel
->attr
,
2392 .offset
= evsel
->id_offset
,
2393 .size
= evsel
->ids
* sizeof(u64
),
2396 err
= do_write(fd
, &f_attr
, sizeof(f_attr
));
2398 pr_debug("failed to write perf header attribute\n");
2403 if (!header
->data_offset
)
2404 header
->data_offset
= lseek(fd
, 0, SEEK_CUR
);
2405 header
->feat_offset
= header
->data_offset
+ header
->data_size
;
2408 err
= perf_header__adds_write(header
, evlist
, fd
);
2413 f_header
= (struct perf_file_header
){
2414 .magic
= PERF_MAGIC
,
2415 .size
= sizeof(f_header
),
2416 .attr_size
= sizeof(f_attr
),
2418 .offset
= attr_offset
,
2419 .size
= evlist
->nr_entries
* sizeof(f_attr
),
2422 .offset
= header
->data_offset
,
2423 .size
= header
->data_size
,
2425 /* event_types is ignored, store zeros */
2428 memcpy(&f_header
.adds_features
, &header
->adds_features
, sizeof(header
->adds_features
));
2430 lseek(fd
, 0, SEEK_SET
);
2431 err
= do_write(fd
, &f_header
, sizeof(f_header
));
2433 pr_debug("failed to write perf header\n");
2436 lseek(fd
, header
->data_offset
+ header
->data_size
, SEEK_SET
);
2441 static int perf_header__getbuffer64(struct perf_header
*header
,
2442 int fd
, void *buf
, size_t size
)
2444 if (readn(fd
, buf
, size
) <= 0)
2447 if (header
->needs_swap
)
2448 mem_bswap_64(buf
, size
);
2453 int perf_header__process_sections(struct perf_header
*header
, int fd
,
2455 int (*process
)(struct perf_file_section
*section
,
2456 struct perf_header
*ph
,
2457 int feat
, int fd
, void *data
))
2459 struct perf_file_section
*feat_sec
, *sec
;
2465 nr_sections
= bitmap_weight(header
->adds_features
, HEADER_FEAT_BITS
);
2469 feat_sec
= sec
= calloc(nr_sections
, sizeof(*feat_sec
));
2473 sec_size
= sizeof(*feat_sec
) * nr_sections
;
2475 lseek(fd
, header
->feat_offset
, SEEK_SET
);
2477 err
= perf_header__getbuffer64(header
, fd
, feat_sec
, sec_size
);
2481 for_each_set_bit(feat
, header
->adds_features
, HEADER_LAST_FEATURE
) {
2482 err
= process(sec
++, header
, feat
, fd
, data
);
2492 static const int attr_file_abi_sizes
[] = {
2493 [0] = PERF_ATTR_SIZE_VER0
,
2494 [1] = PERF_ATTR_SIZE_VER1
,
2495 [2] = PERF_ATTR_SIZE_VER2
,
2496 [3] = PERF_ATTR_SIZE_VER3
,
2497 [4] = PERF_ATTR_SIZE_VER4
,
2502 * In the legacy file format, the magic number is not used to encode endianness.
2503 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
2504 * on ABI revisions, we need to try all combinations for all endianness to
2505 * detect the endianness.
2507 static int try_all_file_abis(uint64_t hdr_sz
, struct perf_header
*ph
)
2509 uint64_t ref_size
, attr_size
;
2512 for (i
= 0 ; attr_file_abi_sizes
[i
]; i
++) {
2513 ref_size
= attr_file_abi_sizes
[i
]
2514 + sizeof(struct perf_file_section
);
2515 if (hdr_sz
!= ref_size
) {
2516 attr_size
= bswap_64(hdr_sz
);
2517 if (attr_size
!= ref_size
)
2520 ph
->needs_swap
= true;
2522 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
2527 /* could not determine endianness */
2531 #define PERF_PIPE_HDR_VER0 16
2533 static const size_t attr_pipe_abi_sizes
[] = {
2534 [0] = PERF_PIPE_HDR_VER0
,
2539 * In the legacy pipe format, there is an implicit assumption that endiannesss
2540 * between host recording the samples, and host parsing the samples is the
2541 * same. This is not always the case given that the pipe output may always be
2542 * redirected into a file and analyzed on a different machine with possibly a
2543 * different endianness and perf_event ABI revsions in the perf tool itself.
2545 static int try_all_pipe_abis(uint64_t hdr_sz
, struct perf_header
*ph
)
2550 for (i
= 0 ; attr_pipe_abi_sizes
[i
]; i
++) {
2551 if (hdr_sz
!= attr_pipe_abi_sizes
[i
]) {
2552 attr_size
= bswap_64(hdr_sz
);
2553 if (attr_size
!= hdr_sz
)
2556 ph
->needs_swap
= true;
2558 pr_debug("Pipe ABI%d perf.data file detected\n", i
);
2564 bool is_perf_magic(u64 magic
)
2566 if (!memcmp(&magic
, __perf_magic1
, sizeof(magic
))
2567 || magic
== __perf_magic2
2568 || magic
== __perf_magic2_sw
)
2574 static int check_magic_endian(u64 magic
, uint64_t hdr_sz
,
2575 bool is_pipe
, struct perf_header
*ph
)
2579 /* check for legacy format */
2580 ret
= memcmp(&magic
, __perf_magic1
, sizeof(magic
));
2582 ph
->version
= PERF_HEADER_VERSION_1
;
2583 pr_debug("legacy perf.data format\n");
2585 return try_all_pipe_abis(hdr_sz
, ph
);
2587 return try_all_file_abis(hdr_sz
, ph
);
2590 * the new magic number serves two purposes:
2591 * - unique number to identify actual perf.data files
2592 * - encode endianness of file
2594 ph
->version
= PERF_HEADER_VERSION_2
;
2596 /* check magic number with one endianness */
2597 if (magic
== __perf_magic2
)
2600 /* check magic number with opposite endianness */
2601 if (magic
!= __perf_magic2_sw
)
2604 ph
->needs_swap
= true;
2609 int perf_file_header__read(struct perf_file_header
*header
,
2610 struct perf_header
*ph
, int fd
)
2614 lseek(fd
, 0, SEEK_SET
);
2616 ret
= readn(fd
, header
, sizeof(*header
));
2620 if (check_magic_endian(header
->magic
,
2621 header
->attr_size
, false, ph
) < 0) {
2622 pr_debug("magic/endian check failed\n");
2626 if (ph
->needs_swap
) {
2627 mem_bswap_64(header
, offsetof(struct perf_file_header
,
2631 if (header
->size
!= sizeof(*header
)) {
2632 /* Support the previous format */
2633 if (header
->size
== offsetof(typeof(*header
), adds_features
))
2634 bitmap_zero(header
->adds_features
, HEADER_FEAT_BITS
);
2637 } else if (ph
->needs_swap
) {
2639 * feature bitmap is declared as an array of unsigned longs --
2640 * not good since its size can differ between the host that
2641 * generated the data file and the host analyzing the file.
2643 * We need to handle endianness, but we don't know the size of
2644 * the unsigned long where the file was generated. Take a best
2645 * guess at determining it: try 64-bit swap first (ie., file
2646 * created on a 64-bit host), and check if the hostname feature
2647 * bit is set (this feature bit is forced on as of fbe96f2).
2648 * If the bit is not, undo the 64-bit swap and try a 32-bit
2649 * swap. If the hostname bit is still not set (e.g., older data
2650 * file), punt and fallback to the original behavior --
2651 * clearing all feature bits and setting buildid.
2653 mem_bswap_64(&header
->adds_features
,
2654 BITS_TO_U64(HEADER_FEAT_BITS
));
2656 if (!test_bit(HEADER_HOSTNAME
, header
->adds_features
)) {
2658 mem_bswap_64(&header
->adds_features
,
2659 BITS_TO_U64(HEADER_FEAT_BITS
));
2662 mem_bswap_32(&header
->adds_features
,
2663 BITS_TO_U32(HEADER_FEAT_BITS
));
2666 if (!test_bit(HEADER_HOSTNAME
, header
->adds_features
)) {
2667 bitmap_zero(header
->adds_features
, HEADER_FEAT_BITS
);
2668 set_bit(HEADER_BUILD_ID
, header
->adds_features
);
2672 memcpy(&ph
->adds_features
, &header
->adds_features
,
2673 sizeof(ph
->adds_features
));
2675 ph
->data_offset
= header
->data
.offset
;
2676 ph
->data_size
= header
->data
.size
;
2677 ph
->feat_offset
= header
->data
.offset
+ header
->data
.size
;
2681 static int perf_file_section__process(struct perf_file_section
*section
,
2682 struct perf_header
*ph
,
2683 int feat
, int fd
, void *data
)
2685 if (lseek(fd
, section
->offset
, SEEK_SET
) == (off_t
)-1) {
2686 pr_debug("Failed to lseek to %" PRIu64
" offset for feature "
2687 "%d, continuing...\n", section
->offset
, feat
);
2691 if (feat
>= HEADER_LAST_FEATURE
) {
2692 pr_debug("unknown feature %d, continuing...\n", feat
);
2696 if (!feat_ops
[feat
].process
)
2699 return feat_ops
[feat
].process(section
, ph
, fd
, data
);
2702 static int perf_file_header__read_pipe(struct perf_pipe_file_header
*header
,
2703 struct perf_header
*ph
, int fd
,
2708 ret
= readn(fd
, header
, sizeof(*header
));
2712 if (check_magic_endian(header
->magic
, header
->size
, true, ph
) < 0) {
2713 pr_debug("endian/magic failed\n");
2718 header
->size
= bswap_64(header
->size
);
2720 if (repipe
&& do_write(STDOUT_FILENO
, header
, sizeof(*header
)) < 0)
2726 static int perf_header__read_pipe(struct perf_session
*session
)
2728 struct perf_header
*header
= &session
->header
;
2729 struct perf_pipe_file_header f_header
;
2731 if (perf_file_header__read_pipe(&f_header
, header
,
2732 perf_data_file__fd(session
->file
),
2733 session
->repipe
) < 0) {
2734 pr_debug("incompatible file format\n");
2741 static int read_attr(int fd
, struct perf_header
*ph
,
2742 struct perf_file_attr
*f_attr
)
2744 struct perf_event_attr
*attr
= &f_attr
->attr
;
2746 size_t our_sz
= sizeof(f_attr
->attr
);
2749 memset(f_attr
, 0, sizeof(*f_attr
));
2751 /* read minimal guaranteed structure */
2752 ret
= readn(fd
, attr
, PERF_ATTR_SIZE_VER0
);
2754 pr_debug("cannot read %d bytes of header attr\n",
2755 PERF_ATTR_SIZE_VER0
);
2759 /* on file perf_event_attr size */
2767 sz
= PERF_ATTR_SIZE_VER0
;
2768 } else if (sz
> our_sz
) {
2769 pr_debug("file uses a more recent and unsupported ABI"
2770 " (%zu bytes extra)\n", sz
- our_sz
);
2773 /* what we have not yet read and that we know about */
2774 left
= sz
- PERF_ATTR_SIZE_VER0
;
2777 ptr
+= PERF_ATTR_SIZE_VER0
;
2779 ret
= readn(fd
, ptr
, left
);
2781 /* read perf_file_section, ids are read in caller */
2782 ret
= readn(fd
, &f_attr
->ids
, sizeof(f_attr
->ids
));
2784 return ret
<= 0 ? -1 : 0;
2787 static int perf_evsel__prepare_tracepoint_event(struct perf_evsel
*evsel
,
2788 struct pevent
*pevent
)
2790 struct event_format
*event
;
2793 /* already prepared */
2794 if (evsel
->tp_format
)
2797 if (pevent
== NULL
) {
2798 pr_debug("broken or missing trace data\n");
2802 event
= pevent_find_event(pevent
, evsel
->attr
.config
);
2807 snprintf(bf
, sizeof(bf
), "%s:%s", event
->system
, event
->name
);
2808 evsel
->name
= strdup(bf
);
2809 if (evsel
->name
== NULL
)
2813 evsel
->tp_format
= event
;
2817 static int perf_evlist__prepare_tracepoint_events(struct perf_evlist
*evlist
,
2818 struct pevent
*pevent
)
2820 struct perf_evsel
*pos
;
2822 evlist__for_each(evlist
, pos
) {
2823 if (pos
->attr
.type
== PERF_TYPE_TRACEPOINT
&&
2824 perf_evsel__prepare_tracepoint_event(pos
, pevent
))
2831 int perf_session__read_header(struct perf_session
*session
)
2833 struct perf_data_file
*file
= session
->file
;
2834 struct perf_header
*header
= &session
->header
;
2835 struct perf_file_header f_header
;
2836 struct perf_file_attr f_attr
;
2838 int nr_attrs
, nr_ids
, i
, j
;
2839 int fd
= perf_data_file__fd(file
);
2841 session
->evlist
= perf_evlist__new();
2842 if (session
->evlist
== NULL
)
2845 session
->evlist
->env
= &header
->env
;
2846 session
->machines
.host
.env
= &header
->env
;
2847 if (perf_data_file__is_pipe(file
))
2848 return perf_header__read_pipe(session
);
2850 if (perf_file_header__read(&f_header
, header
, fd
) < 0)
2854 * Sanity check that perf.data was written cleanly; data size is
2855 * initialized to 0 and updated only if the on_exit function is run.
2856 * If data size is still 0 then the file contains only partial
2857 * information. Just warn user and process it as much as it can.
2859 if (f_header
.data
.size
== 0) {
2860 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
2861 "Was the 'perf record' command properly terminated?\n",
2865 nr_attrs
= f_header
.attrs
.size
/ f_header
.attr_size
;
2866 lseek(fd
, f_header
.attrs
.offset
, SEEK_SET
);
2868 for (i
= 0; i
< nr_attrs
; i
++) {
2869 struct perf_evsel
*evsel
;
2872 if (read_attr(fd
, header
, &f_attr
) < 0)
2875 if (header
->needs_swap
) {
2876 f_attr
.ids
.size
= bswap_64(f_attr
.ids
.size
);
2877 f_attr
.ids
.offset
= bswap_64(f_attr
.ids
.offset
);
2878 perf_event__attr_swap(&f_attr
.attr
);
2881 tmp
= lseek(fd
, 0, SEEK_CUR
);
2882 evsel
= perf_evsel__new(&f_attr
.attr
);
2885 goto out_delete_evlist
;
2887 evsel
->needs_swap
= header
->needs_swap
;
2889 * Do it before so that if perf_evsel__alloc_id fails, this
2890 * entry gets purged too at perf_evlist__delete().
2892 perf_evlist__add(session
->evlist
, evsel
);
2894 nr_ids
= f_attr
.ids
.size
/ sizeof(u64
);
2896 * We don't have the cpu and thread maps on the header, so
2897 * for allocating the perf_sample_id table we fake 1 cpu and
2898 * hattr->ids threads.
2900 if (perf_evsel__alloc_id(evsel
, 1, nr_ids
))
2901 goto out_delete_evlist
;
2903 lseek(fd
, f_attr
.ids
.offset
, SEEK_SET
);
2905 for (j
= 0; j
< nr_ids
; j
++) {
2906 if (perf_header__getbuffer64(header
, fd
, &f_id
, sizeof(f_id
)))
2909 perf_evlist__id_add(session
->evlist
, evsel
, 0, j
, f_id
);
2912 lseek(fd
, tmp
, SEEK_SET
);
2915 symbol_conf
.nr_events
= nr_attrs
;
2917 perf_header__process_sections(header
, fd
, &session
->tevent
,
2918 perf_file_section__process
);
2920 if (perf_evlist__prepare_tracepoint_events(session
->evlist
,
2921 session
->tevent
.pevent
))
2922 goto out_delete_evlist
;
2929 perf_evlist__delete(session
->evlist
);
2930 session
->evlist
= NULL
;
2934 int perf_event__synthesize_attr(struct perf_tool
*tool
,
2935 struct perf_event_attr
*attr
, u32 ids
, u64
*id
,
2936 perf_event__handler_t process
)
2938 union perf_event
*ev
;
2942 size
= sizeof(struct perf_event_attr
);
2943 size
= PERF_ALIGN(size
, sizeof(u64
));
2944 size
+= sizeof(struct perf_event_header
);
2945 size
+= ids
* sizeof(u64
);
2952 ev
->attr
.attr
= *attr
;
2953 memcpy(ev
->attr
.id
, id
, ids
* sizeof(u64
));
2955 ev
->attr
.header
.type
= PERF_RECORD_HEADER_ATTR
;
2956 ev
->attr
.header
.size
= (u16
)size
;
2958 if (ev
->attr
.header
.size
== size
)
2959 err
= process(tool
, ev
, NULL
, NULL
);
2968 static struct event_update_event
*
2969 event_update_event__new(size_t size
, u64 type
, u64 id
)
2971 struct event_update_event
*ev
;
2973 size
+= sizeof(*ev
);
2974 size
= PERF_ALIGN(size
, sizeof(u64
));
2978 ev
->header
.type
= PERF_RECORD_EVENT_UPDATE
;
2979 ev
->header
.size
= (u16
)size
;
2987 perf_event__synthesize_event_update_unit(struct perf_tool
*tool
,
2988 struct perf_evsel
*evsel
,
2989 perf_event__handler_t process
)
2991 struct event_update_event
*ev
;
2992 size_t size
= strlen(evsel
->unit
);
2995 ev
= event_update_event__new(size
+ 1, PERF_EVENT_UPDATE__UNIT
, evsel
->id
[0]);
2999 strncpy(ev
->data
, evsel
->unit
, size
);
3000 err
= process(tool
, (union perf_event
*)ev
, NULL
, NULL
);
3006 perf_event__synthesize_event_update_scale(struct perf_tool
*tool
,
3007 struct perf_evsel
*evsel
,
3008 perf_event__handler_t process
)
3010 struct event_update_event
*ev
;
3011 struct event_update_event_scale
*ev_data
;
3014 ev
= event_update_event__new(sizeof(*ev_data
), PERF_EVENT_UPDATE__SCALE
, evsel
->id
[0]);
3018 ev_data
= (struct event_update_event_scale
*) ev
->data
;
3019 ev_data
->scale
= evsel
->scale
;
3020 err
= process(tool
, (union perf_event
*) ev
, NULL
, NULL
);
3026 perf_event__synthesize_event_update_name(struct perf_tool
*tool
,
3027 struct perf_evsel
*evsel
,
3028 perf_event__handler_t process
)
3030 struct event_update_event
*ev
;
3031 size_t len
= strlen(evsel
->name
);
3034 ev
= event_update_event__new(len
+ 1, PERF_EVENT_UPDATE__NAME
, evsel
->id
[0]);
3038 strncpy(ev
->data
, evsel
->name
, len
);
3039 err
= process(tool
, (union perf_event
*) ev
, NULL
, NULL
);
3045 perf_event__synthesize_event_update_cpus(struct perf_tool
*tool
,
3046 struct perf_evsel
*evsel
,
3047 perf_event__handler_t process
)
3049 size_t size
= sizeof(struct event_update_event
);
3050 struct event_update_event
*ev
;
3054 if (!evsel
->own_cpus
)
3057 ev
= cpu_map_data__alloc(evsel
->own_cpus
, &size
, &type
, &max
);
3061 ev
->header
.type
= PERF_RECORD_EVENT_UPDATE
;
3062 ev
->header
.size
= (u16
)size
;
3063 ev
->type
= PERF_EVENT_UPDATE__CPUS
;
3064 ev
->id
= evsel
->id
[0];
3066 cpu_map_data__synthesize((struct cpu_map_data
*) ev
->data
,
3070 err
= process(tool
, (union perf_event
*) ev
, NULL
, NULL
);
3075 size_t perf_event__fprintf_event_update(union perf_event
*event
, FILE *fp
)
3077 struct event_update_event
*ev
= &event
->event_update
;
3078 struct event_update_event_scale
*ev_scale
;
3079 struct event_update_event_cpus
*ev_cpus
;
3080 struct cpu_map
*map
;
3083 ret
= fprintf(fp
, "\n... id: %" PRIu64
"\n", ev
->id
);
3086 case PERF_EVENT_UPDATE__SCALE
:
3087 ev_scale
= (struct event_update_event_scale
*) ev
->data
;
3088 ret
+= fprintf(fp
, "... scale: %f\n", ev_scale
->scale
);
3090 case PERF_EVENT_UPDATE__UNIT
:
3091 ret
+= fprintf(fp
, "... unit: %s\n", ev
->data
);
3093 case PERF_EVENT_UPDATE__NAME
:
3094 ret
+= fprintf(fp
, "... name: %s\n", ev
->data
);
3096 case PERF_EVENT_UPDATE__CPUS
:
3097 ev_cpus
= (struct event_update_event_cpus
*) ev
->data
;
3098 ret
+= fprintf(fp
, "... ");
3100 map
= cpu_map__new_data(&ev_cpus
->cpus
);
3102 ret
+= cpu_map__fprintf(map
, fp
);
3104 ret
+= fprintf(fp
, "failed to get cpus\n");
3107 ret
+= fprintf(fp
, "... unknown type\n");
3114 int perf_event__synthesize_attrs(struct perf_tool
*tool
,
3115 struct perf_session
*session
,
3116 perf_event__handler_t process
)
3118 struct perf_evsel
*evsel
;
3121 evlist__for_each(session
->evlist
, evsel
) {
3122 err
= perf_event__synthesize_attr(tool
, &evsel
->attr
, evsel
->ids
,
3123 evsel
->id
, process
);
3125 pr_debug("failed to create perf header attribute\n");
3133 int perf_event__process_attr(struct perf_tool
*tool __maybe_unused
,
3134 union perf_event
*event
,
3135 struct perf_evlist
**pevlist
)
3138 struct perf_evsel
*evsel
;
3139 struct perf_evlist
*evlist
= *pevlist
;
3141 if (evlist
== NULL
) {
3142 *pevlist
= evlist
= perf_evlist__new();
3147 evsel
= perf_evsel__new(&event
->attr
.attr
);
3151 perf_evlist__add(evlist
, evsel
);
3153 ids
= event
->header
.size
;
3154 ids
-= (void *)&event
->attr
.id
- (void *)event
;
3155 n_ids
= ids
/ sizeof(u64
);
3157 * We don't have the cpu and thread maps on the header, so
3158 * for allocating the perf_sample_id table we fake 1 cpu and
3159 * hattr->ids threads.
3161 if (perf_evsel__alloc_id(evsel
, 1, n_ids
))
3164 for (i
= 0; i
< n_ids
; i
++) {
3165 perf_evlist__id_add(evlist
, evsel
, 0, i
, event
->attr
.id
[i
]);
3168 symbol_conf
.nr_events
= evlist
->nr_entries
;
3173 int perf_event__process_event_update(struct perf_tool
*tool __maybe_unused
,
3174 union perf_event
*event
,
3175 struct perf_evlist
**pevlist
)
3177 struct event_update_event
*ev
= &event
->event_update
;
3178 struct event_update_event_scale
*ev_scale
;
3179 struct event_update_event_cpus
*ev_cpus
;
3180 struct perf_evlist
*evlist
;
3181 struct perf_evsel
*evsel
;
3182 struct cpu_map
*map
;
3184 if (!pevlist
|| *pevlist
== NULL
)
3189 evsel
= perf_evlist__id2evsel(evlist
, ev
->id
);
3194 case PERF_EVENT_UPDATE__UNIT
:
3195 evsel
->unit
= strdup(ev
->data
);
3197 case PERF_EVENT_UPDATE__NAME
:
3198 evsel
->name
= strdup(ev
->data
);
3200 case PERF_EVENT_UPDATE__SCALE
:
3201 ev_scale
= (struct event_update_event_scale
*) ev
->data
;
3202 evsel
->scale
= ev_scale
->scale
;
3203 case PERF_EVENT_UPDATE__CPUS
:
3204 ev_cpus
= (struct event_update_event_cpus
*) ev
->data
;
3206 map
= cpu_map__new_data(&ev_cpus
->cpus
);
3208 evsel
->own_cpus
= map
;
3210 pr_err("failed to get event_update cpus\n");
3218 int perf_event__synthesize_tracing_data(struct perf_tool
*tool
, int fd
,
3219 struct perf_evlist
*evlist
,
3220 perf_event__handler_t process
)
3222 union perf_event ev
;
3223 struct tracing_data
*tdata
;
3224 ssize_t size
= 0, aligned_size
= 0, padding
;
3225 int err __maybe_unused
= 0;
3228 * We are going to store the size of the data followed
3229 * by the data contents. Since the fd descriptor is a pipe,
3230 * we cannot seek back to store the size of the data once
3231 * we know it. Instead we:
3233 * - write the tracing data to the temp file
3234 * - get/write the data size to pipe
3235 * - write the tracing data from the temp file
3238 tdata
= tracing_data_get(&evlist
->entries
, fd
, true);
3242 memset(&ev
, 0, sizeof(ev
));
3244 ev
.tracing_data
.header
.type
= PERF_RECORD_HEADER_TRACING_DATA
;
3246 aligned_size
= PERF_ALIGN(size
, sizeof(u64
));
3247 padding
= aligned_size
- size
;
3248 ev
.tracing_data
.header
.size
= sizeof(ev
.tracing_data
);
3249 ev
.tracing_data
.size
= aligned_size
;
3251 process(tool
, &ev
, NULL
, NULL
);
3254 * The put function will copy all the tracing data
3255 * stored in temp file to the pipe.
3257 tracing_data_put(tdata
);
3259 write_padded(fd
, NULL
, 0, padding
);
3261 return aligned_size
;
3264 int perf_event__process_tracing_data(struct perf_tool
*tool __maybe_unused
,
3265 union perf_event
*event
,
3266 struct perf_session
*session
)
3268 ssize_t size_read
, padding
, size
= event
->tracing_data
.size
;
3269 int fd
= perf_data_file__fd(session
->file
);
3270 off_t offset
= lseek(fd
, 0, SEEK_CUR
);
3273 /* setup for reading amidst mmap */
3274 lseek(fd
, offset
+ sizeof(struct tracing_data_event
),
3277 size_read
= trace_report(fd
, &session
->tevent
,
3279 padding
= PERF_ALIGN(size_read
, sizeof(u64
)) - size_read
;
3281 if (readn(fd
, buf
, padding
) < 0) {
3282 pr_err("%s: reading input file", __func__
);
3285 if (session
->repipe
) {
3286 int retw
= write(STDOUT_FILENO
, buf
, padding
);
3287 if (retw
<= 0 || retw
!= padding
) {
3288 pr_err("%s: repiping tracing data padding", __func__
);
3293 if (size_read
+ padding
!= size
) {
3294 pr_err("%s: tracing data size mismatch", __func__
);
3298 perf_evlist__prepare_tracepoint_events(session
->evlist
,
3299 session
->tevent
.pevent
);
3301 return size_read
+ padding
;
3304 int perf_event__synthesize_build_id(struct perf_tool
*tool
,
3305 struct dso
*pos
, u16 misc
,
3306 perf_event__handler_t process
,
3307 struct machine
*machine
)
3309 union perf_event ev
;
3316 memset(&ev
, 0, sizeof(ev
));
3318 len
= pos
->long_name_len
+ 1;
3319 len
= PERF_ALIGN(len
, NAME_ALIGN
);
3320 memcpy(&ev
.build_id
.build_id
, pos
->build_id
, sizeof(pos
->build_id
));
3321 ev
.build_id
.header
.type
= PERF_RECORD_HEADER_BUILD_ID
;
3322 ev
.build_id
.header
.misc
= misc
;
3323 ev
.build_id
.pid
= machine
->pid
;
3324 ev
.build_id
.header
.size
= sizeof(ev
.build_id
) + len
;
3325 memcpy(&ev
.build_id
.filename
, pos
->long_name
, pos
->long_name_len
);
3327 err
= process(tool
, &ev
, NULL
, machine
);
3332 int perf_event__process_build_id(struct perf_tool
*tool __maybe_unused
,
3333 union perf_event
*event
,
3334 struct perf_session
*session
)
3336 __event_process_build_id(&event
->build_id
,
3337 event
->build_id
.filename
,