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