Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PERF_HEADER_H
3#define __PERF_HEADER_H
4
5#include <linux/perf_event.h>
6#include <sys/types.h>
7#include <stdbool.h>
8#include <linux/bitmap.h>
9#include <linux/types.h>
10#include "event.h"
11#include "env.h"
12#include "pmu.h"
13
14enum {
15 HEADER_RESERVED = 0, /* always cleared */
16 HEADER_FIRST_FEATURE = 1,
17 HEADER_TRACING_DATA = 1,
18 HEADER_BUILD_ID,
19
20 HEADER_HOSTNAME,
21 HEADER_OSRELEASE,
22 HEADER_VERSION,
23 HEADER_ARCH,
24 HEADER_NRCPUS,
25 HEADER_CPUDESC,
26 HEADER_CPUID,
27 HEADER_TOTAL_MEM,
28 HEADER_CMDLINE,
29 HEADER_EVENT_DESC,
30 HEADER_CPU_TOPOLOGY,
31 HEADER_NUMA_TOPOLOGY,
32 HEADER_BRANCH_STACK,
33 HEADER_PMU_MAPPINGS,
34 HEADER_GROUP_DESC,
35 HEADER_AUXTRACE,
36 HEADER_STAT,
37 HEADER_CACHE,
38 HEADER_SAMPLE_TIME,
39 HEADER_MEM_TOPOLOGY,
40 HEADER_LAST_FEATURE,
41 HEADER_FEAT_BITS = 256,
42};
43
44enum perf_header_version {
45 PERF_HEADER_VERSION_1,
46 PERF_HEADER_VERSION_2,
47};
48
49struct perf_file_section {
50 u64 offset;
51 u64 size;
52};
53
54struct perf_file_header {
55 u64 magic;
56 u64 size;
57 u64 attr_size;
58 struct perf_file_section attrs;
59 struct perf_file_section data;
60 /* event_types is ignored */
61 struct perf_file_section event_types;
62 DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
63};
64
65struct perf_pipe_file_header {
66 u64 magic;
67 u64 size;
68};
69
70struct perf_header;
71
72int perf_file_header__read(struct perf_file_header *header,
73 struct perf_header *ph, int fd);
74
75struct perf_header {
76 enum perf_header_version version;
77 bool needs_swap;
78 u64 data_offset;
79 u64 data_size;
80 u64 feat_offset;
81 DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
82 struct perf_env env;
83};
84
85struct perf_evlist;
86struct perf_session;
87
88int perf_session__read_header(struct perf_session *session);
89int perf_session__write_header(struct perf_session *session,
90 struct perf_evlist *evlist,
91 int fd, bool at_exit);
92int perf_header__write_pipe(int fd);
93
94void perf_header__set_feat(struct perf_header *header, int feat);
95void perf_header__clear_feat(struct perf_header *header, int feat);
96bool perf_header__has_feat(const struct perf_header *header, int feat);
97
98int perf_header__set_cmdline(int argc, const char **argv);
99
100int perf_header__process_sections(struct perf_header *header, int fd,
101 void *data,
102 int (*process)(struct perf_file_section *section,
103 struct perf_header *ph,
104 int feat, int fd, void *data));
105
106int perf_header__fprintf_info(struct perf_session *s, FILE *fp, bool full);
107
108int perf_event__synthesize_features(struct perf_tool *tool,
109 struct perf_session *session,
110 struct perf_evlist *evlist,
111 perf_event__handler_t process);
112
113int perf_event__synthesize_extra_attr(struct perf_tool *tool,
114 struct perf_evlist *evsel_list,
115 perf_event__handler_t process,
116 bool is_pipe);
117
118int perf_event__process_feature(struct perf_tool *tool,
119 union perf_event *event,
120 struct perf_session *session);
121
122int perf_event__synthesize_attr(struct perf_tool *tool,
123 struct perf_event_attr *attr, u32 ids, u64 *id,
124 perf_event__handler_t process);
125int perf_event__synthesize_attrs(struct perf_tool *tool,
126 struct perf_session *session,
127 perf_event__handler_t process);
128int perf_event__synthesize_event_update_unit(struct perf_tool *tool,
129 struct perf_evsel *evsel,
130 perf_event__handler_t process);
131int perf_event__synthesize_event_update_scale(struct perf_tool *tool,
132 struct perf_evsel *evsel,
133 perf_event__handler_t process);
134int perf_event__synthesize_event_update_name(struct perf_tool *tool,
135 struct perf_evsel *evsel,
136 perf_event__handler_t process);
137int perf_event__synthesize_event_update_cpus(struct perf_tool *tool,
138 struct perf_evsel *evsel,
139 perf_event__handler_t process);
140int perf_event__process_attr(struct perf_tool *tool, union perf_event *event,
141 struct perf_evlist **pevlist);
142int perf_event__process_event_update(struct perf_tool *tool,
143 union perf_event *event,
144 struct perf_evlist **pevlist);
145size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp);
146
147int perf_event__synthesize_tracing_data(struct perf_tool *tool,
148 int fd, struct perf_evlist *evlist,
149 perf_event__handler_t process);
150int perf_event__process_tracing_data(struct perf_tool *tool,
151 union perf_event *event,
152 struct perf_session *session);
153
154int perf_event__synthesize_build_id(struct perf_tool *tool,
155 struct dso *pos, u16 misc,
156 perf_event__handler_t process,
157 struct machine *machine);
158int perf_event__process_build_id(struct perf_tool *tool,
159 union perf_event *event,
160 struct perf_session *session);
161bool is_perf_magic(u64 magic);
162
163#define NAME_ALIGN 64
164
165struct feat_fd;
166
167int do_write(struct feat_fd *fd, const void *buf, size_t size);
168
169int write_padded(struct feat_fd *fd, const void *bf,
170 size_t count, size_t count_aligned);
171
172/*
173 * arch specific callback
174 */
175int get_cpuid(char *buffer, size_t sz);
176
177char *get_cpuid_str(struct perf_pmu *pmu __maybe_unused);
178int strcmp_cpuid_str(const char *s1, const char *s2);
179#endif /* __PERF_HEADER_H */
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PERF_HEADER_H
3#define __PERF_HEADER_H
4
5#include <linux/stddef.h>
6#include <linux/perf_event.h>
7#include <sys/types.h>
8#include <stdio.h> // FILE
9#include <stdbool.h>
10#include <linux/bitmap.h>
11#include <linux/types.h>
12#include "env.h"
13#include <perf/cpumap.h>
14
15struct evlist;
16union perf_event;
17struct perf_header;
18struct perf_session;
19struct perf_tool;
20
21enum {
22 HEADER_RESERVED = 0, /* always cleared */
23 HEADER_FIRST_FEATURE = 1,
24 HEADER_TRACING_DATA = 1,
25 HEADER_BUILD_ID,
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,
39 HEADER_BRANCH_STACK,
40 HEADER_PMU_MAPPINGS,
41 HEADER_GROUP_DESC,
42 HEADER_AUXTRACE,
43 HEADER_STAT,
44 HEADER_CACHE,
45 HEADER_SAMPLE_TIME,
46 HEADER_MEM_TOPOLOGY,
47 HEADER_CLOCKID,
48 HEADER_DIR_FORMAT,
49 HEADER_BPF_PROG_INFO,
50 HEADER_BPF_BTF,
51 HEADER_COMPRESSED,
52 HEADER_CPU_PMU_CAPS,
53 HEADER_CLOCK_DATA,
54 HEADER_HYBRID_TOPOLOGY,
55 HEADER_PMU_CAPS,
56 HEADER_LAST_FEATURE,
57 HEADER_FEAT_BITS = 256,
58};
59
60enum perf_header_version {
61 PERF_HEADER_VERSION_1,
62 PERF_HEADER_VERSION_2,
63};
64
65struct perf_file_section {
66 u64 offset;
67 u64 size;
68};
69
70/**
71 * struct perf_file_header: Header representation on disk.
72 */
73struct perf_file_header {
74 /** @magic: Holds "PERFILE2". */
75 u64 magic;
76 /** @size: Size of this header - sizeof(struct perf_file_header). */
77 u64 size;
78 /**
79 * @attr_size: Size of attrs entries - sizeof(struct perf_event_attr) +
80 * sizeof(struct perf_file_section).
81 */
82 u64 attr_size;
83 /** @attrs: Offset and size of file section holding attributes. */
84 struct perf_file_section attrs;
85 /** @data: Offset and size of file section holding regular event data. */
86 struct perf_file_section data;
87 /** @event_types: Ignored. */
88 struct perf_file_section event_types;
89 /**
90 * @adds_features: Bitmap of features. The features are immediately after the data section.
91 */
92 DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
93};
94
95struct perf_pipe_file_header {
96 u64 magic;
97 u64 size;
98};
99
100int perf_file_header__read(struct perf_file_header *header,
101 struct perf_header *ph, int fd);
102
103struct perf_header {
104 enum perf_header_version version;
105 bool needs_swap;
106 u64 data_offset;
107 u64 data_size;
108 u64 feat_offset;
109 DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
110 struct perf_env env;
111};
112
113struct 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
122struct 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
131extern const char perf_version_string[];
132
133int perf_session__read_header(struct perf_session *session);
134int perf_session__write_header(struct perf_session *session,
135 struct evlist *evlist,
136 int fd, bool at_exit);
137int perf_header__write_pipe(int fd);
138
139/* feat_writer writes a feature section to output */
140struct 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 */
145struct feat_copier {
146 int (*copy)(struct feat_copier *fc, int feat, struct feat_writer *fw);
147};
148
149int perf_session__inject_header(struct perf_session *session,
150 struct evlist *evlist,
151 int fd,
152 struct feat_copier *fc,
153 bool write_attrs_after_data);
154
155size_t perf_session__data_offset(const struct evlist *evlist);
156
157void perf_header__set_feat(struct perf_header *header, int feat);
158void perf_header__clear_feat(struct perf_header *header, int feat);
159bool perf_header__has_feat(const struct perf_header *header, int feat);
160
161int perf_header__set_cmdline(int argc, const char **argv);
162
163int perf_header__process_sections(struct perf_header *header, int fd,
164 void *data,
165 int (*process)(struct perf_file_section *section,
166 struct perf_header *ph,
167 int feat, int fd, void *data));
168
169int perf_header__fprintf_info(struct perf_session *s, FILE *fp, bool full);
170
171int perf_event__process_feature(struct perf_session *session,
172 union perf_event *event);
173int perf_event__process_attr(const struct perf_tool *tool, union perf_event *event,
174 struct evlist **pevlist);
175int perf_event__process_event_update(const struct perf_tool *tool,
176 union perf_event *event,
177 struct evlist **pevlist);
178size_t perf_event__fprintf_event_update(union perf_event *event, FILE *fp);
179#ifdef HAVE_LIBTRACEEVENT
180int perf_event__process_tracing_data(struct perf_session *session,
181 union perf_event *event);
182#endif
183int perf_event__process_build_id(struct perf_session *session,
184 union perf_event *event);
185bool is_perf_magic(u64 magic);
186
187#define NAME_ALIGN 64
188
189struct feat_fd;
190
191int do_write(struct feat_fd *fd, const void *buf, size_t size);
192
193int write_padded(struct feat_fd *fd, const void *bf,
194 size_t count, size_t count_aligned);
195
196#define MAX_CACHE_LVL 4
197
198int build_caches_for_cpu(u32 cpu, struct cpu_cache_level caches[], u32 *cntp);
199
200/*
201 * arch specific callback
202 */
203int get_cpuid(char *buffer, size_t sz, struct perf_cpu cpu);
204
205char *get_cpuid_str(struct perf_cpu cpu);
206
207char *get_cpuid_allow_env_override(struct perf_cpu cpu);
208
209int strcmp_cpuid_str(const char *s1, const char *s2);
210#endif /* __PERF_HEADER_H */