]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/symbol.h
perf symbols: Export elf_section_by_name and reuse
[mirror_ubuntu-artful-kernel.git] / tools / perf / util / symbol.h
CommitLineData
8b40f521
JK
1#ifndef __PERF_SYMBOL
2#define __PERF_SYMBOL 1
a2928c42
ACM
3
4#include <linux/types.h>
e4204992 5#include <stdbool.h>
5aab621b
ACM
6#include <stdint.h>
7#include "map.h"
b5387528 8#include "../perf.h"
5da50258 9#include <linux/list.h>
43cbcd8a 10#include <linux/rbtree.h>
5aab621b 11#include <stdio.h>
8db4841f 12#include <byteswap.h>
b771a830 13#include <libgen.h>
4383db88 14#include "build-id.h"
a2928c42 15
89fe808a 16#ifdef HAVE_LIBELF_SUPPORT
b68e2f91
CS
17#include <libelf.h>
18#include <gelf.h>
b68e2f91 19#endif
eec185ab 20#include <elf.h>
b68e2f91 21
cdd059d7
JO
22#include "dso.h"
23
89fe808a 24#ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
247648e3
ACM
25extern char *cplus_demangle(const char *, int);
26
1d037ca1 27static inline char *bfd_demangle(void __maybe_unused *v, const char *c, int i)
247648e3
ACM
28{
29 return cplus_demangle(c, i);
30}
31#else
32#ifdef NO_DEMANGLE
1d037ca1
IT
33static inline char *bfd_demangle(void __maybe_unused *v,
34 const char __maybe_unused *c,
35 int __maybe_unused i)
247648e3
ACM
36{
37 return NULL;
38}
39#else
3ce711a6 40#define PACKAGE 'perf'
247648e3
ACM
41#include <bfd.h>
42#endif
43#endif
44
84087126
MR
45/*
46 * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
47 * for newer versions we can use mmap to reduce memory usage:
48 */
89fe808a 49#ifdef HAVE_LIBELF_MMAP_SUPPORT
84087126 50# define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
29a0fc9b
NK
51#else
52# define PERF_ELF_C_READ_MMAP ELF_C_READ
84087126
MR
53#endif
54
99ca4233
MH
55#ifdef HAVE_LIBELF_SUPPORT
56extern Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
57 GElf_Shdr *shp, const char *name, size_t *idx);
58#endif
59
247648e3
ACM
60#ifndef DMGL_PARAMS
61#define DMGL_PARAMS (1 << 0) /* Include function args */
62#define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
63#endif
64
171b3be9
ACM
65/** struct symbol - symtab entry
66 *
67 * @ignore - resolvable but tools ignore it (e.g. idle routines)
68 */
a2928c42
ACM
69struct symbol {
70 struct rb_node rb_node;
9cffa8d5
PM
71 u64 start;
72 u64 end;
fefb0b94 73 u16 namelen;
c408fedf 74 u8 binding;
171b3be9 75 bool ignore;
a2928c42
ACM
76 char name[0];
77};
78
aeafcbaf 79void symbol__delete(struct symbol *sym);
cdd059d7 80void symbols__delete(struct rb_root *symbols);
628ada0c 81
1b2e2df4
ACM
82static inline size_t symbol__size(const struct symbol *sym)
83{
84 return sym->end - sym->start + 1;
85}
86
655000e7
ACM
87struct strlist;
88
b32d133a
ACM
89struct symbol_conf {
90 unsigned short priv_size;
d04b35f8 91 unsigned short nr_events;
b32d133a 92 bool try_vmlinux_path,
fc2be696 93 ignore_vmlinux,
0bc8d205 94 show_kernel_path,
79406cd7 95 use_modules,
d599db3f
ACM
96 sort_by_name,
97 show_nr_samples,
3f2728bd 98 show_total_period,
d599db3f 99 use_callchain,
f7d87444 100 exclude_other,
85e00b55 101 show_cpu_utilization,
ec80fde7 102 initialized,
3e6a2a7f
SE
103 kptr_restrict,
104 annotate_asm_raw,
6e1f601a 105 annotate_src,
328ccdac
NK
106 event_group,
107 demangle;
c410a338 108 const char *vmlinux_name,
b226a5a7 109 *kallsyms_name,
9ed7e1b8 110 *source_prefix,
c410a338 111 *field_sep;
a1645ce1
ZY
112 const char *default_guest_vmlinux_name,
113 *default_guest_kallsyms,
114 *default_guest_modules;
115 const char *guestmount;
edb7c60e 116 const char *dso_list_str,
655000e7
ACM
117 *comm_list_str,
118 *sym_list_str,
119 *col_width_list_str;
120 struct strlist *dso_list,
121 *comm_list,
a68c2c58
SE
122 *sym_list,
123 *dso_from_list,
124 *dso_to_list,
125 *sym_from_list,
126 *sym_to_list;
ec5761ea 127 const char *symfs;
b32d133a
ACM
128};
129
75be6cf4 130extern struct symbol_conf symbol_conf;
3f067dca
ACM
131extern int vmlinux_path__nr_entries;
132extern char **vmlinux_path;
00a192b3 133
aeafcbaf 134static inline void *symbol__priv(struct symbol *sym)
00a192b3 135{
aeafcbaf 136 return ((void *)sym) - symbol_conf.priv_size;
00a192b3
ACM
137}
138
9de89fe7
ACM
139struct ref_reloc_sym {
140 const char *name;
141 u64 addr;
142 u64 unrelocated_addr;
143};
144
59fd5306
ACM
145struct map_symbol {
146 struct map *map;
147 struct symbol *sym;
0f0cbf7a
ACM
148 bool unfolded;
149 bool has_children;
59fd5306
ACM
150};
151
b5387528
RAV
152struct addr_map_symbol {
153 struct map *map;
154 struct symbol *sym;
155 u64 addr;
a68c2c58 156 u64 al_addr;
b5387528
RAV
157};
158
159struct branch_info {
160 struct addr_map_symbol from;
161 struct addr_map_symbol to;
162 struct branch_flags flags;
163};
164
98a3b32c
SE
165struct mem_info {
166 struct addr_map_symbol iaddr;
167 struct addr_map_symbol daddr;
168 union perf_mem_data_src data_src;
169};
170
1ed091c4 171struct addr_location {
cc22e575 172 struct machine *machine;
1ed091c4
ACM
173 struct thread *thread;
174 struct map *map;
175 struct symbol *sym;
176 u64 addr;
177 char level;
c410a338 178 bool filtered;
f60f3593
AS
179 u8 cpumode;
180 s32 cpu;
a1645ce1
ZY
181};
182
b68e2f91
CS
183struct symsrc {
184 char *name;
185 int fd;
186 enum dso_binary_type type;
187
89fe808a 188#ifdef HAVE_LIBELF_SUPPORT
b68e2f91
CS
189 Elf *elf;
190 GElf_Ehdr ehdr;
191
192 Elf_Scn *opdsec;
193 size_t opdidx;
194 GElf_Shdr opdshdr;
195
196 Elf_Scn *symtab;
197 GElf_Shdr symshdr;
198
199 Elf_Scn *dynsym;
200 size_t dynsym_idx;
201 GElf_Shdr dynshdr;
202
203 bool adjust_symbols;
204#endif
205};
206
207void symsrc__destroy(struct symsrc *ss);
208int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
209 enum dso_binary_type type);
d26cd12b 210bool symsrc__has_symtab(struct symsrc *ss);
3aafe5ae 211bool symsrc__possibly_runtime(struct symsrc *ss);
b68e2f91 212
aeafcbaf
ACM
213int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter);
214int dso__load_vmlinux(struct dso *dso, struct map *map,
5230fb7d
ACM
215 const char *vmlinux, bool vmlinux_allocated,
216 symbol_filter_t filter);
aeafcbaf 217int dso__load_vmlinux_path(struct dso *dso, struct map *map,
9de89fe7 218 symbol_filter_t filter);
aeafcbaf 219int dso__load_kallsyms(struct dso *dso, const char *filename, struct map *map,
9de89fe7 220 symbol_filter_t filter);
cdd059d7 221
aeafcbaf
ACM
222struct symbol *dso__find_symbol(struct dso *dso, enum map_type type,
223 u64 addr);
224struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
79406cd7 225 const char *name);
8e0cf965 226struct symbol *dso__first_symbol(struct dso *dso, enum map_type type);
a2928c42 227
2643ce11 228int filename__read_build_id(const char *filename, void *bf, size_t size);
f1617b40 229int sysfs__read_build_id(const char *filename, void *bf, size_t size);
316d70d6
AH
230int modules__parse(const char *filename, void *arg,
231 int (*process_module)(void *arg, const char *name,
232 u64 start));
e5a1845f
NK
233int filename__read_debuglink(const char *filename, char *debuglink,
234 size_t size);
2643ce11 235
75be6cf4 236int symbol__init(void);
d65a458b 237void symbol__exit(void);
166ccc9c 238void symbol__elf_init(void);
e5a1845f 239struct symbol *symbol__new(u64 start, u64 len, u8 binding, const char *name);
a978f2ab
AN
240size_t symbol__fprintf_symname_offs(const struct symbol *sym,
241 const struct addr_location *al, FILE *fp);
547a92e0 242size_t symbol__fprintf_symname(const struct symbol *sym, FILE *fp);
cdd059d7 243size_t symbol__fprintf(struct symbol *sym, FILE *fp);
36a3e646 244bool symbol_type__is_a(char symbol_type, enum map_type map_type);
3f067dca
ACM
245bool symbol__restricted_filename(const char *filename,
246 const char *restricted_filename);
82d1deb0 247bool symbol__is_idle(struct symbol *sym);
36a3e646 248
261360b6
CS
249int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *syms_ss,
250 struct symsrc *runtime_ss, symbol_filter_t filter,
251 int kmodule);
a44f605b
CS
252int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss,
253 struct map *map, symbol_filter_t filter);
e5a1845f
NK
254
255void symbols__insert(struct rb_root *symbols, struct symbol *sym);
256void symbols__fixup_duplicate(struct rb_root *symbols);
257void symbols__fixup_end(struct rb_root *symbols);
258void __map_groups__fixup_end(struct map_groups *mg, enum map_type type);
259
8e0cf965
AH
260typedef int (*mapfn_t)(u64 start, u64 len, u64 pgoff, void *data);
261int file__read_maps(int fd, bool exe, mapfn_t mapfn, void *data,
262 bool *is_64_bit);
263
afba19d9
AH
264#define PERF_KCORE_EXTRACT "/tmp/perf-kcore-XXXXXX"
265
266struct kcore_extract {
267 char *kcore_filename;
268 u64 addr;
269 u64 offs;
270 u64 len;
271 char extract_filename[sizeof(PERF_KCORE_EXTRACT)];
272 int fd;
273};
274
275int kcore_extract__create(struct kcore_extract *kce);
276void kcore_extract__delete(struct kcore_extract *kce);
277
fc1b691d
AH
278int kcore_copy(const char *from_dir, const char *to_dir);
279int compare_proc_modules(const char *from, const char *to);
280
3bfe5f81
DA
281int setup_list(struct strlist **list, const char *list_str,
282 const char *list_name);
283
8b40f521 284#endif /* __PERF_SYMBOL */