blob: cbfe17f5168ab5ee7ea3837b9e2ac8a4f5529e30 [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 Meloa43783a2017-04-18 10:46:11 -03005#include <errno.h>
Arnaldo Carvalho de Melo9a3993d2017-04-18 11:33:48 -03006#include "path.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +02007#include "symbol.h"
8#include "dso.h"
Arnaldo Carvalho de Melo69d25912012-11-09 11:32:52 -03009#include "machine.h"
Adrian Huntercfe91742015-04-09 18:53:55 +030010#include "auxtrace.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +020011#include "util.h"
12#include "debug.h"
Arnaldo Carvalho de Meloa0675582017-04-17 16:51:59 -030013#include "string2.h"
He Kuang6ae98ba2016-05-12 08:43:11 +000014#include "vdso.h"
Jiri Olsacdd059d2012-10-27 23:18:32 +020015
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010016static const char * const debuglink_paths[] = {
17 "%.0s%s",
18 "%s/%s",
19 "%s/.debug/%s",
20 "/usr/lib/debug%s/%s"
21};
22
Jiri Olsacdd059d2012-10-27 23:18:32 +020023char dso__symtab_origin(const struct dso *dso)
24{
25 static const char origin[] = {
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020026 [DSO_BINARY_TYPE__KALLSYMS] = 'k',
27 [DSO_BINARY_TYPE__VMLINUX] = 'v',
28 [DSO_BINARY_TYPE__JAVA_JIT] = 'j',
29 [DSO_BINARY_TYPE__DEBUGLINK] = 'l',
30 [DSO_BINARY_TYPE__BUILD_ID_CACHE] = 'B',
31 [DSO_BINARY_TYPE__FEDORA_DEBUGINFO] = 'f',
32 [DSO_BINARY_TYPE__UBUNTU_DEBUGINFO] = 'u',
33 [DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO] = 'o',
34 [DSO_BINARY_TYPE__BUILDID_DEBUGINFO] = 'b',
35 [DSO_BINARY_TYPE__SYSTEM_PATH_DSO] = 'd',
36 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE] = 'K',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090037 [DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP] = 'm',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020038 [DSO_BINARY_TYPE__GUEST_KALLSYMS] = 'g',
39 [DSO_BINARY_TYPE__GUEST_KMODULE] = 'G',
Namhyung Kimc00c48f2014-11-04 10:14:27 +090040 [DSO_BINARY_TYPE__GUEST_KMODULE_COMP] = 'M',
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +020041 [DSO_BINARY_TYPE__GUEST_VMLINUX] = 'V',
Jiri Olsacdd059d2012-10-27 23:18:32 +020042 };
43
44 if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
45 return '!';
46 return origin[dso->symtab_type];
47}
48
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -030049int dso__read_binary_type_filename(const struct dso *dso,
50 enum dso_binary_type type,
51 char *root_dir, char *filename, size_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +020052{
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +090053 char build_id_hex[SBUILD_ID_SIZE];
Jiri Olsacdd059d2012-10-27 23:18:32 +020054 int ret = 0;
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -030055 size_t len;
Jiri Olsacdd059d2012-10-27 23:18:32 +020056
57 switch (type) {
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010058 case DSO_BINARY_TYPE__DEBUGLINK:
59 {
60 const char *last_slash;
61 char dso_dir[PATH_MAX];
62 char symfile[PATH_MAX];
63 unsigned int i;
Jiri Olsacdd059d2012-10-27 23:18:32 +020064
Victor Kamenskydc6254c2015-01-26 22:34:02 -080065 len = __symbol__join_symfs(filename, size, dso->long_name);
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010066 last_slash = filename + len;
67 while (last_slash != filename && *last_slash != '/')
68 last_slash--;
Jiri Olsa40356722016-01-20 12:56:32 +010069
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010070 strncpy(dso_dir, filename, last_slash - filename);
71 dso_dir[last_slash-filename] = '\0';
72
73 if (!is_regular_file(filename)) {
74 ret = -1;
75 break;
76 }
77
78 ret = filename__read_debuglink(filename, symfile, PATH_MAX);
79 if (ret)
Jiri Olsa40356722016-01-20 12:56:32 +010080 break;
81
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010082 /* Check predefined locations where debug file might reside */
83 ret = -1;
84 for (i = 0; i < ARRAY_SIZE(debuglink_paths); i++) {
85 snprintf(filename, size,
86 debuglink_paths[i], dso_dir, symfile);
87 if (is_regular_file(filename)) {
88 ret = 0;
89 break;
90 }
Jiri Olsacdd059d2012-10-27 23:18:32 +020091 }
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010092
Jiri Olsacdd059d2012-10-27 23:18:32 +020093 break;
Matija Glavinic Pecotic9343e452017-01-17 15:50:35 +010094 }
Jiri Olsacdd059d2012-10-27 23:18:32 +020095 case DSO_BINARY_TYPE__BUILD_ID_CACHE:
He Kuanga7066702016-05-19 11:47:37 +000096 if (dso__build_id_filename(dso, filename, size) == NULL)
Jiri Olsacdd059d2012-10-27 23:18:32 +020097 ret = -1;
98 break;
99
100 case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300101 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
102 snprintf(filename + len, size - len, "%s.debug", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200103 break;
104
105 case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300106 len = __symbol__join_symfs(filename, size, "/usr/lib/debug");
107 snprintf(filename + len, size - len, "%s", dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200108 break;
109
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200110 case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
111 {
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300112 const char *last_slash;
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200113 size_t dir_size;
114
115 last_slash = dso->long_name + dso->long_name_len;
116 while (last_slash != dso->long_name && *last_slash != '/')
117 last_slash--;
118
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300119 len = __symbol__join_symfs(filename, size, "");
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200120 dir_size = last_slash - dso->long_name + 2;
121 if (dir_size > (size - len)) {
122 ret = -1;
123 break;
124 }
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -0300125 len += scnprintf(filename + len, dir_size, "%s", dso->long_name);
126 len += scnprintf(filename + len , size - len, ".debug%s",
Ricardo Ribalda Delgado9cd00942013-09-18 15:56:14 +0200127 last_slash);
128 break;
129 }
130
Jiri Olsacdd059d2012-10-27 23:18:32 +0200131 case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
132 if (!dso->has_build_id) {
133 ret = -1;
134 break;
135 }
136
137 build_id__sprintf(dso->build_id,
138 sizeof(dso->build_id),
139 build_id_hex);
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300140 len = __symbol__join_symfs(filename, size, "/usr/lib/debug/.build-id/");
141 snprintf(filename + len, size - len, "%.2s/%s.debug",
142 build_id_hex, build_id_hex + 2);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200143 break;
144
Adrian Hunter39b12f782013-08-07 14:38:47 +0300145 case DSO_BINARY_TYPE__VMLINUX:
146 case DSO_BINARY_TYPE__GUEST_VMLINUX:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200147 case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300148 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200149 break;
150
151 case DSO_BINARY_TYPE__GUEST_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900152 case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300153 path__join3(filename, size, symbol_conf.symfs,
154 root_dir, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200155 break;
156
157 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900158 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
Arnaldo Carvalho de Melo972f3932014-07-29 10:21:58 -0300159 __symbol__join_symfs(filename, size, dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200160 break;
161
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300162 case DSO_BINARY_TYPE__KCORE:
163 case DSO_BINARY_TYPE__GUEST_KCORE:
Arnaldo Carvalho de Melo7d2a5122013-12-10 16:02:50 -0300164 snprintf(filename, size, "%s", dso->long_name);
Adrian Hunter8e0cf962013-08-07 14:38:51 +0300165 break;
166
Jiri Olsacdd059d2012-10-27 23:18:32 +0200167 default:
168 case DSO_BINARY_TYPE__KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200169 case DSO_BINARY_TYPE__GUEST_KALLSYMS:
Jiri Olsacdd059d2012-10-27 23:18:32 +0200170 case DSO_BINARY_TYPE__JAVA_JIT:
171 case DSO_BINARY_TYPE__NOT_FOUND:
172 ret = -1;
173 break;
174 }
175
176 return ret;
177}
178
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900179static const struct {
180 const char *fmt;
181 int (*decompress)(const char *input, int output);
182} compressions[] = {
Namhyung Kime92ce122014-10-31 16:51:38 +0900183#ifdef HAVE_ZLIB_SUPPORT
184 { "gz", gzip_decompress_to_file },
185#endif
Jiri Olsa80a32e5b2015-01-29 13:29:39 +0100186#ifdef HAVE_LZMA_SUPPORT
187 { "xz", lzma_decompress_to_file },
188#endif
Namhyung Kime92ce122014-10-31 16:51:38 +0900189 { NULL, NULL },
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900190};
191
192bool is_supported_compression(const char *ext)
193{
194 unsigned i;
195
196 for (i = 0; compressions[i].fmt; i++) {
197 if (!strcmp(ext, compressions[i].fmt))
198 return true;
199 }
200 return false;
201}
202
Wang Nan1f121b02015-06-03 08:52:21 +0000203bool is_kernel_module(const char *pathname, int cpumode)
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900204{
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100205 struct kmod_path m;
Wang Nan1f121b02015-06-03 08:52:21 +0000206 int mode = cpumode & PERF_RECORD_MISC_CPUMODE_MASK;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900207
Wang Nan1f121b02015-06-03 08:52:21 +0000208 WARN_ONCE(mode != cpumode,
209 "Internal error: passing unmasked cpumode (%x) to is_kernel_module",
210 cpumode);
211
212 switch (mode) {
213 case PERF_RECORD_MISC_USER:
214 case PERF_RECORD_MISC_HYPERVISOR:
215 case PERF_RECORD_MISC_GUEST_USER:
216 return false;
217 /* Treat PERF_RECORD_MISC_CPUMODE_UNKNOWN as kernel */
218 default:
219 if (kmod_path__parse(&m, pathname)) {
220 pr_err("Failed to check whether %s is a kernel module or not. Assume it is.",
221 pathname);
222 return true;
223 }
224 }
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900225
Jiri Olsa8dee9ff112015-02-12 15:56:21 +0100226 return m.kmod;
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900227}
228
229bool decompress_to_file(const char *ext, const char *filename, int output_fd)
230{
231 unsigned i;
232
233 for (i = 0; compressions[i].fmt; i++) {
234 if (!strcmp(ext, compressions[i].fmt))
235 return !compressions[i].decompress(filename,
236 output_fd);
237 }
238 return false;
239}
240
241bool dso__needs_decompress(struct dso *dso)
242{
243 return dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP ||
244 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
245}
246
Jiri Olsaeba51022014-04-30 15:00:59 +0200247/*
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100248 * Parses kernel module specified in @path and updates
249 * @m argument like:
250 *
251 * @comp - true if @path contains supported compression suffix,
252 * false otherwise
253 * @kmod - true if @path contains '.ko' suffix in right position,
254 * false otherwise
255 * @name - if (@alloc_name && @kmod) is true, it contains strdup-ed base name
256 * of the kernel module without suffixes, otherwise strudup-ed
257 * base name of @path
258 * @ext - if (@alloc_ext && @comp) is true, it contains strdup-ed string
259 * the compression suffix
260 *
261 * Returns 0 if there's no strdup error, -ENOMEM otherwise.
262 */
263int __kmod_path__parse(struct kmod_path *m, const char *path,
264 bool alloc_name, bool alloc_ext)
265{
266 const char *name = strrchr(path, '/');
267 const char *ext = strrchr(path, '.');
Wang Nan1f121b02015-06-03 08:52:21 +0000268 bool is_simple_name = false;
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100269
270 memset(m, 0x0, sizeof(*m));
271 name = name ? name + 1 : path;
272
Wang Nan1f121b02015-06-03 08:52:21 +0000273 /*
274 * '.' is also a valid character for module name. For example:
275 * [aaa.bbb] is a valid module name. '[' should have higher
276 * priority than '.ko' suffix.
277 *
278 * The kernel names are from machine__mmap_name. Such
279 * name should belong to kernel itself, not kernel module.
280 */
281 if (name[0] == '[') {
282 is_simple_name = true;
283 if ((strncmp(name, "[kernel.kallsyms]", 17) == 0) ||
284 (strncmp(name, "[guest.kernel.kallsyms", 22) == 0) ||
285 (strncmp(name, "[vdso]", 6) == 0) ||
286 (strncmp(name, "[vsyscall]", 10) == 0)) {
287 m->kmod = false;
288
289 } else
290 m->kmod = true;
291 }
292
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100293 /* No extension, just return name. */
Wang Nan1f121b02015-06-03 08:52:21 +0000294 if ((ext == NULL) || is_simple_name) {
Jiri Olsa3c8a67f2015-02-05 15:40:25 +0100295 if (alloc_name) {
296 m->name = strdup(name);
297 return m->name ? 0 : -ENOMEM;
298 }
299 return 0;
300 }
301
302 if (is_supported_compression(ext + 1)) {
303 m->comp = true;
304 ext -= 3;
305 }
306
307 /* Check .ko extension only if there's enough name left. */
308 if (ext > name)
309 m->kmod = !strncmp(ext, ".ko", 3);
310
311 if (alloc_name) {
312 if (m->kmod) {
313 if (asprintf(&m->name, "[%.*s]", (int) (ext - name), name) == -1)
314 return -ENOMEM;
315 } else {
316 if (asprintf(&m->name, "%s", name) == -1)
317 return -ENOMEM;
318 }
319
320 strxfrchar(m->name, '-', '_');
321 }
322
323 if (alloc_ext && m->comp) {
324 m->ext = strdup(ext + 4);
325 if (!m->ext) {
326 free((void *) m->name);
327 return -ENOMEM;
328 }
329 }
330
331 return 0;
332}
333
334/*
Jiri Olsabda6ee42014-04-30 15:25:10 +0200335 * Global list of open DSOs and the counter.
Jiri Olsaeba51022014-04-30 15:00:59 +0200336 */
337static LIST_HEAD(dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200338static long dso__data_open_cnt;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900339static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
Jiri Olsaeba51022014-04-30 15:00:59 +0200340
341static void dso__list_add(struct dso *dso)
342{
343 list_add_tail(&dso->data.open_entry, &dso__data_open);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200344 dso__data_open_cnt++;
Jiri Olsaeba51022014-04-30 15:00:59 +0200345}
346
347static void dso__list_del(struct dso *dso)
348{
349 list_del(&dso->data.open_entry);
Jiri Olsabda6ee42014-04-30 15:25:10 +0200350 WARN_ONCE(dso__data_open_cnt <= 0,
351 "DSO data fd counter out of bounds.");
352 dso__data_open_cnt--;
Jiri Olsaeba51022014-04-30 15:00:59 +0200353}
354
Jiri Olsaa08cae02014-05-07 21:35:02 +0200355static void close_first_dso(void);
356
357static int do_open(char *name)
358{
359 int fd;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000360 char sbuf[STRERR_BUFSIZE];
Jiri Olsaa08cae02014-05-07 21:35:02 +0200361
362 do {
363 fd = open(name, O_RDONLY);
364 if (fd >= 0)
365 return fd;
366
Namhyung Kima3c0cc22015-01-30 11:33:29 +0900367 pr_debug("dso open failed: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300368 str_error_r(errno, sbuf, sizeof(sbuf)));
Jiri Olsaa08cae02014-05-07 21:35:02 +0200369 if (!dso__data_open_cnt || errno != EMFILE)
370 break;
371
372 close_first_dso();
373 } while (1);
374
375 return -1;
376}
377
Jiri Olsaeba51022014-04-30 15:00:59 +0200378static int __open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200379{
Jiri Olsacdd059d2012-10-27 23:18:32 +0200380 int fd;
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300381 char *root_dir = (char *)"";
382 char *name = malloc(PATH_MAX);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200383
Jiri Olsacdd059d2012-10-27 23:18:32 +0200384 if (!name)
385 return -ENOMEM;
386
387 if (machine)
388 root_dir = machine->root_dir;
389
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300390 if (dso__read_binary_type_filename(dso, dso->binary_type,
Arnaldo Carvalho de Meloee4e9622013-12-16 17:03:18 -0300391 root_dir, name, PATH_MAX)) {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200392 free(name);
393 return -EINVAL;
394 }
395
Jiri Olsa3c028a02016-09-20 18:12:45 +0200396 if (!is_regular_file(name))
397 return -EINVAL;
398
Jiri Olsaa08cae02014-05-07 21:35:02 +0200399 fd = do_open(name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200400 free(name);
401 return fd;
402}
403
Jiri Olsac6580452014-04-30 15:47:27 +0200404static void check_data_close(void);
405
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200406/**
407 * dso_close - Open DSO data file
408 * @dso: dso object
409 *
410 * Open @dso's data file descriptor and updates
411 * list/count of open DSO objects.
412 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200413static int open_dso(struct dso *dso, struct machine *machine)
414{
415 int fd = __open_dso(dso, machine);
416
Adrian Huntera6f6ae92014-07-17 11:43:09 +0300417 if (fd >= 0) {
Jiri Olsaeba51022014-04-30 15:00:59 +0200418 dso__list_add(dso);
Jiri Olsac6580452014-04-30 15:47:27 +0200419 /*
420 * Check if we crossed the allowed number
421 * of opened DSOs and close one if needed.
422 */
423 check_data_close();
424 }
Jiri Olsaeba51022014-04-30 15:00:59 +0200425
426 return fd;
427}
428
429static void close_data_fd(struct dso *dso)
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200430{
431 if (dso->data.fd >= 0) {
432 close(dso->data.fd);
433 dso->data.fd = -1;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200434 dso->data.file_size = 0;
Jiri Olsaeba51022014-04-30 15:00:59 +0200435 dso__list_del(dso);
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200436 }
437}
438
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200439/**
440 * dso_close - Close DSO data file
441 * @dso: dso object
442 *
443 * Close @dso's data file descriptor and updates
444 * list/count of open DSO objects.
445 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200446static void close_dso(struct dso *dso)
447{
448 close_data_fd(dso);
449}
450
Jiri Olsac6580452014-04-30 15:47:27 +0200451static void close_first_dso(void)
452{
453 struct dso *dso;
454
455 dso = list_first_entry(&dso__data_open, struct dso, data.open_entry);
456 close_dso(dso);
457}
458
459static rlim_t get_fd_limit(void)
460{
461 struct rlimit l;
462 rlim_t limit = 0;
463
464 /* Allow half of the current open fd limit. */
465 if (getrlimit(RLIMIT_NOFILE, &l) == 0) {
466 if (l.rlim_cur == RLIM_INFINITY)
467 limit = l.rlim_cur;
468 else
469 limit = l.rlim_cur / 2;
470 } else {
471 pr_err("failed to get fd limit\n");
472 limit = 1;
473 }
474
475 return limit;
476}
477
Jiri Olsaf3069242016-06-28 13:29:02 +0200478static rlim_t fd_limit;
479
480/*
481 * Used only by tests/dso-data.c to reset the environment
482 * for tests. I dont expect we should change this during
483 * standard runtime.
484 */
485void reset_fd_limit(void)
486{
487 fd_limit = 0;
488}
489
Jiri Olsac6580452014-04-30 15:47:27 +0200490static bool may_cache_fd(void)
491{
Jiri Olsaf3069242016-06-28 13:29:02 +0200492 if (!fd_limit)
493 fd_limit = get_fd_limit();
Jiri Olsac6580452014-04-30 15:47:27 +0200494
Jiri Olsaf3069242016-06-28 13:29:02 +0200495 if (fd_limit == RLIM_INFINITY)
Jiri Olsac6580452014-04-30 15:47:27 +0200496 return true;
497
Jiri Olsaf3069242016-06-28 13:29:02 +0200498 return fd_limit > (rlim_t) dso__data_open_cnt;
Jiri Olsac6580452014-04-30 15:47:27 +0200499}
500
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200501/*
502 * Check and close LRU dso if we crossed allowed limit
503 * for opened dso file descriptors. The limit is half
504 * of the RLIMIT_NOFILE files opened.
505*/
Jiri Olsac6580452014-04-30 15:47:27 +0200506static void check_data_close(void)
507{
508 bool cache_fd = may_cache_fd();
509
510 if (!cache_fd)
511 close_first_dso();
512}
513
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200514/**
515 * dso__data_close - Close DSO data file
516 * @dso: dso object
517 *
518 * External interface to close @dso's data file descriptor.
519 */
Jiri Olsaeba51022014-04-30 15:00:59 +0200520void dso__data_close(struct dso *dso)
521{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900522 pthread_mutex_lock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200523 close_dso(dso);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900524 pthread_mutex_unlock(&dso__data_open_lock);
Jiri Olsaeba51022014-04-30 15:00:59 +0200525}
526
Namhyung Kim71ff8242015-05-21 01:03:39 +0900527static void try_to_open_dso(struct dso *dso, struct machine *machine)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200528{
Arnaldo Carvalho de Melo631d34b2013-12-16 16:57:43 -0300529 enum dso_binary_type binary_type_data[] = {
Jiri Olsacdd059d2012-10-27 23:18:32 +0200530 DSO_BINARY_TYPE__BUILD_ID_CACHE,
531 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
532 DSO_BINARY_TYPE__NOT_FOUND,
533 };
534 int i = 0;
535
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200536 if (dso->data.fd >= 0)
Namhyung Kim71ff8242015-05-21 01:03:39 +0900537 return;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200538
539 if (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND) {
540 dso->data.fd = open_dso(dso, machine);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300541 goto out;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +0200542 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200543
544 do {
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300545 dso->binary_type = binary_type_data[i++];
Jiri Olsacdd059d2012-10-27 23:18:32 +0200546
Adrian Hunterc27697d2014-07-22 16:17:18 +0300547 dso->data.fd = open_dso(dso, machine);
548 if (dso->data.fd >= 0)
549 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200550
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -0300551 } while (dso->binary_type != DSO_BINARY_TYPE__NOT_FOUND);
Adrian Hunterc27697d2014-07-22 16:17:18 +0300552out:
553 if (dso->data.fd >= 0)
554 dso->data.status = DSO_DATA_STATUS_OK;
555 else
556 dso->data.status = DSO_DATA_STATUS_ERROR;
Namhyung Kim71ff8242015-05-21 01:03:39 +0900557}
Jiri Olsacdd059d2012-10-27 23:18:32 +0200558
Namhyung Kim71ff8242015-05-21 01:03:39 +0900559/**
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900560 * dso__data_get_fd - Get dso's data file descriptor
Namhyung Kim71ff8242015-05-21 01:03:39 +0900561 * @dso: dso object
562 * @machine: machine object
563 *
564 * External interface to find dso's file, open it and
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900565 * returns file descriptor. It should be paired with
566 * dso__data_put_fd() if it returns non-negative value.
Namhyung Kim71ff8242015-05-21 01:03:39 +0900567 */
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900568int dso__data_get_fd(struct dso *dso, struct machine *machine)
Namhyung Kim71ff8242015-05-21 01:03:39 +0900569{
570 if (dso->data.status == DSO_DATA_STATUS_ERROR)
571 return -1;
572
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900573 if (pthread_mutex_lock(&dso__data_open_lock) < 0)
574 return -1;
575
Namhyung Kim71ff8242015-05-21 01:03:39 +0900576 try_to_open_dso(dso, machine);
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900577
578 if (dso->data.fd < 0)
579 pthread_mutex_unlock(&dso__data_open_lock);
Namhyung Kim71ff8242015-05-21 01:03:39 +0900580
Adrian Hunterc27697d2014-07-22 16:17:18 +0300581 return dso->data.fd;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200582}
583
Namhyung Kim4bb11d02015-05-21 01:03:41 +0900584void dso__data_put_fd(struct dso *dso __maybe_unused)
585{
586 pthread_mutex_unlock(&dso__data_open_lock);
587}
588
Adrian Hunter288be942014-07-22 16:17:19 +0300589bool dso__data_status_seen(struct dso *dso, enum dso_data_status_seen by)
590{
591 u32 flag = 1 << by;
592
593 if (dso->data.status_seen & flag)
594 return true;
595
596 dso->data.status_seen |= flag;
597
598 return false;
599}
600
Jiri Olsacdd059d2012-10-27 23:18:32 +0200601static void
Namhyung Kim8e67b722015-05-18 09:30:41 +0900602dso_cache__free(struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200603{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900604 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200605 struct rb_node *next = rb_first(root);
606
Namhyung Kim8e67b722015-05-18 09:30:41 +0900607 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200608 while (next) {
609 struct dso_cache *cache;
610
611 cache = rb_entry(next, struct dso_cache, rb_node);
612 next = rb_next(&cache->rb_node);
613 rb_erase(&cache->rb_node, root);
614 free(cache);
615 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900616 pthread_mutex_unlock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200617}
618
Namhyung Kim8e67b722015-05-18 09:30:41 +0900619static struct dso_cache *dso_cache__find(struct dso *dso, u64 offset)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200620{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900621 const struct rb_root *root = &dso->data.cache;
Arnaldo Carvalho de Melo33449962013-12-10 15:46:29 -0300622 struct rb_node * const *p = &root->rb_node;
623 const struct rb_node *parent = NULL;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200624 struct dso_cache *cache;
625
626 while (*p != NULL) {
627 u64 end;
628
629 parent = *p;
630 cache = rb_entry(parent, struct dso_cache, rb_node);
631 end = cache->offset + DSO__DATA_CACHE_SIZE;
632
633 if (offset < cache->offset)
634 p = &(*p)->rb_left;
635 else if (offset >= end)
636 p = &(*p)->rb_right;
637 else
638 return cache;
639 }
Namhyung Kim8e67b722015-05-18 09:30:41 +0900640
Jiri Olsacdd059d2012-10-27 23:18:32 +0200641 return NULL;
642}
643
Namhyung Kim8e67b722015-05-18 09:30:41 +0900644static struct dso_cache *
645dso_cache__insert(struct dso *dso, struct dso_cache *new)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200646{
Namhyung Kim8e67b722015-05-18 09:30:41 +0900647 struct rb_root *root = &dso->data.cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200648 struct rb_node **p = &root->rb_node;
649 struct rb_node *parent = NULL;
650 struct dso_cache *cache;
651 u64 offset = new->offset;
652
Namhyung Kim8e67b722015-05-18 09:30:41 +0900653 pthread_mutex_lock(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200654 while (*p != NULL) {
655 u64 end;
656
657 parent = *p;
658 cache = rb_entry(parent, struct dso_cache, rb_node);
659 end = cache->offset + DSO__DATA_CACHE_SIZE;
660
661 if (offset < cache->offset)
662 p = &(*p)->rb_left;
663 else if (offset >= end)
664 p = &(*p)->rb_right;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900665 else
666 goto out;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200667 }
668
669 rb_link_node(&new->rb_node, parent, p);
670 rb_insert_color(&new->rb_node, root);
Namhyung Kim8e67b722015-05-18 09:30:41 +0900671
672 cache = NULL;
673out:
674 pthread_mutex_unlock(&dso->lock);
675 return cache;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200676}
677
678static ssize_t
679dso_cache__memcpy(struct dso_cache *cache, u64 offset,
680 u8 *data, u64 size)
681{
682 u64 cache_offset = offset - cache->offset;
683 u64 cache_size = min(cache->size - cache_offset, size);
684
685 memcpy(data, cache->data + cache_offset, cache_size);
686 return cache_size;
687}
688
689static ssize_t
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900690dso_cache__read(struct dso *dso, struct machine *machine,
691 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200692{
693 struct dso_cache *cache;
Namhyung Kim8e67b722015-05-18 09:30:41 +0900694 struct dso_cache *old;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200695 ssize_t ret;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200696
697 do {
698 u64 cache_offset;
699
Jiri Olsacdd059d2012-10-27 23:18:32 +0200700 cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
701 if (!cache)
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900702 return -ENOMEM;
703
704 pthread_mutex_lock(&dso__data_open_lock);
705
706 /*
707 * dso->data.fd might be closed if other thread opened another
708 * file (dso) due to open file limit (RLIMIT_NOFILE).
709 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900710 try_to_open_dso(dso, machine);
711
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900712 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900713 ret = -errno;
714 dso->data.status = DSO_DATA_STATUS_ERROR;
715 break;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900716 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200717
718 cache_offset = offset & DSO__DATA_CACHE_MASK;
Jiri Olsacdd059d2012-10-27 23:18:32 +0200719
Namhyung Kimc52686f2015-01-29 17:02:01 -0300720 ret = pread(dso->data.fd, cache->data, DSO__DATA_CACHE_SIZE, cache_offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200721 if (ret <= 0)
722 break;
723
724 cache->offset = cache_offset;
725 cache->size = ret;
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900726 } while (0);
727
728 pthread_mutex_unlock(&dso__data_open_lock);
729
730 if (ret > 0) {
Namhyung Kim8e67b722015-05-18 09:30:41 +0900731 old = dso_cache__insert(dso, cache);
732 if (old) {
733 /* we lose the race */
734 free(cache);
735 cache = old;
736 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200737
738 ret = dso_cache__memcpy(cache, offset, data, size);
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900739 }
Jiri Olsacdd059d2012-10-27 23:18:32 +0200740
741 if (ret <= 0)
742 free(cache);
743
Jiri Olsacdd059d2012-10-27 23:18:32 +0200744 return ret;
745}
746
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900747static ssize_t dso_cache_read(struct dso *dso, struct machine *machine,
748 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200749{
750 struct dso_cache *cache;
751
Namhyung Kim8e67b722015-05-18 09:30:41 +0900752 cache = dso_cache__find(dso, offset);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200753 if (cache)
754 return dso_cache__memcpy(cache, offset, data, size);
755 else
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900756 return dso_cache__read(dso, machine, offset, data, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200757}
758
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200759/*
760 * Reads and caches dso data DSO__DATA_CACHE_SIZE size chunks
761 * in the rb_tree. Any read to already cached data is served
762 * by cached data.
763 */
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900764static ssize_t cached_read(struct dso *dso, struct machine *machine,
765 u64 offset, u8 *data, ssize_t size)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200766{
767 ssize_t r = 0;
768 u8 *p = data;
769
770 do {
771 ssize_t ret;
772
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900773 ret = dso_cache_read(dso, machine, offset, p, size);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200774 if (ret < 0)
775 return ret;
776
777 /* Reached EOF, return what we have. */
778 if (!ret)
779 break;
780
781 BUG_ON(ret > size);
782
783 r += ret;
784 p += ret;
785 offset += ret;
786 size -= ret;
787
788 } while (size);
789
790 return r;
791}
792
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900793static int data_file_size(struct dso *dso, struct machine *machine)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200794{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900795 int ret = 0;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200796 struct stat st;
Masami Hiramatsu6e81c742014-08-14 02:22:36 +0000797 char sbuf[STRERR_BUFSIZE];
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200798
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900799 if (dso->data.file_size)
800 return 0;
801
Namhyung Kim71ff8242015-05-21 01:03:39 +0900802 if (dso->data.status == DSO_DATA_STATUS_ERROR)
803 return -1;
804
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900805 pthread_mutex_lock(&dso__data_open_lock);
806
807 /*
808 * dso->data.fd might be closed if other thread opened another
809 * file (dso) due to open file limit (RLIMIT_NOFILE).
810 */
Namhyung Kim71ff8242015-05-21 01:03:39 +0900811 try_to_open_dso(dso, machine);
812
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900813 if (dso->data.fd < 0) {
Namhyung Kim71ff8242015-05-21 01:03:39 +0900814 ret = -errno;
815 dso->data.status = DSO_DATA_STATUS_ERROR;
816 goto out;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200817 }
818
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900819 if (fstat(dso->data.fd, &st) < 0) {
820 ret = -errno;
821 pr_err("dso cache fstat failed: %s\n",
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -0300822 str_error_r(errno, sbuf, sizeof(sbuf)));
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900823 dso->data.status = DSO_DATA_STATUS_ERROR;
824 goto out;
825 }
826 dso->data.file_size = st.st_size;
827
828out:
829 pthread_mutex_unlock(&dso__data_open_lock);
830 return ret;
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200831}
832
Adrian Hunter6d363452014-07-22 16:17:35 +0300833/**
834 * dso__data_size - Return dso data size
835 * @dso: dso object
836 * @machine: machine object
837 *
838 * Return: dso data size
839 */
840off_t dso__data_size(struct dso *dso, struct machine *machine)
841{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900842 if (data_file_size(dso, machine))
Adrian Hunter6d363452014-07-22 16:17:35 +0300843 return -1;
844
845 /* For now just estimate dso data size is close to file size */
846 return dso->data.file_size;
847}
848
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900849static ssize_t data_read_offset(struct dso *dso, struct machine *machine,
850 u64 offset, u8 *data, ssize_t size)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200851{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900852 if (data_file_size(dso, machine))
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200853 return -1;
854
855 /* Check the offset sanity. */
856 if (offset > dso->data.file_size)
857 return -1;
858
859 if (offset + size < offset)
860 return -1;
861
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900862 return cached_read(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200863}
864
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200865/**
866 * dso__data_read_offset - Read data from dso file offset
867 * @dso: dso object
868 * @machine: machine object
869 * @offset: file offset
870 * @data: buffer to store data
871 * @size: size of the @data buffer
872 *
873 * External interface to read data from dso file offset. Open
874 * dso data file and use cached_read to get the data.
875 */
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200876ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
877 u64 offset, u8 *data, ssize_t size)
878{
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900879 if (dso->data.status == DSO_DATA_STATUS_ERROR)
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200880 return -1;
881
Namhyung Kim33bdedc2015-05-18 09:30:42 +0900882 return data_read_offset(dso, machine, offset, data, size);
Jiri Olsac3fbd2a2014-05-07 18:51:41 +0200883}
884
Jiri Olsac1f9aa02014-05-07 21:09:59 +0200885/**
886 * dso__data_read_addr - Read data from dso address
887 * @dso: dso object
888 * @machine: machine object
889 * @add: virtual memory address
890 * @data: buffer to store data
891 * @size: size of the @data buffer
892 *
893 * External interface to read data from dso address.
894 */
Jiri Olsacdd059d2012-10-27 23:18:32 +0200895ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
896 struct machine *machine, u64 addr,
897 u8 *data, ssize_t size)
898{
899 u64 offset = map->map_ip(map, addr);
900 return dso__data_read_offset(dso, machine, offset, data, size);
901}
902
903struct map *dso__new_map(const char *name)
904{
905 struct map *map = NULL;
906 struct dso *dso = dso__new(name);
907
908 if (dso)
909 map = map__new2(0, dso, MAP__FUNCTION);
910
911 return map;
912}
913
Arnaldo Carvalho de Melo459ce512015-05-28 12:40:55 -0300914struct dso *machine__findnew_kernel(struct machine *machine, const char *name,
915 const char *short_name, int dso_type)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200916{
917 /*
918 * The kernel dso could be created by build_id processing.
919 */
Arnaldo Carvalho de Meloaa7cc2a2015-05-29 11:31:12 -0300920 struct dso *dso = machine__findnew_dso(machine, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200921
922 /*
923 * We need to run this in all cases, since during the build_id
924 * processing we had no idea this was the kernel dso.
925 */
926 if (dso != NULL) {
Adrian Hunter58a98c92013-12-10 11:11:46 -0300927 dso__set_short_name(dso, short_name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +0200928 dso->kernel = dso_type;
929 }
930
931 return dso;
932}
933
Waiman Long4598a0a2014-09-30 13:36:15 -0400934/*
935 * Find a matching entry and/or link current entry to RB tree.
936 * Either one of the dso or name parameter must be non-NULL or the
937 * function will not work.
938 */
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300939static struct dso *__dso__findlink_by_longname(struct rb_root *root,
940 struct dso *dso, const char *name)
Waiman Long4598a0a2014-09-30 13:36:15 -0400941{
942 struct rb_node **p = &root->rb_node;
943 struct rb_node *parent = NULL;
944
945 if (!name)
946 name = dso->long_name;
947 /*
948 * Find node with the matching name
949 */
950 while (*p) {
951 struct dso *this = rb_entry(*p, struct dso, rb_node);
952 int rc = strcmp(name, this->long_name);
953
954 parent = *p;
955 if (rc == 0) {
956 /*
957 * In case the new DSO is a duplicate of an existing
Masahiro Yamada0f5e1552017-02-27 14:28:52 -0800958 * one, print a one-time warning & put the new entry
Waiman Long4598a0a2014-09-30 13:36:15 -0400959 * at the end of the list of duplicates.
960 */
961 if (!dso || (dso == this))
962 return this; /* Find matching dso */
963 /*
964 * The core kernel DSOs may have duplicated long name.
965 * In this case, the short name should be different.
966 * Comparing the short names to differentiate the DSOs.
967 */
968 rc = strcmp(dso->short_name, this->short_name);
969 if (rc == 0) {
970 pr_err("Duplicated dso name: %s\n", name);
971 return NULL;
972 }
973 }
974 if (rc < 0)
975 p = &parent->rb_left;
976 else
977 p = &parent->rb_right;
978 }
979 if (dso) {
980 /* Add new node and rebalance tree */
981 rb_link_node(&dso->rb_node, parent, p);
982 rb_insert_color(&dso->rb_node, root);
Adrian Huntere266a752015-11-13 11:48:30 +0200983 dso->root = root;
Waiman Long4598a0a2014-09-30 13:36:15 -0400984 }
985 return NULL;
986}
987
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300988static inline struct dso *__dso__find_by_longname(struct rb_root *root,
989 const char *name)
Waiman Long4598a0a2014-09-30 13:36:15 -0400990{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -0300991 return __dso__findlink_by_longname(root, NULL, name);
Waiman Long4598a0a2014-09-30 13:36:15 -0400992}
993
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -0300994void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +0200995{
Adrian Huntere266a752015-11-13 11:48:30 +0200996 struct rb_root *root = dso->root;
997
Jiri Olsacdd059d2012-10-27 23:18:32 +0200998 if (name == NULL)
999 return;
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001000
1001 if (dso->long_name_allocated)
Arnaldo Carvalho de Melobf4414a2013-12-10 15:19:23 -03001002 free((char *)dso->long_name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001003
Adrian Huntere266a752015-11-13 11:48:30 +02001004 if (root) {
1005 rb_erase(&dso->rb_node, root);
1006 /*
1007 * __dso__findlink_by_longname() isn't guaranteed to add it
1008 * back, so a clean removal is required here.
1009 */
1010 RB_CLEAR_NODE(&dso->rb_node);
1011 dso->root = NULL;
1012 }
1013
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001014 dso->long_name = name;
1015 dso->long_name_len = strlen(name);
1016 dso->long_name_allocated = name_allocated;
Adrian Huntere266a752015-11-13 11:48:30 +02001017
1018 if (root)
1019 __dso__findlink_by_longname(root, dso, NULL);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001020}
1021
Adrian Hunter58a98c92013-12-10 11:11:46 -03001022void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001023{
1024 if (name == NULL)
1025 return;
Adrian Hunter58a98c92013-12-10 11:11:46 -03001026
1027 if (dso->short_name_allocated)
1028 free((char *)dso->short_name);
1029
1030 dso->short_name = name;
1031 dso->short_name_len = strlen(name);
1032 dso->short_name_allocated = name_allocated;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001033}
1034
1035static void dso__set_basename(struct dso *dso)
1036{
Stephane Eranianac5e7f82013-12-05 19:26:42 +01001037 /*
1038 * basename() may modify path buffer, so we must pass
1039 * a copy.
1040 */
1041 char *base, *lname = strdup(dso->long_name);
1042
1043 if (!lname)
1044 return;
1045
1046 /*
1047 * basename() may return a pointer to internal
1048 * storage which is reused in subsequent calls
1049 * so copy the result.
1050 */
1051 base = strdup(basename(lname));
1052
1053 free(lname);
1054
1055 if (!base)
1056 return;
1057
1058 dso__set_short_name(dso, base, true);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001059}
1060
1061int dso__name_len(const struct dso *dso)
1062{
1063 if (!dso)
1064 return strlen("[unknown]");
Namhyung Kimbb963e12017-02-17 17:17:38 +09001065 if (verbose > 0)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001066 return dso->long_name_len;
1067
1068 return dso->short_name_len;
1069}
1070
1071bool dso__loaded(const struct dso *dso, enum map_type type)
1072{
1073 return dso->loaded & (1 << type);
1074}
1075
1076bool dso__sorted_by_name(const struct dso *dso, enum map_type type)
1077{
1078 return dso->sorted_by_name & (1 << type);
1079}
1080
1081void dso__set_sorted_by_name(struct dso *dso, enum map_type type)
1082{
1083 dso->sorted_by_name |= (1 << type);
1084}
1085
1086struct dso *dso__new(const char *name)
1087{
1088 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1);
1089
1090 if (dso != NULL) {
1091 int i;
1092 strcpy(dso->name, name);
Arnaldo Carvalho de Melo7e155d42013-12-10 15:08:44 -03001093 dso__set_long_name(dso, dso->name, false);
Adrian Hunter58a98c92013-12-10 11:11:46 -03001094 dso__set_short_name(dso, dso->name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001095 for (i = 0; i < MAP__NR_TYPES; ++i)
1096 dso->symbols[i] = dso->symbol_names[i] = RB_ROOT;
Jiri Olsaca40e2a2014-05-07 18:30:45 +02001097 dso->data.cache = RB_ROOT;
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +02001098 dso->data.fd = -1;
Adrian Hunterc27697d2014-07-22 16:17:18 +03001099 dso->data.status = DSO_DATA_STATUS_UNKNOWN;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001100 dso->symtab_type = DSO_BINARY_TYPE__NOT_FOUND;
Arnaldo Carvalho de Melo5f706192013-12-17 16:14:07 -03001101 dso->binary_type = DSO_BINARY_TYPE__NOT_FOUND;
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +03001102 dso->is_64_bit = (sizeof(void *) == 8);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001103 dso->loaded = 0;
Adrian Hunter0131c4e2013-08-07 14:38:50 +03001104 dso->rel = 0;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001105 dso->sorted_by_name = 0;
1106 dso->has_build_id = 0;
Namhyung Kim2cc9d0e2013-09-11 14:09:31 +09001107 dso->has_srcline = 1;
Adrian Hunter906049c82013-12-03 09:23:10 +02001108 dso->a2l_fails = 1;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001109 dso->kernel = DSO_TYPE_USER;
1110 dso->needs_swap = DSO_SWAP__UNSET;
Waiman Long4598a0a2014-09-30 13:36:15 -04001111 RB_CLEAR_NODE(&dso->rb_node);
Adrian Huntere266a752015-11-13 11:48:30 +02001112 dso->root = NULL;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001113 INIT_LIST_HEAD(&dso->node);
Jiri Olsaeba51022014-04-30 15:00:59 +02001114 INIT_LIST_HEAD(&dso->data.open_entry);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001115 pthread_mutex_init(&dso->lock, NULL);
Elena Reshetova71008102017-02-21 17:34:58 +02001116 refcount_set(&dso->refcnt, 1);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001117 }
1118
1119 return dso;
1120}
1121
1122void dso__delete(struct dso *dso)
1123{
1124 int i;
Waiman Long4598a0a2014-09-30 13:36:15 -04001125
1126 if (!RB_EMPTY_NODE(&dso->rb_node))
1127 pr_err("DSO %s is still in rbtree when being deleted!\n",
1128 dso->long_name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001129 for (i = 0; i < MAP__NR_TYPES; ++i)
1130 symbols__delete(&dso->symbols[i]);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001131
1132 if (dso->short_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001133 zfree((char **)&dso->short_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001134 dso->short_name_allocated = false;
1135 }
1136
1137 if (dso->long_name_allocated) {
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001138 zfree((char **)&dso->long_name);
Arnaldo Carvalho de Meloee021d42013-12-10 15:26:55 -03001139 dso->long_name_allocated = false;
1140 }
1141
Jiri Olsa53fa8eaa2014-04-28 16:43:43 +02001142 dso__data_close(dso);
Adrian Huntercfe91742015-04-09 18:53:55 +03001143 auxtrace_cache__free(dso->auxtrace_cache);
Namhyung Kim8e67b722015-05-18 09:30:41 +09001144 dso_cache__free(dso);
Adrian Hunter454ff002013-12-03 09:23:07 +02001145 dso__free_a2l(dso);
Arnaldo Carvalho de Melo04662522013-12-26 17:41:15 -03001146 zfree(&dso->symsrc_filename);
Namhyung Kim4a936ed2015-05-18 09:30:40 +09001147 pthread_mutex_destroy(&dso->lock);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001148 free(dso);
1149}
1150
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001151struct dso *dso__get(struct dso *dso)
1152{
1153 if (dso)
Elena Reshetova71008102017-02-21 17:34:58 +02001154 refcount_inc(&dso->refcnt);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001155 return dso;
1156}
1157
1158void dso__put(struct dso *dso)
1159{
Elena Reshetova71008102017-02-21 17:34:58 +02001160 if (dso && refcount_dec_and_test(&dso->refcnt))
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001161 dso__delete(dso);
1162}
1163
Jiri Olsacdd059d2012-10-27 23:18:32 +02001164void dso__set_build_id(struct dso *dso, void *build_id)
1165{
1166 memcpy(dso->build_id, build_id, sizeof(dso->build_id));
1167 dso->has_build_id = 1;
1168}
1169
1170bool dso__build_id_equal(const struct dso *dso, u8 *build_id)
1171{
1172 return memcmp(dso->build_id, build_id, sizeof(dso->build_id)) == 0;
1173}
1174
1175void dso__read_running_kernel_build_id(struct dso *dso, struct machine *machine)
1176{
1177 char path[PATH_MAX];
1178
1179 if (machine__is_default_guest(machine))
1180 return;
1181 sprintf(path, "%s/sys/kernel/notes", machine->root_dir);
1182 if (sysfs__read_build_id(path, dso->build_id,
1183 sizeof(dso->build_id)) == 0)
1184 dso->has_build_id = true;
1185}
1186
1187int dso__kernel_module_get_build_id(struct dso *dso,
1188 const char *root_dir)
1189{
1190 char filename[PATH_MAX];
1191 /*
1192 * kernel module short names are of the form "[module]" and
1193 * we need just "module" here.
1194 */
1195 const char *name = dso->short_name + 1;
1196
1197 snprintf(filename, sizeof(filename),
1198 "%s/sys/module/%.*s/notes/.note.gnu.build-id",
1199 root_dir, (int)strlen(name) - 1, name);
1200
1201 if (sysfs__read_build_id(filename, dso->build_id,
1202 sizeof(dso->build_id)) == 0)
1203 dso->has_build_id = true;
1204
1205 return 0;
1206}
1207
1208bool __dsos__read_build_ids(struct list_head *head, bool with_hits)
1209{
1210 bool have_build_id = false;
1211 struct dso *pos;
1212
1213 list_for_each_entry(pos, head, node) {
He Kuang6ae98ba2016-05-12 08:43:11 +00001214 if (with_hits && !pos->hit && !dso__is_vdso(pos))
Jiri Olsacdd059d2012-10-27 23:18:32 +02001215 continue;
1216 if (pos->has_build_id) {
1217 have_build_id = true;
1218 continue;
1219 }
1220 if (filename__read_build_id(pos->long_name, pos->build_id,
1221 sizeof(pos->build_id)) > 0) {
1222 have_build_id = true;
1223 pos->has_build_id = true;
1224 }
1225 }
1226
1227 return have_build_id;
1228}
1229
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001230void __dsos__add(struct dsos *dsos, struct dso *dso)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001231{
Waiman Long8fa7d872014-09-29 16:07:28 -04001232 list_add_tail(&dso->node, &dsos->head);
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001233 __dso__findlink_by_longname(&dsos->root, dso, NULL);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001234 /*
1235 * It is now in the linked list, grab a reference, then garbage collect
1236 * this when needing memory, by looking at LRU dso instances in the
1237 * list with atomic_read(&dso->refcnt) == 1, i.e. no references
1238 * anywhere besides the one for the list, do, under a lock for the
1239 * list: remove it from the list, then a dso__put(), that probably will
1240 * be the last and will then call dso__delete(), end of life.
1241 *
1242 * That, or at the end of the 'struct machine' lifetime, when all
1243 * 'struct dso' instances will be removed from the list, in
1244 * dsos__exit(), if they have no other reference from some other data
1245 * structure.
1246 *
1247 * E.g.: after processing a 'perf.data' file and storing references
1248 * to objects instantiated while processing events, we will have
1249 * references to the 'thread', 'map', 'dso' structs all from 'struct
1250 * hist_entry' instances, but we may not need anything not referenced,
1251 * so we might as well call machines__exit()/machines__delete() and
1252 * garbage collect it.
1253 */
1254 dso__get(dso);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001255}
1256
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001257void dsos__add(struct dsos *dsos, struct dso *dso)
1258{
1259 pthread_rwlock_wrlock(&dsos->lock);
1260 __dsos__add(dsos, dso);
1261 pthread_rwlock_unlock(&dsos->lock);
1262}
1263
1264struct dso *__dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001265{
1266 struct dso *pos;
1267
Waiman Longf9ceffb2013-05-09 10:42:48 -04001268 if (cmp_short) {
Waiman Long8fa7d872014-09-29 16:07:28 -04001269 list_for_each_entry(pos, &dsos->head, node)
Waiman Longf9ceffb2013-05-09 10:42:48 -04001270 if (strcmp(pos->short_name, name) == 0)
1271 return pos;
1272 return NULL;
1273 }
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001274 return __dso__find_by_longname(&dsos->root, name);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001275}
1276
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001277struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short)
1278{
1279 struct dso *dso;
1280 pthread_rwlock_rdlock(&dsos->lock);
1281 dso = __dsos__find(dsos, name, cmp_short);
1282 pthread_rwlock_unlock(&dsos->lock);
1283 return dso;
1284}
1285
1286struct dso *__dsos__addnew(struct dsos *dsos, const char *name)
Jiri Olsa701d8d72015-02-12 22:06:09 +01001287{
1288 struct dso *dso = dso__new(name);
1289
1290 if (dso != NULL) {
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001291 __dsos__add(dsos, dso);
Jiri Olsa701d8d72015-02-12 22:06:09 +01001292 dso__set_basename(dso);
Masami Hiramatsu82de26a2015-11-18 15:40:31 +09001293 /* Put dso here because __dsos_add already got it */
1294 dso__put(dso);
Jiri Olsa701d8d72015-02-12 22:06:09 +01001295 }
1296 return dso;
1297}
1298
Waiman Long8fa7d872014-09-29 16:07:28 -04001299struct dso *__dsos__findnew(struct dsos *dsos, const char *name)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001300{
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001301 struct dso *dso = __dsos__find(dsos, name, false);
Jiri Olsacdd059d2012-10-27 23:18:32 +02001302
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001303 return dso ? dso : __dsos__addnew(dsos, name);
1304}
1305
1306struct dso *dsos__findnew(struct dsos *dsos, const char *name)
1307{
1308 struct dso *dso;
1309 pthread_rwlock_wrlock(&dsos->lock);
Arnaldo Carvalho de Melod3a7c482015-06-02 11:53:26 -03001310 dso = dso__get(__dsos__findnew(dsos, name));
Arnaldo Carvalho de Meloe8807842015-06-01 15:40:01 -03001311 pthread_rwlock_unlock(&dsos->lock);
1312 return dso;
Jiri Olsacdd059d2012-10-27 23:18:32 +02001313}
1314
1315size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001316 bool (skip)(struct dso *dso, int parm), int parm)
Jiri Olsacdd059d2012-10-27 23:18:32 +02001317{
1318 struct dso *pos;
1319 size_t ret = 0;
1320
1321 list_for_each_entry(pos, head, node) {
Arnaldo Carvalho de Melo417c2ff2012-12-07 09:53:58 -03001322 if (skip && skip(pos, parm))
Jiri Olsacdd059d2012-10-27 23:18:32 +02001323 continue;
1324 ret += dso__fprintf_buildid(pos, fp);
1325 ret += fprintf(fp, " %s\n", pos->long_name);
1326 }
1327 return ret;
1328}
1329
1330size_t __dsos__fprintf(struct list_head *head, FILE *fp)
1331{
1332 struct dso *pos;
1333 size_t ret = 0;
1334
1335 list_for_each_entry(pos, head, node) {
1336 int i;
1337 for (i = 0; i < MAP__NR_TYPES; ++i)
1338 ret += dso__fprintf(pos, i, fp);
1339 }
1340
1341 return ret;
1342}
1343
1344size_t dso__fprintf_buildid(struct dso *dso, FILE *fp)
1345{
Masami Hiramatsub5d8bbe2016-05-11 22:51:59 +09001346 char sbuild_id[SBUILD_ID_SIZE];
Jiri Olsacdd059d2012-10-27 23:18:32 +02001347
1348 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
1349 return fprintf(fp, "%s", sbuild_id);
1350}
1351
1352size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp)
1353{
1354 struct rb_node *nd;
1355 size_t ret = fprintf(fp, "dso: %s (", dso->short_name);
1356
1357 if (dso->short_name != dso->long_name)
1358 ret += fprintf(fp, "%s, ", dso->long_name);
1359 ret += fprintf(fp, "%s, %sloaded, ", map_type__name[type],
Stephane Eranian919d5902012-11-20 10:51:02 +01001360 dso__loaded(dso, type) ? "" : "NOT ");
Jiri Olsacdd059d2012-10-27 23:18:32 +02001361 ret += dso__fprintf_buildid(dso, fp);
1362 ret += fprintf(fp, ")\n");
1363 for (nd = rb_first(&dso->symbols[type]); nd; nd = rb_next(nd)) {
1364 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
1365 ret += symbol__fprintf(pos, fp);
1366 }
1367
1368 return ret;
1369}
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001370
1371enum dso_type dso__type(struct dso *dso, struct machine *machine)
1372{
1373 int fd;
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001374 enum dso_type type = DSO__TYPE_UNKNOWN;
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001375
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001376 fd = dso__data_get_fd(dso, machine);
1377 if (fd >= 0) {
1378 type = dso__type_fd(fd);
1379 dso__data_put_fd(dso);
1380 }
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001381
Namhyung Kim4bb11d02015-05-21 01:03:41 +09001382 return type;
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001383}
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -03001384
1385int dso__strerror_load(struct dso *dso, char *buf, size_t buflen)
1386{
1387 int idx, errnum = dso->load_errno;
1388 /*
1389 * This must have a same ordering as the enum dso_load_errno.
1390 */
1391 static const char *dso_load__error_str[] = {
1392 "Internal tools/perf/ library error",
1393 "Invalid ELF file",
1394 "Can not read build id",
1395 "Mismatching build id",
1396 "Decompression failure",
1397 };
1398
1399 BUG_ON(buflen == 0);
1400
1401 if (errnum >= 0) {
Arnaldo Carvalho de Meloc8b5f2c2016-07-06 11:56:20 -03001402 const char *err = str_error_r(errnum, buf, buflen);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -03001403
1404 if (err != buf)
1405 scnprintf(buf, buflen, "%s", err);
1406
1407 return 0;
1408 }
1409
1410 if (errnum < __DSO_LOAD_ERRNO__START || errnum >= __DSO_LOAD_ERRNO__END)
1411 return -1;
1412
1413 idx = errnum - __DSO_LOAD_ERRNO__START;
1414 scnprintf(buf, buflen, "%s", dso_load__error_str[idx]);
1415 return 0;
1416}