1 // SPDX-License-Identifier: GPL-2.0
10 #include "demangle-java.h"
11 #include "demangle-rust.h"
15 #include "sane_ctype.h"
16 #include <symbol/kallsyms.h>
19 #define EM_AARCH64 183 /* ARM 64 bit */
22 typedef Elf64_Nhdr GElf_Nhdr
;
24 #ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
25 extern char *cplus_demangle(const char *, int);
27 static inline char *bfd_demangle(void __maybe_unused
*v
, const char *c
, int i
)
29 return cplus_demangle(c
, i
);
33 static inline char *bfd_demangle(void __maybe_unused
*v
,
34 const char __maybe_unused
*c
,
40 #define PACKAGE 'perf'
45 #ifndef HAVE_ELF_GETPHDRNUM_SUPPORT
46 static int elf_getphdrnum(Elf
*elf
, size_t *dst
)
51 ehdr
= gelf_getehdr(elf
, &gehdr
);
61 #ifndef HAVE_ELF_GETSHDRSTRNDX_SUPPORT
62 static int elf_getshdrstrndx(Elf
*elf __maybe_unused
, size_t *dst __maybe_unused
)
64 pr_err("%s: update your libelf to > 0.140, this one lacks elf_getshdrstrndx().\n", __func__
);
69 #ifndef NT_GNU_BUILD_ID
70 #define NT_GNU_BUILD_ID 3
74 * elf_symtab__for_each_symbol - iterate thru all the symbols
76 * @syms: struct elf_symtab instance to iterate
78 * @sym: GElf_Sym iterator
80 #define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
81 for (idx = 0, gelf_getsym(syms, idx, &sym);\
83 idx++, gelf_getsym(syms, idx, &sym))
85 static inline uint8_t elf_sym__type(const GElf_Sym
*sym
)
87 return GELF_ST_TYPE(sym
->st_info
);
91 #define STT_GNU_IFUNC 10
94 static inline int elf_sym__is_function(const GElf_Sym
*sym
)
96 return (elf_sym__type(sym
) == STT_FUNC
||
97 elf_sym__type(sym
) == STT_GNU_IFUNC
) &&
99 sym
->st_shndx
!= SHN_UNDEF
;
102 static inline bool elf_sym__is_object(const GElf_Sym
*sym
)
104 return elf_sym__type(sym
) == STT_OBJECT
&&
106 sym
->st_shndx
!= SHN_UNDEF
;
109 static inline int elf_sym__is_label(const GElf_Sym
*sym
)
111 return elf_sym__type(sym
) == STT_NOTYPE
&&
113 sym
->st_shndx
!= SHN_UNDEF
&&
114 sym
->st_shndx
!= SHN_ABS
;
117 static bool elf_sym__is_a(GElf_Sym
*sym
, enum map_type type
)
121 return elf_sym__is_function(sym
);
123 return elf_sym__is_object(sym
);
129 static inline const char *elf_sym__name(const GElf_Sym
*sym
,
130 const Elf_Data
*symstrs
)
132 return symstrs
->d_buf
+ sym
->st_name
;
135 static inline const char *elf_sec__name(const GElf_Shdr
*shdr
,
136 const Elf_Data
*secstrs
)
138 return secstrs
->d_buf
+ shdr
->sh_name
;
141 static inline int elf_sec__is_text(const GElf_Shdr
*shdr
,
142 const Elf_Data
*secstrs
)
144 return strstr(elf_sec__name(shdr
, secstrs
), "text") != NULL
;
147 static inline bool elf_sec__is_data(const GElf_Shdr
*shdr
,
148 const Elf_Data
*secstrs
)
150 return strstr(elf_sec__name(shdr
, secstrs
), "data") != NULL
;
153 static bool elf_sec__is_a(GElf_Shdr
*shdr
, Elf_Data
*secstrs
,
158 return elf_sec__is_text(shdr
, secstrs
);
160 return elf_sec__is_data(shdr
, secstrs
);
166 static size_t elf_addr_to_index(Elf
*elf
, GElf_Addr addr
)
172 while ((sec
= elf_nextscn(elf
, sec
)) != NULL
) {
173 gelf_getshdr(sec
, &shdr
);
175 if ((addr
>= shdr
.sh_addr
) &&
176 (addr
< (shdr
.sh_addr
+ shdr
.sh_size
)))
185 Elf_Scn
*elf_section_by_name(Elf
*elf
, GElf_Ehdr
*ep
,
186 GElf_Shdr
*shp
, const char *name
, size_t *idx
)
191 /* Elf is corrupted/truncated, avoid calling elf_strptr. */
192 if (!elf_rawdata(elf_getscn(elf
, ep
->e_shstrndx
), NULL
))
195 while ((sec
= elf_nextscn(elf
, sec
)) != NULL
) {
198 gelf_getshdr(sec
, shp
);
199 str
= elf_strptr(elf
, ep
->e_shstrndx
, shp
->sh_name
);
200 if (str
&& !strcmp(name
, str
)) {
211 static bool want_demangle(bool is_kernel_sym
)
213 return is_kernel_sym
? symbol_conf
.demangle_kernel
: symbol_conf
.demangle
;
216 static char *demangle_sym(struct dso
*dso
, int kmodule
, const char *elf_name
)
218 int demangle_flags
= verbose
> 0 ? (DMGL_PARAMS
| DMGL_ANSI
) : DMGL_NO_OPTS
;
219 char *demangled
= NULL
;
222 * We need to figure out if the object was created from C++ sources
223 * DWARF DW_compile_unit has this, but we don't always have access
226 if (!want_demangle(dso
->kernel
|| kmodule
))
229 demangled
= bfd_demangle(NULL
, elf_name
, demangle_flags
);
230 if (demangled
== NULL
)
231 demangled
= java_demangle_sym(elf_name
, JAVA_DEMANGLE_NORET
);
232 else if (rust_is_mangled(demangled
))
234 * Input to Rust demangling is the BFD-demangled
235 * name which it Rust-demangles in place.
237 rust_demangle_sym(demangled
);
242 #define elf_section__for_each_rel(reldata, pos, pos_mem, idx, nr_entries) \
243 for (idx = 0, pos = gelf_getrel(reldata, 0, &pos_mem); \
245 ++idx, pos = gelf_getrel(reldata, idx, &pos_mem))
247 #define elf_section__for_each_rela(reldata, pos, pos_mem, idx, nr_entries) \
248 for (idx = 0, pos = gelf_getrela(reldata, 0, &pos_mem); \
250 ++idx, pos = gelf_getrela(reldata, idx, &pos_mem))
253 * We need to check if we have a .dynsym, so that we can handle the
254 * .plt, synthesizing its symbols, that aren't on the symtabs (be it
255 * .dynsym or .symtab).
256 * And always look at the original dso, not at debuginfo packages, that
257 * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
259 int dso__synthesize_plt_symbols(struct dso
*dso
, struct symsrc
*ss
, struct map
*map
)
261 uint32_t nr_rel_entries
, idx
;
263 u64 plt_offset
, plt_header_size
, plt_entry_size
;
266 GElf_Shdr shdr_rel_plt
, shdr_dynsym
;
267 Elf_Data
*reldata
, *syms
, *symstrs
;
268 Elf_Scn
*scn_plt_rel
, *scn_symstrs
, *scn_dynsym
;
271 char sympltname
[1024];
273 int nr
= 0, symidx
, err
= 0;
281 scn_dynsym
= ss
->dynsym
;
282 shdr_dynsym
= ss
->dynshdr
;
283 dynsym_idx
= ss
->dynsym_idx
;
285 if (scn_dynsym
== NULL
)
288 scn_plt_rel
= elf_section_by_name(elf
, &ehdr
, &shdr_rel_plt
,
290 if (scn_plt_rel
== NULL
) {
291 scn_plt_rel
= elf_section_by_name(elf
, &ehdr
, &shdr_rel_plt
,
293 if (scn_plt_rel
== NULL
)
299 if (shdr_rel_plt
.sh_link
!= dynsym_idx
)
302 if (elf_section_by_name(elf
, &ehdr
, &shdr_plt
, ".plt", NULL
) == NULL
)
306 * Fetch the relocation section to find the idxes to the GOT
307 * and the symbols in the .dynsym they refer to.
309 reldata
= elf_getdata(scn_plt_rel
, NULL
);
313 syms
= elf_getdata(scn_dynsym
, NULL
);
317 scn_symstrs
= elf_getscn(elf
, shdr_dynsym
.sh_link
);
318 if (scn_symstrs
== NULL
)
321 symstrs
= elf_getdata(scn_symstrs
, NULL
);
325 if (symstrs
->d_size
== 0)
328 nr_rel_entries
= shdr_rel_plt
.sh_size
/ shdr_rel_plt
.sh_entsize
;
329 plt_offset
= shdr_plt
.sh_offset
;
330 switch (ehdr
.e_machine
) {
332 plt_header_size
= 20;
337 plt_header_size
= 32;
341 default: /* FIXME: s390/alpha/mips/parisc/poperpc/sh/sparc/xtensa need to be checked */
342 plt_header_size
= shdr_plt
.sh_entsize
;
343 plt_entry_size
= shdr_plt
.sh_entsize
;
346 plt_offset
+= plt_header_size
;
348 if (shdr_rel_plt
.sh_type
== SHT_RELA
) {
349 GElf_Rela pos_mem
, *pos
;
351 elf_section__for_each_rela(reldata
, pos
, pos_mem
, idx
,
353 const char *elf_name
= NULL
;
354 char *demangled
= NULL
;
355 symidx
= GELF_R_SYM(pos
->r_info
);
356 gelf_getsym(syms
, symidx
, &sym
);
358 elf_name
= elf_sym__name(&sym
, symstrs
);
359 demangled
= demangle_sym(dso
, 0, elf_name
);
360 if (demangled
!= NULL
)
361 elf_name
= demangled
;
362 snprintf(sympltname
, sizeof(sympltname
),
366 f
= symbol__new(plt_offset
, plt_entry_size
,
367 STB_GLOBAL
, sympltname
);
371 plt_offset
+= plt_entry_size
;
372 symbols__insert(&dso
->symbols
[map
->type
], f
);
375 } else if (shdr_rel_plt
.sh_type
== SHT_REL
) {
376 GElf_Rel pos_mem
, *pos
;
377 elf_section__for_each_rel(reldata
, pos
, pos_mem
, idx
,
379 const char *elf_name
= NULL
;
380 char *demangled
= NULL
;
381 symidx
= GELF_R_SYM(pos
->r_info
);
382 gelf_getsym(syms
, symidx
, &sym
);
384 elf_name
= elf_sym__name(&sym
, symstrs
);
385 demangled
= demangle_sym(dso
, 0, elf_name
);
386 if (demangled
!= NULL
)
387 elf_name
= demangled
;
388 snprintf(sympltname
, sizeof(sympltname
),
392 f
= symbol__new(plt_offset
, plt_entry_size
,
393 STB_GLOBAL
, sympltname
);
397 plt_offset
+= plt_entry_size
;
398 symbols__insert(&dso
->symbols
[map
->type
], f
);
407 pr_debug("%s: problems reading %s PLT info.\n",
408 __func__
, dso
->long_name
);
412 char *dso__demangle_sym(struct dso
*dso
, int kmodule
, const char *elf_name
)
414 return demangle_sym(dso
, kmodule
, elf_name
);
418 * Align offset to 4 bytes as needed for note name and descriptor data.
420 #define NOTE_ALIGN(n) (((n) + 3) & -4U)
422 static int elf_read_build_id(Elf
*elf
, void *bf
, size_t size
)
432 if (size
< BUILD_ID_SIZE
)
439 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
440 pr_err("%s: cannot get elf header.\n", __func__
);
445 * Check following sections for notes:
446 * '.note.gnu.build-id'
448 * '.note' (VDSO specific)
451 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
452 ".note.gnu.build-id", NULL
);
456 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
461 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
470 data
= elf_getdata(sec
, NULL
);
475 while (ptr
< (data
->d_buf
+ data
->d_size
)) {
476 GElf_Nhdr
*nhdr
= ptr
;
477 size_t namesz
= NOTE_ALIGN(nhdr
->n_namesz
),
478 descsz
= NOTE_ALIGN(nhdr
->n_descsz
);
481 ptr
+= sizeof(*nhdr
);
484 if (nhdr
->n_type
== NT_GNU_BUILD_ID
&&
485 nhdr
->n_namesz
== sizeof("GNU")) {
486 if (memcmp(name
, "GNU", sizeof("GNU")) == 0) {
487 size_t sz
= min(size
, descsz
);
489 memset(bf
+ sz
, 0, size
- sz
);
501 int filename__read_build_id(const char *filename
, void *bf
, size_t size
)
506 if (size
< BUILD_ID_SIZE
)
509 fd
= open(filename
, O_RDONLY
);
513 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
515 pr_debug2("%s: cannot read %s ELF file.\n", __func__
, filename
);
519 err
= elf_read_build_id(elf
, bf
, size
);
528 int sysfs__read_build_id(const char *filename
, void *build_id
, size_t size
)
532 if (size
< BUILD_ID_SIZE
)
535 fd
= open(filename
, O_RDONLY
);
542 size_t namesz
, descsz
;
544 if (read(fd
, &nhdr
, sizeof(nhdr
)) != sizeof(nhdr
))
547 namesz
= NOTE_ALIGN(nhdr
.n_namesz
);
548 descsz
= NOTE_ALIGN(nhdr
.n_descsz
);
549 if (nhdr
.n_type
== NT_GNU_BUILD_ID
&&
550 nhdr
.n_namesz
== sizeof("GNU")) {
551 if (read(fd
, bf
, namesz
) != (ssize_t
)namesz
)
553 if (memcmp(bf
, "GNU", sizeof("GNU")) == 0) {
554 size_t sz
= min(descsz
, size
);
555 if (read(fd
, build_id
, sz
) == (ssize_t
)sz
) {
556 memset(build_id
+ sz
, 0, size
- sz
);
560 } else if (read(fd
, bf
, descsz
) != (ssize_t
)descsz
)
563 int n
= namesz
+ descsz
;
565 if (n
> (int)sizeof(bf
)) {
567 pr_debug("%s: truncating reading of build id in sysfs file %s: n_namesz=%u, n_descsz=%u.\n",
568 __func__
, filename
, nhdr
.n_namesz
, nhdr
.n_descsz
);
570 if (read(fd
, bf
, n
) != n
)
579 int filename__read_debuglink(const char *filename
, char *debuglink
,
590 fd
= open(filename
, O_RDONLY
);
594 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
596 pr_debug2("%s: cannot read %s ELF file.\n", __func__
, filename
);
604 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
605 pr_err("%s: cannot get elf header.\n", __func__
);
609 sec
= elf_section_by_name(elf
, &ehdr
, &shdr
,
610 ".gnu_debuglink", NULL
);
614 data
= elf_getdata(sec
, NULL
);
618 /* the start of this section is a zero-terminated string */
619 strncpy(debuglink
, data
->d_buf
, size
);
631 static int dso__swap_init(struct dso
*dso
, unsigned char eidata
)
633 static unsigned int const endian
= 1;
635 dso
->needs_swap
= DSO_SWAP__NO
;
639 /* We are big endian, DSO is little endian. */
640 if (*(unsigned char const *)&endian
!= 1)
641 dso
->needs_swap
= DSO_SWAP__YES
;
645 /* We are little endian, DSO is big endian. */
646 if (*(unsigned char const *)&endian
!= 0)
647 dso
->needs_swap
= DSO_SWAP__YES
;
651 pr_err("unrecognized DSO data encoding %d\n", eidata
);
658 bool symsrc__possibly_runtime(struct symsrc
*ss
)
660 return ss
->dynsym
|| ss
->opdsec
;
663 bool symsrc__has_symtab(struct symsrc
*ss
)
665 return ss
->symtab
!= NULL
;
668 void symsrc__destroy(struct symsrc
*ss
)
675 bool __weak
elf__needs_adjust_symbols(GElf_Ehdr ehdr
)
677 return ehdr
.e_type
== ET_EXEC
|| ehdr
.e_type
== ET_REL
;
680 int symsrc__init(struct symsrc
*ss
, struct dso
*dso
, const char *name
,
681 enum dso_binary_type type
)
688 if (dso__needs_decompress(dso
)) {
689 fd
= dso__decompress_kmodule_fd(dso
, name
);
693 type
= dso
->symtab_type
;
695 fd
= open(name
, O_RDONLY
);
697 dso
->load_errno
= errno
;
702 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
704 pr_debug("%s: cannot read %s ELF file.\n", __func__
, name
);
705 dso
->load_errno
= DSO_LOAD_ERRNO__INVALID_ELF
;
709 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
710 dso
->load_errno
= DSO_LOAD_ERRNO__INVALID_ELF
;
711 pr_debug("%s: cannot get elf header.\n", __func__
);
715 if (dso__swap_init(dso
, ehdr
.e_ident
[EI_DATA
])) {
716 dso
->load_errno
= DSO_LOAD_ERRNO__INTERNAL_ERROR
;
720 /* Always reject images with a mismatched build-id: */
721 if (dso
->has_build_id
&& !symbol_conf
.ignore_vmlinux_buildid
) {
722 u8 build_id
[BUILD_ID_SIZE
];
724 if (elf_read_build_id(elf
, build_id
, BUILD_ID_SIZE
) < 0) {
725 dso
->load_errno
= DSO_LOAD_ERRNO__CANNOT_READ_BUILDID
;
729 if (!dso__build_id_equal(dso
, build_id
)) {
730 pr_debug("%s: build id mismatch for %s.\n", __func__
, name
);
731 dso
->load_errno
= DSO_LOAD_ERRNO__MISMATCHING_BUILDID
;
736 ss
->is_64_bit
= (gelf_getclass(elf
) == ELFCLASS64
);
738 ss
->symtab
= elf_section_by_name(elf
, &ehdr
, &ss
->symshdr
, ".symtab",
740 if (ss
->symshdr
.sh_type
!= SHT_SYMTAB
)
744 ss
->dynsym
= elf_section_by_name(elf
, &ehdr
, &ss
->dynshdr
, ".dynsym",
746 if (ss
->dynshdr
.sh_type
!= SHT_DYNSYM
)
750 ss
->opdsec
= elf_section_by_name(elf
, &ehdr
, &ss
->opdshdr
, ".opd",
752 if (ss
->opdshdr
.sh_type
!= SHT_PROGBITS
)
755 if (dso
->kernel
== DSO_TYPE_USER
)
756 ss
->adjust_symbols
= true;
758 ss
->adjust_symbols
= elf__needs_adjust_symbols(ehdr
);
760 ss
->name
= strdup(name
);
762 dso
->load_errno
= errno
;
781 * ref_reloc_sym_not_found - has kernel relocation symbol been found.
782 * @kmap: kernel maps and relocation reference symbol
784 * This function returns %true if we are dealing with the kernel maps and the
785 * relocation reference symbol has not yet been found. Otherwise %false is
788 static bool ref_reloc_sym_not_found(struct kmap
*kmap
)
790 return kmap
&& kmap
->ref_reloc_sym
&& kmap
->ref_reloc_sym
->name
&&
791 !kmap
->ref_reloc_sym
->unrelocated_addr
;
795 * ref_reloc - kernel relocation offset.
796 * @kmap: kernel maps and relocation reference symbol
798 * This function returns the offset of kernel addresses as determined by using
799 * the relocation reference symbol i.e. if the kernel has not been relocated
800 * then the return value is zero.
802 static u64
ref_reloc(struct kmap
*kmap
)
804 if (kmap
&& kmap
->ref_reloc_sym
&&
805 kmap
->ref_reloc_sym
->unrelocated_addr
)
806 return kmap
->ref_reloc_sym
->addr
-
807 kmap
->ref_reloc_sym
->unrelocated_addr
;
811 void __weak
arch__sym_update(struct symbol
*s __maybe_unused
,
812 GElf_Sym
*sym __maybe_unused
) { }
814 int dso__load_sym(struct dso
*dso
, struct map
*map
, struct symsrc
*syms_ss
,
815 struct symsrc
*runtime_ss
, int kmodule
)
817 struct kmap
*kmap
= dso
->kernel
? map__kmap(map
) : NULL
;
818 struct map_groups
*kmaps
= kmap
? map__kmaps(map
) : NULL
;
819 struct map
*curr_map
= map
;
820 struct dso
*curr_dso
= dso
;
821 Elf_Data
*symstrs
, *secstrs
;
828 Elf_Data
*syms
, *opddata
= NULL
;
830 Elf_Scn
*sec
, *sec_strndx
;
833 bool remap_kernel
= false, adjust_kernel_syms
= false;
838 dso
->symtab_type
= syms_ss
->type
;
839 dso
->is_64_bit
= syms_ss
->is_64_bit
;
840 dso
->rel
= syms_ss
->ehdr
.e_type
== ET_REL
;
843 * Modules may already have symbols from kallsyms, but those symbols
844 * have the wrong values for the dso maps, so remove them.
846 if (kmodule
&& syms_ss
->symtab
)
847 symbols__delete(&dso
->symbols
[map
->type
]);
849 if (!syms_ss
->symtab
) {
851 * If the vmlinux is stripped, fail so we will fall back
852 * to using kallsyms. The vmlinux runtime symbols aren't
858 syms_ss
->symtab
= syms_ss
->dynsym
;
859 syms_ss
->symshdr
= syms_ss
->dynshdr
;
863 ehdr
= syms_ss
->ehdr
;
864 sec
= syms_ss
->symtab
;
865 shdr
= syms_ss
->symshdr
;
867 if (elf_section_by_name(runtime_ss
->elf
, &runtime_ss
->ehdr
, &tshdr
,
869 dso
->text_offset
= tshdr
.sh_addr
- tshdr
.sh_offset
;
871 if (runtime_ss
->opdsec
)
872 opddata
= elf_rawdata(runtime_ss
->opdsec
, NULL
);
874 syms
= elf_getdata(sec
, NULL
);
878 sec
= elf_getscn(elf
, shdr
.sh_link
);
882 symstrs
= elf_getdata(sec
, NULL
);
886 sec_strndx
= elf_getscn(runtime_ss
->elf
, runtime_ss
->ehdr
.e_shstrndx
);
887 if (sec_strndx
== NULL
)
890 secstrs
= elf_getdata(sec_strndx
, NULL
);
894 nr_syms
= shdr
.sh_size
/ shdr
.sh_entsize
;
896 memset(&sym
, 0, sizeof(sym
));
899 * The kernel relocation symbol is needed in advance in order to adjust
900 * kernel maps correctly.
902 if (ref_reloc_sym_not_found(kmap
)) {
903 elf_symtab__for_each_symbol(syms
, nr_syms
, idx
, sym
) {
904 const char *elf_name
= elf_sym__name(&sym
, symstrs
);
906 if (strcmp(elf_name
, kmap
->ref_reloc_sym
->name
))
908 kmap
->ref_reloc_sym
->unrelocated_addr
= sym
.st_value
;
909 map
->reloc
= kmap
->ref_reloc_sym
->addr
-
910 kmap
->ref_reloc_sym
->unrelocated_addr
;
916 * Handle any relocation of vdso necessary because older kernels
917 * attempted to prelink vdso to its virtual address.
919 if (dso__is_vdso(dso
))
920 map
->reloc
= map
->start
- dso
->text_offset
;
922 dso
->adjust_symbols
= runtime_ss
->adjust_symbols
|| ref_reloc(kmap
);
924 * Initial kernel and module mappings do not map to the dso. For
925 * function mappings, flag the fixups.
927 if (map
->type
== MAP__FUNCTION
&& (dso
->kernel
|| kmodule
)) {
929 adjust_kernel_syms
= dso
->adjust_symbols
;
931 elf_symtab__for_each_symbol(syms
, nr_syms
, idx
, sym
) {
933 const char *elf_name
= elf_sym__name(&sym
, symstrs
);
934 char *demangled
= NULL
;
935 int is_label
= elf_sym__is_label(&sym
);
936 const char *section_name
;
937 bool used_opd
= false;
939 if (!is_label
&& !elf_sym__is_a(&sym
, map
->type
))
942 /* Reject ARM ELF "mapping symbols": these aren't unique and
943 * don't identify functions, so will confuse the profile
945 if (ehdr
.e_machine
== EM_ARM
|| ehdr
.e_machine
== EM_AARCH64
) {
946 if (elf_name
[0] == '$' && strchr("adtx", elf_name
[1])
947 && (elf_name
[2] == '\0' || elf_name
[2] == '.'))
951 if (runtime_ss
->opdsec
&& sym
.st_shndx
== runtime_ss
->opdidx
) {
952 u32 offset
= sym
.st_value
- syms_ss
->opdshdr
.sh_addr
;
953 u64
*opd
= opddata
->d_buf
+ offset
;
954 sym
.st_value
= DSO__SWAP(dso
, u64
, *opd
);
955 sym
.st_shndx
= elf_addr_to_index(runtime_ss
->elf
,
960 * When loading symbols in a data mapping, ABS symbols (which
961 * has a value of SHN_ABS in its st_shndx) failed at
962 * elf_getscn(). And it marks the loading as a failure so
963 * already loaded symbols cannot be fixed up.
965 * I'm not sure what should be done. Just ignore them for now.
968 if (sym
.st_shndx
== SHN_ABS
)
971 sec
= elf_getscn(runtime_ss
->elf
, sym
.st_shndx
);
975 gelf_getshdr(sec
, &shdr
);
977 if (is_label
&& !elf_sec__is_a(&shdr
, secstrs
, map
->type
))
980 section_name
= elf_sec__name(&shdr
, secstrs
);
982 /* On ARM, symbols for thumb functions have 1 added to
983 * the symbol address as a flag - remove it */
984 if ((ehdr
.e_machine
== EM_ARM
) &&
985 (map
->type
== MAP__FUNCTION
) &&
989 if (dso
->kernel
|| kmodule
) {
990 char dso_name
[PATH_MAX
];
992 /* Adjust symbol to map to file offset */
993 if (adjust_kernel_syms
)
994 sym
.st_value
-= shdr
.sh_addr
- shdr
.sh_offset
;
996 if (strcmp(section_name
,
997 (curr_dso
->short_name
+
998 dso
->short_name_len
)) == 0)
1001 if (strcmp(section_name
, ".text") == 0) {
1003 * The initial kernel mapping is based on
1004 * kallsyms and identity maps. Overwrite it to
1005 * map to the kernel dso.
1007 if (remap_kernel
&& dso
->kernel
) {
1008 remap_kernel
= false;
1009 map
->start
= shdr
.sh_addr
+
1011 map
->end
= map
->start
+ shdr
.sh_size
;
1012 map
->pgoff
= shdr
.sh_offset
;
1013 map
->map_ip
= map__map_ip
;
1014 map
->unmap_ip
= map__unmap_ip
;
1015 /* Ensure maps are correctly ordered */
1018 map_groups__remove(kmaps
, map
);
1019 map_groups__insert(kmaps
, map
);
1025 * The initial module mapping is based on
1026 * /proc/modules mapped to offset zero.
1027 * Overwrite it to map to the module dso.
1029 if (remap_kernel
&& kmodule
) {
1030 remap_kernel
= false;
1031 map
->pgoff
= shdr
.sh_offset
;
1042 snprintf(dso_name
, sizeof(dso_name
),
1043 "%s%s", dso
->short_name
, section_name
);
1045 curr_map
= map_groups__find_by_name(kmaps
, map
->type
, dso_name
);
1046 if (curr_map
== NULL
) {
1047 u64 start
= sym
.st_value
;
1050 start
+= map
->start
+ shdr
.sh_offset
;
1052 curr_dso
= dso__new(dso_name
);
1053 if (curr_dso
== NULL
)
1055 curr_dso
->kernel
= dso
->kernel
;
1056 curr_dso
->long_name
= dso
->long_name
;
1057 curr_dso
->long_name_len
= dso
->long_name_len
;
1058 curr_map
= map__new2(start
, curr_dso
,
1061 if (curr_map
== NULL
) {
1064 if (adjust_kernel_syms
) {
1065 curr_map
->start
= shdr
.sh_addr
+
1067 curr_map
->end
= curr_map
->start
+
1069 curr_map
->pgoff
= shdr
.sh_offset
;
1071 curr_map
->map_ip
= identity__map_ip
;
1072 curr_map
->unmap_ip
= identity__map_ip
;
1074 curr_dso
->symtab_type
= dso
->symtab_type
;
1075 map_groups__insert(kmaps
, curr_map
);
1077 * Add it before we drop the referece to curr_map,
1078 * i.e. while we still are sure to have a reference
1079 * to this DSO via curr_map->dso.
1081 dsos__add(&map
->groups
->machine
->dsos
, curr_dso
);
1082 /* kmaps already got it */
1084 dso__set_loaded(curr_dso
, map
->type
);
1086 curr_dso
= curr_map
->dso
;
1091 if ((used_opd
&& runtime_ss
->adjust_symbols
)
1092 || (!used_opd
&& syms_ss
->adjust_symbols
)) {
1093 pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64
" "
1094 "sh_addr: %#" PRIx64
" sh_offset: %#" PRIx64
"\n", __func__
,
1095 (u64
)sym
.st_value
, (u64
)shdr
.sh_addr
,
1096 (u64
)shdr
.sh_offset
);
1097 sym
.st_value
-= shdr
.sh_addr
- shdr
.sh_offset
;
1100 demangled
= demangle_sym(dso
, kmodule
, elf_name
);
1101 if (demangled
!= NULL
)
1102 elf_name
= demangled
;
1104 f
= symbol__new(sym
.st_value
, sym
.st_size
,
1105 GELF_ST_BIND(sym
.st_info
), elf_name
);
1110 arch__sym_update(f
, &sym
);
1112 __symbols__insert(&curr_dso
->symbols
[curr_map
->type
], f
, dso
->kernel
);
1117 * For misannotated, zeroed, ASM function sizes.
1120 symbols__fixup_end(&dso
->symbols
[map
->type
]);
1121 symbols__fixup_duplicate(&dso
->symbols
[map
->type
]);
1124 * We need to fixup this here too because we create new
1125 * maps here, for things like vsyscall sections.
1127 __map_groups__fixup_end(kmaps
, map
->type
);
1135 static int elf_read_maps(Elf
*elf
, bool exe
, mapfn_t mapfn
, void *data
)
1142 if (elf_getphdrnum(elf
, &phdrnum
))
1145 for (i
= 0; i
< phdrnum
; i
++) {
1146 if (gelf_getphdr(elf
, i
, &phdr
) == NULL
)
1148 if (phdr
.p_type
!= PT_LOAD
)
1151 if (!(phdr
.p_flags
& PF_X
))
1154 if (!(phdr
.p_flags
& PF_R
))
1157 sz
= min(phdr
.p_memsz
, phdr
.p_filesz
);
1160 err
= mapfn(phdr
.p_vaddr
, sz
, phdr
.p_offset
, data
);
1167 int file__read_maps(int fd
, bool exe
, mapfn_t mapfn
, void *data
,
1173 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
1178 *is_64_bit
= (gelf_getclass(elf
) == ELFCLASS64
);
1180 err
= elf_read_maps(elf
, exe
, mapfn
, data
);
1186 enum dso_type
dso__type_fd(int fd
)
1188 enum dso_type dso_type
= DSO__TYPE_UNKNOWN
;
1193 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
1198 if (ek
!= ELF_K_ELF
)
1201 if (gelf_getclass(elf
) == ELFCLASS64
) {
1202 dso_type
= DSO__TYPE_64BIT
;
1206 if (gelf_getehdr(elf
, &ehdr
) == NULL
)
1209 if (ehdr
.e_machine
== EM_X86_64
)
1210 dso_type
= DSO__TYPE_X32BIT
;
1212 dso_type
= DSO__TYPE_32BIT
;
1219 static int copy_bytes(int from
, off_t from_offs
, int to
, off_t to_offs
, u64 len
)
1224 char *buf
= malloc(page_size
);
1229 if (lseek(to
, to_offs
, SEEK_SET
) != to_offs
)
1232 if (lseek(from
, from_offs
, SEEK_SET
) != from_offs
)
1239 /* Use read because mmap won't work on proc files */
1240 r
= read(from
, buf
, n
);
1246 r
= write(to
, buf
, n
);
1267 static int kcore__open(struct kcore
*kcore
, const char *filename
)
1271 kcore
->fd
= open(filename
, O_RDONLY
);
1272 if (kcore
->fd
== -1)
1275 kcore
->elf
= elf_begin(kcore
->fd
, ELF_C_READ
, NULL
);
1279 kcore
->elfclass
= gelf_getclass(kcore
->elf
);
1280 if (kcore
->elfclass
== ELFCLASSNONE
)
1283 ehdr
= gelf_getehdr(kcore
->elf
, &kcore
->ehdr
);
1290 elf_end(kcore
->elf
);
1296 static int kcore__init(struct kcore
*kcore
, char *filename
, int elfclass
,
1299 kcore
->elfclass
= elfclass
;
1302 kcore
->fd
= mkstemp(filename
);
1304 kcore
->fd
= open(filename
, O_WRONLY
| O_CREAT
| O_EXCL
, 0400);
1305 if (kcore
->fd
== -1)
1308 kcore
->elf
= elf_begin(kcore
->fd
, ELF_C_WRITE
, NULL
);
1312 if (!gelf_newehdr(kcore
->elf
, elfclass
))
1315 memset(&kcore
->ehdr
, 0, sizeof(GElf_Ehdr
));
1320 elf_end(kcore
->elf
);
1327 static void kcore__close(struct kcore
*kcore
)
1329 elf_end(kcore
->elf
);
1333 static int kcore__copy_hdr(struct kcore
*from
, struct kcore
*to
, size_t count
)
1335 GElf_Ehdr
*ehdr
= &to
->ehdr
;
1336 GElf_Ehdr
*kehdr
= &from
->ehdr
;
1338 memcpy(ehdr
->e_ident
, kehdr
->e_ident
, EI_NIDENT
);
1339 ehdr
->e_type
= kehdr
->e_type
;
1340 ehdr
->e_machine
= kehdr
->e_machine
;
1341 ehdr
->e_version
= kehdr
->e_version
;
1344 ehdr
->e_flags
= kehdr
->e_flags
;
1345 ehdr
->e_phnum
= count
;
1346 ehdr
->e_shentsize
= 0;
1348 ehdr
->e_shstrndx
= 0;
1350 if (from
->elfclass
== ELFCLASS32
) {
1351 ehdr
->e_phoff
= sizeof(Elf32_Ehdr
);
1352 ehdr
->e_ehsize
= sizeof(Elf32_Ehdr
);
1353 ehdr
->e_phentsize
= sizeof(Elf32_Phdr
);
1355 ehdr
->e_phoff
= sizeof(Elf64_Ehdr
);
1356 ehdr
->e_ehsize
= sizeof(Elf64_Ehdr
);
1357 ehdr
->e_phentsize
= sizeof(Elf64_Phdr
);
1360 if (!gelf_update_ehdr(to
->elf
, ehdr
))
1363 if (!gelf_newphdr(to
->elf
, count
))
1369 static int kcore__add_phdr(struct kcore
*kcore
, int idx
, off_t offset
,
1374 .p_flags
= PF_R
| PF_W
| PF_X
,
1380 .p_align
= page_size
,
1383 if (!gelf_update_phdr(kcore
->elf
, idx
, &phdr
))
1389 static off_t
kcore__write(struct kcore
*kcore
)
1391 return elf_update(kcore
->elf
, ELF_C_WRITE
);
1400 struct kcore_copy_info
{
1406 u64 last_module_symbol
;
1407 struct phdr_data kernel_map
;
1408 struct phdr_data modules_map
;
1411 static int kcore_copy__process_kallsyms(void *arg
, const char *name
, char type
,
1414 struct kcore_copy_info
*kci
= arg
;
1416 if (!symbol_type__is_a(type
, MAP__FUNCTION
))
1419 if (strchr(name
, '[')) {
1420 if (start
> kci
->last_module_symbol
)
1421 kci
->last_module_symbol
= start
;
1425 if (!kci
->first_symbol
|| start
< kci
->first_symbol
)
1426 kci
->first_symbol
= start
;
1428 if (!kci
->last_symbol
|| start
> kci
->last_symbol
)
1429 kci
->last_symbol
= start
;
1431 if (!strcmp(name
, "_stext")) {
1436 if (!strcmp(name
, "_etext")) {
1444 static int kcore_copy__parse_kallsyms(struct kcore_copy_info
*kci
,
1447 char kallsyms_filename
[PATH_MAX
];
1449 scnprintf(kallsyms_filename
, PATH_MAX
, "%s/kallsyms", dir
);
1451 if (symbol__restricted_filename(kallsyms_filename
, "/proc/kallsyms"))
1454 if (kallsyms__parse(kallsyms_filename
, kci
,
1455 kcore_copy__process_kallsyms
) < 0)
1461 static int kcore_copy__process_modules(void *arg
,
1462 const char *name __maybe_unused
,
1463 u64 start
, u64 size __maybe_unused
)
1465 struct kcore_copy_info
*kci
= arg
;
1467 if (!kci
->first_module
|| start
< kci
->first_module
)
1468 kci
->first_module
= start
;
1473 static int kcore_copy__parse_modules(struct kcore_copy_info
*kci
,
1476 char modules_filename
[PATH_MAX
];
1478 scnprintf(modules_filename
, PATH_MAX
, "%s/modules", dir
);
1480 if (symbol__restricted_filename(modules_filename
, "/proc/modules"))
1483 if (modules__parse(modules_filename
, kci
,
1484 kcore_copy__process_modules
) < 0)
1490 static void kcore_copy__map(struct phdr_data
*p
, u64 start
, u64 end
, u64 pgoff
,
1493 if (p
->addr
|| s
< start
|| s
>= end
)
1497 p
->offset
= (s
- start
) + pgoff
;
1498 p
->len
= e
< end
? e
- s
: end
- s
;
1501 static int kcore_copy__read_map(u64 start
, u64 len
, u64 pgoff
, void *data
)
1503 struct kcore_copy_info
*kci
= data
;
1504 u64 end
= start
+ len
;
1506 kcore_copy__map(&kci
->kernel_map
, start
, end
, pgoff
, kci
->stext
,
1509 kcore_copy__map(&kci
->modules_map
, start
, end
, pgoff
, kci
->first_module
,
1510 kci
->last_module_symbol
);
1515 static int kcore_copy__read_maps(struct kcore_copy_info
*kci
, Elf
*elf
)
1517 if (elf_read_maps(elf
, true, kcore_copy__read_map
, kci
) < 0)
1523 static int kcore_copy__calc_maps(struct kcore_copy_info
*kci
, const char *dir
,
1526 if (kcore_copy__parse_kallsyms(kci
, dir
))
1529 if (kcore_copy__parse_modules(kci
, dir
))
1533 kci
->stext
= round_down(kci
->stext
, page_size
);
1535 kci
->stext
= round_down(kci
->first_symbol
, page_size
);
1538 kci
->etext
= round_up(kci
->etext
, page_size
);
1539 } else if (kci
->last_symbol
) {
1540 kci
->etext
= round_up(kci
->last_symbol
, page_size
);
1541 kci
->etext
+= page_size
;
1544 kci
->first_module
= round_down(kci
->first_module
, page_size
);
1546 if (kci
->last_module_symbol
) {
1547 kci
->last_module_symbol
= round_up(kci
->last_module_symbol
,
1549 kci
->last_module_symbol
+= page_size
;
1552 if (!kci
->stext
|| !kci
->etext
)
1555 if (kci
->first_module
&& !kci
->last_module_symbol
)
1558 return kcore_copy__read_maps(kci
, elf
);
1561 static int kcore_copy__copy_file(const char *from_dir
, const char *to_dir
,
1564 char from_filename
[PATH_MAX
];
1565 char to_filename
[PATH_MAX
];
1567 scnprintf(from_filename
, PATH_MAX
, "%s/%s", from_dir
, name
);
1568 scnprintf(to_filename
, PATH_MAX
, "%s/%s", to_dir
, name
);
1570 return copyfile_mode(from_filename
, to_filename
, 0400);
1573 static int kcore_copy__unlink(const char *dir
, const char *name
)
1575 char filename
[PATH_MAX
];
1577 scnprintf(filename
, PATH_MAX
, "%s/%s", dir
, name
);
1579 return unlink(filename
);
1582 static int kcore_copy__compare_fds(int from
, int to
)
1590 buf_from
= malloc(page_size
);
1591 buf_to
= malloc(page_size
);
1592 if (!buf_from
|| !buf_to
)
1596 /* Use read because mmap won't work on proc files */
1597 ret
= read(from
, buf_from
, page_size
);
1606 if (readn(to
, buf_to
, len
) != (int)len
)
1609 if (memcmp(buf_from
, buf_to
, len
))
1620 static int kcore_copy__compare_files(const char *from_filename
,
1621 const char *to_filename
)
1623 int from
, to
, err
= -1;
1625 from
= open(from_filename
, O_RDONLY
);
1629 to
= open(to_filename
, O_RDONLY
);
1631 goto out_close_from
;
1633 err
= kcore_copy__compare_fds(from
, to
);
1641 static int kcore_copy__compare_file(const char *from_dir
, const char *to_dir
,
1644 char from_filename
[PATH_MAX
];
1645 char to_filename
[PATH_MAX
];
1647 scnprintf(from_filename
, PATH_MAX
, "%s/%s", from_dir
, name
);
1648 scnprintf(to_filename
, PATH_MAX
, "%s/%s", to_dir
, name
);
1650 return kcore_copy__compare_files(from_filename
, to_filename
);
1654 * kcore_copy - copy kallsyms, modules and kcore from one directory to another.
1655 * @from_dir: from directory
1656 * @to_dir: to directory
1658 * This function copies kallsyms, modules and kcore files from one directory to
1659 * another. kallsyms and modules are copied entirely. Only code segments are
1660 * copied from kcore. It is assumed that two segments suffice: one for the
1661 * kernel proper and one for all the modules. The code segments are determined
1662 * from kallsyms and modules files. The kernel map starts at _stext or the
1663 * lowest function symbol, and ends at _etext or the highest function symbol.
1664 * The module map starts at the lowest module address and ends at the highest
1665 * module symbol. Start addresses are rounded down to the nearest page. End
1666 * addresses are rounded up to the nearest page. An extra page is added to the
1667 * highest kernel symbol and highest module symbol to, hopefully, encompass that
1668 * symbol too. Because it contains only code sections, the resulting kcore is
1669 * unusual. One significant peculiarity is that the mapping (start -> pgoff)
1670 * is not the same for the kernel map and the modules map. That happens because
1671 * the data is copied adjacently whereas the original kcore has gaps. Finally,
1672 * kallsyms and modules files are compared with their copies to check that
1673 * modules have not been loaded or unloaded while the copies were taking place.
1675 * Return: %0 on success, %-1 on failure.
1677 int kcore_copy(const char *from_dir
, const char *to_dir
)
1680 struct kcore extract
;
1682 int idx
= 0, err
= -1;
1683 off_t offset
= page_size
, sz
, modules_offset
= 0;
1684 struct kcore_copy_info kci
= { .stext
= 0, };
1685 char kcore_filename
[PATH_MAX
];
1686 char extract_filename
[PATH_MAX
];
1688 if (kcore_copy__copy_file(from_dir
, to_dir
, "kallsyms"))
1691 if (kcore_copy__copy_file(from_dir
, to_dir
, "modules"))
1692 goto out_unlink_kallsyms
;
1694 scnprintf(kcore_filename
, PATH_MAX
, "%s/kcore", from_dir
);
1695 scnprintf(extract_filename
, PATH_MAX
, "%s/kcore", to_dir
);
1697 if (kcore__open(&kcore
, kcore_filename
))
1698 goto out_unlink_modules
;
1700 if (kcore_copy__calc_maps(&kci
, from_dir
, kcore
.elf
))
1701 goto out_kcore_close
;
1703 if (kcore__init(&extract
, extract_filename
, kcore
.elfclass
, false))
1704 goto out_kcore_close
;
1706 if (!kci
.modules_map
.addr
)
1709 if (kcore__copy_hdr(&kcore
, &extract
, count
))
1710 goto out_extract_close
;
1712 if (kcore__add_phdr(&extract
, idx
++, offset
, kci
.kernel_map
.addr
,
1713 kci
.kernel_map
.len
))
1714 goto out_extract_close
;
1716 if (kci
.modules_map
.addr
) {
1717 modules_offset
= offset
+ kci
.kernel_map
.len
;
1718 if (kcore__add_phdr(&extract
, idx
, modules_offset
,
1719 kci
.modules_map
.addr
, kci
.modules_map
.len
))
1720 goto out_extract_close
;
1723 sz
= kcore__write(&extract
);
1724 if (sz
< 0 || sz
> offset
)
1725 goto out_extract_close
;
1727 if (copy_bytes(kcore
.fd
, kci
.kernel_map
.offset
, extract
.fd
, offset
,
1728 kci
.kernel_map
.len
))
1729 goto out_extract_close
;
1731 if (modules_offset
&& copy_bytes(kcore
.fd
, kci
.modules_map
.offset
,
1732 extract
.fd
, modules_offset
,
1733 kci
.modules_map
.len
))
1734 goto out_extract_close
;
1736 if (kcore_copy__compare_file(from_dir
, to_dir
, "modules"))
1737 goto out_extract_close
;
1739 if (kcore_copy__compare_file(from_dir
, to_dir
, "kallsyms"))
1740 goto out_extract_close
;
1745 kcore__close(&extract
);
1747 unlink(extract_filename
);
1749 kcore__close(&kcore
);
1752 kcore_copy__unlink(to_dir
, "modules");
1753 out_unlink_kallsyms
:
1755 kcore_copy__unlink(to_dir
, "kallsyms");
1760 int kcore_extract__create(struct kcore_extract
*kce
)
1763 struct kcore extract
;
1765 int idx
= 0, err
= -1;
1766 off_t offset
= page_size
, sz
;
1768 if (kcore__open(&kcore
, kce
->kcore_filename
))
1771 strcpy(kce
->extract_filename
, PERF_KCORE_EXTRACT
);
1772 if (kcore__init(&extract
, kce
->extract_filename
, kcore
.elfclass
, true))
1773 goto out_kcore_close
;
1775 if (kcore__copy_hdr(&kcore
, &extract
, count
))
1776 goto out_extract_close
;
1778 if (kcore__add_phdr(&extract
, idx
, offset
, kce
->addr
, kce
->len
))
1779 goto out_extract_close
;
1781 sz
= kcore__write(&extract
);
1782 if (sz
< 0 || sz
> offset
)
1783 goto out_extract_close
;
1785 if (copy_bytes(kcore
.fd
, kce
->offs
, extract
.fd
, offset
, kce
->len
))
1786 goto out_extract_close
;
1791 kcore__close(&extract
);
1793 unlink(kce
->extract_filename
);
1795 kcore__close(&kcore
);
1800 void kcore_extract__delete(struct kcore_extract
*kce
)
1802 unlink(kce
->extract_filename
);
1805 #ifdef HAVE_GELF_GETNOTE_SUPPORT
1807 * populate_sdt_note : Parse raw data and identify SDT note
1808 * @elf: elf of the opened file
1809 * @data: raw data of a section with description offset applied
1810 * @len: note description size
1811 * @type: type of the note
1812 * @sdt_notes: List to add the SDT note
1814 * Responsible for parsing the @data in section .note.stapsdt in @elf and
1815 * if its an SDT note, it appends to @sdt_notes list.
1817 static int populate_sdt_note(Elf
**elf
, const char *data
, size_t len
,
1818 struct list_head
*sdt_notes
)
1820 const char *provider
, *name
, *args
;
1821 struct sdt_note
*tmp
= NULL
;
1823 GElf_Addr base_off
= 0;
1828 Elf64_Addr a64
[NR_ADDR
];
1829 Elf32_Addr a32
[NR_ADDR
];
1833 .d_buf
= &buf
, .d_type
= ELF_T_ADDR
, .d_version
= EV_CURRENT
,
1834 .d_size
= gelf_fsize((*elf
), ELF_T_ADDR
, NR_ADDR
, EV_CURRENT
),
1835 .d_off
= 0, .d_align
= 0
1838 .d_buf
= (void *) data
, .d_type
= ELF_T_ADDR
,
1839 .d_version
= EV_CURRENT
, .d_size
= dst
.d_size
, .d_off
= 0,
1843 tmp
= (struct sdt_note
*)calloc(1, sizeof(struct sdt_note
));
1849 INIT_LIST_HEAD(&tmp
->note_list
);
1851 if (len
< dst
.d_size
+ 3)
1854 /* Translation from file representation to memory representation */
1855 if (gelf_xlatetom(*elf
, &dst
, &src
,
1856 elf_getident(*elf
, NULL
)[EI_DATA
]) == NULL
) {
1857 pr_err("gelf_xlatetom : %s\n", elf_errmsg(-1));
1861 /* Populate the fields of sdt_note */
1862 provider
= data
+ dst
.d_size
;
1864 name
= (const char *)memchr(provider
, '\0', data
+ len
- provider
);
1868 tmp
->provider
= strdup(provider
);
1869 if (!tmp
->provider
) {
1873 tmp
->name
= strdup(name
);
1879 args
= memchr(name
, '\0', data
+ len
- name
);
1882 * There is no argument if:
1883 * - We reached the end of the note;
1884 * - There is not enough room to hold a potential string;
1885 * - The argument string is empty or just contains ':'.
1887 if (args
== NULL
|| data
+ len
- args
< 2 ||
1888 args
[1] == ':' || args
[1] == '\0')
1891 tmp
->args
= strdup(++args
);
1898 if (gelf_getclass(*elf
) == ELFCLASS32
) {
1899 memcpy(&tmp
->addr
, &buf
, 3 * sizeof(Elf32_Addr
));
1902 memcpy(&tmp
->addr
, &buf
, 3 * sizeof(Elf64_Addr
));
1906 if (!gelf_getehdr(*elf
, &ehdr
)) {
1907 pr_debug("%s : cannot get elf header.\n", __func__
);
1912 /* Adjust the prelink effect :
1913 * Find out the .stapsdt.base section.
1914 * This scn will help us to handle prelinking (if present).
1915 * Compare the retrieved file offset of the base section with the
1916 * base address in the description of the SDT note. If its different,
1917 * then accordingly, adjust the note location.
1919 if (elf_section_by_name(*elf
, &ehdr
, &shdr
, SDT_BASE_SCN
, NULL
)) {
1920 base_off
= shdr
.sh_offset
;
1923 tmp
->addr
.a32
[0] = tmp
->addr
.a32
[0] + base_off
-
1926 tmp
->addr
.a64
[0] = tmp
->addr
.a64
[0] + base_off
-
1931 list_add_tail(&tmp
->note_list
, sdt_notes
);
1939 free(tmp
->provider
);
1947 * construct_sdt_notes_list : constructs a list of SDT notes
1948 * @elf : elf to look into
1949 * @sdt_notes : empty list_head
1951 * Scans the sections in 'elf' for the section
1952 * .note.stapsdt. It, then calls populate_sdt_note to find
1953 * out the SDT events and populates the 'sdt_notes'.
1955 static int construct_sdt_notes_list(Elf
*elf
, struct list_head
*sdt_notes
)
1958 Elf_Scn
*scn
= NULL
;
1961 size_t shstrndx
, next
;
1963 size_t name_off
, desc_off
, offset
;
1966 if (gelf_getehdr(elf
, &ehdr
) == NULL
) {
1970 if (elf_getshdrstrndx(elf
, &shstrndx
) != 0) {
1975 /* Look for the required section */
1976 scn
= elf_section_by_name(elf
, &ehdr
, &shdr
, SDT_NOTE_SCN
, NULL
);
1982 if ((shdr
.sh_type
!= SHT_NOTE
) || (shdr
.sh_flags
& SHF_ALLOC
)) {
1987 data
= elf_getdata(scn
, NULL
);
1989 /* Get the SDT notes */
1990 for (offset
= 0; (next
= gelf_getnote(data
, offset
, &nhdr
, &name_off
,
1991 &desc_off
)) > 0; offset
= next
) {
1992 if (nhdr
.n_namesz
== sizeof(SDT_NOTE_NAME
) &&
1993 !memcmp(data
->d_buf
+ name_off
, SDT_NOTE_NAME
,
1994 sizeof(SDT_NOTE_NAME
))) {
1995 /* Check the type of the note */
1996 if (nhdr
.n_type
!= SDT_NOTE_TYPE
)
1999 ret
= populate_sdt_note(&elf
, ((data
->d_buf
) + desc_off
),
2000 nhdr
.n_descsz
, sdt_notes
);
2005 if (list_empty(sdt_notes
))
2013 * get_sdt_note_list : Wrapper to construct a list of sdt notes
2014 * @head : empty list_head
2015 * @target : file to find SDT notes from
2017 * This opens the file, initializes
2018 * the ELF and then calls construct_sdt_notes_list.
2020 int get_sdt_note_list(struct list_head
*head
, const char *target
)
2025 fd
= open(target
, O_RDONLY
);
2029 elf
= elf_begin(fd
, PERF_ELF_C_READ_MMAP
, NULL
);
2034 ret
= construct_sdt_notes_list(elf
, head
);
2042 * cleanup_sdt_note_list : free the sdt notes' list
2043 * @sdt_notes: sdt notes' list
2045 * Free up the SDT notes in @sdt_notes.
2046 * Returns the number of SDT notes free'd.
2048 int cleanup_sdt_note_list(struct list_head
*sdt_notes
)
2050 struct sdt_note
*tmp
, *pos
;
2053 list_for_each_entry_safe(pos
, tmp
, sdt_notes
, note_list
) {
2054 list_del(&pos
->note_list
);
2056 free(pos
->provider
);
2064 * sdt_notes__get_count: Counts the number of sdt events
2065 * @start: list_head to sdt_notes list
2067 * Returns the number of SDT notes in a list
2069 int sdt_notes__get_count(struct list_head
*start
)
2071 struct sdt_note
*sdt_ptr
;
2074 list_for_each_entry(sdt_ptr
, start
, note_list
)
2080 void symbol__elf_init(void)
2082 elf_version(EV_CURRENT
);