perf machine: Fix up some more method names
[linux-2.6-block.git] / tools / perf / util / symbol.c
CommitLineData
5aab621b
ACM
1#include <dirent.h>
2#include <errno.h>
5aab621b
ACM
3#include <stdlib.h>
4#include <stdio.h>
5#include <string.h>
6#include <sys/types.h>
7#include <sys/stat.h>
8#include <sys/param.h>
9#include <fcntl.h>
10#include <unistd.h>
9486aa38 11#include <inttypes.h>
b36f19d5 12#include "build-id.h"
e334c726 13#include "util.h"
8a6c5b26 14#include "debug.h"
69d2591a 15#include "machine.h"
a2928c42 16#include "symbol.h"
5aab621b 17#include "strlist.h"
e03eaa40 18#include "intlist.h"
0a7e6d1b 19#include "header.h"
a2928c42 20
a2928c42 21#include <elf.h>
f1617b40 22#include <limits.h>
c506c96b 23#include <symbol/kallsyms.h>
439d473b 24#include <sys/utsname.h>
2cdbc46d 25
aeafcbaf 26static int dso__load_kernel_sym(struct dso *dso, struct map *map,
9de89fe7 27 symbol_filter_t filter);
aeafcbaf 28static int dso__load_guest_kernel_sym(struct dso *dso, struct map *map,
a1645ce1 29 symbol_filter_t filter);
3f067dca
ACM
30int vmlinux_path__nr_entries;
31char **vmlinux_path;
439d473b 32
75be6cf4 33struct symbol_conf symbol_conf = {
e511db5e
NK
34 .use_modules = true,
35 .try_vmlinux_path = true,
36 .annotate_src = true,
37 .demangle = true,
763122ad 38 .demangle_kernel = false,
e511db5e 39 .cumulate_callchain = true,
c8302367 40 .show_hist_headers = true,
e511db5e 41 .symfs = "",
b32d133a
ACM
42};
43
44f24cb3
JO
44static enum dso_binary_type binary_type_symtab[] = {
45 DSO_BINARY_TYPE__KALLSYMS,
46 DSO_BINARY_TYPE__GUEST_KALLSYMS,
47 DSO_BINARY_TYPE__JAVA_JIT,
48 DSO_BINARY_TYPE__DEBUGLINK,
49 DSO_BINARY_TYPE__BUILD_ID_CACHE,
50 DSO_BINARY_TYPE__FEDORA_DEBUGINFO,
51 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO,
52 DSO_BINARY_TYPE__BUILDID_DEBUGINFO,
53 DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
54 DSO_BINARY_TYPE__GUEST_KMODULE,
c00c48fc 55 DSO_BINARY_TYPE__GUEST_KMODULE_COMP,
44f24cb3 56 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE,
c00c48fc 57 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP,
9cd00941 58 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO,
44f24cb3
JO
59 DSO_BINARY_TYPE__NOT_FOUND,
60};
61
028df767 62#define DSO_BINARY_TYPE__SYMTAB_CNT ARRAY_SIZE(binary_type_symtab)
44f24cb3 63
36a3e646 64bool symbol_type__is_a(char symbol_type, enum map_type map_type)
6893d4ee 65{
31877908
AB
66 symbol_type = toupper(symbol_type);
67
6893d4ee
ACM
68 switch (map_type) {
69 case MAP__FUNCTION:
70 return symbol_type == 'T' || symbol_type == 'W';
f1dfa0b1 71 case MAP__VARIABLE:
31877908 72 return symbol_type == 'D';
6893d4ee
ACM
73 default:
74 return false;
75 }
76}
77
694bf407
AB
78static int prefix_underscores_count(const char *str)
79{
80 const char *tail = str;
81
82 while (*tail == '_')
83 tail++;
84
85 return tail - str;
86}
87
fb6d5942
NR
88int __weak arch__choose_best_symbol(struct symbol *syma,
89 struct symbol *symb __maybe_unused)
90{
91 /* Avoid "SyS" kernel syscall aliases */
92 if (strlen(syma->name) >= 3 && !strncmp(syma->name, "SyS", 3))
93 return SYMBOL_B;
94 if (strlen(syma->name) >= 10 && !strncmp(syma->name, "compat_SyS", 10))
95 return SYMBOL_B;
96
97 return SYMBOL_A;
98}
694bf407
AB
99
100static int choose_best_symbol(struct symbol *syma, struct symbol *symb)
101{
102 s64 a;
103 s64 b;
3445432b 104 size_t na, nb;
694bf407
AB
105
106 /* Prefer a symbol with non zero length */
107 a = syma->end - syma->start;
108 b = symb->end - symb->start;
109 if ((b == 0) && (a > 0))
110 return SYMBOL_A;
111 else if ((a == 0) && (b > 0))
112 return SYMBOL_B;
113
114 /* Prefer a non weak symbol over a weak one */
115 a = syma->binding == STB_WEAK;
116 b = symb->binding == STB_WEAK;
117 if (b && !a)
118 return SYMBOL_A;
119 if (a && !b)
120 return SYMBOL_B;
121
122 /* Prefer a global symbol over a non global one */
123 a = syma->binding == STB_GLOBAL;
124 b = symb->binding == STB_GLOBAL;
125 if (a && !b)
126 return SYMBOL_A;
127 if (b && !a)
128 return SYMBOL_B;
129
130 /* Prefer a symbol with less underscores */
131 a = prefix_underscores_count(syma->name);
132 b = prefix_underscores_count(symb->name);
133 if (b > a)
134 return SYMBOL_A;
135 else if (a > b)
136 return SYMBOL_B;
137
3445432b
AH
138 /* Choose the symbol with the longest name */
139 na = strlen(syma->name);
140 nb = strlen(symb->name);
141 if (na > nb)
694bf407 142 return SYMBOL_A;
3445432b 143 else if (na < nb)
694bf407 144 return SYMBOL_B;
3445432b 145
fb6d5942 146 return arch__choose_best_symbol(syma, symb);
694bf407
AB
147}
148
e5a1845f 149void symbols__fixup_duplicate(struct rb_root *symbols)
694bf407
AB
150{
151 struct rb_node *nd;
152 struct symbol *curr, *next;
153
154 nd = rb_first(symbols);
155
156 while (nd) {
157 curr = rb_entry(nd, struct symbol, rb_node);
158again:
159 nd = rb_next(&curr->rb_node);
160 next = rb_entry(nd, struct symbol, rb_node);
161
162 if (!nd)
163 break;
164
165 if (curr->start != next->start)
166 continue;
167
168 if (choose_best_symbol(curr, next) == SYMBOL_A) {
169 rb_erase(&next->rb_node, symbols);
d4f74eb8 170 symbol__delete(next);
694bf407
AB
171 goto again;
172 } else {
173 nd = rb_next(&curr->rb_node);
174 rb_erase(&curr->rb_node, symbols);
d4f74eb8 175 symbol__delete(curr);
694bf407
AB
176 }
177 }
178}
179
e5a1845f 180void symbols__fixup_end(struct rb_root *symbols)
af427bf5 181{
aeafcbaf 182 struct rb_node *nd, *prevnd = rb_first(symbols);
2e538c4a 183 struct symbol *curr, *prev;
af427bf5
ACM
184
185 if (prevnd == NULL)
186 return;
187
2e538c4a
ACM
188 curr = rb_entry(prevnd, struct symbol, rb_node);
189
af427bf5 190 for (nd = rb_next(prevnd); nd; nd = rb_next(nd)) {
2e538c4a
ACM
191 prev = curr;
192 curr = rb_entry(nd, struct symbol, rb_node);
af427bf5 193
3b01a413 194 if (prev->end == prev->start && prev->end != curr->start)
2c241bd3 195 prev->end = curr->start;
af427bf5 196 }
2e538c4a
ACM
197
198 /* Last entry */
199 if (curr->end == curr->start)
200 curr->end = roundup(curr->start, 4096);
af427bf5
ACM
201}
202
e5a1845f 203void __map_groups__fixup_end(struct map_groups *mg, enum map_type type)
af427bf5 204{
1eee78ae 205 struct maps *maps = &mg->maps[type];
4bb7123d 206 struct map *next, *curr;
af427bf5 207
6a2ffcdd
ACM
208 pthread_rwlock_wrlock(&maps->lock);
209
4bb7123d
ACM
210 curr = maps__first(maps);
211 if (curr == NULL)
6a2ffcdd 212 goto out_unlock;
af427bf5 213
4bb7123d
ACM
214 for (next = map__next(curr); next; next = map__next(curr)) {
215 curr->end = next->start;
216 curr = next;
2e538c4a 217 }
90c83218
ACM
218
219 /*
220 * We still haven't the actual symbols, so guess the
221 * last map final address.
222 */
9d1faba5 223 curr->end = ~0ULL;
6a2ffcdd
ACM
224
225out_unlock:
226 pthread_rwlock_unlock(&maps->lock);
af427bf5
ACM
227}
228
e5a1845f 229struct symbol *symbol__new(u64 start, u64 len, u8 binding, const char *name)
a2928c42 230{
0085c954 231 size_t namelen = strlen(name) + 1;
aeafcbaf
ACM
232 struct symbol *sym = calloc(1, (symbol_conf.priv_size +
233 sizeof(*sym) + namelen));
234 if (sym == NULL)
0b73da3f
IM
235 return NULL;
236
75be6cf4 237 if (symbol_conf.priv_size)
aeafcbaf 238 sym = ((void *)sym) + symbol_conf.priv_size;
e4204992 239
aeafcbaf 240 sym->start = start;
2c241bd3 241 sym->end = len ? start + len : start;
aeafcbaf
ACM
242 sym->binding = binding;
243 sym->namelen = namelen - 1;
e4204992 244
aeafcbaf
ACM
245 pr_debug4("%s: %s %#" PRIx64 "-%#" PRIx64 "\n",
246 __func__, name, start, sym->end);
247 memcpy(sym->name, name, namelen);
a2928c42 248
aeafcbaf 249 return sym;
a2928c42
ACM
250}
251
aeafcbaf 252void symbol__delete(struct symbol *sym)
a2928c42 253{
aeafcbaf 254 free(((void *)sym) - symbol_conf.priv_size);
a2928c42
ACM
255}
256
cdd059d7 257size_t symbol__fprintf(struct symbol *sym, FILE *fp)
a2928c42 258{
9486aa38 259 return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %c %s\n",
aeafcbaf
ACM
260 sym->start, sym->end,
261 sym->binding == STB_GLOBAL ? 'g' :
262 sym->binding == STB_LOCAL ? 'l' : 'w',
263 sym->name);
a2928c42
ACM
264}
265
a978f2ab
AN
266size_t symbol__fprintf_symname_offs(const struct symbol *sym,
267 const struct addr_location *al, FILE *fp)
547a92e0 268{
a978f2ab
AN
269 unsigned long offset;
270 size_t length;
271
272 if (sym && sym->name) {
273 length = fprintf(fp, "%s", sym->name);
274 if (al) {
0b8c25d9
DA
275 if (al->addr < sym->end)
276 offset = al->addr - sym->start;
277 else
278 offset = al->addr - al->map->start - sym->start;
a978f2ab
AN
279 length += fprintf(fp, "+0x%lx", offset);
280 }
281 return length;
282 } else
283 return fprintf(fp, "[unknown]");
284}
547a92e0 285
a978f2ab
AN
286size_t symbol__fprintf_symname(const struct symbol *sym, FILE *fp)
287{
288 return symbol__fprintf_symname_offs(sym, NULL, fp);
547a92e0
AN
289}
290
cdd059d7 291void symbols__delete(struct rb_root *symbols)
a2928c42
ACM
292{
293 struct symbol *pos;
aeafcbaf 294 struct rb_node *next = rb_first(symbols);
a2928c42
ACM
295
296 while (next) {
297 pos = rb_entry(next, struct symbol, rb_node);
298 next = rb_next(&pos->rb_node);
aeafcbaf 299 rb_erase(&pos->rb_node, symbols);
00a192b3 300 symbol__delete(pos);
a2928c42
ACM
301 }
302}
303
e5a1845f 304void symbols__insert(struct rb_root *symbols, struct symbol *sym)
a2928c42 305{
aeafcbaf 306 struct rb_node **p = &symbols->rb_node;
a2928c42 307 struct rb_node *parent = NULL;
9cffa8d5 308 const u64 ip = sym->start;
a2928c42
ACM
309 struct symbol *s;
310
311 while (*p != NULL) {
312 parent = *p;
313 s = rb_entry(parent, struct symbol, rb_node);
314 if (ip < s->start)
315 p = &(*p)->rb_left;
316 else
317 p = &(*p)->rb_right;
318 }
319 rb_link_node(&sym->rb_node, parent, p);
aeafcbaf 320 rb_insert_color(&sym->rb_node, symbols);
a2928c42
ACM
321}
322
aeafcbaf 323static struct symbol *symbols__find(struct rb_root *symbols, u64 ip)
a2928c42
ACM
324{
325 struct rb_node *n;
326
aeafcbaf 327 if (symbols == NULL)
a2928c42
ACM
328 return NULL;
329
aeafcbaf 330 n = symbols->rb_node;
a2928c42
ACM
331
332 while (n) {
333 struct symbol *s = rb_entry(n, struct symbol, rb_node);
334
335 if (ip < s->start)
336 n = n->rb_left;
2c241bd3 337 else if (ip >= s->end)
a2928c42
ACM
338 n = n->rb_right;
339 else
340 return s;
341 }
342
343 return NULL;
344}
345
8e0cf965
AH
346static struct symbol *symbols__first(struct rb_root *symbols)
347{
348 struct rb_node *n = rb_first(symbols);
349
350 if (n)
351 return rb_entry(n, struct symbol, rb_node);
352
353 return NULL;
354}
355
9c00a81b
AH
356static struct symbol *symbols__next(struct symbol *sym)
357{
358 struct rb_node *n = rb_next(&sym->rb_node);
359
360 if (n)
361 return rb_entry(n, struct symbol, rb_node);
362
363 return NULL;
364}
365
79406cd7
ACM
366struct symbol_name_rb_node {
367 struct rb_node rb_node;
368 struct symbol sym;
369};
370
aeafcbaf 371static void symbols__insert_by_name(struct rb_root *symbols, struct symbol *sym)
79406cd7 372{
aeafcbaf 373 struct rb_node **p = &symbols->rb_node;
79406cd7 374 struct rb_node *parent = NULL;
02a9d037
RV
375 struct symbol_name_rb_node *symn, *s;
376
377 symn = container_of(sym, struct symbol_name_rb_node, sym);
79406cd7
ACM
378
379 while (*p != NULL) {
380 parent = *p;
381 s = rb_entry(parent, struct symbol_name_rb_node, rb_node);
382 if (strcmp(sym->name, s->sym.name) < 0)
383 p = &(*p)->rb_left;
384 else
385 p = &(*p)->rb_right;
386 }
387 rb_link_node(&symn->rb_node, parent, p);
aeafcbaf 388 rb_insert_color(&symn->rb_node, symbols);
79406cd7
ACM
389}
390
aeafcbaf
ACM
391static void symbols__sort_by_name(struct rb_root *symbols,
392 struct rb_root *source)
79406cd7
ACM
393{
394 struct rb_node *nd;
395
396 for (nd = rb_first(source); nd; nd = rb_next(nd)) {
397 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
aeafcbaf 398 symbols__insert_by_name(symbols, pos);
79406cd7
ACM
399 }
400}
401
aeafcbaf
ACM
402static struct symbol *symbols__find_by_name(struct rb_root *symbols,
403 const char *name)
79406cd7
ACM
404{
405 struct rb_node *n;
5bcaaca3 406 struct symbol_name_rb_node *s = NULL;
79406cd7 407
aeafcbaf 408 if (symbols == NULL)
79406cd7
ACM
409 return NULL;
410
aeafcbaf 411 n = symbols->rb_node;
79406cd7
ACM
412
413 while (n) {
79406cd7
ACM
414 int cmp;
415
416 s = rb_entry(n, struct symbol_name_rb_node, rb_node);
031b84c4 417 cmp = arch__compare_symbol_names(name, s->sym.name);
79406cd7
ACM
418
419 if (cmp < 0)
420 n = n->rb_left;
421 else if (cmp > 0)
422 n = n->rb_right;
423 else
de480999 424 break;
79406cd7
ACM
425 }
426
de480999
NK
427 if (n == NULL)
428 return NULL;
429
430 /* return first symbol that has same name (if any) */
431 for (n = rb_prev(n); n; n = rb_prev(n)) {
432 struct symbol_name_rb_node *tmp;
433
434 tmp = rb_entry(n, struct symbol_name_rb_node, rb_node);
031b84c4 435 if (arch__compare_symbol_names(tmp->sym.name, s->sym.name))
de480999
NK
436 break;
437
438 s = tmp;
439 }
440
441 return &s->sym;
79406cd7
ACM
442}
443
aeafcbaf 444struct symbol *dso__find_symbol(struct dso *dso,
79406cd7 445 enum map_type type, u64 addr)
fcf1203a 446{
aeafcbaf 447 return symbols__find(&dso->symbols[type], addr);
fcf1203a
ACM
448}
449
9c00a81b 450struct symbol *dso__first_symbol(struct dso *dso, enum map_type type)
8e0cf965
AH
451{
452 return symbols__first(&dso->symbols[type]);
9c00a81b
AH
453}
454
455struct symbol *dso__next_symbol(struct symbol *sym)
456{
457 return symbols__next(sym);
8e0cf965
AH
458}
459
18bd7264
ACM
460struct symbol *symbol__next_by_name(struct symbol *sym)
461{
462 struct symbol_name_rb_node *s = container_of(sym, struct symbol_name_rb_node, sym);
463 struct rb_node *n = rb_next(&s->rb_node);
464
465 return n ? &rb_entry(n, struct symbol_name_rb_node, rb_node)->sym : NULL;
466}
467
468 /*
469 * Teturns first symbol that matched with @name.
470 */
aeafcbaf 471struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
79406cd7
ACM
472 const char *name)
473{
aeafcbaf 474 return symbols__find_by_name(&dso->symbol_names[type], name);
79406cd7
ACM
475}
476
aeafcbaf 477void dso__sort_by_name(struct dso *dso, enum map_type type)
79406cd7 478{
aeafcbaf
ACM
479 dso__set_sorted_by_name(dso, type);
480 return symbols__sort_by_name(&dso->symbol_names[type],
481 &dso->symbols[type]);
79406cd7
ACM
482}
483
aeafcbaf
ACM
484size_t dso__fprintf_symbols_by_name(struct dso *dso,
485 enum map_type type, FILE *fp)
90f18e63
SD
486{
487 size_t ret = 0;
488 struct rb_node *nd;
489 struct symbol_name_rb_node *pos;
490
aeafcbaf 491 for (nd = rb_first(&dso->symbol_names[type]); nd; nd = rb_next(nd)) {
90f18e63
SD
492 pos = rb_entry(nd, struct symbol_name_rb_node, rb_node);
493 fprintf(fp, "%s\n", pos->sym.name);
494 }
495
496 return ret;
497}
498
316d70d6
AH
499int modules__parse(const char *filename, void *arg,
500 int (*process_module)(void *arg, const char *name,
501 u64 start))
502{
503 char *line = NULL;
504 size_t n;
505 FILE *file;
506 int err = 0;
507
508 file = fopen(filename, "r");
509 if (file == NULL)
510 return -1;
511
512 while (1) {
513 char name[PATH_MAX];
514 u64 start;
515 char *sep;
516 ssize_t line_len;
517
518 line_len = getline(&line, &n, file);
519 if (line_len < 0) {
520 if (feof(file))
521 break;
522 err = -1;
523 goto out;
524 }
525
526 if (!line) {
527 err = -1;
528 goto out;
529 }
530
531 line[--line_len] = '\0'; /* \n */
532
533 sep = strrchr(line, 'x');
534 if (sep == NULL)
535 continue;
536
537 hex2u64(sep + 1, &start);
538
539 sep = strchr(line, ' ');
540 if (sep == NULL)
541 continue;
542
543 *sep = '\0';
544
545 scnprintf(name, sizeof(name), "[%s]", line);
546
547 err = process_module(arg, name, start);
548 if (err)
549 break;
550 }
551out:
552 free(line);
553 fclose(file);
554 return err;
555}
556
682b335a
ACM
557struct process_kallsyms_args {
558 struct map *map;
559 struct dso *dso;
560};
561
e7110b9f
ACM
562/*
563 * These are symbols in the kernel image, so make sure that
564 * sym is from a kernel DSO.
565 */
82d1deb0
DA
566bool symbol__is_idle(struct symbol *sym)
567{
568 const char * const idle_symbols[] = {
569 "cpu_idle",
e0336ed6 570 "cpu_startup_entry",
82d1deb0
DA
571 "intel_idle",
572 "default_idle",
573 "native_safe_halt",
574 "enter_idle",
575 "exit_idle",
576 "mwait_idle",
577 "mwait_idle_with_hints",
578 "poll_idle",
579 "ppc64_runlatch_off",
580 "pseries_dedicated_idle_sleep",
581 NULL
582 };
583
584 int i;
585
586 if (!sym)
587 return false;
588
589 for (i = 0; idle_symbols[i]; i++) {
590 if (!strcmp(idle_symbols[i], sym->name))
591 return true;
592 }
593
594 return false;
595}
596
682b335a 597static int map__process_kallsym_symbol(void *arg, const char *name,
82151520 598 char type, u64 start)
682b335a
ACM
599{
600 struct symbol *sym;
601 struct process_kallsyms_args *a = arg;
602 struct rb_root *root = &a->dso->symbols[a->map->type];
603
604 if (!symbol_type__is_a(type, a->map->type))
605 return 0;
606
82151520
CS
607 /*
608 * module symbols are not sorted so we add all
609 * symbols, setting length to 0, and rely on
610 * symbols__fixup_end() to fix it up.
611 */
612 sym = symbol__new(start, 0, kallsyms2elf_type(type), name);
682b335a
ACM
613 if (sym == NULL)
614 return -ENOMEM;
615 /*
616 * We will pass the symbols to the filter later, in
617 * map__split_kallsyms, when we have split the maps per module
618 */
619 symbols__insert(root, sym);
a1645ce1 620
682b335a
ACM
621 return 0;
622}
623
624/*
625 * Loads the function entries in /proc/kallsyms into kernel_map->dso,
626 * so that we can in the next step set the symbol ->end address and then
627 * call kernel_maps__split_kallsyms.
628 */
aeafcbaf 629static int dso__load_all_kallsyms(struct dso *dso, const char *filename,
9e201442 630 struct map *map)
682b335a 631{
aeafcbaf 632 struct process_kallsyms_args args = { .map = map, .dso = dso, };
9e201442 633 return kallsyms__parse(filename, &args, map__process_kallsym_symbol);
682b335a
ACM
634}
635
8e0cf965
AH
636static int dso__split_kallsyms_for_kcore(struct dso *dso, struct map *map,
637 symbol_filter_t filter)
638{
ba92732e 639 struct map_groups *kmaps = map__kmaps(map);
8e0cf965
AH
640 struct map *curr_map;
641 struct symbol *pos;
642 int count = 0, moved = 0;
643 struct rb_root *root = &dso->symbols[map->type];
644 struct rb_node *next = rb_first(root);
645
ba92732e
WN
646 if (!kmaps)
647 return -1;
648
8e0cf965
AH
649 while (next) {
650 char *module;
651
652 pos = rb_entry(next, struct symbol, rb_node);
653 next = rb_next(&pos->rb_node);
654
655 module = strchr(pos->name, '\t');
656 if (module)
657 *module = '\0';
658
659 curr_map = map_groups__find(kmaps, map->type, pos->start);
660
661 if (!curr_map || (filter && filter(curr_map, pos))) {
facf3f06 662 rb_erase_init(&pos->rb_node, root);
8e0cf965
AH
663 symbol__delete(pos);
664 } else {
665 pos->start -= curr_map->start - curr_map->pgoff;
666 if (pos->end)
667 pos->end -= curr_map->start - curr_map->pgoff;
668 if (curr_map != map) {
facf3f06 669 rb_erase_init(&pos->rb_node, root);
8e0cf965
AH
670 symbols__insert(
671 &curr_map->dso->symbols[curr_map->type],
672 pos);
673 ++moved;
674 } else {
675 ++count;
676 }
677 }
678 }
679
680 /* Symbols have been adjusted */
681 dso->adjust_symbols = 1;
682
683 return count + moved;
684}
685
2e538c4a
ACM
686/*
687 * Split the symbols into maps, making sure there are no overlaps, i.e. the
688 * kernel range is broken in several maps, named [kernel].N, as we don't have
689 * the original ELF section names vmlinux have.
690 */
d9b62aba 691static int dso__split_kallsyms(struct dso *dso, struct map *map, u64 delta,
9de89fe7 692 symbol_filter_t filter)
2e538c4a 693{
ba92732e
WN
694 struct map_groups *kmaps = map__kmaps(map);
695 struct machine *machine;
4e06255f 696 struct map *curr_map = map;
2e538c4a 697 struct symbol *pos;
48000a1a 698 int count = 0, moved = 0;
aeafcbaf 699 struct rb_root *root = &dso->symbols[map->type];
4e06255f 700 struct rb_node *next = rb_first(root);
2e538c4a
ACM
701 int kernel_range = 0;
702
ba92732e
WN
703 if (!kmaps)
704 return -1;
705
706 machine = kmaps->machine;
707
2e538c4a
ACM
708 while (next) {
709 char *module;
710
711 pos = rb_entry(next, struct symbol, rb_node);
712 next = rb_next(&pos->rb_node);
713
714 module = strchr(pos->name, '\t');
715 if (module) {
75be6cf4 716 if (!symbol_conf.use_modules)
1de8e245
ACM
717 goto discard_symbol;
718
2e538c4a
ACM
719 *module++ = '\0';
720
b7cece76 721 if (strcmp(curr_map->dso->short_name, module)) {
a1645ce1 722 if (curr_map != map &&
aeafcbaf 723 dso->kernel == DSO_TYPE_GUEST_KERNEL &&
23346f21 724 machine__is_default_guest(machine)) {
a1645ce1
ZY
725 /*
726 * We assume all symbols of a module are
727 * continuous in * kallsyms, so curr_map
728 * points to a module and all its
729 * symbols are in its kmap. Mark it as
730 * loaded.
731 */
732 dso__set_loaded(curr_map->dso,
733 curr_map->type);
734 }
735
736 curr_map = map_groups__find_by_name(kmaps,
737 map->type, module);
4e06255f 738 if (curr_map == NULL) {
2f51903b 739 pr_debug("%s/proc/{kallsyms,modules} "
b7cece76 740 "inconsistency while looking "
a1645ce1 741 "for \"%s\" module!\n",
23346f21 742 machine->root_dir, module);
a1645ce1
ZY
743 curr_map = map;
744 goto discard_symbol;
af427bf5 745 }
b7cece76 746
a1645ce1 747 if (curr_map->dso->loaded &&
23346f21 748 !machine__is_default_guest(machine))
b7cece76 749 goto discard_symbol;
af427bf5 750 }
2e538c4a
ACM
751 /*
752 * So that we look just like we get from .ko files,
753 * i.e. not prelinked, relative to map->start.
754 */
4e06255f
ACM
755 pos->start = curr_map->map_ip(curr_map, pos->start);
756 pos->end = curr_map->map_ip(curr_map, pos->end);
757 } else if (curr_map != map) {
2e538c4a 758 char dso_name[PATH_MAX];
aeafcbaf 759 struct dso *ndso;
2e538c4a 760
d9b62aba
AH
761 if (delta) {
762 /* Kernel was relocated at boot time */
763 pos->start -= delta;
764 pos->end -= delta;
765 }
766
8a953312
ACM
767 if (count == 0) {
768 curr_map = map;
769 goto filter_symbol;
770 }
771
aeafcbaf 772 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
a1645ce1
ZY
773 snprintf(dso_name, sizeof(dso_name),
774 "[guest.kernel].%d",
775 kernel_range++);
776 else
777 snprintf(dso_name, sizeof(dso_name),
778 "[kernel].%d",
779 kernel_range++);
2e538c4a 780
aeafcbaf
ACM
781 ndso = dso__new(dso_name);
782 if (ndso == NULL)
2e538c4a
ACM
783 return -1;
784
aeafcbaf 785 ndso->kernel = dso->kernel;
a1645ce1 786
aeafcbaf 787 curr_map = map__new2(pos->start, ndso, map->type);
37fe5fcb 788 if (curr_map == NULL) {
aeafcbaf 789 dso__delete(ndso);
2e538c4a
ACM
790 return -1;
791 }
a2928c42 792
4e06255f 793 curr_map->map_ip = curr_map->unmap_ip = identity__map_ip;
9de89fe7 794 map_groups__insert(kmaps, curr_map);
2e538c4a 795 ++kernel_range;
d9b62aba
AH
796 } else if (delta) {
797 /* Kernel was relocated at boot time */
798 pos->start -= delta;
799 pos->end -= delta;
2e538c4a 800 }
8a953312 801filter_symbol:
4e06255f 802 if (filter && filter(curr_map, pos)) {
1de8e245 803discard_symbol: rb_erase(&pos->rb_node, root);
00a192b3 804 symbol__delete(pos);
2e538c4a 805 } else {
4e06255f
ACM
806 if (curr_map != map) {
807 rb_erase(&pos->rb_node, root);
808 symbols__insert(&curr_map->dso->symbols[curr_map->type], pos);
8a953312
ACM
809 ++moved;
810 } else
811 ++count;
9974f496 812 }
a2928c42
ACM
813 }
814
a1645ce1 815 if (curr_map != map &&
aeafcbaf 816 dso->kernel == DSO_TYPE_GUEST_KERNEL &&
23346f21 817 machine__is_default_guest(kmaps->machine)) {
a1645ce1
ZY
818 dso__set_loaded(curr_map->dso, curr_map->type);
819 }
820
8a953312 821 return count + moved;
2e538c4a 822}
a2928c42 823
3f067dca
ACM
824bool symbol__restricted_filename(const char *filename,
825 const char *restricted_filename)
ec80fde7
ACM
826{
827 bool restricted = false;
828
829 if (symbol_conf.kptr_restrict) {
830 char *r = realpath(filename, NULL);
831
832 if (r != NULL) {
833 restricted = strcmp(r, restricted_filename) == 0;
834 free(r);
835 return restricted;
836 }
837 }
838
839 return restricted;
840}
841
52afdaf9
AH
842struct module_info {
843 struct rb_node rb_node;
844 char *name;
845 u64 start;
8e0cf965
AH
846};
847
52afdaf9 848static void add_module(struct module_info *mi, struct rb_root *modules)
8e0cf965 849{
52afdaf9
AH
850 struct rb_node **p = &modules->rb_node;
851 struct rb_node *parent = NULL;
852 struct module_info *m;
8e0cf965 853
52afdaf9
AH
854 while (*p != NULL) {
855 parent = *p;
856 m = rb_entry(parent, struct module_info, rb_node);
857 if (strcmp(mi->name, m->name) < 0)
858 p = &(*p)->rb_left;
859 else
860 p = &(*p)->rb_right;
861 }
862 rb_link_node(&mi->rb_node, parent, p);
863 rb_insert_color(&mi->rb_node, modules);
864}
865
866static void delete_modules(struct rb_root *modules)
867{
868 struct module_info *mi;
869 struct rb_node *next = rb_first(modules);
870
871 while (next) {
872 mi = rb_entry(next, struct module_info, rb_node);
873 next = rb_next(&mi->rb_node);
874 rb_erase(&mi->rb_node, modules);
74cf249d 875 zfree(&mi->name);
52afdaf9
AH
876 free(mi);
877 }
878}
879
880static struct module_info *find_module(const char *name,
881 struct rb_root *modules)
882{
883 struct rb_node *n = modules->rb_node;
884
885 while (n) {
886 struct module_info *m;
887 int cmp;
888
889 m = rb_entry(n, struct module_info, rb_node);
890 cmp = strcmp(name, m->name);
891 if (cmp < 0)
892 n = n->rb_left;
893 else if (cmp > 0)
894 n = n->rb_right;
895 else
896 return m;
897 }
898
899 return NULL;
900}
901
902static int __read_proc_modules(void *arg, const char *name, u64 start)
903{
904 struct rb_root *modules = arg;
905 struct module_info *mi;
906
907 mi = zalloc(sizeof(struct module_info));
908 if (!mi)
8e0cf965
AH
909 return -ENOMEM;
910
52afdaf9
AH
911 mi->name = strdup(name);
912 mi->start = start;
8e0cf965 913
52afdaf9
AH
914 if (!mi->name) {
915 free(mi);
916 return -ENOMEM;
917 }
918
919 add_module(mi, modules);
920
921 return 0;
922}
923
924static int read_proc_modules(const char *filename, struct rb_root *modules)
925{
926 if (symbol__restricted_filename(filename, "/proc/modules"))
927 return -1;
928
929 if (modules__parse(filename, modules, __read_proc_modules)) {
930 delete_modules(modules);
931 return -1;
932 }
8e0cf965
AH
933
934 return 0;
935}
936
fc1b691d
AH
937int compare_proc_modules(const char *from, const char *to)
938{
939 struct rb_root from_modules = RB_ROOT;
940 struct rb_root to_modules = RB_ROOT;
941 struct rb_node *from_node, *to_node;
942 struct module_info *from_m, *to_m;
943 int ret = -1;
944
945 if (read_proc_modules(from, &from_modules))
946 return -1;
947
948 if (read_proc_modules(to, &to_modules))
949 goto out_delete_from;
950
951 from_node = rb_first(&from_modules);
952 to_node = rb_first(&to_modules);
953 while (from_node) {
954 if (!to_node)
955 break;
956
957 from_m = rb_entry(from_node, struct module_info, rb_node);
958 to_m = rb_entry(to_node, struct module_info, rb_node);
959
960 if (from_m->start != to_m->start ||
961 strcmp(from_m->name, to_m->name))
962 break;
963
964 from_node = rb_next(from_node);
965 to_node = rb_next(to_node);
966 }
967
968 if (!from_node && !to_node)
969 ret = 0;
970
971 delete_modules(&to_modules);
972out_delete_from:
973 delete_modules(&from_modules);
974
975 return ret;
976}
977
52afdaf9
AH
978static int do_validate_kcore_modules(const char *filename, struct map *map,
979 struct map_groups *kmaps)
980{
981 struct rb_root modules = RB_ROOT;
982 struct map *old_map;
983 int err;
984
985 err = read_proc_modules(filename, &modules);
986 if (err)
987 return err;
988
989 old_map = map_groups__first(kmaps, map->type);
990 while (old_map) {
991 struct map *next = map_groups__next(old_map);
992 struct module_info *mi;
993
994 if (old_map == map || old_map->start == map->start) {
995 /* The kernel map */
996 old_map = next;
997 continue;
998 }
999
1000 /* Module must be in memory at the same address */
1001 mi = find_module(old_map->dso->short_name, &modules);
1002 if (!mi || mi->start != old_map->start) {
1003 err = -EINVAL;
1004 goto out;
1005 }
1006
1007 old_map = next;
1008 }
1009out:
1010 delete_modules(&modules);
1011 return err;
1012}
1013
8e0cf965 1014/*
52afdaf9 1015 * If kallsyms is referenced by name then we look for filename in the same
8e0cf965
AH
1016 * directory.
1017 */
52afdaf9
AH
1018static bool filename_from_kallsyms_filename(char *filename,
1019 const char *base_name,
1020 const char *kallsyms_filename)
8e0cf965
AH
1021{
1022 char *name;
1023
52afdaf9
AH
1024 strcpy(filename, kallsyms_filename);
1025 name = strrchr(filename, '/');
8e0cf965
AH
1026 if (!name)
1027 return false;
1028
52afdaf9
AH
1029 name += 1;
1030
1031 if (!strcmp(name, "kallsyms")) {
1032 strcpy(name, base_name);
8e0cf965
AH
1033 return true;
1034 }
1035
1036 return false;
1037}
1038
52afdaf9
AH
1039static int validate_kcore_modules(const char *kallsyms_filename,
1040 struct map *map)
1041{
ba92732e 1042 struct map_groups *kmaps = map__kmaps(map);
52afdaf9
AH
1043 char modules_filename[PATH_MAX];
1044
ba92732e
WN
1045 if (!kmaps)
1046 return -EINVAL;
1047
52afdaf9
AH
1048 if (!filename_from_kallsyms_filename(modules_filename, "modules",
1049 kallsyms_filename))
1050 return -EINVAL;
1051
1052 if (do_validate_kcore_modules(modules_filename, map, kmaps))
1053 return -EINVAL;
1054
1055 return 0;
1056}
1057
a00d28cb
AH
1058static int validate_kcore_addresses(const char *kallsyms_filename,
1059 struct map *map)
1060{
1061 struct kmap *kmap = map__kmap(map);
1062
ba92732e
WN
1063 if (!kmap)
1064 return -EINVAL;
1065
a00d28cb
AH
1066 if (kmap->ref_reloc_sym && kmap->ref_reloc_sym->name) {
1067 u64 start;
1068
1069 start = kallsyms__get_function_start(kallsyms_filename,
1070 kmap->ref_reloc_sym->name);
1071 if (start != kmap->ref_reloc_sym->addr)
1072 return -EINVAL;
1073 }
1074
1075 return validate_kcore_modules(kallsyms_filename, map);
1076}
1077
52afdaf9
AH
1078struct kcore_mapfn_data {
1079 struct dso *dso;
1080 enum map_type type;
1081 struct list_head maps;
1082};
1083
1084static int kcore_mapfn(u64 start, u64 len, u64 pgoff, void *data)
1085{
1086 struct kcore_mapfn_data *md = data;
1087 struct map *map;
1088
1089 map = map__new2(start, md->dso, md->type);
1090 if (map == NULL)
1091 return -ENOMEM;
1092
1093 map->end = map->start + len;
1094 map->pgoff = pgoff;
1095
1096 list_add(&map->node, &md->maps);
1097
1098 return 0;
1099}
1100
8e0cf965
AH
1101static int dso__load_kcore(struct dso *dso, struct map *map,
1102 const char *kallsyms_filename)
1103{
ba92732e
WN
1104 struct map_groups *kmaps = map__kmaps(map);
1105 struct machine *machine;
8e0cf965
AH
1106 struct kcore_mapfn_data md;
1107 struct map *old_map, *new_map, *replacement_map = NULL;
1108 bool is_64_bit;
1109 int err, fd;
1110 char kcore_filename[PATH_MAX];
1111 struct symbol *sym;
1112
ba92732e
WN
1113 if (!kmaps)
1114 return -EINVAL;
1115
1116 machine = kmaps->machine;
1117
8e0cf965
AH
1118 /* This function requires that the map is the kernel map */
1119 if (map != machine->vmlinux_maps[map->type])
1120 return -EINVAL;
1121
52afdaf9
AH
1122 if (!filename_from_kallsyms_filename(kcore_filename, "kcore",
1123 kallsyms_filename))
1124 return -EINVAL;
1125
a00d28cb
AH
1126 /* Modules and kernel must be present at their original addresses */
1127 if (validate_kcore_addresses(kallsyms_filename, map))
8e0cf965
AH
1128 return -EINVAL;
1129
1130 md.dso = dso;
1131 md.type = map->type;
1132 INIT_LIST_HEAD(&md.maps);
1133
1134 fd = open(kcore_filename, O_RDONLY);
1135 if (fd < 0)
1136 return -EINVAL;
1137
1138 /* Read new maps into temporary lists */
1139 err = file__read_maps(fd, md.type == MAP__FUNCTION, kcore_mapfn, &md,
1140 &is_64_bit);
1141 if (err)
1142 goto out_err;
c6d8f2a4 1143 dso->is_64_bit = is_64_bit;
8e0cf965
AH
1144
1145 if (list_empty(&md.maps)) {
1146 err = -EINVAL;
1147 goto out_err;
1148 }
1149
1150 /* Remove old maps */
1151 old_map = map_groups__first(kmaps, map->type);
1152 while (old_map) {
1153 struct map *next = map_groups__next(old_map);
1154
1155 if (old_map != map)
1156 map_groups__remove(kmaps, old_map);
1157 old_map = next;
1158 }
1159
1160 /* Find the kernel map using the first symbol */
1161 sym = dso__first_symbol(dso, map->type);
1162 list_for_each_entry(new_map, &md.maps, node) {
1163 if (sym && sym->start >= new_map->start &&
1164 sym->start < new_map->end) {
1165 replacement_map = new_map;
1166 break;
1167 }
1168 }
1169
1170 if (!replacement_map)
1171 replacement_map = list_entry(md.maps.next, struct map, node);
1172
1173 /* Add new maps */
1174 while (!list_empty(&md.maps)) {
1175 new_map = list_entry(md.maps.next, struct map, node);
facf3f06 1176 list_del_init(&new_map->node);
8e0cf965
AH
1177 if (new_map == replacement_map) {
1178 map->start = new_map->start;
1179 map->end = new_map->end;
1180 map->pgoff = new_map->pgoff;
1181 map->map_ip = new_map->map_ip;
1182 map->unmap_ip = new_map->unmap_ip;
8e0cf965 1183 /* Ensure maps are correctly ordered */
84c2cafa 1184 map__get(map);
8e0cf965
AH
1185 map_groups__remove(kmaps, map);
1186 map_groups__insert(kmaps, map);
84c2cafa 1187 map__put(map);
8e0cf965
AH
1188 } else {
1189 map_groups__insert(kmaps, new_map);
1190 }
84c2cafa
ACM
1191
1192 map__put(new_map);
8e0cf965
AH
1193 }
1194
1195 /*
1196 * Set the data type and long name so that kcore can be read via
1197 * dso__data_read_addr().
1198 */
1199 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
5f70619d 1200 dso->binary_type = DSO_BINARY_TYPE__GUEST_KCORE;
8e0cf965 1201 else
5f70619d 1202 dso->binary_type = DSO_BINARY_TYPE__KCORE;
7e155d4d 1203 dso__set_long_name(dso, strdup(kcore_filename), true);
8e0cf965
AH
1204
1205 close(fd);
1206
1207 if (map->type == MAP__FUNCTION)
1208 pr_debug("Using %s for kernel object code\n", kcore_filename);
1209 else
1210 pr_debug("Using %s for kernel data\n", kcore_filename);
1211
1212 return 0;
1213
1214out_err:
1215 while (!list_empty(&md.maps)) {
1216 map = list_entry(md.maps.next, struct map, node);
facf3f06 1217 list_del_init(&map->node);
84c2cafa 1218 map__put(map);
8e0cf965
AH
1219 }
1220 close(fd);
1221 return -EINVAL;
1222}
1223
d9b62aba
AH
1224/*
1225 * If the kernel is relocated at boot time, kallsyms won't match. Compute the
1226 * delta based on the relocation reference symbol.
1227 */
1228static int kallsyms__delta(struct map *map, const char *filename, u64 *delta)
1229{
1230 struct kmap *kmap = map__kmap(map);
1231 u64 addr;
1232
ba92732e
WN
1233 if (!kmap)
1234 return -1;
1235
d9b62aba
AH
1236 if (!kmap->ref_reloc_sym || !kmap->ref_reloc_sym->name)
1237 return 0;
1238
1239 addr = kallsyms__get_function_start(filename,
1240 kmap->ref_reloc_sym->name);
1241 if (!addr)
1242 return -1;
1243
1244 *delta = addr - kmap->ref_reloc_sym->addr;
1245 return 0;
1246}
1247
aeafcbaf 1248int dso__load_kallsyms(struct dso *dso, const char *filename,
9de89fe7 1249 struct map *map, symbol_filter_t filter)
2e538c4a 1250{
d9b62aba
AH
1251 u64 delta = 0;
1252
ec80fde7
ACM
1253 if (symbol__restricted_filename(filename, "/proc/kallsyms"))
1254 return -1;
1255
aeafcbaf 1256 if (dso__load_all_kallsyms(dso, filename, map) < 0)
2e538c4a
ACM
1257 return -1;
1258
d9b62aba
AH
1259 if (kallsyms__delta(map, filename, &delta))
1260 return -1;
1261
694bf407 1262 symbols__fixup_duplicate(&dso->symbols[map->type]);
3f5a4272
AB
1263 symbols__fixup_end(&dso->symbols[map->type]);
1264
aeafcbaf 1265 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
44f24cb3 1266 dso->symtab_type = DSO_BINARY_TYPE__GUEST_KALLSYMS;
a1645ce1 1267 else
44f24cb3 1268 dso->symtab_type = DSO_BINARY_TYPE__KALLSYMS;
2e538c4a 1269
8e0cf965
AH
1270 if (!dso__load_kcore(dso, map, filename))
1271 return dso__split_kallsyms_for_kcore(dso, map, filter);
1272 else
d9b62aba 1273 return dso__split_kallsyms(dso, map, delta, filter);
af427bf5
ACM
1274}
1275
aeafcbaf 1276static int dso__load_perf_map(struct dso *dso, struct map *map,
6beba7ad 1277 symbol_filter_t filter)
80d496be
PE
1278{
1279 char *line = NULL;
1280 size_t n;
1281 FILE *file;
1282 int nr_syms = 0;
1283
aeafcbaf 1284 file = fopen(dso->long_name, "r");
80d496be
PE
1285 if (file == NULL)
1286 goto out_failure;
1287
1288 while (!feof(file)) {
9cffa8d5 1289 u64 start, size;
80d496be
PE
1290 struct symbol *sym;
1291 int line_len, len;
1292
1293 line_len = getline(&line, &n, file);
1294 if (line_len < 0)
1295 break;
1296
1297 if (!line)
1298 goto out_failure;
1299
1300 line[--line_len] = '\0'; /* \n */
1301
1302 len = hex2u64(line, &start);
1303
1304 len++;
1305 if (len + 2 >= line_len)
1306 continue;
1307
1308 len += hex2u64(line + len, &size);
1309
1310 len++;
1311 if (len + 2 >= line_len)
1312 continue;
1313
c408fedf 1314 sym = symbol__new(start, size, STB_GLOBAL, line + len);
80d496be
PE
1315
1316 if (sym == NULL)
1317 goto out_delete_line;
1318
439d473b 1319 if (filter && filter(map, sym))
00a192b3 1320 symbol__delete(sym);
80d496be 1321 else {
aeafcbaf 1322 symbols__insert(&dso->symbols[map->type], sym);
80d496be
PE
1323 nr_syms++;
1324 }
1325 }
1326
1327 free(line);
1328 fclose(file);
1329
1330 return nr_syms;
1331
1332out_delete_line:
1333 free(line);
1334out_failure:
1335 return -1;
1336}
1337
1029f9fe
NK
1338static bool dso__is_compatible_symtab_type(struct dso *dso, bool kmod,
1339 enum dso_binary_type type)
1340{
1341 switch (type) {
1342 case DSO_BINARY_TYPE__JAVA_JIT:
1343 case DSO_BINARY_TYPE__DEBUGLINK:
1344 case DSO_BINARY_TYPE__SYSTEM_PATH_DSO:
1345 case DSO_BINARY_TYPE__FEDORA_DEBUGINFO:
1346 case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO:
1347 case DSO_BINARY_TYPE__BUILDID_DEBUGINFO:
1348 case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO:
1349 return !kmod && dso->kernel == DSO_TYPE_USER;
1350
1351 case DSO_BINARY_TYPE__KALLSYMS:
1352 case DSO_BINARY_TYPE__VMLINUX:
1353 case DSO_BINARY_TYPE__KCORE:
1354 return dso->kernel == DSO_TYPE_KERNEL;
1355
1356 case DSO_BINARY_TYPE__GUEST_KALLSYMS:
1357 case DSO_BINARY_TYPE__GUEST_VMLINUX:
1358 case DSO_BINARY_TYPE__GUEST_KCORE:
1359 return dso->kernel == DSO_TYPE_GUEST_KERNEL;
1360
1361 case DSO_BINARY_TYPE__GUEST_KMODULE:
c00c48fc 1362 case DSO_BINARY_TYPE__GUEST_KMODULE_COMP:
1029f9fe 1363 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE:
c00c48fc 1364 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP:
1029f9fe
NK
1365 /*
1366 * kernel modules know their symtab type - it's set when
9f2de315 1367 * creating a module dso in machine__findnew_module_map().
1029f9fe
NK
1368 */
1369 return kmod && dso->symtab_type == type;
1370
1371 case DSO_BINARY_TYPE__BUILD_ID_CACHE:
1372 return true;
1373
1374 case DSO_BINARY_TYPE__NOT_FOUND:
1375 default:
1376 return false;
1377 }
1378}
1379
aeafcbaf 1380int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter)
a2928c42 1381{
c338aee8 1382 char *name;
a2928c42 1383 int ret = -1;
44f24cb3 1384 u_int i;
23346f21 1385 struct machine *machine;
44f24cb3 1386 char *root_dir = (char *) "";
3aafe5ae
CS
1387 int ss_pos = 0;
1388 struct symsrc ss_[2];
1389 struct symsrc *syms_ss = NULL, *runtime_ss = NULL;
1029f9fe 1390 bool kmod;
a2928c42 1391
4a936edc
NK
1392 pthread_mutex_lock(&dso->lock);
1393
1394 /* check again under the dso->lock */
1395 if (dso__loaded(dso, map->type)) {
1396 ret = 1;
1397 goto out;
1398 }
66bd8424 1399
4a936edc
NK
1400 if (dso->kernel) {
1401 if (dso->kernel == DSO_TYPE_KERNEL)
1402 ret = dso__load_kernel_sym(dso, map, filter);
1403 else if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
1404 ret = dso__load_guest_kernel_sym(dso, map, filter);
1405
1406 goto out;
1407 }
a1645ce1 1408
23346f21
ACM
1409 if (map->groups && map->groups->machine)
1410 machine = map->groups->machine;
a1645ce1 1411 else
23346f21 1412 machine = NULL;
c338aee8 1413
aeafcbaf 1414 dso->adjust_symbols = 0;
f5812a7a 1415
aeafcbaf 1416 if (strncmp(dso->name, "/tmp/perf-", 10) == 0) {
981c1252
PE
1417 struct stat st;
1418
e9b52ef2 1419 if (lstat(dso->name, &st) < 0)
4a936edc 1420 goto out;
981c1252
PE
1421
1422 if (st.st_uid && (st.st_uid != geteuid())) {
1423 pr_warning("File %s not owned by current user or root, "
1424 "ignoring it.\n", dso->name);
4a936edc 1425 goto out;
981c1252
PE
1426 }
1427
aeafcbaf 1428 ret = dso__load_perf_map(dso, map, filter);
44f24cb3
JO
1429 dso->symtab_type = ret > 0 ? DSO_BINARY_TYPE__JAVA_JIT :
1430 DSO_BINARY_TYPE__NOT_FOUND;
4a936edc 1431 goto out;
94cb9e38
ACM
1432 }
1433
44f24cb3
JO
1434 if (machine)
1435 root_dir = machine->root_dir;
1436
164c800e
DA
1437 name = malloc(PATH_MAX);
1438 if (!name)
4a936edc 1439 goto out;
164c800e 1440
1029f9fe 1441 kmod = dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE ||
c00c48fc
NK
1442 dso->symtab_type == DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP ||
1443 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE ||
1444 dso->symtab_type == DSO_BINARY_TYPE__GUEST_KMODULE_COMP;
1029f9fe
NK
1445
1446 /*
1447 * Iterate over candidate debug images.
3aafe5ae
CS
1448 * Keep track of "interesting" ones (those which have a symtab, dynsym,
1449 * and/or opd section) for processing.
6da80ce8 1450 */
44f24cb3 1451 for (i = 0; i < DSO_BINARY_TYPE__SYMTAB_CNT; i++) {
3aafe5ae
CS
1452 struct symsrc *ss = &ss_[ss_pos];
1453 bool next_slot = false;
6da80ce8 1454
005f9294 1455 enum dso_binary_type symtab_type = binary_type_symtab[i];
ec5761ea 1456
1029f9fe
NK
1457 if (!dso__is_compatible_symtab_type(dso, kmod, symtab_type))
1458 continue;
1459
ee4e9625
ACM
1460 if (dso__read_binary_type_filename(dso, symtab_type,
1461 root_dir, name, PATH_MAX))
44f24cb3 1462 continue;
6da80ce8
DM
1463
1464 /* Name is now the name of the next image to try */
3aafe5ae 1465 if (symsrc__init(ss, dso, name, symtab_type) < 0)
6da80ce8 1466 continue;
a2928c42 1467
3aafe5ae
CS
1468 if (!syms_ss && symsrc__has_symtab(ss)) {
1469 syms_ss = ss;
1470 next_slot = true;
0058aef6
AH
1471 if (!dso->symsrc_filename)
1472 dso->symsrc_filename = strdup(name);
d26cd12b
CS
1473 }
1474
3aafe5ae
CS
1475 if (!runtime_ss && symsrc__possibly_runtime(ss)) {
1476 runtime_ss = ss;
1477 next_slot = true;
a44f605b 1478 }
a2928c42 1479
3aafe5ae
CS
1480 if (next_slot) {
1481 ss_pos++;
33ff581e 1482
3aafe5ae
CS
1483 if (syms_ss && runtime_ss)
1484 break;
98e9f03b
NK
1485 } else {
1486 symsrc__destroy(ss);
6da80ce8 1487 }
3aafe5ae 1488
a25e46c4 1489 }
6da80ce8 1490
3aafe5ae
CS
1491 if (!runtime_ss && !syms_ss)
1492 goto out_free;
1493
1494 if (runtime_ss && !syms_ss) {
1495 syms_ss = runtime_ss;
1496 }
1497
1498 /* We'll have to hope for the best */
1499 if (!runtime_ss && syms_ss)
1500 runtime_ss = syms_ss;
1501
1029f9fe
NK
1502 if (syms_ss)
1503 ret = dso__load_sym(dso, map, syms_ss, runtime_ss, filter, kmod);
1504 else
3aafe5ae
CS
1505 ret = -1;
1506
f47b58b7 1507 if (ret > 0) {
3aafe5ae
CS
1508 int nr_plt;
1509
1510 nr_plt = dso__synthesize_plt_symbols(dso, runtime_ss, map, filter);
1511 if (nr_plt > 0)
1512 ret += nr_plt;
60e4b10c
ACM
1513 }
1514
3aafe5ae
CS
1515 for (; ss_pos > 0; ss_pos--)
1516 symsrc__destroy(&ss_[ss_pos - 1]);
1517out_free:
a2928c42 1518 free(name);
aeafcbaf 1519 if (ret < 0 && strstr(dso->name, " (deleted)") != NULL)
4a936edc
NK
1520 ret = 0;
1521out:
1522 dso__set_loaded(dso, map->type);
1523 pthread_mutex_unlock(&dso->lock);
1524
a2928c42
ACM
1525 return ret;
1526}
1527
aeafcbaf 1528struct map *map_groups__find_by_name(struct map_groups *mg,
79406cd7 1529 enum map_type type, const char *name)
439d473b 1530{
1eee78ae 1531 struct maps *maps = &mg->maps[type];
4bb7123d 1532 struct map *map;
439d473b 1533
6a2ffcdd
ACM
1534 pthread_rwlock_rdlock(&maps->lock);
1535
4bb7123d 1536 for (map = maps__first(maps); map; map = map__next(map)) {
b7cece76 1537 if (map->dso && strcmp(map->dso->short_name, name) == 0)
6a2ffcdd 1538 goto out_unlock;
439d473b
ACM
1539 }
1540
6a2ffcdd
ACM
1541 map = NULL;
1542
1543out_unlock:
1544 pthread_rwlock_unlock(&maps->lock);
1545 return map;
439d473b
ACM
1546}
1547
aeafcbaf 1548int dso__load_vmlinux(struct dso *dso, struct map *map,
5230fb7d
ACM
1549 const char *vmlinux, bool vmlinux_allocated,
1550 symbol_filter_t filter)
a2928c42 1551{
b68e2f91
CS
1552 int err = -1;
1553 struct symsrc ss;
ec5761ea 1554 char symfs_vmlinux[PATH_MAX];
005f9294 1555 enum dso_binary_type symtab_type;
a2928c42 1556
5698d2c9
NK
1557 if (vmlinux[0] == '/')
1558 snprintf(symfs_vmlinux, sizeof(symfs_vmlinux), "%s", vmlinux);
1559 else
972f393b 1560 symbol__join_symfs(symfs_vmlinux, vmlinux);
a2928c42 1561
21ea4539 1562 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
005f9294 1563 symtab_type = DSO_BINARY_TYPE__GUEST_VMLINUX;
21ea4539 1564 else
005f9294 1565 symtab_type = DSO_BINARY_TYPE__VMLINUX;
21ea4539 1566
005f9294 1567 if (symsrc__init(&ss, dso, symfs_vmlinux, symtab_type))
b68e2f91
CS
1568 return -1;
1569
261360b6 1570 err = dso__load_sym(dso, map, &ss, &ss, filter, 0);
b68e2f91 1571 symsrc__destroy(&ss);
a2928c42 1572
515850e4 1573 if (err > 0) {
39b12f78 1574 if (dso->kernel == DSO_TYPE_GUEST_KERNEL)
5f70619d 1575 dso->binary_type = DSO_BINARY_TYPE__GUEST_VMLINUX;
39b12f78 1576 else
5f70619d 1577 dso->binary_type = DSO_BINARY_TYPE__VMLINUX;
bf4414ae 1578 dso__set_long_name(dso, vmlinux, vmlinux_allocated);
515850e4 1579 dso__set_loaded(dso, map->type);
ec5761ea 1580 pr_debug("Using %s for symbols\n", symfs_vmlinux);
515850e4 1581 }
3846df2e 1582
a2928c42
ACM
1583 return err;
1584}
1585
aeafcbaf 1586int dso__load_vmlinux_path(struct dso *dso, struct map *map,
9de89fe7 1587 symbol_filter_t filter)
a19afe46
ACM
1588{
1589 int i, err = 0;
00dc8657 1590 char *filename = NULL;
a19afe46 1591
00dc8657
NK
1592 if (!symbol_conf.ignore_vmlinux_buildid)
1593 filename = dso__build_id_filename(dso, NULL, 0);
5ad90e4e 1594 if (filename != NULL) {
5230fb7d
ACM
1595 err = dso__load_vmlinux(dso, map, filename, true, filter);
1596 if (err > 0)
5ad90e4e 1597 goto out;
5ad90e4e
ACM
1598 free(filename);
1599 }
a19afe46 1600
00dc8657
NK
1601 pr_debug("Looking at the vmlinux_path (%d entries long)\n",
1602 vmlinux_path__nr_entries + 1);
1603
a19afe46 1604 for (i = 0; i < vmlinux_path__nr_entries; ++i) {
5230fb7d
ACM
1605 err = dso__load_vmlinux(dso, map, vmlinux_path[i], false, filter);
1606 if (err > 0)
a19afe46 1607 break;
a19afe46 1608 }
5ad90e4e 1609out:
a19afe46
ACM
1610 return err;
1611}
1612
0544d422
AH
1613static int find_matching_kcore(struct map *map, char *dir, size_t dir_sz)
1614{
1615 char kallsyms_filename[PATH_MAX];
1616 struct dirent *dent;
1617 int ret = -1;
1618 DIR *d;
1619
1620 d = opendir(dir);
1621 if (!d)
1622 return -1;
1623
1624 while (1) {
1625 dent = readdir(d);
1626 if (!dent)
1627 break;
1628 if (dent->d_type != DT_DIR)
1629 continue;
1630 scnprintf(kallsyms_filename, sizeof(kallsyms_filename),
1631 "%s/%s/kallsyms", dir, dent->d_name);
a00d28cb 1632 if (!validate_kcore_addresses(kallsyms_filename, map)) {
0544d422
AH
1633 strlcpy(dir, kallsyms_filename, dir_sz);
1634 ret = 0;
1635 break;
1636 }
1637 }
1638
1639 closedir(d);
1640
1641 return ret;
1642}
1643
1644static char *dso__find_kallsyms(struct dso *dso, struct map *map)
1645{
1646 u8 host_build_id[BUILD_ID_SIZE];
1647 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
1648 bool is_host = false;
1649 char path[PATH_MAX];
1650
1651 if (!dso->has_build_id) {
1652 /*
1653 * Last resort, if we don't have a build-id and couldn't find
1654 * any vmlinux file, try the running kernel kallsyms table.
1655 */
1656 goto proc_kallsyms;
1657 }
1658
1659 if (sysfs__read_build_id("/sys/kernel/notes", host_build_id,
1660 sizeof(host_build_id)) == 0)
1661 is_host = dso__build_id_equal(dso, host_build_id);
1662
1663 build_id__sprintf(dso->build_id, sizeof(dso->build_id), sbuild_id);
1664
449867e3
AH
1665 scnprintf(path, sizeof(path), "%s/[kernel.kcore]/%s", buildid_dir,
1666 sbuild_id);
1667
0544d422
AH
1668 /* Use /proc/kallsyms if possible */
1669 if (is_host) {
1670 DIR *d;
1671 int fd;
1672
1673 /* If no cached kcore go with /proc/kallsyms */
0544d422
AH
1674 d = opendir(path);
1675 if (!d)
1676 goto proc_kallsyms;
1677 closedir(d);
1678
1679 /*
1680 * Do not check the build-id cache, until we know we cannot use
1681 * /proc/kcore.
1682 */
1683 fd = open("/proc/kcore", O_RDONLY);
1684 if (fd != -1) {
1685 close(fd);
1686 /* If module maps match go with /proc/kallsyms */
a00d28cb 1687 if (!validate_kcore_addresses("/proc/kallsyms", map))
0544d422
AH
1688 goto proc_kallsyms;
1689 }
1690
1691 /* Find kallsyms in build-id cache with kcore */
1692 if (!find_matching_kcore(map, path, sizeof(path)))
1693 return strdup(path);
1694
1695 goto proc_kallsyms;
1696 }
1697
449867e3
AH
1698 /* Find kallsyms in build-id cache with kcore */
1699 if (!find_matching_kcore(map, path, sizeof(path)))
1700 return strdup(path);
1701
0544d422
AH
1702 scnprintf(path, sizeof(path), "%s/[kernel.kallsyms]/%s",
1703 buildid_dir, sbuild_id);
1704
1705 if (access(path, F_OK)) {
1706 pr_err("No kallsyms or vmlinux with build-id %s was found\n",
1707 sbuild_id);
1708 return NULL;
1709 }
1710
1711 return strdup(path);
1712
1713proc_kallsyms:
1714 return strdup("/proc/kallsyms");
1715}
1716
aeafcbaf 1717static int dso__load_kernel_sym(struct dso *dso, struct map *map,
9de89fe7 1718 symbol_filter_t filter)
a827c875 1719{
cc612d81 1720 int err;
9e201442
ACM
1721 const char *kallsyms_filename = NULL;
1722 char *kallsyms_allocated_filename = NULL;
dc8d6ab2 1723 /*
b226a5a7
DA
1724 * Step 1: if the user specified a kallsyms or vmlinux filename, use
1725 * it and only it, reporting errors to the user if it cannot be used.
dc8d6ab2
ACM
1726 *
1727 * For instance, try to analyse an ARM perf.data file _without_ a
1728 * build-id, or if the user specifies the wrong path to the right
1729 * vmlinux file, obviously we can't fallback to another vmlinux (a
1730 * x86_86 one, on the machine where analysis is being performed, say),
1731 * or worse, /proc/kallsyms.
1732 *
1733 * If the specified file _has_ a build-id and there is a build-id
1734 * section in the perf.data file, we will still do the expected
1735 * validation in dso__load_vmlinux and will bail out if they don't
1736 * match.
1737 */
b226a5a7
DA
1738 if (symbol_conf.kallsyms_name != NULL) {
1739 kallsyms_filename = symbol_conf.kallsyms_name;
1740 goto do_kallsyms;
1741 }
1742
fc2be696 1743 if (!symbol_conf.ignore_vmlinux && symbol_conf.vmlinux_name != NULL) {
5230fb7d
ACM
1744 return dso__load_vmlinux(dso, map, symbol_conf.vmlinux_name,
1745 false, filter);
dc8d6ab2 1746 }
cc612d81 1747
fc2be696 1748 if (!symbol_conf.ignore_vmlinux && vmlinux_path != NULL) {
aeafcbaf 1749 err = dso__load_vmlinux_path(dso, map, filter);
a19afe46 1750 if (err > 0)
39b12f78 1751 return err;
cc612d81
ACM
1752 }
1753
ec5761ea
DA
1754 /* do not try local files if a symfs was given */
1755 if (symbol_conf.symfs[0] != 0)
1756 return -1;
1757
0544d422
AH
1758 kallsyms_allocated_filename = dso__find_kallsyms(dso, map);
1759 if (!kallsyms_allocated_filename)
1760 return -1;
19fc2ded 1761
0544d422 1762 kallsyms_filename = kallsyms_allocated_filename;
439d473b 1763
cc612d81 1764do_kallsyms:
aeafcbaf 1765 err = dso__load_kallsyms(dso, kallsyms_filename, map, filter);
3846df2e
ACM
1766 if (err > 0)
1767 pr_debug("Using %s for symbols\n", kallsyms_filename);
dc8d6ab2 1768 free(kallsyms_allocated_filename);
439d473b 1769
8e0cf965 1770 if (err > 0 && !dso__is_kcore(dso)) {
bdac0bcf 1771 dso->binary_type = DSO_BINARY_TYPE__KALLSYMS;
bf4414ae 1772 dso__set_long_name(dso, "[kernel.kallsyms]", false);
6a4694a4
ACM
1773 map__fixup_start(map);
1774 map__fixup_end(map);
439d473b 1775 }
94cb9e38 1776
a827c875
ACM
1777 return err;
1778}
1779
aeafcbaf
ACM
1780static int dso__load_guest_kernel_sym(struct dso *dso, struct map *map,
1781 symbol_filter_t filter)
a1645ce1
ZY
1782{
1783 int err;
1784 const char *kallsyms_filename = NULL;
23346f21 1785 struct machine *machine;
a1645ce1
ZY
1786 char path[PATH_MAX];
1787
1788 if (!map->groups) {
1789 pr_debug("Guest kernel map hasn't the point to groups\n");
1790 return -1;
1791 }
23346f21 1792 machine = map->groups->machine;
a1645ce1 1793
23346f21 1794 if (machine__is_default_guest(machine)) {
a1645ce1
ZY
1795 /*
1796 * if the user specified a vmlinux filename, use it and only
1797 * it, reporting errors to the user if it cannot be used.
1798 * Or use file guest_kallsyms inputted by user on commandline
1799 */
1800 if (symbol_conf.default_guest_vmlinux_name != NULL) {
aeafcbaf 1801 err = dso__load_vmlinux(dso, map,
5230fb7d
ACM
1802 symbol_conf.default_guest_vmlinux_name,
1803 false, filter);
39b12f78 1804 return err;
a1645ce1
ZY
1805 }
1806
1807 kallsyms_filename = symbol_conf.default_guest_kallsyms;
1808 if (!kallsyms_filename)
1809 return -1;
1810 } else {
23346f21 1811 sprintf(path, "%s/proc/kallsyms", machine->root_dir);
a1645ce1
ZY
1812 kallsyms_filename = path;
1813 }
1814
aeafcbaf 1815 err = dso__load_kallsyms(dso, kallsyms_filename, map, filter);
8e0cf965 1816 if (err > 0)
39b12f78 1817 pr_debug("Using %s for symbols\n", kallsyms_filename);
8e0cf965 1818 if (err > 0 && !dso__is_kcore(dso)) {
bdac0bcf 1819 dso->binary_type = DSO_BINARY_TYPE__GUEST_KALLSYMS;
39b12f78 1820 machine__mmap_name(machine, path, sizeof(path));
7e155d4d 1821 dso__set_long_name(dso, strdup(path), true);
a1645ce1
ZY
1822 map__fixup_start(map);
1823 map__fixup_end(map);
1824 }
1825
1826 return err;
1827}
cd84c2ac 1828
cc612d81
ACM
1829static void vmlinux_path__exit(void)
1830{
04662523
ACM
1831 while (--vmlinux_path__nr_entries >= 0)
1832 zfree(&vmlinux_path[vmlinux_path__nr_entries]);
c4f03547 1833 vmlinux_path__nr_entries = 0;
cc612d81 1834
04662523 1835 zfree(&vmlinux_path);
cc612d81
ACM
1836}
1837
0a7e6d1b 1838static int vmlinux_path__init(struct perf_session_env *env)
cc612d81
ACM
1839{
1840 struct utsname uts;
1841 char bf[PATH_MAX];
0a7e6d1b 1842 char *kernel_version;
cc612d81 1843
c657f423 1844 vmlinux_path = malloc(sizeof(char *) * 6);
cc612d81
ACM
1845 if (vmlinux_path == NULL)
1846 return -1;
1847
1848 vmlinux_path[vmlinux_path__nr_entries] = strdup("vmlinux");
1849 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1850 goto out_fail;
1851 ++vmlinux_path__nr_entries;
1852 vmlinux_path[vmlinux_path__nr_entries] = strdup("/boot/vmlinux");
1853 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1854 goto out_fail;
1855 ++vmlinux_path__nr_entries;
ec5761ea 1856
0a7e6d1b 1857 /* only try kernel version if no symfs was given */
ec5761ea
DA
1858 if (symbol_conf.symfs[0] != 0)
1859 return 0;
1860
0a7e6d1b
NK
1861 if (env) {
1862 kernel_version = env->os_release;
1863 } else {
1864 if (uname(&uts) < 0)
1865 goto out_fail;
1866
1867 kernel_version = uts.release;
1868 }
ec5761ea 1869
0a7e6d1b 1870 snprintf(bf, sizeof(bf), "/boot/vmlinux-%s", kernel_version);
cc612d81
ACM
1871 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1872 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1873 goto out_fail;
1874 ++vmlinux_path__nr_entries;
c657f423
AB
1875 snprintf(bf, sizeof(bf), "/usr/lib/debug/boot/vmlinux-%s",
1876 kernel_version);
1877 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1878 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1879 goto out_fail;
1880 ++vmlinux_path__nr_entries;
0a7e6d1b 1881 snprintf(bf, sizeof(bf), "/lib/modules/%s/build/vmlinux", kernel_version);
cc612d81
ACM
1882 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1883 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1884 goto out_fail;
1885 ++vmlinux_path__nr_entries;
1886 snprintf(bf, sizeof(bf), "/usr/lib/debug/lib/modules/%s/vmlinux",
0a7e6d1b 1887 kernel_version);
cc612d81
ACM
1888 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1889 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1890 goto out_fail;
1891 ++vmlinux_path__nr_entries;
1892
1893 return 0;
1894
1895out_fail:
1896 vmlinux_path__exit();
1897 return -1;
1898}
1899
3bfe5f81 1900int setup_list(struct strlist **list, const char *list_str,
655000e7
ACM
1901 const char *list_name)
1902{
1903 if (list_str == NULL)
1904 return 0;
1905
1906 *list = strlist__new(true, list_str);
1907 if (!*list) {
1908 pr_err("problems parsing %s list\n", list_name);
1909 return -1;
1910 }
1911 return 0;
1912}
1913
e03eaa40
DA
1914int setup_intlist(struct intlist **list, const char *list_str,
1915 const char *list_name)
1916{
1917 if (list_str == NULL)
1918 return 0;
1919
1920 *list = intlist__new(list_str);
1921 if (!*list) {
1922 pr_err("problems parsing %s list\n", list_name);
1923 return -1;
1924 }
1925 return 0;
1926}
1927
ec80fde7
ACM
1928static bool symbol__read_kptr_restrict(void)
1929{
1930 bool value = false;
1931
1932 if (geteuid() != 0) {
1933 FILE *fp = fopen("/proc/sys/kernel/kptr_restrict", "r");
1934 if (fp != NULL) {
1935 char line[8];
1936
1937 if (fgets(line, sizeof(line), fp) != NULL)
1938 value = atoi(line) != 0;
1939
1940 fclose(fp);
1941 }
1942 }
1943
1944 return value;
1945}
1946
0a7e6d1b 1947int symbol__init(struct perf_session_env *env)
2446042c 1948{
ec5761ea
DA
1949 const char *symfs;
1950
85e00b55
JZ
1951 if (symbol_conf.initialized)
1952 return 0;
1953
9ac3e487 1954 symbol_conf.priv_size = PERF_ALIGN(symbol_conf.priv_size, sizeof(u64));
4d439517 1955
166ccc9c
NK
1956 symbol__elf_init();
1957
75be6cf4
ACM
1958 if (symbol_conf.sort_by_name)
1959 symbol_conf.priv_size += (sizeof(struct symbol_name_rb_node) -
1960 sizeof(struct symbol));
b32d133a 1961
0a7e6d1b 1962 if (symbol_conf.try_vmlinux_path && vmlinux_path__init(env) < 0)
2446042c
ACM
1963 return -1;
1964
c410a338
ACM
1965 if (symbol_conf.field_sep && *symbol_conf.field_sep == '.') {
1966 pr_err("'.' is the only non valid --field-separator argument\n");
1967 return -1;
1968 }
1969
655000e7
ACM
1970 if (setup_list(&symbol_conf.dso_list,
1971 symbol_conf.dso_list_str, "dso") < 0)
1972 return -1;
1973
1974 if (setup_list(&symbol_conf.comm_list,
1975 symbol_conf.comm_list_str, "comm") < 0)
1976 goto out_free_dso_list;
1977
e03eaa40
DA
1978 if (setup_intlist(&symbol_conf.pid_list,
1979 symbol_conf.pid_list_str, "pid") < 0)
1980 goto out_free_comm_list;
1981
1982 if (setup_intlist(&symbol_conf.tid_list,
1983 symbol_conf.tid_list_str, "tid") < 0)
1984 goto out_free_pid_list;
1985
655000e7
ACM
1986 if (setup_list(&symbol_conf.sym_list,
1987 symbol_conf.sym_list_str, "symbol") < 0)
e03eaa40 1988 goto out_free_tid_list;
655000e7 1989
ec5761ea
DA
1990 /*
1991 * A path to symbols of "/" is identical to ""
1992 * reset here for simplicity.
1993 */
1994 symfs = realpath(symbol_conf.symfs, NULL);
1995 if (symfs == NULL)
1996 symfs = symbol_conf.symfs;
1997 if (strcmp(symfs, "/") == 0)
1998 symbol_conf.symfs = "";
1999 if (symfs != symbol_conf.symfs)
2000 free((void *)symfs);
2001
ec80fde7
ACM
2002 symbol_conf.kptr_restrict = symbol__read_kptr_restrict();
2003
85e00b55 2004 symbol_conf.initialized = true;
4aa65636 2005 return 0;
655000e7 2006
e03eaa40
DA
2007out_free_tid_list:
2008 intlist__delete(symbol_conf.tid_list);
2009out_free_pid_list:
2010 intlist__delete(symbol_conf.pid_list);
655000e7
ACM
2011out_free_comm_list:
2012 strlist__delete(symbol_conf.comm_list);
d74c896b
NK
2013out_free_dso_list:
2014 strlist__delete(symbol_conf.dso_list);
655000e7 2015 return -1;
4aa65636
ACM
2016}
2017
d65a458b
ACM
2018void symbol__exit(void)
2019{
85e00b55
JZ
2020 if (!symbol_conf.initialized)
2021 return;
d65a458b
ACM
2022 strlist__delete(symbol_conf.sym_list);
2023 strlist__delete(symbol_conf.dso_list);
2024 strlist__delete(symbol_conf.comm_list);
e03eaa40
DA
2025 intlist__delete(symbol_conf.tid_list);
2026 intlist__delete(symbol_conf.pid_list);
d65a458b
ACM
2027 vmlinux_path__exit();
2028 symbol_conf.sym_list = symbol_conf.dso_list = symbol_conf.comm_list = NULL;
85e00b55 2029 symbol_conf.initialized = false;
d65a458b 2030}