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