blob: ea198d19dadd33939e67044039db3d3d88593968 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PERF_DSO
3#define __PERF_DSO
4
5#include <linux/refcount.h>
6#include <linux/types.h>
7#include <linux/rbtree.h>
8#include <sys/types.h>
9#include <stdbool.h>
10#include <pthread.h>
11#include <linux/types.h>
12#include <linux/bitops.h>
13#include "map.h"
14#include "namespaces.h"
15#include "build-id.h"
16
17enum dso_binary_type {
18 DSO_BINARY_TYPE__KALLSYMS = 0,
19 DSO_BINARY_TYPE__GUEST_KALLSYMS,
20 DSO_BINARY_TYPE__VMLINUX,
21 DSO_BINARY_TYPE__GUEST_VMLINUX,
22 DSO_BINARY_TYPE__JAVA_JIT,
23 DSO_BINARY_TYPE__DEBUGLINK,
24 DSO_BINARY_TYPE__BUILD_ID_CACHE,
25 DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO,
26 DSO_BINARY_TYPE__FEDORA_DEBUGINFO,
27 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO,
28 DSO_BINARY_TYPE__MIXEDUP_UBUNTU_DEBUGINFO,
29 DSO_BINARY_TYPE__BUILDID_DEBUGINFO,
30 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
31 DSO_BINARY_TYPE__GUEST_KMODULE,
32 DSO_BINARY_TYPE__GUEST_KMODULE_COMP,
33 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE,
34 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP,
35 DSO_BINARY_TYPE__KCORE,
36 DSO_BINARY_TYPE__GUEST_KCORE,
37 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO,
38 DSO_BINARY_TYPE__NOT_FOUND,
39};
40
41enum dso_kernel_type {
42 DSO_TYPE_USER = 0,
43 DSO_TYPE_KERNEL,
44 DSO_TYPE_GUEST_KERNEL
45};
46
47enum dso_swap_type {
48 DSO_SWAP__UNSET,
49 DSO_SWAP__NO,
50 DSO_SWAP__YES,
51};
52
53enum dso_data_status {
54 DSO_DATA_STATUS_ERROR = -1,
55 DSO_DATA_STATUS_UNKNOWN = 0,
56 DSO_DATA_STATUS_OK = 1,
57};
58
59enum dso_data_status_seen {
60 DSO_DATA_STATUS_SEEN_ITRACE,
61};
62
63enum dso_type {
64 DSO__TYPE_UNKNOWN,
65 DSO__TYPE_64BIT,
66 DSO__TYPE_32BIT,
67 DSO__TYPE_X32BIT,
68};
69
70enum dso_load_errno {
71 DSO_LOAD_ERRNO__SUCCESS = 0,
72
73 /*
74 * Choose an arbitrary negative big number not to clash with standard
75 * errno since SUS requires the errno has distinct positive values.
76 * See 'Issue 6' in the link below.
77 *
78 * http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/errno.h.html
79 */
80 __DSO_LOAD_ERRNO__START = -10000,
81
82 DSO_LOAD_ERRNO__INTERNAL_ERROR = __DSO_LOAD_ERRNO__START,
83
84 /* for symsrc__init() */
85 DSO_LOAD_ERRNO__INVALID_ELF,
86 DSO_LOAD_ERRNO__CANNOT_READ_BUILDID,
87 DSO_LOAD_ERRNO__MISMATCHING_BUILDID,
88
89 /* for decompress_kmodule */
90 DSO_LOAD_ERRNO__DECOMPRESSION_FAILURE,
91
92 __DSO_LOAD_ERRNO__END,
93};
94
95#define DSO__SWAP(dso, type, val) \
96({ \
97 type ____r = val; \
98 BUG_ON(dso->needs_swap == DSO_SWAP__UNSET); \
99 if (dso->needs_swap == DSO_SWAP__YES) { \
100 switch (sizeof(____r)) { \
101 case 2: \
102 ____r = bswap_16(val); \
103 break; \
104 case 4: \
105 ____r = bswap_32(val); \
106 break; \
107 case 8: \
108 ____r = bswap_64(val); \
109 break; \
110 default: \
111 BUG_ON(1); \
112 } \
113 } \
114 ____r; \
115})
116
117#define DSO__DATA_CACHE_SIZE 4096
118#define DSO__DATA_CACHE_MASK ~(DSO__DATA_CACHE_SIZE - 1)
119
120struct dso_cache {
121 struct rb_node rb_node;
122 u64 offset;
123 u64 size;
124 char data[0];
125};
126
127/*
128 * DSOs are put into both a list for fast iteration and rbtree for fast
129 * long name lookup.
130 */
131struct dsos {
132 struct list_head head;
133 struct rb_root root; /* rbtree root sorted by long name */
134 pthread_rwlock_t lock;
135};
136
137struct auxtrace_cache;
138
139struct dso {
140 pthread_mutex_t lock;
141 struct list_head node;
142 struct rb_node rb_node; /* rbtree node sorted by long name */
143 struct rb_root *root; /* root of rbtree that rb_node is in */
144 struct rb_root symbols[MAP__NR_TYPES];
145 struct rb_root symbol_names[MAP__NR_TYPES];
146 struct {
147 u64 addr;
148 struct symbol *symbol;
149 } last_find_result[MAP__NR_TYPES];
150 void *a2l;
151 char *symsrc_filename;
152 unsigned int a2l_fails;
153 enum dso_kernel_type kernel;
154 enum dso_swap_type needs_swap;
155 enum dso_binary_type symtab_type;
156 enum dso_binary_type binary_type;
157 enum dso_load_errno load_errno;
158 u8 adjust_symbols:1;
159 u8 has_build_id:1;
160 u8 has_srcline:1;
161 u8 hit:1;
162 u8 annotate_warned:1;
163 u8 short_name_allocated:1;
164 u8 long_name_allocated:1;
165 u8 is_64_bit:1;
166 u8 sorted_by_name;
167 u8 loaded;
168 u8 rel;
169 u8 build_id[BUILD_ID_SIZE];
170 u64 text_offset;
171 const char *short_name;
172 const char *long_name;
173 u16 long_name_len;
174 u16 short_name_len;
175 void *dwfl; /* DWARF debug info */
176 struct auxtrace_cache *auxtrace_cache;
177
178 /* dso data file */
179 struct {
180 struct rb_root cache;
181 int fd;
182 int status;
183 u32 status_seen;
184 size_t file_size;
185 struct list_head open_entry;
186 u64 debug_frame_offset;
187 u64 eh_frame_hdr_offset;
188 } data;
189
190 union { /* Tool specific area */
191 void *priv;
192 u64 db_id;
193 };
194 struct nsinfo *nsinfo;
195 refcount_t refcnt;
196 char name[0];
197};
198
199/* dso__for_each_symbol - iterate over the symbols of given type
200 *
201 * @dso: the 'struct dso *' in which symbols itereated
202 * @pos: the 'struct symbol *' to use as a loop cursor
203 * @n: the 'struct rb_node *' to use as a temporary storage
204 * @type: the 'enum map_type' type of symbols
205 */
206#define dso__for_each_symbol(dso, pos, n, type) \
207 symbols__for_each_entry(&(dso)->symbols[(type)], pos, n)
208
209static inline void dso__set_loaded(struct dso *dso, enum map_type type)
210{
211 dso->loaded |= (1 << type);
212}
213
214struct dso *dso__new(const char *name);
215void dso__delete(struct dso *dso);
216
217void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated);
218void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated);
219
220int dso__name_len(const struct dso *dso);
221
222struct dso *dso__get(struct dso *dso);
223void dso__put(struct dso *dso);
224
225static inline void __dso__zput(struct dso **dso)
226{
227 dso__put(*dso);
228 *dso = NULL;
229}
230
231#define dso__zput(dso) __dso__zput(&dso)
232
233bool dso__loaded(const struct dso *dso, enum map_type type);
234
235bool dso__sorted_by_name(const struct dso *dso, enum map_type type);
236void dso__set_sorted_by_name(struct dso *dso, enum map_type type);
237void dso__sort_by_name(struct dso *dso, enum map_type type);
238
239void dso__set_build_id(struct dso *dso, void *build_id);
240bool dso__build_id_equal(const struct dso *dso, u8 *build_id);
241void dso__read_running_kernel_build_id(struct dso *dso,
242 struct machine *machine);
243int dso__kernel_module_get_build_id(struct dso *dso, const char *root_dir);
244
245char dso__symtab_origin(const struct dso *dso);
246int dso__read_binary_type_filename(const struct dso *dso, enum dso_binary_type type,
247 char *root_dir, char *filename, size_t size);
248bool is_supported_compression(const char *ext);
249bool is_kernel_module(const char *pathname, int cpumode);
250bool decompress_to_file(const char *ext, const char *filename, int output_fd);
251bool dso__needs_decompress(struct dso *dso);
252int dso__decompress_kmodule_fd(struct dso *dso, const char *name);
253int dso__decompress_kmodule_path(struct dso *dso, const char *name,
254 char *pathname, size_t len);
255
256#define KMOD_DECOMP_NAME "/tmp/perf-kmod-XXXXXX"
257#define KMOD_DECOMP_LEN sizeof(KMOD_DECOMP_NAME)
258
259struct kmod_path {
260 char *name;
261 char *ext;
262 bool comp;
263 bool kmod;
264};
265
266int __kmod_path__parse(struct kmod_path *m, const char *path,
267 bool alloc_name, bool alloc_ext);
268
269#define kmod_path__parse(__m, __p) __kmod_path__parse(__m, __p, false, false)
270#define kmod_path__parse_name(__m, __p) __kmod_path__parse(__m, __p, true , false)
271#define kmod_path__parse_ext(__m, __p) __kmod_path__parse(__m, __p, false, true)
272
273void dso__set_module_info(struct dso *dso, struct kmod_path *m,
274 struct machine *machine);
275
276/*
277 * The dso__data_* external interface provides following functions:
278 * dso__data_get_fd
279 * dso__data_put_fd
280 * dso__data_close
281 * dso__data_size
282 * dso__data_read_offset
283 * dso__data_read_addr
284 *
285 * Please refer to the dso.c object code for each function and
286 * arguments documentation. Following text tries to explain the
287 * dso file descriptor caching.
288 *
289 * The dso__data* interface allows caching of opened file descriptors
290 * to speed up the dso data accesses. The idea is to leave the file
291 * descriptor opened ideally for the whole life of the dso object.
292 *
293 * The current usage of the dso__data_* interface is as follows:
294 *
295 * Get DSO's fd:
296 * int fd = dso__data_get_fd(dso, machine);
297 * if (fd >= 0) {
298 * USE 'fd' SOMEHOW
299 * dso__data_put_fd(dso);
300 * }
301 *
302 * Read DSO's data:
303 * n = dso__data_read_offset(dso_0, &machine, 0, buf, BUFSIZE);
304 * n = dso__data_read_addr(dso_0, &machine, 0, buf, BUFSIZE);
305 *
306 * Eventually close DSO's fd:
307 * dso__data_close(dso);
308 *
309 * It is not necessary to close the DSO object data file. Each time new
310 * DSO data file is opened, the limit (RLIMIT_NOFILE/2) is checked. Once
311 * it is crossed, the oldest opened DSO object is closed.
312 *
313 * The dso__delete function calls close_dso function to ensure the
314 * data file descriptor gets closed/unmapped before the dso object
315 * is freed.
316 *
317 * TODO
318*/
319int dso__data_get_fd(struct dso *dso, struct machine *machine);
320void dso__data_put_fd(struct dso *dso);
321void dso__data_close(struct dso *dso);
322
323off_t dso__data_size(struct dso *dso, struct machine *machine);
324ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
325 u64 offset, u8 *data, ssize_t size);
326ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
327 struct machine *machine, u64 addr,
328 u8 *data, ssize_t size);
329bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by);
330
331struct map *dso__new_map(const char *name);
332struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
333 const char *short_name, int dso_type);
334
335void __dsos__add(struct dsos *dsos, struct dso *dso);
336void dsos__add(struct dsos *dsos, struct dso *dso);
337struct dso *__dsos__addnew(struct dsos *dsos, const char *name);
338struct dso *__dsos__find(struct dsos *dsos, const char *name, bool cmp_short);
339struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short);
340struct dso *__dsos__findnew(struct dsos *dsos, const char *name);
341struct dso *dsos__findnew(struct dsos *dsos, const char *name);
342bool __dsos__read_build_ids(struct list_head *head, bool with_hits);
343
344void dso__reset_find_symbol_cache(struct dso *dso);
345
346size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
347 bool (skip)(struct dso *dso, int parm), int parm);
348size_t __dsos__fprintf(struct list_head *head, FILE *fp);
349
350size_t dso__fprintf_buildid(struct dso *dso, FILE *fp);
351size_t dso__fprintf_symbols_by_name(struct dso *dso,
352 enum map_type type, FILE *fp);
353size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp);
354
355static inline bool dso__is_vmlinux(struct dso *dso)
356{
357 return dso->binary_type == DSO_BINARY_TYPE__VMLINUX ||
358 dso->binary_type == DSO_BINARY_TYPE__GUEST_VMLINUX;
359}
360
361static inline bool dso__is_kcore(struct dso *dso)
362{
363 return dso->binary_type == DSO_BINARY_TYPE__KCORE ||
364 dso->binary_type == DSO_BINARY_TYPE__GUEST_KCORE;
365}
366
367static inline bool dso__is_kallsyms(struct dso *dso)
368{
369 return dso->kernel && dso->long_name[0] != '/';
370}
371
372void dso__free_a2l(struct dso *dso);
373
374enum dso_type dso__type(struct dso *dso, struct machine *machine);
375
376int dso__strerror_load(struct dso *dso, char *buf, size_t buflen);
377
378void reset_fd_limit(void);
379
380#endif /* __PERF_DSO */