symbol.h 6.8 KB
Newer Older
1 2
#ifndef __PERF_SYMBOL
#define __PERF_SYMBOL 1
3 4

#include <linux/types.h>
5
#include <stdbool.h>
6 7
#include <stdint.h>
#include "map.h"
8
#include "../perf.h"
9
#include <linux/list.h>
10
#include <linux/rbtree.h>
11
#include <stdio.h>
12
#include <byteswap.h>
13
#include <libgen.h>
14
#include "build-id.h"
15

16
#ifdef HAVE_LIBELF_SUPPORT
17 18 19
#include <libelf.h>
#include <gelf.h>
#endif
20
#include <elf.h>
21

22 23
#include "dso.h"

24
#ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
25 26
extern char *cplus_demangle(const char *, int);

27
static inline char *bfd_demangle(void __maybe_unused *v, const char *c, int i)
28 29 30 31 32
{
	return cplus_demangle(c, i);
}
#else
#ifdef NO_DEMANGLE
33 34 35
static inline char *bfd_demangle(void __maybe_unused *v,
				 const char __maybe_unused *c,
				 int __maybe_unused i)
36 37 38 39
{
	return NULL;
}
#else
40
#define PACKAGE 'perf'
41 42 43 44
#include <bfd.h>
#endif
#endif

45 46 47 48
/*
 * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
 * for newer versions we can use mmap to reduce memory usage:
 */
49
#ifdef HAVE_LIBELF_MMAP_SUPPORT
50
# define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
51 52
#else
# define PERF_ELF_C_READ_MMAP ELF_C_READ
53 54
#endif

55 56 57 58 59
#ifdef HAVE_LIBELF_SUPPORT
extern Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
				GElf_Shdr *shp, const char *name, size_t *idx);
#endif

60 61 62 63 64
#ifndef DMGL_PARAMS
#define DMGL_PARAMS      (1 << 0)       /* Include function args */
#define DMGL_ANSI        (1 << 1)       /* Include const, volatile, etc */
#endif

65 66 67 68
/** struct symbol - symtab entry
 *
 * @ignore - resolvable but tools ignore it (e.g. idle routines)
 */
69 70
struct symbol {
	struct rb_node	rb_node;
71 72
	u64		start;
	u64		end;
73
	u16		namelen;
74
	u8		binding;
75
	bool		ignore;
76 77 78
	char		name[0];
};

79
void symbol__delete(struct symbol *sym);
80
void symbols__delete(struct rb_root *symbols);
81

82 83 84 85 86
static inline size_t symbol__size(const struct symbol *sym)
{
	return sym->end - sym->start + 1;
}

87 88
struct strlist;

89 90
struct symbol_conf {
	unsigned short	priv_size;
91
	unsigned short	nr_events;
92
	bool		try_vmlinux_path,
93
			ignore_vmlinux,
94
			show_kernel_path,
95
			use_modules,
96 97
			sort_by_name,
			show_nr_samples,
98
			show_total_period,
99
			use_callchain,
100
			exclude_other,
101
			show_cpu_utilization,
102
			initialized,
103 104
			kptr_restrict,
			annotate_asm_raw,
105
			annotate_src,
106 107
			event_group,
			demangle;
108
	const char	*vmlinux_name,
109
			*kallsyms_name,
110
			*source_prefix,
111
			*field_sep;
112 113 114 115
	const char	*default_guest_vmlinux_name,
			*default_guest_kallsyms,
			*default_guest_modules;
	const char	*guestmount;
116
	const char	*dso_list_str,
117 118 119 120 121
			*comm_list_str,
			*sym_list_str,
			*col_width_list_str;
       struct strlist	*dso_list,
			*comm_list,
122 123 124 125 126
			*sym_list,
			*dso_from_list,
			*dso_to_list,
			*sym_from_list,
			*sym_to_list;
127
	const char	*symfs;
128 129
};

130
extern struct symbol_conf symbol_conf;
131 132
extern int vmlinux_path__nr_entries;
extern char **vmlinux_path;
133

134
static inline void *symbol__priv(struct symbol *sym)
135
{
136
	return ((void *)sym) - symbol_conf.priv_size;
137 138
}

139 140 141 142 143 144
struct ref_reloc_sym {
	const char	*name;
	u64		addr;
	u64		unrelocated_addr;
};

145 146 147
struct map_symbol {
	struct map    *map;
	struct symbol *sym;
148 149
	bool	      unfolded;
	bool	      has_children;
150 151
};

152 153 154 155
struct addr_map_symbol {
	struct map    *map;
	struct symbol *sym;
	u64	      addr;
156
	u64	      al_addr;
157 158 159 160 161 162 163 164
};

struct branch_info {
	struct addr_map_symbol from;
	struct addr_map_symbol to;
	struct branch_flags flags;
};

165 166 167 168 169 170
struct mem_info {
	struct addr_map_symbol iaddr;
	struct addr_map_symbol daddr;
	union perf_mem_data_src data_src;
};

171
struct addr_location {
172
	struct machine *machine;
173 174 175 176 177
	struct thread *thread;
	struct map    *map;
	struct symbol *sym;
	u64	      addr;
	char	      level;
178
	bool	      filtered;
A
Arun Sharma 已提交
179 180
	u8	      cpumode;
	s32	      cpu;
181 182
};

183 184 185 186 187
struct symsrc {
	char *name;
	int fd;
	enum dso_binary_type type;

188
#ifdef HAVE_LIBELF_SUPPORT
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
	Elf *elf;
	GElf_Ehdr ehdr;

	Elf_Scn *opdsec;
	size_t opdidx;
	GElf_Shdr opdshdr;

	Elf_Scn *symtab;
	GElf_Shdr symshdr;

	Elf_Scn *dynsym;
	size_t dynsym_idx;
	GElf_Shdr dynshdr;

	bool adjust_symbols;
#endif
};

void symsrc__destroy(struct symsrc *ss);
int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
		 enum dso_binary_type type);
210
bool symsrc__has_symtab(struct symsrc *ss);
211
bool symsrc__possibly_runtime(struct symsrc *ss);
212

213 214
int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter);
int dso__load_vmlinux(struct dso *dso, struct map *map,
215 216
		      const char *vmlinux, bool vmlinux_allocated,
		      symbol_filter_t filter);
217
int dso__load_vmlinux_path(struct dso *dso, struct map *map,
218
			   symbol_filter_t filter);
219
int dso__load_kallsyms(struct dso *dso, const char *filename, struct map *map,
220
		       symbol_filter_t filter);
221

222 223 224
struct symbol *dso__find_symbol(struct dso *dso, enum map_type type,
				u64 addr);
struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
225
					const char *name);
226

227
int filename__read_build_id(const char *filename, void *bf, size_t size);
228
int sysfs__read_build_id(const char *filename, void *bf, size_t size);
229 230 231
int modules__parse(const char *filename, void *arg,
		   int (*process_module)(void *arg, const char *name,
					 u64 start));
232 233
int filename__read_debuglink(const char *filename, char *debuglink,
			     size_t size);
234

235
int symbol__init(void);
236
void symbol__exit(void);
237
void symbol__elf_init(void);
238
struct symbol *symbol__new(u64 start, u64 len, u8 binding, const char *name);
239 240
size_t symbol__fprintf_symname_offs(const struct symbol *sym,
				    const struct addr_location *al, FILE *fp);
241
size_t symbol__fprintf_symname(const struct symbol *sym, FILE *fp);
242
size_t symbol__fprintf(struct symbol *sym, FILE *fp);
243
bool symbol_type__is_a(char symbol_type, enum map_type map_type);
244 245
bool symbol__restricted_filename(const char *filename,
				 const char *restricted_filename);
246
bool symbol__is_idle(struct symbol *sym);
247

248 249 250
int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *syms_ss,
		  struct symsrc *runtime_ss, symbol_filter_t filter,
		  int kmodule);
251 252
int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss,
				struct map *map, symbol_filter_t filter);
253 254 255 256 257 258

void symbols__insert(struct rb_root *symbols, struct symbol *sym);
void symbols__fixup_duplicate(struct rb_root *symbols);
void symbols__fixup_end(struct rb_root *symbols);
void __map_groups__fixup_end(struct map_groups *mg, enum map_type type);

259 260 261 262
typedef int (*mapfn_t)(u64 start, u64 len, u64 pgoff, void *data);
int file__read_maps(int fd, bool exe, mapfn_t mapfn, void *data,
		    bool *is_64_bit);

263 264 265 266 267 268 269 270 271 272 273 274 275 276
#define PERF_KCORE_EXTRACT "/tmp/perf-kcore-XXXXXX"

struct kcore_extract {
	char *kcore_filename;
	u64 addr;
	u64 offs;
	u64 len;
	char extract_filename[sizeof(PERF_KCORE_EXTRACT)];
	int fd;
};

int kcore_extract__create(struct kcore_extract *kce);
void kcore_extract__delete(struct kcore_extract *kce);

277 278 279
int kcore_copy(const char *from_dir, const char *to_dir);
int compare_proc_modules(const char *from, const char *to);

D
David Ahern 已提交
280 281 282
int setup_list(struct strlist **list, const char *list_str,
	       const char *list_name);

283
#endif /* __PERF_SYMBOL */