Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
8b40f521 JK |
2 | #ifndef __PERF_HEADER_H |
3 | #define __PERF_HEADER_H | |
7c6a1c65 | 4 | |
44fe619b | 5 | #include <linux/stddef.h> |
d2709c7c | 6 | #include <linux/perf_event.h> |
7c6a1c65 | 7 | #include <sys/types.h> |
27830616 | 8 | #include <stdio.h> // FILE |
8d06367f | 9 | #include <stdbool.h> |
d944c4ee BP |
10 | #include <linux/bitmap.h> |
11 | #include <linux/types.h> | |
f0ce888c | 12 | #include "env.h" |
538737da | 13 | #include <perf/cpumap.h> |
db9f11e3 | 14 | |
494c403f IR |
15 | struct evlist; |
16 | union perf_event; | |
17 | struct perf_header; | |
18 | struct perf_session; | |
19 | struct perf_tool; | |
20 | ||
37562eac | 21 | enum { |
b1e5a9be | 22 | HEADER_RESERVED = 0, /* always cleared */ |
781ba9d2 | 23 | HEADER_FIRST_FEATURE = 1, |
2eeaaa09 | 24 | HEADER_TRACING_DATA = 1, |
37562eac | 25 | HEADER_BUILD_ID, |
fbe96f29 SE |
26 | |
27 | HEADER_HOSTNAME, | |
28 | HEADER_OSRELEASE, | |
29 | HEADER_VERSION, | |
30 | HEADER_ARCH, | |
31 | HEADER_NRCPUS, | |
32 | HEADER_CPUDESC, | |
33 | HEADER_CPUID, | |
34 | HEADER_TOTAL_MEM, | |
35 | HEADER_CMDLINE, | |
36 | HEADER_EVENT_DESC, | |
37 | HEADER_CPU_TOPOLOGY, | |
38 | HEADER_NUMA_TOPOLOGY, | |
330aa675 | 39 | HEADER_BRANCH_STACK, |
50a9667c | 40 | HEADER_PMU_MAPPINGS, |
a8bb559b | 41 | HEADER_GROUP_DESC, |
4025ea40 | 42 | HEADER_AUXTRACE, |
ffa517ad | 43 | HEADER_STAT, |
720e98b5 | 44 | HEADER_CACHE, |
6011518d | 45 | HEADER_SAMPLE_TIME, |
e2091ced | 46 | HEADER_MEM_TOPOLOGY, |
cf790516 | 47 | HEADER_CLOCKID, |
258031c0 | 48 | HEADER_DIR_FORMAT, |
606f972b | 49 | HEADER_BPF_PROG_INFO, |
a70a1123 | 50 | HEADER_BPF_BTF, |
42e1fd80 | 51 | HEADER_COMPRESSED, |
6f91ea28 | 52 | HEADER_CPU_PMU_CAPS, |
d1e325cf | 53 | HEADER_CLOCK_DATA, |
f7d74ce3 | 54 | HEADER_HYBRID_TOPOLOGY, |
2139f742 | 55 | HEADER_PMU_CAPS, |
37562eac | 56 | HEADER_LAST_FEATURE, |
b1e5a9be | 57 | HEADER_FEAT_BITS = 256, |
37562eac | 58 | }; |
2ba08250 | 59 | |
2a08c3ec JO |
60 | enum perf_header_version { |
61 | PERF_HEADER_VERSION_1, | |
62 | PERF_HEADER_VERSION_2, | |
63 | }; | |
64 | ||
37562eac ACM |
65 | struct perf_file_section { |
66 | u64 offset; | |
67 | u64 size; | |
68 | }; | |
69 | ||
d71bbe79 IR |
70 | /** |
71 | * struct perf_file_header: Header representation on disk. | |
72 | */ | |
37562eac | 73 | struct perf_file_header { |
d71bbe79 | 74 | /** @magic: Holds "PERFILE2". */ |
37562eac | 75 | u64 magic; |
d71bbe79 | 76 | /** @size: Size of this header - sizeof(struct perf_file_header). */ |
37562eac | 77 | u64 size; |
d71bbe79 IR |
78 | /** |
79 | * @attr_size: Size of attrs entries - sizeof(struct perf_event_attr) + | |
80 | * sizeof(struct perf_file_section). | |
81 | */ | |
37562eac | 82 | u64 attr_size; |
d71bbe79 | 83 | /** @attrs: Offset and size of file section holding attributes. */ |
37562eac | 84 | struct perf_file_section attrs; |
d71bbe79 | 85 | /** @data: Offset and size of file section holding regular event data. */ |
37562eac | 86 | struct perf_file_section data; |
d71bbe79 | 87 | /** @event_types: Ignored. */ |
37562eac | 88 | struct perf_file_section event_types; |
d71bbe79 IR |
89 | /** |
90 | * @adds_features: Bitmap of features. The features are immediately after the data section. | |
91 | */ | |
37562eac ACM |
92 | DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS); |
93 | }; | |
94 | ||
8dc58101 TZ |
95 | struct perf_pipe_file_header { |
96 | u64 magic; | |
97 | u64 size; | |
98 | }; | |
99 | ||
1c0b04d1 | 100 | int perf_file_header__read(struct perf_file_header *header, |
37562eac ACM |
101 | struct perf_header *ph, int fd); |
102 | ||
7c6a1c65 | 103 | struct perf_header { |
2a08c3ec JO |
104 | enum perf_header_version version; |
105 | bool needs_swap; | |
106 | u64 data_offset; | |
107 | u64 data_size; | |
108 | u64 feat_offset; | |
db9f11e3 | 109 | DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS); |
ce80d3be | 110 | struct perf_env env; |
7c6a1c65 PZ |
111 | }; |
112 | ||
055c67ed ACM |
113 | struct feat_fd { |
114 | struct perf_header *ph; | |
115 | int fd; | |
116 | void *buf; /* Either buf != NULL or fd >= 0 */ | |
117 | ssize_t offset; | |
118 | size_t size; | |
119 | struct evsel *events; | |
120 | }; | |
121 | ||
122 | struct perf_header_feature_ops { | |
123 | int (*write)(struct feat_fd *ff, struct evlist *evlist); | |
124 | void (*print)(struct feat_fd *ff, FILE *fp); | |
125 | int (*process)(struct feat_fd *ff, void *data); | |
126 | const char *name; | |
127 | bool full_only; | |
128 | bool synthesize; | |
129 | }; | |
130 | ||
8641661c IR |
131 | extern const char perf_version_string[]; |
132 | ||
2d57c32b | 133 | int perf_session__read_header(struct perf_session *session); |
a91e5431 | 134 | int perf_session__write_header(struct perf_session *session, |
63503dba | 135 | struct evlist *evlist, |
a91e5431 | 136 | int fd, bool at_exit); |
8dc58101 | 137 | int perf_header__write_pipe(int fd); |
7c6a1c65 | 138 | |
237c96b8 AH |
139 | /* feat_writer writes a feature section to output */ |
140 | struct feat_writer { | |
141 | int (*write)(struct feat_writer *fw, void *buf, size_t sz); | |
142 | }; | |
143 | ||
144 | /* feat_copier copies a feature section using feat_writer to output */ | |
145 | struct feat_copier { | |
146 | int (*copy)(struct feat_copier *fc, int feat, struct feat_writer *fw); | |
147 | }; | |
148 | ||
180b3d06 AH |
149 | int perf_session__inject_header(struct perf_session *session, |
150 | struct evlist *evlist, | |
151 | int fd, | |
89d64e72 IR |
152 | struct feat_copier *fc, |
153 | bool write_attrs_after_data); | |
180b3d06 | 154 | |
37ed2cdd RS |
155 | size_t perf_session__data_offset(const struct evlist *evlist); |
156 | ||
1c0b04d1 ACM |
157 | void perf_header__set_feat(struct perf_header *header, int feat); |
158 | void perf_header__clear_feat(struct perf_header *header, int feat); | |
159 | bool perf_header__has_feat(const struct perf_header *header, int feat); | |
7c6a1c65 | 160 | |
fbe96f29 SE |
161 | int perf_header__set_cmdline(int argc, const char **argv); |
162 | ||
1c0b04d1 | 163 | int perf_header__process_sections(struct perf_header *header, int fd, |
fbe96f29 | 164 | void *data, |
1c0b04d1 | 165 | int (*process)(struct perf_file_section *section, |
fbe96f29 SE |
166 | struct perf_header *ph, |
167 | int feat, int fd, void *data)); | |
168 | ||
169 | int perf_header__fprintf_info(struct perf_session *s, FILE *fp, bool full); | |
37562eac | 170 | |
89f1688a JO |
171 | int perf_event__process_feature(struct perf_session *session, |
172 | union perf_event *event); | |
30f29bae | 173 | int perf_event__process_attr(const struct perf_tool *tool, union perf_event *event, |
63503dba | 174 | struct evlist **pevlist); |
30f29bae | 175 | int perf_event__process_event_update(const struct perf_tool *tool, |
ffe77725 | 176 | union perf_event *event, |
63503dba | 177 | struct evlist **pevlist); |
c853f939 | 178 | size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp); |
378ef0f5 | 179 | #ifdef HAVE_LIBTRACEEVENT |
89f1688a JO |
180 | int perf_event__process_tracing_data(struct perf_session *session, |
181 | union perf_event *event); | |
378ef0f5 | 182 | #endif |
89f1688a JO |
183 | int perf_event__process_build_id(struct perf_session *session, |
184 | union perf_event *event); | |
e84ba4e2 | 185 | bool is_perf_magic(u64 magic); |
fbe96f29 | 186 | |
e195fac8 NK |
187 | #define NAME_ALIGN 64 |
188 | ||
ccebbeb6 | 189 | struct feat_fd; |
3b8f51a6 | 190 | |
ccebbeb6 DCC |
191 | int do_write(struct feat_fd *fd, const void *buf, size_t size); |
192 | ||
193 | int write_padded(struct feat_fd *fd, const void *bf, | |
194 | size_t count, size_t count_aligned); | |
1f625b0b | 195 | |
2b72cec9 PN |
196 | #define MAX_CACHE_LVL 4 |
197 | ||
2b72cec9 PN |
198 | int build_caches_for_cpu(u32 cpu, struct cpu_cache_level caches[], u32 *cntp); |
199 | ||
fbe96f29 SE |
200 | /* |
201 | * arch specific callback | |
202 | */ | |
cec0d657 | 203 | int get_cpuid(char *buffer, size_t sz, struct perf_cpu cpu); |
fbe96f29 | 204 | |
494c403f IR |
205 | char *get_cpuid_str(struct perf_cpu cpu); |
206 | ||
207 | char *get_cpuid_allow_env_override(struct perf_cpu cpu); | |
208 | ||
4cb7d3ec | 209 | int strcmp_cpuid_str(const char *s1, const char *s2); |
8b40f521 | 210 | #endif /* __PERF_HEADER_H */ |