1 // SPDX-License-Identifier: GPL-2.0
15 #include "demangle-java.h"
16 #include "demangle-rust.h"
20 #include "util/copyfile.h"
21 #include <linux/ctype.h>
22 #include <linux/kernel.h>
23 #include <linux/zalloc.h>
24 #include <symbol/kallsyms.h>
25 #include <internal/lib.h>
28 #define EM_AARCH64 183 /* ARM 64 bit */
31 #ifndef ELF32_ST_VISIBILITY
32 #define ELF32_ST_VISIBILITY(o) ((o) & 0x03)
35 /* For ELF64 the definitions are the same. */
36 #ifndef ELF64_ST_VISIBILITY
37 #define ELF64_ST_VISIBILITY(o) ELF32_ST_VISIBILITY (o)
40 /* How to extract information held in the st_other field. */
41 #ifndef GELF_ST_VISIBILITY
42 #define GELF_ST_VISIBILITY(val) ELF64_ST_VISIBILITY (val)
45 typedef Elf64_Nhdr GElf_Nhdr
;
48 #define DMGL_NO_OPTS 0 /* For readability... */
49 #define DMGL_PARAMS (1 << 0) /* Include function args */
50 #define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
53 #ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
54 extern char *cplus_demangle(const char *, int);
56 static inline char *bfd_demangle(void __maybe_unused
*v
, const char *c
, int i
)
58 return cplus_demangle(c
, i
);
62 static inline char *bfd_demangle(void __maybe_unused
*v
,
63 const char __maybe_unused
*c
,
69 #define PACKAGE 'perf'
74 #ifndef HAVE_ELF_GETPHDRNUM_SUPPORT
75 static int elf_getphdrnum(Elf
*elf
, size_t *dst
)
80 ehdr
= gelf_getehdr(elf
, &gehdr
);
90 #ifndef HAVE_ELF_GETSHDRSTRNDX_SUPPORT
91 static int elf_getshdrstrndx(Elf
*elf __maybe_unused
, size_t *dst __maybe_unused
)
93 pr_err("%s: update your libelf to > 0.140, this one lacks elf_getshdrstrndx().\n", __func__
);
98 #ifndef NT_GNU_BUILD_ID
99 #define NT_GNU_BUILD_ID 3
103 * elf_symtab__for_each_symbol - iterate thru all the symbols
105 * @syms: struct elf_symtab instance to iterate
107 * @sym: GElf_Sym iterator
109 #define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
110 for (idx = 0, gelf_getsym(syms, idx, &sym);\
112 idx++, gelf_getsym(syms, idx, &sym))
114 static inline uint8_t elf_sym__type(const GElf_Sym
*sym
)
116 return GELF_ST_TYPE(sym
->st_info
);
119 static inline uint8_t elf_sym__visibility(const GElf_Sym
*sym
)
121 return GELF_ST_VISIBILITY(sym
->st_other
);
124 #ifndef STT_GNU_IFUNC
125 #define STT_GNU_IFUNC 10
128 static inline int elf_sym__is_function(const GElf_Sym
*sym
)
130 return (elf_sym__type(sym
) == STT_FUNC
||
131 elf_sym__type(sym
) == STT_GNU_IFUNC
) &&
133 sym
->st_shndx
!= SHN_UNDEF
;
136 static inline bool elf_sym__is_object(const GElf_Sym
*sym
)
138 return elf_sym__type(sym
) == STT_OBJECT
&&
140 sym
->st_shndx
!= SHN_UNDEF
;
143 static inline int elf_sym__is_label(const GElf_Sym
*sym
)
145 return elf_sym__type(sym
) == STT_NOTYPE
&&
147 sym
->st_shndx
!= SHN_UNDEF
&&
148 sym
->st_shndx
!= SHN_ABS
&&
149 elf_sym__visibility(sym
) != STV_HIDDEN
&&
150 elf_sym__visibility(sym
) != STV_INTERNAL
;
153 static bool elf_sym__filter(GElf_Sym
*sym
)
155 return elf_sym__is_function(sym
) || elf_sym__is_object(sym
);
158 static inline const char *elf_sym__name(const GElf_Sym
*sym
,
159 const Elf_Data
*symstrs
)
161 return symstrs
->d_buf
+ sym
->st_name
;
164 static inline const char *elf_sec__name(const GElf_Shdr
*shdr
,
165 const Elf_Data
*secstrs
)
167 return secstrs
->d_buf
+ shdr
->sh_name
;
170 static inline int elf_sec__is_text(const GElf_Shdr
*shdr
,
171 const Elf_Data
*secstrs
)
173 return strstr(elf_sec__name(shdr
, secstrs
), "text") != NULL
;
176 static inline bool elf_sec__is_data(const GElf_Shdr
*shdr
,
177 const Elf_Data
*secstrs
)
179 return strstr(elf_sec__name(shdr
, secstrs
), "data") != NULL
;
182 static bool elf_sec__filter(GElf_Shdr
*shdr
, Elf_Data
*secstrs
)
184 return elf_sec__is_text(shdr
, secstrs
) ||
185 elf_sec__is_data(shdr
, secstrs
);
188 static size_t elf_addr_to_index(Elf
*elf
, GElf_Addr addr
)
194 while ((sec
= elf_nextscn(elf
, sec
)) != NULL
) {
195 gelf_getshdr(sec
, &shdr
);
197 if ((addr
>= shdr
.sh_addr
) &&
198 (addr
< (shdr
.sh_addr
+ shdr
.sh_size
)))
207 Elf_Scn
*elf_section_by_name(Elf
*elf
, GElf_Ehdr
*ep
,
208 GElf_Shdr
*shp
, const char *name
, size_t *idx
)
213 /* Elf is corrupted/truncated, avoid calling elf_strptr. */
214 if (!elf_rawdata(elf_getscn(elf
, ep
->e_shstrndx
), NULL
))
217 while ((sec
= elf_nextscn(elf
, sec
)) != NULL
) {
220 gelf_getshdr(sec
, shp
);
221 str
= elf_strptr(elf
, ep
->e_shstrndx
, shp
->sh_name
);
222 if (str
&& !strcmp(name
, str
)) {
233 static bool want_demangle(bool is_kernel_sym
)
235 return is_kernel_sym
? symbol_conf
.demangle_kernel
: symbol_conf
.demangle
;
238 static char *demangle_sym(struct dso
*dso
, int kmodule
, const char *elf_name
)
240 int demangle_flags
= verbose
> 0 ? (DMGL_PARAMS
| DMGL_ANSI
) : DMGL_NO_OPTS
;
241 char *demangled
= NULL
;
244 * We need to figure out if the object was created from C++ sources
245 * DWARF DW_compile_unit has this, but we don't always have access
248 if (!want_demangle(dso
->kernel
|| kmodule
))
251 demangled
= bfd_demangle(NULL
, elf_name
, demangle_flags
);
252 if (demangled
== NULL
)
253 demangled
= java_demangle_sym(elf_name
, JAVA_DEMANGLE_NORET
);
254 else if (rust_is_mangled(demangled
))
256 * Input to Rust demangling is the BFD-demangled
257 * name which it Rust-demangles in place.
259 rust_demangle_sym(demangled
);
264 #define elf_section__for_each_rel(reldata, pos, pos_mem, idx, nr_entries) \
265 for (idx = 0, pos = gelf_getrel(reldata, 0, &pos_mem); \
267 ++idx, pos = gelf_getrel(reldata, idx, &pos_mem))
269 #define elf_section__for_each_rela(reldata, pos, pos_mem, idx, nr_entries) \
270 for (idx = 0, pos = gelf_getrela(reldata, 0, &pos_mem); \
272 ++idx, pos = gelf_getrela(reldata, idx, &pos_mem))
275 * We need to check if we have a .dynsym, so that we can handle the
276 * .plt, synthesizing its symbols, that aren't on the symtabs (be it
277 * .dynsym or .symtab).
278 * And always look at the original dso, not at debuginfo packages, that
279 * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
281 int dso__synthesize_plt_symbols(struct dso
*dso
, struct symsrc
*ss
)
283 uint32_t nr_rel_entries
, idx
;
285 u64 plt_offset
, plt_header_size
, plt_entry_size
;
288 GElf_Shdr shdr_rel_plt
, shdr_dynsym
;
289 Elf_Data
*reldata
, *syms
, *symstrs
;
290 Elf_Scn
*scn_plt_rel
, *scn_symstrs
, *scn_dynsym
;
293 char sympltname
[1024];
295 int nr
= 0, symidx
, err
= 0;
303 scn_dynsym
= ss
->dynsym
;
304 shdr_dynsym
= ss
->dynshdr
;
305 dynsym_idx
= ss
->dynsym_idx
;
307 if (scn_dynsym
== NULL
)
310 scn_plt_rel
= elf_section_by_name(elf
, &ehdr
, &shdr_rel_plt
,
312 if (scn_plt_rel
== NULL
) {
313 scn_plt_rel
= elf_section_by_name(elf
, &ehdr
, &shdr_rel_plt
,
315 if (scn_plt_rel
== NULL
)
321 if (shdr_rel_plt
.sh_link
!= dynsym_idx
)
324 if (elf_section_by_name(elf
, &ehdr
, &shdr_plt
, ".plt", NULL
) == NULL
)
328 * Fetch the relocation section to find the idxes to the GOT
329 * and the symbols in the .dynsym they refer to.
331 reldata
= elf_getdata(scn_plt_rel
, NULL
);
335 syms
= elf_getdata(scn_dynsym
, NULL
);
339 scn_symstrs
= elf_getscn(elf
, shdr_dynsym
.sh_link
);
340 if (scn_symstrs
== NULL
)
343 symstrs
= elf_getdata(scn_symstrs
, NULL
);
347 if (symstrs
->d_size
== 0)
350 nr_rel_entries
= shdr_rel_plt
.sh_size
/ shdr_rel_plt
.sh_entsize
;
351 plt_offset
= shdr_plt
.sh_offset
;
352 switch (ehdr
.e_machine
) {
354 plt_header_size
= 20;
359 plt_header_size
= 32;
364 plt_header_size
= 48;
369 plt_header_size
= 128;
373 default: /* FIXME: s390/alpha/mips/parisc/poperpc/sh/xtensa need to be checked */
374 plt_header_size
= shdr_plt
.sh_entsize
;
375 plt_entry_size
= shdr_plt
.sh_entsize
;
378 plt_offset
+= plt_header_size
;
380 if (shdr_rel_plt
.sh_type
== SHT_RELA
) {
381 GElf_Rela pos_mem
, *pos
;
383 elf_section__for_each_rela(reldata
, pos
, pos_mem
, idx
,
385 const char *elf_name
= NULL
;
386 char *demangled
= NULL
;
387 symidx
= GELF_R_SYM(pos
->r_info
);
388 gelf_getsym(syms
, symidx
, &sym
);
390 elf_name
= elf_sym__name(&sym
, symstrs
);
391 demangled
= demangle_sym(dso
, 0, elf_name
);
392 if (demangled
!= NULL
)
393 elf_name
= demangled
;
394 snprintf(sympltname
, sizeof(sympltname
),
398 f
= symbol__new(plt_offset
, plt_entry_size
,
399 STB_GLOBAL
, STT_FUNC
, sympltname
);
403 plt_offset
+= plt_entry_size
;
404 symbols__insert(&dso
->symbols
, f
);
407 } else if (shdr_rel_plt
.sh_type
== SHT_REL
) {
408 GElf_Rel pos_mem
, *pos
;
409 elf_section__for_each_rel(reldata
, pos
, pos_mem
, idx
,
411 const char *elf_name
= NULL
;
412 char *demangled
= NULL
;
413 symidx
= GELF_R_SYM(pos
->r_info
);
414 gelf_getsym(syms
, symidx
, &sym
);
416 elf_name
= elf_sym__name(&sym
, symstrs
);
417 demangled
= demangle_sym(dso
, 0, elf_name
);
418 if (demangled
!= NULL
)
419 elf_name
= demangled
;
420 snprintf(sympltname
, sizeof(sympltname
),
424 f
= symbol__new(plt_offset
, plt_entry_size
,
425 STB_GLOBAL
, STT_FUNC
, sympltname
);
429 plt_offset
+= plt_entry_size
;
430 symbols__insert(&dso
->symbols
, f
);
439 pr_debug("%s: problems reading %s PLT info.\n",
440 __func__
, dso
->long_name
);
444 char *dso__demangle_sym(struct dso
*dso
, int kmodule
, const char *elf_name
)
446 return demangle_sym(dso
, kmodule
, elf_name
);
450 * Align offset to 4 bytes as needed for note name and descriptor data.
452 #define NOTE_ALIGN(n) (((n) + 3) & -4U)
454 static int elf_read_build_id(Elf
*elf
, void *bf
, size_t size
)
464 if (size
< BUILD_ID_SIZE
)
471 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
472 pr_err("%s: cannot get elf header.\n", __func__
);
477 * Check following sections for notes:
478 * '.note.gnu.build-id'
480 * '.note' (VDSO specific)
483 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
484 ".note.gnu.build-id", NULL
);
488 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
493 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
502 data
= elf_getdata(sec
, NULL
);
507 while (ptr
< (data
->d_buf
+ data
->d_size
)) {
508 GElf_Nhdr
*nhdr
= ptr
;
509 size_t namesz
= NOTE_ALIGN(nhdr
->n_namesz
),
510 descsz
= NOTE_ALIGN(nhdr
->n_descsz
);
513 ptr
+= sizeof(*nhdr
);
516 if (nhdr
->n_type
== NT_GNU_BUILD_ID
&&
517 nhdr
->n_namesz
== sizeof("GNU")) {
518 if (memcmp(name
, "GNU", sizeof("GNU")) == 0) {
519 size_t sz
= min(size
, descsz
);
521 memset(bf
+ sz
, 0, size
- sz
);
533 int filename__read_build_id(const char *filename
, void *bf
, size_t size
)
538 if (size
< BUILD_ID_SIZE
)
541 fd
= open(filename
, O_RDONLY
);
545 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
547 pr_debug2("%s: cannot read %s ELF file.\n", __func__
, filename
);
551 err
= elf_read_build_id(elf
, bf
, size
);
560 int sysfs__read_build_id(const char *filename
, void *build_id
, size_t size
)
564 if (size
< BUILD_ID_SIZE
)
567 fd
= open(filename
, O_RDONLY
);
574 size_t namesz
, descsz
;
576 if (read(fd
, &nhdr
, sizeof(nhdr
)) != sizeof(nhdr
))
579 namesz
= NOTE_ALIGN(nhdr
.n_namesz
);
580 descsz
= NOTE_ALIGN(nhdr
.n_descsz
);
581 if (nhdr
.n_type
== NT_GNU_BUILD_ID
&&
582 nhdr
.n_namesz
== sizeof("GNU")) {
583 if (read(fd
, bf
, namesz
) != (ssize_t
)namesz
)
585 if (memcmp(bf
, "GNU", sizeof("GNU")) == 0) {
586 size_t sz
= min(descsz
, size
);
587 if (read(fd
, build_id
, sz
) == (ssize_t
)sz
) {
588 memset(build_id
+ sz
, 0, size
- sz
);
592 } else if (read(fd
, bf
, descsz
) != (ssize_t
)descsz
)
595 int n
= namesz
+ descsz
;
597 if (n
> (int)sizeof(bf
)) {
599 pr_debug("%s: truncating reading of build id in sysfs file %s: n_namesz=%u, n_descsz=%u.\n",
600 __func__
, filename
, nhdr
.n_namesz
, nhdr
.n_descsz
);
602 if (read(fd
, bf
, n
) != n
)
611 int filename__read_debuglink(const char *filename
, char *debuglink
,
622 fd
= open(filename
, O_RDONLY
);
626 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
628 pr_debug2("%s: cannot read %s ELF file.\n", __func__
, filename
);
636 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
637 pr_err("%s: cannot get elf header.\n", __func__
);
641 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
642 ".gnu_debuglink", NULL
);
646 data
= elf_getdata(sec
, NULL
);
650 /* the start of this section is a zero-terminated string */
651 strncpy(debuglink
, data
->d_buf
, size
);
663 static int dso__swap_init(struct dso
*dso
, unsigned char eidata
)
665 static unsigned int const endian
= 1;
667 dso
->needs_swap
= DSO_SWAP__NO
;
671 /* We are big endian, DSO is little endian. */
672 if (*(unsigned char const *)&endian
!= 1)
673 dso
->needs_swap
= DSO_SWAP__YES
;
677 /* We are little endian, DSO is big endian. */
678 if (*(unsigned char const *)&endian
!= 0)
679 dso
->needs_swap
= DSO_SWAP__YES
;
683 pr_err("unrecognized DSO data encoding %d\n", eidata
);
690 bool symsrc__possibly_runtime(struct symsrc
*ss
)
692 return ss
->dynsym
|| ss
->opdsec
;
695 bool symsrc__has_symtab(struct symsrc
*ss
)
697 return ss
->symtab
!= NULL
;
700 void symsrc__destroy(struct symsrc
*ss
)
707 bool elf__needs_adjust_symbols(GElf_Ehdr ehdr
)
710 * Usually vmlinux is an ELF file with type ET_EXEC for most
711 * architectures; except Arm64 kernel is linked with option
712 * '-share', so need to check type ET_DYN.
714 return ehdr
.e_type
== ET_EXEC
|| ehdr
.e_type
== ET_REL
||
715 ehdr
.e_type
== ET_DYN
;
718 int symsrc__init(struct symsrc
*ss
, struct dso
*dso
, const char *name
,
719 enum dso_binary_type type
)
725 if (dso__needs_decompress(dso
)) {
726 fd
= dso__decompress_kmodule_fd(dso
, name
);
730 type
= dso
->symtab_type
;
732 fd
= open(name
, O_RDONLY
);
734 dso
->load_errno
= errno
;
739 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
741 pr_debug("%s: cannot read %s ELF file.\n", __func__
, name
);
742 dso
->load_errno
= DSO_LOAD_ERRNO__INVALID_ELF
;
746 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
747 dso
->load_errno
= DSO_LOAD_ERRNO__INVALID_ELF
;
748 pr_debug("%s: cannot get elf header.\n", __func__
);
752 if (dso__swap_init(dso
, ehdr
.e_ident
[EI_DATA
])) {
753 dso
->load_errno
= DSO_LOAD_ERRNO__INTERNAL_ERROR
;
757 /* Always reject images with a mismatched build-id: */
758 if (dso
->has_build_id
&& !symbol_conf
.ignore_vmlinux_buildid
) {
759 u8 build_id
[BUILD_ID_SIZE
];
761 if (elf_read_build_id(elf
, build_id
, BUILD_ID_SIZE
) < 0) {
762 dso
->load_errno
= DSO_LOAD_ERRNO__CANNOT_READ_BUILDID
;
766 if (!dso__build_id_equal(dso
, build_id
)) {
767 pr_debug("%s: build id mismatch for %s.\n", __func__
, name
);
768 dso
->load_errno
= DSO_LOAD_ERRNO__MISMATCHING_BUILDID
;
773 ss
->is_64_bit
= (gelf_getclass(elf
) == ELFCLASS64
);
775 ss
->symtab
= elf_section_by_name(elf
, &ehdr
, &ss
->symshdr
, ".symtab",
777 if (ss
->symshdr
.sh_type
!= SHT_SYMTAB
)
781 ss
->dynsym
= elf_section_by_name(elf
, &ehdr
, &ss
->dynshdr
, ".dynsym",
783 if (ss
->dynshdr
.sh_type
!= SHT_DYNSYM
)
787 ss
->opdsec
= elf_section_by_name(elf
, &ehdr
, &ss
->opdshdr
, ".opd",
789 if (ss
->opdshdr
.sh_type
!= SHT_PROGBITS
)
792 if (dso
->kernel
== DSO_SPACE__USER
)
793 ss
->adjust_symbols
= true;
795 ss
->adjust_symbols
= elf__needs_adjust_symbols(ehdr
);
797 ss
->name
= strdup(name
);
799 dso
->load_errno
= errno
;
818 * ref_reloc_sym_not_found - has kernel relocation symbol been found.
819 * @kmap: kernel maps and relocation reference symbol
821 * This function returns %true if we are dealing with the kernel maps and the
822 * relocation reference symbol has not yet been found. Otherwise %false is
825 static bool ref_reloc_sym_not_found(struct kmap
*kmap
)
827 return kmap
&& kmap
->ref_reloc_sym
&& kmap
->ref_reloc_sym
->name
&&
828 !kmap
->ref_reloc_sym
->unrelocated_addr
;
832 * ref_reloc - kernel relocation offset.
833 * @kmap: kernel maps and relocation reference symbol
835 * This function returns the offset of kernel addresses as determined by using
836 * the relocation reference symbol i.e. if the kernel has not been relocated
837 * then the return value is zero.
839 static u64
ref_reloc(struct kmap
*kmap
)
841 if (kmap
&& kmap
->ref_reloc_sym
&&
842 kmap
->ref_reloc_sym
->unrelocated_addr
)
843 return kmap
->ref_reloc_sym
->addr
-
844 kmap
->ref_reloc_sym
->unrelocated_addr
;
848 void __weak
arch__sym_update(struct symbol
*s __maybe_unused
,
849 GElf_Sym
*sym __maybe_unused
) { }
851 static int dso__process_kernel_symbol(struct dso
*dso
, struct map
*map
,
852 GElf_Sym
*sym
, GElf_Shdr
*shdr
,
853 struct maps
*kmaps
, struct kmap
*kmap
,
854 struct dso
**curr_dsop
, struct map
**curr_mapp
,
855 const char *section_name
,
856 bool adjust_kernel_syms
, bool kmodule
, bool *remap_kernel
)
858 struct dso
*curr_dso
= *curr_dsop
;
859 struct map
*curr_map
;
860 char dso_name
[PATH_MAX
];
862 /* Adjust symbol to map to file offset */
863 if (adjust_kernel_syms
)
864 sym
->st_value
-= shdr
->sh_addr
- shdr
->sh_offset
;
866 if (strcmp(section_name
, (curr_dso
->short_name
+ dso
->short_name_len
)) == 0)
869 if (strcmp(section_name
, ".text") == 0) {
871 * The initial kernel mapping is based on
872 * kallsyms and identity maps. Overwrite it to
873 * map to the kernel dso.
875 if (*remap_kernel
&& dso
->kernel
&& !kmodule
) {
876 *remap_kernel
= false;
877 map
->start
= shdr
->sh_addr
+ ref_reloc(kmap
);
878 map
->end
= map
->start
+ shdr
->sh_size
;
879 map
->pgoff
= shdr
->sh_offset
;
880 map
->map_ip
= map__map_ip
;
881 map
->unmap_ip
= map__unmap_ip
;
882 /* Ensure maps are correctly ordered */
885 maps__remove(kmaps
, map
);
886 maps__insert(kmaps
, map
);
892 * The initial module mapping is based on
893 * /proc/modules mapped to offset zero.
894 * Overwrite it to map to the module dso.
896 if (*remap_kernel
&& kmodule
) {
897 *remap_kernel
= false;
898 map
->pgoff
= shdr
->sh_offset
;
909 snprintf(dso_name
, sizeof(dso_name
), "%s%s", dso
->short_name
, section_name
);
911 curr_map
= maps__find_by_name(kmaps
, dso_name
);
912 if (curr_map
== NULL
) {
913 u64 start
= sym
->st_value
;
916 start
+= map
->start
+ shdr
->sh_offset
;
918 curr_dso
= dso__new(dso_name
);
919 if (curr_dso
== NULL
)
921 curr_dso
->kernel
= dso
->kernel
;
922 curr_dso
->long_name
= dso
->long_name
;
923 curr_dso
->long_name_len
= dso
->long_name_len
;
924 curr_map
= map__new2(start
, curr_dso
);
926 if (curr_map
== NULL
)
929 if (curr_dso
->kernel
)
930 map__kmap(curr_map
)->kmaps
= kmaps
;
932 if (adjust_kernel_syms
) {
933 curr_map
->start
= shdr
->sh_addr
+ ref_reloc(kmap
);
934 curr_map
->end
= curr_map
->start
+ shdr
->sh_size
;
935 curr_map
->pgoff
= shdr
->sh_offset
;
937 curr_map
->map_ip
= curr_map
->unmap_ip
= identity__map_ip
;
939 curr_dso
->symtab_type
= dso
->symtab_type
;
940 maps__insert(kmaps
, curr_map
);
942 * Add it before we drop the referece to curr_map, i.e. while
943 * we still are sure to have a reference to this DSO via
946 dsos__add(&kmaps
->machine
->dsos
, curr_dso
);
947 /* kmaps already got it */
949 dso__set_loaded(curr_dso
);
950 *curr_mapp
= curr_map
;
951 *curr_dsop
= curr_dso
;
953 *curr_dsop
= curr_map
->dso
;
958 int dso__load_sym(struct dso
*dso
, struct map
*map
, struct symsrc
*syms_ss
,
959 struct symsrc
*runtime_ss
, int kmodule
)
961 struct kmap
*kmap
= dso
->kernel
? map__kmap(map
) : NULL
;
962 struct maps
*kmaps
= kmap
? map__kmaps(map
) : NULL
;
963 struct map
*curr_map
= map
;
964 struct dso
*curr_dso
= dso
;
965 Elf_Data
*symstrs
, *secstrs
;
972 Elf_Data
*syms
, *opddata
= NULL
;
974 Elf_Scn
*sec
, *sec_strndx
;
977 bool remap_kernel
= false, adjust_kernel_syms
= false;
982 dso
->symtab_type
= syms_ss
->type
;
983 dso
->is_64_bit
= syms_ss
->is_64_bit
;
984 dso
->rel
= syms_ss
->ehdr
.e_type
== ET_REL
;
987 * Modules may already have symbols from kallsyms, but those symbols
988 * have the wrong values for the dso maps, so remove them.
990 if (kmodule
&& syms_ss
->symtab
)
991 symbols__delete(&dso
->symbols
);
993 if (!syms_ss
->symtab
) {
995 * If the vmlinux is stripped, fail so we will fall back
996 * to using kallsyms. The vmlinux runtime symbols aren't
1002 syms_ss
->symtab
= syms_ss
->dynsym
;
1003 syms_ss
->symshdr
= syms_ss
->dynshdr
;
1007 ehdr
= syms_ss
->ehdr
;
1008 sec
= syms_ss
->symtab
;
1009 shdr
= syms_ss
->symshdr
;
1011 if (elf_section_by_name(runtime_ss
->elf
, &runtime_ss
->ehdr
, &tshdr
,
1013 dso
->text_offset
= tshdr
.sh_addr
- tshdr
.sh_offset
;
1015 if (runtime_ss
->opdsec
)
1016 opddata
= elf_rawdata(runtime_ss
->opdsec
, NULL
);
1018 syms
= elf_getdata(sec
, NULL
);
1022 sec
= elf_getscn(elf
, shdr
.sh_link
);
1026 symstrs
= elf_getdata(sec
, NULL
);
1027 if (symstrs
== NULL
)
1030 sec_strndx
= elf_getscn(runtime_ss
->elf
, runtime_ss
->ehdr
.e_shstrndx
);
1031 if (sec_strndx
== NULL
)
1034 secstrs
= elf_getdata(sec_strndx
, NULL
);
1035 if (secstrs
== NULL
)
1038 nr_syms
= shdr
.sh_size
/ shdr
.sh_entsize
;
1040 memset(&sym
, 0, sizeof(sym
));
1043 * The kernel relocation symbol is needed in advance in order to adjust
1044 * kernel maps correctly.
1046 if (ref_reloc_sym_not_found(kmap
)) {
1047 elf_symtab__for_each_symbol(syms
, nr_syms
, idx
, sym
) {
1048 const char *elf_name
= elf_sym__name(&sym
, symstrs
);
1050 if (strcmp(elf_name
, kmap
->ref_reloc_sym
->name
))
1052 kmap
->ref_reloc_sym
->unrelocated_addr
= sym
.st_value
;
1053 map
->reloc
= kmap
->ref_reloc_sym
->addr
-
1054 kmap
->ref_reloc_sym
->unrelocated_addr
;
1060 * Handle any relocation of vdso necessary because older kernels
1061 * attempted to prelink vdso to its virtual address.
1063 if (dso__is_vdso(dso
))
1064 map
->reloc
= map
->start
- dso
->text_offset
;
1066 dso
->adjust_symbols
= runtime_ss
->adjust_symbols
|| ref_reloc(kmap
);
1068 * Initial kernel and module mappings do not map to the dso.
1072 remap_kernel
= true;
1073 adjust_kernel_syms
= dso
->adjust_symbols
;
1075 elf_symtab__for_each_symbol(syms
, nr_syms
, idx
, sym
) {
1077 const char *elf_name
= elf_sym__name(&sym
, symstrs
);
1078 char *demangled
= NULL
;
1079 int is_label
= elf_sym__is_label(&sym
);
1080 const char *section_name
;
1081 bool used_opd
= false;
1083 if (!is_label
&& !elf_sym__filter(&sym
))
1086 /* Reject ARM ELF "mapping symbols": these aren't unique and
1087 * don't identify functions, so will confuse the profile
1089 if (ehdr
.e_machine
== EM_ARM
|| ehdr
.e_machine
== EM_AARCH64
) {
1090 if (elf_name
[0] == '$' && strchr("adtx", elf_name
[1])
1091 && (elf_name
[2] == '\0' || elf_name
[2] == '.'))
1095 if (runtime_ss
->opdsec
&& sym
.st_shndx
== runtime_ss
->opdidx
) {
1096 u32 offset
= sym
.st_value
- syms_ss
->opdshdr
.sh_addr
;
1097 u64
*opd
= opddata
->d_buf
+ offset
;
1098 sym
.st_value
= DSO__SWAP(dso
, u64
, *opd
);
1099 sym
.st_shndx
= elf_addr_to_index(runtime_ss
->elf
,
1104 * When loading symbols in a data mapping, ABS symbols (which
1105 * has a value of SHN_ABS in its st_shndx) failed at
1106 * elf_getscn(). And it marks the loading as a failure so
1107 * already loaded symbols cannot be fixed up.
1109 * I'm not sure what should be done. Just ignore them for now.
1112 if (sym
.st_shndx
== SHN_ABS
)
1115 sec
= elf_getscn(runtime_ss
->elf
, sym
.st_shndx
);
1119 gelf_getshdr(sec
, &shdr
);
1121 if (is_label
&& !elf_sec__filter(&shdr
, secstrs
))
1124 section_name
= elf_sec__name(&shdr
, secstrs
);
1126 /* On ARM, symbols for thumb functions have 1 added to
1127 * the symbol address as a flag - remove it */
1128 if ((ehdr
.e_machine
== EM_ARM
) &&
1129 (GELF_ST_TYPE(sym
.st_info
) == STT_FUNC
) &&
1134 if (dso__process_kernel_symbol(dso
, map
, &sym
, &shdr
, kmaps
, kmap
, &curr_dso
, &curr_map
,
1135 section_name
, adjust_kernel_syms
, kmodule
, &remap_kernel
))
1137 } else if ((used_opd
&& runtime_ss
->adjust_symbols
) ||
1138 (!used_opd
&& syms_ss
->adjust_symbols
)) {
1139 pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64
" "
1140 "sh_addr: %#" PRIx64
" sh_offset: %#" PRIx64
"\n", __func__
,
1141 (u64
)sym
.st_value
, (u64
)shdr
.sh_addr
,
1142 (u64
)shdr
.sh_offset
);
1143 sym
.st_value
-= shdr
.sh_addr
- shdr
.sh_offset
;
1146 demangled
= demangle_sym(dso
, kmodule
, elf_name
);
1147 if (demangled
!= NULL
)
1148 elf_name
= demangled
;
1150 f
= symbol__new(sym
.st_value
, sym
.st_size
,
1151 GELF_ST_BIND(sym
.st_info
),
1152 GELF_ST_TYPE(sym
.st_info
), elf_name
);
1157 arch__sym_update(f
, &sym
);
1159 __symbols__insert(&curr_dso
->symbols
, f
, dso
->kernel
);
1164 * For misannotated, zeroed, ASM function sizes.
1167 symbols__fixup_end(&dso
->symbols
);
1168 symbols__fixup_duplicate(&dso
->symbols
);
1171 * We need to fixup this here too because we create new
1172 * maps here, for things like vsyscall sections.
1174 maps__fixup_end(kmaps
);
1182 static int elf_read_maps(Elf
*elf
, bool exe
, mapfn_t mapfn
, void *data
)
1189 if (elf_getphdrnum(elf
, &phdrnum
))
1192 for (i
= 0; i
< phdrnum
; i
++) {
1193 if (gelf_getphdr(elf
, i
, &phdr
) == NULL
)
1195 if (phdr
.p_type
!= PT_LOAD
)
1198 if (!(phdr
.p_flags
& PF_X
))
1201 if (!(phdr
.p_flags
& PF_R
))
1204 sz
= min(phdr
.p_memsz
, phdr
.p_filesz
);
1207 err
= mapfn(phdr
.p_vaddr
, sz
, phdr
.p_offset
, data
);
1214 int file__read_maps(int fd
, bool exe
, mapfn_t mapfn
, void *data
,
1220 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
1225 *is_64_bit
= (gelf_getclass(elf
) == ELFCLASS64
);
1227 err
= elf_read_maps(elf
, exe
, mapfn
, data
);
1233 enum dso_type
dso__type_fd(int fd
)
1235 enum dso_type dso_type
= DSO__TYPE_UNKNOWN
;
1240 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
1245 if (ek
!= ELF_K_ELF
)
1248 if (gelf_getclass(elf
) == ELFCLASS64
) {
1249 dso_type
= DSO__TYPE_64BIT
;
1253 if (gelf_getehdr(elf
, &ehdr
) == NULL
)
1256 if (ehdr
.e_machine
== EM_X86_64
)
1257 dso_type
= DSO__TYPE_X32BIT
;
1259 dso_type
= DSO__TYPE_32BIT
;
1266 static int copy_bytes(int from
, off_t from_offs
, int to
, off_t to_offs
, u64 len
)
1271 char *buf
= malloc(page_size
);
1276 if (lseek(to
, to_offs
, SEEK_SET
) != to_offs
)
1279 if (lseek(from
, from_offs
, SEEK_SET
) != from_offs
)
1286 /* Use read because mmap won't work on proc files */
1287 r
= read(from
, buf
, n
);
1293 r
= write(to
, buf
, n
);
1314 static int kcore__open(struct kcore
*kcore
, const char *filename
)
1318 kcore
->fd
= open(filename
, O_RDONLY
);
1319 if (kcore
->fd
== -1)
1322 kcore
->elf
= elf_begin(kcore
->fd
, ELF_C_READ
, NULL
);
1326 kcore
->elfclass
= gelf_getclass(kcore
->elf
);
1327 if (kcore
->elfclass
== ELFCLASSNONE
)
1330 ehdr
= gelf_getehdr(kcore
->elf
, &kcore
->ehdr
);
1337 elf_end(kcore
->elf
);
1343 static int kcore__init(struct kcore
*kcore
, char *filename
, int elfclass
,
1346 kcore
->elfclass
= elfclass
;
1349 kcore
->fd
= mkstemp(filename
);
1351 kcore
->fd
= open(filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0400);
1352 if (kcore
->fd
== -1)
1355 kcore
->elf
= elf_begin(kcore
->fd
, ELF_C_WRITE
, NULL
);
1359 if (!gelf_newehdr(kcore
->elf
, elfclass
))
1362 memset(&kcore
->ehdr
, 0, sizeof(GElf_Ehdr
));
1367 elf_end(kcore
->elf
);
1374 static void kcore__close(struct kcore
*kcore
)
1376 elf_end(kcore
->elf
);
1380 static int kcore__copy_hdr(struct kcore
*from
, struct kcore
*to
, size_t count
)
1382 GElf_Ehdr
*ehdr
= &to
->ehdr
;
1383 GElf_Ehdr
*kehdr
= &from
->ehdr
;
1385 memcpy(ehdr
->e_ident
, kehdr
->e_ident
, EI_NIDENT
);
1386 ehdr
->e_type
= kehdr
->e_type
;
1387 ehdr
->e_machine
= kehdr
->e_machine
;
1388 ehdr
->e_version
= kehdr
->e_version
;
1391 ehdr
->e_flags
= kehdr
->e_flags
;
1392 ehdr
->e_phnum
= count
;
1393 ehdr
->e_shentsize
= 0;
1395 ehdr
->e_shstrndx
= 0;
1397 if (from
->elfclass
== ELFCLASS32
) {
1398 ehdr
->e_phoff
= sizeof(Elf32_Ehdr
);
1399 ehdr
->e_ehsize
= sizeof(Elf32_Ehdr
);
1400 ehdr
->e_phentsize
= sizeof(Elf32_Phdr
);
1402 ehdr
->e_phoff
= sizeof(Elf64_Ehdr
);
1403 ehdr
->e_ehsize
= sizeof(Elf64_Ehdr
);
1404 ehdr
->e_phentsize
= sizeof(Elf64_Phdr
);
1407 if (!gelf_update_ehdr(to
->elf
, ehdr
))
1410 if (!gelf_newphdr(to
->elf
, count
))
1416 static int kcore__add_phdr(struct kcore
*kcore
, int idx
, off_t offset
,
1421 .p_flags
= PF_R
| PF_W
| PF_X
,
1427 .p_align
= page_size
,
1430 if (!gelf_update_phdr(kcore
->elf
, idx
, &phdr
))
1436 static off_t
kcore__write(struct kcore
*kcore
)
1438 return elf_update(kcore
->elf
, ELF_C_WRITE
);
1446 struct list_head node
;
1447 struct phdr_data
*remaps
;
1452 struct list_head node
;
1455 struct kcore_copy_info
{
1461 u64 first_module_symbol
;
1462 u64 last_module_symbol
;
1464 struct list_head phdrs
;
1465 struct list_head syms
;
1468 #define kcore_copy__for_each_phdr(k, p) \
1469 list_for_each_entry((p), &(k)->phdrs, node)
1471 static struct phdr_data
*phdr_data__new(u64 addr
, u64 len
, off_t offset
)
1473 struct phdr_data
*p
= zalloc(sizeof(*p
));
1484 static struct phdr_data
*kcore_copy_info__addnew(struct kcore_copy_info
*kci
,
1488 struct phdr_data
*p
= phdr_data__new(addr
, len
, offset
);
1491 list_add_tail(&p
->node
, &kci
->phdrs
);
1496 static void kcore_copy__free_phdrs(struct kcore_copy_info
*kci
)
1498 struct phdr_data
*p
, *tmp
;
1500 list_for_each_entry_safe(p
, tmp
, &kci
->phdrs
, node
) {
1501 list_del_init(&p
->node
);
1506 static struct sym_data
*kcore_copy__new_sym(struct kcore_copy_info
*kci
,
1509 struct sym_data
*s
= zalloc(sizeof(*s
));
1513 list_add_tail(&s
->node
, &kci
->syms
);
1519 static void kcore_copy__free_syms(struct kcore_copy_info
*kci
)
1521 struct sym_data
*s
, *tmp
;
1523 list_for_each_entry_safe(s
, tmp
, &kci
->syms
, node
) {
1524 list_del_init(&s
->node
);
1529 static int kcore_copy__process_kallsyms(void *arg
, const char *name
, char type
,
1532 struct kcore_copy_info
*kci
= arg
;
1534 if (!kallsyms__is_function(type
))
1537 if (strchr(name
, '[')) {
1538 if (!kci
->first_module_symbol
|| start
< kci
->first_module_symbol
)
1539 kci
->first_module_symbol
= start
;
1540 if (start
> kci
->last_module_symbol
)
1541 kci
->last_module_symbol
= start
;
1545 if (!kci
->first_symbol
|| start
< kci
->first_symbol
)
1546 kci
->first_symbol
= start
;
1548 if (!kci
->last_symbol
|| start
> kci
->last_symbol
)
1549 kci
->last_symbol
= start
;
1551 if (!strcmp(name
, "_stext")) {
1556 if (!strcmp(name
, "_etext")) {
1561 if (is_entry_trampoline(name
) && !kcore_copy__new_sym(kci
, start
))
1567 static int kcore_copy__parse_kallsyms(struct kcore_copy_info
*kci
,
1570 char kallsyms_filename
[PATH_MAX
];
1572 scnprintf(kallsyms_filename
, PATH_MAX
, "%s/kallsyms", dir
);
1574 if (symbol__restricted_filename(kallsyms_filename
, "/proc/kallsyms"))
1577 if (kallsyms__parse(kallsyms_filename
, kci
,
1578 kcore_copy__process_kallsyms
) < 0)
1584 static int kcore_copy__process_modules(void *arg
,
1585 const char *name __maybe_unused
,
1586 u64 start
, u64 size __maybe_unused
)
1588 struct kcore_copy_info
*kci
= arg
;
1590 if (!kci
->first_module
|| start
< kci
->first_module
)
1591 kci
->first_module
= start
;
1596 static int kcore_copy__parse_modules(struct kcore_copy_info
*kci
,
1599 char modules_filename
[PATH_MAX
];
1601 scnprintf(modules_filename
, PATH_MAX
, "%s/modules", dir
);
1603 if (symbol__restricted_filename(modules_filename
, "/proc/modules"))
1606 if (modules__parse(modules_filename
, kci
,
1607 kcore_copy__process_modules
) < 0)
1613 static int kcore_copy__map(struct kcore_copy_info
*kci
, u64 start
, u64 end
,
1614 u64 pgoff
, u64 s
, u64 e
)
1618 if (s
< start
|| s
>= end
)
1621 offset
= (s
- start
) + pgoff
;
1622 len
= e
< end
? e
- s
: end
- s
;
1624 return kcore_copy_info__addnew(kci
, s
, len
, offset
) ? 0 : -1;
1627 static int kcore_copy__read_map(u64 start
, u64 len
, u64 pgoff
, void *data
)
1629 struct kcore_copy_info
*kci
= data
;
1630 u64 end
= start
+ len
;
1631 struct sym_data
*sdat
;
1633 if (kcore_copy__map(kci
, start
, end
, pgoff
, kci
->stext
, kci
->etext
))
1636 if (kcore_copy__map(kci
, start
, end
, pgoff
, kci
->first_module
,
1637 kci
->last_module_symbol
))
1640 list_for_each_entry(sdat
, &kci
->syms
, node
) {
1641 u64 s
= round_down(sdat
->addr
, page_size
);
1643 if (kcore_copy__map(kci
, start
, end
, pgoff
, s
, s
+ len
))
1650 static int kcore_copy__read_maps(struct kcore_copy_info
*kci
, Elf
*elf
)
1652 if (elf_read_maps(elf
, true, kcore_copy__read_map
, kci
) < 0)
1658 static void kcore_copy__find_remaps(struct kcore_copy_info
*kci
)
1660 struct phdr_data
*p
, *k
= NULL
;
1666 /* Find phdr that corresponds to the kernel map (contains stext) */
1667 kcore_copy__for_each_phdr(kci
, p
) {
1668 u64 pend
= p
->addr
+ p
->len
- 1;
1670 if (p
->addr
<= kci
->stext
&& pend
>= kci
->stext
) {
1679 kend
= k
->offset
+ k
->len
;
1681 /* Find phdrs that remap the kernel */
1682 kcore_copy__for_each_phdr(kci
, p
) {
1683 u64 pend
= p
->offset
+ p
->len
;
1688 if (p
->offset
>= k
->offset
&& pend
<= kend
)
1693 static void kcore_copy__layout(struct kcore_copy_info
*kci
)
1695 struct phdr_data
*p
;
1698 kcore_copy__find_remaps(kci
);
1700 kcore_copy__for_each_phdr(kci
, p
) {
1708 kcore_copy__for_each_phdr(kci
, p
) {
1709 struct phdr_data
*k
= p
->remaps
;
1712 p
->rel
= p
->offset
- k
->offset
+ k
->rel
;
1716 static int kcore_copy__calc_maps(struct kcore_copy_info
*kci
, const char *dir
,
1719 if (kcore_copy__parse_kallsyms(kci
, dir
))
1722 if (kcore_copy__parse_modules(kci
, dir
))
1726 kci
->stext
= round_down(kci
->stext
, page_size
);
1728 kci
->stext
= round_down(kci
->first_symbol
, page_size
);
1731 kci
->etext
= round_up(kci
->etext
, page_size
);
1732 } else if (kci
->last_symbol
) {
1733 kci
->etext
= round_up(kci
->last_symbol
, page_size
);
1734 kci
->etext
+= page_size
;
1737 if (kci
->first_module_symbol
&&
1738 (!kci
->first_module
|| kci
->first_module_symbol
< kci
->first_module
))
1739 kci
->first_module
= kci
->first_module_symbol
;
1741 kci
->first_module
= round_down(kci
->first_module
, page_size
);
1743 if (kci
->last_module_symbol
) {
1744 kci
->last_module_symbol
= round_up(kci
->last_module_symbol
,
1746 kci
->last_module_symbol
+= page_size
;
1749 if (!kci
->stext
|| !kci
->etext
)
1752 if (kci
->first_module
&& !kci
->last_module_symbol
)
1755 if (kcore_copy__read_maps(kci
, elf
))
1758 kcore_copy__layout(kci
);
1763 static int kcore_copy__copy_file(const char *from_dir
, const char *to_dir
,
1766 char from_filename
[PATH_MAX
];
1767 char to_filename
[PATH_MAX
];
1769 scnprintf(from_filename
, PATH_MAX
, "%s/%s", from_dir
, name
);
1770 scnprintf(to_filename
, PATH_MAX
, "%s/%s", to_dir
, name
);
1772 return copyfile_mode(from_filename
, to_filename
, 0400);
1775 static int kcore_copy__unlink(const char *dir
, const char *name
)
1777 char filename
[PATH_MAX
];
1779 scnprintf(filename
, PATH_MAX
, "%s/%s", dir
, name
);
1781 return unlink(filename
);
1784 static int kcore_copy__compare_fds(int from
, int to
)
1792 buf_from
= malloc(page_size
);
1793 buf_to
= malloc(page_size
);
1794 if (!buf_from
|| !buf_to
)
1798 /* Use read because mmap won't work on proc files */
1799 ret
= read(from
, buf_from
, page_size
);
1808 if (readn(to
, buf_to
, len
) != (int)len
)
1811 if (memcmp(buf_from
, buf_to
, len
))
1822 static int kcore_copy__compare_files(const char *from_filename
,
1823 const char *to_filename
)
1825 int from
, to
, err
= -1;
1827 from
= open(from_filename
, O_RDONLY
);
1831 to
= open(to_filename
, O_RDONLY
);
1833 goto out_close_from
;
1835 err
= kcore_copy__compare_fds(from
, to
);
1843 static int kcore_copy__compare_file(const char *from_dir
, const char *to_dir
,
1846 char from_filename
[PATH_MAX
];
1847 char to_filename
[PATH_MAX
];
1849 scnprintf(from_filename
, PATH_MAX
, "%s/%s", from_dir
, name
);
1850 scnprintf(to_filename
, PATH_MAX
, "%s/%s", to_dir
, name
);
1852 return kcore_copy__compare_files(from_filename
, to_filename
);
1856 * kcore_copy - copy kallsyms, modules and kcore from one directory to another.
1857 * @from_dir: from directory
1858 * @to_dir: to directory
1860 * This function copies kallsyms, modules and kcore files from one directory to
1861 * another. kallsyms and modules are copied entirely. Only code segments are
1862 * copied from kcore. It is assumed that two segments suffice: one for the
1863 * kernel proper and one for all the modules. The code segments are determined
1864 * from kallsyms and modules files. The kernel map starts at _stext or the
1865 * lowest function symbol, and ends at _etext or the highest function symbol.
1866 * The module map starts at the lowest module address and ends at the highest
1867 * module symbol. Start addresses are rounded down to the nearest page. End
1868 * addresses are rounded up to the nearest page. An extra page is added to the
1869 * highest kernel symbol and highest module symbol to, hopefully, encompass that
1870 * symbol too. Because it contains only code sections, the resulting kcore is
1871 * unusual. One significant peculiarity is that the mapping (start -> pgoff)
1872 * is not the same for the kernel map and the modules map. That happens because
1873 * the data is copied adjacently whereas the original kcore has gaps. Finally,
1874 * kallsyms and modules files are compared with their copies to check that
1875 * modules have not been loaded or unloaded while the copies were taking place.
1877 * Return: %0 on success, %-1 on failure.
1879 int kcore_copy(const char *from_dir
, const char *to_dir
)
1882 struct kcore extract
;
1883 int idx
= 0, err
= -1;
1885 struct kcore_copy_info kci
= { .stext
= 0, };
1886 char kcore_filename
[PATH_MAX
];
1887 char extract_filename
[PATH_MAX
];
1888 struct phdr_data
*p
;
1890 INIT_LIST_HEAD(&kci
.phdrs
);
1891 INIT_LIST_HEAD(&kci
.syms
);
1893 if (kcore_copy__copy_file(from_dir
, to_dir
, "kallsyms"))
1896 if (kcore_copy__copy_file(from_dir
, to_dir
, "modules"))
1897 goto out_unlink_kallsyms
;
1899 scnprintf(kcore_filename
, PATH_MAX
, "%s/kcore", from_dir
);
1900 scnprintf(extract_filename
, PATH_MAX
, "%s/kcore", to_dir
);
1902 if (kcore__open(&kcore
, kcore_filename
))
1903 goto out_unlink_modules
;
1905 if (kcore_copy__calc_maps(&kci
, from_dir
, kcore
.elf
))
1906 goto out_kcore_close
;
1908 if (kcore__init(&extract
, extract_filename
, kcore
.elfclass
, false))
1909 goto out_kcore_close
;
1911 if (kcore__copy_hdr(&kcore
, &extract
, kci
.phnum
))
1912 goto out_extract_close
;
1914 offset
= gelf_fsize(extract
.elf
, ELF_T_EHDR
, 1, EV_CURRENT
) +
1915 gelf_fsize(extract
.elf
, ELF_T_PHDR
, kci
.phnum
, EV_CURRENT
);
1916 offset
= round_up(offset
, page_size
);
1918 kcore_copy__for_each_phdr(&kci
, p
) {
1919 off_t offs
= p
->rel
+ offset
;
1921 if (kcore__add_phdr(&extract
, idx
++, offs
, p
->addr
, p
->len
))
1922 goto out_extract_close
;
1925 sz
= kcore__write(&extract
);
1926 if (sz
< 0 || sz
> offset
)
1927 goto out_extract_close
;
1929 kcore_copy__for_each_phdr(&kci
, p
) {
1930 off_t offs
= p
->rel
+ offset
;
1934 if (copy_bytes(kcore
.fd
, p
->offset
, extract
.fd
, offs
, p
->len
))
1935 goto out_extract_close
;
1938 if (kcore_copy__compare_file(from_dir
, to_dir
, "modules"))
1939 goto out_extract_close
;
1941 if (kcore_copy__compare_file(from_dir
, to_dir
, "kallsyms"))
1942 goto out_extract_close
;
1947 kcore__close(&extract
);
1949 unlink(extract_filename
);
1951 kcore__close(&kcore
);
1954 kcore_copy__unlink(to_dir
, "modules");
1955 out_unlink_kallsyms
:
1957 kcore_copy__unlink(to_dir
, "kallsyms");
1959 kcore_copy__free_phdrs(&kci
);
1960 kcore_copy__free_syms(&kci
);
1965 int kcore_extract__create(struct kcore_extract
*kce
)
1968 struct kcore extract
;
1970 int idx
= 0, err
= -1;
1971 off_t offset
= page_size
, sz
;
1973 if (kcore__open(&kcore
, kce
->kcore_filename
))
1976 strcpy(kce
->extract_filename
, PERF_KCORE_EXTRACT
);
1977 if (kcore__init(&extract
, kce
->extract_filename
, kcore
.elfclass
, true))
1978 goto out_kcore_close
;
1980 if (kcore__copy_hdr(&kcore
, &extract
, count
))
1981 goto out_extract_close
;
1983 if (kcore__add_phdr(&extract
, idx
, offset
, kce
->addr
, kce
->len
))
1984 goto out_extract_close
;
1986 sz
= kcore__write(&extract
);
1987 if (sz
< 0 || sz
> offset
)
1988 goto out_extract_close
;
1990 if (copy_bytes(kcore
.fd
, kce
->offs
, extract
.fd
, offset
, kce
->len
))
1991 goto out_extract_close
;
1996 kcore__close(&extract
);
1998 unlink(kce
->extract_filename
);
2000 kcore__close(&kcore
);
2005 void kcore_extract__delete(struct kcore_extract
*kce
)
2007 unlink(kce
->extract_filename
);
2010 #ifdef HAVE_GELF_GETNOTE_SUPPORT
2012 static void sdt_adjust_loc(struct sdt_note
*tmp
, GElf_Addr base_off
)
2018 tmp
->addr
.a32
[SDT_NOTE_IDX_LOC
] =
2019 tmp
->addr
.a32
[SDT_NOTE_IDX_LOC
] + base_off
-
2020 tmp
->addr
.a32
[SDT_NOTE_IDX_BASE
];
2022 tmp
->addr
.a64
[SDT_NOTE_IDX_LOC
] =
2023 tmp
->addr
.a64
[SDT_NOTE_IDX_LOC
] + base_off
-
2024 tmp
->addr
.a64
[SDT_NOTE_IDX_BASE
];
2027 static void sdt_adjust_refctr(struct sdt_note
*tmp
, GElf_Addr base_addr
,
2033 if (tmp
->bit32
&& tmp
->addr
.a32
[SDT_NOTE_IDX_REFCTR
])
2034 tmp
->addr
.a32
[SDT_NOTE_IDX_REFCTR
] -= (base_addr
- base_off
);
2035 else if (tmp
->addr
.a64
[SDT_NOTE_IDX_REFCTR
])
2036 tmp
->addr
.a64
[SDT_NOTE_IDX_REFCTR
] -= (base_addr
- base_off
);
2040 * populate_sdt_note : Parse raw data and identify SDT note
2041 * @elf: elf of the opened file
2042 * @data: raw data of a section with description offset applied
2043 * @len: note description size
2044 * @type: type of the note
2045 * @sdt_notes: List to add the SDT note
2047 * Responsible for parsing the @data in section .note.stapsdt in @elf and
2048 * if its an SDT note, it appends to @sdt_notes list.
2050 static int populate_sdt_note(Elf
**elf
, const char *data
, size_t len
,
2051 struct list_head
*sdt_notes
)
2053 const char *provider
, *name
, *args
;
2054 struct sdt_note
*tmp
= NULL
;
2060 Elf64_Addr a64
[NR_ADDR
];
2061 Elf32_Addr a32
[NR_ADDR
];
2065 .d_buf
= &buf
, .d_type
= ELF_T_ADDR
, .d_version
= EV_CURRENT
,
2066 .d_size
= gelf_fsize((*elf
), ELF_T_ADDR
, NR_ADDR
, EV_CURRENT
),
2067 .d_off
= 0, .d_align
= 0
2070 .d_buf
= (void *) data
, .d_type
= ELF_T_ADDR
,
2071 .d_version
= EV_CURRENT
, .d_size
= dst
.d_size
, .d_off
= 0,
2075 tmp
= (struct sdt_note
*)calloc(1, sizeof(struct sdt_note
));
2081 INIT_LIST_HEAD(&tmp
->note_list
);
2083 if (len
< dst
.d_size
+ 3)
2086 /* Translation from file representation to memory representation */
2087 if (gelf_xlatetom(*elf
, &dst
, &src
,
2088 elf_getident(*elf
, NULL
)[EI_DATA
]) == NULL
) {
2089 pr_err("gelf_xlatetom : %s\n", elf_errmsg(-1));
2093 /* Populate the fields of sdt_note */
2094 provider
= data
+ dst
.d_size
;
2096 name
= (const char *)memchr(provider
, '\0', data
+ len
- provider
);
2100 tmp
->provider
= strdup(provider
);
2101 if (!tmp
->provider
) {
2105 tmp
->name
= strdup(name
);
2111 args
= memchr(name
, '\0', data
+ len
- name
);
2114 * There is no argument if:
2115 * - We reached the end of the note;
2116 * - There is not enough room to hold a potential string;
2117 * - The argument string is empty or just contains ':'.
2119 if (args
== NULL
|| data
+ len
- args
< 2 ||
2120 args
[1] == ':' || args
[1] == '\0')
2123 tmp
->args
= strdup(++args
);
2130 if (gelf_getclass(*elf
) == ELFCLASS32
) {
2131 memcpy(&tmp
->addr
, &buf
, 3 * sizeof(Elf32_Addr
));
2134 memcpy(&tmp
->addr
, &buf
, 3 * sizeof(Elf64_Addr
));
2138 if (!gelf_getehdr(*elf
, &ehdr
)) {
2139 pr_debug("%s : cannot get elf header.\n", __func__
);
2144 /* Adjust the prelink effect :
2145 * Find out the .stapsdt.base section.
2146 * This scn will help us to handle prelinking (if present).
2147 * Compare the retrieved file offset of the base section with the
2148 * base address in the description of the SDT note. If its different,
2149 * then accordingly, adjust the note location.
2151 if (elf_section_by_name(*elf
, &ehdr
, &shdr
, SDT_BASE_SCN
, NULL
))
2152 sdt_adjust_loc(tmp
, shdr
.sh_offset
);
2154 /* Adjust reference counter offset */
2155 if (elf_section_by_name(*elf
, &ehdr
, &shdr
, SDT_PROBES_SCN
, NULL
))
2156 sdt_adjust_refctr(tmp
, shdr
.sh_addr
, shdr
.sh_offset
);
2158 list_add_tail(&tmp
->note_list
, sdt_notes
);
2166 zfree(&tmp
->provider
);
2174 * construct_sdt_notes_list : constructs a list of SDT notes
2175 * @elf : elf to look into
2176 * @sdt_notes : empty list_head
2178 * Scans the sections in 'elf' for the section
2179 * .note.stapsdt. It, then calls populate_sdt_note to find
2180 * out the SDT events and populates the 'sdt_notes'.
2182 static int construct_sdt_notes_list(Elf
*elf
, struct list_head
*sdt_notes
)
2185 Elf_Scn
*scn
= NULL
;
2188 size_t shstrndx
, next
;
2190 size_t name_off
, desc_off
, offset
;
2193 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
2197 if (elf_getshdrstrndx(elf
, &shstrndx
) != 0) {
2202 /* Look for the required section */
2203 scn
= elf_section_by_name(elf
, &ehdr
, &shdr
, SDT_NOTE_SCN
, NULL
);
2209 if ((shdr
.sh_type
!= SHT_NOTE
) || (shdr
.sh_flags
& SHF_ALLOC
)) {
2214 data
= elf_getdata(scn
, NULL
);
2216 /* Get the SDT notes */
2217 for (offset
= 0; (next
= gelf_getnote(data
, offset
, &nhdr
, &name_off
,
2218 &desc_off
)) > 0; offset
= next
) {
2219 if (nhdr
.n_namesz
== sizeof(SDT_NOTE_NAME
) &&
2220 !memcmp(data
->d_buf
+ name_off
, SDT_NOTE_NAME
,
2221 sizeof(SDT_NOTE_NAME
))) {
2222 /* Check the type of the note */
2223 if (nhdr
.n_type
!= SDT_NOTE_TYPE
)
2226 ret
= populate_sdt_note(&elf
, ((data
->d_buf
) + desc_off
),
2227 nhdr
.n_descsz
, sdt_notes
);
2232 if (list_empty(sdt_notes
))
2240 * get_sdt_note_list : Wrapper to construct a list of sdt notes
2241 * @head : empty list_head
2242 * @target : file to find SDT notes from
2244 * This opens the file, initializes
2245 * the ELF and then calls construct_sdt_notes_list.
2247 int get_sdt_note_list(struct list_head
*head
, const char *target
)
2252 fd
= open(target
, O_RDONLY
);
2256 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
2261 ret
= construct_sdt_notes_list(elf
, head
);
2269 * cleanup_sdt_note_list : free the sdt notes' list
2270 * @sdt_notes: sdt notes' list
2272 * Free up the SDT notes in @sdt_notes.
2273 * Returns the number of SDT notes free'd.
2275 int cleanup_sdt_note_list(struct list_head
*sdt_notes
)
2277 struct sdt_note
*tmp
, *pos
;
2280 list_for_each_entry_safe(pos
, tmp
, sdt_notes
, note_list
) {
2281 list_del_init(&pos
->note_list
);
2283 zfree(&pos
->provider
);
2291 * sdt_notes__get_count: Counts the number of sdt events
2292 * @start: list_head to sdt_notes list
2294 * Returns the number of SDT notes in a list
2296 int sdt_notes__get_count(struct list_head
*start
)
2298 struct sdt_note
*sdt_ptr
;
2301 list_for_each_entry(sdt_ptr
, start
, note_list
)
2307 void symbol__elf_init(void)
2309 elf_version(EV_CURRENT
);