1 // SPDX-License-Identifier: GPL-2.0
7 #include <linux/kernel.h>
8 #include <linux/mman.h>
9 #include <linux/time64.h>
10 #include <sys/types.h>
12 #include <sys/param.h>
25 #include "namespaces.h"
28 #include "sane_ctype.h"
32 #include <symbol/kallsyms.h>
33 #include <sys/utsname.h>
35 static int dso__load_kernel_sym(struct dso
*dso
, struct map
*map
);
36 static int dso__load_guest_kernel_sym(struct dso
*dso
, struct map
*map
);
37 static bool symbol__is_idle(const char *name
);
39 int vmlinux_path__nr_entries
;
42 struct symbol_conf symbol_conf
= {
45 .try_vmlinux_path
= true,
47 .demangle_kernel
= false,
48 .cumulate_callchain
= true,
49 .time_quantum
= 100 * NSEC_PER_MSEC
, /* 100ms */
50 .show_hist_headers
= true,
57 static enum dso_binary_type binary_type_symtab
[] = {
58 DSO_BINARY_TYPE__KALLSYMS
,
59 DSO_BINARY_TYPE__GUEST_KALLSYMS
,
60 DSO_BINARY_TYPE__JAVA_JIT
,
61 DSO_BINARY_TYPE__DEBUGLINK
,
62 DSO_BINARY_TYPE__BUILD_ID_CACHE
,
63 DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO
,
64 DSO_BINARY_TYPE__FEDORA_DEBUGINFO
,
65 DSO_BINARY_TYPE__UBUNTU_DEBUGINFO
,
66 DSO_BINARY_TYPE__BUILDID_DEBUGINFO
,
67 DSO_BINARY_TYPE__SYSTEM_PATH_DSO
,
68 DSO_BINARY_TYPE__GUEST_KMODULE
,
69 DSO_BINARY_TYPE__GUEST_KMODULE_COMP
,
70 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE
,
71 DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP
,
72 DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO
,
73 DSO_BINARY_TYPE__NOT_FOUND
,
76 #define DSO_BINARY_TYPE__SYMTAB_CNT ARRAY_SIZE(binary_type_symtab)
78 static bool symbol_type__filter(char symbol_type
)
80 symbol_type
= toupper(symbol_type
);
81 return symbol_type
== 'T' || symbol_type
== 'W' || symbol_type
== 'D' || symbol_type
== 'B';
84 static int prefix_underscores_count(const char *str
)
86 const char *tail
= str
;
94 const char * __weak
arch__normalize_symbol_name(const char *name
)
99 int __weak
arch__compare_symbol_names(const char *namea
, const char *nameb
)
101 return strcmp(namea
, nameb
);
104 int __weak
arch__compare_symbol_names_n(const char *namea
, const char *nameb
,
107 return strncmp(namea
, nameb
, n
);
110 int __weak
arch__choose_best_symbol(struct symbol
*syma
,
111 struct symbol
*symb __maybe_unused
)
113 /* Avoid "SyS" kernel syscall aliases */
114 if (strlen(syma
->name
) >= 3 && !strncmp(syma
->name
, "SyS", 3))
116 if (strlen(syma
->name
) >= 10 && !strncmp(syma
->name
, "compat_SyS", 10))
122 static int choose_best_symbol(struct symbol
*syma
, struct symbol
*symb
)
128 /* Prefer a symbol with non zero length */
129 a
= syma
->end
- syma
->start
;
130 b
= symb
->end
- symb
->start
;
131 if ((b
== 0) && (a
> 0))
133 else if ((a
== 0) && (b
> 0))
136 /* Prefer a non weak symbol over a weak one */
137 a
= syma
->binding
== STB_WEAK
;
138 b
= symb
->binding
== STB_WEAK
;
144 /* Prefer a global symbol over a non global one */
145 a
= syma
->binding
== STB_GLOBAL
;
146 b
= symb
->binding
== STB_GLOBAL
;
152 /* Prefer a symbol with less underscores */
153 a
= prefix_underscores_count(syma
->name
);
154 b
= prefix_underscores_count(symb
->name
);
160 /* Choose the symbol with the longest name */
161 na
= strlen(syma
->name
);
162 nb
= strlen(symb
->name
);
168 return arch__choose_best_symbol(syma
, symb
);
171 void symbols__fixup_duplicate(struct rb_root_cached
*symbols
)
174 struct symbol
*curr
, *next
;
176 if (symbol_conf
.allow_aliases
)
179 nd
= rb_first_cached(symbols
);
182 curr
= rb_entry(nd
, struct symbol
, rb_node
);
184 nd
= rb_next(&curr
->rb_node
);
185 next
= rb_entry(nd
, struct symbol
, rb_node
);
190 if (curr
->start
!= next
->start
)
193 if (choose_best_symbol(curr
, next
) == SYMBOL_A
) {
194 rb_erase_cached(&next
->rb_node
, symbols
);
195 symbol__delete(next
);
198 nd
= rb_next(&curr
->rb_node
);
199 rb_erase_cached(&curr
->rb_node
, symbols
);
200 symbol__delete(curr
);
205 void symbols__fixup_end(struct rb_root_cached
*symbols
)
207 struct rb_node
*nd
, *prevnd
= rb_first_cached(symbols
);
208 struct symbol
*curr
, *prev
;
213 curr
= rb_entry(prevnd
, struct symbol
, rb_node
);
215 for (nd
= rb_next(prevnd
); nd
; nd
= rb_next(nd
)) {
217 curr
= rb_entry(nd
, struct symbol
, rb_node
);
219 if (prev
->end
== prev
->start
&& prev
->end
!= curr
->start
)
220 prev
->end
= curr
->start
;
224 if (curr
->end
== curr
->start
)
225 curr
->end
= roundup(curr
->start
, 4096) + 4096;
228 void map_groups__fixup_end(struct map_groups
*mg
)
230 struct maps
*maps
= &mg
->maps
;
231 struct map
*next
, *curr
;
233 down_write(&maps
->lock
);
235 curr
= maps__first(maps
);
239 for (next
= map__next(curr
); next
; next
= map__next(curr
)) {
241 curr
->end
= next
->start
;
246 * We still haven't the actual symbols, so guess the
247 * last map final address.
253 up_write(&maps
->lock
);
256 struct symbol
*symbol__new(u64 start
, u64 len
, u8 binding
, u8 type
, const char *name
)
258 size_t namelen
= strlen(name
) + 1;
259 struct symbol
*sym
= calloc(1, (symbol_conf
.priv_size
+
260 sizeof(*sym
) + namelen
));
264 if (symbol_conf
.priv_size
) {
265 if (symbol_conf
.init_annotation
) {
266 struct annotation
*notes
= (void *)sym
;
267 pthread_mutex_init(¬es
->lock
, NULL
);
269 sym
= ((void *)sym
) + symbol_conf
.priv_size
;
273 sym
->end
= len
? start
+ len
: start
;
275 sym
->binding
= binding
;
276 sym
->namelen
= namelen
- 1;
278 pr_debug4("%s: %s %#" PRIx64
"-%#" PRIx64
"\n",
279 __func__
, name
, start
, sym
->end
);
280 memcpy(sym
->name
, name
, namelen
);
285 void symbol__delete(struct symbol
*sym
)
287 free(((void *)sym
) - symbol_conf
.priv_size
);
290 void symbols__delete(struct rb_root_cached
*symbols
)
293 struct rb_node
*next
= rb_first_cached(symbols
);
296 pos
= rb_entry(next
, struct symbol
, rb_node
);
297 next
= rb_next(&pos
->rb_node
);
298 rb_erase_cached(&pos
->rb_node
, symbols
);
303 void __symbols__insert(struct rb_root_cached
*symbols
,
304 struct symbol
*sym
, bool kernel
)
306 struct rb_node
**p
= &symbols
->rb_root
.rb_node
;
307 struct rb_node
*parent
= NULL
;
308 const u64 ip
= sym
->start
;
310 bool leftmost
= true;
313 const char *name
= sym
->name
;
315 * ppc64 uses function descriptors and appends a '.' to the
316 * start of every instruction address. Remove it.
320 sym
->idle
= symbol__is_idle(name
);
325 s
= rb_entry(parent
, struct symbol
, rb_node
);
333 rb_link_node(&sym
->rb_node
, parent
, p
);
334 rb_insert_color_cached(&sym
->rb_node
, symbols
, leftmost
);
337 void symbols__insert(struct rb_root_cached
*symbols
, struct symbol
*sym
)
339 __symbols__insert(symbols
, sym
, false);
342 static struct symbol
*symbols__find(struct rb_root_cached
*symbols
, u64 ip
)
349 n
= symbols
->rb_root
.rb_node
;
352 struct symbol
*s
= rb_entry(n
, struct symbol
, rb_node
);
356 else if (ip
> s
->end
|| (ip
== s
->end
&& ip
!= s
->start
))
365 static struct symbol
*symbols__first(struct rb_root_cached
*symbols
)
367 struct rb_node
*n
= rb_first_cached(symbols
);
370 return rb_entry(n
, struct symbol
, rb_node
);
375 static struct symbol
*symbols__last(struct rb_root_cached
*symbols
)
377 struct rb_node
*n
= rb_last(&symbols
->rb_root
);
380 return rb_entry(n
, struct symbol
, rb_node
);
385 static struct symbol
*symbols__next(struct symbol
*sym
)
387 struct rb_node
*n
= rb_next(&sym
->rb_node
);
390 return rb_entry(n
, struct symbol
, rb_node
);
395 static void symbols__insert_by_name(struct rb_root_cached
*symbols
, struct symbol
*sym
)
397 struct rb_node
**p
= &symbols
->rb_root
.rb_node
;
398 struct rb_node
*parent
= NULL
;
399 struct symbol_name_rb_node
*symn
, *s
;
400 bool leftmost
= true;
402 symn
= container_of(sym
, struct symbol_name_rb_node
, sym
);
406 s
= rb_entry(parent
, struct symbol_name_rb_node
, rb_node
);
407 if (strcmp(sym
->name
, s
->sym
.name
) < 0)
414 rb_link_node(&symn
->rb_node
, parent
, p
);
415 rb_insert_color_cached(&symn
->rb_node
, symbols
, leftmost
);
418 static void symbols__sort_by_name(struct rb_root_cached
*symbols
,
419 struct rb_root_cached
*source
)
423 for (nd
= rb_first_cached(source
); nd
; nd
= rb_next(nd
)) {
424 struct symbol
*pos
= rb_entry(nd
, struct symbol
, rb_node
);
425 symbols__insert_by_name(symbols
, pos
);
429 int symbol__match_symbol_name(const char *name
, const char *str
,
430 enum symbol_tag_include includes
)
432 const char *versioning
;
434 if (includes
== SYMBOL_TAG_INCLUDE__DEFAULT_ONLY
&&
435 (versioning
= strstr(name
, "@@"))) {
436 int len
= strlen(str
);
438 if (len
< versioning
- name
)
439 len
= versioning
- name
;
441 return arch__compare_symbol_names_n(name
, str
, len
);
443 return arch__compare_symbol_names(name
, str
);
446 static struct symbol
*symbols__find_by_name(struct rb_root_cached
*symbols
,
448 enum symbol_tag_include includes
)
451 struct symbol_name_rb_node
*s
= NULL
;
456 n
= symbols
->rb_root
.rb_node
;
461 s
= rb_entry(n
, struct symbol_name_rb_node
, rb_node
);
462 cmp
= symbol__match_symbol_name(s
->sym
.name
, name
, includes
);
475 if (includes
!= SYMBOL_TAG_INCLUDE__DEFAULT_ONLY
)
476 /* return first symbol that has same name (if any) */
477 for (n
= rb_prev(n
); n
; n
= rb_prev(n
)) {
478 struct symbol_name_rb_node
*tmp
;
480 tmp
= rb_entry(n
, struct symbol_name_rb_node
, rb_node
);
481 if (arch__compare_symbol_names(tmp
->sym
.name
, s
->sym
.name
))
490 void dso__reset_find_symbol_cache(struct dso
*dso
)
492 dso
->last_find_result
.addr
= 0;
493 dso
->last_find_result
.symbol
= NULL
;
496 void dso__insert_symbol(struct dso
*dso
, struct symbol
*sym
)
498 __symbols__insert(&dso
->symbols
, sym
, dso
->kernel
);
500 /* update the symbol cache if necessary */
501 if (dso
->last_find_result
.addr
>= sym
->start
&&
502 (dso
->last_find_result
.addr
< sym
->end
||
503 sym
->start
== sym
->end
)) {
504 dso
->last_find_result
.symbol
= sym
;
508 struct symbol
*dso__find_symbol(struct dso
*dso
, u64 addr
)
510 if (dso
->last_find_result
.addr
!= addr
|| dso
->last_find_result
.symbol
== NULL
) {
511 dso
->last_find_result
.addr
= addr
;
512 dso
->last_find_result
.symbol
= symbols__find(&dso
->symbols
, addr
);
515 return dso
->last_find_result
.symbol
;
518 struct symbol
*dso__first_symbol(struct dso
*dso
)
520 return symbols__first(&dso
->symbols
);
523 struct symbol
*dso__last_symbol(struct dso
*dso
)
525 return symbols__last(&dso
->symbols
);
528 struct symbol
*dso__next_symbol(struct symbol
*sym
)
530 return symbols__next(sym
);
533 struct symbol
*symbol__next_by_name(struct symbol
*sym
)
535 struct symbol_name_rb_node
*s
= container_of(sym
, struct symbol_name_rb_node
, sym
);
536 struct rb_node
*n
= rb_next(&s
->rb_node
);
538 return n
? &rb_entry(n
, struct symbol_name_rb_node
, rb_node
)->sym
: NULL
;
542 * Returns first symbol that matched with @name.
544 struct symbol
*dso__find_symbol_by_name(struct dso
*dso
, const char *name
)
546 struct symbol
*s
= symbols__find_by_name(&dso
->symbol_names
, name
,
547 SYMBOL_TAG_INCLUDE__NONE
);
549 s
= symbols__find_by_name(&dso
->symbol_names
, name
,
550 SYMBOL_TAG_INCLUDE__DEFAULT_ONLY
);
554 void dso__sort_by_name(struct dso
*dso
)
556 dso__set_sorted_by_name(dso
);
557 return symbols__sort_by_name(&dso
->symbol_names
, &dso
->symbols
);
560 int modules__parse(const char *filename
, void *arg
,
561 int (*process_module
)(void *arg
, const char *name
,
562 u64 start
, u64 size
))
569 file
= fopen(filename
, "r");
579 line_len
= getline(&line
, &n
, file
);
592 line
[--line_len
] = '\0'; /* \n */
594 sep
= strrchr(line
, 'x');
598 hex2u64(sep
+ 1, &start
);
600 sep
= strchr(line
, ' ');
606 scnprintf(name
, sizeof(name
), "[%s]", line
);
608 size
= strtoul(sep
+ 1, &endptr
, 0);
609 if (*endptr
!= ' ' && *endptr
!= '\t')
612 err
= process_module(arg
, name
, start
, size
);
623 * These are symbols in the kernel image, so make sure that
624 * sym is from a kernel DSO.
626 static bool symbol__is_idle(const char *name
)
628 const char * const idle_symbols
[] = {
638 "mwait_idle_with_hints",
640 "ppc64_runlatch_off",
641 "pseries_dedicated_idle_sleep",
646 for (i
= 0; idle_symbols
[i
]; i
++) {
647 if (!strcmp(idle_symbols
[i
], name
))
654 static int map__process_kallsym_symbol(void *arg
, const char *name
,
655 char type
, u64 start
)
658 struct dso
*dso
= arg
;
659 struct rb_root_cached
*root
= &dso
->symbols
;
661 if (!symbol_type__filter(type
))
665 * module symbols are not sorted so we add all
666 * symbols, setting length to 0, and rely on
667 * symbols__fixup_end() to fix it up.
669 sym
= symbol__new(start
, 0, kallsyms2elf_binding(type
), kallsyms2elf_type(type
), name
);
673 * We will pass the symbols to the filter later, in
674 * map__split_kallsyms, when we have split the maps per module
676 __symbols__insert(root
, sym
, !strchr(name
, '['));
682 * Loads the function entries in /proc/kallsyms into kernel_map->dso,
683 * so that we can in the next step set the symbol ->end address and then
684 * call kernel_maps__split_kallsyms.
686 static int dso__load_all_kallsyms(struct dso
*dso
, const char *filename
)
688 return kallsyms__parse(filename
, dso
, map__process_kallsym_symbol
);
691 static int map_groups__split_kallsyms_for_kcore(struct map_groups
*kmaps
, struct dso
*dso
)
693 struct map
*curr_map
;
696 struct rb_root_cached old_root
= dso
->symbols
;
697 struct rb_root_cached
*root
= &dso
->symbols
;
698 struct rb_node
*next
= rb_first_cached(root
);
703 *root
= RB_ROOT_CACHED
;
708 pos
= rb_entry(next
, struct symbol
, rb_node
);
709 next
= rb_next(&pos
->rb_node
);
711 rb_erase_cached(&pos
->rb_node
, &old_root
);
712 RB_CLEAR_NODE(&pos
->rb_node
);
713 module
= strchr(pos
->name
, '\t');
717 curr_map
= map_groups__find(kmaps
, pos
->start
);
724 pos
->start
-= curr_map
->start
- curr_map
->pgoff
;
725 if (pos
->end
> curr_map
->end
)
726 pos
->end
= curr_map
->end
;
728 pos
->end
-= curr_map
->start
- curr_map
->pgoff
;
729 symbols__insert(&curr_map
->dso
->symbols
, pos
);
733 /* Symbols have been adjusted */
734 dso
->adjust_symbols
= 1;
740 * Split the symbols into maps, making sure there are no overlaps, i.e. the
741 * kernel range is broken in several maps, named [kernel].N, as we don't have
742 * the original ELF section names vmlinux have.
744 static int map_groups__split_kallsyms(struct map_groups
*kmaps
, struct dso
*dso
, u64 delta
,
745 struct map
*initial_map
)
747 struct machine
*machine
;
748 struct map
*curr_map
= initial_map
;
750 int count
= 0, moved
= 0;
751 struct rb_root_cached
*root
= &dso
->symbols
;
752 struct rb_node
*next
= rb_first_cached(root
);
753 int kernel_range
= 0;
759 machine
= kmaps
->machine
;
761 x86_64
= machine__is(machine
, "x86_64");
766 pos
= rb_entry(next
, struct symbol
, rb_node
);
767 next
= rb_next(&pos
->rb_node
);
769 module
= strchr(pos
->name
, '\t');
771 if (!symbol_conf
.use_modules
)
776 if (strcmp(curr_map
->dso
->short_name
, module
)) {
777 if (curr_map
!= initial_map
&&
778 dso
->kernel
== DSO_TYPE_GUEST_KERNEL
&&
779 machine__is_default_guest(machine
)) {
781 * We assume all symbols of a module are
782 * continuous in * kallsyms, so curr_map
783 * points to a module and all its
784 * symbols are in its kmap. Mark it as
787 dso__set_loaded(curr_map
->dso
);
790 curr_map
= map_groups__find_by_name(kmaps
, module
);
791 if (curr_map
== NULL
) {
792 pr_debug("%s/proc/{kallsyms,modules} "
793 "inconsistency while looking "
794 "for \"%s\" module!\n",
795 machine
->root_dir
, module
);
796 curr_map
= initial_map
;
800 if (curr_map
->dso
->loaded
&&
801 !machine__is_default_guest(machine
))
805 * So that we look just like we get from .ko files,
806 * i.e. not prelinked, relative to initial_map->start.
808 pos
->start
= curr_map
->map_ip(curr_map
, pos
->start
);
809 pos
->end
= curr_map
->map_ip(curr_map
, pos
->end
);
810 } else if (x86_64
&& is_entry_trampoline(pos
->name
)) {
812 * These symbols are not needed anymore since the
813 * trampoline maps refer to the text section and it's
814 * symbols instead. Avoid having to deal with
815 * relocations, and the assumption that the first symbol
816 * is the start of kernel text, by simply removing the
817 * symbols at this point.
820 } else if (curr_map
!= initial_map
) {
821 char dso_name
[PATH_MAX
];
825 /* Kernel was relocated at boot time */
831 curr_map
= initial_map
;
835 if (dso
->kernel
== DSO_TYPE_GUEST_KERNEL
)
836 snprintf(dso_name
, sizeof(dso_name
),
840 snprintf(dso_name
, sizeof(dso_name
),
844 ndso
= dso__new(dso_name
);
848 ndso
->kernel
= dso
->kernel
;
850 curr_map
= map__new2(pos
->start
, ndso
);
851 if (curr_map
== NULL
) {
856 curr_map
->map_ip
= curr_map
->unmap_ip
= identity__map_ip
;
857 map_groups__insert(kmaps
, curr_map
);
860 /* Kernel was relocated at boot time */
865 if (curr_map
!= initial_map
) {
866 rb_erase_cached(&pos
->rb_node
, root
);
867 symbols__insert(&curr_map
->dso
->symbols
, pos
);
874 rb_erase_cached(&pos
->rb_node
, root
);
878 if (curr_map
!= initial_map
&&
879 dso
->kernel
== DSO_TYPE_GUEST_KERNEL
&&
880 machine__is_default_guest(kmaps
->machine
)) {
881 dso__set_loaded(curr_map
->dso
);
884 return count
+ moved
;
887 bool symbol__restricted_filename(const char *filename
,
888 const char *restricted_filename
)
890 bool restricted
= false;
892 if (symbol_conf
.kptr_restrict
) {
893 char *r
= realpath(filename
, NULL
);
896 restricted
= strcmp(r
, restricted_filename
) == 0;
906 struct rb_node rb_node
;
911 static void add_module(struct module_info
*mi
, struct rb_root
*modules
)
913 struct rb_node
**p
= &modules
->rb_node
;
914 struct rb_node
*parent
= NULL
;
915 struct module_info
*m
;
919 m
= rb_entry(parent
, struct module_info
, rb_node
);
920 if (strcmp(mi
->name
, m
->name
) < 0)
925 rb_link_node(&mi
->rb_node
, parent
, p
);
926 rb_insert_color(&mi
->rb_node
, modules
);
929 static void delete_modules(struct rb_root
*modules
)
931 struct module_info
*mi
;
932 struct rb_node
*next
= rb_first(modules
);
935 mi
= rb_entry(next
, struct module_info
, rb_node
);
936 next
= rb_next(&mi
->rb_node
);
937 rb_erase(&mi
->rb_node
, modules
);
943 static struct module_info
*find_module(const char *name
,
944 struct rb_root
*modules
)
946 struct rb_node
*n
= modules
->rb_node
;
949 struct module_info
*m
;
952 m
= rb_entry(n
, struct module_info
, rb_node
);
953 cmp
= strcmp(name
, m
->name
);
965 static int __read_proc_modules(void *arg
, const char *name
, u64 start
,
966 u64 size __maybe_unused
)
968 struct rb_root
*modules
= arg
;
969 struct module_info
*mi
;
971 mi
= zalloc(sizeof(struct module_info
));
975 mi
->name
= strdup(name
);
983 add_module(mi
, modules
);
988 static int read_proc_modules(const char *filename
, struct rb_root
*modules
)
990 if (symbol__restricted_filename(filename
, "/proc/modules"))
993 if (modules__parse(filename
, modules
, __read_proc_modules
)) {
994 delete_modules(modules
);
1001 int compare_proc_modules(const char *from
, const char *to
)
1003 struct rb_root from_modules
= RB_ROOT
;
1004 struct rb_root to_modules
= RB_ROOT
;
1005 struct rb_node
*from_node
, *to_node
;
1006 struct module_info
*from_m
, *to_m
;
1009 if (read_proc_modules(from
, &from_modules
))
1012 if (read_proc_modules(to
, &to_modules
))
1013 goto out_delete_from
;
1015 from_node
= rb_first(&from_modules
);
1016 to_node
= rb_first(&to_modules
);
1021 from_m
= rb_entry(from_node
, struct module_info
, rb_node
);
1022 to_m
= rb_entry(to_node
, struct module_info
, rb_node
);
1024 if (from_m
->start
!= to_m
->start
||
1025 strcmp(from_m
->name
, to_m
->name
))
1028 from_node
= rb_next(from_node
);
1029 to_node
= rb_next(to_node
);
1032 if (!from_node
&& !to_node
)
1035 delete_modules(&to_modules
);
1037 delete_modules(&from_modules
);
1042 struct map
*map_groups__first(struct map_groups
*mg
)
1044 return maps__first(&mg
->maps
);
1047 static int do_validate_kcore_modules(const char *filename
,
1048 struct map_groups
*kmaps
)
1050 struct rb_root modules
= RB_ROOT
;
1051 struct map
*old_map
;
1054 err
= read_proc_modules(filename
, &modules
);
1058 old_map
= map_groups__first(kmaps
);
1060 struct map
*next
= map_groups__next(old_map
);
1061 struct module_info
*mi
;
1063 if (!__map__is_kmodule(old_map
)) {
1068 /* Module must be in memory at the same address */
1069 mi
= find_module(old_map
->dso
->short_name
, &modules
);
1070 if (!mi
|| mi
->start
!= old_map
->start
) {
1078 delete_modules(&modules
);
1083 * If kallsyms is referenced by name then we look for filename in the same
1086 static bool filename_from_kallsyms_filename(char *filename
,
1087 const char *base_name
,
1088 const char *kallsyms_filename
)
1092 strcpy(filename
, kallsyms_filename
);
1093 name
= strrchr(filename
, '/');
1099 if (!strcmp(name
, "kallsyms")) {
1100 strcpy(name
, base_name
);
1107 static int validate_kcore_modules(const char *kallsyms_filename
,
1110 struct map_groups
*kmaps
= map__kmaps(map
);
1111 char modules_filename
[PATH_MAX
];
1116 if (!filename_from_kallsyms_filename(modules_filename
, "modules",
1120 if (do_validate_kcore_modules(modules_filename
, kmaps
))
1126 static int validate_kcore_addresses(const char *kallsyms_filename
,
1129 struct kmap
*kmap
= map__kmap(map
);
1134 if (kmap
->ref_reloc_sym
&& kmap
->ref_reloc_sym
->name
) {
1137 if (kallsyms__get_function_start(kallsyms_filename
,
1138 kmap
->ref_reloc_sym
->name
, &start
))
1140 if (start
!= kmap
->ref_reloc_sym
->addr
)
1144 return validate_kcore_modules(kallsyms_filename
, map
);
1147 struct kcore_mapfn_data
{
1149 struct list_head maps
;
1152 static int kcore_mapfn(u64 start
, u64 len
, u64 pgoff
, void *data
)
1154 struct kcore_mapfn_data
*md
= data
;
1157 map
= map__new2(start
, md
->dso
);
1161 map
->end
= map
->start
+ len
;
1164 list_add(&map
->node
, &md
->maps
);
1169 static int dso__load_kcore(struct dso
*dso
, struct map
*map
,
1170 const char *kallsyms_filename
)
1172 struct map_groups
*kmaps
= map__kmaps(map
);
1173 struct kcore_mapfn_data md
;
1174 struct map
*old_map
, *new_map
, *replacement_map
= NULL
;
1175 struct machine
*machine
;
1178 char kcore_filename
[PATH_MAX
];
1184 machine
= kmaps
->machine
;
1186 /* This function requires that the map is the kernel map */
1187 if (!__map__is_kernel(map
))
1190 if (!filename_from_kallsyms_filename(kcore_filename
, "kcore",
1194 /* Modules and kernel must be present at their original addresses */
1195 if (validate_kcore_addresses(kallsyms_filename
, map
))
1199 INIT_LIST_HEAD(&md
.maps
);
1201 fd
= open(kcore_filename
, O_RDONLY
);
1203 pr_debug("Failed to open %s. Note /proc/kcore requires CAP_SYS_RAWIO capability to access.\n",
1208 /* Read new maps into temporary lists */
1209 err
= file__read_maps(fd
, map
->prot
& PROT_EXEC
, kcore_mapfn
, &md
,
1213 dso
->is_64_bit
= is_64_bit
;
1215 if (list_empty(&md
.maps
)) {
1220 /* Remove old maps */
1221 old_map
= map_groups__first(kmaps
);
1223 struct map
*next
= map_groups__next(old_map
);
1226 map_groups__remove(kmaps
, old_map
);
1229 machine
->trampolines_mapped
= false;
1231 /* Find the kernel map using the '_stext' symbol */
1232 if (!kallsyms__get_function_start(kallsyms_filename
, "_stext", &stext
)) {
1233 list_for_each_entry(new_map
, &md
.maps
, node
) {
1234 if (stext
>= new_map
->start
&& stext
< new_map
->end
) {
1235 replacement_map
= new_map
;
1241 if (!replacement_map
)
1242 replacement_map
= list_entry(md
.maps
.next
, struct map
, node
);
1245 while (!list_empty(&md
.maps
)) {
1246 new_map
= list_entry(md
.maps
.next
, struct map
, node
);
1247 list_del_init(&new_map
->node
);
1248 if (new_map
== replacement_map
) {
1249 map
->start
= new_map
->start
;
1250 map
->end
= new_map
->end
;
1251 map
->pgoff
= new_map
->pgoff
;
1252 map
->map_ip
= new_map
->map_ip
;
1253 map
->unmap_ip
= new_map
->unmap_ip
;
1254 /* Ensure maps are correctly ordered */
1256 map_groups__remove(kmaps
, map
);
1257 map_groups__insert(kmaps
, map
);
1260 map_groups__insert(kmaps
, new_map
);
1266 if (machine__is(machine
, "x86_64")) {
1270 * If one of the corresponding symbols is there, assume the
1271 * entry trampoline maps are too.
1273 if (!kallsyms__get_function_start(kallsyms_filename
,
1274 ENTRY_TRAMPOLINE_NAME
,
1276 machine
->trampolines_mapped
= true;
1280 * Set the data type and long name so that kcore can be read via
1281 * dso__data_read_addr().
1283 if (dso
->kernel
== DSO_TYPE_GUEST_KERNEL
)
1284 dso
->binary_type
= DSO_BINARY_TYPE__GUEST_KCORE
;
1286 dso
->binary_type
= DSO_BINARY_TYPE__KCORE
;
1287 dso__set_long_name(dso
, strdup(kcore_filename
), true);
1291 if (map
->prot
& PROT_EXEC
)
1292 pr_debug("Using %s for kernel object code\n", kcore_filename
);
1294 pr_debug("Using %s for kernel data\n", kcore_filename
);
1299 while (!list_empty(&md
.maps
)) {
1300 map
= list_entry(md
.maps
.next
, struct map
, node
);
1301 list_del_init(&map
->node
);
1309 * If the kernel is relocated at boot time, kallsyms won't match. Compute the
1310 * delta based on the relocation reference symbol.
1312 static int kallsyms__delta(struct kmap
*kmap
, const char *filename
, u64
*delta
)
1316 if (!kmap
->ref_reloc_sym
|| !kmap
->ref_reloc_sym
->name
)
1319 if (kallsyms__get_function_start(filename
, kmap
->ref_reloc_sym
->name
, &addr
))
1322 *delta
= addr
- kmap
->ref_reloc_sym
->addr
;
1326 int __dso__load_kallsyms(struct dso
*dso
, const char *filename
,
1327 struct map
*map
, bool no_kcore
)
1329 struct kmap
*kmap
= map__kmap(map
);
1332 if (symbol__restricted_filename(filename
, "/proc/kallsyms"))
1335 if (!kmap
|| !kmap
->kmaps
)
1338 if (dso__load_all_kallsyms(dso
, filename
) < 0)
1341 if (kallsyms__delta(kmap
, filename
, &delta
))
1344 symbols__fixup_end(&dso
->symbols
);
1345 symbols__fixup_duplicate(&dso
->symbols
);
1347 if (dso
->kernel
== DSO_TYPE_GUEST_KERNEL
)
1348 dso
->symtab_type
= DSO_BINARY_TYPE__GUEST_KALLSYMS
;
1350 dso
->symtab_type
= DSO_BINARY_TYPE__KALLSYMS
;
1352 if (!no_kcore
&& !dso__load_kcore(dso
, map
, filename
))
1353 return map_groups__split_kallsyms_for_kcore(kmap
->kmaps
, dso
);
1355 return map_groups__split_kallsyms(kmap
->kmaps
, dso
, delta
, map
);
1358 int dso__load_kallsyms(struct dso
*dso
, const char *filename
,
1361 return __dso__load_kallsyms(dso
, filename
, map
, false);
1364 static int dso__load_perf_map(const char *map_path
, struct dso
*dso
)
1371 file
= fopen(map_path
, "r");
1375 while (!feof(file
)) {
1380 line_len
= getline(&line
, &n
, file
);
1387 line
[--line_len
] = '\0'; /* \n */
1389 len
= hex2u64(line
, &start
);
1392 if (len
+ 2 >= line_len
)
1395 len
+= hex2u64(line
+ len
, &size
);
1398 if (len
+ 2 >= line_len
)
1401 sym
= symbol__new(start
, size
, STB_GLOBAL
, STT_FUNC
, line
+ len
);
1404 goto out_delete_line
;
1406 symbols__insert(&dso
->symbols
, sym
);
1421 static bool dso__is_compatible_symtab_type(struct dso
*dso
, bool kmod
,
1422 enum dso_binary_type type
)
1425 case DSO_BINARY_TYPE__JAVA_JIT
:
1426 case DSO_BINARY_TYPE__DEBUGLINK
:
1427 case DSO_BINARY_TYPE__SYSTEM_PATH_DSO
:
1428 case DSO_BINARY_TYPE__FEDORA_DEBUGINFO
:
1429 case DSO_BINARY_TYPE__UBUNTU_DEBUGINFO
:
1430 case DSO_BINARY_TYPE__BUILDID_DEBUGINFO
:
1431 case DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO
:
1432 return !kmod
&& dso
->kernel
== DSO_TYPE_USER
;
1434 case DSO_BINARY_TYPE__KALLSYMS
:
1435 case DSO_BINARY_TYPE__VMLINUX
:
1436 case DSO_BINARY_TYPE__KCORE
:
1437 return dso
->kernel
== DSO_TYPE_KERNEL
;
1439 case DSO_BINARY_TYPE__GUEST_KALLSYMS
:
1440 case DSO_BINARY_TYPE__GUEST_VMLINUX
:
1441 case DSO_BINARY_TYPE__GUEST_KCORE
:
1442 return dso
->kernel
== DSO_TYPE_GUEST_KERNEL
;
1444 case DSO_BINARY_TYPE__GUEST_KMODULE
:
1445 case DSO_BINARY_TYPE__GUEST_KMODULE_COMP
:
1446 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE
:
1447 case DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP
:
1449 * kernel modules know their symtab type - it's set when
1450 * creating a module dso in machine__findnew_module_map().
1452 return kmod
&& dso
->symtab_type
== type
;
1454 case DSO_BINARY_TYPE__BUILD_ID_CACHE
:
1455 case DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO
:
1458 case DSO_BINARY_TYPE__BPF_PROG_INFO
:
1459 case DSO_BINARY_TYPE__NOT_FOUND
:
1465 /* Checks for the existence of the perf-<pid>.map file in two different
1466 * locations. First, if the process is a separate mount namespace, check in
1467 * that namespace using the pid of the innermost pid namespace. If's not in a
1468 * namespace, or the file can't be found there, try in the mount namespace of
1469 * the tracing process using our view of its pid.
1471 static int dso__find_perf_map(char *filebuf
, size_t bufsz
,
1472 struct nsinfo
**nsip
)
1474 struct nscookie nsc
;
1476 struct nsinfo
*nnsi
;
1481 if (nsi
->need_setns
) {
1482 snprintf(filebuf
, bufsz
, "/tmp/perf-%d.map", nsi
->nstgid
);
1483 nsinfo__mountns_enter(nsi
, &nsc
);
1484 rc
= access(filebuf
, R_OK
);
1485 nsinfo__mountns_exit(&nsc
);
1490 nnsi
= nsinfo__copy(nsi
);
1494 nnsi
->need_setns
= false;
1495 snprintf(filebuf
, bufsz
, "/tmp/perf-%d.map", nnsi
->tgid
);
1503 int dso__load(struct dso
*dso
, struct map
*map
)
1508 struct machine
*machine
;
1509 char *root_dir
= (char *) "";
1511 struct symsrc ss_
[2];
1512 struct symsrc
*syms_ss
= NULL
, *runtime_ss
= NULL
;
1515 unsigned char build_id
[BUILD_ID_SIZE
];
1516 struct nscookie nsc
;
1517 char newmapname
[PATH_MAX
];
1518 const char *map_path
= dso
->long_name
;
1520 perfmap
= strncmp(dso
->name
, "/tmp/perf-", 10) == 0;
1522 if (dso
->nsinfo
&& (dso__find_perf_map(newmapname
,
1523 sizeof(newmapname
), &dso
->nsinfo
) == 0)) {
1524 map_path
= newmapname
;
1528 nsinfo__mountns_enter(dso
->nsinfo
, &nsc
);
1529 pthread_mutex_lock(&dso
->lock
);
1531 /* check again under the dso->lock */
1532 if (dso__loaded(dso
)) {
1537 if (map
->groups
&& map
->groups
->machine
)
1538 machine
= map
->groups
->machine
;
1543 if (dso
->kernel
== DSO_TYPE_KERNEL
)
1544 ret
= dso__load_kernel_sym(dso
, map
);
1545 else if (dso
->kernel
== DSO_TYPE_GUEST_KERNEL
)
1546 ret
= dso__load_guest_kernel_sym(dso
, map
);
1548 if (machine__is(machine
, "x86_64"))
1549 machine__map_x86_64_entry_trampolines(machine
, dso
);
1553 dso
->adjust_symbols
= 0;
1556 ret
= dso__load_perf_map(map_path
, dso
);
1557 dso
->symtab_type
= ret
> 0 ? DSO_BINARY_TYPE__JAVA_JIT
:
1558 DSO_BINARY_TYPE__NOT_FOUND
;
1563 root_dir
= machine
->root_dir
;
1565 name
= malloc(PATH_MAX
);
1569 kmod
= dso
->symtab_type
== DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE
||
1570 dso
->symtab_type
== DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP
||
1571 dso
->symtab_type
== DSO_BINARY_TYPE__GUEST_KMODULE
||
1572 dso
->symtab_type
== DSO_BINARY_TYPE__GUEST_KMODULE_COMP
;
1576 * Read the build id if possible. This is required for
1577 * DSO_BINARY_TYPE__BUILDID_DEBUGINFO to work
1579 if (!dso
->has_build_id
&&
1580 is_regular_file(dso
->long_name
)) {
1581 __symbol__join_symfs(name
, PATH_MAX
, dso
->long_name
);
1582 if (filename__read_build_id(name
, build_id
, BUILD_ID_SIZE
) > 0)
1583 dso__set_build_id(dso
, build_id
);
1587 * Iterate over candidate debug images.
1588 * Keep track of "interesting" ones (those which have a symtab, dynsym,
1589 * and/or opd section) for processing.
1591 for (i
= 0; i
< DSO_BINARY_TYPE__SYMTAB_CNT
; i
++) {
1592 struct symsrc
*ss
= &ss_
[ss_pos
];
1593 bool next_slot
= false;
1598 enum dso_binary_type symtab_type
= binary_type_symtab
[i
];
1600 nsexit
= (symtab_type
== DSO_BINARY_TYPE__BUILD_ID_CACHE
||
1601 symtab_type
== DSO_BINARY_TYPE__BUILD_ID_CACHE_DEBUGINFO
);
1603 if (!dso__is_compatible_symtab_type(dso
, kmod
, symtab_type
))
1606 if (dso__read_binary_type_filename(dso
, symtab_type
,
1607 root_dir
, name
, PATH_MAX
))
1611 nsinfo__mountns_exit(&nsc
);
1613 is_reg
= is_regular_file(name
);
1615 sirc
= symsrc__init(ss
, dso
, name
, symtab_type
);
1618 nsinfo__mountns_enter(dso
->nsinfo
, &nsc
);
1620 if (!is_reg
|| sirc
< 0)
1623 if (!syms_ss
&& symsrc__has_symtab(ss
)) {
1626 if (!dso
->symsrc_filename
)
1627 dso
->symsrc_filename
= strdup(name
);
1630 if (!runtime_ss
&& symsrc__possibly_runtime(ss
)) {
1638 if (syms_ss
&& runtime_ss
)
1641 symsrc__destroy(ss
);
1646 if (!runtime_ss
&& !syms_ss
)
1649 if (runtime_ss
&& !syms_ss
) {
1650 syms_ss
= runtime_ss
;
1653 /* We'll have to hope for the best */
1654 if (!runtime_ss
&& syms_ss
)
1655 runtime_ss
= syms_ss
;
1658 ret
= dso__load_sym(dso
, map
, syms_ss
, runtime_ss
, kmod
);
1665 nr_plt
= dso__synthesize_plt_symbols(dso
, runtime_ss
);
1670 for (; ss_pos
> 0; ss_pos
--)
1671 symsrc__destroy(&ss_
[ss_pos
- 1]);
1674 if (ret
< 0 && strstr(dso
->name
, " (deleted)") != NULL
)
1677 dso__set_loaded(dso
);
1678 pthread_mutex_unlock(&dso
->lock
);
1679 nsinfo__mountns_exit(&nsc
);
1684 struct map
*map_groups__find_by_name(struct map_groups
*mg
, const char *name
)
1686 struct maps
*maps
= &mg
->maps
;
1688 struct rb_node
*node
;
1690 down_read(&maps
->lock
);
1692 for (node
= maps
->names
.rb_node
; node
; ) {
1695 map
= rb_entry(node
, struct map
, rb_node_name
);
1697 rc
= strcmp(map
->dso
->short_name
, name
);
1699 node
= node
->rb_left
;
1701 node
= node
->rb_right
;
1710 up_read(&maps
->lock
);
1714 int dso__load_vmlinux(struct dso
*dso
, struct map
*map
,
1715 const char *vmlinux
, bool vmlinux_allocated
)
1719 char symfs_vmlinux
[PATH_MAX
];
1720 enum dso_binary_type symtab_type
;
1722 if (vmlinux
[0] == '/')
1723 snprintf(symfs_vmlinux
, sizeof(symfs_vmlinux
), "%s", vmlinux
);
1725 symbol__join_symfs(symfs_vmlinux
, vmlinux
);
1727 if (dso
->kernel
== DSO_TYPE_GUEST_KERNEL
)
1728 symtab_type
= DSO_BINARY_TYPE__GUEST_VMLINUX
;
1730 symtab_type
= DSO_BINARY_TYPE__VMLINUX
;
1732 if (symsrc__init(&ss
, dso
, symfs_vmlinux
, symtab_type
))
1735 err
= dso__load_sym(dso
, map
, &ss
, &ss
, 0);
1736 symsrc__destroy(&ss
);
1739 if (dso
->kernel
== DSO_TYPE_GUEST_KERNEL
)
1740 dso
->binary_type
= DSO_BINARY_TYPE__GUEST_VMLINUX
;
1742 dso
->binary_type
= DSO_BINARY_TYPE__VMLINUX
;
1743 dso__set_long_name(dso
, vmlinux
, vmlinux_allocated
);
1744 dso__set_loaded(dso
);
1745 pr_debug("Using %s for symbols\n", symfs_vmlinux
);
1751 int dso__load_vmlinux_path(struct dso
*dso
, struct map
*map
)
1754 char *filename
= NULL
;
1756 pr_debug("Looking at the vmlinux_path (%d entries long)\n",
1757 vmlinux_path__nr_entries
+ 1);
1759 for (i
= 0; i
< vmlinux_path__nr_entries
; ++i
) {
1760 err
= dso__load_vmlinux(dso
, map
, vmlinux_path
[i
], false);
1765 if (!symbol_conf
.ignore_vmlinux_buildid
)
1766 filename
= dso__build_id_filename(dso
, NULL
, 0, false);
1767 if (filename
!= NULL
) {
1768 err
= dso__load_vmlinux(dso
, map
, filename
, true);
1777 static bool visible_dir_filter(const char *name
, struct dirent
*d
)
1779 if (d
->d_type
!= DT_DIR
)
1781 return lsdir_no_dot_filter(name
, d
);
1784 static int find_matching_kcore(struct map
*map
, char *dir
, size_t dir_sz
)
1786 char kallsyms_filename
[PATH_MAX
];
1788 struct strlist
*dirs
;
1789 struct str_node
*nd
;
1791 dirs
= lsdir(dir
, visible_dir_filter
);
1795 strlist__for_each_entry(nd
, dirs
) {
1796 scnprintf(kallsyms_filename
, sizeof(kallsyms_filename
),
1797 "%s/%s/kallsyms", dir
, nd
->s
);
1798 if (!validate_kcore_addresses(kallsyms_filename
, map
)) {
1799 strlcpy(dir
, kallsyms_filename
, dir_sz
);
1805 strlist__delete(dirs
);
1811 * Use open(O_RDONLY) to check readability directly instead of access(R_OK)
1812 * since access(R_OK) only checks with real UID/GID but open() use effective
1813 * UID/GID and actual capabilities (e.g. /proc/kcore requires CAP_SYS_RAWIO).
1815 static bool filename__readable(const char *file
)
1817 int fd
= open(file
, O_RDONLY
);
1824 static char *dso__find_kallsyms(struct dso
*dso
, struct map
*map
)
1826 u8 host_build_id
[BUILD_ID_SIZE
];
1827 char sbuild_id
[SBUILD_ID_SIZE
];
1828 bool is_host
= false;
1829 char path
[PATH_MAX
];
1831 if (!dso
->has_build_id
) {
1833 * Last resort, if we don't have a build-id and couldn't find
1834 * any vmlinux file, try the running kernel kallsyms table.
1839 if (sysfs__read_build_id("/sys/kernel/notes", host_build_id
,
1840 sizeof(host_build_id
)) == 0)
1841 is_host
= dso__build_id_equal(dso
, host_build_id
);
1843 /* Try a fast path for /proc/kallsyms if possible */
1846 * Do not check the build-id cache, unless we know we cannot use
1847 * /proc/kcore or module maps don't match to /proc/kallsyms.
1848 * To check readability of /proc/kcore, do not use access(R_OK)
1849 * since /proc/kcore requires CAP_SYS_RAWIO to read and access
1852 if (filename__readable("/proc/kcore") &&
1853 !validate_kcore_addresses("/proc/kallsyms", map
))
1857 build_id__sprintf(dso
->build_id
, sizeof(dso
->build_id
), sbuild_id
);
1859 /* Find kallsyms in build-id cache with kcore */
1860 scnprintf(path
, sizeof(path
), "%s/%s/%s",
1861 buildid_dir
, DSO__NAME_KCORE
, sbuild_id
);
1863 if (!find_matching_kcore(map
, path
, sizeof(path
)))
1864 return strdup(path
);
1866 /* Use current /proc/kallsyms if possible */
1869 return strdup("/proc/kallsyms");
1872 /* Finally, find a cache of kallsyms */
1873 if (!build_id_cache__kallsyms_path(sbuild_id
, path
, sizeof(path
))) {
1874 pr_err("No kallsyms or vmlinux with build-id %s was found\n",
1879 return strdup(path
);
1882 static int dso__load_kernel_sym(struct dso
*dso
, struct map
*map
)
1885 const char *kallsyms_filename
= NULL
;
1886 char *kallsyms_allocated_filename
= NULL
;
1888 * Step 1: if the user specified a kallsyms or vmlinux filename, use
1889 * it and only it, reporting errors to the user if it cannot be used.
1891 * For instance, try to analyse an ARM perf.data file _without_ a
1892 * build-id, or if the user specifies the wrong path to the right
1893 * vmlinux file, obviously we can't fallback to another vmlinux (a
1894 * x86_86 one, on the machine where analysis is being performed, say),
1895 * or worse, /proc/kallsyms.
1897 * If the specified file _has_ a build-id and there is a build-id
1898 * section in the perf.data file, we will still do the expected
1899 * validation in dso__load_vmlinux and will bail out if they don't
1902 if (symbol_conf
.kallsyms_name
!= NULL
) {
1903 kallsyms_filename
= symbol_conf
.kallsyms_name
;
1907 if (!symbol_conf
.ignore_vmlinux
&& symbol_conf
.vmlinux_name
!= NULL
) {
1908 return dso__load_vmlinux(dso
, map
, symbol_conf
.vmlinux_name
, false);
1911 if (!symbol_conf
.ignore_vmlinux
&& vmlinux_path
!= NULL
) {
1912 err
= dso__load_vmlinux_path(dso
, map
);
1917 /* do not try local files if a symfs was given */
1918 if (symbol_conf
.symfs
[0] != 0)
1921 kallsyms_allocated_filename
= dso__find_kallsyms(dso
, map
);
1922 if (!kallsyms_allocated_filename
)
1925 kallsyms_filename
= kallsyms_allocated_filename
;
1928 err
= dso__load_kallsyms(dso
, kallsyms_filename
, map
);
1930 pr_debug("Using %s for symbols\n", kallsyms_filename
);
1931 free(kallsyms_allocated_filename
);
1933 if (err
> 0 && !dso__is_kcore(dso
)) {
1934 dso
->binary_type
= DSO_BINARY_TYPE__KALLSYMS
;
1935 dso__set_long_name(dso
, DSO__NAME_KALLSYMS
, false);
1936 map__fixup_start(map
);
1937 map__fixup_end(map
);
1943 static int dso__load_guest_kernel_sym(struct dso
*dso
, struct map
*map
)
1946 const char *kallsyms_filename
= NULL
;
1947 struct machine
*machine
;
1948 char path
[PATH_MAX
];
1951 pr_debug("Guest kernel map hasn't the point to groups\n");
1954 machine
= map
->groups
->machine
;
1956 if (machine__is_default_guest(machine
)) {
1958 * if the user specified a vmlinux filename, use it and only
1959 * it, reporting errors to the user if it cannot be used.
1960 * Or use file guest_kallsyms inputted by user on commandline
1962 if (symbol_conf
.default_guest_vmlinux_name
!= NULL
) {
1963 err
= dso__load_vmlinux(dso
, map
,
1964 symbol_conf
.default_guest_vmlinux_name
,
1969 kallsyms_filename
= symbol_conf
.default_guest_kallsyms
;
1970 if (!kallsyms_filename
)
1973 sprintf(path
, "%s/proc/kallsyms", machine
->root_dir
);
1974 kallsyms_filename
= path
;
1977 err
= dso__load_kallsyms(dso
, kallsyms_filename
, map
);
1979 pr_debug("Using %s for symbols\n", kallsyms_filename
);
1980 if (err
> 0 && !dso__is_kcore(dso
)) {
1981 dso
->binary_type
= DSO_BINARY_TYPE__GUEST_KALLSYMS
;
1982 dso__set_long_name(dso
, machine
->mmap_name
, false);
1983 map__fixup_start(map
);
1984 map__fixup_end(map
);
1990 static void vmlinux_path__exit(void)
1992 while (--vmlinux_path__nr_entries
>= 0)
1993 zfree(&vmlinux_path
[vmlinux_path__nr_entries
]);
1994 vmlinux_path__nr_entries
= 0;
1996 zfree(&vmlinux_path
);
1999 static const char * const vmlinux_paths
[] = {
2004 static const char * const vmlinux_paths_upd
[] = {
2006 "/usr/lib/debug/boot/vmlinux-%s",
2007 "/lib/modules/%s/build/vmlinux",
2008 "/usr/lib/debug/lib/modules/%s/vmlinux",
2009 "/usr/lib/debug/boot/vmlinux-%s.debug"
2012 static int vmlinux_path__add(const char *new_entry
)
2014 vmlinux_path
[vmlinux_path__nr_entries
] = strdup(new_entry
);
2015 if (vmlinux_path
[vmlinux_path__nr_entries
] == NULL
)
2017 ++vmlinux_path__nr_entries
;
2022 static int vmlinux_path__init(struct perf_env
*env
)
2026 char *kernel_version
;
2029 vmlinux_path
= malloc(sizeof(char *) * (ARRAY_SIZE(vmlinux_paths
) +
2030 ARRAY_SIZE(vmlinux_paths_upd
)));
2031 if (vmlinux_path
== NULL
)
2034 for (i
= 0; i
< ARRAY_SIZE(vmlinux_paths
); i
++)
2035 if (vmlinux_path__add(vmlinux_paths
[i
]) < 0)
2038 /* only try kernel version if no symfs was given */
2039 if (symbol_conf
.symfs
[0] != 0)
2043 kernel_version
= env
->os_release
;
2045 if (uname(&uts
) < 0)
2048 kernel_version
= uts
.release
;
2051 for (i
= 0; i
< ARRAY_SIZE(vmlinux_paths_upd
); i
++) {
2052 snprintf(bf
, sizeof(bf
), vmlinux_paths_upd
[i
], kernel_version
);
2053 if (vmlinux_path__add(bf
) < 0)
2060 vmlinux_path__exit();
2064 int setup_list(struct strlist
**list
, const char *list_str
,
2065 const char *list_name
)
2067 if (list_str
== NULL
)
2070 *list
= strlist__new(list_str
, NULL
);
2072 pr_err("problems parsing %s list\n", list_name
);
2076 symbol_conf
.has_filter
= true;
2080 int setup_intlist(struct intlist
**list
, const char *list_str
,
2081 const char *list_name
)
2083 if (list_str
== NULL
)
2086 *list
= intlist__new(list_str
);
2088 pr_err("problems parsing %s list\n", list_name
);
2094 static bool symbol__read_kptr_restrict(void)
2097 FILE *fp
= fopen("/proc/sys/kernel/kptr_restrict", "r");
2102 if (fgets(line
, sizeof(line
), fp
) != NULL
)
2103 value
= ((geteuid() != 0) || (getuid() != 0)) ?
2113 int symbol__annotation_init(void)
2115 if (symbol_conf
.init_annotation
)
2118 if (symbol_conf
.initialized
) {
2119 pr_err("Annotation needs to be init before symbol__init()\n");
2123 symbol_conf
.priv_size
+= sizeof(struct annotation
);
2124 symbol_conf
.init_annotation
= true;
2128 int symbol__init(struct perf_env
*env
)
2132 if (symbol_conf
.initialized
)
2135 symbol_conf
.priv_size
= PERF_ALIGN(symbol_conf
.priv_size
, sizeof(u64
));
2139 if (symbol_conf
.sort_by_name
)
2140 symbol_conf
.priv_size
+= (sizeof(struct symbol_name_rb_node
) -
2141 sizeof(struct symbol
));
2143 if (symbol_conf
.try_vmlinux_path
&& vmlinux_path__init(env
) < 0)
2146 if (symbol_conf
.field_sep
&& *symbol_conf
.field_sep
== '.') {
2147 pr_err("'.' is the only non valid --field-separator argument\n");
2151 if (setup_list(&symbol_conf
.dso_list
,
2152 symbol_conf
.dso_list_str
, "dso") < 0)
2155 if (setup_list(&symbol_conf
.comm_list
,
2156 symbol_conf
.comm_list_str
, "comm") < 0)
2157 goto out_free_dso_list
;
2159 if (setup_intlist(&symbol_conf
.pid_list
,
2160 symbol_conf
.pid_list_str
, "pid") < 0)
2161 goto out_free_comm_list
;
2163 if (setup_intlist(&symbol_conf
.tid_list
,
2164 symbol_conf
.tid_list_str
, "tid") < 0)
2165 goto out_free_pid_list
;
2167 if (setup_list(&symbol_conf
.sym_list
,
2168 symbol_conf
.sym_list_str
, "symbol") < 0)
2169 goto out_free_tid_list
;
2171 if (setup_list(&symbol_conf
.bt_stop_list
,
2172 symbol_conf
.bt_stop_list_str
, "symbol") < 0)
2173 goto out_free_sym_list
;
2176 * A path to symbols of "/" is identical to ""
2177 * reset here for simplicity.
2179 symfs
= realpath(symbol_conf
.symfs
, NULL
);
2181 symfs
= symbol_conf
.symfs
;
2182 if (strcmp(symfs
, "/") == 0)
2183 symbol_conf
.symfs
= "";
2184 if (symfs
!= symbol_conf
.symfs
)
2185 free((void *)symfs
);
2187 symbol_conf
.kptr_restrict
= symbol__read_kptr_restrict();
2189 symbol_conf
.initialized
= true;
2193 strlist__delete(symbol_conf
.sym_list
);
2195 intlist__delete(symbol_conf
.tid_list
);
2197 intlist__delete(symbol_conf
.pid_list
);
2199 strlist__delete(symbol_conf
.comm_list
);
2201 strlist__delete(symbol_conf
.dso_list
);
2205 void symbol__exit(void)
2207 if (!symbol_conf
.initialized
)
2209 strlist__delete(symbol_conf
.bt_stop_list
);
2210 strlist__delete(symbol_conf
.sym_list
);
2211 strlist__delete(symbol_conf
.dso_list
);
2212 strlist__delete(symbol_conf
.comm_list
);
2213 intlist__delete(symbol_conf
.tid_list
);
2214 intlist__delete(symbol_conf
.pid_list
);
2215 vmlinux_path__exit();
2216 symbol_conf
.sym_list
= symbol_conf
.dso_list
= symbol_conf
.comm_list
= NULL
;
2217 symbol_conf
.bt_stop_list
= NULL
;
2218 symbol_conf
.initialized
= false;
2221 int symbol__config_symfs(const struct option
*opt __maybe_unused
,
2222 const char *dir
, int unset __maybe_unused
)
2227 symbol_conf
.symfs
= strdup(dir
);
2228 if (symbol_conf
.symfs
== NULL
)
2231 /* skip the locally configured cache if a symfs is given, and
2232 * config buildid dir to symfs/.debug
2234 ret
= asprintf(&bf
, "%s/%s", dir
, ".debug");
2238 set_buildid_dir(bf
);
2244 struct mem_info
*mem_info__get(struct mem_info
*mi
)
2247 refcount_inc(&mi
->refcnt
);
2251 void mem_info__put(struct mem_info
*mi
)
2253 if (mi
&& refcount_dec_and_test(&mi
->refcnt
))
2257 struct mem_info
*mem_info__new(void)
2259 struct mem_info
*mi
= zalloc(sizeof(*mi
));
2262 refcount_set(&mi
->refcnt
, 1);