blob: c239e86541a3d075a1b8790d89ffd356ead177e6 [file] [log] [blame]
Jiri Olsacdd059d2012-10-27 23:18:32 +02001#ifndef __PERF_DSO
2#define __PERF_DSO
3
4#include <linux/types.h>
5#include <linux/rbtree.h>
Adrian Hunter39b12f782013-08-07 14:38:47 +03006#include <stdbool.h>
Borislav Petkovd944c4e2014-04-25 21:31:02 +02007#include <linux/types.h>
Jiri Olsacdd059d2012-10-27 23:18:32 +02008#include "map.h"
Namhyung Kim86c98ca2013-09-11 14:09:30 +09009#include "build-id.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +020010
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,
Adrian Hunter8e0cf962013-08-07 14:38:51 +030025 DSO_BINARY_TYPE__KCORE,
26 DSO_BINARY_TYPE__GUEST_KCORE,
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020027 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO,
Jiri Olsacdd059d2012-10-27 23:18:32 +020028 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];
Adrian Hunter454ff002013-12-03 09:23:07 +020079 void *a2l;
Adrian Hunter0058aef2013-12-03 09:23:08 +020080 char *symsrc_filename;
Adrian Hunter906049c82013-12-03 09:23:10 +020081 unsigned int a2l_fails;
Jiri Olsacdd059d2012-10-27 23:18:32 +020082 enum dso_kernel_type kernel;
83 enum dso_swap_type needs_swap;
84 enum dso_binary_type symtab_type;
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -030085 enum dso_binary_type binary_type;
Jiri Olsacdd059d2012-10-27 23:18:32 +020086 u8 adjust_symbols:1;
87 u8 has_build_id:1;
Namhyung Kim2cc9d0e2013-09-11 14:09:31 +090088 u8 has_srcline:1;
Jiri Olsacdd059d2012-10-27 23:18:32 +020089 u8 hit:1;
90 u8 annotate_warned:1;
Arnaldo Carvalho de Meloc7282f22013-12-10 10:44:37 -030091 u8 short_name_allocated:1;
92 u8 long_name_allocated:1;
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +030093 u8 is_64_bit:1;
Jiri Olsacdd059d2012-10-27 23:18:32 +020094 u8 sorted_by_name;
95 u8 loaded;
Adrian Hunter0131c4e2013-08-07 14:38:50 +030096 u8 rel;
Jiri Olsacdd059d2012-10-27 23:18:32 +020097 u8 build_id[BUILD_ID_SIZE];
98 const char *short_name;
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -030099 const char *long_name;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200100 u16 long_name_len;
101 u16 short_name_len;
Jiri Olsaca40e2a2014-05-07 18:30:45 +0200102
103 /* dso data file */
104 struct {
105 struct rb_root cache;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200106 int fd;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200107 size_t file_size;
Jiri Olsaeba51022014-04-30 15:00:59 +0200108 struct list_head open_entry;
Jiri Olsaca40e2a2014-05-07 18:30:45 +0200109 } data;
110
Jiri Olsacdd059d2012-10-27 23:18:32 +0200111 char name[0];
112};
113
Masami Hiramatsueb948e52014-02-06 05:32:25 +0000114/* dso__for_each_symbol - iterate over the symbols of given type
115 *
116 * @dso: the 'struct dso *' in which symbols itereated
117 * @pos: the 'struct symbol *' to use as a loop cursor
118 * @n: the 'struct rb_node *' to use as a temporary storage
119 * @type: the 'enum map_type' type of symbols
120 */
121#define dso__for_each_symbol(dso, pos, n, type) \
122 symbols__for_each_entry(&(dso)->symbols[(type)], pos, n)
123
Jiri Olsacdd059d2012-10-27 23:18:32 +0200124static inline void dso__set_loaded(struct dso *dso, enum map_type type)
125{
126 dso->loaded |= (1 << type);
127}
128
129struct dso *dso__new(const char *name);
130void dso__delete(struct dso *dso);
131
Adrian Hunter58a98c92013-12-10 11:11:46 -0300132void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated);
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300133void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200134
135int dso__name_len(const struct dso *dso);
136
137bool dso__loaded(const struct dso *dso, enum map_type type);
138
139bool dso__sorted_by_name(const struct dso *dso, enum map_type type);
140void dso__set_sorted_by_name(struct dso *dso, enum map_type type);
141void dso__sort_by_name(struct dso *dso, enum map_type type);
142
143void dso__set_build_id(struct dso *dso, void *build_id);
144bool dso__build_id_equal(const struct dso *dso, u8 *build_id);
145void dso__read_running_kernel_build_id(struct dso *dso,
146 struct machine *machine);
147int dso__kernel_module_get_build_id(struct dso *dso, const char *root_dir);
148
149char dso__symtab_origin(const struct dso *dso);
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300150int dso__read_binary_type_filename(const struct dso *dso, enum dso_binary_type type,
151 char *root_dir, char *filename, size_t size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200152
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200153/*
154 * The dso__data_* external interface provides following functions:
155 * dso__data_fd
156 * dso__data_close
157 * dso__data_read_offset
158 * dso__data_read_addr
159 *
160 * Please refer to the dso.c object code for each function and
161 * arguments documentation. Following text tries to explain the
162 * dso file descriptor caching.
163 *
164 * The dso__data* interface allows caching of opened file descriptors
165 * to speed up the dso data accesses. The idea is to leave the file
166 * descriptor opened ideally for the whole life of the dso object.
167 *
168 * The current usage of the dso__data_* interface is as follows:
169 *
170 * Get DSO's fd:
171 * int fd = dso__data_fd(dso, machine);
172 * USE 'fd' SOMEHOW
173 *
174 * Read DSO's data:
175 * n = dso__data_read_offset(dso_0, &machine, 0, buf, BUFSIZE);
176 * n = dso__data_read_addr(dso_0, &machine, 0, buf, BUFSIZE);
177 *
178 * Eventually close DSO's fd:
179 * dso__data_close(dso);
180 *
181 * It is not necessary to close the DSO object data file. Each time new
182 * DSO data file is opened, the limit (RLIMIT_NOFILE/2) is checked. Once
183 * it is crossed, the oldest opened DSO object is closed.
184 *
185 * The dso__delete function calls close_dso function to ensure the
186 * data file descriptor gets closed/unmapped before the dso object
187 * is freed.
188 *
189 * TODO
190*/
Jiri Olsacdd059d2012-10-27 23:18:32 +0200191int dso__data_fd(struct dso *dso, struct machine *machine);
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200192void dso__data_close(struct dso *dso);
193
Jiri Olsacdd059d2012-10-27 23:18:32 +0200194ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
195 u64 offset, u8 *data, ssize_t size);
196ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
197 struct machine *machine, u64 addr,
198 u8 *data, ssize_t size);
199
200struct map *dso__new_map(const char *name);
201struct dso *dso__kernel_findnew(struct machine *machine, const char *name,
202 const char *short_name, int dso_type);
203
204void dsos__add(struct list_head *head, struct dso *dso);
Arnaldo Carvalho de Melo33449962013-12-10 15:46:29 -0300205struct dso *dsos__find(const struct list_head *head, const char *name,
Waiman Longf9ceffb2013-05-09 10:42:48 -0400206 bool cmp_short);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200207struct dso *__dsos__findnew(struct list_head *head, const char *name);
208bool __dsos__read_build_ids(struct list_head *head, bool with_hits);
209
210size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -0300211 bool (skip)(struct dso *dso, int parm), int parm);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200212size_t __dsos__fprintf(struct list_head *head, FILE *fp);
213
214size_t dso__fprintf_buildid(struct dso *dso, FILE *fp);
215size_t dso__fprintf_symbols_by_name(struct dso *dso,
216 enum map_type type, FILE *fp);
217size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp);
Adrian Hunter39b12f782013-08-07 14:38:47 +0300218
219static inline bool dso__is_vmlinux(struct dso *dso)
220{
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300221 return dso->binary_type == DSO_BINARY_TYPE__VMLINUX ||
222 dso->binary_type == DSO_BINARY_TYPE__GUEST_VMLINUX;
Adrian Hunter39b12f782013-08-07 14:38:47 +0300223}
224
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300225static inline bool dso__is_kcore(struct dso *dso)
226{
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300227 return dso->binary_type == DSO_BINARY_TYPE__KCORE ||
228 dso->binary_type == DSO_BINARY_TYPE__GUEST_KCORE;
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300229}
230
Adrian Hunter454ff002013-12-03 09:23:07 +0200231void dso__free_a2l(struct dso *dso);
232
Jiri Olsacdd059d2012-10-27 23:18:32 +0200233#endif /* __PERF_DSO */