11 #include <symbol/kallsyms.h>
15 #define EM_AARCH64 183 /* ARM 64 bit */
19 #ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
20 extern char *cplus_demangle(const char *, int);
22 static inline char *bfd_demangle(void __maybe_unused
*v
, const char *c
, int i
)
24 return cplus_demangle(c
, i
);
28 static inline char *bfd_demangle(void __maybe_unused
*v
,
29 const char __maybe_unused
*c
,
35 #define PACKAGE 'perf'
40 #ifndef HAVE_ELF_GETPHDRNUM_SUPPORT
41 static int elf_getphdrnum(Elf
*elf
, size_t *dst
)
46 ehdr
= gelf_getehdr(elf
, &gehdr
);
56 #ifndef NT_GNU_BUILD_ID
57 #define NT_GNU_BUILD_ID 3
61 * elf_symtab__for_each_symbol - iterate thru all the symbols
63 * @syms: struct elf_symtab instance to iterate
65 * @sym: GElf_Sym iterator
67 #define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
68 for (idx = 0, gelf_getsym(syms, idx, &sym);\
70 idx++, gelf_getsym(syms, idx, &sym))
72 static inline uint8_t elf_sym__type(const GElf_Sym
*sym
)
74 return GELF_ST_TYPE(sym
->st_info
);
78 #define STT_GNU_IFUNC 10
81 static inline int elf_sym__is_function(const GElf_Sym
*sym
)
83 return (elf_sym__type(sym
) == STT_FUNC
||
84 elf_sym__type(sym
) == STT_GNU_IFUNC
) &&
86 sym
->st_shndx
!= SHN_UNDEF
;
89 static inline bool elf_sym__is_object(const GElf_Sym
*sym
)
91 return elf_sym__type(sym
) == STT_OBJECT
&&
93 sym
->st_shndx
!= SHN_UNDEF
;
96 static inline int elf_sym__is_label(const GElf_Sym
*sym
)
98 return elf_sym__type(sym
) == STT_NOTYPE
&&
100 sym
->st_shndx
!= SHN_UNDEF
&&
101 sym
->st_shndx
!= SHN_ABS
;
104 static bool elf_sym__is_a(GElf_Sym
*sym
, enum map_type type
)
108 return elf_sym__is_function(sym
);
110 return elf_sym__is_object(sym
);
116 static inline const char *elf_sym__name(const GElf_Sym
*sym
,
117 const Elf_Data
*symstrs
)
119 return symstrs
->d_buf
+ sym
->st_name
;
122 static inline const char *elf_sec__name(const GElf_Shdr
*shdr
,
123 const Elf_Data
*secstrs
)
125 return secstrs
->d_buf
+ shdr
->sh_name
;
128 static inline int elf_sec__is_text(const GElf_Shdr
*shdr
,
129 const Elf_Data
*secstrs
)
131 return strstr(elf_sec__name(shdr
, secstrs
), "text") != NULL
;
134 static inline bool elf_sec__is_data(const GElf_Shdr
*shdr
,
135 const Elf_Data
*secstrs
)
137 return strstr(elf_sec__name(shdr
, secstrs
), "data") != NULL
;
140 static bool elf_sec__is_a(GElf_Shdr
*shdr
, Elf_Data
*secstrs
,
145 return elf_sec__is_text(shdr
, secstrs
);
147 return elf_sec__is_data(shdr
, secstrs
);
153 static size_t elf_addr_to_index(Elf
*elf
, GElf_Addr addr
)
159 while ((sec
= elf_nextscn(elf
, sec
)) != NULL
) {
160 gelf_getshdr(sec
, &shdr
);
162 if ((addr
>= shdr
.sh_addr
) &&
163 (addr
< (shdr
.sh_addr
+ shdr
.sh_size
)))
172 Elf_Scn
*elf_section_by_name(Elf
*elf
, GElf_Ehdr
*ep
,
173 GElf_Shdr
*shp
, const char *name
, size_t *idx
)
178 /* Elf is corrupted/truncated, avoid calling elf_strptr. */
179 if (!elf_rawdata(elf_getscn(elf
, ep
->e_shstrndx
), NULL
))
182 while ((sec
= elf_nextscn(elf
, sec
)) != NULL
) {
185 gelf_getshdr(sec
, shp
);
186 str
= elf_strptr(elf
, ep
->e_shstrndx
, shp
->sh_name
);
187 if (str
&& !strcmp(name
, str
)) {
198 #define elf_section__for_each_rel(reldata, pos, pos_mem, idx, nr_entries) \
199 for (idx = 0, pos = gelf_getrel(reldata, 0, &pos_mem); \
201 ++idx, pos = gelf_getrel(reldata, idx, &pos_mem))
203 #define elf_section__for_each_rela(reldata, pos, pos_mem, idx, nr_entries) \
204 for (idx = 0, pos = gelf_getrela(reldata, 0, &pos_mem); \
206 ++idx, pos = gelf_getrela(reldata, idx, &pos_mem))
209 * We need to check if we have a .dynsym, so that we can handle the
210 * .plt, synthesizing its symbols, that aren't on the symtabs (be it
211 * .dynsym or .symtab).
212 * And always look at the original dso, not at debuginfo packages, that
213 * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
215 int dso__synthesize_plt_symbols(struct dso
*dso
, struct symsrc
*ss
, struct map
*map
,
216 symbol_filter_t filter
)
218 uint32_t nr_rel_entries
, idx
;
223 GElf_Shdr shdr_rel_plt
, shdr_dynsym
;
224 Elf_Data
*reldata
, *syms
, *symstrs
;
225 Elf_Scn
*scn_plt_rel
, *scn_symstrs
, *scn_dynsym
;
228 char sympltname
[1024];
230 int nr
= 0, symidx
, err
= 0;
238 scn_dynsym
= ss
->dynsym
;
239 shdr_dynsym
= ss
->dynshdr
;
240 dynsym_idx
= ss
->dynsym_idx
;
242 if (scn_dynsym
== NULL
)
245 scn_plt_rel
= elf_section_by_name(elf
, &ehdr
, &shdr_rel_plt
,
247 if (scn_plt_rel
== NULL
) {
248 scn_plt_rel
= elf_section_by_name(elf
, &ehdr
, &shdr_rel_plt
,
250 if (scn_plt_rel
== NULL
)
256 if (shdr_rel_plt
.sh_link
!= dynsym_idx
)
259 if (elf_section_by_name(elf
, &ehdr
, &shdr_plt
, ".plt", NULL
) == NULL
)
263 * Fetch the relocation section to find the idxes to the GOT
264 * and the symbols in the .dynsym they refer to.
266 reldata
= elf_getdata(scn_plt_rel
, NULL
);
270 syms
= elf_getdata(scn_dynsym
, NULL
);
274 scn_symstrs
= elf_getscn(elf
, shdr_dynsym
.sh_link
);
275 if (scn_symstrs
== NULL
)
278 symstrs
= elf_getdata(scn_symstrs
, NULL
);
282 if (symstrs
->d_size
== 0)
285 nr_rel_entries
= shdr_rel_plt
.sh_size
/ shdr_rel_plt
.sh_entsize
;
286 plt_offset
= shdr_plt
.sh_offset
;
288 if (shdr_rel_plt
.sh_type
== SHT_RELA
) {
289 GElf_Rela pos_mem
, *pos
;
291 elf_section__for_each_rela(reldata
, pos
, pos_mem
, idx
,
293 symidx
= GELF_R_SYM(pos
->r_info
);
294 plt_offset
+= shdr_plt
.sh_entsize
;
295 gelf_getsym(syms
, symidx
, &sym
);
296 snprintf(sympltname
, sizeof(sympltname
),
297 "%s@plt", elf_sym__name(&sym
, symstrs
));
299 f
= symbol__new(plt_offset
, shdr_plt
.sh_entsize
,
300 STB_GLOBAL
, sympltname
);
304 if (filter
&& filter(map
, f
))
307 symbols__insert(&dso
->symbols
[map
->type
], f
);
311 } else if (shdr_rel_plt
.sh_type
== SHT_REL
) {
312 GElf_Rel pos_mem
, *pos
;
313 elf_section__for_each_rel(reldata
, pos
, pos_mem
, idx
,
315 symidx
= GELF_R_SYM(pos
->r_info
);
316 plt_offset
+= shdr_plt
.sh_entsize
;
317 gelf_getsym(syms
, symidx
, &sym
);
318 snprintf(sympltname
, sizeof(sympltname
),
319 "%s@plt", elf_sym__name(&sym
, symstrs
));
321 f
= symbol__new(plt_offset
, shdr_plt
.sh_entsize
,
322 STB_GLOBAL
, sympltname
);
326 if (filter
&& filter(map
, f
))
329 symbols__insert(&dso
->symbols
[map
->type
], f
);
339 pr_debug("%s: problems reading %s PLT info.\n",
340 __func__
, dso
->long_name
);
345 * Align offset to 4 bytes as needed for note name and descriptor data.
347 #define NOTE_ALIGN(n) (((n) + 3) & -4U)
349 static int elf_read_build_id(Elf
*elf
, void *bf
, size_t size
)
359 if (size
< BUILD_ID_SIZE
)
366 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
367 pr_err("%s: cannot get elf header.\n", __func__
);
372 * Check following sections for notes:
373 * '.note.gnu.build-id'
375 * '.note' (VDSO specific)
378 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
379 ".note.gnu.build-id", NULL
);
383 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
388 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
397 data
= elf_getdata(sec
, NULL
);
402 while (ptr
< (data
->d_buf
+ data
->d_size
)) {
403 GElf_Nhdr
*nhdr
= ptr
;
404 size_t namesz
= NOTE_ALIGN(nhdr
->n_namesz
),
405 descsz
= NOTE_ALIGN(nhdr
->n_descsz
);
408 ptr
+= sizeof(*nhdr
);
411 if (nhdr
->n_type
== NT_GNU_BUILD_ID
&&
412 nhdr
->n_namesz
== sizeof("GNU")) {
413 if (memcmp(name
, "GNU", sizeof("GNU")) == 0) {
414 size_t sz
= min(size
, descsz
);
416 memset(bf
+ sz
, 0, size
- sz
);
428 int filename__read_build_id(const char *filename
, void *bf
, size_t size
)
433 if (size
< BUILD_ID_SIZE
)
436 fd
= open(filename
, O_RDONLY
);
440 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
442 pr_debug2("%s: cannot read %s ELF file.\n", __func__
, filename
);
446 err
= elf_read_build_id(elf
, bf
, size
);
455 int sysfs__read_build_id(const char *filename
, void *build_id
, size_t size
)
459 if (size
< BUILD_ID_SIZE
)
462 fd
= open(filename
, O_RDONLY
);
469 size_t namesz
, descsz
;
471 if (read(fd
, &nhdr
, sizeof(nhdr
)) != sizeof(nhdr
))
474 namesz
= NOTE_ALIGN(nhdr
.n_namesz
);
475 descsz
= NOTE_ALIGN(nhdr
.n_descsz
);
476 if (nhdr
.n_type
== NT_GNU_BUILD_ID
&&
477 nhdr
.n_namesz
== sizeof("GNU")) {
478 if (read(fd
, bf
, namesz
) != (ssize_t
)namesz
)
480 if (memcmp(bf
, "GNU", sizeof("GNU")) == 0) {
481 size_t sz
= min(descsz
, size
);
482 if (read(fd
, build_id
, sz
) == (ssize_t
)sz
) {
483 memset(build_id
+ sz
, 0, size
- sz
);
487 } else if (read(fd
, bf
, descsz
) != (ssize_t
)descsz
)
490 int n
= namesz
+ descsz
;
491 if (read(fd
, bf
, n
) != n
)
500 int filename__read_debuglink(const char *filename
, char *debuglink
,
511 fd
= open(filename
, O_RDONLY
);
515 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
517 pr_debug2("%s: cannot read %s ELF file.\n", __func__
, filename
);
525 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
526 pr_err("%s: cannot get elf header.\n", __func__
);
530 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
531 ".gnu_debuglink", NULL
);
535 data
= elf_getdata(sec
, NULL
);
539 /* the start of this section is a zero-terminated string */
540 strncpy(debuglink
, data
->d_buf
, size
);
552 static int dso__swap_init(struct dso
*dso
, unsigned char eidata
)
554 static unsigned int const endian
= 1;
556 dso
->needs_swap
= DSO_SWAP__NO
;
560 /* We are big endian, DSO is little endian. */
561 if (*(unsigned char const *)&endian
!= 1)
562 dso
->needs_swap
= DSO_SWAP__YES
;
566 /* We are little endian, DSO is big endian. */
567 if (*(unsigned char const *)&endian
!= 0)
568 dso
->needs_swap
= DSO_SWAP__YES
;
572 pr_err("unrecognized DSO data encoding %d\n", eidata
);
579 static int decompress_kmodule(struct dso
*dso
, const char *name
,
580 enum dso_binary_type type
)
583 char tmpbuf
[] = "/tmp/perf-kmod-XXXXXX";
586 if (type
!= DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP
&&
587 type
!= DSO_BINARY_TYPE__GUEST_KMODULE_COMP
&&
588 type
!= DSO_BINARY_TYPE__BUILD_ID_CACHE
)
591 if (type
== DSO_BINARY_TYPE__BUILD_ID_CACHE
)
592 name
= dso
->long_name
;
594 if (kmod_path__parse_ext(&m
, name
) || !m
.comp
)
597 fd
= mkstemp(tmpbuf
);
599 dso
->load_errno
= errno
;
603 if (!decompress_to_file(m
.ext
, name
, fd
)) {
604 dso
->load_errno
= DSO_LOAD_ERRNO__DECOMPRESSION_FAILURE
;
616 bool symsrc__possibly_runtime(struct symsrc
*ss
)
618 return ss
->dynsym
|| ss
->opdsec
;
621 bool symsrc__has_symtab(struct symsrc
*ss
)
623 return ss
->symtab
!= NULL
;
626 void symsrc__destroy(struct symsrc
*ss
)
633 int symsrc__init(struct symsrc
*ss
, struct dso
*dso
, const char *name
,
634 enum dso_binary_type type
)
641 if (dso__needs_decompress(dso
)) {
642 fd
= decompress_kmodule(dso
, name
, type
);
646 fd
= open(name
, O_RDONLY
);
648 dso
->load_errno
= errno
;
653 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
655 pr_debug("%s: cannot read %s ELF file.\n", __func__
, name
);
656 dso
->load_errno
= DSO_LOAD_ERRNO__INVALID_ELF
;
660 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
661 dso
->load_errno
= DSO_LOAD_ERRNO__INVALID_ELF
;
662 pr_debug("%s: cannot get elf header.\n", __func__
);
666 if (dso__swap_init(dso
, ehdr
.e_ident
[EI_DATA
])) {
667 dso
->load_errno
= DSO_LOAD_ERRNO__INTERNAL_ERROR
;
671 /* Always reject images with a mismatched build-id: */
672 if (dso
->has_build_id
) {
673 u8 build_id
[BUILD_ID_SIZE
];
675 if (elf_read_build_id(elf
, build_id
, BUILD_ID_SIZE
) < 0) {
676 dso
->load_errno
= DSO_LOAD_ERRNO__CANNOT_READ_BUILDID
;
680 if (!dso__build_id_equal(dso
, build_id
)) {
681 dso
->load_errno
= DSO_LOAD_ERRNO__MISMATCHING_BUILDID
;
686 ss
->is_64_bit
= (gelf_getclass(elf
) == ELFCLASS64
);
688 ss
->symtab
= elf_section_by_name(elf
, &ehdr
, &ss
->symshdr
, ".symtab",
690 if (ss
->symshdr
.sh_type
!= SHT_SYMTAB
)
694 ss
->dynsym
= elf_section_by_name(elf
, &ehdr
, &ss
->dynshdr
, ".dynsym",
696 if (ss
->dynshdr
.sh_type
!= SHT_DYNSYM
)
700 ss
->opdsec
= elf_section_by_name(elf
, &ehdr
, &ss
->opdshdr
, ".opd",
702 if (ss
->opdshdr
.sh_type
!= SHT_PROGBITS
)
705 if (dso
->kernel
== DSO_TYPE_USER
) {
707 ss
->adjust_symbols
= (ehdr
.e_type
== ET_EXEC
||
708 ehdr
.e_type
== ET_REL
||
710 elf_section_by_name(elf
, &ehdr
, &shdr
,
714 ss
->adjust_symbols
= ehdr
.e_type
== ET_EXEC
||
715 ehdr
.e_type
== ET_REL
;
718 ss
->name
= strdup(name
);
720 dso
->load_errno
= errno
;
739 * ref_reloc_sym_not_found - has kernel relocation symbol been found.
740 * @kmap: kernel maps and relocation reference symbol
742 * This function returns %true if we are dealing with the kernel maps and the
743 * relocation reference symbol has not yet been found. Otherwise %false is
746 static bool ref_reloc_sym_not_found(struct kmap
*kmap
)
748 return kmap
&& kmap
->ref_reloc_sym
&& kmap
->ref_reloc_sym
->name
&&
749 !kmap
->ref_reloc_sym
->unrelocated_addr
;
753 * ref_reloc - kernel relocation offset.
754 * @kmap: kernel maps and relocation reference symbol
756 * This function returns the offset of kernel addresses as determined by using
757 * the relocation reference symbol i.e. if the kernel has not been relocated
758 * then the return value is zero.
760 static u64
ref_reloc(struct kmap
*kmap
)
762 if (kmap
&& kmap
->ref_reloc_sym
&&
763 kmap
->ref_reloc_sym
->unrelocated_addr
)
764 return kmap
->ref_reloc_sym
->addr
-
765 kmap
->ref_reloc_sym
->unrelocated_addr
;
769 static bool want_demangle(bool is_kernel_sym
)
771 return is_kernel_sym
? symbol_conf
.demangle_kernel
: symbol_conf
.demangle
;
774 int dso__load_sym(struct dso
*dso
, struct map
*map
,
775 struct symsrc
*syms_ss
, struct symsrc
*runtime_ss
,
776 symbol_filter_t filter
, int kmodule
)
778 struct kmap
*kmap
= dso
->kernel
? map__kmap(map
) : NULL
;
779 struct map_groups
*kmaps
= kmap
? map__kmaps(map
) : NULL
;
780 struct map
*curr_map
= map
;
781 struct dso
*curr_dso
= dso
;
782 Elf_Data
*symstrs
, *secstrs
;
788 Elf_Data
*syms
, *opddata
= NULL
;
790 Elf_Scn
*sec
, *sec_strndx
;
793 bool remap_kernel
= false, adjust_kernel_syms
= false;
798 dso
->symtab_type
= syms_ss
->type
;
799 dso
->is_64_bit
= syms_ss
->is_64_bit
;
800 dso
->rel
= syms_ss
->ehdr
.e_type
== ET_REL
;
803 * Modules may already have symbols from kallsyms, but those symbols
804 * have the wrong values for the dso maps, so remove them.
806 if (kmodule
&& syms_ss
->symtab
)
807 symbols__delete(&dso
->symbols
[map
->type
]);
809 if (!syms_ss
->symtab
) {
811 * If the vmlinux is stripped, fail so we will fall back
812 * to using kallsyms. The vmlinux runtime symbols aren't
818 syms_ss
->symtab
= syms_ss
->dynsym
;
819 syms_ss
->symshdr
= syms_ss
->dynshdr
;
823 ehdr
= syms_ss
->ehdr
;
824 sec
= syms_ss
->symtab
;
825 shdr
= syms_ss
->symshdr
;
827 if (runtime_ss
->opdsec
)
828 opddata
= elf_rawdata(runtime_ss
->opdsec
, NULL
);
830 syms
= elf_getdata(sec
, NULL
);
834 sec
= elf_getscn(elf
, shdr
.sh_link
);
838 symstrs
= elf_getdata(sec
, NULL
);
842 sec_strndx
= elf_getscn(runtime_ss
->elf
, runtime_ss
->ehdr
.e_shstrndx
);
843 if (sec_strndx
== NULL
)
846 secstrs
= elf_getdata(sec_strndx
, NULL
);
850 nr_syms
= shdr
.sh_size
/ shdr
.sh_entsize
;
852 memset(&sym
, 0, sizeof(sym
));
855 * The kernel relocation symbol is needed in advance in order to adjust
856 * kernel maps correctly.
858 if (ref_reloc_sym_not_found(kmap
)) {
859 elf_symtab__for_each_symbol(syms
, nr_syms
, idx
, sym
) {
860 const char *elf_name
= elf_sym__name(&sym
, symstrs
);
862 if (strcmp(elf_name
, kmap
->ref_reloc_sym
->name
))
864 kmap
->ref_reloc_sym
->unrelocated_addr
= sym
.st_value
;
865 map
->reloc
= kmap
->ref_reloc_sym
->addr
-
866 kmap
->ref_reloc_sym
->unrelocated_addr
;
871 dso
->adjust_symbols
= runtime_ss
->adjust_symbols
|| ref_reloc(kmap
);
873 * Initial kernel and module mappings do not map to the dso. For
874 * function mappings, flag the fixups.
876 if (map
->type
== MAP__FUNCTION
&& (dso
->kernel
|| kmodule
)) {
878 adjust_kernel_syms
= dso
->adjust_symbols
;
880 elf_symtab__for_each_symbol(syms
, nr_syms
, idx
, sym
) {
882 const char *elf_name
= elf_sym__name(&sym
, symstrs
);
883 char *demangled
= NULL
;
884 int is_label
= elf_sym__is_label(&sym
);
885 const char *section_name
;
886 bool used_opd
= false;
888 if (!is_label
&& !elf_sym__is_a(&sym
, map
->type
))
891 /* Reject ARM ELF "mapping symbols": these aren't unique and
892 * don't identify functions, so will confuse the profile
894 if (ehdr
.e_machine
== EM_ARM
|| ehdr
.e_machine
== EM_AARCH64
) {
895 if (elf_name
[0] == '$' && strchr("adtx", elf_name
[1])
896 && (elf_name
[2] == '\0' || elf_name
[2] == '.'))
900 if (runtime_ss
->opdsec
&& sym
.st_shndx
== runtime_ss
->opdidx
) {
901 u32 offset
= sym
.st_value
- syms_ss
->opdshdr
.sh_addr
;
902 u64
*opd
= opddata
->d_buf
+ offset
;
903 sym
.st_value
= DSO__SWAP(dso
, u64
, *opd
);
904 sym
.st_shndx
= elf_addr_to_index(runtime_ss
->elf
,
909 * When loading symbols in a data mapping, ABS symbols (which
910 * has a value of SHN_ABS in its st_shndx) failed at
911 * elf_getscn(). And it marks the loading as a failure so
912 * already loaded symbols cannot be fixed up.
914 * I'm not sure what should be done. Just ignore them for now.
917 if (sym
.st_shndx
== SHN_ABS
)
920 sec
= elf_getscn(runtime_ss
->elf
, sym
.st_shndx
);
924 gelf_getshdr(sec
, &shdr
);
926 if (is_label
&& !elf_sec__is_a(&shdr
, secstrs
, map
->type
))
929 section_name
= elf_sec__name(&shdr
, secstrs
);
931 /* On ARM, symbols for thumb functions have 1 added to
932 * the symbol address as a flag - remove it */
933 if ((ehdr
.e_machine
== EM_ARM
) &&
934 (map
->type
== MAP__FUNCTION
) &&
938 if (dso
->kernel
|| kmodule
) {
939 char dso_name
[PATH_MAX
];
941 /* Adjust symbol to map to file offset */
942 if (adjust_kernel_syms
)
943 sym
.st_value
-= shdr
.sh_addr
- shdr
.sh_offset
;
945 if (strcmp(section_name
,
946 (curr_dso
->short_name
+
947 dso
->short_name_len
)) == 0)
950 if (strcmp(section_name
, ".text") == 0) {
952 * The initial kernel mapping is based on
953 * kallsyms and identity maps. Overwrite it to
954 * map to the kernel dso.
956 if (remap_kernel
&& dso
->kernel
) {
957 remap_kernel
= false;
958 map
->start
= shdr
.sh_addr
+
960 map
->end
= map
->start
+ shdr
.sh_size
;
961 map
->pgoff
= shdr
.sh_offset
;
962 map
->map_ip
= map__map_ip
;
963 map
->unmap_ip
= map__unmap_ip
;
964 /* Ensure maps are correctly ordered */
966 map_groups__remove(kmaps
, map
);
967 map_groups__insert(kmaps
, map
);
972 * The initial module mapping is based on
973 * /proc/modules mapped to offset zero.
974 * Overwrite it to map to the module dso.
976 if (remap_kernel
&& kmodule
) {
977 remap_kernel
= false;
978 map
->pgoff
= shdr
.sh_offset
;
989 snprintf(dso_name
, sizeof(dso_name
),
990 "%s%s", dso
->short_name
, section_name
);
992 curr_map
= map_groups__find_by_name(kmaps
, map
->type
, dso_name
);
993 if (curr_map
== NULL
) {
994 u64 start
= sym
.st_value
;
997 start
+= map
->start
+ shdr
.sh_offset
;
999 curr_dso
= dso__new(dso_name
);
1000 if (curr_dso
== NULL
)
1002 curr_dso
->kernel
= dso
->kernel
;
1003 curr_dso
->long_name
= dso
->long_name
;
1004 curr_dso
->long_name_len
= dso
->long_name_len
;
1005 curr_map
= map__new2(start
, curr_dso
,
1007 if (curr_map
== NULL
) {
1008 dso__delete(curr_dso
);
1011 if (adjust_kernel_syms
) {
1012 curr_map
->start
= shdr
.sh_addr
+
1014 curr_map
->end
= curr_map
->start
+
1016 curr_map
->pgoff
= shdr
.sh_offset
;
1018 curr_map
->map_ip
= identity__map_ip
;
1019 curr_map
->unmap_ip
= identity__map_ip
;
1021 curr_dso
->symtab_type
= dso
->symtab_type
;
1022 map_groups__insert(kmaps
, curr_map
);
1024 * The new DSO should go to the kernel DSOS
1026 dsos__add(&map
->groups
->machine
->kernel_dsos
,
1028 dso__set_loaded(curr_dso
, map
->type
);
1030 curr_dso
= curr_map
->dso
;
1035 if ((used_opd
&& runtime_ss
->adjust_symbols
)
1036 || (!used_opd
&& syms_ss
->adjust_symbols
)) {
1037 pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64
" "
1038 "sh_addr: %#" PRIx64
" sh_offset: %#" PRIx64
"\n", __func__
,
1039 (u64
)sym
.st_value
, (u64
)shdr
.sh_addr
,
1040 (u64
)shdr
.sh_offset
);
1041 sym
.st_value
-= shdr
.sh_addr
- shdr
.sh_offset
;
1045 * We need to figure out if the object was created from C++ sources
1046 * DWARF DW_compile_unit has this, but we don't always have access
1049 if (want_demangle(dso
->kernel
|| kmodule
)) {
1050 int demangle_flags
= DMGL_NO_OPTS
;
1052 demangle_flags
= DMGL_PARAMS
| DMGL_ANSI
;
1054 demangled
= bfd_demangle(NULL
, elf_name
, demangle_flags
);
1055 if (demangled
!= NULL
)
1056 elf_name
= demangled
;
1058 f
= symbol__new(sym
.st_value
, sym
.st_size
,
1059 GELF_ST_BIND(sym
.st_info
), elf_name
);
1064 if (filter
&& filter(curr_map
, f
))
1067 symbols__insert(&curr_dso
->symbols
[curr_map
->type
], f
);
1073 * For misannotated, zeroed, ASM function sizes.
1076 if (!symbol_conf
.allow_aliases
)
1077 symbols__fixup_duplicate(&dso
->symbols
[map
->type
]);
1078 symbols__fixup_end(&dso
->symbols
[map
->type
]);
1081 * We need to fixup this here too because we create new
1082 * maps here, for things like vsyscall sections.
1084 __map_groups__fixup_end(kmaps
, map
->type
);
1092 static int elf_read_maps(Elf
*elf
, bool exe
, mapfn_t mapfn
, void *data
)
1099 if (elf_getphdrnum(elf
, &phdrnum
))
1102 for (i
= 0; i
< phdrnum
; i
++) {
1103 if (gelf_getphdr(elf
, i
, &phdr
) == NULL
)
1105 if (phdr
.p_type
!= PT_LOAD
)
1108 if (!(phdr
.p_flags
& PF_X
))
1111 if (!(phdr
.p_flags
& PF_R
))
1114 sz
= min(phdr
.p_memsz
, phdr
.p_filesz
);
1117 err
= mapfn(phdr
.p_vaddr
, sz
, phdr
.p_offset
, data
);
1124 int file__read_maps(int fd
, bool exe
, mapfn_t mapfn
, void *data
,
1130 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
1135 *is_64_bit
= (gelf_getclass(elf
) == ELFCLASS64
);
1137 err
= elf_read_maps(elf
, exe
, mapfn
, data
);
1143 enum dso_type
dso__type_fd(int fd
)
1145 enum dso_type dso_type
= DSO__TYPE_UNKNOWN
;
1150 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
1155 if (ek
!= ELF_K_ELF
)
1158 if (gelf_getclass(elf
) == ELFCLASS64
) {
1159 dso_type
= DSO__TYPE_64BIT
;
1163 if (gelf_getehdr(elf
, &ehdr
) == NULL
)
1166 if (ehdr
.e_machine
== EM_X86_64
)
1167 dso_type
= DSO__TYPE_X32BIT
;
1169 dso_type
= DSO__TYPE_32BIT
;
1176 static int copy_bytes(int from
, off_t from_offs
, int to
, off_t to_offs
, u64 len
)
1181 char *buf
= malloc(page_size
);
1186 if (lseek(to
, to_offs
, SEEK_SET
) != to_offs
)
1189 if (lseek(from
, from_offs
, SEEK_SET
) != from_offs
)
1196 /* Use read because mmap won't work on proc files */
1197 r
= read(from
, buf
, n
);
1203 r
= write(to
, buf
, n
);
1224 static int kcore__open(struct kcore
*kcore
, const char *filename
)
1228 kcore
->fd
= open(filename
, O_RDONLY
);
1229 if (kcore
->fd
== -1)
1232 kcore
->elf
= elf_begin(kcore
->fd
, ELF_C_READ
, NULL
);
1236 kcore
->elfclass
= gelf_getclass(kcore
->elf
);
1237 if (kcore
->elfclass
== ELFCLASSNONE
)
1240 ehdr
= gelf_getehdr(kcore
->elf
, &kcore
->ehdr
);
1247 elf_end(kcore
->elf
);
1253 static int kcore__init(struct kcore
*kcore
, char *filename
, int elfclass
,
1258 kcore
->elfclass
= elfclass
;
1261 kcore
->fd
= mkstemp(filename
);
1263 kcore
->fd
= open(filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0400);
1264 if (kcore
->fd
== -1)
1267 kcore
->elf
= elf_begin(kcore
->fd
, ELF_C_WRITE
, NULL
);
1271 if (!gelf_newehdr(kcore
->elf
, elfclass
))
1274 ehdr
= gelf_getehdr(kcore
->elf
, &kcore
->ehdr
);
1281 elf_end(kcore
->elf
);
1288 static void kcore__close(struct kcore
*kcore
)
1290 elf_end(kcore
->elf
);
1294 static int kcore__copy_hdr(struct kcore
*from
, struct kcore
*to
, size_t count
)
1296 GElf_Ehdr
*ehdr
= &to
->ehdr
;
1297 GElf_Ehdr
*kehdr
= &from
->ehdr
;
1299 memcpy(ehdr
->e_ident
, kehdr
->e_ident
, EI_NIDENT
);
1300 ehdr
->e_type
= kehdr
->e_type
;
1301 ehdr
->e_machine
= kehdr
->e_machine
;
1302 ehdr
->e_version
= kehdr
->e_version
;
1305 ehdr
->e_flags
= kehdr
->e_flags
;
1306 ehdr
->e_phnum
= count
;
1307 ehdr
->e_shentsize
= 0;
1309 ehdr
->e_shstrndx
= 0;
1311 if (from
->elfclass
== ELFCLASS32
) {
1312 ehdr
->e_phoff
= sizeof(Elf32_Ehdr
);
1313 ehdr
->e_ehsize
= sizeof(Elf32_Ehdr
);
1314 ehdr
->e_phentsize
= sizeof(Elf32_Phdr
);
1316 ehdr
->e_phoff
= sizeof(Elf64_Ehdr
);
1317 ehdr
->e_ehsize
= sizeof(Elf64_Ehdr
);
1318 ehdr
->e_phentsize
= sizeof(Elf64_Phdr
);
1321 if (!gelf_update_ehdr(to
->elf
, ehdr
))
1324 if (!gelf_newphdr(to
->elf
, count
))
1330 static int kcore__add_phdr(struct kcore
*kcore
, int idx
, off_t offset
,
1336 phdr
= gelf_getphdr(kcore
->elf
, idx
, &gphdr
);
1340 phdr
->p_type
= PT_LOAD
;
1341 phdr
->p_flags
= PF_R
| PF_W
| PF_X
;
1342 phdr
->p_offset
= offset
;
1343 phdr
->p_vaddr
= addr
;
1345 phdr
->p_filesz
= len
;
1346 phdr
->p_memsz
= len
;
1347 phdr
->p_align
= page_size
;
1349 if (!gelf_update_phdr(kcore
->elf
, idx
, phdr
))
1355 static off_t
kcore__write(struct kcore
*kcore
)
1357 return elf_update(kcore
->elf
, ELF_C_WRITE
);
1366 struct kcore_copy_info
{
1372 u64 last_module_symbol
;
1373 struct phdr_data kernel_map
;
1374 struct phdr_data modules_map
;
1377 static int kcore_copy__process_kallsyms(void *arg
, const char *name
, char type
,
1380 struct kcore_copy_info
*kci
= arg
;
1382 if (!symbol_type__is_a(type
, MAP__FUNCTION
))
1385 if (strchr(name
, '[')) {
1386 if (start
> kci
->last_module_symbol
)
1387 kci
->last_module_symbol
= start
;
1391 if (!kci
->first_symbol
|| start
< kci
->first_symbol
)
1392 kci
->first_symbol
= start
;
1394 if (!kci
->last_symbol
|| start
> kci
->last_symbol
)
1395 kci
->last_symbol
= start
;
1397 if (!strcmp(name
, "_stext")) {
1402 if (!strcmp(name
, "_etext")) {
1410 static int kcore_copy__parse_kallsyms(struct kcore_copy_info
*kci
,
1413 char kallsyms_filename
[PATH_MAX
];
1415 scnprintf(kallsyms_filename
, PATH_MAX
, "%s/kallsyms", dir
);
1417 if (symbol__restricted_filename(kallsyms_filename
, "/proc/kallsyms"))
1420 if (kallsyms__parse(kallsyms_filename
, kci
,
1421 kcore_copy__process_kallsyms
) < 0)
1427 static int kcore_copy__process_modules(void *arg
,
1428 const char *name __maybe_unused
,
1431 struct kcore_copy_info
*kci
= arg
;
1433 if (!kci
->first_module
|| start
< kci
->first_module
)
1434 kci
->first_module
= start
;
1439 static int kcore_copy__parse_modules(struct kcore_copy_info
*kci
,
1442 char modules_filename
[PATH_MAX
];
1444 scnprintf(modules_filename
, PATH_MAX
, "%s/modules", dir
);
1446 if (symbol__restricted_filename(modules_filename
, "/proc/modules"))
1449 if (modules__parse(modules_filename
, kci
,
1450 kcore_copy__process_modules
) < 0)
1456 static void kcore_copy__map(struct phdr_data
*p
, u64 start
, u64 end
, u64 pgoff
,
1459 if (p
->addr
|| s
< start
|| s
>= end
)
1463 p
->offset
= (s
- start
) + pgoff
;
1464 p
->len
= e
< end
? e
- s
: end
- s
;
1467 static int kcore_copy__read_map(u64 start
, u64 len
, u64 pgoff
, void *data
)
1469 struct kcore_copy_info
*kci
= data
;
1470 u64 end
= start
+ len
;
1472 kcore_copy__map(&kci
->kernel_map
, start
, end
, pgoff
, kci
->stext
,
1475 kcore_copy__map(&kci
->modules_map
, start
, end
, pgoff
, kci
->first_module
,
1476 kci
->last_module_symbol
);
1481 static int kcore_copy__read_maps(struct kcore_copy_info
*kci
, Elf
*elf
)
1483 if (elf_read_maps(elf
, true, kcore_copy__read_map
, kci
) < 0)
1489 static int kcore_copy__calc_maps(struct kcore_copy_info
*kci
, const char *dir
,
1492 if (kcore_copy__parse_kallsyms(kci
, dir
))
1495 if (kcore_copy__parse_modules(kci
, dir
))
1499 kci
->stext
= round_down(kci
->stext
, page_size
);
1501 kci
->stext
= round_down(kci
->first_symbol
, page_size
);
1504 kci
->etext
= round_up(kci
->etext
, page_size
);
1505 } else if (kci
->last_symbol
) {
1506 kci
->etext
= round_up(kci
->last_symbol
, page_size
);
1507 kci
->etext
+= page_size
;
1510 kci
->first_module
= round_down(kci
->first_module
, page_size
);
1512 if (kci
->last_module_symbol
) {
1513 kci
->last_module_symbol
= round_up(kci
->last_module_symbol
,
1515 kci
->last_module_symbol
+= page_size
;
1518 if (!kci
->stext
|| !kci
->etext
)
1521 if (kci
->first_module
&& !kci
->last_module_symbol
)
1524 return kcore_copy__read_maps(kci
, elf
);
1527 static int kcore_copy__copy_file(const char *from_dir
, const char *to_dir
,
1530 char from_filename
[PATH_MAX
];
1531 char to_filename
[PATH_MAX
];
1533 scnprintf(from_filename
, PATH_MAX
, "%s/%s", from_dir
, name
);
1534 scnprintf(to_filename
, PATH_MAX
, "%s/%s", to_dir
, name
);
1536 return copyfile_mode(from_filename
, to_filename
, 0400);
1539 static int kcore_copy__unlink(const char *dir
, const char *name
)
1541 char filename
[PATH_MAX
];
1543 scnprintf(filename
, PATH_MAX
, "%s/%s", dir
, name
);
1545 return unlink(filename
);
1548 static int kcore_copy__compare_fds(int from
, int to
)
1556 buf_from
= malloc(page_size
);
1557 buf_to
= malloc(page_size
);
1558 if (!buf_from
|| !buf_to
)
1562 /* Use read because mmap won't work on proc files */
1563 ret
= read(from
, buf_from
, page_size
);
1572 if (readn(to
, buf_to
, len
) != (int)len
)
1575 if (memcmp(buf_from
, buf_to
, len
))
1586 static int kcore_copy__compare_files(const char *from_filename
,
1587 const char *to_filename
)
1589 int from
, to
, err
= -1;
1591 from
= open(from_filename
, O_RDONLY
);
1595 to
= open(to_filename
, O_RDONLY
);
1597 goto out_close_from
;
1599 err
= kcore_copy__compare_fds(from
, to
);
1607 static int kcore_copy__compare_file(const char *from_dir
, const char *to_dir
,
1610 char from_filename
[PATH_MAX
];
1611 char to_filename
[PATH_MAX
];
1613 scnprintf(from_filename
, PATH_MAX
, "%s/%s", from_dir
, name
);
1614 scnprintf(to_filename
, PATH_MAX
, "%s/%s", to_dir
, name
);
1616 return kcore_copy__compare_files(from_filename
, to_filename
);
1620 * kcore_copy - copy kallsyms, modules and kcore from one directory to another.
1621 * @from_dir: from directory
1622 * @to_dir: to directory
1624 * This function copies kallsyms, modules and kcore files from one directory to
1625 * another. kallsyms and modules are copied entirely. Only code segments are
1626 * copied from kcore. It is assumed that two segments suffice: one for the
1627 * kernel proper and one for all the modules. The code segments are determined
1628 * from kallsyms and modules files. The kernel map starts at _stext or the
1629 * lowest function symbol, and ends at _etext or the highest function symbol.
1630 * The module map starts at the lowest module address and ends at the highest
1631 * module symbol. Start addresses are rounded down to the nearest page. End
1632 * addresses are rounded up to the nearest page. An extra page is added to the
1633 * highest kernel symbol and highest module symbol to, hopefully, encompass that
1634 * symbol too. Because it contains only code sections, the resulting kcore is
1635 * unusual. One significant peculiarity is that the mapping (start -> pgoff)
1636 * is not the same for the kernel map and the modules map. That happens because
1637 * the data is copied adjacently whereas the original kcore has gaps. Finally,
1638 * kallsyms and modules files are compared with their copies to check that
1639 * modules have not been loaded or unloaded while the copies were taking place.
1641 * Return: %0 on success, %-1 on failure.
1643 int kcore_copy(const char *from_dir
, const char *to_dir
)
1646 struct kcore extract
;
1648 int idx
= 0, err
= -1;
1649 off_t offset
= page_size
, sz
, modules_offset
= 0;
1650 struct kcore_copy_info kci
= { .stext
= 0, };
1651 char kcore_filename
[PATH_MAX
];
1652 char extract_filename
[PATH_MAX
];
1654 if (kcore_copy__copy_file(from_dir
, to_dir
, "kallsyms"))
1657 if (kcore_copy__copy_file(from_dir
, to_dir
, "modules"))
1658 goto out_unlink_kallsyms
;
1660 scnprintf(kcore_filename
, PATH_MAX
, "%s/kcore", from_dir
);
1661 scnprintf(extract_filename
, PATH_MAX
, "%s/kcore", to_dir
);
1663 if (kcore__open(&kcore
, kcore_filename
))
1664 goto out_unlink_modules
;
1666 if (kcore_copy__calc_maps(&kci
, from_dir
, kcore
.elf
))
1667 goto out_kcore_close
;
1669 if (kcore__init(&extract
, extract_filename
, kcore
.elfclass
, false))
1670 goto out_kcore_close
;
1672 if (!kci
.modules_map
.addr
)
1675 if (kcore__copy_hdr(&kcore
, &extract
, count
))
1676 goto out_extract_close
;
1678 if (kcore__add_phdr(&extract
, idx
++, offset
, kci
.kernel_map
.addr
,
1679 kci
.kernel_map
.len
))
1680 goto out_extract_close
;
1682 if (kci
.modules_map
.addr
) {
1683 modules_offset
= offset
+ kci
.kernel_map
.len
;
1684 if (kcore__add_phdr(&extract
, idx
, modules_offset
,
1685 kci
.modules_map
.addr
, kci
.modules_map
.len
))
1686 goto out_extract_close
;
1689 sz
= kcore__write(&extract
);
1690 if (sz
< 0 || sz
> offset
)
1691 goto out_extract_close
;
1693 if (copy_bytes(kcore
.fd
, kci
.kernel_map
.offset
, extract
.fd
, offset
,
1694 kci
.kernel_map
.len
))
1695 goto out_extract_close
;
1697 if (modules_offset
&& copy_bytes(kcore
.fd
, kci
.modules_map
.offset
,
1698 extract
.fd
, modules_offset
,
1699 kci
.modules_map
.len
))
1700 goto out_extract_close
;
1702 if (kcore_copy__compare_file(from_dir
, to_dir
, "modules"))
1703 goto out_extract_close
;
1705 if (kcore_copy__compare_file(from_dir
, to_dir
, "kallsyms"))
1706 goto out_extract_close
;
1711 kcore__close(&extract
);
1713 unlink(extract_filename
);
1715 kcore__close(&kcore
);
1718 kcore_copy__unlink(to_dir
, "modules");
1719 out_unlink_kallsyms
:
1721 kcore_copy__unlink(to_dir
, "kallsyms");
1726 int kcore_extract__create(struct kcore_extract
*kce
)
1729 struct kcore extract
;
1731 int idx
= 0, err
= -1;
1732 off_t offset
= page_size
, sz
;
1734 if (kcore__open(&kcore
, kce
->kcore_filename
))
1737 strcpy(kce
->extract_filename
, PERF_KCORE_EXTRACT
);
1738 if (kcore__init(&extract
, kce
->extract_filename
, kcore
.elfclass
, true))
1739 goto out_kcore_close
;
1741 if (kcore__copy_hdr(&kcore
, &extract
, count
))
1742 goto out_extract_close
;
1744 if (kcore__add_phdr(&extract
, idx
, offset
, kce
->addr
, kce
->len
))
1745 goto out_extract_close
;
1747 sz
= kcore__write(&extract
);
1748 if (sz
< 0 || sz
> offset
)
1749 goto out_extract_close
;
1751 if (copy_bytes(kcore
.fd
, kce
->offs
, extract
.fd
, offset
, kce
->len
))
1752 goto out_extract_close
;
1757 kcore__close(&extract
);
1759 unlink(kce
->extract_filename
);
1761 kcore__close(&kcore
);
1766 void kcore_extract__delete(struct kcore_extract
*kce
)
1768 unlink(kce
->extract_filename
);
1771 void symbol__elf_init(void)
1773 elf_version(EV_CURRENT
);