blob: c63525d845c5f5f46380287b9f7625a661ba9373 [file] [log] [blame]
Jiri Olsabda6ee42014-04-30 15:25:10 +02001#include <asm/bug.h>
Arnaldo Carvalho de Melo877a7a12017-04-17 11:39:06 -03002#include <linux/kernel.h>
Jiri Olsac6580452014-04-30 15:47:27 +02003#include <sys/time.h>
4#include <sys/resource.h>
Arnaldo Carvalho de Melo7a8ef4c2017-04-19 20:57:47 -03005#include <sys/types.h>
6#include <sys/stat.h>
7#include <unistd.h>
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03008#include <errno.h>
Arnaldo Carvalho de Melo611f0af2017-04-19 16:29:38 -03009#include "compress.h"
Arnaldo Carvalho de Melo9a3993d2017-04-18 11:33:48 -030010#include "path.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +020011#include "symbol.h"
12#include "dso.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -030013#include "machine.h"
Adrian Huntercfe91742015-04-09 18:53:55 +030014#include "auxtrace.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +020015#include "util.h"
16#include "debug.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030017#include "string2.h"
He Kuang6ae98ba2016-05-12 08:43:11 +000018#include "vdso.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +020019
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010020static const char * const debuglink_paths[] = {
21 "%.0s%s",
22 "%s/%s",
23 "%s/.debug/%s",
24 "/usr/lib/debug%s/%s"
25};
26
Jiri Olsacdd059d2012-10-27 23:18:32 +020027char dso__symtab_origin(const struct dso *dso)
28{
29 static const char origin[] = {
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020030 [DSO_BINARY_TYPE__KALLSYMS] = 'k',
31 [DSO_BINARY_TYPE__VMLINUX] = 'v',
32 [DSO_BINARY_TYPE__JAVA_JIT] = 'j',
33 [DSO_BINARY_TYPE__DEBUGLINK] = 'l',
34 [DSO_BINARY_TYPE__BUILD_ID_CACHE] = 'B',
35 [DSO_BINARY_TYPE__FEDORA_DEBUGINFO] = 'f',
36 [DSO_BINARY_TYPE__UBUNTU_DEBUGINFO] = 'u',
37 [DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO] = 'o',
38 [DSO_BINARY_TYPE__BUILDID_DEBUGINFO] = 'b',
39 [DSO_BINARY_TYPE__SYSTEM_PATH_DSO] = 'd',
40 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE] = 'K',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090041 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP] = 'm',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020042 [DSO_BINARY_TYPE__GUEST_KALLSYMS] = 'g',
43 [DSO_BINARY_TYPE__GUEST_KMODULE] = 'G',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090044 [DSO_BINARY_TYPE__GUEST_KMODULE_COMP] = 'M',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020045 [DSO_BINARY_TYPE__GUEST_VMLINUX] = 'V',
Jiri Olsacdd059d2012-10-27 23:18:32 +020046 };
47
48 if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
49 return '!';
50 return origin[dso->symtab_type];
51}
52
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -030053int dso__read_binary_type_filename(const struct dso *dso,
54 enum dso_binary_type type,
55 char *root_dir, char *filename, size_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +020056{
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +090057 char build_id_hex[SBUILD_ID_SIZE];
Jiri Olsacdd059d2012-10-27 23:18:32 +020058 int ret = 0;
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030059 size_t len;
Jiri Olsacdd059d2012-10-27 23:18:32 +020060
61 switch (type) {
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010062 case DSO_BINARY_TYPE__DEBUGLINK:
63 {
64 const char *last_slash;
65 char dso_dir[PATH_MAX];
66 char symfile[PATH_MAX];
67 unsigned int i;
Jiri Olsacdd059d2012-10-27 23:18:32 +020068
Victor Kamenskydc6254c2015-01-26 22:34:02 -080069 len = __symbol__join_symfs(filename, size, dso->long_name);
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010070 last_slash = filename + len;
71 while (last_slash != filename && *last_slash != '/')
72 last_slash--;
Jiri Olsa40356722016-01-20 12:56:32 +010073
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010074 strncpy(dso_dir, filename, last_slash - filename);
75 dso_dir[last_slash-filename] = '\0';
76
77 if (!is_regular_file(filename)) {
78 ret = -1;
79 break;
80 }
81
82 ret = filename__read_debuglink(filename, symfile, PATH_MAX);
83 if (ret)
Jiri Olsa40356722016-01-20 12:56:32 +010084 break;
85
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010086 /* Check predefined locations where debug file might reside */
87 ret = -1;
88 for (i = 0; i < ARRAY_SIZE(debuglink_paths); i++) {
89 snprintf(filename, size,
90 debuglink_paths[i], dso_dir, symfile);
91 if (is_regular_file(filename)) {
92 ret = 0;
93 break;
94 }
Jiri Olsacdd059d2012-10-27 23:18:32 +020095 }
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010096
Jiri Olsacdd059d2012-10-27 23:18:32 +020097 break;
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010098 }
Jiri Olsacdd059d2012-10-27 23:18:32 +020099 case DSO_BINARY_TYPE__BUILD_ID_CACHE:
He Kuanga7066702016-05-19 11:47:37 +0000100 if (dso__build_id_filename(dso, filename, size) == NULL)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200101 ret = -1;
102 break;
103
104 case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300105 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
106 snprintf(filename + len, size - len, "%s.debug", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200107 break;
108
109 case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300110 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
111 snprintf(filename + len, size - len, "%s", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200112 break;
113
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200114 case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
115 {
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300116 const char *last_slash;
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200117 size_t dir_size;
118
119 last_slash = dso->long_name + dso->long_name_len;
120 while (last_slash != dso->long_name && *last_slash != '/')
121 last_slash--;
122
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300123 len = __symbol__join_symfs(filename, size, "");
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200124 dir_size = last_slash - dso->long_name + 2;
125 if (dir_size > (size - len)) {
126 ret = -1;
127 break;
128 }
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -0300129 len += scnprintf(filename + len, dir_size, "%s", dso->long_name);
130 len += scnprintf(filename + len , size - len, ".debug%s",
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200131 last_slash);
132 break;
133 }
134
Jiri Olsacdd059d2012-10-27 23:18:32 +0200135 case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
136 if (!dso->has_build_id) {
137 ret = -1;
138 break;
139 }
140
141 build_id__sprintf(dso->build_id,
142 sizeof(dso->build_id),
143 build_id_hex);
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300144 len = __symbol__join_symfs(filename, size, "/usr/lib/debug/.build-id/");
145 snprintf(filename + len, size - len, "%.2s/%s.debug",
146 build_id_hex, build_id_hex + 2);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200147 break;
148
Adrian Hunter39b12f782013-08-07 14:38:47 +0300149 case DSO_BINARY_TYPE__VMLINUX:
150 case DSO_BINARY_TYPE__GUEST_VMLINUX:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200151 case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300152 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200153 break;
154
155 case DSO_BINARY_TYPE__GUEST_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900156 case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300157 path__join3(filename, size, symbol_conf.symfs,
158 root_dir, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200159 break;
160
161 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900162 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300163 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200164 break;
165
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300166 case DSO_BINARY_TYPE__KCORE:
167 case DSO_BINARY_TYPE__GUEST_KCORE:
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -0300168 snprintf(filename, size, "%s", dso->long_name);
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300169 break;
170
Jiri Olsacdd059d2012-10-27 23:18:32 +0200171 default:
172 case DSO_BINARY_TYPE__KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200173 case DSO_BINARY_TYPE__GUEST_KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200174 case DSO_BINARY_TYPE__JAVA_JIT:
175 case DSO_BINARY_TYPE__NOT_FOUND:
176 ret = -1;
177 break;
178 }
179
180 return ret;
181}
182
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900183static const struct {
184 const char *fmt;
185 int (*decompress)(const char *input, int output);
186} compressions[] = {
Namhyung Kime92ce122014-10-31 16:51:38 +0900187#ifdef HAVE_ZLIB_SUPPORT
188 { "gz", gzip_decompress_to_file },
189#endif
Jiri Olsa80a32e5b2015-01-29 13:29:39 +0100190#ifdef HAVE_LZMA_SUPPORT
191 { "xz", lzma_decompress_to_file },
192#endif
Namhyung Kime92ce122014-10-31 16:51:38 +0900193 { NULL, NULL },
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900194};
195
196bool is_supported_compression(const char *ext)
197{
198 unsigned i;
199
200 for (i = 0; compressions[i].fmt; i++) {
201 if (!strcmp(ext, compressions[i].fmt))
202 return true;
203 }
204 return false;
205}
206
Wang Nan1f121b02015-06-03 08:52:21 +0000207bool is_kernel_module(const char *pathname, int cpumode)
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900208{
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100209 struct kmod_path m;
Wang Nan1f121b02015-06-03 08:52:21 +0000210 int mode = cpumode & PERF_RECORD_MISC_CPUMODE_MASK;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900211
Wang Nan1f121b02015-06-03 08:52:21 +0000212 WARN_ONCE(mode != cpumode,
213 "Internal error: passing unmasked cpumode (%x) to is_kernel_module",
214 cpumode);
215
216 switch (mode) {
217 case PERF_RECORD_MISC_USER:
218 case PERF_RECORD_MISC_HYPERVISOR:
219 case PERF_RECORD_MISC_GUEST_USER:
220 return false;
221 /* Treat PERF_RECORD_MISC_CPUMODE_UNKNOWN as kernel */
222 default:
223 if (kmod_path__parse(&m, pathname)) {
224 pr_err("Failed to check whether %s is a kernel module or not. Assume it is.",
225 pathname);
226 return true;
227 }
228 }
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900229
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100230 return m.kmod;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900231}
232
233bool decompress_to_file(const char *ext, const char *filename, int output_fd)
234{
235 unsigned i;
236
237 for (i = 0; compressions[i].fmt; i++) {
238 if (!strcmp(ext, compressions[i].fmt))
239 return !compressions[i].decompress(filename,
240 output_fd);
241 }
242 return false;
243}
244
245bool dso__needs_decompress(struct dso *dso)
246{
247 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP ||
248 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
249}
250
Namhyung Kim42b3fa62017-06-08 16:31:03 +0900251static int decompress_kmodule(struct dso *dso, const char *name, char *tmpbuf)
252{
253 int fd = -1;
254 struct kmod_path m;
255
256 if (!dso__needs_decompress(dso))
257 return -1;
258
259 if (kmod_path__parse_ext(&m, dso->long_name))
260 return -1;
261
262 if (!m.comp)
263 goto out;
264
265 fd = mkstemp(tmpbuf);
266 if (fd < 0) {
267 dso->load_errno = errno;
268 goto out;
269 }
270
271 if (!decompress_to_file(m.ext, name, fd)) {
272 dso->load_errno = DSO_LOAD_ERRNO__DECOMPRESSION_FAILURE;
273 close(fd);
274 fd = -1;
275 }
276
277out:
278 free(m.ext);
279 return fd;
280}
281
282int dso__decompress_kmodule_fd(struct dso *dso, const char *name)
283{
284 char tmpbuf[] = KMOD_DECOMP_NAME;
285 int fd;
286
287 fd = decompress_kmodule(dso, name, tmpbuf);
288 unlink(tmpbuf);
289 return fd;
290}
291
292int dso__decompress_kmodule_path(struct dso *dso, const char *name,
293 char *pathname, size_t len)
294{
295 char tmpbuf[] = KMOD_DECOMP_NAME;
296 int fd;
297
298 fd = decompress_kmodule(dso, name, tmpbuf);
299 if (fd < 0) {
300 unlink(tmpbuf);
301 return -1;
302 }
303
304 strncpy(pathname, tmpbuf, len);
305 close(fd);
306 return 0;
307}
308
Jiri Olsaeba51022014-04-30 15:00:59 +0200309/*
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100310 * Parses kernel module specified in @path and updates
311 * @m argument like:
312 *
313 * @comp - true if @path contains supported compression suffix,
314 * false otherwise
315 * @kmod - true if @path contains '.ko' suffix in right position,
316 * false otherwise
317 * @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name
318 * of the kernel module without suffixes, otherwise strudup-ed
319 * base name of @path
320 * @ext - if (@alloc_ext && @comp) is true, it contains strdup-ed string
321 * the compression suffix
322 *
323 * Returns 0 if there's no strdup error, -ENOMEM otherwise.
324 */
325int __kmod_path__parse(struct kmod_path *m, const char *path,
326 bool alloc_name, bool alloc_ext)
327{
328 const char *name = strrchr(path, '/');
329 const char *ext = strrchr(path, '.');
Wang Nan1f121b02015-06-03 08:52:21 +0000330 bool is_simple_name = false;
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100331
332 memset(m, 0x0, sizeof(*m));
333 name = name ? name + 1 : path;
334
Wang Nan1f121b02015-06-03 08:52:21 +0000335 /*
336 * '.' is also a valid character for module name. For example:
337 * [aaa.bbb] is a valid module name. '[' should have higher
338 * priority than '.ko' suffix.
339 *
340 * The kernel names are from machine__mmap_name. Such
341 * name should belong to kernel itself, not kernel module.
342 */
343 if (name[0] == '[') {
344 is_simple_name = true;
345 if ((strncmp(name, "[kernel.kallsyms]", 17) == 0) ||
346 (strncmp(name, "[guest.kernel.kallsyms", 22) == 0) ||
347 (strncmp(name, "[vdso]", 6) == 0) ||
348 (strncmp(name, "[vsyscall]", 10) == 0)) {
349 m->kmod = false;
350
351 } else
352 m->kmod = true;
353 }
354
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100355 /* No extension, just return name. */
Wang Nan1f121b02015-06-03 08:52:21 +0000356 if ((ext == NULL) || is_simple_name) {
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100357 if (alloc_name) {
358 m->name = strdup(name);
359 return m->name ? 0 : -ENOMEM;
360 }
361 return 0;
362 }
363
364 if (is_supported_compression(ext + 1)) {
365 m->comp = true;
366 ext -= 3;
367 }
368
369 /* Check .ko extension only if there's enough name left. */
370 if (ext > name)
371 m->kmod = !strncmp(ext, ".ko", 3);
372
373 if (alloc_name) {
374 if (m->kmod) {
375 if (asprintf(&m->name, "[%.*s]", (int) (ext - name), name) == -1)
376 return -ENOMEM;
377 } else {
378 if (asprintf(&m->name, "%s", name) == -1)
379 return -ENOMEM;
380 }
381
382 strxfrchar(m->name, '-', '_');
383 }
384
385 if (alloc_ext && m->comp) {
386 m->ext = strdup(ext + 4);
387 if (!m->ext) {
388 free((void *) m->name);
389 return -ENOMEM;
390 }
391 }
392
393 return 0;
394}
395
Namhyung Kim6b335e82017-05-31 21:01:04 +0900396void dso__set_module_info(struct dso *dso, struct kmod_path *m,
397 struct machine *machine)
398{
399 if (machine__is_host(machine))
400 dso->symtab_type = DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE;
401 else
402 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KMODULE;
403
404 /* _KMODULE_COMP should be next to _KMODULE */
405 if (m->kmod && m->comp)
406 dso->symtab_type++;
407
408 dso__set_short_name(dso, strdup(m->name), true);
409}
410
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100411/*
Jiri Olsabda6ee42014-04-30 15:25:10 +0200412 * Global list of open DSOs and the counter.
Jiri Olsaeba51022014-04-30 15:00:59 +0200413 */
414static LIST_HEAD(dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200415static long dso__data_open_cnt;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900416static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
Jiri Olsaeba51022014-04-30 15:00:59 +0200417
418static void dso__list_add(struct dso *dso)
419{
420 list_add_tail(&dso->data.open_entry, &dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200421 dso__data_open_cnt++;
Jiri Olsaeba51022014-04-30 15:00:59 +0200422}
423
424static void dso__list_del(struct dso *dso)
425{
426 list_del(&dso->data.open_entry);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200427 WARN_ONCE(dso__data_open_cnt <= 0,
428 "DSO data fd counter out of bounds.");
429 dso__data_open_cnt--;
Jiri Olsaeba51022014-04-30 15:00:59 +0200430}
431
Jiri Olsaa08cae02014-05-07 21:35:02 +0200432static void close_first_dso(void);
433
434static int do_open(char *name)
435{
436 int fd;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000437 char sbuf[STRERR_BUFSIZE];
Jiri Olsaa08cae02014-05-07 21:35:02 +0200438
439 do {
440 fd = open(name, O_RDONLY);
441 if (fd >= 0)
442 return fd;
443
Namhyung Kima3c0cc22015-01-30 11:33:29 +0900444 pr_debug("dso open failed: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300445 str_error_r(errno, sbuf, sizeof(sbuf)));
Jiri Olsaa08cae02014-05-07 21:35:02 +0200446 if (!dso__data_open_cnt || errno != EMFILE)
447 break;
448
449 close_first_dso();
450 } while (1);
451
452 return -1;
453}
454
Jiri Olsaeba51022014-04-30 15:00:59 +0200455static int __open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200456{
Jiri Olsacdd059d2012-10-27 23:18:32 +0200457 int fd;
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300458 char *root_dir = (char *)"";
459 char *name = malloc(PATH_MAX);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200460
Jiri Olsacdd059d2012-10-27 23:18:32 +0200461 if (!name)
462 return -ENOMEM;
463
464 if (machine)
465 root_dir = machine->root_dir;
466
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300467 if (dso__read_binary_type_filename(dso, dso->binary_type,
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300468 root_dir, name, PATH_MAX)) {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200469 free(name);
470 return -EINVAL;
471 }
472
Namhyung Kim44ad6b82017-06-08 16:31:02 +0900473 if (!is_regular_file(name)) {
474 free(name);
Jiri Olsa3c028a02016-09-20 18:12:45 +0200475 return -EINVAL;
Namhyung Kim44ad6b82017-06-08 16:31:02 +0900476 }
Jiri Olsa3c028a02016-09-20 18:12:45 +0200477
Namhyung Kim1d6b3c92017-06-08 16:31:05 +0900478 if (dso__needs_decompress(dso)) {
479 char newpath[KMOD_DECOMP_LEN];
480 size_t len = sizeof(newpath);
481
482 if (dso__decompress_kmodule_path(dso, name, newpath, len) < 0) {
483 free(name);
484 return -dso->load_errno;
485 }
486
487 strcpy(name, newpath);
488 }
489
Jiri Olsaa08cae02014-05-07 21:35:02 +0200490 fd = do_open(name);
Namhyung Kim1d6b3c92017-06-08 16:31:05 +0900491
492 if (dso__needs_decompress(dso))
493 unlink(name);
494
Jiri Olsacdd059d2012-10-27 23:18:32 +0200495 free(name);
496 return fd;
497}
498
Jiri Olsac6580452014-04-30 15:47:27 +0200499static void check_data_close(void);
500
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200501/**
502 * dso_close - Open DSO data file
503 * @dso: dso object
504 *
505 * Open @dso's data file descriptor and updates
506 * list/count of open DSO objects.
507 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200508static int open_dso(struct dso *dso, struct machine *machine)
509{
510 int fd = __open_dso(dso, machine);
511
Adrian Huntera6f6ae92014-07-17 11:43:09 +0300512 if (fd >= 0) {
Jiri Olsaeba51022014-04-30 15:00:59 +0200513 dso__list_add(dso);
Jiri Olsac6580452014-04-30 15:47:27 +0200514 /*
515 * Check if we crossed the allowed number
516 * of opened DSOs and close one if needed.
517 */
518 check_data_close();
519 }
Jiri Olsaeba51022014-04-30 15:00:59 +0200520
521 return fd;
522}
523
524static void close_data_fd(struct dso *dso)
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200525{
526 if (dso->data.fd >= 0) {
527 close(dso->data.fd);
528 dso->data.fd = -1;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200529 dso->data.file_size = 0;
Jiri Olsaeba51022014-04-30 15:00:59 +0200530 dso__list_del(dso);
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200531 }
532}
533
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200534/**
535 * dso_close - Close DSO data file
536 * @dso: dso object
537 *
538 * Close @dso's data file descriptor and updates
539 * list/count of open DSO objects.
540 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200541static void close_dso(struct dso *dso)
542{
543 close_data_fd(dso);
544}
545
Jiri Olsac6580452014-04-30 15:47:27 +0200546static void close_first_dso(void)
547{
548 struct dso *dso;
549
550 dso = list_first_entry(&dso__data_open, struct dso, data.open_entry);
551 close_dso(dso);
552}
553
554static rlim_t get_fd_limit(void)
555{
556 struct rlimit l;
557 rlim_t limit = 0;
558
559 /* Allow half of the current open fd limit. */
560 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
561 if (l.rlim_cur == RLIM_INFINITY)
562 limit = l.rlim_cur;
563 else
564 limit = l.rlim_cur / 2;
565 } else {
566 pr_err("failed to get fd limit\n");
567 limit = 1;
568 }
569
570 return limit;
571}
572
Jiri Olsaf3069242016-06-28 13:29:02 +0200573static rlim_t fd_limit;
574
575/*
576 * Used only by tests/dso-data.c to reset the environment
577 * for tests. I dont expect we should change this during
578 * standard runtime.
579 */
580void reset_fd_limit(void)
581{
582 fd_limit = 0;
583}
584
Jiri Olsac6580452014-04-30 15:47:27 +0200585static bool may_cache_fd(void)
586{
Jiri Olsaf3069242016-06-28 13:29:02 +0200587 if (!fd_limit)
588 fd_limit = get_fd_limit();
Jiri Olsac6580452014-04-30 15:47:27 +0200589
Jiri Olsaf3069242016-06-28 13:29:02 +0200590 if (fd_limit == RLIM_INFINITY)
Jiri Olsac6580452014-04-30 15:47:27 +0200591 return true;
592
Jiri Olsaf3069242016-06-28 13:29:02 +0200593 return fd_limit > (rlim_t) dso__data_open_cnt;
Jiri Olsac6580452014-04-30 15:47:27 +0200594}
595
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200596/*
597 * Check and close LRU dso if we crossed allowed limit
598 * for opened dso file descriptors. The limit is half
599 * of the RLIMIT_NOFILE files opened.
600*/
Jiri Olsac6580452014-04-30 15:47:27 +0200601static void check_data_close(void)
602{
603 bool cache_fd = may_cache_fd();
604
605 if (!cache_fd)
606 close_first_dso();
607}
608
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200609/**
610 * dso__data_close - Close DSO data file
611 * @dso: dso object
612 *
613 * External interface to close @dso's data file descriptor.
614 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200615void dso__data_close(struct dso *dso)
616{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900617 pthread_mutex_lock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200618 close_dso(dso);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900619 pthread_mutex_unlock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200620}
621
Namhyung Kim71ff8242015-05-21 01:03:39 +0900622static void try_to_open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200623{
Arnaldo Carvalho de Melo631d34b2013-12-16 16:57:43 -0300624 enum dso_binary_type binary_type_data[] = {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200625 DSO_BINARY_TYPE__BUILD_ID_CACHE,
626 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
627 DSO_BINARY_TYPE__NOT_FOUND,
628 };
629 int i = 0;
630
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200631 if (dso->data.fd >= 0)
Namhyung Kim71ff8242015-05-21 01:03:39 +0900632 return;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200633
634 if (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND) {
635 dso->data.fd = open_dso(dso, machine);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300636 goto out;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200637 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200638
639 do {
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300640 dso->binary_type = binary_type_data[i++];
Jiri Olsacdd059d2012-10-27 23:18:32 +0200641
Adrian Hunterc27697d2014-07-22 16:17:18 +0300642 dso->data.fd = open_dso(dso, machine);
643 if (dso->data.fd >= 0)
644 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200645
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300646 } while (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300647out:
648 if (dso->data.fd >= 0)
649 dso->data.status = DSO_DATA_STATUS_OK;
650 else
651 dso->data.status = DSO_DATA_STATUS_ERROR;
Namhyung Kim71ff8242015-05-21 01:03:39 +0900652}
Jiri Olsacdd059d2012-10-27 23:18:32 +0200653
Namhyung Kim71ff8242015-05-21 01:03:39 +0900654/**
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900655 * dso__data_get_fd - Get dso's data file descriptor
Namhyung Kim71ff8242015-05-21 01:03:39 +0900656 * @dso: dso object
657 * @machine: machine object
658 *
659 * External interface to find dso's file, open it and
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900660 * returns file descriptor. It should be paired with
661 * dso__data_put_fd() if it returns non-negative value.
Namhyung Kim71ff8242015-05-21 01:03:39 +0900662 */
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900663int dso__data_get_fd(struct dso *dso, struct machine *machine)
Namhyung Kim71ff8242015-05-21 01:03:39 +0900664{
665 if (dso->data.status == DSO_DATA_STATUS_ERROR)
666 return -1;
667
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900668 if (pthread_mutex_lock(&dso__data_open_lock) < 0)
669 return -1;
670
Namhyung Kim71ff8242015-05-21 01:03:39 +0900671 try_to_open_dso(dso, machine);
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900672
673 if (dso->data.fd < 0)
674 pthread_mutex_unlock(&dso__data_open_lock);
Namhyung Kim71ff8242015-05-21 01:03:39 +0900675
Adrian Hunterc27697d2014-07-22 16:17:18 +0300676 return dso->data.fd;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200677}
678
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900679void dso__data_put_fd(struct dso *dso __maybe_unused)
680{
681 pthread_mutex_unlock(&dso__data_open_lock);
682}
683
Adrian Hunter288be942014-07-22 16:17:19 +0300684bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by)
685{
686 u32 flag = 1 << by;
687
688 if (dso->data.status_seen & flag)
689 return true;
690
691 dso->data.status_seen |= flag;
692
693 return false;
694}
695
Jiri Olsacdd059d2012-10-27 23:18:32 +0200696static void
Namhyung Kim8e67b722015-05-18 09:30:41 +0900697dso_cache__free(struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200698{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900699 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200700 struct rb_node *next = rb_first(root);
701
Namhyung Kim8e67b722015-05-18 09:30:41 +0900702 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200703 while (next) {
704 struct dso_cache *cache;
705
706 cache = rb_entry(next, struct dso_cache, rb_node);
707 next = rb_next(&cache->rb_node);
708 rb_erase(&cache->rb_node, root);
709 free(cache);
710 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900711 pthread_mutex_unlock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200712}
713
Namhyung Kim8e67b722015-05-18 09:30:41 +0900714static struct dso_cache *dso_cache__find(struct dso *dso, u64 offset)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200715{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900716 const struct rb_root *root = &dso->data.cache;
Arnaldo Carvalho de Melo33449962013-12-10 15:46:29 -0300717 struct rb_node * const *p = &root->rb_node;
718 const struct rb_node *parent = NULL;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200719 struct dso_cache *cache;
720
721 while (*p != NULL) {
722 u64 end;
723
724 parent = *p;
725 cache = rb_entry(parent, struct dso_cache, rb_node);
726 end = cache->offset + DSO__DATA_CACHE_SIZE;
727
728 if (offset < cache->offset)
729 p = &(*p)->rb_left;
730 else if (offset >= end)
731 p = &(*p)->rb_right;
732 else
733 return cache;
734 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900735
Jiri Olsacdd059d2012-10-27 23:18:32 +0200736 return NULL;
737}
738
Namhyung Kim8e67b722015-05-18 09:30:41 +0900739static struct dso_cache *
740dso_cache__insert(struct dso *dso, struct dso_cache *new)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200741{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900742 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200743 struct rb_node **p = &root->rb_node;
744 struct rb_node *parent = NULL;
745 struct dso_cache *cache;
746 u64 offset = new->offset;
747
Namhyung Kim8e67b722015-05-18 09:30:41 +0900748 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200749 while (*p != NULL) {
750 u64 end;
751
752 parent = *p;
753 cache = rb_entry(parent, struct dso_cache, rb_node);
754 end = cache->offset + DSO__DATA_CACHE_SIZE;
755
756 if (offset < cache->offset)
757 p = &(*p)->rb_left;
758 else if (offset >= end)
759 p = &(*p)->rb_right;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900760 else
761 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200762 }
763
764 rb_link_node(&new->rb_node, parent, p);
765 rb_insert_color(&new->rb_node, root);
Namhyung Kim8e67b722015-05-18 09:30:41 +0900766
767 cache = NULL;
768out:
769 pthread_mutex_unlock(&dso->lock);
770 return cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200771}
772
773static ssize_t
774dso_cache__memcpy(struct dso_cache *cache, u64 offset,
775 u8 *data, u64 size)
776{
777 u64 cache_offset = offset - cache->offset;
778 u64 cache_size = min(cache->size - cache_offset, size);
779
780 memcpy(data, cache->data + cache_offset, cache_size);
781 return cache_size;
782}
783
784static ssize_t
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900785dso_cache__read(struct dso *dso, struct machine *machine,
786 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200787{
788 struct dso_cache *cache;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900789 struct dso_cache *old;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200790 ssize_t ret;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200791
792 do {
793 u64 cache_offset;
794
Jiri Olsacdd059d2012-10-27 23:18:32 +0200795 cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
796 if (!cache)
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900797 return -ENOMEM;
798
799 pthread_mutex_lock(&dso__data_open_lock);
800
801 /*
802 * dso->data.fd might be closed if other thread opened another
803 * file (dso) due to open file limit (RLIMIT_NOFILE).
804 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900805 try_to_open_dso(dso, machine);
806
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900807 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900808 ret = -errno;
809 dso->data.status = DSO_DATA_STATUS_ERROR;
810 break;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900811 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200812
813 cache_offset = offset & DSO__DATA_CACHE_MASK;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200814
Namhyung Kimc52686f2015-01-29 17:02:01 -0300815 ret = pread(dso->data.fd, cache->data, DSO__DATA_CACHE_SIZE, cache_offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200816 if (ret <= 0)
817 break;
818
819 cache->offset = cache_offset;
820 cache->size = ret;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900821 } while (0);
822
823 pthread_mutex_unlock(&dso__data_open_lock);
824
825 if (ret > 0) {
Namhyung Kim8e67b722015-05-18 09:30:41 +0900826 old = dso_cache__insert(dso, cache);
827 if (old) {
828 /* we lose the race */
829 free(cache);
830 cache = old;
831 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200832
833 ret = dso_cache__memcpy(cache, offset, data, size);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900834 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200835
836 if (ret <= 0)
837 free(cache);
838
Jiri Olsacdd059d2012-10-27 23:18:32 +0200839 return ret;
840}
841
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900842static ssize_t dso_cache_read(struct dso *dso, struct machine *machine,
843 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200844{
845 struct dso_cache *cache;
846
Namhyung Kim8e67b722015-05-18 09:30:41 +0900847 cache = dso_cache__find(dso, offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200848 if (cache)
849 return dso_cache__memcpy(cache, offset, data, size);
850 else
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900851 return dso_cache__read(dso, machine, offset, data, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200852}
853
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200854/*
855 * Reads and caches dso data DSO__DATA_CACHE_SIZE size chunks
856 * in the rb_tree. Any read to already cached data is served
857 * by cached data.
858 */
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900859static ssize_t cached_read(struct dso *dso, struct machine *machine,
860 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200861{
862 ssize_t r = 0;
863 u8 *p = data;
864
865 do {
866 ssize_t ret;
867
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900868 ret = dso_cache_read(dso, machine, offset, p, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200869 if (ret < 0)
870 return ret;
871
872 /* Reached EOF, return what we have. */
873 if (!ret)
874 break;
875
876 BUG_ON(ret > size);
877
878 r += ret;
879 p += ret;
880 offset += ret;
881 size -= ret;
882
883 } while (size);
884
885 return r;
886}
887
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900888static int data_file_size(struct dso *dso, struct machine *machine)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200889{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900890 int ret = 0;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200891 struct stat st;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000892 char sbuf[STRERR_BUFSIZE];
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200893
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900894 if (dso->data.file_size)
895 return 0;
896
Namhyung Kim71ff8242015-05-21 01:03:39 +0900897 if (dso->data.status == DSO_DATA_STATUS_ERROR)
898 return -1;
899
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900900 pthread_mutex_lock(&dso__data_open_lock);
901
902 /*
903 * dso->data.fd might be closed if other thread opened another
904 * file (dso) due to open file limit (RLIMIT_NOFILE).
905 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900906 try_to_open_dso(dso, machine);
907
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900908 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900909 ret = -errno;
910 dso->data.status = DSO_DATA_STATUS_ERROR;
911 goto out;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200912 }
913
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900914 if (fstat(dso->data.fd, &st) < 0) {
915 ret = -errno;
916 pr_err("dso cache fstat failed: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300917 str_error_r(errno, sbuf, sizeof(sbuf)));
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900918 dso->data.status = DSO_DATA_STATUS_ERROR;
919 goto out;
920 }
921 dso->data.file_size = st.st_size;
922
923out:
924 pthread_mutex_unlock(&dso__data_open_lock);
925 return ret;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200926}
927
Adrian Hunter6d363452014-07-22 16:17:35 +0300928/**
929 * dso__data_size - Return dso data size
930 * @dso: dso object
931 * @machine: machine object
932 *
933 * Return: dso data size
934 */
935off_t dso__data_size(struct dso *dso, struct machine *machine)
936{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900937 if (data_file_size(dso, machine))
Adrian Hunter6d363452014-07-22 16:17:35 +0300938 return -1;
939
940 /* For now just estimate dso data size is close to file size */
941 return dso->data.file_size;
942}
943
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900944static ssize_t data_read_offset(struct dso *dso, struct machine *machine,
945 u64 offset, u8 *data, ssize_t size)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200946{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900947 if (data_file_size(dso, machine))
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200948 return -1;
949
950 /* Check the offset sanity. */
951 if (offset > dso->data.file_size)
952 return -1;
953
954 if (offset + size < offset)
955 return -1;
956
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900957 return cached_read(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200958}
959
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200960/**
961 * dso__data_read_offset - Read data from dso file offset
962 * @dso: dso object
963 * @machine: machine object
964 * @offset: file offset
965 * @data: buffer to store data
966 * @size: size of the @data buffer
967 *
968 * External interface to read data from dso file offset. Open
969 * dso data file and use cached_read to get the data.
970 */
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200971ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
972 u64 offset, u8 *data, ssize_t size)
973{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900974 if (dso->data.status == DSO_DATA_STATUS_ERROR)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200975 return -1;
976
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900977 return data_read_offset(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200978}
979
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200980/**
981 * dso__data_read_addr - Read data from dso address
982 * @dso: dso object
983 * @machine: machine object
984 * @add: virtual memory address
985 * @data: buffer to store data
986 * @size: size of the @data buffer
987 *
988 * External interface to read data from dso address.
989 */
Jiri Olsacdd059d2012-10-27 23:18:32 +0200990ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
991 struct machine *machine, u64 addr,
992 u8 *data, ssize_t size)
993{
994 u64 offset = map->map_ip(map, addr);
995 return dso__data_read_offset(dso, machine, offset, data, size);
996}
997
998struct map *dso__new_map(const char *name)
999{
1000 struct map *map = NULL;
1001 struct dso *dso = dso__new(name);
1002
1003 if (dso)
1004 map = map__new2(0, dso, MAP__FUNCTION);
1005
1006 return map;
1007}
1008
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -03001009struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
1010 const char *short_name, int dso_type)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001011{
1012 /*
1013 * The kernel dso could be created by build_id processing.
1014 */
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -03001015 struct dso *dso = machine__findnew_dso(machine, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001016
1017 /*
1018 * We need to run this in all cases, since during the build_id
1019 * processing we had no idea this was the kernel dso.
1020 */
1021 if (dso != NULL) {
Adrian Hunter58a98c92013-12-10 11:11:46 -03001022 dso__set_short_name(dso, short_name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001023 dso->kernel = dso_type;
1024 }
1025
1026 return dso;
1027}
1028
Waiman Long4598a0a2014-09-30 13:36:15 -04001029/*
1030 * Find a matching entry and/or link current entry to RB tree.
1031 * Either one of the dso or name parameter must be non-NULL or the
1032 * function will not work.
1033 */
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001034static struct dso *__dso__findlink_by_longname(struct rb_root *root,
1035 struct dso *dso, const char *name)
Waiman Long4598a0a2014-09-30 13:36:15 -04001036{
1037 struct rb_node **p = &root->rb_node;
1038 struct rb_node *parent = NULL;
1039
1040 if (!name)
1041 name = dso->long_name;
1042 /*
1043 * Find node with the matching name
1044 */
1045 while (*p) {
1046 struct dso *this = rb_entry(*p, struct dso, rb_node);
1047 int rc = strcmp(name, this->long_name);
1048
1049 parent = *p;
1050 if (rc == 0) {
1051 /*
1052 * In case the new DSO is a duplicate of an existing
Masahiro Yamada0f5e1552017-02-27 14:28:52 -08001053 * one, print a one-time warning & put the new entry
Waiman Long4598a0a2014-09-30 13:36:15 -04001054 * at the end of the list of duplicates.
1055 */
1056 if (!dso || (dso == this))
1057 return this; /* Find matching dso */
1058 /*
1059 * The core kernel DSOs may have duplicated long name.
1060 * In this case, the short name should be different.
1061 * Comparing the short names to differentiate the DSOs.
1062 */
1063 rc = strcmp(dso->short_name, this->short_name);
1064 if (rc == 0) {
1065 pr_err("Duplicated dso name: %s\n", name);
1066 return NULL;
1067 }
1068 }
1069 if (rc < 0)
1070 p = &parent->rb_left;
1071 else
1072 p = &parent->rb_right;
1073 }
1074 if (dso) {
1075 /* Add new node and rebalance tree */
1076 rb_link_node(&dso->rb_node, parent, p);
1077 rb_insert_color(&dso->rb_node, root);
Adrian Huntere266a752015-11-13 11:48:30 +02001078 dso->root = root;
Waiman Long4598a0a2014-09-30 13:36:15 -04001079 }
1080 return NULL;
1081}
1082
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001083static inline struct dso *__dso__find_by_longname(struct rb_root *root,
1084 const char *name)
Waiman Long4598a0a2014-09-30 13:36:15 -04001085{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001086 return __dso__findlink_by_longname(root, NULL, name);
Waiman Long4598a0a2014-09-30 13:36:15 -04001087}
1088
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -03001089void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001090{
Adrian Huntere266a752015-11-13 11:48:30 +02001091 struct rb_root *root = dso->root;
1092
Jiri Olsacdd059d2012-10-27 23:18:32 +02001093 if (name == NULL)
1094 return;
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001095
1096 if (dso->long_name_allocated)
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -03001097 free((char *)dso->long_name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001098
Adrian Huntere266a752015-11-13 11:48:30 +02001099 if (root) {
1100 rb_erase(&dso->rb_node, root);
1101 /*
1102 * __dso__findlink_by_longname() isn't guaranteed to add it
1103 * back, so a clean removal is required here.
1104 */
1105 RB_CLEAR_NODE(&dso->rb_node);
1106 dso->root = NULL;
1107 }
1108
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001109 dso->long_name = name;
1110 dso->long_name_len = strlen(name);
1111 dso->long_name_allocated = name_allocated;
Adrian Huntere266a752015-11-13 11:48:30 +02001112
1113 if (root)
1114 __dso__findlink_by_longname(root, dso, NULL);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001115}
1116
Adrian Hunter58a98c92013-12-10 11:11:46 -03001117void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001118{
1119 if (name == NULL)
1120 return;
Adrian Hunter58a98c92013-12-10 11:11:46 -03001121
1122 if (dso->short_name_allocated)
1123 free((char *)dso->short_name);
1124
1125 dso->short_name = name;
1126 dso->short_name_len = strlen(name);
1127 dso->short_name_allocated = name_allocated;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001128}
1129
1130static void dso__set_basename(struct dso *dso)
1131{
Stephane Eranianac5e7f82013-12-05 19:26:42 +01001132 /*
1133 * basename() may modify path buffer, so we must pass
1134 * a copy.
1135 */
1136 char *base, *lname = strdup(dso->long_name);
1137
1138 if (!lname)
1139 return;
1140
1141 /*
1142 * basename() may return a pointer to internal
1143 * storage which is reused in subsequent calls
1144 * so copy the result.
1145 */
1146 base = strdup(basename(lname));
1147
1148 free(lname);
1149
1150 if (!base)
1151 return;
1152
1153 dso__set_short_name(dso, base, true);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001154}
1155
1156int dso__name_len(const struct dso *dso)
1157{
1158 if (!dso)
1159 return strlen("[unknown]");
Namhyung Kimbb963e12017-02-17 17:17:38 +09001160 if (verbose > 0)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001161 return dso->long_name_len;
1162
1163 return dso->short_name_len;
1164}
1165
1166bool dso__loaded(const struct dso *dso, enum map_type type)
1167{
1168 return dso->loaded & (1 << type);
1169}
1170
1171bool dso__sorted_by_name(const struct dso *dso, enum map_type type)
1172{
1173 return dso->sorted_by_name & (1 << type);
1174}
1175
1176void dso__set_sorted_by_name(struct dso *dso, enum map_type type)
1177{
1178 dso->sorted_by_name |= (1 << type);
1179}
1180
1181struct dso *dso__new(const char *name)
1182{
1183 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1);
1184
1185 if (dso != NULL) {
1186 int i;
1187 strcpy(dso->name, name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001188 dso__set_long_name(dso, dso->name, false);
Adrian Hunter58a98c92013-12-10 11:11:46 -03001189 dso__set_short_name(dso, dso->name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001190 for (i = 0; i < MAP__NR_TYPES; ++i)
1191 dso->symbols[i] = dso->symbol_names[i] = RB_ROOT;
Jiri Olsaca40e2a2014-05-07 18:30:45 +02001192 dso->data.cache = RB_ROOT;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +02001193 dso->data.fd = -1;
Adrian Hunterc27697d2014-07-22 16:17:18 +03001194 dso->data.status = DSO_DATA_STATUS_UNKNOWN;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001195 dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -03001196 dso->binary_type = DSO_BINARY_TYPE__NOT_FOUND;
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +03001197 dso->is_64_bit = (sizeof(void *) == 8);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001198 dso->loaded = 0;
Adrian Hunter0131c4e2013-08-07 14:38:50 +03001199 dso->rel = 0;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001200 dso->sorted_by_name = 0;
1201 dso->has_build_id = 0;
Namhyung Kim2cc9d0e2013-09-11 14:09:31 +09001202 dso->has_srcline = 1;
Adrian Hunter906049c82013-12-03 09:23:10 +02001203 dso->a2l_fails = 1;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001204 dso->kernel = DSO_TYPE_USER;
1205 dso->needs_swap = DSO_SWAP__UNSET;
Waiman Long4598a0a2014-09-30 13:36:15 -04001206 RB_CLEAR_NODE(&dso->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +02001207 dso->root = NULL;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001208 INIT_LIST_HEAD(&dso->node);
Jiri Olsaeba51022014-04-30 15:00:59 +02001209 INIT_LIST_HEAD(&dso->data.open_entry);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001210 pthread_mutex_init(&dso->lock, NULL);
Elena Reshetova71008102017-02-21 17:34:58 +02001211 refcount_set(&dso->refcnt, 1);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001212 }
1213
1214 return dso;
1215}
1216
1217void dso__delete(struct dso *dso)
1218{
1219 int i;
Waiman Long4598a0a2014-09-30 13:36:15 -04001220
1221 if (!RB_EMPTY_NODE(&dso->rb_node))
1222 pr_err("DSO %s is still in rbtree when being deleted!\n",
1223 dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001224 for (i = 0; i < MAP__NR_TYPES; ++i)
1225 symbols__delete(&dso->symbols[i]);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001226
1227 if (dso->short_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001228 zfree((char **)&dso->short_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001229 dso->short_name_allocated = false;
1230 }
1231
1232 if (dso->long_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001233 zfree((char **)&dso->long_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001234 dso->long_name_allocated = false;
1235 }
1236
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +02001237 dso__data_close(dso);
Adrian Huntercfe91742015-04-09 18:53:55 +03001238 auxtrace_cache__free(dso->auxtrace_cache);
Namhyung Kim8e67b722015-05-18 09:30:41 +09001239 dso_cache__free(dso);
Adrian Hunter454ff002013-12-03 09:23:07 +02001240 dso__free_a2l(dso);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001241 zfree(&dso->symsrc_filename);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001242 pthread_mutex_destroy(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001243 free(dso);
1244}
1245
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001246struct dso *dso__get(struct dso *dso)
1247{
1248 if (dso)
Elena Reshetova71008102017-02-21 17:34:58 +02001249 refcount_inc(&dso->refcnt);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001250 return dso;
1251}
1252
1253void dso__put(struct dso *dso)
1254{
Elena Reshetova71008102017-02-21 17:34:58 +02001255 if (dso && refcount_dec_and_test(&dso->refcnt))
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001256 dso__delete(dso);
1257}
1258
Jiri Olsacdd059d2012-10-27 23:18:32 +02001259void dso__set_build_id(struct dso *dso, void *build_id)
1260{
1261 memcpy(dso->build_id, build_id, sizeof(dso->build_id));
1262 dso->has_build_id = 1;
1263}
1264
1265bool dso__build_id_equal(const struct dso *dso, u8 *build_id)
1266{
1267 return memcmp(dso->build_id, build_id, sizeof(dso->build_id)) == 0;
1268}
1269
1270void dso__read_running_kernel_build_id(struct dso *dso, struct machine *machine)
1271{
1272 char path[PATH_MAX];
1273
1274 if (machine__is_default_guest(machine))
1275 return;
1276 sprintf(path, "%s/sys/kernel/notes", machine->root_dir);
1277 if (sysfs__read_build_id(path, dso->build_id,
1278 sizeof(dso->build_id)) == 0)
1279 dso->has_build_id = true;
1280}
1281
1282int dso__kernel_module_get_build_id(struct dso *dso,
1283 const char *root_dir)
1284{
1285 char filename[PATH_MAX];
1286 /*
1287 * kernel module short names are of the form "[module]" and
1288 * we need just "module" here.
1289 */
1290 const char *name = dso->short_name + 1;
1291
1292 snprintf(filename, sizeof(filename),
1293 "%s/sys/module/%.*s/notes/.note.gnu.build-id",
1294 root_dir, (int)strlen(name) - 1, name);
1295
1296 if (sysfs__read_build_id(filename, dso->build_id,
1297 sizeof(dso->build_id)) == 0)
1298 dso->has_build_id = true;
1299
1300 return 0;
1301}
1302
1303bool __dsos__read_build_ids(struct list_head *head, bool with_hits)
1304{
1305 bool have_build_id = false;
1306 struct dso *pos;
1307
1308 list_for_each_entry(pos, head, node) {
He Kuang6ae98ba2016-05-12 08:43:11 +00001309 if (with_hits && !pos->hit && !dso__is_vdso(pos))
Jiri Olsacdd059d2012-10-27 23:18:32 +02001310 continue;
1311 if (pos->has_build_id) {
1312 have_build_id = true;
1313 continue;
1314 }
1315 if (filename__read_build_id(pos->long_name, pos->build_id,
1316 sizeof(pos->build_id)) > 0) {
1317 have_build_id = true;
1318 pos->has_build_id = true;
1319 }
1320 }
1321
1322 return have_build_id;
1323}
1324
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001325void __dsos__add(struct dsos *dsos, struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001326{
Waiman Long8fa7d872014-09-29 16:07:28 -04001327 list_add_tail(&dso->node, &dsos->head);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001328 __dso__findlink_by_longname(&dsos->root, dso, NULL);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001329 /*
1330 * It is now in the linked list, grab a reference, then garbage collect
1331 * this when needing memory, by looking at LRU dso instances in the
1332 * list with atomic_read(&dso->refcnt) == 1, i.e. no references
1333 * anywhere besides the one for the list, do, under a lock for the
1334 * list: remove it from the list, then a dso__put(), that probably will
1335 * be the last and will then call dso__delete(), end of life.
1336 *
1337 * That, or at the end of the 'struct machine' lifetime, when all
1338 * 'struct dso' instances will be removed from the list, in
1339 * dsos__exit(), if they have no other reference from some other data
1340 * structure.
1341 *
1342 * E.g.: after processing a 'perf.data' file and storing references
1343 * to objects instantiated while processing events, we will have
1344 * references to the 'thread', 'map', 'dso' structs all from 'struct
1345 * hist_entry' instances, but we may not need anything not referenced,
1346 * so we might as well call machines__exit()/machines__delete() and
1347 * garbage collect it.
1348 */
1349 dso__get(dso);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001350}
1351
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001352void dsos__add(struct dsos *dsos, struct dso *dso)
1353{
1354 pthread_rwlock_wrlock(&dsos->lock);
1355 __dsos__add(dsos, dso);
1356 pthread_rwlock_unlock(&dsos->lock);
1357}
1358
1359struct dso *__dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001360{
1361 struct dso *pos;
1362
Waiman Longf9ceffb2013-05-09 10:42:48 -04001363 if (cmp_short) {
Waiman Long8fa7d872014-09-29 16:07:28 -04001364 list_for_each_entry(pos, &dsos->head, node)
Waiman Longf9ceffb2013-05-09 10:42:48 -04001365 if (strcmp(pos->short_name, name) == 0)
1366 return pos;
1367 return NULL;
1368 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001369 return __dso__find_by_longname(&dsos->root, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001370}
1371
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001372struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
1373{
1374 struct dso *dso;
1375 pthread_rwlock_rdlock(&dsos->lock);
1376 dso = __dsos__find(dsos, name, cmp_short);
1377 pthread_rwlock_unlock(&dsos->lock);
1378 return dso;
1379}
1380
1381struct dso *__dsos__addnew(struct dsos *dsos, const char *name)
Jiri Olsa701d8d72015-02-12 22:06:09 +01001382{
1383 struct dso *dso = dso__new(name);
1384
1385 if (dso != NULL) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001386 __dsos__add(dsos, dso);
Jiri Olsa701d8d72015-02-12 22:06:09 +01001387 dso__set_basename(dso);
Masami Hiramatsu82de26a2015-11-18 15:40:31 +09001388 /* Put dso here because __dsos_add already got it */
1389 dso__put(dso);
Jiri Olsa701d8d72015-02-12 22:06:09 +01001390 }
1391 return dso;
1392}
1393
Waiman Long8fa7d872014-09-29 16:07:28 -04001394struct dso *__dsos__findnew(struct dsos *dsos, const char *name)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001395{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001396 struct dso *dso = __dsos__find(dsos, name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001397
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001398 return dso ? dso : __dsos__addnew(dsos, name);
1399}
1400
1401struct dso *dsos__findnew(struct dsos *dsos, const char *name)
1402{
1403 struct dso *dso;
1404 pthread_rwlock_wrlock(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001405 dso = dso__get(__dsos__findnew(dsos, name));
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001406 pthread_rwlock_unlock(&dsos->lock);
1407 return dso;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001408}
1409
1410size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001411 bool (skip)(struct dso *dso, int parm), int parm)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001412{
1413 struct dso *pos;
1414 size_t ret = 0;
1415
1416 list_for_each_entry(pos, head, node) {
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001417 if (skip && skip(pos, parm))
Jiri Olsacdd059d2012-10-27 23:18:32 +02001418 continue;
1419 ret += dso__fprintf_buildid(pos, fp);
1420 ret += fprintf(fp, " %s\n", pos->long_name);
1421 }
1422 return ret;
1423}
1424
1425size_t __dsos__fprintf(struct list_head *head, FILE *fp)
1426{
1427 struct dso *pos;
1428 size_t ret = 0;
1429
1430 list_for_each_entry(pos, head, node) {
1431 int i;
1432 for (i = 0; i < MAP__NR_TYPES; ++i)
1433 ret += dso__fprintf(pos, i, fp);
1434 }
1435
1436 return ret;
1437}
1438
1439size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
1440{
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09001441 char sbuild_id[SBUILD_ID_SIZE];
Jiri Olsacdd059d2012-10-27 23:18:32 +02001442
1443 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
1444 return fprintf(fp, "%s", sbuild_id);
1445}
1446
1447size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp)
1448{
1449 struct rb_node *nd;
1450 size_t ret = fprintf(fp, "dso: %s (", dso->short_name);
1451
1452 if (dso->short_name != dso->long_name)
1453 ret += fprintf(fp, "%s, ", dso->long_name);
1454 ret += fprintf(fp, "%s, %sloaded, ", map_type__name[type],
Stephane Eranian919d5902012-11-20 10:51:02 +01001455 dso__loaded(dso, type) ? "" : "NOT ");
Jiri Olsacdd059d2012-10-27 23:18:32 +02001456 ret += dso__fprintf_buildid(dso, fp);
1457 ret += fprintf(fp, ")\n");
1458 for (nd = rb_first(&dso->symbols[type]); nd; nd = rb_next(nd)) {
1459 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
1460 ret += symbol__fprintf(pos, fp);
1461 }
1462
1463 return ret;
1464}
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001465
1466enum dso_type dso__type(struct dso *dso, struct machine *machine)
1467{
1468 int fd;
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001469 enum dso_type type = DSO__TYPE_UNKNOWN;
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001470
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001471 fd = dso__data_get_fd(dso, machine);
1472 if (fd >= 0) {
1473 type = dso__type_fd(fd);
1474 dso__data_put_fd(dso);
1475 }
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001476
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001477 return type;
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001478}
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -03001479
1480int dso__strerror_load(struct dso *dso, char *buf, size_t buflen)
1481{
1482 int idx, errnum = dso->load_errno;
1483 /*
1484 * This must have a same ordering as the enum dso_load_errno.
1485 */
1486 static const char *dso_load__error_str[] = {
1487 "Internal tools/perf/ library error",
1488 "Invalid ELF file",
1489 "Can not read build id",
1490 "Mismatching build id",
1491 "Decompression failure",
1492 };
1493
1494 BUG_ON(buflen == 0);
1495
1496 if (errnum >= 0) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03001497 const char *err = str_error_r(errnum, buf, buflen);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -03001498
1499 if (err != buf)
1500 scnprintf(buf, buflen, "%s", err);
1501
1502 return 0;
1503 }
1504
1505 if (errnum < __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END)
1506 return -1;
1507
1508 idx = errnum - __DSO_LOAD_ERRNO__START;
1509 scnprintf(buf, buflen, "%s", dso_load__error_str[idx]);
1510 return 0;
1511}