header.h 4.0 KB
Newer Older
1 2
#ifndef __PERF_HEADER_H
#define __PERF_HEADER_H
3

4
#include <linux/perf_event.h>
5
#include <sys/types.h>
6
#include <stdbool.h>
B
Borislav Petkov 已提交
7 8
#include <linux/bitmap.h>
#include <linux/types.h>
9
#include "event.h"
10

11

12
enum {
13
	HEADER_RESERVED		= 0,	/* always cleared */
14
	HEADER_FIRST_FEATURE	= 1,
15
	HEADER_TRACING_DATA	= 1,
16
	HEADER_BUILD_ID,
17 18 19 20 21 22 23 24 25 26 27 28 29

	HEADER_HOSTNAME,
	HEADER_OSRELEASE,
	HEADER_VERSION,
	HEADER_ARCH,
	HEADER_NRCPUS,
	HEADER_CPUDESC,
	HEADER_CPUID,
	HEADER_TOTAL_MEM,
	HEADER_CMDLINE,
	HEADER_EVENT_DESC,
	HEADER_CPU_TOPOLOGY,
	HEADER_NUMA_TOPOLOGY,
30
	HEADER_BRANCH_STACK,
31
	HEADER_PMU_MAPPINGS,
32
	HEADER_GROUP_DESC,
33
	HEADER_AUXTRACE,
34
	HEADER_LAST_FEATURE,
35
	HEADER_FEAT_BITS	= 256,
36
};
37

38 39 40 41 42
enum perf_header_version {
	PERF_HEADER_VERSION_1,
	PERF_HEADER_VERSION_2,
};

43 44 45 46 47 48 49 50 51 52 53
struct perf_file_section {
	u64 offset;
	u64 size;
};

struct perf_file_header {
	u64				magic;
	u64				size;
	u64				attr_size;
	struct perf_file_section	attrs;
	struct perf_file_section	data;
54
	/* event_types is ignored */
55 56 57 58
	struct perf_file_section	event_types;
	DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
};

59 60 61 62 63
struct perf_pipe_file_header {
	u64				magic;
	u64				size;
};

64 65
struct perf_header;

66
int perf_file_header__read(struct perf_file_header *header,
67 68
			   struct perf_header *ph, int fd);

69 70 71 72 73
struct cpu_topology_map {
	int	socket_id;
	int	core_id;
};

74
struct perf_env {
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	char			*hostname;
	char			*os_release;
	char			*version;
	char			*arch;
	int			nr_cpus_online;
	int			nr_cpus_avail;
	char			*cpu_desc;
	char			*cpuid;
	unsigned long long	total_mem;

	int			nr_cmdline;
	int			nr_sibling_cores;
	int			nr_sibling_threads;
	int			nr_numa_nodes;
	int			nr_pmu_mappings;
90
	int			nr_groups;
91
	char			*cmdline;
92
	const char		**cmdline_argv;
93 94 95 96
	char			*sibling_cores;
	char			*sibling_threads;
	char			*numa_nodes;
	char			*pmu_mappings;
97
	struct cpu_topology_map	*cpu;
98 99
};

100
struct perf_header {
101 102 103 104 105
	enum perf_header_version	version;
	bool				needs_swap;
	u64				data_offset;
	u64				data_size;
	u64				feat_offset;
106
	DECLARE_BITMAP(adds_features, HEADER_FEAT_BITS);
107
	struct perf_env 	env;
108 109
};

110
struct perf_evlist;
111
struct perf_session;
112

113
int perf_session__read_header(struct perf_session *session);
114 115 116
int perf_session__write_header(struct perf_session *session,
			       struct perf_evlist *evlist,
			       int fd, bool at_exit);
117
int perf_header__write_pipe(int fd);
118

119 120 121
void perf_header__set_feat(struct perf_header *header, int feat);
void perf_header__clear_feat(struct perf_header *header, int feat);
bool perf_header__has_feat(const struct perf_header *header, int feat);
122

123 124
int perf_header__set_cmdline(int argc, const char **argv);

125
int perf_header__process_sections(struct perf_header *header, int fd,
126
				  void *data,
127
				  int (*process)(struct perf_file_section *section,
128 129 130 131
				  struct perf_header *ph,
				  int feat, int fd, void *data));

int perf_header__fprintf_info(struct perf_session *s, FILE *fp, bool full);
132

133
int perf_event__synthesize_attr(struct perf_tool *tool,
134
				struct perf_event_attr *attr, u32 ids, u64 *id,
135
				perf_event__handler_t process);
136
int perf_event__synthesize_attrs(struct perf_tool *tool,
137 138
				 struct perf_session *session,
				 perf_event__handler_t process);
139 140
int perf_event__process_attr(struct perf_tool *tool, union perf_event *event,
			     struct perf_evlist **pevlist);
141

142
int perf_event__synthesize_tracing_data(struct perf_tool *tool,
143
					int fd, struct perf_evlist *evlist,
144
					perf_event__handler_t process);
145 146
int perf_event__process_tracing_data(struct perf_tool *tool,
				     union perf_event *event,
147 148
				     struct perf_session *session);

149
int perf_event__synthesize_build_id(struct perf_tool *tool,
150
				    struct dso *pos, u16 misc,
151
				    perf_event__handler_t process,
152
				    struct machine *machine);
153
int perf_event__process_build_id(struct perf_tool *tool,
154
				 union perf_event *event,
155
				 struct perf_session *session);
F
Feng Tang 已提交
156
bool is_perf_magic(u64 magic);
157

158 159 160
#define NAME_ALIGN 64

int write_padded(int fd, const void *bf, size_t count, size_t count_aligned);
A
Adrian Hunter 已提交
161

162 163 164 165 166
/*
 * arch specific callback
 */
int get_cpuid(char *buffer, size_t sz);

167
#endif /* __PERF_HEADER_H */