blob: 516e0c25ea16724ca896f5dec0a7442f42717e8c [file] [log] [blame]
Jiri Olsabda6ee42014-04-30 15:25:10 +02001#include <asm/bug.h>
Jiri Olsac6580452014-04-30 15:47:27 +02002#include <sys/time.h>
3#include <sys/resource.h>
Jiri Olsacdd059d2012-10-27 23:18:32 +02004#include "symbol.h"
5#include "dso.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -03006#include "machine.h"
Adrian Huntercfe91742015-04-09 18:53:55 +03007#include "auxtrace.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +02008#include "util.h"
9#include "debug.h"
10
11char dso__symtab_origin(const struct dso *dso)
12{
13 static const char origin[] = {
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020014 [DSO_BINARY_TYPE__KALLSYMS] = 'k',
15 [DSO_BINARY_TYPE__VMLINUX] = 'v',
16 [DSO_BINARY_TYPE__JAVA_JIT] = 'j',
17 [DSO_BINARY_TYPE__DEBUGLINK] = 'l',
18 [DSO_BINARY_TYPE__BUILD_ID_CACHE] = 'B',
19 [DSO_BINARY_TYPE__FEDORA_DEBUGINFO] = 'f',
20 [DSO_BINARY_TYPE__UBUNTU_DEBUGINFO] = 'u',
21 [DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO] = 'o',
22 [DSO_BINARY_TYPE__BUILDID_DEBUGINFO] = 'b',
23 [DSO_BINARY_TYPE__SYSTEM_PATH_DSO] = 'd',
24 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE] = 'K',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090025 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP] = 'm',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020026 [DSO_BINARY_TYPE__GUEST_KALLSYMS] = 'g',
27 [DSO_BINARY_TYPE__GUEST_KMODULE] = 'G',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090028 [DSO_BINARY_TYPE__GUEST_KMODULE_COMP] = 'M',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020029 [DSO_BINARY_TYPE__GUEST_VMLINUX] = 'V',
Jiri Olsacdd059d2012-10-27 23:18:32 +020030 };
31
32 if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
33 return '!';
34 return origin[dso->symtab_type];
35}
36
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -030037int dso__read_binary_type_filename(const struct dso *dso,
38 enum dso_binary_type type,
39 char *root_dir, char *filename, size_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +020040{
41 char build_id_hex[BUILD_ID_SIZE * 2 + 1];
42 int ret = 0;
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030043 size_t len;
Jiri Olsacdd059d2012-10-27 23:18:32 +020044
45 switch (type) {
46 case DSO_BINARY_TYPE__DEBUGLINK: {
47 char *debuglink;
48
Victor Kamenskydc6254c2015-01-26 22:34:02 -080049 len = __symbol__join_symfs(filename, size, dso->long_name);
50 debuglink = filename + len;
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -030051 while (debuglink != filename && *debuglink != '/')
Jiri Olsacdd059d2012-10-27 23:18:32 +020052 debuglink--;
53 if (*debuglink == '/')
54 debuglink++;
Victor Kamenskydc6254c2015-01-26 22:34:02 -080055 ret = filename__read_debuglink(filename, debuglink,
Stephane Eranian0d3dc5e2014-02-20 10:32:55 +090056 size - (debuglink - filename));
Jiri Olsacdd059d2012-10-27 23:18:32 +020057 }
58 break;
59 case DSO_BINARY_TYPE__BUILD_ID_CACHE:
60 /* skip the locally configured cache if a symfs is given */
61 if (symbol_conf.symfs[0] ||
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -030062 (dso__build_id_filename(dso, filename, size) == NULL))
Jiri Olsacdd059d2012-10-27 23:18:32 +020063 ret = -1;
64 break;
65
66 case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030067 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
68 snprintf(filename + len, size - len, "%s.debug", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +020069 break;
70
71 case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030072 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
73 snprintf(filename + len, size - len, "%s", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +020074 break;
75
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020076 case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
77 {
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -030078 const char *last_slash;
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020079 size_t dir_size;
80
81 last_slash = dso->long_name + dso->long_name_len;
82 while (last_slash != dso->long_name && *last_slash != '/')
83 last_slash--;
84
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030085 len = __symbol__join_symfs(filename, size, "");
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020086 dir_size = last_slash - dso->long_name + 2;
87 if (dir_size > (size - len)) {
88 ret = -1;
89 break;
90 }
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -030091 len += scnprintf(filename + len, dir_size, "%s", dso->long_name);
92 len += scnprintf(filename + len , size - len, ".debug%s",
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020093 last_slash);
94 break;
95 }
96
Jiri Olsacdd059d2012-10-27 23:18:32 +020097 case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
98 if (!dso->has_build_id) {
99 ret = -1;
100 break;
101 }
102
103 build_id__sprintf(dso->build_id,
104 sizeof(dso->build_id),
105 build_id_hex);
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300106 len = __symbol__join_symfs(filename, size, "/usr/lib/debug/.build-id/");
107 snprintf(filename + len, size - len, "%.2s/%s.debug",
108 build_id_hex, build_id_hex + 2);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200109 break;
110
Adrian Hunter39b12f782013-08-07 14:38:47 +0300111 case DSO_BINARY_TYPE__VMLINUX:
112 case DSO_BINARY_TYPE__GUEST_VMLINUX:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200113 case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300114 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200115 break;
116
117 case DSO_BINARY_TYPE__GUEST_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900118 case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300119 path__join3(filename, size, symbol_conf.symfs,
120 root_dir, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200121 break;
122
123 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900124 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300125 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200126 break;
127
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300128 case DSO_BINARY_TYPE__KCORE:
129 case DSO_BINARY_TYPE__GUEST_KCORE:
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -0300130 snprintf(filename, size, "%s", dso->long_name);
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300131 break;
132
Jiri Olsacdd059d2012-10-27 23:18:32 +0200133 default:
134 case DSO_BINARY_TYPE__KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200135 case DSO_BINARY_TYPE__GUEST_KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200136 case DSO_BINARY_TYPE__JAVA_JIT:
137 case DSO_BINARY_TYPE__NOT_FOUND:
138 ret = -1;
139 break;
140 }
141
142 return ret;
143}
144
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900145static const struct {
146 const char *fmt;
147 int (*decompress)(const char *input, int output);
148} compressions[] = {
Namhyung Kime92ce122014-10-31 16:51:38 +0900149#ifdef HAVE_ZLIB_SUPPORT
150 { "gz", gzip_decompress_to_file },
151#endif
Jiri Olsa80a32e5b2015-01-29 13:29:39 +0100152#ifdef HAVE_LZMA_SUPPORT
153 { "xz", lzma_decompress_to_file },
154#endif
Namhyung Kime92ce122014-10-31 16:51:38 +0900155 { NULL, NULL },
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900156};
157
158bool is_supported_compression(const char *ext)
159{
160 unsigned i;
161
162 for (i = 0; compressions[i].fmt; i++) {
163 if (!strcmp(ext, compressions[i].fmt))
164 return true;
165 }
166 return false;
167}
168
Jiri Olsae746b3e2015-02-12 22:16:34 +0100169bool is_kernel_module(const char *pathname)
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900170{
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100171 struct kmod_path m;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900172
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100173 if (kmod_path__parse(&m, pathname))
174 return NULL;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900175
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100176 return m.kmod;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900177}
178
179bool decompress_to_file(const char *ext, const char *filename, int output_fd)
180{
181 unsigned i;
182
183 for (i = 0; compressions[i].fmt; i++) {
184 if (!strcmp(ext, compressions[i].fmt))
185 return !compressions[i].decompress(filename,
186 output_fd);
187 }
188 return false;
189}
190
191bool dso__needs_decompress(struct dso *dso)
192{
193 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP ||
194 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
195}
196
Jiri Olsaeba51022014-04-30 15:00:59 +0200197/*
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100198 * Parses kernel module specified in @path and updates
199 * @m argument like:
200 *
201 * @comp - true if @path contains supported compression suffix,
202 * false otherwise
203 * @kmod - true if @path contains '.ko' suffix in right position,
204 * false otherwise
205 * @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name
206 * of the kernel module without suffixes, otherwise strudup-ed
207 * base name of @path
208 * @ext - if (@alloc_ext && @comp) is true, it contains strdup-ed string
209 * the compression suffix
210 *
211 * Returns 0 if there's no strdup error, -ENOMEM otherwise.
212 */
213int __kmod_path__parse(struct kmod_path *m, const char *path,
214 bool alloc_name, bool alloc_ext)
215{
216 const char *name = strrchr(path, '/');
217 const char *ext = strrchr(path, '.');
218
219 memset(m, 0x0, sizeof(*m));
220 name = name ? name + 1 : path;
221
222 /* No extension, just return name. */
223 if (ext == NULL) {
224 if (alloc_name) {
225 m->name = strdup(name);
226 return m->name ? 0 : -ENOMEM;
227 }
228 return 0;
229 }
230
231 if (is_supported_compression(ext + 1)) {
232 m->comp = true;
233 ext -= 3;
234 }
235
236 /* Check .ko extension only if there's enough name left. */
237 if (ext > name)
238 m->kmod = !strncmp(ext, ".ko", 3);
239
240 if (alloc_name) {
241 if (m->kmod) {
242 if (asprintf(&m->name, "[%.*s]", (int) (ext - name), name) == -1)
243 return -ENOMEM;
244 } else {
245 if (asprintf(&m->name, "%s", name) == -1)
246 return -ENOMEM;
247 }
248
249 strxfrchar(m->name, '-', '_');
250 }
251
252 if (alloc_ext && m->comp) {
253 m->ext = strdup(ext + 4);
254 if (!m->ext) {
255 free((void *) m->name);
256 return -ENOMEM;
257 }
258 }
259
260 return 0;
261}
262
263/*
Jiri Olsabda6ee42014-04-30 15:25:10 +0200264 * Global list of open DSOs and the counter.
Jiri Olsaeba51022014-04-30 15:00:59 +0200265 */
266static LIST_HEAD(dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200267static long dso__data_open_cnt;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900268static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
Jiri Olsaeba51022014-04-30 15:00:59 +0200269
270static void dso__list_add(struct dso *dso)
271{
272 list_add_tail(&dso->data.open_entry, &dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200273 dso__data_open_cnt++;
Jiri Olsaeba51022014-04-30 15:00:59 +0200274}
275
276static void dso__list_del(struct dso *dso)
277{
278 list_del(&dso->data.open_entry);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200279 WARN_ONCE(dso__data_open_cnt <= 0,
280 "DSO data fd counter out of bounds.");
281 dso__data_open_cnt--;
Jiri Olsaeba51022014-04-30 15:00:59 +0200282}
283
Jiri Olsaa08cae02014-05-07 21:35:02 +0200284static void close_first_dso(void);
285
286static int do_open(char *name)
287{
288 int fd;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000289 char sbuf[STRERR_BUFSIZE];
Jiri Olsaa08cae02014-05-07 21:35:02 +0200290
291 do {
292 fd = open(name, O_RDONLY);
293 if (fd >= 0)
294 return fd;
295
Namhyung Kima3c0cc22015-01-30 11:33:29 +0900296 pr_debug("dso open failed: %s\n",
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000297 strerror_r(errno, sbuf, sizeof(sbuf)));
Jiri Olsaa08cae02014-05-07 21:35:02 +0200298 if (!dso__data_open_cnt || errno != EMFILE)
299 break;
300
301 close_first_dso();
302 } while (1);
303
304 return -1;
305}
306
Jiri Olsaeba51022014-04-30 15:00:59 +0200307static int __open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200308{
Jiri Olsacdd059d2012-10-27 23:18:32 +0200309 int fd;
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300310 char *root_dir = (char *)"";
311 char *name = malloc(PATH_MAX);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200312
Jiri Olsacdd059d2012-10-27 23:18:32 +0200313 if (!name)
314 return -ENOMEM;
315
316 if (machine)
317 root_dir = machine->root_dir;
318
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300319 if (dso__read_binary_type_filename(dso, dso->binary_type,
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300320 root_dir, name, PATH_MAX)) {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200321 free(name);
322 return -EINVAL;
323 }
324
Jiri Olsaa08cae02014-05-07 21:35:02 +0200325 fd = do_open(name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200326 free(name);
327 return fd;
328}
329
Jiri Olsac6580452014-04-30 15:47:27 +0200330static void check_data_close(void);
331
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200332/**
333 * dso_close - Open DSO data file
334 * @dso: dso object
335 *
336 * Open @dso's data file descriptor and updates
337 * list/count of open DSO objects.
338 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200339static int open_dso(struct dso *dso, struct machine *machine)
340{
341 int fd = __open_dso(dso, machine);
342
Adrian Huntera6f6ae92014-07-17 11:43:09 +0300343 if (fd >= 0) {
Jiri Olsaeba51022014-04-30 15:00:59 +0200344 dso__list_add(dso);
Jiri Olsac6580452014-04-30 15:47:27 +0200345 /*
346 * Check if we crossed the allowed number
347 * of opened DSOs and close one if needed.
348 */
349 check_data_close();
350 }
Jiri Olsaeba51022014-04-30 15:00:59 +0200351
352 return fd;
353}
354
355static void close_data_fd(struct dso *dso)
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200356{
357 if (dso->data.fd >= 0) {
358 close(dso->data.fd);
359 dso->data.fd = -1;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200360 dso->data.file_size = 0;
Jiri Olsaeba51022014-04-30 15:00:59 +0200361 dso__list_del(dso);
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200362 }
363}
364
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200365/**
366 * dso_close - Close DSO data file
367 * @dso: dso object
368 *
369 * Close @dso's data file descriptor and updates
370 * list/count of open DSO objects.
371 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200372static void close_dso(struct dso *dso)
373{
374 close_data_fd(dso);
375}
376
Jiri Olsac6580452014-04-30 15:47:27 +0200377static void close_first_dso(void)
378{
379 struct dso *dso;
380
381 dso = list_first_entry(&dso__data_open, struct dso, data.open_entry);
382 close_dso(dso);
383}
384
385static rlim_t get_fd_limit(void)
386{
387 struct rlimit l;
388 rlim_t limit = 0;
389
390 /* Allow half of the current open fd limit. */
391 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
392 if (l.rlim_cur == RLIM_INFINITY)
393 limit = l.rlim_cur;
394 else
395 limit = l.rlim_cur / 2;
396 } else {
397 pr_err("failed to get fd limit\n");
398 limit = 1;
399 }
400
401 return limit;
402}
403
404static bool may_cache_fd(void)
405{
406 static rlim_t limit;
407
408 if (!limit)
409 limit = get_fd_limit();
410
411 if (limit == RLIM_INFINITY)
412 return true;
413
414 return limit > (rlim_t) dso__data_open_cnt;
415}
416
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200417/*
418 * Check and close LRU dso if we crossed allowed limit
419 * for opened dso file descriptors. The limit is half
420 * of the RLIMIT_NOFILE files opened.
421*/
Jiri Olsac6580452014-04-30 15:47:27 +0200422static void check_data_close(void)
423{
424 bool cache_fd = may_cache_fd();
425
426 if (!cache_fd)
427 close_first_dso();
428}
429
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200430/**
431 * dso__data_close - Close DSO data file
432 * @dso: dso object
433 *
434 * External interface to close @dso's data file descriptor.
435 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200436void dso__data_close(struct dso *dso)
437{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900438 pthread_mutex_lock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200439 close_dso(dso);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900440 pthread_mutex_unlock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200441}
442
Namhyung Kim71ff8242015-05-21 01:03:39 +0900443static void try_to_open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200444{
Arnaldo Carvalho de Melo631d34b2013-12-16 16:57:43 -0300445 enum dso_binary_type binary_type_data[] = {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200446 DSO_BINARY_TYPE__BUILD_ID_CACHE,
447 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
448 DSO_BINARY_TYPE__NOT_FOUND,
449 };
450 int i = 0;
451
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200452 if (dso->data.fd >= 0)
Namhyung Kim71ff8242015-05-21 01:03:39 +0900453 return;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200454
455 if (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND) {
456 dso->data.fd = open_dso(dso, machine);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300457 goto out;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200458 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200459
460 do {
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300461 dso->binary_type = binary_type_data[i++];
Jiri Olsacdd059d2012-10-27 23:18:32 +0200462
Adrian Hunterc27697d2014-07-22 16:17:18 +0300463 dso->data.fd = open_dso(dso, machine);
464 if (dso->data.fd >= 0)
465 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200466
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300467 } while (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300468out:
469 if (dso->data.fd >= 0)
470 dso->data.status = DSO_DATA_STATUS_OK;
471 else
472 dso->data.status = DSO_DATA_STATUS_ERROR;
Namhyung Kim71ff8242015-05-21 01:03:39 +0900473}
Jiri Olsacdd059d2012-10-27 23:18:32 +0200474
Namhyung Kim71ff8242015-05-21 01:03:39 +0900475/**
476 * dso__data_fd - Get dso's data file descriptor
477 * @dso: dso object
478 * @machine: machine object
479 *
480 * External interface to find dso's file, open it and
481 * returns file descriptor.
482 */
483int dso__data_fd(struct dso *dso, struct machine *machine)
484{
485 if (dso->data.status == DSO_DATA_STATUS_ERROR)
486 return -1;
487
488 pthread_mutex_lock(&dso__data_open_lock);
489 try_to_open_dso(dso, machine);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900490 pthread_mutex_unlock(&dso__data_open_lock);
Namhyung Kim71ff8242015-05-21 01:03:39 +0900491
Adrian Hunterc27697d2014-07-22 16:17:18 +0300492 return dso->data.fd;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200493}
494
Adrian Hunter288be942014-07-22 16:17:19 +0300495bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by)
496{
497 u32 flag = 1 << by;
498
499 if (dso->data.status_seen & flag)
500 return true;
501
502 dso->data.status_seen |= flag;
503
504 return false;
505}
506
Jiri Olsacdd059d2012-10-27 23:18:32 +0200507static void
Namhyung Kim8e67b722015-05-18 09:30:41 +0900508dso_cache__free(struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200509{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900510 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200511 struct rb_node *next = rb_first(root);
512
Namhyung Kim8e67b722015-05-18 09:30:41 +0900513 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200514 while (next) {
515 struct dso_cache *cache;
516
517 cache = rb_entry(next, struct dso_cache, rb_node);
518 next = rb_next(&cache->rb_node);
519 rb_erase(&cache->rb_node, root);
520 free(cache);
521 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900522 pthread_mutex_unlock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200523}
524
Namhyung Kim8e67b722015-05-18 09:30:41 +0900525static struct dso_cache *dso_cache__find(struct dso *dso, u64 offset)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200526{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900527 const struct rb_root *root = &dso->data.cache;
Arnaldo Carvalho de Melo33449962013-12-10 15:46:29 -0300528 struct rb_node * const *p = &root->rb_node;
529 const struct rb_node *parent = NULL;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200530 struct dso_cache *cache;
531
532 while (*p != NULL) {
533 u64 end;
534
535 parent = *p;
536 cache = rb_entry(parent, struct dso_cache, rb_node);
537 end = cache->offset + DSO__DATA_CACHE_SIZE;
538
539 if (offset < cache->offset)
540 p = &(*p)->rb_left;
541 else if (offset >= end)
542 p = &(*p)->rb_right;
543 else
544 return cache;
545 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900546
Jiri Olsacdd059d2012-10-27 23:18:32 +0200547 return NULL;
548}
549
Namhyung Kim8e67b722015-05-18 09:30:41 +0900550static struct dso_cache *
551dso_cache__insert(struct dso *dso, struct dso_cache *new)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200552{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900553 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200554 struct rb_node **p = &root->rb_node;
555 struct rb_node *parent = NULL;
556 struct dso_cache *cache;
557 u64 offset = new->offset;
558
Namhyung Kim8e67b722015-05-18 09:30:41 +0900559 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200560 while (*p != NULL) {
561 u64 end;
562
563 parent = *p;
564 cache = rb_entry(parent, struct dso_cache, rb_node);
565 end = cache->offset + DSO__DATA_CACHE_SIZE;
566
567 if (offset < cache->offset)
568 p = &(*p)->rb_left;
569 else if (offset >= end)
570 p = &(*p)->rb_right;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900571 else
572 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200573 }
574
575 rb_link_node(&new->rb_node, parent, p);
576 rb_insert_color(&new->rb_node, root);
Namhyung Kim8e67b722015-05-18 09:30:41 +0900577
578 cache = NULL;
579out:
580 pthread_mutex_unlock(&dso->lock);
581 return cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200582}
583
584static ssize_t
585dso_cache__memcpy(struct dso_cache *cache, u64 offset,
586 u8 *data, u64 size)
587{
588 u64 cache_offset = offset - cache->offset;
589 u64 cache_size = min(cache->size - cache_offset, size);
590
591 memcpy(data, cache->data + cache_offset, cache_size);
592 return cache_size;
593}
594
595static ssize_t
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900596dso_cache__read(struct dso *dso, struct machine *machine,
597 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200598{
599 struct dso_cache *cache;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900600 struct dso_cache *old;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200601 ssize_t ret;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200602
603 do {
604 u64 cache_offset;
605
Jiri Olsacdd059d2012-10-27 23:18:32 +0200606 cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
607 if (!cache)
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900608 return -ENOMEM;
609
610 pthread_mutex_lock(&dso__data_open_lock);
611
612 /*
613 * dso->data.fd might be closed if other thread opened another
614 * file (dso) due to open file limit (RLIMIT_NOFILE).
615 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900616 try_to_open_dso(dso, machine);
617
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900618 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900619 ret = -errno;
620 dso->data.status = DSO_DATA_STATUS_ERROR;
621 break;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900622 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200623
624 cache_offset = offset & DSO__DATA_CACHE_MASK;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200625
Namhyung Kimc52686f2015-01-29 17:02:01 -0300626 ret = pread(dso->data.fd, cache->data, DSO__DATA_CACHE_SIZE, cache_offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200627 if (ret <= 0)
628 break;
629
630 cache->offset = cache_offset;
631 cache->size = ret;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900632 } while (0);
633
634 pthread_mutex_unlock(&dso__data_open_lock);
635
636 if (ret > 0) {
Namhyung Kim8e67b722015-05-18 09:30:41 +0900637 old = dso_cache__insert(dso, cache);
638 if (old) {
639 /* we lose the race */
640 free(cache);
641 cache = old;
642 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200643
644 ret = dso_cache__memcpy(cache, offset, data, size);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900645 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200646
647 if (ret <= 0)
648 free(cache);
649
Jiri Olsacdd059d2012-10-27 23:18:32 +0200650 return ret;
651}
652
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900653static ssize_t dso_cache_read(struct dso *dso, struct machine *machine,
654 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200655{
656 struct dso_cache *cache;
657
Namhyung Kim8e67b722015-05-18 09:30:41 +0900658 cache = dso_cache__find(dso, offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200659 if (cache)
660 return dso_cache__memcpy(cache, offset, data, size);
661 else
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900662 return dso_cache__read(dso, machine, offset, data, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200663}
664
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200665/*
666 * Reads and caches dso data DSO__DATA_CACHE_SIZE size chunks
667 * in the rb_tree. Any read to already cached data is served
668 * by cached data.
669 */
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900670static ssize_t cached_read(struct dso *dso, struct machine *machine,
671 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200672{
673 ssize_t r = 0;
674 u8 *p = data;
675
676 do {
677 ssize_t ret;
678
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900679 ret = dso_cache_read(dso, machine, offset, p, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200680 if (ret < 0)
681 return ret;
682
683 /* Reached EOF, return what we have. */
684 if (!ret)
685 break;
686
687 BUG_ON(ret > size);
688
689 r += ret;
690 p += ret;
691 offset += ret;
692 size -= ret;
693
694 } while (size);
695
696 return r;
697}
698
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900699static int data_file_size(struct dso *dso, struct machine *machine)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200700{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900701 int ret = 0;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200702 struct stat st;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000703 char sbuf[STRERR_BUFSIZE];
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200704
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900705 if (dso->data.file_size)
706 return 0;
707
Namhyung Kim71ff8242015-05-21 01:03:39 +0900708 if (dso->data.status == DSO_DATA_STATUS_ERROR)
709 return -1;
710
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900711 pthread_mutex_lock(&dso__data_open_lock);
712
713 /*
714 * dso->data.fd might be closed if other thread opened another
715 * file (dso) due to open file limit (RLIMIT_NOFILE).
716 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900717 try_to_open_dso(dso, machine);
718
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900719 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900720 ret = -errno;
721 dso->data.status = DSO_DATA_STATUS_ERROR;
722 goto out;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200723 }
724
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900725 if (fstat(dso->data.fd, &st) < 0) {
726 ret = -errno;
727 pr_err("dso cache fstat failed: %s\n",
728 strerror_r(errno, sbuf, sizeof(sbuf)));
729 dso->data.status = DSO_DATA_STATUS_ERROR;
730 goto out;
731 }
732 dso->data.file_size = st.st_size;
733
734out:
735 pthread_mutex_unlock(&dso__data_open_lock);
736 return ret;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200737}
738
Adrian Hunter6d363452014-07-22 16:17:35 +0300739/**
740 * dso__data_size - Return dso data size
741 * @dso: dso object
742 * @machine: machine object
743 *
744 * Return: dso data size
745 */
746off_t dso__data_size(struct dso *dso, struct machine *machine)
747{
748 int fd;
749
750 fd = dso__data_fd(dso, machine);
751 if (fd < 0)
752 return fd;
753
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900754 if (data_file_size(dso, machine))
Adrian Hunter6d363452014-07-22 16:17:35 +0300755 return -1;
756
757 /* For now just estimate dso data size is close to file size */
758 return dso->data.file_size;
759}
760
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900761static ssize_t data_read_offset(struct dso *dso, struct machine *machine,
762 u64 offset, u8 *data, ssize_t size)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200763{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900764 if (data_file_size(dso, machine))
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200765 return -1;
766
767 /* Check the offset sanity. */
768 if (offset > dso->data.file_size)
769 return -1;
770
771 if (offset + size < offset)
772 return -1;
773
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900774 return cached_read(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200775}
776
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200777/**
778 * dso__data_read_offset - Read data from dso file offset
779 * @dso: dso object
780 * @machine: machine object
781 * @offset: file offset
782 * @data: buffer to store data
783 * @size: size of the @data buffer
784 *
785 * External interface to read data from dso file offset. Open
786 * dso data file and use cached_read to get the data.
787 */
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200788ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
789 u64 offset, u8 *data, ssize_t size)
790{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900791 if (dso->data.status == DSO_DATA_STATUS_ERROR)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200792 return -1;
793
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900794 return data_read_offset(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200795}
796
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200797/**
798 * dso__data_read_addr - Read data from dso address
799 * @dso: dso object
800 * @machine: machine object
801 * @add: virtual memory address
802 * @data: buffer to store data
803 * @size: size of the @data buffer
804 *
805 * External interface to read data from dso address.
806 */
Jiri Olsacdd059d2012-10-27 23:18:32 +0200807ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
808 struct machine *machine, u64 addr,
809 u8 *data, ssize_t size)
810{
811 u64 offset = map->map_ip(map, addr);
812 return dso__data_read_offset(dso, machine, offset, data, size);
813}
814
815struct map *dso__new_map(const char *name)
816{
817 struct map *map = NULL;
818 struct dso *dso = dso__new(name);
819
820 if (dso)
821 map = map__new2(0, dso, MAP__FUNCTION);
822
823 return map;
824}
825
826struct dso *dso__kernel_findnew(struct machine *machine, const char *name,
827 const char *short_name, int dso_type)
828{
829 /*
830 * The kernel dso could be created by build_id processing.
831 */
832 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, name);
833
834 /*
835 * We need to run this in all cases, since during the build_id
836 * processing we had no idea this was the kernel dso.
837 */
838 if (dso != NULL) {
Adrian Hunter58a98c92013-12-10 11:11:46 -0300839 dso__set_short_name(dso, short_name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200840 dso->kernel = dso_type;
841 }
842
843 return dso;
844}
845
Waiman Long4598a0a2014-09-30 13:36:15 -0400846/*
847 * Find a matching entry and/or link current entry to RB tree.
848 * Either one of the dso or name parameter must be non-NULL or the
849 * function will not work.
850 */
851static struct dso *dso__findlink_by_longname(struct rb_root *root,
852 struct dso *dso, const char *name)
853{
854 struct rb_node **p = &root->rb_node;
855 struct rb_node *parent = NULL;
856
857 if (!name)
858 name = dso->long_name;
859 /*
860 * Find node with the matching name
861 */
862 while (*p) {
863 struct dso *this = rb_entry(*p, struct dso, rb_node);
864 int rc = strcmp(name, this->long_name);
865
866 parent = *p;
867 if (rc == 0) {
868 /*
869 * In case the new DSO is a duplicate of an existing
870 * one, print an one-time warning & put the new entry
871 * at the end of the list of duplicates.
872 */
873 if (!dso || (dso == this))
874 return this; /* Find matching dso */
875 /*
876 * The core kernel DSOs may have duplicated long name.
877 * In this case, the short name should be different.
878 * Comparing the short names to differentiate the DSOs.
879 */
880 rc = strcmp(dso->short_name, this->short_name);
881 if (rc == 0) {
882 pr_err("Duplicated dso name: %s\n", name);
883 return NULL;
884 }
885 }
886 if (rc < 0)
887 p = &parent->rb_left;
888 else
889 p = &parent->rb_right;
890 }
891 if (dso) {
892 /* Add new node and rebalance tree */
893 rb_link_node(&dso->rb_node, parent, p);
894 rb_insert_color(&dso->rb_node, root);
895 }
896 return NULL;
897}
898
899static inline struct dso *
900dso__find_by_longname(const struct rb_root *root, const char *name)
901{
902 return dso__findlink_by_longname((struct rb_root *)root, NULL, name);
903}
904
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300905void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200906{
907 if (name == NULL)
908 return;
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300909
910 if (dso->long_name_allocated)
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300911 free((char *)dso->long_name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300912
913 dso->long_name = name;
914 dso->long_name_len = strlen(name);
915 dso->long_name_allocated = name_allocated;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200916}
917
Adrian Hunter58a98c92013-12-10 11:11:46 -0300918void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200919{
920 if (name == NULL)
921 return;
Adrian Hunter58a98c92013-12-10 11:11:46 -0300922
923 if (dso->short_name_allocated)
924 free((char *)dso->short_name);
925
926 dso->short_name = name;
927 dso->short_name_len = strlen(name);
928 dso->short_name_allocated = name_allocated;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200929}
930
931static void dso__set_basename(struct dso *dso)
932{
Stephane Eranianac5e7f82013-12-05 19:26:42 +0100933 /*
934 * basename() may modify path buffer, so we must pass
935 * a copy.
936 */
937 char *base, *lname = strdup(dso->long_name);
938
939 if (!lname)
940 return;
941
942 /*
943 * basename() may return a pointer to internal
944 * storage which is reused in subsequent calls
945 * so copy the result.
946 */
947 base = strdup(basename(lname));
948
949 free(lname);
950
951 if (!base)
952 return;
953
954 dso__set_short_name(dso, base, true);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200955}
956
957int dso__name_len(const struct dso *dso)
958{
959 if (!dso)
960 return strlen("[unknown]");
961 if (verbose)
962 return dso->long_name_len;
963
964 return dso->short_name_len;
965}
966
967bool dso__loaded(const struct dso *dso, enum map_type type)
968{
969 return dso->loaded & (1 << type);
970}
971
972bool dso__sorted_by_name(const struct dso *dso, enum map_type type)
973{
974 return dso->sorted_by_name & (1 << type);
975}
976
977void dso__set_sorted_by_name(struct dso *dso, enum map_type type)
978{
979 dso->sorted_by_name |= (1 << type);
980}
981
982struct dso *dso__new(const char *name)
983{
984 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1);
985
986 if (dso != NULL) {
987 int i;
988 strcpy(dso->name, name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300989 dso__set_long_name(dso, dso->name, false);
Adrian Hunter58a98c92013-12-10 11:11:46 -0300990 dso__set_short_name(dso, dso->name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200991 for (i = 0; i < MAP__NR_TYPES; ++i)
992 dso->symbols[i] = dso->symbol_names[i] = RB_ROOT;
Jiri Olsaca40e2a2014-05-07 18:30:45 +0200993 dso->data.cache = RB_ROOT;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200994 dso->data.fd = -1;
Adrian Hunterc27697d2014-07-22 16:17:18 +0300995 dso->data.status = DSO_DATA_STATUS_UNKNOWN;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200996 dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300997 dso->binary_type = DSO_BINARY_TYPE__NOT_FOUND;
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +0300998 dso->is_64_bit = (sizeof(void *) == 8);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200999 dso->loaded = 0;
Adrian Hunter0131c4e2013-08-07 14:38:50 +03001000 dso->rel = 0;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001001 dso->sorted_by_name = 0;
1002 dso->has_build_id = 0;
Namhyung Kim2cc9d0e2013-09-11 14:09:31 +09001003 dso->has_srcline = 1;
Adrian Hunter906049c82013-12-03 09:23:10 +02001004 dso->a2l_fails = 1;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001005 dso->kernel = DSO_TYPE_USER;
1006 dso->needs_swap = DSO_SWAP__UNSET;
Waiman Long4598a0a2014-09-30 13:36:15 -04001007 RB_CLEAR_NODE(&dso->rb_node);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001008 INIT_LIST_HEAD(&dso->node);
Jiri Olsaeba51022014-04-30 15:00:59 +02001009 INIT_LIST_HEAD(&dso->data.open_entry);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001010 pthread_mutex_init(&dso->lock, NULL);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001011 }
1012
1013 return dso;
1014}
1015
1016void dso__delete(struct dso *dso)
1017{
1018 int i;
Waiman Long4598a0a2014-09-30 13:36:15 -04001019
1020 if (!RB_EMPTY_NODE(&dso->rb_node))
1021 pr_err("DSO %s is still in rbtree when being deleted!\n",
1022 dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001023 for (i = 0; i < MAP__NR_TYPES; ++i)
1024 symbols__delete(&dso->symbols[i]);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001025
1026 if (dso->short_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001027 zfree((char **)&dso->short_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001028 dso->short_name_allocated = false;
1029 }
1030
1031 if (dso->long_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001032 zfree((char **)&dso->long_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001033 dso->long_name_allocated = false;
1034 }
1035
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +02001036 dso__data_close(dso);
Adrian Huntercfe91742015-04-09 18:53:55 +03001037 auxtrace_cache__free(dso->auxtrace_cache);
Namhyung Kim8e67b722015-05-18 09:30:41 +09001038 dso_cache__free(dso);
Adrian Hunter454ff002013-12-03 09:23:07 +02001039 dso__free_a2l(dso);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001040 zfree(&dso->symsrc_filename);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001041 pthread_mutex_destroy(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001042 free(dso);
1043}
1044
1045void dso__set_build_id(struct dso *dso, void *build_id)
1046{
1047 memcpy(dso->build_id, build_id, sizeof(dso->build_id));
1048 dso->has_build_id = 1;
1049}
1050
1051bool dso__build_id_equal(const struct dso *dso, u8 *build_id)
1052{
1053 return memcmp(dso->build_id, build_id, sizeof(dso->build_id)) == 0;
1054}
1055
1056void dso__read_running_kernel_build_id(struct dso *dso, struct machine *machine)
1057{
1058 char path[PATH_MAX];
1059
1060 if (machine__is_default_guest(machine))
1061 return;
1062 sprintf(path, "%s/sys/kernel/notes", machine->root_dir);
1063 if (sysfs__read_build_id(path, dso->build_id,
1064 sizeof(dso->build_id)) == 0)
1065 dso->has_build_id = true;
1066}
1067
1068int dso__kernel_module_get_build_id(struct dso *dso,
1069 const char *root_dir)
1070{
1071 char filename[PATH_MAX];
1072 /*
1073 * kernel module short names are of the form "[module]" and
1074 * we need just "module" here.
1075 */
1076 const char *name = dso->short_name + 1;
1077
1078 snprintf(filename, sizeof(filename),
1079 "%s/sys/module/%.*s/notes/.note.gnu.build-id",
1080 root_dir, (int)strlen(name) - 1, name);
1081
1082 if (sysfs__read_build_id(filename, dso->build_id,
1083 sizeof(dso->build_id)) == 0)
1084 dso->has_build_id = true;
1085
1086 return 0;
1087}
1088
1089bool __dsos__read_build_ids(struct list_head *head, bool with_hits)
1090{
1091 bool have_build_id = false;
1092 struct dso *pos;
1093
1094 list_for_each_entry(pos, head, node) {
1095 if (with_hits && !pos->hit)
1096 continue;
1097 if (pos->has_build_id) {
1098 have_build_id = true;
1099 continue;
1100 }
1101 if (filename__read_build_id(pos->long_name, pos->build_id,
1102 sizeof(pos->build_id)) > 0) {
1103 have_build_id = true;
1104 pos->has_build_id = true;
1105 }
1106 }
1107
1108 return have_build_id;
1109}
1110
Waiman Long8fa7d872014-09-29 16:07:28 -04001111void dsos__add(struct dsos *dsos, struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001112{
Waiman Long8fa7d872014-09-29 16:07:28 -04001113 list_add_tail(&dso->node, &dsos->head);
Waiman Long4598a0a2014-09-30 13:36:15 -04001114 dso__findlink_by_longname(&dsos->root, dso, NULL);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001115}
1116
Waiman Long8fa7d872014-09-29 16:07:28 -04001117struct dso *dsos__find(const struct dsos *dsos, const char *name,
1118 bool cmp_short)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001119{
1120 struct dso *pos;
1121
Waiman Longf9ceffb2013-05-09 10:42:48 -04001122 if (cmp_short) {
Waiman Long8fa7d872014-09-29 16:07:28 -04001123 list_for_each_entry(pos, &dsos->head, node)
Waiman Longf9ceffb2013-05-09 10:42:48 -04001124 if (strcmp(pos->short_name, name) == 0)
1125 return pos;
1126 return NULL;
1127 }
Waiman Long4598a0a2014-09-30 13:36:15 -04001128 return dso__find_by_longname(&dsos->root, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001129}
1130
Jiri Olsa701d8d72015-02-12 22:06:09 +01001131struct dso *dsos__addnew(struct dsos *dsos, const char *name)
1132{
1133 struct dso *dso = dso__new(name);
1134
1135 if (dso != NULL) {
1136 dsos__add(dsos, dso);
1137 dso__set_basename(dso);
1138 }
1139 return dso;
1140}
1141
Waiman Long8fa7d872014-09-29 16:07:28 -04001142struct dso *__dsos__findnew(struct dsos *dsos, const char *name)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001143{
Waiman Long8fa7d872014-09-29 16:07:28 -04001144 struct dso *dso = dsos__find(dsos, name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001145
Jiri Olsa701d8d72015-02-12 22:06:09 +01001146 return dso ? dso : dsos__addnew(dsos, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001147}
1148
1149size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001150 bool (skip)(struct dso *dso, int parm), int parm)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001151{
1152 struct dso *pos;
1153 size_t ret = 0;
1154
1155 list_for_each_entry(pos, head, node) {
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001156 if (skip && skip(pos, parm))
Jiri Olsacdd059d2012-10-27 23:18:32 +02001157 continue;
1158 ret += dso__fprintf_buildid(pos, fp);
1159 ret += fprintf(fp, " %s\n", pos->long_name);
1160 }
1161 return ret;
1162}
1163
1164size_t __dsos__fprintf(struct list_head *head, FILE *fp)
1165{
1166 struct dso *pos;
1167 size_t ret = 0;
1168
1169 list_for_each_entry(pos, head, node) {
1170 int i;
1171 for (i = 0; i < MAP__NR_TYPES; ++i)
1172 ret += dso__fprintf(pos, i, fp);
1173 }
1174
1175 return ret;
1176}
1177
1178size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
1179{
1180 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
1181
1182 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
1183 return fprintf(fp, "%s", sbuild_id);
1184}
1185
1186size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp)
1187{
1188 struct rb_node *nd;
1189 size_t ret = fprintf(fp, "dso: %s (", dso->short_name);
1190
1191 if (dso->short_name != dso->long_name)
1192 ret += fprintf(fp, "%s, ", dso->long_name);
1193 ret += fprintf(fp, "%s, %sloaded, ", map_type__name[type],
Stephane Eranian919d5902012-11-20 10:51:02 +01001194 dso__loaded(dso, type) ? "" : "NOT ");
Jiri Olsacdd059d2012-10-27 23:18:32 +02001195 ret += dso__fprintf_buildid(dso, fp);
1196 ret += fprintf(fp, ")\n");
1197 for (nd = rb_first(&dso->symbols[type]); nd; nd = rb_next(nd)) {
1198 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
1199 ret += symbol__fprintf(pos, fp);
1200 }
1201
1202 return ret;
1203}
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001204
1205enum dso_type dso__type(struct dso *dso, struct machine *machine)
1206{
1207 int fd;
1208
1209 fd = dso__data_fd(dso, machine);
1210 if (fd < 0)
1211 return DSO__TYPE_UNKNOWN;
1212
1213 return dso__type_fd(fd);
1214}
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -03001215
1216int dso__strerror_load(struct dso *dso, char *buf, size_t buflen)
1217{
1218 int idx, errnum = dso->load_errno;
1219 /*
1220 * This must have a same ordering as the enum dso_load_errno.
1221 */
1222 static const char *dso_load__error_str[] = {
1223 "Internal tools/perf/ library error",
1224 "Invalid ELF file",
1225 "Can not read build id",
1226 "Mismatching build id",
1227 "Decompression failure",
1228 };
1229
1230 BUG_ON(buflen == 0);
1231
1232 if (errnum >= 0) {
1233 const char *err = strerror_r(errnum, buf, buflen);
1234
1235 if (err != buf)
1236 scnprintf(buf, buflen, "%s", err);
1237
1238 return 0;
1239 }
1240
1241 if (errnum < __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END)
1242 return -1;
1243
1244 idx = errnum - __DSO_LOAD_ERRNO__START;
1245 scnprintf(buf, buflen, "%s", dso_load__error_str[idx]);
1246 return 0;
1247}