blob: e1de6cc4863e89f3b1979140eb9b0a0e7b3402e5 [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"
He Kuang6ae98ba2016-05-12 08:43:11 +000010#include "vdso.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +020011
12char dso__symtab_origin(const struct dso *dso)
13{
14 static const char origin[] = {
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020015 [DSO_BINARY_TYPE__KALLSYMS] = 'k',
16 [DSO_BINARY_TYPE__VMLINUX] = 'v',
17 [DSO_BINARY_TYPE__JAVA_JIT] = 'j',
18 [DSO_BINARY_TYPE__DEBUGLINK] = 'l',
19 [DSO_BINARY_TYPE__BUILD_ID_CACHE] = 'B',
20 [DSO_BINARY_TYPE__FEDORA_DEBUGINFO] = 'f',
21 [DSO_BINARY_TYPE__UBUNTU_DEBUGINFO] = 'u',
22 [DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO] = 'o',
23 [DSO_BINARY_TYPE__BUILDID_DEBUGINFO] = 'b',
24 [DSO_BINARY_TYPE__SYSTEM_PATH_DSO] = 'd',
25 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE] = 'K',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090026 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP] = 'm',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020027 [DSO_BINARY_TYPE__GUEST_KALLSYMS] = 'g',
28 [DSO_BINARY_TYPE__GUEST_KMODULE] = 'G',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090029 [DSO_BINARY_TYPE__GUEST_KMODULE_COMP] = 'M',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020030 [DSO_BINARY_TYPE__GUEST_VMLINUX] = 'V',
Jiri Olsacdd059d2012-10-27 23:18:32 +020031 };
32
33 if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
34 return '!';
35 return origin[dso->symtab_type];
36}
37
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -030038int dso__read_binary_type_filename(const struct dso *dso,
39 enum dso_binary_type type,
40 char *root_dir, char *filename, size_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +020041{
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +090042 char build_id_hex[SBUILD_ID_SIZE];
Jiri Olsacdd059d2012-10-27 23:18:32 +020043 int ret = 0;
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030044 size_t len;
Jiri Olsacdd059d2012-10-27 23:18:32 +020045
46 switch (type) {
47 case DSO_BINARY_TYPE__DEBUGLINK: {
48 char *debuglink;
49
Victor Kamenskydc6254c2015-01-26 22:34:02 -080050 len = __symbol__join_symfs(filename, size, dso->long_name);
51 debuglink = filename + len;
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -030052 while (debuglink != filename && *debuglink != '/')
Jiri Olsacdd059d2012-10-27 23:18:32 +020053 debuglink--;
54 if (*debuglink == '/')
55 debuglink++;
Jiri Olsa40356722016-01-20 12:56:32 +010056
57 ret = -1;
58 if (!is_regular_file(filename))
59 break;
60
Victor Kamenskydc6254c2015-01-26 22:34:02 -080061 ret = filename__read_debuglink(filename, debuglink,
Stephane Eranian0d3dc5e2014-02-20 10:32:55 +090062 size - (debuglink - filename));
Jiri Olsacdd059d2012-10-27 23:18:32 +020063 }
64 break;
65 case DSO_BINARY_TYPE__BUILD_ID_CACHE:
He Kuanga7066702016-05-19 11:47:37 +000066 if (dso__build_id_filename(dso, filename, size) == NULL)
Jiri Olsacdd059d2012-10-27 23:18:32 +020067 ret = -1;
68 break;
69
70 case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030071 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
72 snprintf(filename + len, size - len, "%s.debug", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +020073 break;
74
75 case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030076 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
77 snprintf(filename + len, size - len, "%s", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +020078 break;
79
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020080 case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
81 {
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -030082 const char *last_slash;
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020083 size_t dir_size;
84
85 last_slash = dso->long_name + dso->long_name_len;
86 while (last_slash != dso->long_name && *last_slash != '/')
87 last_slash--;
88
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030089 len = __symbol__join_symfs(filename, size, "");
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020090 dir_size = last_slash - dso->long_name + 2;
91 if (dir_size > (size - len)) {
92 ret = -1;
93 break;
94 }
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -030095 len += scnprintf(filename + len, dir_size, "%s", dso->long_name);
96 len += scnprintf(filename + len , size - len, ".debug%s",
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020097 last_slash);
98 break;
99 }
100
Jiri Olsacdd059d2012-10-27 23:18:32 +0200101 case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
102 if (!dso->has_build_id) {
103 ret = -1;
104 break;
105 }
106
107 build_id__sprintf(dso->build_id,
108 sizeof(dso->build_id),
109 build_id_hex);
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300110 len = __symbol__join_symfs(filename, size, "/usr/lib/debug/.build-id/");
111 snprintf(filename + len, size - len, "%.2s/%s.debug",
112 build_id_hex, build_id_hex + 2);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200113 break;
114
Adrian Hunter39b12f782013-08-07 14:38:47 +0300115 case DSO_BINARY_TYPE__VMLINUX:
116 case DSO_BINARY_TYPE__GUEST_VMLINUX:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200117 case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300118 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200119 break;
120
121 case DSO_BINARY_TYPE__GUEST_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900122 case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300123 path__join3(filename, size, symbol_conf.symfs,
124 root_dir, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200125 break;
126
127 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900128 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300129 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200130 break;
131
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300132 case DSO_BINARY_TYPE__KCORE:
133 case DSO_BINARY_TYPE__GUEST_KCORE:
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -0300134 snprintf(filename, size, "%s", dso->long_name);
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300135 break;
136
Jiri Olsacdd059d2012-10-27 23:18:32 +0200137 default:
138 case DSO_BINARY_TYPE__KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200139 case DSO_BINARY_TYPE__GUEST_KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200140 case DSO_BINARY_TYPE__JAVA_JIT:
141 case DSO_BINARY_TYPE__NOT_FOUND:
142 ret = -1;
143 break;
144 }
145
146 return ret;
147}
148
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900149static const struct {
150 const char *fmt;
151 int (*decompress)(const char *input, int output);
152} compressions[] = {
Namhyung Kime92ce122014-10-31 16:51:38 +0900153#ifdef HAVE_ZLIB_SUPPORT
154 { "gz", gzip_decompress_to_file },
155#endif
Jiri Olsa80a32e5b2015-01-29 13:29:39 +0100156#ifdef HAVE_LZMA_SUPPORT
157 { "xz", lzma_decompress_to_file },
158#endif
Namhyung Kime92ce122014-10-31 16:51:38 +0900159 { NULL, NULL },
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900160};
161
162bool is_supported_compression(const char *ext)
163{
164 unsigned i;
165
166 for (i = 0; compressions[i].fmt; i++) {
167 if (!strcmp(ext, compressions[i].fmt))
168 return true;
169 }
170 return false;
171}
172
Wang Nan1f121b02015-06-03 08:52:21 +0000173bool is_kernel_module(const char *pathname, int cpumode)
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900174{
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100175 struct kmod_path m;
Wang Nan1f121b02015-06-03 08:52:21 +0000176 int mode = cpumode & PERF_RECORD_MISC_CPUMODE_MASK;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900177
Wang Nan1f121b02015-06-03 08:52:21 +0000178 WARN_ONCE(mode != cpumode,
179 "Internal error: passing unmasked cpumode (%x) to is_kernel_module",
180 cpumode);
181
182 switch (mode) {
183 case PERF_RECORD_MISC_USER:
184 case PERF_RECORD_MISC_HYPERVISOR:
185 case PERF_RECORD_MISC_GUEST_USER:
186 return false;
187 /* Treat PERF_RECORD_MISC_CPUMODE_UNKNOWN as kernel */
188 default:
189 if (kmod_path__parse(&m, pathname)) {
190 pr_err("Failed to check whether %s is a kernel module or not. Assume it is.",
191 pathname);
192 return true;
193 }
194 }
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900195
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100196 return m.kmod;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900197}
198
199bool decompress_to_file(const char *ext, const char *filename, int output_fd)
200{
201 unsigned i;
202
203 for (i = 0; compressions[i].fmt; i++) {
204 if (!strcmp(ext, compressions[i].fmt))
205 return !compressions[i].decompress(filename,
206 output_fd);
207 }
208 return false;
209}
210
211bool dso__needs_decompress(struct dso *dso)
212{
213 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP ||
214 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
215}
216
Jiri Olsaeba51022014-04-30 15:00:59 +0200217/*
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100218 * Parses kernel module specified in @path and updates
219 * @m argument like:
220 *
221 * @comp - true if @path contains supported compression suffix,
222 * false otherwise
223 * @kmod - true if @path contains '.ko' suffix in right position,
224 * false otherwise
225 * @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name
226 * of the kernel module without suffixes, otherwise strudup-ed
227 * base name of @path
228 * @ext - if (@alloc_ext && @comp) is true, it contains strdup-ed string
229 * the compression suffix
230 *
231 * Returns 0 if there's no strdup error, -ENOMEM otherwise.
232 */
233int __kmod_path__parse(struct kmod_path *m, const char *path,
234 bool alloc_name, bool alloc_ext)
235{
236 const char *name = strrchr(path, '/');
237 const char *ext = strrchr(path, '.');
Wang Nan1f121b02015-06-03 08:52:21 +0000238 bool is_simple_name = false;
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100239
240 memset(m, 0x0, sizeof(*m));
241 name = name ? name + 1 : path;
242
Wang Nan1f121b02015-06-03 08:52:21 +0000243 /*
244 * '.' is also a valid character for module name. For example:
245 * [aaa.bbb] is a valid module name. '[' should have higher
246 * priority than '.ko' suffix.
247 *
248 * The kernel names are from machine__mmap_name. Such
249 * name should belong to kernel itself, not kernel module.
250 */
251 if (name[0] == '[') {
252 is_simple_name = true;
253 if ((strncmp(name, "[kernel.kallsyms]", 17) == 0) ||
254 (strncmp(name, "[guest.kernel.kallsyms", 22) == 0) ||
255 (strncmp(name, "[vdso]", 6) == 0) ||
256 (strncmp(name, "[vsyscall]", 10) == 0)) {
257 m->kmod = false;
258
259 } else
260 m->kmod = true;
261 }
262
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100263 /* No extension, just return name. */
Wang Nan1f121b02015-06-03 08:52:21 +0000264 if ((ext == NULL) || is_simple_name) {
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100265 if (alloc_name) {
266 m->name = strdup(name);
267 return m->name ? 0 : -ENOMEM;
268 }
269 return 0;
270 }
271
272 if (is_supported_compression(ext + 1)) {
273 m->comp = true;
274 ext -= 3;
275 }
276
277 /* Check .ko extension only if there's enough name left. */
278 if (ext > name)
279 m->kmod = !strncmp(ext, ".ko", 3);
280
281 if (alloc_name) {
282 if (m->kmod) {
283 if (asprintf(&m->name, "[%.*s]", (int) (ext - name), name) == -1)
284 return -ENOMEM;
285 } else {
286 if (asprintf(&m->name, "%s", name) == -1)
287 return -ENOMEM;
288 }
289
290 strxfrchar(m->name, '-', '_');
291 }
292
293 if (alloc_ext && m->comp) {
294 m->ext = strdup(ext + 4);
295 if (!m->ext) {
296 free((void *) m->name);
297 return -ENOMEM;
298 }
299 }
300
301 return 0;
302}
303
304/*
Jiri Olsabda6ee42014-04-30 15:25:10 +0200305 * Global list of open DSOs and the counter.
Jiri Olsaeba51022014-04-30 15:00:59 +0200306 */
307static LIST_HEAD(dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200308static long dso__data_open_cnt;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900309static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
Jiri Olsaeba51022014-04-30 15:00:59 +0200310
311static void dso__list_add(struct dso *dso)
312{
313 list_add_tail(&dso->data.open_entry, &dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200314 dso__data_open_cnt++;
Jiri Olsaeba51022014-04-30 15:00:59 +0200315}
316
317static void dso__list_del(struct dso *dso)
318{
319 list_del(&dso->data.open_entry);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200320 WARN_ONCE(dso__data_open_cnt <= 0,
321 "DSO data fd counter out of bounds.");
322 dso__data_open_cnt--;
Jiri Olsaeba51022014-04-30 15:00:59 +0200323}
324
Jiri Olsaa08cae02014-05-07 21:35:02 +0200325static void close_first_dso(void);
326
327static int do_open(char *name)
328{
329 int fd;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000330 char sbuf[STRERR_BUFSIZE];
Jiri Olsaa08cae02014-05-07 21:35:02 +0200331
332 do {
333 fd = open(name, O_RDONLY);
334 if (fd >= 0)
335 return fd;
336
Namhyung Kima3c0cc22015-01-30 11:33:29 +0900337 pr_debug("dso open failed: %s\n",
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000338 strerror_r(errno, sbuf, sizeof(sbuf)));
Jiri Olsaa08cae02014-05-07 21:35:02 +0200339 if (!dso__data_open_cnt || errno != EMFILE)
340 break;
341
342 close_first_dso();
343 } while (1);
344
345 return -1;
346}
347
Jiri Olsaeba51022014-04-30 15:00:59 +0200348static int __open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200349{
Jiri Olsacdd059d2012-10-27 23:18:32 +0200350 int fd;
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300351 char *root_dir = (char *)"";
352 char *name = malloc(PATH_MAX);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200353
Jiri Olsacdd059d2012-10-27 23:18:32 +0200354 if (!name)
355 return -ENOMEM;
356
357 if (machine)
358 root_dir = machine->root_dir;
359
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300360 if (dso__read_binary_type_filename(dso, dso->binary_type,
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300361 root_dir, name, PATH_MAX)) {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200362 free(name);
363 return -EINVAL;
364 }
365
Jiri Olsaa08cae02014-05-07 21:35:02 +0200366 fd = do_open(name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200367 free(name);
368 return fd;
369}
370
Jiri Olsac6580452014-04-30 15:47:27 +0200371static void check_data_close(void);
372
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200373/**
374 * dso_close - Open DSO data file
375 * @dso: dso object
376 *
377 * Open @dso's data file descriptor and updates
378 * list/count of open DSO objects.
379 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200380static int open_dso(struct dso *dso, struct machine *machine)
381{
382 int fd = __open_dso(dso, machine);
383
Adrian Huntera6f6ae92014-07-17 11:43:09 +0300384 if (fd >= 0) {
Jiri Olsaeba51022014-04-30 15:00:59 +0200385 dso__list_add(dso);
Jiri Olsac6580452014-04-30 15:47:27 +0200386 /*
387 * Check if we crossed the allowed number
388 * of opened DSOs and close one if needed.
389 */
390 check_data_close();
391 }
Jiri Olsaeba51022014-04-30 15:00:59 +0200392
393 return fd;
394}
395
396static void close_data_fd(struct dso *dso)
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200397{
398 if (dso->data.fd >= 0) {
399 close(dso->data.fd);
400 dso->data.fd = -1;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200401 dso->data.file_size = 0;
Jiri Olsaeba51022014-04-30 15:00:59 +0200402 dso__list_del(dso);
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200403 }
404}
405
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200406/**
407 * dso_close - Close DSO data file
408 * @dso: dso object
409 *
410 * Close @dso's data file descriptor and updates
411 * list/count of open DSO objects.
412 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200413static void close_dso(struct dso *dso)
414{
415 close_data_fd(dso);
416}
417
Jiri Olsac6580452014-04-30 15:47:27 +0200418static void close_first_dso(void)
419{
420 struct dso *dso;
421
422 dso = list_first_entry(&dso__data_open, struct dso, data.open_entry);
423 close_dso(dso);
424}
425
426static rlim_t get_fd_limit(void)
427{
428 struct rlimit l;
429 rlim_t limit = 0;
430
431 /* Allow half of the current open fd limit. */
432 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
433 if (l.rlim_cur == RLIM_INFINITY)
434 limit = l.rlim_cur;
435 else
436 limit = l.rlim_cur / 2;
437 } else {
438 pr_err("failed to get fd limit\n");
439 limit = 1;
440 }
441
442 return limit;
443}
444
Jiri Olsaf3069242016-06-28 13:29:02 +0200445static rlim_t fd_limit;
446
447/*
448 * Used only by tests/dso-data.c to reset the environment
449 * for tests. I dont expect we should change this during
450 * standard runtime.
451 */
452void reset_fd_limit(void)
453{
454 fd_limit = 0;
455}
456
Jiri Olsac6580452014-04-30 15:47:27 +0200457static bool may_cache_fd(void)
458{
Jiri Olsaf3069242016-06-28 13:29:02 +0200459 if (!fd_limit)
460 fd_limit = get_fd_limit();
Jiri Olsac6580452014-04-30 15:47:27 +0200461
Jiri Olsaf3069242016-06-28 13:29:02 +0200462 if (fd_limit == RLIM_INFINITY)
Jiri Olsac6580452014-04-30 15:47:27 +0200463 return true;
464
Jiri Olsaf3069242016-06-28 13:29:02 +0200465 return fd_limit > (rlim_t) dso__data_open_cnt;
Jiri Olsac6580452014-04-30 15:47:27 +0200466}
467
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200468/*
469 * Check and close LRU dso if we crossed allowed limit
470 * for opened dso file descriptors. The limit is half
471 * of the RLIMIT_NOFILE files opened.
472*/
Jiri Olsac6580452014-04-30 15:47:27 +0200473static void check_data_close(void)
474{
475 bool cache_fd = may_cache_fd();
476
477 if (!cache_fd)
478 close_first_dso();
479}
480
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200481/**
482 * dso__data_close - Close DSO data file
483 * @dso: dso object
484 *
485 * External interface to close @dso's data file descriptor.
486 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200487void dso__data_close(struct dso *dso)
488{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900489 pthread_mutex_lock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200490 close_dso(dso);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900491 pthread_mutex_unlock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200492}
493
Namhyung Kim71ff8242015-05-21 01:03:39 +0900494static void try_to_open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200495{
Arnaldo Carvalho de Melo631d34b2013-12-16 16:57:43 -0300496 enum dso_binary_type binary_type_data[] = {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200497 DSO_BINARY_TYPE__BUILD_ID_CACHE,
498 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
499 DSO_BINARY_TYPE__NOT_FOUND,
500 };
501 int i = 0;
502
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200503 if (dso->data.fd >= 0)
Namhyung Kim71ff8242015-05-21 01:03:39 +0900504 return;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200505
506 if (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND) {
507 dso->data.fd = open_dso(dso, machine);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300508 goto out;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200509 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200510
511 do {
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300512 dso->binary_type = binary_type_data[i++];
Jiri Olsacdd059d2012-10-27 23:18:32 +0200513
Adrian Hunterc27697d2014-07-22 16:17:18 +0300514 dso->data.fd = open_dso(dso, machine);
515 if (dso->data.fd >= 0)
516 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200517
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300518 } while (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300519out:
520 if (dso->data.fd >= 0)
521 dso->data.status = DSO_DATA_STATUS_OK;
522 else
523 dso->data.status = DSO_DATA_STATUS_ERROR;
Namhyung Kim71ff8242015-05-21 01:03:39 +0900524}
Jiri Olsacdd059d2012-10-27 23:18:32 +0200525
Namhyung Kim71ff8242015-05-21 01:03:39 +0900526/**
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900527 * dso__data_get_fd - Get dso's data file descriptor
Namhyung Kim71ff8242015-05-21 01:03:39 +0900528 * @dso: dso object
529 * @machine: machine object
530 *
531 * External interface to find dso's file, open it and
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900532 * returns file descriptor. It should be paired with
533 * dso__data_put_fd() if it returns non-negative value.
Namhyung Kim71ff8242015-05-21 01:03:39 +0900534 */
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900535int dso__data_get_fd(struct dso *dso, struct machine *machine)
Namhyung Kim71ff8242015-05-21 01:03:39 +0900536{
537 if (dso->data.status == DSO_DATA_STATUS_ERROR)
538 return -1;
539
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900540 if (pthread_mutex_lock(&dso__data_open_lock) < 0)
541 return -1;
542
Namhyung Kim71ff8242015-05-21 01:03:39 +0900543 try_to_open_dso(dso, machine);
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900544
545 if (dso->data.fd < 0)
546 pthread_mutex_unlock(&dso__data_open_lock);
Namhyung Kim71ff8242015-05-21 01:03:39 +0900547
Adrian Hunterc27697d2014-07-22 16:17:18 +0300548 return dso->data.fd;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200549}
550
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900551void dso__data_put_fd(struct dso *dso __maybe_unused)
552{
553 pthread_mutex_unlock(&dso__data_open_lock);
554}
555
Adrian Hunter288be942014-07-22 16:17:19 +0300556bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by)
557{
558 u32 flag = 1 << by;
559
560 if (dso->data.status_seen & flag)
561 return true;
562
563 dso->data.status_seen |= flag;
564
565 return false;
566}
567
Jiri Olsacdd059d2012-10-27 23:18:32 +0200568static void
Namhyung Kim8e67b722015-05-18 09:30:41 +0900569dso_cache__free(struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200570{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900571 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200572 struct rb_node *next = rb_first(root);
573
Namhyung Kim8e67b722015-05-18 09:30:41 +0900574 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200575 while (next) {
576 struct dso_cache *cache;
577
578 cache = rb_entry(next, struct dso_cache, rb_node);
579 next = rb_next(&cache->rb_node);
580 rb_erase(&cache->rb_node, root);
581 free(cache);
582 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900583 pthread_mutex_unlock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200584}
585
Namhyung Kim8e67b722015-05-18 09:30:41 +0900586static struct dso_cache *dso_cache__find(struct dso *dso, u64 offset)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200587{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900588 const struct rb_root *root = &dso->data.cache;
Arnaldo Carvalho de Melo33449962013-12-10 15:46:29 -0300589 struct rb_node * const *p = &root->rb_node;
590 const struct rb_node *parent = NULL;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200591 struct dso_cache *cache;
592
593 while (*p != NULL) {
594 u64 end;
595
596 parent = *p;
597 cache = rb_entry(parent, struct dso_cache, rb_node);
598 end = cache->offset + DSO__DATA_CACHE_SIZE;
599
600 if (offset < cache->offset)
601 p = &(*p)->rb_left;
602 else if (offset >= end)
603 p = &(*p)->rb_right;
604 else
605 return cache;
606 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900607
Jiri Olsacdd059d2012-10-27 23:18:32 +0200608 return NULL;
609}
610
Namhyung Kim8e67b722015-05-18 09:30:41 +0900611static struct dso_cache *
612dso_cache__insert(struct dso *dso, struct dso_cache *new)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200613{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900614 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200615 struct rb_node **p = &root->rb_node;
616 struct rb_node *parent = NULL;
617 struct dso_cache *cache;
618 u64 offset = new->offset;
619
Namhyung Kim8e67b722015-05-18 09:30:41 +0900620 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200621 while (*p != NULL) {
622 u64 end;
623
624 parent = *p;
625 cache = rb_entry(parent, struct dso_cache, rb_node);
626 end = cache->offset + DSO__DATA_CACHE_SIZE;
627
628 if (offset < cache->offset)
629 p = &(*p)->rb_left;
630 else if (offset >= end)
631 p = &(*p)->rb_right;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900632 else
633 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200634 }
635
636 rb_link_node(&new->rb_node, parent, p);
637 rb_insert_color(&new->rb_node, root);
Namhyung Kim8e67b722015-05-18 09:30:41 +0900638
639 cache = NULL;
640out:
641 pthread_mutex_unlock(&dso->lock);
642 return cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200643}
644
645static ssize_t
646dso_cache__memcpy(struct dso_cache *cache, u64 offset,
647 u8 *data, u64 size)
648{
649 u64 cache_offset = offset - cache->offset;
650 u64 cache_size = min(cache->size - cache_offset, size);
651
652 memcpy(data, cache->data + cache_offset, cache_size);
653 return cache_size;
654}
655
656static ssize_t
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900657dso_cache__read(struct dso *dso, struct machine *machine,
658 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200659{
660 struct dso_cache *cache;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900661 struct dso_cache *old;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200662 ssize_t ret;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200663
664 do {
665 u64 cache_offset;
666
Jiri Olsacdd059d2012-10-27 23:18:32 +0200667 cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
668 if (!cache)
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900669 return -ENOMEM;
670
671 pthread_mutex_lock(&dso__data_open_lock);
672
673 /*
674 * dso->data.fd might be closed if other thread opened another
675 * file (dso) due to open file limit (RLIMIT_NOFILE).
676 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900677 try_to_open_dso(dso, machine);
678
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900679 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900680 ret = -errno;
681 dso->data.status = DSO_DATA_STATUS_ERROR;
682 break;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900683 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200684
685 cache_offset = offset & DSO__DATA_CACHE_MASK;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200686
Namhyung Kimc52686f2015-01-29 17:02:01 -0300687 ret = pread(dso->data.fd, cache->data, DSO__DATA_CACHE_SIZE, cache_offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200688 if (ret <= 0)
689 break;
690
691 cache->offset = cache_offset;
692 cache->size = ret;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900693 } while (0);
694
695 pthread_mutex_unlock(&dso__data_open_lock);
696
697 if (ret > 0) {
Namhyung Kim8e67b722015-05-18 09:30:41 +0900698 old = dso_cache__insert(dso, cache);
699 if (old) {
700 /* we lose the race */
701 free(cache);
702 cache = old;
703 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200704
705 ret = dso_cache__memcpy(cache, offset, data, size);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900706 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200707
708 if (ret <= 0)
709 free(cache);
710
Jiri Olsacdd059d2012-10-27 23:18:32 +0200711 return ret;
712}
713
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900714static ssize_t dso_cache_read(struct dso *dso, struct machine *machine,
715 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200716{
717 struct dso_cache *cache;
718
Namhyung Kim8e67b722015-05-18 09:30:41 +0900719 cache = dso_cache__find(dso, offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200720 if (cache)
721 return dso_cache__memcpy(cache, offset, data, size);
722 else
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900723 return dso_cache__read(dso, machine, offset, data, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200724}
725
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200726/*
727 * Reads and caches dso data DSO__DATA_CACHE_SIZE size chunks
728 * in the rb_tree. Any read to already cached data is served
729 * by cached data.
730 */
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900731static ssize_t cached_read(struct dso *dso, struct machine *machine,
732 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200733{
734 ssize_t r = 0;
735 u8 *p = data;
736
737 do {
738 ssize_t ret;
739
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900740 ret = dso_cache_read(dso, machine, offset, p, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200741 if (ret < 0)
742 return ret;
743
744 /* Reached EOF, return what we have. */
745 if (!ret)
746 break;
747
748 BUG_ON(ret > size);
749
750 r += ret;
751 p += ret;
752 offset += ret;
753 size -= ret;
754
755 } while (size);
756
757 return r;
758}
759
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900760static int data_file_size(struct dso *dso, struct machine *machine)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200761{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900762 int ret = 0;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200763 struct stat st;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000764 char sbuf[STRERR_BUFSIZE];
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200765
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900766 if (dso->data.file_size)
767 return 0;
768
Namhyung Kim71ff8242015-05-21 01:03:39 +0900769 if (dso->data.status == DSO_DATA_STATUS_ERROR)
770 return -1;
771
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900772 pthread_mutex_lock(&dso__data_open_lock);
773
774 /*
775 * dso->data.fd might be closed if other thread opened another
776 * file (dso) due to open file limit (RLIMIT_NOFILE).
777 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900778 try_to_open_dso(dso, machine);
779
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900780 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900781 ret = -errno;
782 dso->data.status = DSO_DATA_STATUS_ERROR;
783 goto out;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200784 }
785
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900786 if (fstat(dso->data.fd, &st) < 0) {
787 ret = -errno;
788 pr_err("dso cache fstat failed: %s\n",
789 strerror_r(errno, sbuf, sizeof(sbuf)));
790 dso->data.status = DSO_DATA_STATUS_ERROR;
791 goto out;
792 }
793 dso->data.file_size = st.st_size;
794
795out:
796 pthread_mutex_unlock(&dso__data_open_lock);
797 return ret;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200798}
799
Adrian Hunter6d363452014-07-22 16:17:35 +0300800/**
801 * dso__data_size - Return dso data size
802 * @dso: dso object
803 * @machine: machine object
804 *
805 * Return: dso data size
806 */
807off_t dso__data_size(struct dso *dso, struct machine *machine)
808{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900809 if (data_file_size(dso, machine))
Adrian Hunter6d363452014-07-22 16:17:35 +0300810 return -1;
811
812 /* For now just estimate dso data size is close to file size */
813 return dso->data.file_size;
814}
815
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900816static ssize_t data_read_offset(struct dso *dso, struct machine *machine,
817 u64 offset, u8 *data, ssize_t size)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200818{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900819 if (data_file_size(dso, machine))
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200820 return -1;
821
822 /* Check the offset sanity. */
823 if (offset > dso->data.file_size)
824 return -1;
825
826 if (offset + size < offset)
827 return -1;
828
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900829 return cached_read(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200830}
831
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200832/**
833 * dso__data_read_offset - Read data from dso file offset
834 * @dso: dso object
835 * @machine: machine object
836 * @offset: file offset
837 * @data: buffer to store data
838 * @size: size of the @data buffer
839 *
840 * External interface to read data from dso file offset. Open
841 * dso data file and use cached_read to get the data.
842 */
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200843ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
844 u64 offset, u8 *data, ssize_t size)
845{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900846 if (dso->data.status == DSO_DATA_STATUS_ERROR)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200847 return -1;
848
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900849 return data_read_offset(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200850}
851
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200852/**
853 * dso__data_read_addr - Read data from dso address
854 * @dso: dso object
855 * @machine: machine object
856 * @add: virtual memory address
857 * @data: buffer to store data
858 * @size: size of the @data buffer
859 *
860 * External interface to read data from dso address.
861 */
Jiri Olsacdd059d2012-10-27 23:18:32 +0200862ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
863 struct machine *machine, u64 addr,
864 u8 *data, ssize_t size)
865{
866 u64 offset = map->map_ip(map, addr);
867 return dso__data_read_offset(dso, machine, offset, data, size);
868}
869
870struct map *dso__new_map(const char *name)
871{
872 struct map *map = NULL;
873 struct dso *dso = dso__new(name);
874
875 if (dso)
876 map = map__new2(0, dso, MAP__FUNCTION);
877
878 return map;
879}
880
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300881struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
882 const char *short_name, int dso_type)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200883{
884 /*
885 * The kernel dso could be created by build_id processing.
886 */
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -0300887 struct dso *dso = machine__findnew_dso(machine, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200888
889 /*
890 * We need to run this in all cases, since during the build_id
891 * processing we had no idea this was the kernel dso.
892 */
893 if (dso != NULL) {
Adrian Hunter58a98c92013-12-10 11:11:46 -0300894 dso__set_short_name(dso, short_name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200895 dso->kernel = dso_type;
896 }
897
898 return dso;
899}
900
Waiman Long4598a0a2014-09-30 13:36:15 -0400901/*
902 * Find a matching entry and/or link current entry to RB tree.
903 * Either one of the dso or name parameter must be non-NULL or the
904 * function will not work.
905 */
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300906static struct dso *__dso__findlink_by_longname(struct rb_root *root,
907 struct dso *dso, const char *name)
Waiman Long4598a0a2014-09-30 13:36:15 -0400908{
909 struct rb_node **p = &root->rb_node;
910 struct rb_node *parent = NULL;
911
912 if (!name)
913 name = dso->long_name;
914 /*
915 * Find node with the matching name
916 */
917 while (*p) {
918 struct dso *this = rb_entry(*p, struct dso, rb_node);
919 int rc = strcmp(name, this->long_name);
920
921 parent = *p;
922 if (rc == 0) {
923 /*
924 * In case the new DSO is a duplicate of an existing
925 * one, print an one-time warning & put the new entry
926 * at the end of the list of duplicates.
927 */
928 if (!dso || (dso == this))
929 return this; /* Find matching dso */
930 /*
931 * The core kernel DSOs may have duplicated long name.
932 * In this case, the short name should be different.
933 * Comparing the short names to differentiate the DSOs.
934 */
935 rc = strcmp(dso->short_name, this->short_name);
936 if (rc == 0) {
937 pr_err("Duplicated dso name: %s\n", name);
938 return NULL;
939 }
940 }
941 if (rc < 0)
942 p = &parent->rb_left;
943 else
944 p = &parent->rb_right;
945 }
946 if (dso) {
947 /* Add new node and rebalance tree */
948 rb_link_node(&dso->rb_node, parent, p);
949 rb_insert_color(&dso->rb_node, root);
Adrian Huntere266a752015-11-13 11:48:30 +0200950 dso->root = root;
Waiman Long4598a0a2014-09-30 13:36:15 -0400951 }
952 return NULL;
953}
954
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300955static inline struct dso *__dso__find_by_longname(struct rb_root *root,
956 const char *name)
Waiman Long4598a0a2014-09-30 13:36:15 -0400957{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300958 return __dso__findlink_by_longname(root, NULL, name);
Waiman Long4598a0a2014-09-30 13:36:15 -0400959}
960
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300961void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200962{
Adrian Huntere266a752015-11-13 11:48:30 +0200963 struct rb_root *root = dso->root;
964
Jiri Olsacdd059d2012-10-27 23:18:32 +0200965 if (name == NULL)
966 return;
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300967
968 if (dso->long_name_allocated)
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300969 free((char *)dso->long_name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300970
Adrian Huntere266a752015-11-13 11:48:30 +0200971 if (root) {
972 rb_erase(&dso->rb_node, root);
973 /*
974 * __dso__findlink_by_longname() isn't guaranteed to add it
975 * back, so a clean removal is required here.
976 */
977 RB_CLEAR_NODE(&dso->rb_node);
978 dso->root = NULL;
979 }
980
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -0300981 dso->long_name = name;
982 dso->long_name_len = strlen(name);
983 dso->long_name_allocated = name_allocated;
Adrian Huntere266a752015-11-13 11:48:30 +0200984
985 if (root)
986 __dso__findlink_by_longname(root, dso, NULL);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200987}
988
Adrian Hunter58a98c92013-12-10 11:11:46 -0300989void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200990{
991 if (name == NULL)
992 return;
Adrian Hunter58a98c92013-12-10 11:11:46 -0300993
994 if (dso->short_name_allocated)
995 free((char *)dso->short_name);
996
997 dso->short_name = name;
998 dso->short_name_len = strlen(name);
999 dso->short_name_allocated = name_allocated;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001000}
1001
1002static void dso__set_basename(struct dso *dso)
1003{
Stephane Eranianac5e7f82013-12-05 19:26:42 +01001004 /*
1005 * basename() may modify path buffer, so we must pass
1006 * a copy.
1007 */
1008 char *base, *lname = strdup(dso->long_name);
1009
1010 if (!lname)
1011 return;
1012
1013 /*
1014 * basename() may return a pointer to internal
1015 * storage which is reused in subsequent calls
1016 * so copy the result.
1017 */
1018 base = strdup(basename(lname));
1019
1020 free(lname);
1021
1022 if (!base)
1023 return;
1024
1025 dso__set_short_name(dso, base, true);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001026}
1027
1028int dso__name_len(const struct dso *dso)
1029{
1030 if (!dso)
1031 return strlen("[unknown]");
1032 if (verbose)
1033 return dso->long_name_len;
1034
1035 return dso->short_name_len;
1036}
1037
1038bool dso__loaded(const struct dso *dso, enum map_type type)
1039{
1040 return dso->loaded & (1 << type);
1041}
1042
1043bool dso__sorted_by_name(const struct dso *dso, enum map_type type)
1044{
1045 return dso->sorted_by_name & (1 << type);
1046}
1047
1048void dso__set_sorted_by_name(struct dso *dso, enum map_type type)
1049{
1050 dso->sorted_by_name |= (1 << type);
1051}
1052
1053struct dso *dso__new(const char *name)
1054{
1055 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1);
1056
1057 if (dso != NULL) {
1058 int i;
1059 strcpy(dso->name, name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001060 dso__set_long_name(dso, dso->name, false);
Adrian Hunter58a98c92013-12-10 11:11:46 -03001061 dso__set_short_name(dso, dso->name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001062 for (i = 0; i < MAP__NR_TYPES; ++i)
1063 dso->symbols[i] = dso->symbol_names[i] = RB_ROOT;
Jiri Olsaca40e2a2014-05-07 18:30:45 +02001064 dso->data.cache = RB_ROOT;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +02001065 dso->data.fd = -1;
Adrian Hunterc27697d2014-07-22 16:17:18 +03001066 dso->data.status = DSO_DATA_STATUS_UNKNOWN;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001067 dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -03001068 dso->binary_type = DSO_BINARY_TYPE__NOT_FOUND;
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +03001069 dso->is_64_bit = (sizeof(void *) == 8);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001070 dso->loaded = 0;
Adrian Hunter0131c4e2013-08-07 14:38:50 +03001071 dso->rel = 0;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001072 dso->sorted_by_name = 0;
1073 dso->has_build_id = 0;
Namhyung Kim2cc9d0e2013-09-11 14:09:31 +09001074 dso->has_srcline = 1;
Adrian Hunter906049c82013-12-03 09:23:10 +02001075 dso->a2l_fails = 1;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001076 dso->kernel = DSO_TYPE_USER;
1077 dso->needs_swap = DSO_SWAP__UNSET;
Waiman Long4598a0a2014-09-30 13:36:15 -04001078 RB_CLEAR_NODE(&dso->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +02001079 dso->root = NULL;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001080 INIT_LIST_HEAD(&dso->node);
Jiri Olsaeba51022014-04-30 15:00:59 +02001081 INIT_LIST_HEAD(&dso->data.open_entry);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001082 pthread_mutex_init(&dso->lock, NULL);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001083 atomic_set(&dso->refcnt, 1);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001084 }
1085
1086 return dso;
1087}
1088
1089void dso__delete(struct dso *dso)
1090{
1091 int i;
Waiman Long4598a0a2014-09-30 13:36:15 -04001092
1093 if (!RB_EMPTY_NODE(&dso->rb_node))
1094 pr_err("DSO %s is still in rbtree when being deleted!\n",
1095 dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001096 for (i = 0; i < MAP__NR_TYPES; ++i)
1097 symbols__delete(&dso->symbols[i]);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001098
1099 if (dso->short_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001100 zfree((char **)&dso->short_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001101 dso->short_name_allocated = false;
1102 }
1103
1104 if (dso->long_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001105 zfree((char **)&dso->long_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001106 dso->long_name_allocated = false;
1107 }
1108
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +02001109 dso__data_close(dso);
Adrian Huntercfe91742015-04-09 18:53:55 +03001110 auxtrace_cache__free(dso->auxtrace_cache);
Namhyung Kim8e67b722015-05-18 09:30:41 +09001111 dso_cache__free(dso);
Adrian Hunter454ff002013-12-03 09:23:07 +02001112 dso__free_a2l(dso);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001113 zfree(&dso->symsrc_filename);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001114 pthread_mutex_destroy(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001115 free(dso);
1116}
1117
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001118struct dso *dso__get(struct dso *dso)
1119{
1120 if (dso)
1121 atomic_inc(&dso->refcnt);
1122 return dso;
1123}
1124
1125void dso__put(struct dso *dso)
1126{
1127 if (dso && atomic_dec_and_test(&dso->refcnt))
1128 dso__delete(dso);
1129}
1130
Jiri Olsacdd059d2012-10-27 23:18:32 +02001131void dso__set_build_id(struct dso *dso, void *build_id)
1132{
1133 memcpy(dso->build_id, build_id, sizeof(dso->build_id));
1134 dso->has_build_id = 1;
1135}
1136
1137bool dso__build_id_equal(const struct dso *dso, u8 *build_id)
1138{
1139 return memcmp(dso->build_id, build_id, sizeof(dso->build_id)) == 0;
1140}
1141
1142void dso__read_running_kernel_build_id(struct dso *dso, struct machine *machine)
1143{
1144 char path[PATH_MAX];
1145
1146 if (machine__is_default_guest(machine))
1147 return;
1148 sprintf(path, "%s/sys/kernel/notes", machine->root_dir);
1149 if (sysfs__read_build_id(path, dso->build_id,
1150 sizeof(dso->build_id)) == 0)
1151 dso->has_build_id = true;
1152}
1153
1154int dso__kernel_module_get_build_id(struct dso *dso,
1155 const char *root_dir)
1156{
1157 char filename[PATH_MAX];
1158 /*
1159 * kernel module short names are of the form "[module]" and
1160 * we need just "module" here.
1161 */
1162 const char *name = dso->short_name + 1;
1163
1164 snprintf(filename, sizeof(filename),
1165 "%s/sys/module/%.*s/notes/.note.gnu.build-id",
1166 root_dir, (int)strlen(name) - 1, name);
1167
1168 if (sysfs__read_build_id(filename, dso->build_id,
1169 sizeof(dso->build_id)) == 0)
1170 dso->has_build_id = true;
1171
1172 return 0;
1173}
1174
1175bool __dsos__read_build_ids(struct list_head *head, bool with_hits)
1176{
1177 bool have_build_id = false;
1178 struct dso *pos;
1179
1180 list_for_each_entry(pos, head, node) {
He Kuang6ae98ba2016-05-12 08:43:11 +00001181 if (with_hits && !pos->hit && !dso__is_vdso(pos))
Jiri Olsacdd059d2012-10-27 23:18:32 +02001182 continue;
1183 if (pos->has_build_id) {
1184 have_build_id = true;
1185 continue;
1186 }
1187 if (filename__read_build_id(pos->long_name, pos->build_id,
1188 sizeof(pos->build_id)) > 0) {
1189 have_build_id = true;
1190 pos->has_build_id = true;
1191 }
1192 }
1193
1194 return have_build_id;
1195}
1196
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001197void __dsos__add(struct dsos *dsos, struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001198{
Waiman Long8fa7d872014-09-29 16:07:28 -04001199 list_add_tail(&dso->node, &dsos->head);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001200 __dso__findlink_by_longname(&dsos->root, dso, NULL);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001201 /*
1202 * It is now in the linked list, grab a reference, then garbage collect
1203 * this when needing memory, by looking at LRU dso instances in the
1204 * list with atomic_read(&dso->refcnt) == 1, i.e. no references
1205 * anywhere besides the one for the list, do, under a lock for the
1206 * list: remove it from the list, then a dso__put(), that probably will
1207 * be the last and will then call dso__delete(), end of life.
1208 *
1209 * That, or at the end of the 'struct machine' lifetime, when all
1210 * 'struct dso' instances will be removed from the list, in
1211 * dsos__exit(), if they have no other reference from some other data
1212 * structure.
1213 *
1214 * E.g.: after processing a 'perf.data' file and storing references
1215 * to objects instantiated while processing events, we will have
1216 * references to the 'thread', 'map', 'dso' structs all from 'struct
1217 * hist_entry' instances, but we may not need anything not referenced,
1218 * so we might as well call machines__exit()/machines__delete() and
1219 * garbage collect it.
1220 */
1221 dso__get(dso);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001222}
1223
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001224void dsos__add(struct dsos *dsos, struct dso *dso)
1225{
1226 pthread_rwlock_wrlock(&dsos->lock);
1227 __dsos__add(dsos, dso);
1228 pthread_rwlock_unlock(&dsos->lock);
1229}
1230
1231struct dso *__dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001232{
1233 struct dso *pos;
1234
Waiman Longf9ceffb2013-05-09 10:42:48 -04001235 if (cmp_short) {
Waiman Long8fa7d872014-09-29 16:07:28 -04001236 list_for_each_entry(pos, &dsos->head, node)
Waiman Longf9ceffb2013-05-09 10:42:48 -04001237 if (strcmp(pos->short_name, name) == 0)
1238 return pos;
1239 return NULL;
1240 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001241 return __dso__find_by_longname(&dsos->root, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001242}
1243
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001244struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
1245{
1246 struct dso *dso;
1247 pthread_rwlock_rdlock(&dsos->lock);
1248 dso = __dsos__find(dsos, name, cmp_short);
1249 pthread_rwlock_unlock(&dsos->lock);
1250 return dso;
1251}
1252
1253struct dso *__dsos__addnew(struct dsos *dsos, const char *name)
Jiri Olsa701d8d72015-02-12 22:06:09 +01001254{
1255 struct dso *dso = dso__new(name);
1256
1257 if (dso != NULL) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001258 __dsos__add(dsos, dso);
Jiri Olsa701d8d72015-02-12 22:06:09 +01001259 dso__set_basename(dso);
Masami Hiramatsu82de26a2015-11-18 15:40:31 +09001260 /* Put dso here because __dsos_add already got it */
1261 dso__put(dso);
Jiri Olsa701d8d72015-02-12 22:06:09 +01001262 }
1263 return dso;
1264}
1265
Waiman Long8fa7d872014-09-29 16:07:28 -04001266struct dso *__dsos__findnew(struct dsos *dsos, const char *name)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001267{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001268 struct dso *dso = __dsos__find(dsos, name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001269
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001270 return dso ? dso : __dsos__addnew(dsos, name);
1271}
1272
1273struct dso *dsos__findnew(struct dsos *dsos, const char *name)
1274{
1275 struct dso *dso;
1276 pthread_rwlock_wrlock(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001277 dso = dso__get(__dsos__findnew(dsos, name));
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001278 pthread_rwlock_unlock(&dsos->lock);
1279 return dso;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001280}
1281
1282size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001283 bool (skip)(struct dso *dso, int parm), int parm)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001284{
1285 struct dso *pos;
1286 size_t ret = 0;
1287
1288 list_for_each_entry(pos, head, node) {
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001289 if (skip && skip(pos, parm))
Jiri Olsacdd059d2012-10-27 23:18:32 +02001290 continue;
1291 ret += dso__fprintf_buildid(pos, fp);
1292 ret += fprintf(fp, " %s\n", pos->long_name);
1293 }
1294 return ret;
1295}
1296
1297size_t __dsos__fprintf(struct list_head *head, FILE *fp)
1298{
1299 struct dso *pos;
1300 size_t ret = 0;
1301
1302 list_for_each_entry(pos, head, node) {
1303 int i;
1304 for (i = 0; i < MAP__NR_TYPES; ++i)
1305 ret += dso__fprintf(pos, i, fp);
1306 }
1307
1308 return ret;
1309}
1310
1311size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
1312{
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09001313 char sbuild_id[SBUILD_ID_SIZE];
Jiri Olsacdd059d2012-10-27 23:18:32 +02001314
1315 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
1316 return fprintf(fp, "%s", sbuild_id);
1317}
1318
1319size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp)
1320{
1321 struct rb_node *nd;
1322 size_t ret = fprintf(fp, "dso: %s (", dso->short_name);
1323
1324 if (dso->short_name != dso->long_name)
1325 ret += fprintf(fp, "%s, ", dso->long_name);
1326 ret += fprintf(fp, "%s, %sloaded, ", map_type__name[type],
Stephane Eranian919d5902012-11-20 10:51:02 +01001327 dso__loaded(dso, type) ? "" : "NOT ");
Jiri Olsacdd059d2012-10-27 23:18:32 +02001328 ret += dso__fprintf_buildid(dso, fp);
1329 ret += fprintf(fp, ")\n");
1330 for (nd = rb_first(&dso->symbols[type]); nd; nd = rb_next(nd)) {
1331 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
1332 ret += symbol__fprintf(pos, fp);
1333 }
1334
1335 return ret;
1336}
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001337
1338enum dso_type dso__type(struct dso *dso, struct machine *machine)
1339{
1340 int fd;
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001341 enum dso_type type = DSO__TYPE_UNKNOWN;
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001342
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001343 fd = dso__data_get_fd(dso, machine);
1344 if (fd >= 0) {
1345 type = dso__type_fd(fd);
1346 dso__data_put_fd(dso);
1347 }
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001348
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001349 return type;
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001350}
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -03001351
1352int dso__strerror_load(struct dso *dso, char *buf, size_t buflen)
1353{
1354 int idx, errnum = dso->load_errno;
1355 /*
1356 * This must have a same ordering as the enum dso_load_errno.
1357 */
1358 static const char *dso_load__error_str[] = {
1359 "Internal tools/perf/ library error",
1360 "Invalid ELF file",
1361 "Can not read build id",
1362 "Mismatching build id",
1363 "Decompression failure",
1364 };
1365
1366 BUG_ON(buflen == 0);
1367
1368 if (errnum >= 0) {
1369 const char *err = strerror_r(errnum, buf, buflen);
1370
1371 if (err != buf)
1372 scnprintf(buf, buflen, "%s", err);
1373
1374 return 0;
1375 }
1376
1377 if (errnum < __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END)
1378 return -1;
1379
1380 idx = errnum - __DSO_LOAD_ERRNO__START;
1381 scnprintf(buf, buflen, "%s", dso_load__error_str[idx]);
1382 return 0;
1383}