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