symbol.h 7.9 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
#include "event.h"
16
#include "util.h"
17

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

24 25
#include "dso.h"

26 27 28 29
/*
 * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
 * for newer versions we can use mmap to reduce memory usage:
 */
30
#ifdef HAVE_LIBELF_MMAP_SUPPORT
31
# define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
32 33
#else
# define PERF_ELF_C_READ_MMAP ELF_C_READ
34 35
#endif

36 37 38 39 40
#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

41
#ifndef DMGL_PARAMS
42
#define DMGL_NO_OPTS     0              /* For readability... */
43 44 45 46
#define DMGL_PARAMS      (1 << 0)       /* Include function args */
#define DMGL_ANSI        (1 << 1)       /* Include const, volatile, etc */
#endif

47 48 49 50
/** struct symbol - symtab entry
 *
 * @ignore - resolvable but tools ignore it (e.g. idle routines)
 */
51 52
struct symbol {
	struct rb_node	rb_node;
53 54
	u64		start;
	u64		end;
55
	u16		namelen;
56
	u8		binding;
57
	bool		ignore;
58 59 60
	char		name[0];
};

61
void symbol__delete(struct symbol *sym);
62
void symbols__delete(struct rb_root *symbols);
63

64 65 66 67 68 69 70 71 72 73 74
/* symbols__for_each_entry - iterate over symbols (rb_root)
 *
 * @symbols: the rb_root of symbols
 * @pos: the 'struct symbol *' to use as a loop cursor
 * @nd: the 'struct rb_node *' to use as a temporary storage
 */
#define symbols__for_each_entry(symbols, pos, nd)			\
	for (nd = rb_first(symbols);					\
	     nd && (pos = rb_entry(nd, struct symbol, rb_node));	\
	     nd = rb_next(nd))

75 76
static inline size_t symbol__size(const struct symbol *sym)
{
77
	return sym->end - sym->start;
78 79
}

80
struct strlist;
81
struct intlist;
82

83 84
struct symbol_conf {
	unsigned short	priv_size;
85
	unsigned short	nr_events;
86
	bool		try_vmlinux_path,
87
			force,
88
			ignore_vmlinux,
89
			ignore_vmlinux_buildid,
90
			show_kernel_path,
91
			use_modules,
92
			allow_aliases,
93 94
			sort_by_name,
			show_nr_samples,
95
			show_total_period,
96
			use_callchain,
97
			cumulate_callchain,
98
			exclude_other,
99
			show_cpu_utilization,
100
			initialized,
101 102
			kptr_restrict,
			annotate_asm_raw,
103
			annotate_src,
104
			event_group,
105
			demangle,
106
			demangle_kernel,
107
			filter_relative,
108
			show_hist_headers,
109
			branch_callstack,
110 111
			has_filter,
			show_ref_callgraph;
112
	const char	*vmlinux_name,
113
			*kallsyms_name,
114
			*source_prefix,
115
			*field_sep;
116 117 118 119
	const char	*default_guest_vmlinux_name,
			*default_guest_kallsyms,
			*default_guest_modules;
	const char	*guestmount;
120
	const char	*dso_list_str,
121
			*comm_list_str,
122 123
			*pid_list_str,
			*tid_list_str,
124 125 126 127
			*sym_list_str,
			*col_width_list_str;
       struct strlist	*dso_list,
			*comm_list,
128 129 130 131 132
			*sym_list,
			*dso_from_list,
			*dso_to_list,
			*sym_from_list,
			*sym_to_list;
133 134
	struct intlist	*pid_list,
			*tid_list;
135
	const char	*symfs;
136 137
};

138
extern struct symbol_conf symbol_conf;
139 140 141 142 143 144 145 146

static inline int __symbol__join_symfs(char *bf, size_t size, const char *path)
{
	return path__join(bf, size, symbol_conf.symfs, path);
}

#define symbol__join_symfs(bf, path) __symbol__join_symfs(bf, sizeof(bf), path)

147 148
extern int vmlinux_path__nr_entries;
extern char **vmlinux_path;
149

150
static inline void *symbol__priv(struct symbol *sym)
151
{
152
	return ((void *)sym) - symbol_conf.priv_size;
153 154
}

155 156 157 158 159 160
struct ref_reloc_sym {
	const char	*name;
	u64		addr;
	u64		unrelocated_addr;
};

161 162 163 164 165
struct map_symbol {
	struct map    *map;
	struct symbol *sym;
};

166 167 168 169
struct addr_map_symbol {
	struct map    *map;
	struct symbol *sym;
	u64	      addr;
170
	u64	      al_addr;
171 172 173 174 175 176 177 178
};

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

179 180 181 182 183 184
struct mem_info {
	struct addr_map_symbol iaddr;
	struct addr_map_symbol daddr;
	union perf_mem_data_src data_src;
};

185
struct addr_location {
186
	struct machine *machine;
187 188 189 190 191
	struct thread *thread;
	struct map    *map;
	struct symbol *sym;
	u64	      addr;
	char	      level;
192
	u8	      filtered;
A
Arun Sharma 已提交
193 194
	u8	      cpumode;
	s32	      cpu;
195
	s32	      socket;
196 197
};

198 199 200 201 202
struct symsrc {
	char *name;
	int fd;
	enum dso_binary_type type;

203
#ifdef HAVE_LIBELF_SUPPORT
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
	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;
219
	bool is_64_bit;
220 221 222 223 224 225
#endif
};

void symsrc__destroy(struct symsrc *ss);
int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
		 enum dso_binary_type type);
226
bool symsrc__has_symtab(struct symsrc *ss);
227
bool symsrc__possibly_runtime(struct symsrc *ss);
228

229 230
int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter);
int dso__load_vmlinux(struct dso *dso, struct map *map,
231 232
		      const char *vmlinux, bool vmlinux_allocated,
		      symbol_filter_t filter);
233
int dso__load_vmlinux_path(struct dso *dso, struct map *map,
234
			   symbol_filter_t filter);
235
int dso__load_kallsyms(struct dso *dso, const char *filename, struct map *map,
236
		       symbol_filter_t filter);
237

238 239 240
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,
241
					const char *name);
242
struct symbol *symbol__next_by_name(struct symbol *sym);
243

244 245 246
struct symbol *dso__first_symbol(struct dso *dso, enum map_type type);
struct symbol *dso__next_symbol(struct symbol *sym);

A
Adrian Hunter 已提交
247 248
enum dso_type dso__type_fd(int fd);

249
int filename__read_build_id(const char *filename, void *bf, size_t size);
250
int sysfs__read_build_id(const char *filename, void *bf, size_t size);
251 252 253
int modules__parse(const char *filename, void *arg,
		   int (*process_module)(void *arg, const char *name,
					 u64 start));
254 255
int filename__read_debuglink(const char *filename, char *debuglink,
			     size_t size);
256

257 258
struct perf_env;
int symbol__init(struct perf_env *env);
259
void symbol__exit(void);
260
void symbol__elf_init(void);
261
struct symbol *symbol__new(u64 start, u64 len, u8 binding, const char *name);
262 263
size_t symbol__fprintf_symname_offs(const struct symbol *sym,
				    const struct addr_location *al, FILE *fp);
264
size_t symbol__fprintf_symname(const struct symbol *sym, FILE *fp);
265
size_t symbol__fprintf(struct symbol *sym, FILE *fp);
266
bool symbol_type__is_a(char symbol_type, enum map_type map_type);
267 268
bool symbol__restricted_filename(const char *filename,
				 const char *restricted_filename);
269
bool symbol__is_idle(struct symbol *sym);
270

271 272 273
int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *syms_ss,
		  struct symsrc *runtime_ss, symbol_filter_t filter,
		  int kmodule);
274 275
int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss,
				struct map *map, symbol_filter_t filter);
276 277 278 279 280 281

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);

282 283 284 285
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);

286 287 288 289 290 291 292 293 294 295 296 297 298 299
#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);

300 301 302
int kcore_copy(const char *from_dir, const char *to_dir);
int compare_proc_modules(const char *from, const char *to);

D
David Ahern 已提交
303 304
int setup_list(struct strlist **list, const char *list_str,
	       const char *list_name);
305 306
int setup_intlist(struct intlist **list, const char *list_str,
		  const char *list_name);
D
David Ahern 已提交
307

308 309
#ifdef HAVE_LIBELF_SUPPORT
bool elf__needs_adjust_symbols(GElf_Ehdr ehdr);
310
void arch__elf_sym_adjust(GElf_Sym *sym);
311 312
#endif

313 314 315 316 317
#define SYMBOL_A 0
#define SYMBOL_B 1

int arch__choose_best_symbol(struct symbol *syma, struct symbol *symb);

318
#endif /* __PERF_SYMBOL */