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