]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/perf/util/dso.h
perf tools: Cache dso data file descriptor
[mirror_ubuntu-focal-kernel.git] / tools / perf / util / dso.h
CommitLineData
cdd059d7
JO
1#ifndef __PERF_DSO
2#define __PERF_DSO
3
4#include <linux/types.h>
5#include <linux/rbtree.h>
39b12f78 6#include <stdbool.h>
d944c4ee 7#include <linux/types.h>
cdd059d7 8#include "map.h"
86c98cab 9#include "build-id.h"
cdd059d7
JO
10
11enum dso_binary_type {
12 DSO_BINARY_TYPE__KALLSYMS = 0,
13 DSO_BINARY_TYPE__GUEST_KALLSYMS,
14 DSO_BINARY_TYPE__VMLINUX,
15 DSO_BINARY_TYPE__GUEST_VMLINUX,
16 DSO_BINARY_TYPE__JAVA_JIT,
17 DSO_BINARY_TYPE__DEBUGLINK,
18 DSO_BINARY_TYPE__BUILD_ID_CACHE,
19 DSO_BINARY_TYPE__FEDORA_DEBUGINFO,
20 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO,
21 DSO_BINARY_TYPE__BUILDID_DEBUGINFO,
22 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
23 DSO_BINARY_TYPE__GUEST_KMODULE,
24 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE,
8e0cf965
AH
25 DSO_BINARY_TYPE__KCORE,
26 DSO_BINARY_TYPE__GUEST_KCORE,
9cd00941 27 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO,
cdd059d7
JO
28 DSO_BINARY_TYPE__NOT_FOUND,
29};
30
31enum dso_kernel_type {
32 DSO_TYPE_USER = 0,
33 DSO_TYPE_KERNEL,
34 DSO_TYPE_GUEST_KERNEL
35};
36
37enum dso_swap_type {
38 DSO_SWAP__UNSET,
39 DSO_SWAP__NO,
40 DSO_SWAP__YES,
41};
42
43#define DSO__SWAP(dso, type, val) \
44({ \
45 type ____r = val; \
46 BUG_ON(dso->needs_swap == DSO_SWAP__UNSET); \
47 if (dso->needs_swap == DSO_SWAP__YES) { \
48 switch (sizeof(____r)) { \
49 case 2: \
50 ____r = bswap_16(val); \
51 break; \
52 case 4: \
53 ____r = bswap_32(val); \
54 break; \
55 case 8: \
56 ____r = bswap_64(val); \
57 break; \
58 default: \
59 BUG_ON(1); \
60 } \
61 } \
62 ____r; \
63})
64
65#define DSO__DATA_CACHE_SIZE 4096
66#define DSO__DATA_CACHE_MASK ~(DSO__DATA_CACHE_SIZE - 1)
67
68struct dso_cache {
69 struct rb_node rb_node;
70 u64 offset;
71 u64 size;
72 char data[0];
73};
74
75struct dso {
76 struct list_head node;
77 struct rb_root symbols[MAP__NR_TYPES];
78 struct rb_root symbol_names[MAP__NR_TYPES];
454ff00f 79 void *a2l;
0058aef6 80 char *symsrc_filename;
906049c8 81 unsigned int a2l_fails;
cdd059d7
JO
82 enum dso_kernel_type kernel;
83 enum dso_swap_type needs_swap;
84 enum dso_binary_type symtab_type;
5f70619d 85 enum dso_binary_type binary_type;
cdd059d7
JO
86 u8 adjust_symbols:1;
87 u8 has_build_id:1;
2cc9d0ef 88 u8 has_srcline:1;
cdd059d7
JO
89 u8 hit:1;
90 u8 annotate_warned:1;
c7282f2e
ACM
91 u8 short_name_allocated:1;
92 u8 long_name_allocated:1;
cdd059d7
JO
93 u8 sorted_by_name;
94 u8 loaded;
0131c4ec 95 u8 rel;
cdd059d7
JO
96 u8 build_id[BUILD_ID_SIZE];
97 const char *short_name;
bf4414ae 98 const char *long_name;
cdd059d7
JO
99 u16 long_name_len;
100 u16 short_name_len;
ca40e2af
JO
101
102 /* dso data file */
103 struct {
104 struct rb_root cache;
53fa8eaa 105 int fd;
eba5102d 106 struct list_head open_entry;
ca40e2af
JO
107 } data;
108
cdd059d7
JO
109 char name[0];
110};
111
eb948e50
MH
112/* dso__for_each_symbol - iterate over the symbols of given type
113 *
114 * @dso: the 'struct dso *' in which symbols itereated
115 * @pos: the 'struct symbol *' to use as a loop cursor
116 * @n: the 'struct rb_node *' to use as a temporary storage
117 * @type: the 'enum map_type' type of symbols
118 */
119#define dso__for_each_symbol(dso, pos, n, type) \
120 symbols__for_each_entry(&(dso)->symbols[(type)], pos, n)
121
cdd059d7
JO
122static inline void dso__set_loaded(struct dso *dso, enum map_type type)
123{
124 dso->loaded |= (1 << type);
125}
126
127struct dso *dso__new(const char *name);
128void dso__delete(struct dso *dso);
129
58a98c9c 130void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated);
bf4414ae 131void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated);
cdd059d7
JO
132
133int dso__name_len(const struct dso *dso);
134
135bool dso__loaded(const struct dso *dso, enum map_type type);
136
137bool dso__sorted_by_name(const struct dso *dso, enum map_type type);
138void dso__set_sorted_by_name(struct dso *dso, enum map_type type);
139void dso__sort_by_name(struct dso *dso, enum map_type type);
140
141void dso__set_build_id(struct dso *dso, void *build_id);
142bool dso__build_id_equal(const struct dso *dso, u8 *build_id);
143void dso__read_running_kernel_build_id(struct dso *dso,
144 struct machine *machine);
145int dso__kernel_module_get_build_id(struct dso *dso, const char *root_dir);
146
147char dso__symtab_origin(const struct dso *dso);
ee4e9625
ACM
148int dso__read_binary_type_filename(const struct dso *dso, enum dso_binary_type type,
149 char *root_dir, char *filename, size_t size);
cdd059d7
JO
150
151int dso__data_fd(struct dso *dso, struct machine *machine);
53fa8eaa
JO
152void dso__data_close(struct dso *dso);
153
cdd059d7
JO
154ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
155 u64 offset, u8 *data, ssize_t size);
156ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
157 struct machine *machine, u64 addr,
158 u8 *data, ssize_t size);
159
160struct map *dso__new_map(const char *name);
161struct dso *dso__kernel_findnew(struct machine *machine, const char *name,
162 const char *short_name, int dso_type);
163
164void dsos__add(struct list_head *head, struct dso *dso);
3344996e 165struct dso *dsos__find(const struct list_head *head, const char *name,
f9ceffb6 166 bool cmp_short);
cdd059d7
JO
167struct dso *__dsos__findnew(struct list_head *head, const char *name);
168bool __dsos__read_build_ids(struct list_head *head, bool with_hits);
169
170size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
417c2ff6 171 bool (skip)(struct dso *dso, int parm), int parm);
cdd059d7
JO
172size_t __dsos__fprintf(struct list_head *head, FILE *fp);
173
174size_t dso__fprintf_buildid(struct dso *dso, FILE *fp);
175size_t dso__fprintf_symbols_by_name(struct dso *dso,
176 enum map_type type, FILE *fp);
177size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp);
39b12f78
AH
178
179static inline bool dso__is_vmlinux(struct dso *dso)
180{
5f70619d
ACM
181 return dso->binary_type == DSO_BINARY_TYPE__VMLINUX ||
182 dso->binary_type == DSO_BINARY_TYPE__GUEST_VMLINUX;
39b12f78
AH
183}
184
8e0cf965
AH
185static inline bool dso__is_kcore(struct dso *dso)
186{
5f70619d
ACM
187 return dso->binary_type == DSO_BINARY_TYPE__KCORE ||
188 dso->binary_type == DSO_BINARY_TYPE__GUEST_KCORE;
8e0cf965
AH
189}
190
454ff00f
AH
191void dso__free_a2l(struct dso *dso);
192
cdd059d7 193#endif /* __PERF_DSO */