]> bbs.cooldavid.org Git - net-next-2.6.git/blame - tools/perf/util/symbol.c
perf record: Stop intercepting events, use postprocessing to get build-ids
[net-next-2.6.git] / tools / perf / util / symbol.c
CommitLineData
a2928c42
ACM
1#include "util.h"
2#include "../perf.h"
655000e7 3#include "sort.h"
a0055ae2 4#include "string.h"
a2928c42 5#include "symbol.h"
439d473b 6#include "thread.h"
a2928c42 7
8f28827a
FW
8#include "debug.h"
9
b32d133a 10#include <asm/bug.h>
a2928c42
ACM
11#include <libelf.h>
12#include <gelf.h>
13#include <elf.h>
f1617b40 14#include <limits.h>
439d473b 15#include <sys/utsname.h>
2cdbc46d 16
c12e15e7
ACM
17#ifndef NT_GNU_BUILD_ID
18#define NT_GNU_BUILD_ID 3
19#endif
20
94cb9e38
ACM
21enum dso_origin {
22 DSO__ORIG_KERNEL = 0,
23 DSO__ORIG_JAVA_JIT,
4cf40131 24 DSO__ORIG_BUILD_ID_CACHE,
94cb9e38
ACM
25 DSO__ORIG_FEDORA,
26 DSO__ORIG_UBUNTU,
27 DSO__ORIG_BUILDID,
28 DSO__ORIG_DSO,
439d473b 29 DSO__ORIG_KMODULE,
94cb9e38
ACM
30 DSO__ORIG_NOT_FOUND,
31};
32
b0da954a 33static void dsos__add(struct list_head *head, struct dso *dso);
3610583c 34static struct map *map__new2(u64 start, struct dso *dso, enum map_type type);
c338aee8 35static int dso__load_kernel_sym(struct dso *self, struct map *map,
9de89fe7 36 symbol_filter_t filter);
cc612d81
ACM
37static int vmlinux_path__nr_entries;
38static char **vmlinux_path;
439d473b 39
75be6cf4 40struct symbol_conf symbol_conf = {
d599db3f 41 .exclude_other = true,
b32d133a
ACM
42 .use_modules = true,
43 .try_vmlinux_path = true,
44};
45
3610583c
ACM
46bool dso__loaded(const struct dso *self, enum map_type type)
47{
48 return self->loaded & (1 << type);
49}
50
79406cd7
ACM
51bool dso__sorted_by_name(const struct dso *self, enum map_type type)
52{
53 return self->sorted_by_name & (1 << type);
54}
55
79406cd7
ACM
56static void dso__set_sorted_by_name(struct dso *self, enum map_type type)
57{
58 self->sorted_by_name |= (1 << type);
59}
60
36a3e646 61bool symbol_type__is_a(char symbol_type, enum map_type map_type)
6893d4ee
ACM
62{
63 switch (map_type) {
64 case MAP__FUNCTION:
65 return symbol_type == 'T' || symbol_type == 'W';
f1dfa0b1
ACM
66 case MAP__VARIABLE:
67 return symbol_type == 'D' || symbol_type == 'd';
6893d4ee
ACM
68 default:
69 return false;
70 }
71}
72
fcf1203a 73static void symbols__fixup_end(struct rb_root *self)
af427bf5 74{
fcf1203a 75 struct rb_node *nd, *prevnd = rb_first(self);
2e538c4a 76 struct symbol *curr, *prev;
af427bf5
ACM
77
78 if (prevnd == NULL)
79 return;
80
2e538c4a
ACM
81 curr = rb_entry(prevnd, struct symbol, rb_node);
82
af427bf5 83 for (nd = rb_next(prevnd); nd; nd = rb_next(nd)) {
2e538c4a
ACM
84 prev = curr;
85 curr = rb_entry(nd, struct symbol, rb_node);
af427bf5
ACM
86
87 if (prev->end == prev->start)
88 prev->end = curr->start - 1;
af427bf5 89 }
2e538c4a
ACM
90
91 /* Last entry */
92 if (curr->end == curr->start)
93 curr->end = roundup(curr->start, 4096);
af427bf5
ACM
94}
95
9958e1f0 96static void __map_groups__fixup_end(struct map_groups *self, enum map_type type)
af427bf5
ACM
97{
98 struct map *prev, *curr;
95011c60 99 struct rb_node *nd, *prevnd = rb_first(&self->maps[type]);
af427bf5
ACM
100
101 if (prevnd == NULL)
102 return;
103
104 curr = rb_entry(prevnd, struct map, rb_node);
af427bf5
ACM
105
106 for (nd = rb_next(prevnd); nd; nd = rb_next(nd)) {
107 prev = curr;
108 curr = rb_entry(nd, struct map, rb_node);
109 prev->end = curr->start - 1;
2e538c4a 110 }
90c83218
ACM
111
112 /*
113 * We still haven't the actual symbols, so guess the
114 * last map final address.
115 */
116 curr->end = ~0UL;
af427bf5
ACM
117}
118
9958e1f0 119static void map_groups__fixup_end(struct map_groups *self)
23ea4a3f
ACM
120{
121 int i;
122 for (i = 0; i < MAP__NR_TYPES; ++i)
9958e1f0 123 __map_groups__fixup_end(self, i);
23ea4a3f
ACM
124}
125
00a192b3 126static struct symbol *symbol__new(u64 start, u64 len, const char *name)
a2928c42 127{
0085c954 128 size_t namelen = strlen(name) + 1;
75be6cf4 129 struct symbol *self = zalloc(symbol_conf.priv_size +
36479484
ACM
130 sizeof(*self) + namelen);
131 if (self == NULL)
0b73da3f
IM
132 return NULL;
133
75be6cf4
ACM
134 if (symbol_conf.priv_size)
135 self = ((void *)self) + symbol_conf.priv_size;
36479484 136
0b73da3f 137 self->start = start;
6cfcc53e 138 self->end = len ? start + len - 1 : start;
e4204992 139
6beba7ad 140 pr_debug3("%s: %s %#Lx-%#Lx\n", __func__, name, start, self->end);
e4204992 141
0b73da3f 142 memcpy(self->name, name, namelen);
a2928c42
ACM
143
144 return self;
145}
146
00a192b3 147static void symbol__delete(struct symbol *self)
a2928c42 148{
75be6cf4 149 free(((void *)self) - symbol_conf.priv_size);
a2928c42
ACM
150}
151
152static size_t symbol__fprintf(struct symbol *self, FILE *fp)
153{
439d473b 154 return fprintf(fp, " %llx-%llx %s\n",
a2928c42
ACM
155 self->start, self->end, self->name);
156}
157
b7cece76 158void dso__set_long_name(struct dso *self, char *name)
cfc10d3b 159{
ef6ae724
ACM
160 if (name == NULL)
161 return;
cfc10d3b
ACM
162 self->long_name = name;
163 self->long_name_len = strlen(name);
164}
165
166static void dso__set_basename(struct dso *self)
167{
168 self->short_name = basename(self->long_name);
169}
170
00a192b3 171struct dso *dso__new(const char *name)
a2928c42 172{
b7cece76 173 struct dso *self = zalloc(sizeof(*self) + strlen(name) + 1);
a2928c42
ACM
174
175 if (self != NULL) {
6a4694a4 176 int i;
a2928c42 177 strcpy(self->name, name);
cfc10d3b 178 dso__set_long_name(self, self->name);
439d473b 179 self->short_name = self->name;
6a4694a4 180 for (i = 0; i < MAP__NR_TYPES; ++i)
79406cd7 181 self->symbols[i] = self->symbol_names[i] = RB_ROOT;
52d422de 182 self->slen_calculated = 0;
94cb9e38 183 self->origin = DSO__ORIG_NOT_FOUND;
8d06367f 184 self->loaded = 0;
79406cd7 185 self->sorted_by_name = 0;
8d06367f 186 self->has_build_id = 0;
a2928c42
ACM
187 }
188
189 return self;
190}
191
fcf1203a 192static void symbols__delete(struct rb_root *self)
a2928c42
ACM
193{
194 struct symbol *pos;
fcf1203a 195 struct rb_node *next = rb_first(self);
a2928c42
ACM
196
197 while (next) {
198 pos = rb_entry(next, struct symbol, rb_node);
199 next = rb_next(&pos->rb_node);
fcf1203a 200 rb_erase(&pos->rb_node, self);
00a192b3 201 symbol__delete(pos);
a2928c42
ACM
202 }
203}
204
205void dso__delete(struct dso *self)
206{
6a4694a4
ACM
207 int i;
208 for (i = 0; i < MAP__NR_TYPES; ++i)
209 symbols__delete(&self->symbols[i]);
439d473b
ACM
210 if (self->long_name != self->name)
211 free(self->long_name);
a2928c42
ACM
212 free(self);
213}
214
8d06367f
ACM
215void dso__set_build_id(struct dso *self, void *build_id)
216{
217 memcpy(self->build_id, build_id, sizeof(self->build_id));
218 self->has_build_id = 1;
219}
220
fcf1203a 221static void symbols__insert(struct rb_root *self, struct symbol *sym)
a2928c42 222{
fcf1203a 223 struct rb_node **p = &self->rb_node;
a2928c42 224 struct rb_node *parent = NULL;
9cffa8d5 225 const u64 ip = sym->start;
a2928c42
ACM
226 struct symbol *s;
227
228 while (*p != NULL) {
229 parent = *p;
230 s = rb_entry(parent, struct symbol, rb_node);
231 if (ip < s->start)
232 p = &(*p)->rb_left;
233 else
234 p = &(*p)->rb_right;
235 }
236 rb_link_node(&sym->rb_node, parent, p);
fcf1203a 237 rb_insert_color(&sym->rb_node, self);
a2928c42
ACM
238}
239
fcf1203a 240static struct symbol *symbols__find(struct rb_root *self, u64 ip)
a2928c42
ACM
241{
242 struct rb_node *n;
243
244 if (self == NULL)
245 return NULL;
246
fcf1203a 247 n = self->rb_node;
a2928c42
ACM
248
249 while (n) {
250 struct symbol *s = rb_entry(n, struct symbol, rb_node);
251
252 if (ip < s->start)
253 n = n->rb_left;
254 else if (ip > s->end)
255 n = n->rb_right;
256 else
257 return s;
258 }
259
260 return NULL;
261}
262
79406cd7
ACM
263struct symbol_name_rb_node {
264 struct rb_node rb_node;
265 struct symbol sym;
266};
267
268static void symbols__insert_by_name(struct rb_root *self, struct symbol *sym)
269{
270 struct rb_node **p = &self->rb_node;
271 struct rb_node *parent = NULL;
272 struct symbol_name_rb_node *symn = ((void *)sym) - sizeof(*parent), *s;
273
274 while (*p != NULL) {
275 parent = *p;
276 s = rb_entry(parent, struct symbol_name_rb_node, rb_node);
277 if (strcmp(sym->name, s->sym.name) < 0)
278 p = &(*p)->rb_left;
279 else
280 p = &(*p)->rb_right;
281 }
282 rb_link_node(&symn->rb_node, parent, p);
283 rb_insert_color(&symn->rb_node, self);
284}
285
286static void symbols__sort_by_name(struct rb_root *self, struct rb_root *source)
287{
288 struct rb_node *nd;
289
290 for (nd = rb_first(source); nd; nd = rb_next(nd)) {
291 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
292 symbols__insert_by_name(self, pos);
293 }
294}
295
296static struct symbol *symbols__find_by_name(struct rb_root *self, const char *name)
297{
298 struct rb_node *n;
299
300 if (self == NULL)
301 return NULL;
302
303 n = self->rb_node;
304
305 while (n) {
306 struct symbol_name_rb_node *s;
307 int cmp;
308
309 s = rb_entry(n, struct symbol_name_rb_node, rb_node);
310 cmp = strcmp(name, s->sym.name);
311
312 if (cmp < 0)
313 n = n->rb_left;
314 else if (cmp > 0)
315 n = n->rb_right;
316 else
317 return &s->sym;
318 }
319
320 return NULL;
321}
322
323struct symbol *dso__find_symbol(struct dso *self,
324 enum map_type type, u64 addr)
fcf1203a 325{
6a4694a4 326 return symbols__find(&self->symbols[type], addr);
fcf1203a
ACM
327}
328
79406cd7
ACM
329struct symbol *dso__find_symbol_by_name(struct dso *self, enum map_type type,
330 const char *name)
331{
332 return symbols__find_by_name(&self->symbol_names[type], name);
333}
334
335void dso__sort_by_name(struct dso *self, enum map_type type)
336{
337 dso__set_sorted_by_name(self, type);
338 return symbols__sort_by_name(&self->symbol_names[type],
339 &self->symbols[type]);
340}
341
ef12a141 342int build_id__sprintf(const u8 *self, int len, char *bf)
a2928c42 343{
8d06367f 344 char *bid = bf;
ef12a141 345 const u8 *raw = self;
8d06367f 346 int i;
a2928c42 347
8d06367f
ACM
348 for (i = 0; i < len; ++i) {
349 sprintf(bid, "%02x", *raw);
350 ++raw;
351 bid += 2;
352 }
353
354 return raw - self;
355}
356
9e03eb2d 357size_t dso__fprintf_buildid(struct dso *self, FILE *fp)
8d06367f
ACM
358{
359 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
8d06367f
ACM
360
361 build_id__sprintf(self->build_id, sizeof(self->build_id), sbuild_id);
9e03eb2d
ACM
362 return fprintf(fp, "%s", sbuild_id);
363}
364
95011c60 365size_t dso__fprintf(struct dso *self, enum map_type type, FILE *fp)
9e03eb2d
ACM
366{
367 struct rb_node *nd;
368 size_t ret = fprintf(fp, "dso: %s (", self->short_name);
369
370 ret += dso__fprintf_buildid(self, fp);
6a4694a4 371 ret += fprintf(fp, ")\n");
95011c60
ACM
372 for (nd = rb_first(&self->symbols[type]); nd; nd = rb_next(nd)) {
373 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
374 ret += symbol__fprintf(pos, fp);
a2928c42
ACM
375 }
376
377 return ret;
378}
379
9e201442
ACM
380int kallsyms__parse(const char *filename, void *arg,
381 int (*process_symbol)(void *arg, const char *name,
682b335a 382 char type, u64 start))
a2928c42 383{
a2928c42
ACM
384 char *line = NULL;
385 size_t n;
682b335a 386 int err = 0;
9e201442 387 FILE *file = fopen(filename, "r");
a2928c42
ACM
388
389 if (file == NULL)
390 goto out_failure;
391
392 while (!feof(file)) {
9cffa8d5 393 u64 start;
a2928c42
ACM
394 int line_len, len;
395 char symbol_type;
2e538c4a 396 char *symbol_name;
a2928c42
ACM
397
398 line_len = getline(&line, &n, file);
399 if (line_len < 0)
400 break;
401
402 if (!line)
403 goto out_failure;
404
405 line[--line_len] = '\0'; /* \n */
406
a0055ae2 407 len = hex2u64(line, &start);
a2928c42
ACM
408
409 len++;
410 if (len + 2 >= line_len)
411 continue;
412
413 symbol_type = toupper(line[len]);
af427bf5 414 symbol_name = line + len + 2;
682b335a
ACM
415
416 err = process_symbol(arg, symbol_name, symbol_type, start);
417 if (err)
418 break;
2e538c4a
ACM
419 }
420
421 free(line);
422 fclose(file);
682b335a 423 return err;
2e538c4a 424
2e538c4a
ACM
425out_failure:
426 return -1;
427}
428
682b335a
ACM
429struct process_kallsyms_args {
430 struct map *map;
431 struct dso *dso;
432};
433
434static int map__process_kallsym_symbol(void *arg, const char *name,
435 char type, u64 start)
436{
437 struct symbol *sym;
438 struct process_kallsyms_args *a = arg;
439 struct rb_root *root = &a->dso->symbols[a->map->type];
440
441 if (!symbol_type__is_a(type, a->map->type))
442 return 0;
443
444 /*
445 * Will fix up the end later, when we have all symbols sorted.
446 */
447 sym = symbol__new(start, 0, name);
448
449 if (sym == NULL)
450 return -ENOMEM;
451 /*
452 * We will pass the symbols to the filter later, in
453 * map__split_kallsyms, when we have split the maps per module
454 */
455 symbols__insert(root, sym);
456 return 0;
457}
458
459/*
460 * Loads the function entries in /proc/kallsyms into kernel_map->dso,
461 * so that we can in the next step set the symbol ->end address and then
462 * call kernel_maps__split_kallsyms.
463 */
9e201442
ACM
464static int dso__load_all_kallsyms(struct dso *self, const char *filename,
465 struct map *map)
682b335a
ACM
466{
467 struct process_kallsyms_args args = { .map = map, .dso = self, };
9e201442 468 return kallsyms__parse(filename, &args, map__process_kallsym_symbol);
682b335a
ACM
469}
470
2e538c4a
ACM
471/*
472 * Split the symbols into maps, making sure there are no overlaps, i.e. the
473 * kernel range is broken in several maps, named [kernel].N, as we don't have
474 * the original ELF section names vmlinux have.
475 */
9958e1f0 476static int dso__split_kallsyms(struct dso *self, struct map *map,
9de89fe7 477 symbol_filter_t filter)
2e538c4a 478{
9de89fe7 479 struct map_groups *kmaps = map__kmap(map)->kmaps;
4e06255f 480 struct map *curr_map = map;
2e538c4a
ACM
481 struct symbol *pos;
482 int count = 0;
4e06255f
ACM
483 struct rb_root *root = &self->symbols[map->type];
484 struct rb_node *next = rb_first(root);
2e538c4a
ACM
485 int kernel_range = 0;
486
487 while (next) {
488 char *module;
489
490 pos = rb_entry(next, struct symbol, rb_node);
491 next = rb_next(&pos->rb_node);
492
493 module = strchr(pos->name, '\t');
494 if (module) {
75be6cf4 495 if (!symbol_conf.use_modules)
1de8e245
ACM
496 goto discard_symbol;
497
2e538c4a
ACM
498 *module++ = '\0';
499
b7cece76 500 if (strcmp(curr_map->dso->short_name, module)) {
9de89fe7 501 curr_map = map_groups__find_by_name(kmaps, map->type, module);
4e06255f 502 if (curr_map == NULL) {
95011c60 503 pr_debug("/proc/{kallsyms,modules} "
b7cece76
ACM
504 "inconsistency while looking "
505 "for \"%s\" module!\n", module);
af427bf5
ACM
506 return -1;
507 }
b7cece76
ACM
508
509 if (curr_map->dso->loaded)
510 goto discard_symbol;
af427bf5 511 }
2e538c4a
ACM
512 /*
513 * So that we look just like we get from .ko files,
514 * i.e. not prelinked, relative to map->start.
515 */
4e06255f
ACM
516 pos->start = curr_map->map_ip(curr_map, pos->start);
517 pos->end = curr_map->map_ip(curr_map, pos->end);
518 } else if (curr_map != map) {
2e538c4a
ACM
519 char dso_name[PATH_MAX];
520 struct dso *dso;
521
522 snprintf(dso_name, sizeof(dso_name), "[kernel].%d",
523 kernel_range++);
524
00a192b3 525 dso = dso__new(dso_name);
2e538c4a
ACM
526 if (dso == NULL)
527 return -1;
528
4e06255f 529 curr_map = map__new2(pos->start, dso, map->type);
2e538c4a
ACM
530 if (map == NULL) {
531 dso__delete(dso);
532 return -1;
533 }
a2928c42 534
4e06255f 535 curr_map->map_ip = curr_map->unmap_ip = identity__map_ip;
9de89fe7 536 map_groups__insert(kmaps, curr_map);
2e538c4a
ACM
537 ++kernel_range;
538 }
a2928c42 539
4e06255f 540 if (filter && filter(curr_map, pos)) {
1de8e245 541discard_symbol: rb_erase(&pos->rb_node, root);
00a192b3 542 symbol__delete(pos);
2e538c4a 543 } else {
4e06255f
ACM
544 if (curr_map != map) {
545 rb_erase(&pos->rb_node, root);
546 symbols__insert(&curr_map->dso->symbols[curr_map->type], pos);
2e538c4a 547 }
9974f496
MG
548 count++;
549 }
a2928c42
ACM
550 }
551
9974f496 552 return count;
2e538c4a 553}
a2928c42 554
9de89fe7
ACM
555int dso__load_kallsyms(struct dso *self, const char *filename,
556 struct map *map, symbol_filter_t filter)
2e538c4a 557{
9e201442 558 if (dso__load_all_kallsyms(self, filename, map) < 0)
2e538c4a
ACM
559 return -1;
560
4e06255f
ACM
561 symbols__fixup_end(&self->symbols[map->type]);
562 self->origin = DSO__ORIG_KERNEL;
2e538c4a 563
9de89fe7 564 return dso__split_kallsyms(self, map, filter);
af427bf5
ACM
565}
566
439d473b 567static int dso__load_perf_map(struct dso *self, struct map *map,
6beba7ad 568 symbol_filter_t filter)
80d496be
PE
569{
570 char *line = NULL;
571 size_t n;
572 FILE *file;
573 int nr_syms = 0;
574
439d473b 575 file = fopen(self->long_name, "r");
80d496be
PE
576 if (file == NULL)
577 goto out_failure;
578
579 while (!feof(file)) {
9cffa8d5 580 u64 start, size;
80d496be
PE
581 struct symbol *sym;
582 int line_len, len;
583
584 line_len = getline(&line, &n, file);
585 if (line_len < 0)
586 break;
587
588 if (!line)
589 goto out_failure;
590
591 line[--line_len] = '\0'; /* \n */
592
593 len = hex2u64(line, &start);
594
595 len++;
596 if (len + 2 >= line_len)
597 continue;
598
599 len += hex2u64(line + len, &size);
600
601 len++;
602 if (len + 2 >= line_len)
603 continue;
604
00a192b3 605 sym = symbol__new(start, size, line + len);
80d496be
PE
606
607 if (sym == NULL)
608 goto out_delete_line;
609
439d473b 610 if (filter && filter(map, sym))
00a192b3 611 symbol__delete(sym);
80d496be 612 else {
6a4694a4 613 symbols__insert(&self->symbols[map->type], sym);
80d496be
PE
614 nr_syms++;
615 }
616 }
617
618 free(line);
619 fclose(file);
620
621 return nr_syms;
622
623out_delete_line:
624 free(line);
625out_failure:
626 return -1;
627}
628
a2928c42
ACM
629/**
630 * elf_symtab__for_each_symbol - iterate thru all the symbols
631 *
632 * @self: struct elf_symtab instance to iterate
83a0944f 633 * @idx: uint32_t idx
a2928c42
ACM
634 * @sym: GElf_Sym iterator
635 */
83a0944f
IM
636#define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
637 for (idx = 0, gelf_getsym(syms, idx, &sym);\
638 idx < nr_syms; \
639 idx++, gelf_getsym(syms, idx, &sym))
a2928c42
ACM
640
641static inline uint8_t elf_sym__type(const GElf_Sym *sym)
642{
643 return GELF_ST_TYPE(sym->st_info);
644}
645
646static inline int elf_sym__is_function(const GElf_Sym *sym)
647{
648 return elf_sym__type(sym) == STT_FUNC &&
649 sym->st_name != 0 &&
81833130 650 sym->st_shndx != SHN_UNDEF;
a2928c42
ACM
651}
652
f1dfa0b1
ACM
653static inline bool elf_sym__is_object(const GElf_Sym *sym)
654{
655 return elf_sym__type(sym) == STT_OBJECT &&
656 sym->st_name != 0 &&
657 sym->st_shndx != SHN_UNDEF;
658}
659
6cfcc53e
MG
660static inline int elf_sym__is_label(const GElf_Sym *sym)
661{
662 return elf_sym__type(sym) == STT_NOTYPE &&
663 sym->st_name != 0 &&
664 sym->st_shndx != SHN_UNDEF &&
665 sym->st_shndx != SHN_ABS;
666}
667
668static inline const char *elf_sec__name(const GElf_Shdr *shdr,
669 const Elf_Data *secstrs)
670{
671 return secstrs->d_buf + shdr->sh_name;
672}
673
674static inline int elf_sec__is_text(const GElf_Shdr *shdr,
675 const Elf_Data *secstrs)
676{
677 return strstr(elf_sec__name(shdr, secstrs), "text") != NULL;
678}
679
f1dfa0b1
ACM
680static inline bool elf_sec__is_data(const GElf_Shdr *shdr,
681 const Elf_Data *secstrs)
682{
683 return strstr(elf_sec__name(shdr, secstrs), "data") != NULL;
684}
685
a2928c42
ACM
686static inline const char *elf_sym__name(const GElf_Sym *sym,
687 const Elf_Data *symstrs)
688{
689 return symstrs->d_buf + sym->st_name;
690}
691
692static Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
693 GElf_Shdr *shp, const char *name,
83a0944f 694 size_t *idx)
a2928c42
ACM
695{
696 Elf_Scn *sec = NULL;
697 size_t cnt = 1;
698
699 while ((sec = elf_nextscn(elf, sec)) != NULL) {
700 char *str;
701
702 gelf_getshdr(sec, shp);
703 str = elf_strptr(elf, ep->e_shstrndx, shp->sh_name);
704 if (!strcmp(name, str)) {
83a0944f
IM
705 if (idx)
706 *idx = cnt;
a2928c42
ACM
707 break;
708 }
709 ++cnt;
710 }
711
712 return sec;
713}
714
8ce998d6
ACM
715#define elf_section__for_each_rel(reldata, pos, pos_mem, idx, nr_entries) \
716 for (idx = 0, pos = gelf_getrel(reldata, 0, &pos_mem); \
717 idx < nr_entries; \
718 ++idx, pos = gelf_getrel(reldata, idx, &pos_mem))
719
720#define elf_section__for_each_rela(reldata, pos, pos_mem, idx, nr_entries) \
721 for (idx = 0, pos = gelf_getrela(reldata, 0, &pos_mem); \
722 idx < nr_entries; \
723 ++idx, pos = gelf_getrela(reldata, idx, &pos_mem))
724
a25e46c4
ACM
725/*
726 * We need to check if we have a .dynsym, so that we can handle the
727 * .plt, synthesizing its symbols, that aren't on the symtabs (be it
728 * .dynsym or .symtab).
729 * And always look at the original dso, not at debuginfo packages, that
730 * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
731 */
82164161
ACM
732static int dso__synthesize_plt_symbols(struct dso *self, struct map *map,
733 symbol_filter_t filter)
8ce998d6
ACM
734{
735 uint32_t nr_rel_entries, idx;
736 GElf_Sym sym;
9cffa8d5 737 u64 plt_offset;
8ce998d6
ACM
738 GElf_Shdr shdr_plt;
739 struct symbol *f;
a25e46c4 740 GElf_Shdr shdr_rel_plt, shdr_dynsym;
8ce998d6 741 Elf_Data *reldata, *syms, *symstrs;
a25e46c4
ACM
742 Elf_Scn *scn_plt_rel, *scn_symstrs, *scn_dynsym;
743 size_t dynsym_idx;
744 GElf_Ehdr ehdr;
8ce998d6 745 char sympltname[1024];
a25e46c4
ACM
746 Elf *elf;
747 int nr = 0, symidx, fd, err = 0;
748
439d473b 749 fd = open(self->long_name, O_RDONLY);
a25e46c4
ACM
750 if (fd < 0)
751 goto out;
752
84087126 753 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
a25e46c4
ACM
754 if (elf == NULL)
755 goto out_close;
756
757 if (gelf_getehdr(elf, &ehdr) == NULL)
758 goto out_elf_end;
759
760 scn_dynsym = elf_section_by_name(elf, &ehdr, &shdr_dynsym,
761 ".dynsym", &dynsym_idx);
762 if (scn_dynsym == NULL)
763 goto out_elf_end;
8ce998d6 764
a25e46c4 765 scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
8ce998d6
ACM
766 ".rela.plt", NULL);
767 if (scn_plt_rel == NULL) {
a25e46c4 768 scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
8ce998d6
ACM
769 ".rel.plt", NULL);
770 if (scn_plt_rel == NULL)
a25e46c4 771 goto out_elf_end;
8ce998d6
ACM
772 }
773
a25e46c4
ACM
774 err = -1;
775
8ce998d6 776 if (shdr_rel_plt.sh_link != dynsym_idx)
a25e46c4 777 goto out_elf_end;
8ce998d6 778
a25e46c4
ACM
779 if (elf_section_by_name(elf, &ehdr, &shdr_plt, ".plt", NULL) == NULL)
780 goto out_elf_end;
8ce998d6
ACM
781
782 /*
83a0944f 783 * Fetch the relocation section to find the idxes to the GOT
8ce998d6
ACM
784 * and the symbols in the .dynsym they refer to.
785 */
786 reldata = elf_getdata(scn_plt_rel, NULL);
787 if (reldata == NULL)
a25e46c4 788 goto out_elf_end;
8ce998d6
ACM
789
790 syms = elf_getdata(scn_dynsym, NULL);
791 if (syms == NULL)
a25e46c4 792 goto out_elf_end;
8ce998d6 793
a25e46c4 794 scn_symstrs = elf_getscn(elf, shdr_dynsym.sh_link);
8ce998d6 795 if (scn_symstrs == NULL)
a25e46c4 796 goto out_elf_end;
8ce998d6
ACM
797
798 symstrs = elf_getdata(scn_symstrs, NULL);
799 if (symstrs == NULL)
a25e46c4 800 goto out_elf_end;
8ce998d6
ACM
801
802 nr_rel_entries = shdr_rel_plt.sh_size / shdr_rel_plt.sh_entsize;
803 plt_offset = shdr_plt.sh_offset;
804
805 if (shdr_rel_plt.sh_type == SHT_RELA) {
806 GElf_Rela pos_mem, *pos;
807
808 elf_section__for_each_rela(reldata, pos, pos_mem, idx,
809 nr_rel_entries) {
810 symidx = GELF_R_SYM(pos->r_info);
811 plt_offset += shdr_plt.sh_entsize;
812 gelf_getsym(syms, symidx, &sym);
813 snprintf(sympltname, sizeof(sympltname),
814 "%s@plt", elf_sym__name(&sym, symstrs));
815
816 f = symbol__new(plt_offset, shdr_plt.sh_entsize,
00a192b3 817 sympltname);
8ce998d6 818 if (!f)
a25e46c4 819 goto out_elf_end;
8ce998d6 820
82164161
ACM
821 if (filter && filter(map, f))
822 symbol__delete(f);
823 else {
6a4694a4 824 symbols__insert(&self->symbols[map->type], f);
82164161
ACM
825 ++nr;
826 }
8ce998d6
ACM
827 }
828 } else if (shdr_rel_plt.sh_type == SHT_REL) {
829 GElf_Rel pos_mem, *pos;
830 elf_section__for_each_rel(reldata, pos, pos_mem, idx,
831 nr_rel_entries) {
832 symidx = GELF_R_SYM(pos->r_info);
833 plt_offset += shdr_plt.sh_entsize;
834 gelf_getsym(syms, symidx, &sym);
835 snprintf(sympltname, sizeof(sympltname),
836 "%s@plt", elf_sym__name(&sym, symstrs));
837
838 f = symbol__new(plt_offset, shdr_plt.sh_entsize,
00a192b3 839 sympltname);
8ce998d6 840 if (!f)
a25e46c4 841 goto out_elf_end;
8ce998d6 842
82164161
ACM
843 if (filter && filter(map, f))
844 symbol__delete(f);
845 else {
6a4694a4 846 symbols__insert(&self->symbols[map->type], f);
82164161
ACM
847 ++nr;
848 }
8ce998d6 849 }
8ce998d6
ACM
850 }
851
a25e46c4
ACM
852 err = 0;
853out_elf_end:
854 elf_end(elf);
855out_close:
856 close(fd);
857
858 if (err == 0)
859 return nr;
860out:
6beba7ad
ACM
861 pr_warning("%s: problems reading %s PLT info.\n",
862 __func__, self->long_name);
a25e46c4 863 return 0;
8ce998d6
ACM
864}
865
d45868d3
ACM
866static bool elf_sym__is_a(GElf_Sym *self, enum map_type type)
867{
868 switch (type) {
869 case MAP__FUNCTION:
870 return elf_sym__is_function(self);
f1dfa0b1
ACM
871 case MAP__VARIABLE:
872 return elf_sym__is_object(self);
d45868d3
ACM
873 default:
874 return false;
875 }
876}
877
878static bool elf_sec__is_a(GElf_Shdr *self, Elf_Data *secstrs, enum map_type type)
879{
880 switch (type) {
881 case MAP__FUNCTION:
882 return elf_sec__is_text(self, secstrs);
f1dfa0b1
ACM
883 case MAP__VARIABLE:
884 return elf_sec__is_data(self, secstrs);
d45868d3
ACM
885 default:
886 return false;
887 }
888}
889
9de89fe7
ACM
890static int dso__load_sym(struct dso *self, struct map *map, const char *name,
891 int fd, symbol_filter_t filter, int kmodule)
a2928c42 892{
9de89fe7 893 struct kmap *kmap = self->kernel ? map__kmap(map) : NULL;
2e538c4a
ACM
894 struct map *curr_map = map;
895 struct dso *curr_dso = self;
896 size_t dso_name_len = strlen(self->short_name);
6cfcc53e 897 Elf_Data *symstrs, *secstrs;
a2928c42
ACM
898 uint32_t nr_syms;
899 int err = -1;
83a0944f 900 uint32_t idx;
a2928c42
ACM
901 GElf_Ehdr ehdr;
902 GElf_Shdr shdr;
903 Elf_Data *syms;
904 GElf_Sym sym;
a25e46c4 905 Elf_Scn *sec, *sec_strndx;
a2928c42 906 Elf *elf;
439d473b 907 int nr = 0;
a2928c42 908
84087126 909 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
a2928c42 910 if (elf == NULL) {
6beba7ad 911 pr_err("%s: cannot read %s ELF file.\n", __func__, name);
a2928c42
ACM
912 goto out_close;
913 }
914
915 if (gelf_getehdr(elf, &ehdr) == NULL) {
6beba7ad 916 pr_err("%s: cannot get elf header.\n", __func__);
a2928c42
ACM
917 goto out_elf_end;
918 }
919
920 sec = elf_section_by_name(elf, &ehdr, &shdr, ".symtab", NULL);
8ce998d6 921 if (sec == NULL) {
a25e46c4
ACM
922 sec = elf_section_by_name(elf, &ehdr, &shdr, ".dynsym", NULL);
923 if (sec == NULL)
8ce998d6 924 goto out_elf_end;
8ce998d6 925 }
a2928c42
ACM
926
927 syms = elf_getdata(sec, NULL);
928 if (syms == NULL)
929 goto out_elf_end;
930
931 sec = elf_getscn(elf, shdr.sh_link);
932 if (sec == NULL)
933 goto out_elf_end;
934
935 symstrs = elf_getdata(sec, NULL);
936 if (symstrs == NULL)
937 goto out_elf_end;
938
6cfcc53e
MG
939 sec_strndx = elf_getscn(elf, ehdr.e_shstrndx);
940 if (sec_strndx == NULL)
941 goto out_elf_end;
942
943 secstrs = elf_getdata(sec_strndx, NULL);
9b30a26b 944 if (secstrs == NULL)
6cfcc53e
MG
945 goto out_elf_end;
946
a2928c42
ACM
947 nr_syms = shdr.sh_size / shdr.sh_entsize;
948
e9fbc9dc 949 memset(&sym, 0, sizeof(sym));
9de89fe7 950 if (!self->kernel) {
d20ff6bd 951 self->adjust_symbols = (ehdr.e_type == ET_EXEC ||
30d7a77d
ACM
952 elf_section_by_name(elf, &ehdr, &shdr,
953 ".gnu.prelink_undo",
954 NULL) != NULL);
d20ff6bd
MG
955 } else self->adjust_symbols = 0;
956
83a0944f 957 elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) {
a2928c42 958 struct symbol *f;
56b03f3c 959 const char *elf_name = elf_sym__name(&sym, symstrs);
2e538c4a 960 char *demangled = NULL;
6cfcc53e
MG
961 int is_label = elf_sym__is_label(&sym);
962 const char *section_name;
a2928c42 963
9de89fe7
ACM
964 if (kmap && kmap->ref_reloc_sym && kmap->ref_reloc_sym->name &&
965 strcmp(elf_name, kmap->ref_reloc_sym->name) == 0)
966 kmap->ref_reloc_sym->unrelocated_addr = sym.st_value;
56b03f3c 967
d45868d3 968 if (!is_label && !elf_sym__is_a(&sym, map->type))
a2928c42
ACM
969 continue;
970
971 sec = elf_getscn(elf, sym.st_shndx);
972 if (!sec)
973 goto out_elf_end;
974
975 gelf_getshdr(sec, &shdr);
6cfcc53e 976
d45868d3 977 if (is_label && !elf_sec__is_a(&shdr, secstrs, map->type))
6cfcc53e
MG
978 continue;
979
980 section_name = elf_sec__name(&shdr, secstrs);
0b73da3f 981
9de89fe7 982 if (self->kernel || kmodule) {
2e538c4a
ACM
983 char dso_name[PATH_MAX];
984
985 if (strcmp(section_name,
986 curr_dso->short_name + dso_name_len) == 0)
987 goto new_symbol;
988
989 if (strcmp(section_name, ".text") == 0) {
990 curr_map = map;
991 curr_dso = self;
992 goto new_symbol;
993 }
994
995 snprintf(dso_name, sizeof(dso_name),
996 "%s%s", self->short_name, section_name);
997
9de89fe7 998 curr_map = map_groups__find_by_name(kmap->kmaps, map->type, dso_name);
2e538c4a
ACM
999 if (curr_map == NULL) {
1000 u64 start = sym.st_value;
1001
1002 if (kmodule)
1003 start += map->start + shdr.sh_offset;
1004
00a192b3 1005 curr_dso = dso__new(dso_name);
2e538c4a
ACM
1006 if (curr_dso == NULL)
1007 goto out_elf_end;
3610583c 1008 curr_map = map__new2(start, curr_dso,
6275ce2d 1009 map->type);
2e538c4a
ACM
1010 if (curr_map == NULL) {
1011 dso__delete(curr_dso);
1012 goto out_elf_end;
1013 }
ed52ce2e
ACM
1014 curr_map->map_ip = identity__map_ip;
1015 curr_map->unmap_ip = identity__map_ip;
2e538c4a 1016 curr_dso->origin = DSO__ORIG_KERNEL;
9de89fe7 1017 map_groups__insert(kmap->kmaps, curr_map);
b0da954a 1018 dsos__add(&dsos__kernel, curr_dso);
6275ce2d 1019 dso__set_loaded(curr_dso, map->type);
2e538c4a
ACM
1020 } else
1021 curr_dso = curr_map->dso;
1022
1023 goto new_symbol;
af427bf5
ACM
1024 }
1025
2e538c4a 1026 if (curr_dso->adjust_symbols) {
6beba7ad
ACM
1027 pr_debug2("adjusting symbol: st_value: %Lx sh_addr: "
1028 "%Lx sh_offset: %Lx\n", (u64)sym.st_value,
1029 (u64)shdr.sh_addr, (u64)shdr.sh_offset);
f5812a7a 1030 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
af427bf5 1031 }
28ac909b
ACM
1032 /*
1033 * We need to figure out if the object was created from C++ sources
1034 * DWARF DW_compile_unit has this, but we don't always have access
1035 * to it...
1036 */
83a0944f 1037 demangled = bfd_demangle(NULL, elf_name, DMGL_PARAMS | DMGL_ANSI);
28ac909b 1038 if (demangled != NULL)
83a0944f 1039 elf_name = demangled;
2e538c4a 1040new_symbol:
00a192b3 1041 f = symbol__new(sym.st_value, sym.st_size, elf_name);
28ac909b 1042 free(demangled);
a2928c42
ACM
1043 if (!f)
1044 goto out_elf_end;
1045
2e538c4a 1046 if (filter && filter(curr_map, f))
00a192b3 1047 symbol__delete(f);
69ee69f6 1048 else {
6a4694a4 1049 symbols__insert(&curr_dso->symbols[curr_map->type], f);
69ee69f6
ACM
1050 nr++;
1051 }
a2928c42
ACM
1052 }
1053
2e538c4a
ACM
1054 /*
1055 * For misannotated, zeroed, ASM function sizes.
1056 */
6275ce2d 1057 if (nr > 0) {
6a4694a4 1058 symbols__fixup_end(&self->symbols[map->type]);
6275ce2d
ACM
1059 if (kmap) {
1060 /*
1061 * We need to fixup this here too because we create new
1062 * maps here, for things like vsyscall sections.
1063 */
1064 __map_groups__fixup_end(kmap->kmaps, map->type);
1065 }
1066 }
a2928c42
ACM
1067 err = nr;
1068out_elf_end:
1069 elf_end(elf);
1070out_close:
1071 return err;
1072}
1073
78075caa
ACM
1074static bool dso__build_id_equal(const struct dso *self, u8 *build_id)
1075{
1076 return memcmp(self->build_id, build_id, sizeof(self->build_id)) == 0;
1077}
1078
6122e4e4 1079static bool __dsos__read_build_ids(struct list_head *head, bool with_hits)
57f395a7 1080{
e30a3d12 1081 bool have_build_id = false;
57f395a7
FW
1082 struct dso *pos;
1083
6122e4e4
ACM
1084 list_for_each_entry(pos, head, node) {
1085 if (with_hits && !pos->hit)
1086 continue;
e30a3d12
ACM
1087 if (filename__read_build_id(pos->long_name, pos->build_id,
1088 sizeof(pos->build_id)) > 0) {
1089 have_build_id = true;
1090 pos->has_build_id = true;
1091 }
6122e4e4 1092 }
57f395a7 1093
e30a3d12 1094 return have_build_id;
57f395a7
FW
1095}
1096
6122e4e4 1097bool dsos__read_build_ids(bool with_hits)
b0da954a 1098{
6122e4e4
ACM
1099 bool kbuildids = __dsos__read_build_ids(&dsos__kernel, with_hits),
1100 ubuildids = __dsos__read_build_ids(&dsos__user, with_hits);
8b4825bf 1101 return kbuildids || ubuildids;
b0da954a
ACM
1102}
1103
fd7a346e
ACM
1104/*
1105 * Align offset to 4 bytes as needed for note name and descriptor data.
1106 */
1107#define NOTE_ALIGN(n) (((n) + 3) & -4U)
1108
2643ce11 1109int filename__read_build_id(const char *filename, void *bf, size_t size)
4d1e00a8 1110{
2643ce11 1111 int fd, err = -1;
4d1e00a8
ACM
1112 GElf_Ehdr ehdr;
1113 GElf_Shdr shdr;
fd7a346e 1114 Elf_Data *data;
4d1e00a8 1115 Elf_Scn *sec;
e57cfcda 1116 Elf_Kind ek;
fd7a346e 1117 void *ptr;
4d1e00a8 1118 Elf *elf;
4d1e00a8 1119
2643ce11
ACM
1120 if (size < BUILD_ID_SIZE)
1121 goto out;
1122
1123 fd = open(filename, O_RDONLY);
4d1e00a8
ACM
1124 if (fd < 0)
1125 goto out;
1126
84087126 1127 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
4d1e00a8 1128 if (elf == NULL) {
8d06367f 1129 pr_debug2("%s: cannot read %s ELF file.\n", __func__, filename);
4d1e00a8
ACM
1130 goto out_close;
1131 }
1132
e57cfcda
PE
1133 ek = elf_kind(elf);
1134 if (ek != ELF_K_ELF)
1135 goto out_elf_end;
1136
4d1e00a8 1137 if (gelf_getehdr(elf, &ehdr) == NULL) {
6beba7ad 1138 pr_err("%s: cannot get elf header.\n", __func__);
4d1e00a8
ACM
1139 goto out_elf_end;
1140 }
1141
2643ce11
ACM
1142 sec = elf_section_by_name(elf, &ehdr, &shdr,
1143 ".note.gnu.build-id", NULL);
fd7a346e
ACM
1144 if (sec == NULL) {
1145 sec = elf_section_by_name(elf, &ehdr, &shdr,
1146 ".notes", NULL);
1147 if (sec == NULL)
1148 goto out_elf_end;
1149 }
4d1e00a8 1150
fd7a346e
ACM
1151 data = elf_getdata(sec, NULL);
1152 if (data == NULL)
4d1e00a8 1153 goto out_elf_end;
fd7a346e
ACM
1154
1155 ptr = data->d_buf;
1156 while (ptr < (data->d_buf + data->d_size)) {
1157 GElf_Nhdr *nhdr = ptr;
1158 int namesz = NOTE_ALIGN(nhdr->n_namesz),
1159 descsz = NOTE_ALIGN(nhdr->n_descsz);
1160 const char *name;
1161
1162 ptr += sizeof(*nhdr);
1163 name = ptr;
1164 ptr += namesz;
1165 if (nhdr->n_type == NT_GNU_BUILD_ID &&
1166 nhdr->n_namesz == sizeof("GNU")) {
1167 if (memcmp(name, "GNU", sizeof("GNU")) == 0) {
1168 memcpy(bf, ptr, BUILD_ID_SIZE);
1169 err = BUILD_ID_SIZE;
1170 break;
1171 }
1172 }
1173 ptr += descsz;
1174 }
2643ce11
ACM
1175out_elf_end:
1176 elf_end(elf);
1177out_close:
1178 close(fd);
1179out:
1180 return err;
1181}
1182
f1617b40
ACM
1183int sysfs__read_build_id(const char *filename, void *build_id, size_t size)
1184{
1185 int fd, err = -1;
1186
1187 if (size < BUILD_ID_SIZE)
1188 goto out;
1189
1190 fd = open(filename, O_RDONLY);
1191 if (fd < 0)
1192 goto out;
1193
1194 while (1) {
1195 char bf[BUFSIZ];
1196 GElf_Nhdr nhdr;
1197 int namesz, descsz;
1198
1199 if (read(fd, &nhdr, sizeof(nhdr)) != sizeof(nhdr))
1200 break;
1201
fd7a346e
ACM
1202 namesz = NOTE_ALIGN(nhdr.n_namesz);
1203 descsz = NOTE_ALIGN(nhdr.n_descsz);
f1617b40
ACM
1204 if (nhdr.n_type == NT_GNU_BUILD_ID &&
1205 nhdr.n_namesz == sizeof("GNU")) {
1206 if (read(fd, bf, namesz) != namesz)
1207 break;
1208 if (memcmp(bf, "GNU", sizeof("GNU")) == 0) {
1209 if (read(fd, build_id,
1210 BUILD_ID_SIZE) == BUILD_ID_SIZE) {
1211 err = 0;
1212 break;
1213 }
1214 } else if (read(fd, bf, descsz) != descsz)
1215 break;
1216 } else {
1217 int n = namesz + descsz;
1218 if (read(fd, bf, n) != n)
1219 break;
1220 }
1221 }
1222 close(fd);
1223out:
1224 return err;
1225}
1226
94cb9e38
ACM
1227char dso__symtab_origin(const struct dso *self)
1228{
1229 static const char origin[] = {
1230 [DSO__ORIG_KERNEL] = 'k',
1231 [DSO__ORIG_JAVA_JIT] = 'j',
4cf40131 1232 [DSO__ORIG_BUILD_ID_CACHE] = 'B',
94cb9e38
ACM
1233 [DSO__ORIG_FEDORA] = 'f',
1234 [DSO__ORIG_UBUNTU] = 'u',
1235 [DSO__ORIG_BUILDID] = 'b',
1236 [DSO__ORIG_DSO] = 'd',
439d473b 1237 [DSO__ORIG_KMODULE] = 'K',
94cb9e38
ACM
1238 };
1239
1240 if (self == NULL || self->origin == DSO__ORIG_NOT_FOUND)
1241 return '!';
1242 return origin[self->origin];
1243}
1244
9de89fe7 1245int dso__load(struct dso *self, struct map *map, symbol_filter_t filter)
a2928c42 1246{
4d1e00a8 1247 int size = PATH_MAX;
c338aee8 1248 char *name;
d3379ab9 1249 u8 build_id[BUILD_ID_SIZE];
4cf40131 1250 char build_id_hex[BUILD_ID_SIZE * 2 + 1];
a2928c42
ACM
1251 int ret = -1;
1252 int fd;
1253
3610583c 1254 dso__set_loaded(self, map->type);
66bd8424 1255
c338aee8 1256 if (self->kernel)
9de89fe7 1257 return dso__load_kernel_sym(self, map, filter);
c338aee8
ACM
1258
1259 name = malloc(size);
a2928c42
ACM
1260 if (!name)
1261 return -1;
1262
30d7a77d 1263 self->adjust_symbols = 0;
f5812a7a 1264
94cb9e38 1265 if (strncmp(self->name, "/tmp/perf-", 10) == 0) {
6beba7ad 1266 ret = dso__load_perf_map(self, map, filter);
94cb9e38
ACM
1267 self->origin = ret > 0 ? DSO__ORIG_JAVA_JIT :
1268 DSO__ORIG_NOT_FOUND;
1269 return ret;
1270 }
1271
4cf40131 1272 self->origin = DSO__ORIG_BUILD_ID_CACHE;
80d496be 1273
4cf40131
ACM
1274 if (self->has_build_id) {
1275 build_id__sprintf(self->build_id, sizeof(self->build_id),
1276 build_id_hex);
1277 snprintf(name, size, "%s/%s/.build-id/%.2s/%s",
1278 getenv("HOME"), DEBUG_CACHE_DIR,
1279 build_id_hex, build_id_hex + 2);
1280 goto open_file;
1281 }
a2928c42
ACM
1282more:
1283 do {
94cb9e38
ACM
1284 self->origin++;
1285 switch (self->origin) {
1286 case DSO__ORIG_FEDORA:
439d473b
ACM
1287 snprintf(name, size, "/usr/lib/debug%s.debug",
1288 self->long_name);
a2928c42 1289 break;
94cb9e38 1290 case DSO__ORIG_UBUNTU:
439d473b
ACM
1291 snprintf(name, size, "/usr/lib/debug%s",
1292 self->long_name);
a2928c42 1293 break;
94cb9e38 1294 case DSO__ORIG_BUILDID:
d3379ab9
ACM
1295 if (filename__read_build_id(self->long_name, build_id,
1296 sizeof(build_id))) {
d3379ab9
ACM
1297 build_id__sprintf(build_id, sizeof(build_id),
1298 build_id_hex);
4d1e00a8
ACM
1299 snprintf(name, size,
1300 "/usr/lib/debug/.build-id/%.2s/%s.debug",
d3379ab9
ACM
1301 build_id_hex, build_id_hex + 2);
1302 if (self->has_build_id)
1303 goto compare_build_id;
1304 break;
4d1e00a8 1305 }
94cb9e38 1306 self->origin++;
4d1e00a8 1307 /* Fall thru */
94cb9e38 1308 case DSO__ORIG_DSO:
439d473b 1309 snprintf(name, size, "%s", self->long_name);
a2928c42
ACM
1310 break;
1311
1312 default:
1313 goto out;
1314 }
a2928c42 1315
8d06367f 1316 if (self->has_build_id) {
d3379ab9
ACM
1317 if (filename__read_build_id(name, build_id,
1318 sizeof(build_id)) < 0)
8d06367f 1319 goto more;
8d06367f 1320compare_build_id:
78075caa 1321 if (!dso__build_id_equal(self, build_id))
8d06367f
ACM
1322 goto more;
1323 }
4cf40131 1324open_file:
a2928c42
ACM
1325 fd = open(name, O_RDONLY);
1326 } while (fd < 0);
1327
9de89fe7 1328 ret = dso__load_sym(self, map, name, fd, filter, 0);
a2928c42
ACM
1329 close(fd);
1330
1331 /*
1332 * Some people seem to have debuginfo files _WITHOUT_ debug info!?!?
1333 */
1334 if (!ret)
1335 goto more;
1336
a25e46c4 1337 if (ret > 0) {
82164161 1338 int nr_plt = dso__synthesize_plt_symbols(self, map, filter);
a25e46c4
ACM
1339 if (nr_plt > 0)
1340 ret += nr_plt;
1341 }
a2928c42
ACM
1342out:
1343 free(name);
1340e6bb
ACM
1344 if (ret < 0 && strstr(self->name, " (deleted)") != NULL)
1345 return 0;
a2928c42
ACM
1346 return ret;
1347}
1348
79406cd7
ACM
1349struct map *map_groups__find_by_name(struct map_groups *self,
1350 enum map_type type, const char *name)
439d473b
ACM
1351{
1352 struct rb_node *nd;
1353
79406cd7 1354 for (nd = rb_first(&self->maps[type]); nd; nd = rb_next(nd)) {
439d473b
ACM
1355 struct map *map = rb_entry(nd, struct map, rb_node);
1356
b7cece76 1357 if (map->dso && strcmp(map->dso->short_name, name) == 0)
439d473b
ACM
1358 return map;
1359 }
1360
1361 return NULL;
1362}
1363
b7cece76
ACM
1364static int dso__kernel_module_get_build_id(struct dso *self)
1365{
1366 char filename[PATH_MAX];
1367 /*
1368 * kernel module short names are of the form "[module]" and
1369 * we need just "module" here.
1370 */
1371 const char *name = self->short_name + 1;
1372
1373 snprintf(filename, sizeof(filename),
1374 "/sys/module/%.*s/notes/.note.gnu.build-id",
1375 (int)strlen(name - 1), name);
1376
1377 if (sysfs__read_build_id(filename, self->build_id,
1378 sizeof(self->build_id)) == 0)
1379 self->has_build_id = true;
1380
1381 return 0;
1382}
1383
9de89fe7 1384static int map_groups__set_modules_path_dir(struct map_groups *self, char *dirname)
6cfcc53e 1385{
439d473b 1386 struct dirent *dent;
439d473b 1387 DIR *dir = opendir(dirname);
6cfcc53e 1388
439d473b 1389 if (!dir) {
87f8ea4c 1390 pr_debug("%s: cannot open %s dir\n", __func__, dirname);
439d473b
ACM
1391 return -1;
1392 }
6cfcc53e 1393
439d473b
ACM
1394 while ((dent = readdir(dir)) != NULL) {
1395 char path[PATH_MAX];
1396
1397 if (dent->d_type == DT_DIR) {
1398 if (!strcmp(dent->d_name, ".") ||
1399 !strcmp(dent->d_name, ".."))
1400 continue;
1401
1402 snprintf(path, sizeof(path), "%s/%s",
1403 dirname, dent->d_name);
9de89fe7 1404 if (map_groups__set_modules_path_dir(self, path) < 0)
439d473b
ACM
1405 goto failure;
1406 } else {
1407 char *dot = strrchr(dent->d_name, '.'),
1408 dso_name[PATH_MAX];
1409 struct map *map;
cfc10d3b 1410 char *long_name;
439d473b
ACM
1411
1412 if (dot == NULL || strcmp(dot, ".ko"))
1413 continue;
1414 snprintf(dso_name, sizeof(dso_name), "[%.*s]",
1415 (int)(dot - dent->d_name), dent->d_name);
1416
a2a99e8e 1417 strxfrchar(dso_name, '-', '_');
9de89fe7 1418 map = map_groups__find_by_name(self, MAP__FUNCTION, dso_name);
439d473b
ACM
1419 if (map == NULL)
1420 continue;
1421
1422 snprintf(path, sizeof(path), "%s/%s",
1423 dirname, dent->d_name);
1424
cfc10d3b
ACM
1425 long_name = strdup(path);
1426 if (long_name == NULL)
439d473b 1427 goto failure;
cfc10d3b 1428 dso__set_long_name(map->dso, long_name);
b7cece76 1429 dso__kernel_module_get_build_id(map->dso);
439d473b 1430 }
439d473b 1431 }
6cfcc53e 1432
c338aee8 1433 return 0;
439d473b
ACM
1434failure:
1435 closedir(dir);
1436 return -1;
1437}
6cfcc53e 1438
9de89fe7 1439static int map_groups__set_modules_path(struct map_groups *self)
439d473b
ACM
1440{
1441 struct utsname uts;
1442 char modules_path[PATH_MAX];
6cfcc53e 1443
439d473b
ACM
1444 if (uname(&uts) < 0)
1445 return -1;
6cfcc53e 1446
439d473b
ACM
1447 snprintf(modules_path, sizeof(modules_path), "/lib/modules/%s/kernel",
1448 uts.release);
6cfcc53e 1449
9de89fe7 1450 return map_groups__set_modules_path_dir(self, modules_path);
6cfcc53e
MG
1451}
1452
439d473b
ACM
1453/*
1454 * Constructor variant for modules (where we know from /proc/modules where
1455 * they are loaded) and for vmlinux, where only after we load all the
1456 * symbols we'll know where it starts and ends.
1457 */
3610583c 1458static struct map *map__new2(u64 start, struct dso *dso, enum map_type type)
6cfcc53e 1459{
9de89fe7
ACM
1460 struct map *self = zalloc(sizeof(*self) +
1461 (dso->kernel ? sizeof(struct kmap) : 0));
439d473b 1462 if (self != NULL) {
439d473b 1463 /*
afb7b4f0 1464 * ->end will be filled after we load all the symbols
439d473b 1465 */
3610583c 1466 map__init(self, type, start, 0, 0, dso);
439d473b 1467 }
afb7b4f0 1468
439d473b
ACM
1469 return self;
1470}
1471
9de89fe7
ACM
1472struct map *map_groups__new_module(struct map_groups *self, u64 start,
1473 const char *filename)
b7cece76
ACM
1474{
1475 struct map *map;
1476 struct dso *dso = __dsos__findnew(&dsos__kernel, filename);
1477
1478 if (dso == NULL)
1479 return NULL;
1480
1481 map = map__new2(start, dso, MAP__FUNCTION);
1482 if (map == NULL)
1483 return NULL;
1484
1485 dso->origin = DSO__ORIG_KMODULE;
9de89fe7 1486 map_groups__insert(self, map);
b7cece76
ACM
1487 return map;
1488}
1489
9de89fe7 1490static int map_groups__create_modules(struct map_groups *self)
439d473b
ACM
1491{
1492 char *line = NULL;
1493 size_t n;
1494 FILE *file = fopen("/proc/modules", "r");
1495 struct map *map;
6cfcc53e 1496
439d473b
ACM
1497 if (file == NULL)
1498 return -1;
6cfcc53e 1499
439d473b
ACM
1500 while (!feof(file)) {
1501 char name[PATH_MAX];
1502 u64 start;
439d473b
ACM
1503 char *sep;
1504 int line_len;
6cfcc53e 1505
439d473b
ACM
1506 line_len = getline(&line, &n, file);
1507 if (line_len < 0)
1508 break;
1509
1510 if (!line)
1511 goto out_failure;
1512
1513 line[--line_len] = '\0'; /* \n */
1514
1515 sep = strrchr(line, 'x');
1516 if (sep == NULL)
1517 continue;
1518
1519 hex2u64(sep + 1, &start);
1520
1521 sep = strchr(line, ' ');
1522 if (sep == NULL)
1523 continue;
1524
1525 *sep = '\0';
1526
1527 snprintf(name, sizeof(name), "[%s]", line);
9de89fe7 1528 map = map_groups__new_module(self, start, name);
b7cece76 1529 if (map == NULL)
439d473b 1530 goto out_delete_line;
b7cece76 1531 dso__kernel_module_get_build_id(map->dso);
6cfcc53e 1532 }
439d473b
ACM
1533
1534 free(line);
1535 fclose(file);
1536
9de89fe7 1537 return map_groups__set_modules_path(self);
439d473b
ACM
1538
1539out_delete_line:
1540 free(line);
1541out_failure:
1542 return -1;
6cfcc53e
MG
1543}
1544
9958e1f0 1545static int dso__load_vmlinux(struct dso *self, struct map *map,
6beba7ad 1546 const char *vmlinux, symbol_filter_t filter)
a2928c42 1547{
fbd733b8 1548 int err = -1, fd;
a2928c42 1549
fbd733b8
ACM
1550 if (self->has_build_id) {
1551 u8 build_id[BUILD_ID_SIZE];
1552
1553 if (filename__read_build_id(vmlinux, build_id,
1554 sizeof(build_id)) < 0) {
1555 pr_debug("No build_id in %s, ignoring it\n", vmlinux);
1556 return -1;
1557 }
1558 if (!dso__build_id_equal(self, build_id)) {
1559 char expected_build_id[BUILD_ID_SIZE * 2 + 1],
1560 vmlinux_build_id[BUILD_ID_SIZE * 2 + 1];
1561
1562 build_id__sprintf(self->build_id,
1563 sizeof(self->build_id),
1564 expected_build_id);
1565 build_id__sprintf(build_id, sizeof(build_id),
1566 vmlinux_build_id);
1567 pr_debug("build_id in %s is %s while expected is %s, "
1568 "ignoring it\n", vmlinux, vmlinux_build_id,
1569 expected_build_id);
1570 return -1;
1571 }
1572 }
66bd8424 1573
fbd733b8 1574 fd = open(vmlinux, O_RDONLY);
a2928c42
ACM
1575 if (fd < 0)
1576 return -1;
1577
3610583c 1578 dso__set_loaded(self, map->type);
9de89fe7 1579 err = dso__load_sym(self, map, vmlinux, fd, filter, 0);
a2928c42
ACM
1580 close(fd);
1581
1582 return err;
1583}
1584
a19afe46 1585int dso__load_vmlinux_path(struct dso *self, struct map *map,
9de89fe7 1586 symbol_filter_t filter)
a19afe46
ACM
1587{
1588 int i, err = 0;
1589
1590 pr_debug("Looking at the vmlinux_path (%d entries long)\n",
1591 vmlinux_path__nr_entries);
1592
1593 for (i = 0; i < vmlinux_path__nr_entries; ++i) {
9de89fe7 1594 err = dso__load_vmlinux(self, map, vmlinux_path[i], filter);
a19afe46
ACM
1595 if (err > 0) {
1596 pr_debug("Using %s for symbols\n", vmlinux_path[i]);
1597 dso__set_long_name(self, strdup(vmlinux_path[i]));
1598 break;
1599 }
1600 }
1601
1602 return err;
1603}
1604
c338aee8 1605static int dso__load_kernel_sym(struct dso *self, struct map *map,
9de89fe7 1606 symbol_filter_t filter)
a827c875 1607{
cc612d81 1608 int err;
9e201442
ACM
1609 const char *kallsyms_filename = NULL;
1610 char *kallsyms_allocated_filename = NULL;
dc8d6ab2
ACM
1611 /*
1612 * Step 1: if the user specified a vmlinux filename, use it and only
1613 * it, reporting errors to the user if it cannot be used.
1614 *
1615 * For instance, try to analyse an ARM perf.data file _without_ a
1616 * build-id, or if the user specifies the wrong path to the right
1617 * vmlinux file, obviously we can't fallback to another vmlinux (a
1618 * x86_86 one, on the machine where analysis is being performed, say),
1619 * or worse, /proc/kallsyms.
1620 *
1621 * If the specified file _has_ a build-id and there is a build-id
1622 * section in the perf.data file, we will still do the expected
1623 * validation in dso__load_vmlinux and will bail out if they don't
1624 * match.
1625 */
1626 if (symbol_conf.vmlinux_name != NULL) {
9de89fe7 1627 err = dso__load_vmlinux(self, map,
dc8d6ab2
ACM
1628 symbol_conf.vmlinux_name, filter);
1629 goto out_try_fixup;
1630 }
cc612d81
ACM
1631
1632 if (vmlinux_path != NULL) {
9de89fe7 1633 err = dso__load_vmlinux_path(self, map, filter);
a19afe46
ACM
1634 if (err > 0)
1635 goto out_fixup;
cc612d81
ACM
1636 }
1637
b7cece76
ACM
1638 /*
1639 * Say the kernel DSO was created when processing the build-id header table,
1640 * we have a build-id, so check if it is the same as the running kernel,
1641 * using it if it is.
1642 */
1643 if (self->has_build_id) {
1644 u8 kallsyms_build_id[BUILD_ID_SIZE];
9e201442 1645 char sbuild_id[BUILD_ID_SIZE * 2 + 1];
b7cece76
ACM
1646
1647 if (sysfs__read_build_id("/sys/kernel/notes", kallsyms_build_id,
8d0591f6 1648 sizeof(kallsyms_build_id)) == 0) {
9e201442
ACM
1649 if (dso__build_id_equal(self, kallsyms_build_id)) {
1650 kallsyms_filename = "/proc/kallsyms";
8d0591f6 1651 goto do_kallsyms;
9e201442 1652 }
8d0591f6 1653 }
dc8d6ab2
ACM
1654 /*
1655 * Now look if we have it on the build-id cache in
1656 * $HOME/.debug/[kernel.kallsyms].
1657 */
9e201442
ACM
1658 build_id__sprintf(self->build_id, sizeof(self->build_id),
1659 sbuild_id);
1660
1661 if (asprintf(&kallsyms_allocated_filename,
1662 "%s/.debug/[kernel.kallsyms]/%s",
dc8d6ab2
ACM
1663 getenv("HOME"), sbuild_id) == -1)
1664 return -1;
1665
19fc2ded
ACM
1666 kallsyms_filename = kallsyms_allocated_filename;
1667
dc8d6ab2 1668 if (access(kallsyms_filename, F_OK)) {
9e201442 1669 free(kallsyms_allocated_filename);
dc8d6ab2 1670 return -1;
9e201442 1671 }
dc8d6ab2
ACM
1672 } else {
1673 /*
1674 * Last resort, if we don't have a build-id and couldn't find
1675 * any vmlinux file, try the running kernel kallsyms table.
1676 */
9e201442 1677 kallsyms_filename = "/proc/kallsyms";
9e201442 1678 }
439d473b 1679
cc612d81 1680do_kallsyms:
9de89fe7 1681 err = dso__load_kallsyms(self, kallsyms_filename, map, filter);
dc8d6ab2 1682 free(kallsyms_allocated_filename);
439d473b 1683
dc8d6ab2 1684out_try_fixup:
439d473b 1685 if (err > 0) {
cc612d81 1686out_fixup:
e1c7c6a4 1687 if (kallsyms_filename != NULL)
dc8d6ab2 1688 dso__set_long_name(self, strdup("[kernel.kallsyms]"));
6a4694a4
ACM
1689 map__fixup_start(map);
1690 map__fixup_end(map);
439d473b 1691 }
94cb9e38 1692
a827c875
ACM
1693 return err;
1694}
1695
b0da954a
ACM
1696LIST_HEAD(dsos__user);
1697LIST_HEAD(dsos__kernel);
cd84c2ac 1698
b0da954a 1699static void dsos__add(struct list_head *head, struct dso *dso)
cd84c2ac 1700{
b0da954a 1701 list_add_tail(&dso->node, head);
cd84c2ac
FW
1702}
1703
b0da954a 1704static struct dso *dsos__find(struct list_head *head, const char *name)
cd84c2ac
FW
1705{
1706 struct dso *pos;
1707
b0da954a 1708 list_for_each_entry(pos, head, node)
cf4e5b08 1709 if (strcmp(pos->long_name, name) == 0)
cd84c2ac
FW
1710 return pos;
1711 return NULL;
1712}
1713
a89e5abe 1714struct dso *__dsos__findnew(struct list_head *head, const char *name)
cd84c2ac 1715{
a89e5abe 1716 struct dso *dso = dsos__find(head, name);
cd84c2ac 1717
e4204992 1718 if (!dso) {
00a192b3 1719 dso = dso__new(name);
cfc10d3b 1720 if (dso != NULL) {
a89e5abe 1721 dsos__add(head, dso);
cfc10d3b
ACM
1722 dso__set_basename(dso);
1723 }
66bd8424 1724 }
cd84c2ac
FW
1725
1726 return dso;
cd84c2ac
FW
1727}
1728
b0da954a 1729static void __dsos__fprintf(struct list_head *head, FILE *fp)
cd84c2ac
FW
1730{
1731 struct dso *pos;
1732
95011c60
ACM
1733 list_for_each_entry(pos, head, node) {
1734 int i;
1735 for (i = 0; i < MAP__NR_TYPES; ++i)
1736 dso__fprintf(pos, i, fp);
1737 }
cd84c2ac
FW
1738}
1739
b0da954a
ACM
1740void dsos__fprintf(FILE *fp)
1741{
1742 __dsos__fprintf(&dsos__kernel, fp);
1743 __dsos__fprintf(&dsos__user, fp);
1744}
1745
88d3d9b7
ACM
1746static size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
1747 bool with_hits)
9e03eb2d
ACM
1748{
1749 struct dso *pos;
1750 size_t ret = 0;
1751
b0da954a 1752 list_for_each_entry(pos, head, node) {
88d3d9b7
ACM
1753 if (with_hits && !pos->hit)
1754 continue;
9e03eb2d 1755 ret += dso__fprintf_buildid(pos, fp);
1124ba73 1756 ret += fprintf(fp, " %s\n", pos->long_name);
9e03eb2d
ACM
1757 }
1758 return ret;
1759}
1760
88d3d9b7 1761size_t dsos__fprintf_buildid(FILE *fp, bool with_hits)
b0da954a 1762{
88d3d9b7
ACM
1763 return (__dsos__fprintf_buildid(&dsos__kernel, fp, with_hits) +
1764 __dsos__fprintf_buildid(&dsos__user, fp, with_hits));
b0da954a
ACM
1765}
1766
fd1d908c
ACM
1767struct dso *dso__new_kernel(const char *name)
1768{
1769 struct dso *self = dso__new(name ?: "[kernel.kallsyms]");
1770
1771 if (self != NULL) {
1772 self->short_name = "[kernel]";
1773 self->kernel = 1;
1774 }
1775
1776 return self;
1777}
1778
1779void dso__read_running_kernel_build_id(struct dso *self)
1780{
1781 if (sysfs__read_build_id("/sys/kernel/notes", self->build_id,
1782 sizeof(self->build_id)) == 0)
1783 self->has_build_id = true;
1784}
1785
de176489 1786static struct dso *dsos__create_kernel(const char *vmlinux)
cd84c2ac 1787{
fd1d908c 1788 struct dso *kernel = dso__new_kernel(vmlinux);
cd84c2ac 1789
8d92c02a
ACM
1790 if (kernel != NULL) {
1791 dso__read_running_kernel_build_id(kernel);
1792 dsos__add(&dsos__kernel, kernel);
1793 }
cd84c2ac 1794
f1dfa0b1 1795 return kernel;
f1dfa0b1
ACM
1796}
1797
b7cece76
ACM
1798int __map_groups__create_kernel_maps(struct map_groups *self,
1799 struct map *vmlinux_maps[MAP__NR_TYPES],
1800 struct dso *kernel)
f1dfa0b1 1801{
de176489 1802 enum map_type type;
f1dfa0b1 1803
de176489 1804 for (type = 0; type < MAP__NR_TYPES; ++type) {
9de89fe7
ACM
1805 struct kmap *kmap;
1806
de176489
ACM
1807 vmlinux_maps[type] = map__new2(0, kernel, type);
1808 if (vmlinux_maps[type] == NULL)
1809 return -1;
f1dfa0b1 1810
de176489
ACM
1811 vmlinux_maps[type]->map_ip =
1812 vmlinux_maps[type]->unmap_ip = identity__map_ip;
9de89fe7
ACM
1813
1814 kmap = map__kmap(vmlinux_maps[type]);
1815 kmap->kmaps = self;
de176489 1816 map_groups__insert(self, vmlinux_maps[type]);
f1dfa0b1
ACM
1817 }
1818
f1dfa0b1 1819 return 0;
2446042c
ACM
1820}
1821
cc612d81
ACM
1822static void vmlinux_path__exit(void)
1823{
1824 while (--vmlinux_path__nr_entries >= 0) {
1825 free(vmlinux_path[vmlinux_path__nr_entries]);
1826 vmlinux_path[vmlinux_path__nr_entries] = NULL;
1827 }
1828
1829 free(vmlinux_path);
1830 vmlinux_path = NULL;
1831}
1832
1833static int vmlinux_path__init(void)
1834{
1835 struct utsname uts;
1836 char bf[PATH_MAX];
1837
1838 if (uname(&uts) < 0)
1839 return -1;
1840
1841 vmlinux_path = malloc(sizeof(char *) * 5);
1842 if (vmlinux_path == NULL)
1843 return -1;
1844
1845 vmlinux_path[vmlinux_path__nr_entries] = strdup("vmlinux");
1846 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1847 goto out_fail;
1848 ++vmlinux_path__nr_entries;
1849 vmlinux_path[vmlinux_path__nr_entries] = strdup("/boot/vmlinux");
1850 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1851 goto out_fail;
1852 ++vmlinux_path__nr_entries;
1853 snprintf(bf, sizeof(bf), "/boot/vmlinux-%s", uts.release);
1854 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1855 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1856 goto out_fail;
1857 ++vmlinux_path__nr_entries;
1858 snprintf(bf, sizeof(bf), "/lib/modules/%s/build/vmlinux", uts.release);
1859 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1860 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1861 goto out_fail;
1862 ++vmlinux_path__nr_entries;
1863 snprintf(bf, sizeof(bf), "/usr/lib/debug/lib/modules/%s/vmlinux",
1864 uts.release);
1865 vmlinux_path[vmlinux_path__nr_entries] = strdup(bf);
1866 if (vmlinux_path[vmlinux_path__nr_entries] == NULL)
1867 goto out_fail;
1868 ++vmlinux_path__nr_entries;
1869
1870 return 0;
1871
1872out_fail:
1873 vmlinux_path__exit();
1874 return -1;
1875}
1876
655000e7
ACM
1877static int setup_list(struct strlist **list, const char *list_str,
1878 const char *list_name)
1879{
1880 if (list_str == NULL)
1881 return 0;
1882
1883 *list = strlist__new(true, list_str);
1884 if (!*list) {
1885 pr_err("problems parsing %s list\n", list_name);
1886 return -1;
1887 }
1888 return 0;
1889}
1890
75be6cf4 1891int symbol__init(void)
2446042c 1892{
95011c60 1893 elf_version(EV_CURRENT);
75be6cf4
ACM
1894 if (symbol_conf.sort_by_name)
1895 symbol_conf.priv_size += (sizeof(struct symbol_name_rb_node) -
1896 sizeof(struct symbol));
b32d133a 1897
75be6cf4 1898 if (symbol_conf.try_vmlinux_path && vmlinux_path__init() < 0)
2446042c
ACM
1899 return -1;
1900
c410a338
ACM
1901 if (symbol_conf.field_sep && *symbol_conf.field_sep == '.') {
1902 pr_err("'.' is the only non valid --field-separator argument\n");
1903 return -1;
1904 }
1905
655000e7
ACM
1906 if (setup_list(&symbol_conf.dso_list,
1907 symbol_conf.dso_list_str, "dso") < 0)
1908 return -1;
1909
1910 if (setup_list(&symbol_conf.comm_list,
1911 symbol_conf.comm_list_str, "comm") < 0)
1912 goto out_free_dso_list;
1913
1914 if (setup_list(&symbol_conf.sym_list,
1915 symbol_conf.sym_list_str, "symbol") < 0)
1916 goto out_free_comm_list;
1917
4aa65636 1918 return 0;
655000e7
ACM
1919
1920out_free_dso_list:
1921 strlist__delete(symbol_conf.dso_list);
1922out_free_comm_list:
1923 strlist__delete(symbol_conf.comm_list);
1924 return -1;
4aa65636
ACM
1925}
1926
9de89fe7
ACM
1927int map_groups__create_kernel_maps(struct map_groups *self,
1928 struct map *vmlinux_maps[MAP__NR_TYPES])
4aa65636 1929{
9de89fe7
ACM
1930 struct dso *kernel = dsos__create_kernel(symbol_conf.vmlinux_name);
1931
1932 if (kernel == NULL)
1933 return -1;
1934
1935 if (__map_groups__create_kernel_maps(self, vmlinux_maps, kernel) < 0)
cc612d81 1936 return -1;
cc612d81 1937
9de89fe7
ACM
1938 if (symbol_conf.use_modules && map_groups__create_modules(self) < 0)
1939 return -1;
90c83218
ACM
1940 /*
1941 * Now that we have all the maps created, just set the ->end of them:
1942 */
9de89fe7 1943 map_groups__fixup_end(self);
6671cb16 1944 return 0;
cd84c2ac 1945}