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_entry(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_entry(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 __weak
get_cpuid(char *buffer __maybe_unused
, size_t sz __maybe_unused
)
836 static int write_cpuid(int fd
, struct perf_header
*h __maybe_unused
,
837 struct perf_evlist
*evlist __maybe_unused
)
842 ret
= get_cpuid(buffer
, sizeof(buffer
));
848 return do_write_string(fd
, buffer
);
851 static int write_branch_stack(int fd __maybe_unused
,
852 struct perf_header
*h __maybe_unused
,
853 struct perf_evlist
*evlist __maybe_unused
)
858 static int write_auxtrace(int fd
, struct perf_header
*h
,
859 struct perf_evlist
*evlist __maybe_unused
)
861 struct perf_session
*session
;
864 session
= container_of(h
, struct perf_session
, header
);
866 err
= auxtrace_index__write(fd
, &session
->auxtrace_index
);
868 pr_err("Failed to write auxtrace index\n");
872 static int cpu_cache_level__sort(const void *a
, const void *b
)
874 struct cpu_cache_level
*cache_a
= (struct cpu_cache_level
*)a
;
875 struct cpu_cache_level
*cache_b
= (struct cpu_cache_level
*)b
;
877 return cache_a
->level
- cache_b
->level
;
880 static bool cpu_cache_level__cmp(struct cpu_cache_level
*a
, struct cpu_cache_level
*b
)
882 if (a
->level
!= b
->level
)
885 if (a
->line_size
!= b
->line_size
)
888 if (a
->sets
!= b
->sets
)
891 if (a
->ways
!= b
->ways
)
894 if (strcmp(a
->type
, b
->type
))
897 if (strcmp(a
->size
, b
->size
))
900 if (strcmp(a
->map
, b
->map
))
906 static int cpu_cache_level__read(struct cpu_cache_level
*cache
, u32 cpu
, u16 level
)
908 char path
[PATH_MAX
], file
[PATH_MAX
];
912 scnprintf(path
, PATH_MAX
, "devices/system/cpu/cpu%d/cache/index%d/", cpu
, level
);
913 scnprintf(file
, PATH_MAX
, "%s/%s", sysfs__mountpoint(), path
);
918 scnprintf(file
, PATH_MAX
, "%s/level", path
);
919 if (sysfs__read_int(file
, (int *) &cache
->level
))
922 scnprintf(file
, PATH_MAX
, "%s/coherency_line_size", path
);
923 if (sysfs__read_int(file
, (int *) &cache
->line_size
))
926 scnprintf(file
, PATH_MAX
, "%s/number_of_sets", path
);
927 if (sysfs__read_int(file
, (int *) &cache
->sets
))
930 scnprintf(file
, PATH_MAX
, "%s/ways_of_associativity", path
);
931 if (sysfs__read_int(file
, (int *) &cache
->ways
))
934 scnprintf(file
, PATH_MAX
, "%s/type", path
);
935 if (sysfs__read_str(file
, &cache
->type
, &len
))
938 cache
->type
[len
] = 0;
939 cache
->type
= rtrim(cache
->type
);
941 scnprintf(file
, PATH_MAX
, "%s/size", path
);
942 if (sysfs__read_str(file
, &cache
->size
, &len
)) {
947 cache
->size
[len
] = 0;
948 cache
->size
= rtrim(cache
->size
);
950 scnprintf(file
, PATH_MAX
, "%s/shared_cpu_list", path
);
951 if (sysfs__read_str(file
, &cache
->map
, &len
)) {
958 cache
->map
= rtrim(cache
->map
);
962 static void cpu_cache_level__fprintf(FILE *out
, struct cpu_cache_level
*c
)
964 fprintf(out
, "L%d %-15s %8s [%s]\n", c
->level
, c
->type
, c
->size
, c
->map
);
967 static int build_caches(struct cpu_cache_level caches
[], u32 size
, u32
*cntp
)
974 ncpus
= sysconf(_SC_NPROCESSORS_CONF
);
978 nr
= (u32
)(ncpus
& UINT_MAX
);
980 for (cpu
= 0; cpu
< nr
; cpu
++) {
981 for (level
= 0; level
< 10; level
++) {
982 struct cpu_cache_level c
;
985 err
= cpu_cache_level__read(&c
, cpu
, level
);
992 for (i
= 0; i
< cnt
; i
++) {
993 if (cpu_cache_level__cmp(&c
, &caches
[i
]))
1000 cpu_cache_level__free(&c
);
1002 if (WARN_ONCE(cnt
== size
, "way too many cpu caches.."))
1011 #define MAX_CACHES 2000
1013 static int write_cache(int fd
, struct perf_header
*h __maybe_unused
,
1014 struct perf_evlist
*evlist __maybe_unused
)
1016 struct cpu_cache_level caches
[MAX_CACHES
];
1017 u32 cnt
= 0, i
, version
= 1;
1020 ret
= build_caches(caches
, MAX_CACHES
, &cnt
);
1024 qsort(&caches
, cnt
, sizeof(struct cpu_cache_level
), cpu_cache_level__sort
);
1026 ret
= do_write(fd
, &version
, sizeof(u32
));
1030 ret
= do_write(fd
, &cnt
, sizeof(u32
));
1034 for (i
= 0; i
< cnt
; i
++) {
1035 struct cpu_cache_level
*c
= &caches
[i
];
1038 ret = do_write(fd, &c->v, sizeof(u32)); \
1049 ret = do_write_string(fd, (const char *) c->v); \
1060 for (i
= 0; i
< cnt
; i
++)
1061 cpu_cache_level__free(&caches
[i
]);
1065 static int write_stat(int fd __maybe_unused
,
1066 struct perf_header
*h __maybe_unused
,
1067 struct perf_evlist
*evlist __maybe_unused
)
1072 static void print_hostname(struct perf_header
*ph
, int fd __maybe_unused
,
1075 fprintf(fp
, "# hostname : %s\n", ph
->env
.hostname
);
1078 static void print_osrelease(struct perf_header
*ph
, int fd __maybe_unused
,
1081 fprintf(fp
, "# os release : %s\n", ph
->env
.os_release
);
1084 static void print_arch(struct perf_header
*ph
, int fd __maybe_unused
, FILE *fp
)
1086 fprintf(fp
, "# arch : %s\n", ph
->env
.arch
);
1089 static void print_cpudesc(struct perf_header
*ph
, int fd __maybe_unused
,
1092 fprintf(fp
, "# cpudesc : %s\n", ph
->env
.cpu_desc
);
1095 static void print_nrcpus(struct perf_header
*ph
, int fd __maybe_unused
,
1098 fprintf(fp
, "# nrcpus online : %u\n", ph
->env
.nr_cpus_online
);
1099 fprintf(fp
, "# nrcpus avail : %u\n", ph
->env
.nr_cpus_avail
);
1102 static void print_version(struct perf_header
*ph
, int fd __maybe_unused
,
1105 fprintf(fp
, "# perf version : %s\n", ph
->env
.version
);
1108 static void print_cmdline(struct perf_header
*ph
, int fd __maybe_unused
,
1113 nr
= ph
->env
.nr_cmdline
;
1115 fprintf(fp
, "# cmdline : ");
1117 for (i
= 0; i
< nr
; i
++)
1118 fprintf(fp
, "%s ", ph
->env
.cmdline_argv
[i
]);
1122 static void print_cpu_topology(struct perf_header
*ph
, int fd __maybe_unused
,
1127 int cpu_nr
= ph
->env
.nr_cpus_online
;
1129 nr
= ph
->env
.nr_sibling_cores
;
1130 str
= ph
->env
.sibling_cores
;
1132 for (i
= 0; i
< nr
; i
++) {
1133 fprintf(fp
, "# sibling cores : %s\n", str
);
1134 str
+= strlen(str
) + 1;
1137 nr
= ph
->env
.nr_sibling_threads
;
1138 str
= ph
->env
.sibling_threads
;
1140 for (i
= 0; i
< nr
; i
++) {
1141 fprintf(fp
, "# sibling threads : %s\n", str
);
1142 str
+= strlen(str
) + 1;
1145 if (ph
->env
.cpu
!= NULL
) {
1146 for (i
= 0; i
< cpu_nr
; i
++)
1147 fprintf(fp
, "# CPU %d: Core ID %d, Socket ID %d\n", i
,
1148 ph
->env
.cpu
[i
].core_id
, ph
->env
.cpu
[i
].socket_id
);
1150 fprintf(fp
, "# Core ID and Socket ID information is not available\n");
1153 static void free_event_desc(struct perf_evsel
*events
)
1155 struct perf_evsel
*evsel
;
1160 for (evsel
= events
; evsel
->attr
.size
; evsel
++) {
1161 zfree(&evsel
->name
);
1168 static struct perf_evsel
*
1169 read_event_desc(struct perf_header
*ph
, int fd
)
1171 struct perf_evsel
*evsel
, *events
= NULL
;
1174 u32 nre
, sz
, nr
, i
, j
;
1178 /* number of events */
1179 ret
= readn(fd
, &nre
, sizeof(nre
));
1180 if (ret
!= (ssize_t
)sizeof(nre
))
1184 nre
= bswap_32(nre
);
1186 ret
= readn(fd
, &sz
, sizeof(sz
));
1187 if (ret
!= (ssize_t
)sizeof(sz
))
1193 /* buffer to hold on file attr struct */
1198 /* the last event terminates with evsel->attr.size == 0: */
1199 events
= calloc(nre
+ 1, sizeof(*events
));
1203 msz
= sizeof(evsel
->attr
);
1207 for (i
= 0, evsel
= events
; i
< nre
; evsel
++, i
++) {
1211 * must read entire on-file attr struct to
1212 * sync up with layout.
1214 ret
= readn(fd
, buf
, sz
);
1215 if (ret
!= (ssize_t
)sz
)
1219 perf_event__attr_swap(buf
);
1221 memcpy(&evsel
->attr
, buf
, msz
);
1223 ret
= readn(fd
, &nr
, sizeof(nr
));
1224 if (ret
!= (ssize_t
)sizeof(nr
))
1227 if (ph
->needs_swap
) {
1229 evsel
->needs_swap
= true;
1232 evsel
->name
= do_read_string(fd
, ph
);
1237 id
= calloc(nr
, sizeof(*id
));
1243 for (j
= 0 ; j
< nr
; j
++) {
1244 ret
= readn(fd
, id
, sizeof(*id
));
1245 if (ret
!= (ssize_t
)sizeof(*id
))
1248 *id
= bswap_64(*id
);
1256 free_event_desc(events
);
1261 static int __desc_attr__fprintf(FILE *fp
, const char *name
, const char *val
,
1262 void *priv
__attribute__((unused
)))
1264 return fprintf(fp
, ", %s = %s", name
, val
);
1267 static void print_event_desc(struct perf_header
*ph
, int fd
, FILE *fp
)
1269 struct perf_evsel
*evsel
, *events
= read_event_desc(ph
, fd
);
1274 fprintf(fp
, "# event desc: not available or unable to read\n");
1278 for (evsel
= events
; evsel
->attr
.size
; evsel
++) {
1279 fprintf(fp
, "# event : name = %s, ", evsel
->name
);
1282 fprintf(fp
, ", id = {");
1283 for (j
= 0, id
= evsel
->id
; j
< evsel
->ids
; j
++, id
++) {
1286 fprintf(fp
, " %"PRIu64
, *id
);
1291 perf_event_attr__fprintf(fp
, &evsel
->attr
, __desc_attr__fprintf
, NULL
);
1296 free_event_desc(events
);
1299 static void print_total_mem(struct perf_header
*ph
, int fd __maybe_unused
,
1302 fprintf(fp
, "# total memory : %Lu kB\n", ph
->env
.total_mem
);
1305 static void print_numa_topology(struct perf_header
*ph
, int fd __maybe_unused
,
1309 struct numa_node
*n
;
1311 for (i
= 0; i
< ph
->env
.nr_numa_nodes
; i
++) {
1312 n
= &ph
->env
.numa_nodes
[i
];
1314 fprintf(fp
, "# node%u meminfo : total = %"PRIu64
" kB,"
1315 " free = %"PRIu64
" kB\n",
1316 n
->node
, n
->mem_total
, n
->mem_free
);
1318 fprintf(fp
, "# node%u cpu list : ", n
->node
);
1319 cpu_map__fprintf(n
->map
, fp
);
1323 static void print_cpuid(struct perf_header
*ph
, int fd __maybe_unused
, FILE *fp
)
1325 fprintf(fp
, "# cpuid : %s\n", ph
->env
.cpuid
);
1328 static void print_branch_stack(struct perf_header
*ph __maybe_unused
,
1329 int fd __maybe_unused
, FILE *fp
)
1331 fprintf(fp
, "# contains samples with branch stack\n");
1334 static void print_auxtrace(struct perf_header
*ph __maybe_unused
,
1335 int fd __maybe_unused
, FILE *fp
)
1337 fprintf(fp
, "# contains AUX area data (e.g. instruction trace)\n");
1340 static void print_stat(struct perf_header
*ph __maybe_unused
,
1341 int fd __maybe_unused
, FILE *fp
)
1343 fprintf(fp
, "# contains stat data\n");
1346 static void print_cache(struct perf_header
*ph __maybe_unused
,
1347 int fd __maybe_unused
, FILE *fp __maybe_unused
)
1351 fprintf(fp
, "# CPU cache info:\n");
1352 for (i
= 0; i
< ph
->env
.caches_cnt
; i
++) {
1354 cpu_cache_level__fprintf(fp
, &ph
->env
.caches
[i
]);
1358 static void print_pmu_mappings(struct perf_header
*ph
, int fd __maybe_unused
,
1361 const char *delimiter
= "# pmu mappings: ";
1366 pmu_num
= ph
->env
.nr_pmu_mappings
;
1368 fprintf(fp
, "# pmu mappings: not available\n");
1372 str
= ph
->env
.pmu_mappings
;
1375 type
= strtoul(str
, &tmp
, 0);
1380 fprintf(fp
, "%s%s = %" PRIu32
, delimiter
, str
, type
);
1383 str
+= strlen(str
) + 1;
1392 fprintf(fp
, "# pmu mappings: unable to read\n");
1395 static void print_group_desc(struct perf_header
*ph
, int fd __maybe_unused
,
1398 struct perf_session
*session
;
1399 struct perf_evsel
*evsel
;
1402 session
= container_of(ph
, struct perf_session
, header
);
1404 evlist__for_each_entry(session
->evlist
, evsel
) {
1405 if (perf_evsel__is_group_leader(evsel
) &&
1406 evsel
->nr_members
> 1) {
1407 fprintf(fp
, "# group: %s{%s", evsel
->group_name
?: "",
1408 perf_evsel__name(evsel
));
1410 nr
= evsel
->nr_members
- 1;
1412 fprintf(fp
, ",%s", perf_evsel__name(evsel
));
1420 static int __event_process_build_id(struct build_id_event
*bev
,
1422 struct perf_session
*session
)
1425 struct machine
*machine
;
1428 enum dso_kernel_type dso_type
;
1430 machine
= perf_session__findnew_machine(session
, bev
->pid
);
1434 cpumode
= bev
->header
.misc
& PERF_RECORD_MISC_CPUMODE_MASK
;
1437 case PERF_RECORD_MISC_KERNEL
:
1438 dso_type
= DSO_TYPE_KERNEL
;
1440 case PERF_RECORD_MISC_GUEST_KERNEL
:
1441 dso_type
= DSO_TYPE_GUEST_KERNEL
;
1443 case PERF_RECORD_MISC_USER
:
1444 case PERF_RECORD_MISC_GUEST_USER
:
1445 dso_type
= DSO_TYPE_USER
;
1451 dso
= machine__findnew_dso(machine
, filename
);
1453 char sbuild_id
[SBUILD_ID_SIZE
];
1455 dso__set_build_id(dso
, &bev
->build_id
);
1457 if (!is_kernel_module(filename
, cpumode
))
1458 dso
->kernel
= dso_type
;
1460 build_id__sprintf(dso
->build_id
, sizeof(dso
->build_id
),
1462 pr_debug("build id event received for %s: %s\n",
1463 dso
->long_name
, sbuild_id
);
1472 static int perf_header__read_build_ids_abi_quirk(struct perf_header
*header
,
1473 int input
, u64 offset
, u64 size
)
1475 struct perf_session
*session
= container_of(header
, struct perf_session
, header
);
1477 struct perf_event_header header
;
1478 u8 build_id
[PERF_ALIGN(BUILD_ID_SIZE
, sizeof(u64
))];
1481 struct build_id_event bev
;
1482 char filename
[PATH_MAX
];
1483 u64 limit
= offset
+ size
;
1485 while (offset
< limit
) {
1488 if (readn(input
, &old_bev
, sizeof(old_bev
)) != sizeof(old_bev
))
1491 if (header
->needs_swap
)
1492 perf_event_header__bswap(&old_bev
.header
);
1494 len
= old_bev
.header
.size
- sizeof(old_bev
);
1495 if (readn(input
, filename
, len
) != len
)
1498 bev
.header
= old_bev
.header
;
1501 * As the pid is the missing value, we need to fill
1502 * it properly. The header.misc value give us nice hint.
1504 bev
.pid
= HOST_KERNEL_ID
;
1505 if (bev
.header
.misc
== PERF_RECORD_MISC_GUEST_USER
||
1506 bev
.header
.misc
== PERF_RECORD_MISC_GUEST_KERNEL
)
1507 bev
.pid
= DEFAULT_GUEST_KERNEL_ID
;
1509 memcpy(bev
.build_id
, old_bev
.build_id
, sizeof(bev
.build_id
));
1510 __event_process_build_id(&bev
, filename
, session
);
1512 offset
+= bev
.header
.size
;
1518 static int perf_header__read_build_ids(struct perf_header
*header
,
1519 int input
, u64 offset
, u64 size
)
1521 struct perf_session
*session
= container_of(header
, struct perf_session
, header
);
1522 struct build_id_event bev
;
1523 char filename
[PATH_MAX
];
1524 u64 limit
= offset
+ size
, orig_offset
= offset
;
1527 while (offset
< limit
) {
1530 if (readn(input
, &bev
, sizeof(bev
)) != sizeof(bev
))
1533 if (header
->needs_swap
)
1534 perf_event_header__bswap(&bev
.header
);
1536 len
= bev
.header
.size
- sizeof(bev
);
1537 if (readn(input
, filename
, len
) != len
)
1540 * The a1645ce1 changeset:
1542 * "perf: 'perf kvm' tool for monitoring guest performance from host"
1544 * Added a field to struct build_id_event that broke the file
1547 * Since the kernel build-id is the first entry, process the
1548 * table using the old format if the well known
1549 * '[kernel.kallsyms]' string for the kernel build-id has the
1550 * first 4 characters chopped off (where the pid_t sits).
1552 if (memcmp(filename
, "nel.kallsyms]", 13) == 0) {
1553 if (lseek(input
, orig_offset
, SEEK_SET
) == (off_t
)-1)
1555 return perf_header__read_build_ids_abi_quirk(header
, input
, offset
, size
);
1558 __event_process_build_id(&bev
, filename
, session
);
1560 offset
+= bev
.header
.size
;
1567 static int process_tracing_data(struct perf_file_section
*section __maybe_unused
,
1568 struct perf_header
*ph __maybe_unused
,
1571 ssize_t ret
= trace_report(fd
, data
, false);
1572 return ret
< 0 ? -1 : 0;
1575 static int process_build_id(struct perf_file_section
*section
,
1576 struct perf_header
*ph
, int fd
,
1577 void *data __maybe_unused
)
1579 if (perf_header__read_build_ids(ph
, fd
, section
->offset
, section
->size
))
1580 pr_debug("Failed to read buildids, continuing...\n");
1584 static int process_hostname(struct perf_file_section
*section __maybe_unused
,
1585 struct perf_header
*ph
, int fd
,
1586 void *data __maybe_unused
)
1588 ph
->env
.hostname
= do_read_string(fd
, ph
);
1589 return ph
->env
.hostname
? 0 : -ENOMEM
;
1592 static int process_osrelease(struct perf_file_section
*section __maybe_unused
,
1593 struct perf_header
*ph
, int fd
,
1594 void *data __maybe_unused
)
1596 ph
->env
.os_release
= do_read_string(fd
, ph
);
1597 return ph
->env
.os_release
? 0 : -ENOMEM
;
1600 static int process_version(struct perf_file_section
*section __maybe_unused
,
1601 struct perf_header
*ph
, int fd
,
1602 void *data __maybe_unused
)
1604 ph
->env
.version
= do_read_string(fd
, ph
);
1605 return ph
->env
.version
? 0 : -ENOMEM
;
1608 static int process_arch(struct perf_file_section
*section __maybe_unused
,
1609 struct perf_header
*ph
, int fd
,
1610 void *data __maybe_unused
)
1612 ph
->env
.arch
= do_read_string(fd
, ph
);
1613 return ph
->env
.arch
? 0 : -ENOMEM
;
1616 static int process_nrcpus(struct perf_file_section
*section __maybe_unused
,
1617 struct perf_header
*ph
, int fd
,
1618 void *data __maybe_unused
)
1623 ret
= readn(fd
, &nr
, sizeof(nr
));
1624 if (ret
!= sizeof(nr
))
1630 ph
->env
.nr_cpus_avail
= nr
;
1632 ret
= readn(fd
, &nr
, sizeof(nr
));
1633 if (ret
!= sizeof(nr
))
1639 ph
->env
.nr_cpus_online
= nr
;
1643 static int process_cpudesc(struct perf_file_section
*section __maybe_unused
,
1644 struct perf_header
*ph
, int fd
,
1645 void *data __maybe_unused
)
1647 ph
->env
.cpu_desc
= do_read_string(fd
, ph
);
1648 return ph
->env
.cpu_desc
? 0 : -ENOMEM
;
1651 static int process_cpuid(struct perf_file_section
*section __maybe_unused
,
1652 struct perf_header
*ph
, int fd
,
1653 void *data __maybe_unused
)
1655 ph
->env
.cpuid
= do_read_string(fd
, ph
);
1656 return ph
->env
.cpuid
? 0 : -ENOMEM
;
1659 static int process_total_mem(struct perf_file_section
*section __maybe_unused
,
1660 struct perf_header
*ph
, int fd
,
1661 void *data __maybe_unused
)
1666 ret
= readn(fd
, &mem
, sizeof(mem
));
1667 if (ret
!= sizeof(mem
))
1671 mem
= bswap_64(mem
);
1673 ph
->env
.total_mem
= mem
;
1677 static struct perf_evsel
*
1678 perf_evlist__find_by_index(struct perf_evlist
*evlist
, int idx
)
1680 struct perf_evsel
*evsel
;
1682 evlist__for_each_entry(evlist
, evsel
) {
1683 if (evsel
->idx
== idx
)
1691 perf_evlist__set_event_name(struct perf_evlist
*evlist
,
1692 struct perf_evsel
*event
)
1694 struct perf_evsel
*evsel
;
1699 evsel
= perf_evlist__find_by_index(evlist
, event
->idx
);
1706 evsel
->name
= strdup(event
->name
);
1710 process_event_desc(struct perf_file_section
*section __maybe_unused
,
1711 struct perf_header
*header
, int fd
,
1712 void *data __maybe_unused
)
1714 struct perf_session
*session
;
1715 struct perf_evsel
*evsel
, *events
= read_event_desc(header
, fd
);
1720 session
= container_of(header
, struct perf_session
, header
);
1721 for (evsel
= events
; evsel
->attr
.size
; evsel
++)
1722 perf_evlist__set_event_name(session
->evlist
, evsel
);
1724 free_event_desc(events
);
1729 static int process_cmdline(struct perf_file_section
*section
,
1730 struct perf_header
*ph
, int fd
,
1731 void *data __maybe_unused
)
1734 char *str
, *cmdline
= NULL
, **argv
= NULL
;
1737 ret
= readn(fd
, &nr
, sizeof(nr
));
1738 if (ret
!= sizeof(nr
))
1744 ph
->env
.nr_cmdline
= nr
;
1746 cmdline
= zalloc(section
->size
+ nr
+ 1);
1750 argv
= zalloc(sizeof(char *) * (nr
+ 1));
1754 for (i
= 0; i
< nr
; i
++) {
1755 str
= do_read_string(fd
, ph
);
1759 argv
[i
] = cmdline
+ len
;
1760 memcpy(argv
[i
], str
, strlen(str
) + 1);
1761 len
+= strlen(str
) + 1;
1764 ph
->env
.cmdline
= cmdline
;
1765 ph
->env
.cmdline_argv
= (const char **) argv
;
1774 static int process_cpu_topology(struct perf_file_section
*section
,
1775 struct perf_header
*ph
, int fd
,
1776 void *data __maybe_unused
)
1782 int cpu_nr
= ph
->env
.nr_cpus_online
;
1785 ph
->env
.cpu
= calloc(cpu_nr
, sizeof(*ph
->env
.cpu
));
1789 ret
= readn(fd
, &nr
, sizeof(nr
));
1790 if (ret
!= sizeof(nr
))
1796 ph
->env
.nr_sibling_cores
= nr
;
1797 size
+= sizeof(u32
);
1798 if (strbuf_init(&sb
, 128) < 0)
1801 for (i
= 0; i
< nr
; i
++) {
1802 str
= do_read_string(fd
, ph
);
1806 /* include a NULL character at the end */
1807 if (strbuf_add(&sb
, str
, strlen(str
) + 1) < 0)
1809 size
+= string_size(str
);
1812 ph
->env
.sibling_cores
= strbuf_detach(&sb
, NULL
);
1814 ret
= readn(fd
, &nr
, sizeof(nr
));
1815 if (ret
!= sizeof(nr
))
1821 ph
->env
.nr_sibling_threads
= nr
;
1822 size
+= sizeof(u32
);
1824 for (i
= 0; i
< nr
; i
++) {
1825 str
= do_read_string(fd
, ph
);
1829 /* include a NULL character at the end */
1830 if (strbuf_add(&sb
, str
, strlen(str
) + 1) < 0)
1832 size
+= string_size(str
);
1835 ph
->env
.sibling_threads
= strbuf_detach(&sb
, NULL
);
1838 * The header may be from old perf,
1839 * which doesn't include core id and socket id information.
1841 if (section
->size
<= size
) {
1842 zfree(&ph
->env
.cpu
);
1846 for (i
= 0; i
< (u32
)cpu_nr
; i
++) {
1847 ret
= readn(fd
, &nr
, sizeof(nr
));
1848 if (ret
!= sizeof(nr
))
1854 ph
->env
.cpu
[i
].core_id
= nr
;
1856 ret
= readn(fd
, &nr
, sizeof(nr
));
1857 if (ret
!= sizeof(nr
))
1863 if (nr
> (u32
)cpu_nr
) {
1864 pr_debug("socket_id number is too big."
1865 "You may need to upgrade the perf tool.\n");
1869 ph
->env
.cpu
[i
].socket_id
= nr
;
1875 strbuf_release(&sb
);
1877 zfree(&ph
->env
.cpu
);
1881 static int process_numa_topology(struct perf_file_section
*section __maybe_unused
,
1882 struct perf_header
*ph
, int fd
,
1883 void *data __maybe_unused
)
1885 struct numa_node
*nodes
, *n
;
1891 ret
= readn(fd
, &nr
, sizeof(nr
));
1892 if (ret
!= sizeof(nr
))
1898 nodes
= zalloc(sizeof(*nodes
) * nr
);
1902 for (i
= 0; i
< nr
; i
++) {
1906 ret
= readn(fd
, &n
->node
, sizeof(u32
));
1907 if (ret
!= sizeof(n
->node
))
1910 ret
= readn(fd
, &n
->mem_total
, sizeof(u64
));
1911 if (ret
!= sizeof(u64
))
1914 ret
= readn(fd
, &n
->mem_free
, sizeof(u64
));
1915 if (ret
!= sizeof(u64
))
1918 if (ph
->needs_swap
) {
1919 n
->node
= bswap_32(n
->node
);
1920 n
->mem_total
= bswap_64(n
->mem_total
);
1921 n
->mem_free
= bswap_64(n
->mem_free
);
1924 str
= do_read_string(fd
, ph
);
1928 n
->map
= cpu_map__new(str
);
1934 ph
->env
.nr_numa_nodes
= nr
;
1935 ph
->env
.numa_nodes
= nodes
;
1943 static int process_pmu_mappings(struct perf_file_section
*section __maybe_unused
,
1944 struct perf_header
*ph
, int fd
,
1945 void *data __maybe_unused
)
1953 ret
= readn(fd
, &pmu_num
, sizeof(pmu_num
));
1954 if (ret
!= sizeof(pmu_num
))
1958 pmu_num
= bswap_32(pmu_num
);
1961 pr_debug("pmu mappings not available\n");
1965 ph
->env
.nr_pmu_mappings
= pmu_num
;
1966 if (strbuf_init(&sb
, 128) < 0)
1970 if (readn(fd
, &type
, sizeof(type
)) != sizeof(type
))
1973 type
= bswap_32(type
);
1975 name
= do_read_string(fd
, ph
);
1979 if (strbuf_addf(&sb
, "%u:%s", type
, name
) < 0)
1981 /* include a NULL character at the end */
1982 if (strbuf_add(&sb
, "", 1) < 0)
1985 if (!strcmp(name
, "msr"))
1986 ph
->env
.msr_pmu_type
= type
;
1991 ph
->env
.pmu_mappings
= strbuf_detach(&sb
, NULL
);
1995 strbuf_release(&sb
);
1999 static int process_group_desc(struct perf_file_section
*section __maybe_unused
,
2000 struct perf_header
*ph
, int fd
,
2001 void *data __maybe_unused
)
2004 u32 i
, nr
, nr_groups
;
2005 struct perf_session
*session
;
2006 struct perf_evsel
*evsel
, *leader
= NULL
;
2013 if (readn(fd
, &nr_groups
, sizeof(nr_groups
)) != sizeof(nr_groups
))
2017 nr_groups
= bswap_32(nr_groups
);
2019 ph
->env
.nr_groups
= nr_groups
;
2021 pr_debug("group desc not available\n");
2025 desc
= calloc(nr_groups
, sizeof(*desc
));
2029 for (i
= 0; i
< nr_groups
; i
++) {
2030 desc
[i
].name
= do_read_string(fd
, ph
);
2034 if (readn(fd
, &desc
[i
].leader_idx
, sizeof(u32
)) != sizeof(u32
))
2037 if (readn(fd
, &desc
[i
].nr_members
, sizeof(u32
)) != sizeof(u32
))
2040 if (ph
->needs_swap
) {
2041 desc
[i
].leader_idx
= bswap_32(desc
[i
].leader_idx
);
2042 desc
[i
].nr_members
= bswap_32(desc
[i
].nr_members
);
2047 * Rebuild group relationship based on the group_desc
2049 session
= container_of(ph
, struct perf_session
, header
);
2050 session
->evlist
->nr_groups
= nr_groups
;
2053 evlist__for_each_entry(session
->evlist
, evsel
) {
2054 if (evsel
->idx
== (int) desc
[i
].leader_idx
) {
2055 evsel
->leader
= evsel
;
2056 /* {anon_group} is a dummy name */
2057 if (strcmp(desc
[i
].name
, "{anon_group}")) {
2058 evsel
->group_name
= desc
[i
].name
;
2059 desc
[i
].name
= NULL
;
2061 evsel
->nr_members
= desc
[i
].nr_members
;
2063 if (i
>= nr_groups
|| nr
> 0) {
2064 pr_debug("invalid group desc\n");
2069 nr
= evsel
->nr_members
- 1;
2072 /* This is a group member */
2073 evsel
->leader
= leader
;
2079 if (i
!= nr_groups
|| nr
!= 0) {
2080 pr_debug("invalid group desc\n");
2086 for (i
= 0; i
< nr_groups
; i
++)
2087 zfree(&desc
[i
].name
);
2093 static int process_auxtrace(struct perf_file_section
*section
,
2094 struct perf_header
*ph
, int fd
,
2095 void *data __maybe_unused
)
2097 struct perf_session
*session
;
2100 session
= container_of(ph
, struct perf_session
, header
);
2102 err
= auxtrace_index__process(fd
, section
->size
, session
,
2105 pr_err("Failed to process auxtrace index\n");
2109 static int process_cache(struct perf_file_section
*section __maybe_unused
,
2110 struct perf_header
*ph __maybe_unused
, int fd __maybe_unused
,
2111 void *data __maybe_unused
)
2113 struct cpu_cache_level
*caches
;
2114 u32 cnt
, i
, version
;
2116 if (readn(fd
, &version
, sizeof(version
)) != sizeof(version
))
2120 version
= bswap_32(version
);
2125 if (readn(fd
, &cnt
, sizeof(cnt
)) != sizeof(cnt
))
2129 cnt
= bswap_32(cnt
);
2131 caches
= zalloc(sizeof(*caches
) * cnt
);
2135 for (i
= 0; i
< cnt
; i
++) {
2136 struct cpu_cache_level c
;
2139 if (readn(fd, &c.v, sizeof(u32)) != sizeof(u32))\
2140 goto out_free_caches; \
2141 if (ph->needs_swap) \
2142 c.v = bswap_32(c.v); \
2151 c.v = do_read_string(fd, ph); \
2153 goto out_free_caches;
2163 ph
->env
.caches
= caches
;
2164 ph
->env
.caches_cnt
= cnt
;
2171 struct feature_ops
{
2172 int (*write
)(int fd
, struct perf_header
*h
, struct perf_evlist
*evlist
);
2173 void (*print
)(struct perf_header
*h
, int fd
, FILE *fp
);
2174 int (*process
)(struct perf_file_section
*section
,
2175 struct perf_header
*h
, int fd
, void *data
);
2180 #define FEAT_OPA(n, func) \
2181 [n] = { .name = #n, .write = write_##func, .print = print_##func }
2182 #define FEAT_OPP(n, func) \
2183 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
2184 .process = process_##func }
2185 #define FEAT_OPF(n, func) \
2186 [n] = { .name = #n, .write = write_##func, .print = print_##func, \
2187 .process = process_##func, .full_only = true }
2189 /* feature_ops not implemented: */
2190 #define print_tracing_data NULL
2191 #define print_build_id NULL
2193 static const struct feature_ops feat_ops
[HEADER_LAST_FEATURE
] = {
2194 FEAT_OPP(HEADER_TRACING_DATA
, tracing_data
),
2195 FEAT_OPP(HEADER_BUILD_ID
, build_id
),
2196 FEAT_OPP(HEADER_HOSTNAME
, hostname
),
2197 FEAT_OPP(HEADER_OSRELEASE
, osrelease
),
2198 FEAT_OPP(HEADER_VERSION
, version
),
2199 FEAT_OPP(HEADER_ARCH
, arch
),
2200 FEAT_OPP(HEADER_NRCPUS
, nrcpus
),
2201 FEAT_OPP(HEADER_CPUDESC
, cpudesc
),
2202 FEAT_OPP(HEADER_CPUID
, cpuid
),
2203 FEAT_OPP(HEADER_TOTAL_MEM
, total_mem
),
2204 FEAT_OPP(HEADER_EVENT_DESC
, event_desc
),
2205 FEAT_OPP(HEADER_CMDLINE
, cmdline
),
2206 FEAT_OPF(HEADER_CPU_TOPOLOGY
, cpu_topology
),
2207 FEAT_OPF(HEADER_NUMA_TOPOLOGY
, numa_topology
),
2208 FEAT_OPA(HEADER_BRANCH_STACK
, branch_stack
),
2209 FEAT_OPP(HEADER_PMU_MAPPINGS
, pmu_mappings
),
2210 FEAT_OPP(HEADER_GROUP_DESC
, group_desc
),
2211 FEAT_OPP(HEADER_AUXTRACE
, auxtrace
),
2212 FEAT_OPA(HEADER_STAT
, stat
),
2213 FEAT_OPF(HEADER_CACHE
, cache
),
2216 struct header_print_data
{
2218 bool full
; /* extended list of headers */
2221 static int perf_file_section__fprintf_info(struct perf_file_section
*section
,
2222 struct perf_header
*ph
,
2223 int feat
, int fd
, void *data
)
2225 struct header_print_data
*hd
= data
;
2227 if (lseek(fd
, section
->offset
, SEEK_SET
) == (off_t
)-1) {
2228 pr_debug("Failed to lseek to %" PRIu64
" offset for feature "
2229 "%d, continuing...\n", section
->offset
, feat
);
2232 if (feat
>= HEADER_LAST_FEATURE
) {
2233 pr_warning("unknown feature %d\n", feat
);
2236 if (!feat_ops
[feat
].print
)
2239 if (!feat_ops
[feat
].full_only
|| hd
->full
)
2240 feat_ops
[feat
].print(ph
, fd
, hd
->fp
);
2242 fprintf(hd
->fp
, "# %s info available, use -I to display\n",
2243 feat_ops
[feat
].name
);
2248 int perf_header__fprintf_info(struct perf_session
*session
, FILE *fp
, bool full
)
2250 struct header_print_data hd
;
2251 struct perf_header
*header
= &session
->header
;
2252 int fd
= perf_data_file__fd(session
->file
);
2256 perf_header__process_sections(header
, fd
, &hd
,
2257 perf_file_section__fprintf_info
);
2261 static int do_write_feat(int fd
, struct perf_header
*h
, int type
,
2262 struct perf_file_section
**p
,
2263 struct perf_evlist
*evlist
)
2268 if (perf_header__has_feat(h
, type
)) {
2269 if (!feat_ops
[type
].write
)
2272 (*p
)->offset
= lseek(fd
, 0, SEEK_CUR
);
2274 err
= feat_ops
[type
].write(fd
, h
, evlist
);
2276 pr_debug("failed to write feature %d\n", type
);
2278 /* undo anything written */
2279 lseek(fd
, (*p
)->offset
, SEEK_SET
);
2283 (*p
)->size
= lseek(fd
, 0, SEEK_CUR
) - (*p
)->offset
;
2289 static int perf_header__adds_write(struct perf_header
*header
,
2290 struct perf_evlist
*evlist
, int fd
)
2293 struct perf_file_section
*feat_sec
, *p
;
2299 nr_sections
= bitmap_weight(header
->adds_features
, HEADER_FEAT_BITS
);
2303 feat_sec
= p
= calloc(nr_sections
, sizeof(*feat_sec
));
2304 if (feat_sec
== NULL
)
2307 sec_size
= sizeof(*feat_sec
) * nr_sections
;
2309 sec_start
= header
->feat_offset
;
2310 lseek(fd
, sec_start
+ sec_size
, SEEK_SET
);
2312 for_each_set_bit(feat
, header
->adds_features
, HEADER_FEAT_BITS
) {
2313 if (do_write_feat(fd
, header
, feat
, &p
, evlist
))
2314 perf_header__clear_feat(header
, feat
);
2317 lseek(fd
, sec_start
, SEEK_SET
);
2319 * may write more than needed due to dropped feature, but
2320 * this is okay, reader will skip the mising entries
2322 err
= do_write(fd
, feat_sec
, sec_size
);
2324 pr_debug("failed to write feature section\n");
2329 int perf_header__write_pipe(int fd
)
2331 struct perf_pipe_file_header f_header
;
2334 f_header
= (struct perf_pipe_file_header
){
2335 .magic
= PERF_MAGIC
,
2336 .size
= sizeof(f_header
),
2339 err
= do_write(fd
, &f_header
, sizeof(f_header
));
2341 pr_debug("failed to write perf pipe header\n");
2348 int perf_session__write_header(struct perf_session
*session
,
2349 struct perf_evlist
*evlist
,
2350 int fd
, bool at_exit
)
2352 struct perf_file_header f_header
;
2353 struct perf_file_attr f_attr
;
2354 struct perf_header
*header
= &session
->header
;
2355 struct perf_evsel
*evsel
;
2359 lseek(fd
, sizeof(f_header
), SEEK_SET
);
2361 evlist__for_each_entry(session
->evlist
, evsel
) {
2362 evsel
->id_offset
= lseek(fd
, 0, SEEK_CUR
);
2363 err
= do_write(fd
, evsel
->id
, evsel
->ids
* sizeof(u64
));
2365 pr_debug("failed to write perf header\n");
2370 attr_offset
= lseek(fd
, 0, SEEK_CUR
);
2372 evlist__for_each_entry(evlist
, evsel
) {
2373 f_attr
= (struct perf_file_attr
){
2374 .attr
= evsel
->attr
,
2376 .offset
= evsel
->id_offset
,
2377 .size
= evsel
->ids
* sizeof(u64
),
2380 err
= do_write(fd
, &f_attr
, sizeof(f_attr
));
2382 pr_debug("failed to write perf header attribute\n");
2387 if (!header
->data_offset
)
2388 header
->data_offset
= lseek(fd
, 0, SEEK_CUR
);
2389 header
->feat_offset
= header
->data_offset
+ header
->data_size
;
2392 err
= perf_header__adds_write(header
, evlist
, fd
);
2397 f_header
= (struct perf_file_header
){
2398 .magic
= PERF_MAGIC
,
2399 .size
= sizeof(f_header
),
2400 .attr_size
= sizeof(f_attr
),
2402 .offset
= attr_offset
,
2403 .size
= evlist
->nr_entries
* sizeof(f_attr
),
2406 .offset
= header
->data_offset
,
2407 .size
= header
->data_size
,
2409 /* event_types is ignored, store zeros */
2412 memcpy(&f_header
.adds_features
, &header
->adds_features
, sizeof(header
->adds_features
));
2414 lseek(fd
, 0, SEEK_SET
);
2415 err
= do_write(fd
, &f_header
, sizeof(f_header
));
2417 pr_debug("failed to write perf header\n");
2420 lseek(fd
, header
->data_offset
+ header
->data_size
, SEEK_SET
);
2425 static int perf_header__getbuffer64(struct perf_header
*header
,
2426 int fd
, void *buf
, size_t size
)
2428 if (readn(fd
, buf
, size
) <= 0)
2431 if (header
->needs_swap
)
2432 mem_bswap_64(buf
, size
);
2437 int perf_header__process_sections(struct perf_header
*header
, int fd
,
2439 int (*process
)(struct perf_file_section
*section
,
2440 struct perf_header
*ph
,
2441 int feat
, int fd
, void *data
))
2443 struct perf_file_section
*feat_sec
, *sec
;
2449 nr_sections
= bitmap_weight(header
->adds_features
, HEADER_FEAT_BITS
);
2453 feat_sec
= sec
= calloc(nr_sections
, sizeof(*feat_sec
));
2457 sec_size
= sizeof(*feat_sec
) * nr_sections
;
2459 lseek(fd
, header
->feat_offset
, SEEK_SET
);
2461 err
= perf_header__getbuffer64(header
, fd
, feat_sec
, sec_size
);
2465 for_each_set_bit(feat
, header
->adds_features
, HEADER_LAST_FEATURE
) {
2466 err
= process(sec
++, header
, feat
, fd
, data
);
2476 static const int attr_file_abi_sizes
[] = {
2477 [0] = PERF_ATTR_SIZE_VER0
,
2478 [1] = PERF_ATTR_SIZE_VER1
,
2479 [2] = PERF_ATTR_SIZE_VER2
,
2480 [3] = PERF_ATTR_SIZE_VER3
,
2481 [4] = PERF_ATTR_SIZE_VER4
,
2486 * In the legacy file format, the magic number is not used to encode endianness.
2487 * hdr_sz was used to encode endianness. But given that hdr_sz can vary based
2488 * on ABI revisions, we need to try all combinations for all endianness to
2489 * detect the endianness.
2491 static int try_all_file_abis(uint64_t hdr_sz
, struct perf_header
*ph
)
2493 uint64_t ref_size
, attr_size
;
2496 for (i
= 0 ; attr_file_abi_sizes
[i
]; i
++) {
2497 ref_size
= attr_file_abi_sizes
[i
]
2498 + sizeof(struct perf_file_section
);
2499 if (hdr_sz
!= ref_size
) {
2500 attr_size
= bswap_64(hdr_sz
);
2501 if (attr_size
!= ref_size
)
2504 ph
->needs_swap
= true;
2506 pr_debug("ABI%d perf.data file detected, need_swap=%d\n",
2511 /* could not determine endianness */
2515 #define PERF_PIPE_HDR_VER0 16
2517 static const size_t attr_pipe_abi_sizes
[] = {
2518 [0] = PERF_PIPE_HDR_VER0
,
2523 * In the legacy pipe format, there is an implicit assumption that endiannesss
2524 * between host recording the samples, and host parsing the samples is the
2525 * same. This is not always the case given that the pipe output may always be
2526 * redirected into a file and analyzed on a different machine with possibly a
2527 * different endianness and perf_event ABI revsions in the perf tool itself.
2529 static int try_all_pipe_abis(uint64_t hdr_sz
, struct perf_header
*ph
)
2534 for (i
= 0 ; attr_pipe_abi_sizes
[i
]; i
++) {
2535 if (hdr_sz
!= attr_pipe_abi_sizes
[i
]) {
2536 attr_size
= bswap_64(hdr_sz
);
2537 if (attr_size
!= hdr_sz
)
2540 ph
->needs_swap
= true;
2542 pr_debug("Pipe ABI%d perf.data file detected\n", i
);
2548 bool is_perf_magic(u64 magic
)
2550 if (!memcmp(&magic
, __perf_magic1
, sizeof(magic
))
2551 || magic
== __perf_magic2
2552 || magic
== __perf_magic2_sw
)
2558 static int check_magic_endian(u64 magic
, uint64_t hdr_sz
,
2559 bool is_pipe
, struct perf_header
*ph
)
2563 /* check for legacy format */
2564 ret
= memcmp(&magic
, __perf_magic1
, sizeof(magic
));
2566 ph
->version
= PERF_HEADER_VERSION_1
;
2567 pr_debug("legacy perf.data format\n");
2569 return try_all_pipe_abis(hdr_sz
, ph
);
2571 return try_all_file_abis(hdr_sz
, ph
);
2574 * the new magic number serves two purposes:
2575 * - unique number to identify actual perf.data files
2576 * - encode endianness of file
2578 ph
->version
= PERF_HEADER_VERSION_2
;
2580 /* check magic number with one endianness */
2581 if (magic
== __perf_magic2
)
2584 /* check magic number with opposite endianness */
2585 if (magic
!= __perf_magic2_sw
)
2588 ph
->needs_swap
= true;
2593 int perf_file_header__read(struct perf_file_header
*header
,
2594 struct perf_header
*ph
, int fd
)
2598 lseek(fd
, 0, SEEK_SET
);
2600 ret
= readn(fd
, header
, sizeof(*header
));
2604 if (check_magic_endian(header
->magic
,
2605 header
->attr_size
, false, ph
) < 0) {
2606 pr_debug("magic/endian check failed\n");
2610 if (ph
->needs_swap
) {
2611 mem_bswap_64(header
, offsetof(struct perf_file_header
,
2615 if (header
->size
!= sizeof(*header
)) {
2616 /* Support the previous format */
2617 if (header
->size
== offsetof(typeof(*header
), adds_features
))
2618 bitmap_zero(header
->adds_features
, HEADER_FEAT_BITS
);
2621 } else if (ph
->needs_swap
) {
2623 * feature bitmap is declared as an array of unsigned longs --
2624 * not good since its size can differ between the host that
2625 * generated the data file and the host analyzing the file.
2627 * We need to handle endianness, but we don't know the size of
2628 * the unsigned long where the file was generated. Take a best
2629 * guess at determining it: try 64-bit swap first (ie., file
2630 * created on a 64-bit host), and check if the hostname feature
2631 * bit is set (this feature bit is forced on as of fbe96f2).
2632 * If the bit is not, undo the 64-bit swap and try a 32-bit
2633 * swap. If the hostname bit is still not set (e.g., older data
2634 * file), punt and fallback to the original behavior --
2635 * clearing all feature bits and setting buildid.
2637 mem_bswap_64(&header
->adds_features
,
2638 BITS_TO_U64(HEADER_FEAT_BITS
));
2640 if (!test_bit(HEADER_HOSTNAME
, header
->adds_features
)) {
2642 mem_bswap_64(&header
->adds_features
,
2643 BITS_TO_U64(HEADER_FEAT_BITS
));
2646 mem_bswap_32(&header
->adds_features
,
2647 BITS_TO_U32(HEADER_FEAT_BITS
));
2650 if (!test_bit(HEADER_HOSTNAME
, header
->adds_features
)) {
2651 bitmap_zero(header
->adds_features
, HEADER_FEAT_BITS
);
2652 set_bit(HEADER_BUILD_ID
, header
->adds_features
);
2656 memcpy(&ph
->adds_features
, &header
->adds_features
,
2657 sizeof(ph
->adds_features
));
2659 ph
->data_offset
= header
->data
.offset
;
2660 ph
->data_size
= header
->data
.size
;
2661 ph
->feat_offset
= header
->data
.offset
+ header
->data
.size
;
2665 static int perf_file_section__process(struct perf_file_section
*section
,
2666 struct perf_header
*ph
,
2667 int feat
, int fd
, void *data
)
2669 if (lseek(fd
, section
->offset
, SEEK_SET
) == (off_t
)-1) {
2670 pr_debug("Failed to lseek to %" PRIu64
" offset for feature "
2671 "%d, continuing...\n", section
->offset
, feat
);
2675 if (feat
>= HEADER_LAST_FEATURE
) {
2676 pr_debug("unknown feature %d, continuing...\n", feat
);
2680 if (!feat_ops
[feat
].process
)
2683 return feat_ops
[feat
].process(section
, ph
, fd
, data
);
2686 static int perf_file_header__read_pipe(struct perf_pipe_file_header
*header
,
2687 struct perf_header
*ph
, int fd
,
2692 ret
= readn(fd
, header
, sizeof(*header
));
2696 if (check_magic_endian(header
->magic
, header
->size
, true, ph
) < 0) {
2697 pr_debug("endian/magic failed\n");
2702 header
->size
= bswap_64(header
->size
);
2704 if (repipe
&& do_write(STDOUT_FILENO
, header
, sizeof(*header
)) < 0)
2710 static int perf_header__read_pipe(struct perf_session
*session
)
2712 struct perf_header
*header
= &session
->header
;
2713 struct perf_pipe_file_header f_header
;
2715 if (perf_file_header__read_pipe(&f_header
, header
,
2716 perf_data_file__fd(session
->file
),
2717 session
->repipe
) < 0) {
2718 pr_debug("incompatible file format\n");
2725 static int read_attr(int fd
, struct perf_header
*ph
,
2726 struct perf_file_attr
*f_attr
)
2728 struct perf_event_attr
*attr
= &f_attr
->attr
;
2730 size_t our_sz
= sizeof(f_attr
->attr
);
2733 memset(f_attr
, 0, sizeof(*f_attr
));
2735 /* read minimal guaranteed structure */
2736 ret
= readn(fd
, attr
, PERF_ATTR_SIZE_VER0
);
2738 pr_debug("cannot read %d bytes of header attr\n",
2739 PERF_ATTR_SIZE_VER0
);
2743 /* on file perf_event_attr size */
2751 sz
= PERF_ATTR_SIZE_VER0
;
2752 } else if (sz
> our_sz
) {
2753 pr_debug("file uses a more recent and unsupported ABI"
2754 " (%zu bytes extra)\n", sz
- our_sz
);
2757 /* what we have not yet read and that we know about */
2758 left
= sz
- PERF_ATTR_SIZE_VER0
;
2761 ptr
+= PERF_ATTR_SIZE_VER0
;
2763 ret
= readn(fd
, ptr
, left
);
2765 /* read perf_file_section, ids are read in caller */
2766 ret
= readn(fd
, &f_attr
->ids
, sizeof(f_attr
->ids
));
2768 return ret
<= 0 ? -1 : 0;
2771 static int perf_evsel__prepare_tracepoint_event(struct perf_evsel
*evsel
,
2772 struct pevent
*pevent
)
2774 struct event_format
*event
;
2777 /* already prepared */
2778 if (evsel
->tp_format
)
2781 if (pevent
== NULL
) {
2782 pr_debug("broken or missing trace data\n");
2786 event
= pevent_find_event(pevent
, evsel
->attr
.config
);
2791 snprintf(bf
, sizeof(bf
), "%s:%s", event
->system
, event
->name
);
2792 evsel
->name
= strdup(bf
);
2793 if (evsel
->name
== NULL
)
2797 evsel
->tp_format
= event
;
2801 static int perf_evlist__prepare_tracepoint_events(struct perf_evlist
*evlist
,
2802 struct pevent
*pevent
)
2804 struct perf_evsel
*pos
;
2806 evlist__for_each_entry(evlist
, pos
) {
2807 if (pos
->attr
.type
== PERF_TYPE_TRACEPOINT
&&
2808 perf_evsel__prepare_tracepoint_event(pos
, pevent
))
2815 int perf_session__read_header(struct perf_session
*session
)
2817 struct perf_data_file
*file
= session
->file
;
2818 struct perf_header
*header
= &session
->header
;
2819 struct perf_file_header f_header
;
2820 struct perf_file_attr f_attr
;
2822 int nr_attrs
, nr_ids
, i
, j
;
2823 int fd
= perf_data_file__fd(file
);
2825 session
->evlist
= perf_evlist__new();
2826 if (session
->evlist
== NULL
)
2829 session
->evlist
->env
= &header
->env
;
2830 session
->machines
.host
.env
= &header
->env
;
2831 if (perf_data_file__is_pipe(file
))
2832 return perf_header__read_pipe(session
);
2834 if (perf_file_header__read(&f_header
, header
, fd
) < 0)
2838 * Sanity check that perf.data was written cleanly; data size is
2839 * initialized to 0 and updated only if the on_exit function is run.
2840 * If data size is still 0 then the file contains only partial
2841 * information. Just warn user and process it as much as it can.
2843 if (f_header
.data
.size
== 0) {
2844 pr_warning("WARNING: The %s file's data size field is 0 which is unexpected.\n"
2845 "Was the 'perf record' command properly terminated?\n",
2849 nr_attrs
= f_header
.attrs
.size
/ f_header
.attr_size
;
2850 lseek(fd
, f_header
.attrs
.offset
, SEEK_SET
);
2852 for (i
= 0; i
< nr_attrs
; i
++) {
2853 struct perf_evsel
*evsel
;
2856 if (read_attr(fd
, header
, &f_attr
) < 0)
2859 if (header
->needs_swap
) {
2860 f_attr
.ids
.size
= bswap_64(f_attr
.ids
.size
);
2861 f_attr
.ids
.offset
= bswap_64(f_attr
.ids
.offset
);
2862 perf_event__attr_swap(&f_attr
.attr
);
2865 tmp
= lseek(fd
, 0, SEEK_CUR
);
2866 evsel
= perf_evsel__new(&f_attr
.attr
);
2869 goto out_delete_evlist
;
2871 evsel
->needs_swap
= header
->needs_swap
;
2873 * Do it before so that if perf_evsel__alloc_id fails, this
2874 * entry gets purged too at perf_evlist__delete().
2876 perf_evlist__add(session
->evlist
, evsel
);
2878 nr_ids
= f_attr
.ids
.size
/ sizeof(u64
);
2880 * We don't have the cpu and thread maps on the header, so
2881 * for allocating the perf_sample_id table we fake 1 cpu and
2882 * hattr->ids threads.
2884 if (perf_evsel__alloc_id(evsel
, 1, nr_ids
))
2885 goto out_delete_evlist
;
2887 lseek(fd
, f_attr
.ids
.offset
, SEEK_SET
);
2889 for (j
= 0; j
< nr_ids
; j
++) {
2890 if (perf_header__getbuffer64(header
, fd
, &f_id
, sizeof(f_id
)))
2893 perf_evlist__id_add(session
->evlist
, evsel
, 0, j
, f_id
);
2896 lseek(fd
, tmp
, SEEK_SET
);
2899 symbol_conf
.nr_events
= nr_attrs
;
2901 perf_header__process_sections(header
, fd
, &session
->tevent
,
2902 perf_file_section__process
);
2904 if (perf_evlist__prepare_tracepoint_events(session
->evlist
,
2905 session
->tevent
.pevent
))
2906 goto out_delete_evlist
;
2913 perf_evlist__delete(session
->evlist
);
2914 session
->evlist
= NULL
;
2918 int perf_event__synthesize_attr(struct perf_tool
*tool
,
2919 struct perf_event_attr
*attr
, u32 ids
, u64
*id
,
2920 perf_event__handler_t process
)
2922 union perf_event
*ev
;
2926 size
= sizeof(struct perf_event_attr
);
2927 size
= PERF_ALIGN(size
, sizeof(u64
));
2928 size
+= sizeof(struct perf_event_header
);
2929 size
+= ids
* sizeof(u64
);
2936 ev
->attr
.attr
= *attr
;
2937 memcpy(ev
->attr
.id
, id
, ids
* sizeof(u64
));
2939 ev
->attr
.header
.type
= PERF_RECORD_HEADER_ATTR
;
2940 ev
->attr
.header
.size
= (u16
)size
;
2942 if (ev
->attr
.header
.size
== size
)
2943 err
= process(tool
, ev
, NULL
, NULL
);
2952 static struct event_update_event
*
2953 event_update_event__new(size_t size
, u64 type
, u64 id
)
2955 struct event_update_event
*ev
;
2957 size
+= sizeof(*ev
);
2958 size
= PERF_ALIGN(size
, sizeof(u64
));
2962 ev
->header
.type
= PERF_RECORD_EVENT_UPDATE
;
2963 ev
->header
.size
= (u16
)size
;
2971 perf_event__synthesize_event_update_unit(struct perf_tool
*tool
,
2972 struct perf_evsel
*evsel
,
2973 perf_event__handler_t process
)
2975 struct event_update_event
*ev
;
2976 size_t size
= strlen(evsel
->unit
);
2979 ev
= event_update_event__new(size
+ 1, PERF_EVENT_UPDATE__UNIT
, evsel
->id
[0]);
2983 strncpy(ev
->data
, evsel
->unit
, size
);
2984 err
= process(tool
, (union perf_event
*)ev
, NULL
, NULL
);
2990 perf_event__synthesize_event_update_scale(struct perf_tool
*tool
,
2991 struct perf_evsel
*evsel
,
2992 perf_event__handler_t process
)
2994 struct event_update_event
*ev
;
2995 struct event_update_event_scale
*ev_data
;
2998 ev
= event_update_event__new(sizeof(*ev_data
), PERF_EVENT_UPDATE__SCALE
, evsel
->id
[0]);
3002 ev_data
= (struct event_update_event_scale
*) ev
->data
;
3003 ev_data
->scale
= evsel
->scale
;
3004 err
= process(tool
, (union perf_event
*) ev
, NULL
, NULL
);
3010 perf_event__synthesize_event_update_name(struct perf_tool
*tool
,
3011 struct perf_evsel
*evsel
,
3012 perf_event__handler_t process
)
3014 struct event_update_event
*ev
;
3015 size_t len
= strlen(evsel
->name
);
3018 ev
= event_update_event__new(len
+ 1, PERF_EVENT_UPDATE__NAME
, evsel
->id
[0]);
3022 strncpy(ev
->data
, evsel
->name
, len
);
3023 err
= process(tool
, (union perf_event
*) ev
, NULL
, NULL
);
3029 perf_event__synthesize_event_update_cpus(struct perf_tool
*tool
,
3030 struct perf_evsel
*evsel
,
3031 perf_event__handler_t process
)
3033 size_t size
= sizeof(struct event_update_event
);
3034 struct event_update_event
*ev
;
3038 if (!evsel
->own_cpus
)
3041 ev
= cpu_map_data__alloc(evsel
->own_cpus
, &size
, &type
, &max
);
3045 ev
->header
.type
= PERF_RECORD_EVENT_UPDATE
;
3046 ev
->header
.size
= (u16
)size
;
3047 ev
->type
= PERF_EVENT_UPDATE__CPUS
;
3048 ev
->id
= evsel
->id
[0];
3050 cpu_map_data__synthesize((struct cpu_map_data
*) ev
->data
,
3054 err
= process(tool
, (union perf_event
*) ev
, NULL
, NULL
);
3059 size_t perf_event__fprintf_event_update(union perf_event
*event
, FILE *fp
)
3061 struct event_update_event
*ev
= &event
->event_update
;
3062 struct event_update_event_scale
*ev_scale
;
3063 struct event_update_event_cpus
*ev_cpus
;
3064 struct cpu_map
*map
;
3067 ret
= fprintf(fp
, "\n... id: %" PRIu64
"\n", ev
->id
);
3070 case PERF_EVENT_UPDATE__SCALE
:
3071 ev_scale
= (struct event_update_event_scale
*) ev
->data
;
3072 ret
+= fprintf(fp
, "... scale: %f\n", ev_scale
->scale
);
3074 case PERF_EVENT_UPDATE__UNIT
:
3075 ret
+= fprintf(fp
, "... unit: %s\n", ev
->data
);
3077 case PERF_EVENT_UPDATE__NAME
:
3078 ret
+= fprintf(fp
, "... name: %s\n", ev
->data
);
3080 case PERF_EVENT_UPDATE__CPUS
:
3081 ev_cpus
= (struct event_update_event_cpus
*) ev
->data
;
3082 ret
+= fprintf(fp
, "... ");
3084 map
= cpu_map__new_data(&ev_cpus
->cpus
);
3086 ret
+= cpu_map__fprintf(map
, fp
);
3088 ret
+= fprintf(fp
, "failed to get cpus\n");
3091 ret
+= fprintf(fp
, "... unknown type\n");
3098 int perf_event__synthesize_attrs(struct perf_tool
*tool
,
3099 struct perf_session
*session
,
3100 perf_event__handler_t process
)
3102 struct perf_evsel
*evsel
;
3105 evlist__for_each_entry(session
->evlist
, evsel
) {
3106 err
= perf_event__synthesize_attr(tool
, &evsel
->attr
, evsel
->ids
,
3107 evsel
->id
, process
);
3109 pr_debug("failed to create perf header attribute\n");
3117 int perf_event__process_attr(struct perf_tool
*tool __maybe_unused
,
3118 union perf_event
*event
,
3119 struct perf_evlist
**pevlist
)
3122 struct perf_evsel
*evsel
;
3123 struct perf_evlist
*evlist
= *pevlist
;
3125 if (evlist
== NULL
) {
3126 *pevlist
= evlist
= perf_evlist__new();
3131 evsel
= perf_evsel__new(&event
->attr
.attr
);
3135 perf_evlist__add(evlist
, evsel
);
3137 ids
= event
->header
.size
;
3138 ids
-= (void *)&event
->attr
.id
- (void *)event
;
3139 n_ids
= ids
/ sizeof(u64
);
3141 * We don't have the cpu and thread maps on the header, so
3142 * for allocating the perf_sample_id table we fake 1 cpu and
3143 * hattr->ids threads.
3145 if (perf_evsel__alloc_id(evsel
, 1, n_ids
))
3148 for (i
= 0; i
< n_ids
; i
++) {
3149 perf_evlist__id_add(evlist
, evsel
, 0, i
, event
->attr
.id
[i
]);
3152 symbol_conf
.nr_events
= evlist
->nr_entries
;
3157 int perf_event__process_event_update(struct perf_tool
*tool __maybe_unused
,
3158 union perf_event
*event
,
3159 struct perf_evlist
**pevlist
)
3161 struct event_update_event
*ev
= &event
->event_update
;
3162 struct event_update_event_scale
*ev_scale
;
3163 struct event_update_event_cpus
*ev_cpus
;
3164 struct perf_evlist
*evlist
;
3165 struct perf_evsel
*evsel
;
3166 struct cpu_map
*map
;
3168 if (!pevlist
|| *pevlist
== NULL
)
3173 evsel
= perf_evlist__id2evsel(evlist
, ev
->id
);
3178 case PERF_EVENT_UPDATE__UNIT
:
3179 evsel
->unit
= strdup(ev
->data
);
3181 case PERF_EVENT_UPDATE__NAME
:
3182 evsel
->name
= strdup(ev
->data
);
3184 case PERF_EVENT_UPDATE__SCALE
:
3185 ev_scale
= (struct event_update_event_scale
*) ev
->data
;
3186 evsel
->scale
= ev_scale
->scale
;
3187 case PERF_EVENT_UPDATE__CPUS
:
3188 ev_cpus
= (struct event_update_event_cpus
*) ev
->data
;
3190 map
= cpu_map__new_data(&ev_cpus
->cpus
);
3192 evsel
->own_cpus
= map
;
3194 pr_err("failed to get event_update cpus\n");
3202 int perf_event__synthesize_tracing_data(struct perf_tool
*tool
, int fd
,
3203 struct perf_evlist
*evlist
,
3204 perf_event__handler_t process
)
3206 union perf_event ev
;
3207 struct tracing_data
*tdata
;
3208 ssize_t size
= 0, aligned_size
= 0, padding
;
3209 int err __maybe_unused
= 0;
3212 * We are going to store the size of the data followed
3213 * by the data contents. Since the fd descriptor is a pipe,
3214 * we cannot seek back to store the size of the data once
3215 * we know it. Instead we:
3217 * - write the tracing data to the temp file
3218 * - get/write the data size to pipe
3219 * - write the tracing data from the temp file
3222 tdata
= tracing_data_get(&evlist
->entries
, fd
, true);
3226 memset(&ev
, 0, sizeof(ev
));
3228 ev
.tracing_data
.header
.type
= PERF_RECORD_HEADER_TRACING_DATA
;
3230 aligned_size
= PERF_ALIGN(size
, sizeof(u64
));
3231 padding
= aligned_size
- size
;
3232 ev
.tracing_data
.header
.size
= sizeof(ev
.tracing_data
);
3233 ev
.tracing_data
.size
= aligned_size
;
3235 process(tool
, &ev
, NULL
, NULL
);
3238 * The put function will copy all the tracing data
3239 * stored in temp file to the pipe.
3241 tracing_data_put(tdata
);
3243 write_padded(fd
, NULL
, 0, padding
);
3245 return aligned_size
;
3248 int perf_event__process_tracing_data(struct perf_tool
*tool __maybe_unused
,
3249 union perf_event
*event
,
3250 struct perf_session
*session
)
3252 ssize_t size_read
, padding
, size
= event
->tracing_data
.size
;
3253 int fd
= perf_data_file__fd(session
->file
);
3254 off_t offset
= lseek(fd
, 0, SEEK_CUR
);
3257 /* setup for reading amidst mmap */
3258 lseek(fd
, offset
+ sizeof(struct tracing_data_event
),
3261 size_read
= trace_report(fd
, &session
->tevent
,
3263 padding
= PERF_ALIGN(size_read
, sizeof(u64
)) - size_read
;
3265 if (readn(fd
, buf
, padding
) < 0) {
3266 pr_err("%s: reading input file", __func__
);
3269 if (session
->repipe
) {
3270 int retw
= write(STDOUT_FILENO
, buf
, padding
);
3271 if (retw
<= 0 || retw
!= padding
) {
3272 pr_err("%s: repiping tracing data padding", __func__
);
3277 if (size_read
+ padding
!= size
) {
3278 pr_err("%s: tracing data size mismatch", __func__
);
3282 perf_evlist__prepare_tracepoint_events(session
->evlist
,
3283 session
->tevent
.pevent
);
3285 return size_read
+ padding
;
3288 int perf_event__synthesize_build_id(struct perf_tool
*tool
,
3289 struct dso
*pos
, u16 misc
,
3290 perf_event__handler_t process
,
3291 struct machine
*machine
)
3293 union perf_event ev
;
3300 memset(&ev
, 0, sizeof(ev
));
3302 len
= pos
->long_name_len
+ 1;
3303 len
= PERF_ALIGN(len
, NAME_ALIGN
);
3304 memcpy(&ev
.build_id
.build_id
, pos
->build_id
, sizeof(pos
->build_id
));
3305 ev
.build_id
.header
.type
= PERF_RECORD_HEADER_BUILD_ID
;
3306 ev
.build_id
.header
.misc
= misc
;
3307 ev
.build_id
.pid
= machine
->pid
;
3308 ev
.build_id
.header
.size
= sizeof(ev
.build_id
) + len
;
3309 memcpy(&ev
.build_id
.filename
, pos
->long_name
, pos
->long_name_len
);
3311 err
= process(tool
, &ev
, NULL
, machine
);
3316 int perf_event__process_build_id(struct perf_tool
*tool __maybe_unused
,
3317 union perf_event
*event
,
3318 struct perf_session
*session
)
3320 __event_process_build_id(&event
->build_id
,
3321 event
->build_id
.filename
,