blob: 0b230f1a31c4c1b29c6a56e00f347e2037ce00de [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Namhyung Kime5a18452012-08-06 13:41:20 +09002#include <fcntl.h>
3#include <stdio.h>
4#include <errno.h>
5#include <string.h>
6#include <unistd.h>
7#include <inttypes.h>
8
9#include "symbol.h"
Stephane Eraniane9c4bcd2015-11-30 10:02:20 +010010#include "demangle-java.h"
David Tolnaycae15db2016-07-09 00:20:00 -070011#include "demangle-rust.h"
Waiman Long8fa7d872014-09-29 16:07:28 -040012#include "machine.h"
Vladimir Nikulichev922d0e42014-04-17 08:27:01 -070013#include "vdso.h"
Namhyung Kime5a18452012-08-06 13:41:20 +090014#include "debug.h"
Arnaldo Carvalho de Melo3d689ed2017-04-17 16:10:49 -030015#include "sane_ctype.h"
16#include <symbol/kallsyms.h>
Namhyung Kime5a18452012-08-06 13:41:20 +090017
David Aherne370a3d2015-02-18 19:33:37 -050018#ifndef EM_AARCH64
19#define EM_AARCH64 183 /* ARM 64 bit */
20#endif
21
Arnaldo Carvalho de Melocc310782016-07-12 11:04:13 -030022typedef Elf64_Nhdr GElf_Nhdr;
David Aherne370a3d2015-02-18 19:33:37 -050023
Arnaldo Carvalho de Meloaaba4e12014-11-24 17:10:52 -030024#ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
25extern char *cplus_demangle(const char *, int);
26
27static inline char *bfd_demangle(void __maybe_unused *v, const char *c, int i)
28{
29 return cplus_demangle(c, i);
30}
31#else
32#ifdef NO_DEMANGLE
33static inline char *bfd_demangle(void __maybe_unused *v,
34 const char __maybe_unused *c,
35 int __maybe_unused i)
36{
37 return NULL;
38}
39#else
40#define PACKAGE 'perf'
41#include <bfd.h>
42#endif
43#endif
44
Ingo Molnar89fe8082013-09-30 12:07:11 +020045#ifndef HAVE_ELF_GETPHDRNUM_SUPPORT
Arnaldo Carvalho de Melo179f36d2015-09-17 11:30:20 -030046static int elf_getphdrnum(Elf *elf, size_t *dst)
Adrian Huntere955d5c2013-09-13 16:49:30 +030047{
48 GElf_Ehdr gehdr;
49 GElf_Ehdr *ehdr;
50
51 ehdr = gelf_getehdr(elf, &gehdr);
52 if (!ehdr)
53 return -1;
54
55 *dst = ehdr->e_phnum;
56
57 return 0;
58}
59#endif
60
Arnaldo Carvalho de Melo2492c462016-07-04 19:35:47 -030061#ifndef HAVE_ELF_GETSHDRSTRNDX_SUPPORT
62static int elf_getshdrstrndx(Elf *elf __maybe_unused, size_t *dst __maybe_unused)
63{
64 pr_err("%s: update your libelf to > 0.140, this one lacks elf_getshdrstrndx().\n", __func__);
65 return -1;
66}
67#endif
68
Namhyung Kime5a18452012-08-06 13:41:20 +090069#ifndef NT_GNU_BUILD_ID
70#define NT_GNU_BUILD_ID 3
71#endif
72
73/**
74 * elf_symtab__for_each_symbol - iterate thru all the symbols
75 *
76 * @syms: struct elf_symtab instance to iterate
77 * @idx: uint32_t idx
78 * @sym: GElf_Sym iterator
79 */
80#define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
81 for (idx = 0, gelf_getsym(syms, idx, &sym);\
82 idx < nr_syms; \
83 idx++, gelf_getsym(syms, idx, &sym))
84
85static inline uint8_t elf_sym__type(const GElf_Sym *sym)
86{
87 return GELF_ST_TYPE(sym->st_info);
88}
89
Vinson Lee4e310502015-02-09 16:29:37 -080090#ifndef STT_GNU_IFUNC
91#define STT_GNU_IFUNC 10
92#endif
93
Namhyung Kime5a18452012-08-06 13:41:20 +090094static inline int elf_sym__is_function(const GElf_Sym *sym)
95{
Adrian Huntera2f3b6b2014-07-14 13:02:33 +030096 return (elf_sym__type(sym) == STT_FUNC ||
97 elf_sym__type(sym) == STT_GNU_IFUNC) &&
Namhyung Kime5a18452012-08-06 13:41:20 +090098 sym->st_name != 0 &&
99 sym->st_shndx != SHN_UNDEF;
100}
101
102static inline bool elf_sym__is_object(const GElf_Sym *sym)
103{
104 return elf_sym__type(sym) == STT_OBJECT &&
105 sym->st_name != 0 &&
106 sym->st_shndx != SHN_UNDEF;
107}
108
109static inline int elf_sym__is_label(const GElf_Sym *sym)
110{
111 return elf_sym__type(sym) == STT_NOTYPE &&
112 sym->st_name != 0 &&
113 sym->st_shndx != SHN_UNDEF &&
114 sym->st_shndx != SHN_ABS;
115}
116
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300117static bool elf_sym__filter(GElf_Sym *sym)
Namhyung Kime5a18452012-08-06 13:41:20 +0900118{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300119 return elf_sym__is_function(sym) || elf_sym__is_object(sym);
Namhyung Kime5a18452012-08-06 13:41:20 +0900120}
121
122static inline const char *elf_sym__name(const GElf_Sym *sym,
123 const Elf_Data *symstrs)
124{
125 return symstrs->d_buf + sym->st_name;
126}
127
128static inline const char *elf_sec__name(const GElf_Shdr *shdr,
129 const Elf_Data *secstrs)
130{
131 return secstrs->d_buf + shdr->sh_name;
132}
133
134static inline int elf_sec__is_text(const GElf_Shdr *shdr,
135 const Elf_Data *secstrs)
136{
137 return strstr(elf_sec__name(shdr, secstrs), "text") != NULL;
138}
139
140static inline bool elf_sec__is_data(const GElf_Shdr *shdr,
141 const Elf_Data *secstrs)
142{
143 return strstr(elf_sec__name(shdr, secstrs), "data") != NULL;
144}
145
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300146static bool elf_sec__filter(GElf_Shdr *shdr, Elf_Data *secstrs)
Namhyung Kime5a18452012-08-06 13:41:20 +0900147{
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300148 return elf_sec__is_text(shdr, secstrs) ||
149 elf_sec__is_data(shdr, secstrs);
Namhyung Kime5a18452012-08-06 13:41:20 +0900150}
151
152static size_t elf_addr_to_index(Elf *elf, GElf_Addr addr)
153{
154 Elf_Scn *sec = NULL;
155 GElf_Shdr shdr;
156 size_t cnt = 1;
157
158 while ((sec = elf_nextscn(elf, sec)) != NULL) {
159 gelf_getshdr(sec, &shdr);
160
161 if ((addr >= shdr.sh_addr) &&
162 (addr < (shdr.sh_addr + shdr.sh_size)))
163 return cnt;
164
165 ++cnt;
166 }
167
168 return -1;
169}
170
Masami Hiramatsu99ca4232014-01-16 09:39:49 +0000171Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
172 GElf_Shdr *shp, const char *name, size_t *idx)
Namhyung Kime5a18452012-08-06 13:41:20 +0900173{
174 Elf_Scn *sec = NULL;
175 size_t cnt = 1;
176
Cody P Schafer49274652012-08-10 15:22:55 -0700177 /* Elf is corrupted/truncated, avoid calling elf_strptr. */
178 if (!elf_rawdata(elf_getscn(elf, ep->e_shstrndx), NULL))
179 return NULL;
180
Namhyung Kime5a18452012-08-06 13:41:20 +0900181 while ((sec = elf_nextscn(elf, sec)) != NULL) {
182 char *str;
183
184 gelf_getshdr(sec, shp);
185 str = elf_strptr(elf, ep->e_shstrndx, shp->sh_name);
Jiri Olsa155b3a12014-03-02 14:32:07 +0100186 if (str && !strcmp(name, str)) {
Namhyung Kime5a18452012-08-06 13:41:20 +0900187 if (idx)
188 *idx = cnt;
Jiri Olsa155b3a12014-03-02 14:32:07 +0100189 return sec;
Namhyung Kime5a18452012-08-06 13:41:20 +0900190 }
191 ++cnt;
192 }
193
Jiri Olsa155b3a12014-03-02 14:32:07 +0100194 return NULL;
Namhyung Kime5a18452012-08-06 13:41:20 +0900195}
196
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200197static bool want_demangle(bool is_kernel_sym)
198{
199 return is_kernel_sym ? symbol_conf.demangle_kernel : symbol_conf.demangle;
200}
201
202static char *demangle_sym(struct dso *dso, int kmodule, const char *elf_name)
203{
Namhyung Kimbb963e12017-02-17 17:17:38 +0900204 int demangle_flags = verbose > 0 ? (DMGL_PARAMS | DMGL_ANSI) : DMGL_NO_OPTS;
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200205 char *demangled = NULL;
206
207 /*
208 * We need to figure out if the object was created from C++ sources
209 * DWARF DW_compile_unit has this, but we don't always have access
210 * to it...
211 */
212 if (!want_demangle(dso->kernel || kmodule))
213 return demangled;
214
215 demangled = bfd_demangle(NULL, elf_name, demangle_flags);
216 if (demangled == NULL)
217 demangled = java_demangle_sym(elf_name, JAVA_DEMANGLE_NORET);
218 else if (rust_is_mangled(demangled))
219 /*
220 * Input to Rust demangling is the BFD-demangled
221 * name which it Rust-demangles in place.
222 */
223 rust_demangle_sym(demangled);
224
225 return demangled;
226}
227
Namhyung Kime5a18452012-08-06 13:41:20 +0900228#define elf_section__for_each_rel(reldata, pos, pos_mem, idx, nr_entries) \
229 for (idx = 0, pos = gelf_getrel(reldata, 0, &pos_mem); \
230 idx < nr_entries; \
231 ++idx, pos = gelf_getrel(reldata, idx, &pos_mem))
232
233#define elf_section__for_each_rela(reldata, pos, pos_mem, idx, nr_entries) \
234 for (idx = 0, pos = gelf_getrela(reldata, 0, &pos_mem); \
235 idx < nr_entries; \
236 ++idx, pos = gelf_getrela(reldata, idx, &pos_mem))
237
238/*
239 * We need to check if we have a .dynsym, so that we can handle the
240 * .plt, synthesizing its symbols, that aren't on the symtabs (be it
241 * .dynsym or .symtab).
242 * And always look at the original dso, not at debuginfo packages, that
243 * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
244 */
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300245int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss)
Namhyung Kime5a18452012-08-06 13:41:20 +0900246{
247 uint32_t nr_rel_entries, idx;
248 GElf_Sym sym;
Li Binb2f76052017-06-05 08:34:09 +0800249 u64 plt_offset, plt_header_size, plt_entry_size;
Namhyung Kime5a18452012-08-06 13:41:20 +0900250 GElf_Shdr shdr_plt;
251 struct symbol *f;
252 GElf_Shdr shdr_rel_plt, shdr_dynsym;
253 Elf_Data *reldata, *syms, *symstrs;
254 Elf_Scn *scn_plt_rel, *scn_symstrs, *scn_dynsym;
255 size_t dynsym_idx;
256 GElf_Ehdr ehdr;
257 char sympltname[1024];
258 Elf *elf;
Cody P Schafera44f6052012-08-10 15:22:59 -0700259 int nr = 0, symidx, err = 0;
Namhyung Kime5a18452012-08-06 13:41:20 +0900260
David Ahernf47b58b2012-08-19 09:47:14 -0600261 if (!ss->dynsym)
262 return 0;
263
Cody P Schafera44f6052012-08-10 15:22:59 -0700264 elf = ss->elf;
265 ehdr = ss->ehdr;
Namhyung Kime5a18452012-08-06 13:41:20 +0900266
Cody P Schafera44f6052012-08-10 15:22:59 -0700267 scn_dynsym = ss->dynsym;
268 shdr_dynsym = ss->dynshdr;
269 dynsym_idx = ss->dynsym_idx;
Namhyung Kime5a18452012-08-06 13:41:20 +0900270
Namhyung Kime5a18452012-08-06 13:41:20 +0900271 if (scn_dynsym == NULL)
272 goto out_elf_end;
273
274 scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
275 ".rela.plt", NULL);
276 if (scn_plt_rel == NULL) {
277 scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
278 ".rel.plt", NULL);
279 if (scn_plt_rel == NULL)
280 goto out_elf_end;
281 }
282
283 err = -1;
284
285 if (shdr_rel_plt.sh_link != dynsym_idx)
286 goto out_elf_end;
287
288 if (elf_section_by_name(elf, &ehdr, &shdr_plt, ".plt", NULL) == NULL)
289 goto out_elf_end;
290
291 /*
292 * Fetch the relocation section to find the idxes to the GOT
293 * and the symbols in the .dynsym they refer to.
294 */
295 reldata = elf_getdata(scn_plt_rel, NULL);
296 if (reldata == NULL)
297 goto out_elf_end;
298
299 syms = elf_getdata(scn_dynsym, NULL);
300 if (syms == NULL)
301 goto out_elf_end;
302
303 scn_symstrs = elf_getscn(elf, shdr_dynsym.sh_link);
304 if (scn_symstrs == NULL)
305 goto out_elf_end;
306
307 symstrs = elf_getdata(scn_symstrs, NULL);
308 if (symstrs == NULL)
309 goto out_elf_end;
310
Cody P Schafer52f9ddb2012-08-10 15:22:51 -0700311 if (symstrs->d_size == 0)
312 goto out_elf_end;
313
Namhyung Kime5a18452012-08-06 13:41:20 +0900314 nr_rel_entries = shdr_rel_plt.sh_size / shdr_rel_plt.sh_entsize;
315 plt_offset = shdr_plt.sh_offset;
Li Binb2f76052017-06-05 08:34:09 +0800316 switch (ehdr.e_machine) {
317 case EM_ARM:
318 plt_header_size = 20;
319 plt_entry_size = 12;
320 break;
321
322 case EM_AARCH64:
323 plt_header_size = 32;
324 plt_entry_size = 16;
325 break;
326
327 default: /* FIXME: s390/alpha/mips/parisc/poperpc/sh/sparc/xtensa need to be checked */
328 plt_header_size = shdr_plt.sh_entsize;
329 plt_entry_size = shdr_plt.sh_entsize;
330 break;
331 }
332 plt_offset += plt_header_size;
Namhyung Kime5a18452012-08-06 13:41:20 +0900333
334 if (shdr_rel_plt.sh_type == SHT_RELA) {
335 GElf_Rela pos_mem, *pos;
336
337 elf_section__for_each_rela(reldata, pos, pos_mem, idx,
338 nr_rel_entries) {
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200339 const char *elf_name = NULL;
340 char *demangled = NULL;
Namhyung Kime5a18452012-08-06 13:41:20 +0900341 symidx = GELF_R_SYM(pos->r_info);
Namhyung Kime5a18452012-08-06 13:41:20 +0900342 gelf_getsym(syms, symidx, &sym);
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200343
344 elf_name = elf_sym__name(&sym, symstrs);
345 demangled = demangle_sym(dso, 0, elf_name);
346 if (demangled != NULL)
347 elf_name = demangled;
Namhyung Kime5a18452012-08-06 13:41:20 +0900348 snprintf(sympltname, sizeof(sympltname),
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200349 "%s@plt", elf_name);
350 free(demangled);
Namhyung Kime5a18452012-08-06 13:41:20 +0900351
Li Binb2f76052017-06-05 08:34:09 +0800352 f = symbol__new(plt_offset, plt_entry_size,
Arnaldo Carvalho de Meloaf30bff2018-04-26 11:09:10 -0300353 STB_GLOBAL, STT_FUNC, sympltname);
Namhyung Kime5a18452012-08-06 13:41:20 +0900354 if (!f)
355 goto out_elf_end;
356
Li Binb2f76052017-06-05 08:34:09 +0800357 plt_offset += plt_entry_size;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300358 symbols__insert(&dso->symbols, f);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300359 ++nr;
Namhyung Kime5a18452012-08-06 13:41:20 +0900360 }
361 } else if (shdr_rel_plt.sh_type == SHT_REL) {
362 GElf_Rel pos_mem, *pos;
363 elf_section__for_each_rel(reldata, pos, pos_mem, idx,
364 nr_rel_entries) {
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200365 const char *elf_name = NULL;
366 char *demangled = NULL;
Namhyung Kime5a18452012-08-06 13:41:20 +0900367 symidx = GELF_R_SYM(pos->r_info);
Namhyung Kime5a18452012-08-06 13:41:20 +0900368 gelf_getsym(syms, symidx, &sym);
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200369
370 elf_name = elf_sym__name(&sym, symstrs);
371 demangled = demangle_sym(dso, 0, elf_name);
372 if (demangled != NULL)
373 elf_name = demangled;
Namhyung Kime5a18452012-08-06 13:41:20 +0900374 snprintf(sympltname, sizeof(sympltname),
Milian Wolff2a8d41b2016-08-30 13:41:02 +0200375 "%s@plt", elf_name);
376 free(demangled);
Namhyung Kime5a18452012-08-06 13:41:20 +0900377
Li Binb2f76052017-06-05 08:34:09 +0800378 f = symbol__new(plt_offset, plt_entry_size,
Arnaldo Carvalho de Meloaf30bff2018-04-26 11:09:10 -0300379 STB_GLOBAL, STT_FUNC, sympltname);
Namhyung Kime5a18452012-08-06 13:41:20 +0900380 if (!f)
381 goto out_elf_end;
382
Li Binb2f76052017-06-05 08:34:09 +0800383 plt_offset += plt_entry_size;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300384 symbols__insert(&dso->symbols, f);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300385 ++nr;
Namhyung Kime5a18452012-08-06 13:41:20 +0900386 }
387 }
388
389 err = 0;
390out_elf_end:
Namhyung Kime5a18452012-08-06 13:41:20 +0900391 if (err == 0)
392 return nr;
Namhyung Kime5a18452012-08-06 13:41:20 +0900393 pr_debug("%s: problems reading %s PLT info.\n",
394 __func__, dso->long_name);
395 return 0;
396}
397
Milian Wolff80c345b2017-08-06 23:24:34 +0200398char *dso__demangle_sym(struct dso *dso, int kmodule, const char *elf_name)
Jin Yaoa64489c2017-03-26 04:34:26 +0800399{
400 return demangle_sym(dso, kmodule, elf_name);
401}
402
Namhyung Kime5a18452012-08-06 13:41:20 +0900403/*
404 * Align offset to 4 bytes as needed for note name and descriptor data.
405 */
406#define NOTE_ALIGN(n) (((n) + 3) & -4U)
407
408static int elf_read_build_id(Elf *elf, void *bf, size_t size)
409{
410 int err = -1;
411 GElf_Ehdr ehdr;
412 GElf_Shdr shdr;
413 Elf_Data *data;
414 Elf_Scn *sec;
415 Elf_Kind ek;
416 void *ptr;
417
418 if (size < BUILD_ID_SIZE)
419 goto out;
420
421 ek = elf_kind(elf);
422 if (ek != ELF_K_ELF)
423 goto out;
424
425 if (gelf_getehdr(elf, &ehdr) == NULL) {
426 pr_err("%s: cannot get elf header.\n", __func__);
427 goto out;
428 }
429
430 /*
431 * Check following sections for notes:
432 * '.note.gnu.build-id'
433 * '.notes'
434 * '.note' (VDSO specific)
435 */
436 do {
437 sec = elf_section_by_name(elf, &ehdr, &shdr,
438 ".note.gnu.build-id", NULL);
439 if (sec)
440 break;
441
442 sec = elf_section_by_name(elf, &ehdr, &shdr,
443 ".notes", NULL);
444 if (sec)
445 break;
446
447 sec = elf_section_by_name(elf, &ehdr, &shdr,
448 ".note", NULL);
449 if (sec)
450 break;
451
452 return err;
453
454 } while (0);
455
456 data = elf_getdata(sec, NULL);
457 if (data == NULL)
458 goto out;
459
460 ptr = data->d_buf;
461 while (ptr < (data->d_buf + data->d_size)) {
462 GElf_Nhdr *nhdr = ptr;
463 size_t namesz = NOTE_ALIGN(nhdr->n_namesz),
464 descsz = NOTE_ALIGN(nhdr->n_descsz);
465 const char *name;
466
467 ptr += sizeof(*nhdr);
468 name = ptr;
469 ptr += namesz;
470 if (nhdr->n_type == NT_GNU_BUILD_ID &&
471 nhdr->n_namesz == sizeof("GNU")) {
472 if (memcmp(name, "GNU", sizeof("GNU")) == 0) {
473 size_t sz = min(size, descsz);
474 memcpy(bf, ptr, sz);
475 memset(bf + sz, 0, size - sz);
476 err = descsz;
477 break;
478 }
479 }
480 ptr += descsz;
481 }
482
483out:
484 return err;
485}
486
487int filename__read_build_id(const char *filename, void *bf, size_t size)
488{
489 int fd, err = -1;
490 Elf *elf;
491
492 if (size < BUILD_ID_SIZE)
493 goto out;
494
495 fd = open(filename, O_RDONLY);
496 if (fd < 0)
497 goto out;
498
499 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
500 if (elf == NULL) {
501 pr_debug2("%s: cannot read %s ELF file.\n", __func__, filename);
502 goto out_close;
503 }
504
505 err = elf_read_build_id(elf, bf, size);
506
507 elf_end(elf);
508out_close:
509 close(fd);
510out:
511 return err;
512}
513
514int sysfs__read_build_id(const char *filename, void *build_id, size_t size)
515{
516 int fd, err = -1;
517
518 if (size < BUILD_ID_SIZE)
519 goto out;
520
521 fd = open(filename, O_RDONLY);
522 if (fd < 0)
523 goto out;
524
525 while (1) {
526 char bf[BUFSIZ];
527 GElf_Nhdr nhdr;
528 size_t namesz, descsz;
529
530 if (read(fd, &nhdr, sizeof(nhdr)) != sizeof(nhdr))
531 break;
532
533 namesz = NOTE_ALIGN(nhdr.n_namesz);
534 descsz = NOTE_ALIGN(nhdr.n_descsz);
535 if (nhdr.n_type == NT_GNU_BUILD_ID &&
536 nhdr.n_namesz == sizeof("GNU")) {
537 if (read(fd, bf, namesz) != (ssize_t)namesz)
538 break;
539 if (memcmp(bf, "GNU", sizeof("GNU")) == 0) {
540 size_t sz = min(descsz, size);
541 if (read(fd, build_id, sz) == (ssize_t)sz) {
542 memset(build_id + sz, 0, size - sz);
543 err = 0;
544 break;
545 }
546 } else if (read(fd, bf, descsz) != (ssize_t)descsz)
547 break;
548 } else {
549 int n = namesz + descsz;
Arnaldo Carvalho de Melo7934c982017-01-03 15:19:21 -0300550
551 if (n > (int)sizeof(bf)) {
552 n = sizeof(bf);
553 pr_debug("%s: truncating reading of build id in sysfs file %s: n_namesz=%u, n_descsz=%u.\n",
554 __func__, filename, nhdr.n_namesz, nhdr.n_descsz);
555 }
Namhyung Kime5a18452012-08-06 13:41:20 +0900556 if (read(fd, bf, n) != n)
557 break;
558 }
559 }
560 close(fd);
561out:
562 return err;
563}
564
565int filename__read_debuglink(const char *filename, char *debuglink,
566 size_t size)
567{
568 int fd, err = -1;
569 Elf *elf;
570 GElf_Ehdr ehdr;
571 GElf_Shdr shdr;
572 Elf_Data *data;
573 Elf_Scn *sec;
574 Elf_Kind ek;
575
576 fd = open(filename, O_RDONLY);
577 if (fd < 0)
578 goto out;
579
580 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
581 if (elf == NULL) {
582 pr_debug2("%s: cannot read %s ELF file.\n", __func__, filename);
583 goto out_close;
584 }
585
586 ek = elf_kind(elf);
587 if (ek != ELF_K_ELF)
Chenggang Qin784f3392013-10-11 08:27:57 +0800588 goto out_elf_end;
Namhyung Kime5a18452012-08-06 13:41:20 +0900589
590 if (gelf_getehdr(elf, &ehdr) == NULL) {
591 pr_err("%s: cannot get elf header.\n", __func__);
Chenggang Qin784f3392013-10-11 08:27:57 +0800592 goto out_elf_end;
Namhyung Kime5a18452012-08-06 13:41:20 +0900593 }
594
595 sec = elf_section_by_name(elf, &ehdr, &shdr,
596 ".gnu_debuglink", NULL);
597 if (sec == NULL)
Chenggang Qin784f3392013-10-11 08:27:57 +0800598 goto out_elf_end;
Namhyung Kime5a18452012-08-06 13:41:20 +0900599
600 data = elf_getdata(sec, NULL);
601 if (data == NULL)
Chenggang Qin784f3392013-10-11 08:27:57 +0800602 goto out_elf_end;
Namhyung Kime5a18452012-08-06 13:41:20 +0900603
604 /* the start of this section is a zero-terminated string */
605 strncpy(debuglink, data->d_buf, size);
606
Stephane Eranian0d3dc5e2014-02-20 10:32:55 +0900607 err = 0;
608
Chenggang Qin784f3392013-10-11 08:27:57 +0800609out_elf_end:
Namhyung Kime5a18452012-08-06 13:41:20 +0900610 elf_end(elf);
Namhyung Kime5a18452012-08-06 13:41:20 +0900611out_close:
612 close(fd);
613out:
614 return err;
615}
616
617static int dso__swap_init(struct dso *dso, unsigned char eidata)
618{
619 static unsigned int const endian = 1;
620
621 dso->needs_swap = DSO_SWAP__NO;
622
623 switch (eidata) {
624 case ELFDATA2LSB:
625 /* We are big endian, DSO is little endian. */
626 if (*(unsigned char const *)&endian != 1)
627 dso->needs_swap = DSO_SWAP__YES;
628 break;
629
630 case ELFDATA2MSB:
631 /* We are little endian, DSO is big endian. */
632 if (*(unsigned char const *)&endian != 0)
633 dso->needs_swap = DSO_SWAP__YES;
634 break;
635
636 default:
637 pr_err("unrecognized DSO data encoding %d\n", eidata);
638 return -EINVAL;
639 }
640
641 return 0;
642}
643
Cody P Schafer3aafe5a2012-08-10 15:23:02 -0700644bool symsrc__possibly_runtime(struct symsrc *ss)
645{
646 return ss->dynsym || ss->opdsec;
647}
648
Cody P Schaferd26cd122012-08-10 15:23:00 -0700649bool symsrc__has_symtab(struct symsrc *ss)
650{
651 return ss->symtab != NULL;
652}
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700653
654void symsrc__destroy(struct symsrc *ss)
Namhyung Kime5a18452012-08-06 13:41:20 +0900655{
Arnaldo Carvalho de Melo74cf2492013-12-27 16:55:14 -0300656 zfree(&ss->name);
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700657 elf_end(ss->elf);
658 close(ss->fd);
659}
660
Naveen N. Raod2332092015-04-28 17:35:35 +0530661bool __weak elf__needs_adjust_symbols(GElf_Ehdr ehdr)
662{
663 return ehdr.e_type == ET_EXEC || ehdr.e_type == ET_REL;
664}
665
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700666int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
667 enum dso_binary_type type)
668{
Namhyung Kime5a18452012-08-06 13:41:20 +0900669 int err = -1;
Namhyung Kime5a18452012-08-06 13:41:20 +0900670 GElf_Ehdr ehdr;
Namhyung Kime5a18452012-08-06 13:41:20 +0900671 Elf *elf;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700672 int fd;
673
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300674 if (dso__needs_decompress(dso)) {
Namhyung Kim42b3fa62017-06-08 16:31:03 +0900675 fd = dso__decompress_kmodule_fd(dso, name);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300676 if (fd < 0)
677 return -1;
Namhyung Kimc25ec422017-06-08 16:31:08 +0900678
679 type = dso->symtab_type;
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300680 } else {
Namhyung Kimc00c48f2014-11-04 10:14:27 +0900681 fd = open(name, O_RDONLY);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300682 if (fd < 0) {
683 dso->load_errno = errno;
684 return -1;
685 }
686 }
Namhyung Kime5a18452012-08-06 13:41:20 +0900687
688 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
689 if (elf == NULL) {
690 pr_debug("%s: cannot read %s ELF file.\n", __func__, name);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300691 dso->load_errno = DSO_LOAD_ERRNO__INVALID_ELF;
Namhyung Kime5a18452012-08-06 13:41:20 +0900692 goto out_close;
693 }
694
695 if (gelf_getehdr(elf, &ehdr) == NULL) {
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300696 dso->load_errno = DSO_LOAD_ERRNO__INVALID_ELF;
Namhyung Kime5a18452012-08-06 13:41:20 +0900697 pr_debug("%s: cannot get elf header.\n", __func__);
698 goto out_elf_end;
699 }
700
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300701 if (dso__swap_init(dso, ehdr.e_ident[EI_DATA])) {
702 dso->load_errno = DSO_LOAD_ERRNO__INTERNAL_ERROR;
Namhyung Kime5a18452012-08-06 13:41:20 +0900703 goto out_elf_end;
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300704 }
Namhyung Kime5a18452012-08-06 13:41:20 +0900705
706 /* Always reject images with a mismatched build-id: */
Masami Hiramatsu428aff82016-08-26 01:24:42 +0900707 if (dso->has_build_id && !symbol_conf.ignore_vmlinux_buildid) {
Namhyung Kime5a18452012-08-06 13:41:20 +0900708 u8 build_id[BUILD_ID_SIZE];
709
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300710 if (elf_read_build_id(elf, build_id, BUILD_ID_SIZE) < 0) {
711 dso->load_errno = DSO_LOAD_ERRNO__CANNOT_READ_BUILDID;
Namhyung Kime5a18452012-08-06 13:41:20 +0900712 goto out_elf_end;
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300713 }
Namhyung Kime5a18452012-08-06 13:41:20 +0900714
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300715 if (!dso__build_id_equal(dso, build_id)) {
Naveen N. Rao468f3d22015-04-25 01:14:46 +0530716 pr_debug("%s: build id mismatch for %s.\n", __func__, name);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300717 dso->load_errno = DSO_LOAD_ERRNO__MISMATCHING_BUILDID;
Namhyung Kime5a18452012-08-06 13:41:20 +0900718 goto out_elf_end;
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300719 }
Namhyung Kime5a18452012-08-06 13:41:20 +0900720 }
721
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +0300722 ss->is_64_bit = (gelf_getclass(elf) == ELFCLASS64);
723
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700724 ss->symtab = elf_section_by_name(elf, &ehdr, &ss->symshdr, ".symtab",
725 NULL);
726 if (ss->symshdr.sh_type != SHT_SYMTAB)
727 ss->symtab = NULL;
728
729 ss->dynsym_idx = 0;
730 ss->dynsym = elf_section_by_name(elf, &ehdr, &ss->dynshdr, ".dynsym",
731 &ss->dynsym_idx);
732 if (ss->dynshdr.sh_type != SHT_DYNSYM)
733 ss->dynsym = NULL;
734
735 ss->opdidx = 0;
736 ss->opdsec = elf_section_by_name(elf, &ehdr, &ss->opdshdr, ".opd",
737 &ss->opdidx);
738 if (ss->opdshdr.sh_type != SHT_PROGBITS)
739 ss->opdsec = NULL;
740
Wang Nan99e87f72016-04-07 10:24:31 +0000741 if (dso->kernel == DSO_TYPE_USER)
742 ss->adjust_symbols = true;
743 else
Naveen N. Raod2332092015-04-28 17:35:35 +0530744 ss->adjust_symbols = elf__needs_adjust_symbols(ehdr);
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700745
746 ss->name = strdup(name);
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300747 if (!ss->name) {
748 dso->load_errno = errno;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700749 goto out_elf_end;
Arnaldo Carvalho de Melo18425f12015-03-24 11:49:02 -0300750 }
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700751
752 ss->elf = elf;
753 ss->fd = fd;
754 ss->ehdr = ehdr;
755 ss->type = type;
756
757 return 0;
758
759out_elf_end:
760 elf_end(elf);
761out_close:
762 close(fd);
763 return err;
764}
765
Adrian Hunter39b12f782013-08-07 14:38:47 +0300766/**
767 * ref_reloc_sym_not_found - has kernel relocation symbol been found.
768 * @kmap: kernel maps and relocation reference symbol
769 *
770 * This function returns %true if we are dealing with the kernel maps and the
771 * relocation reference symbol has not yet been found. Otherwise %false is
772 * returned.
773 */
774static bool ref_reloc_sym_not_found(struct kmap *kmap)
775{
776 return kmap && kmap->ref_reloc_sym && kmap->ref_reloc_sym->name &&
777 !kmap->ref_reloc_sym->unrelocated_addr;
778}
779
780/**
781 * ref_reloc - kernel relocation offset.
782 * @kmap: kernel maps and relocation reference symbol
783 *
784 * This function returns the offset of kernel addresses as determined by using
785 * the relocation reference symbol i.e. if the kernel has not been relocated
786 * then the return value is zero.
787 */
788static u64 ref_reloc(struct kmap *kmap)
789{
790 if (kmap && kmap->ref_reloc_sym &&
791 kmap->ref_reloc_sym->unrelocated_addr)
792 return kmap->ref_reloc_sym->addr -
793 kmap->ref_reloc_sym->unrelocated_addr;
794 return 0;
795}
796
Naveen N. Rao0b3c2262016-04-12 14:40:50 +0530797void __weak arch__sym_update(struct symbol *s __maybe_unused,
798 GElf_Sym *sym __maybe_unused) { }
Ananth N Mavinakayanahallic50fc0a2015-04-28 17:35:38 +0530799
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -0300800int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *syms_ss,
801 struct symsrc *runtime_ss, int kmodule)
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700802{
803 struct kmap *kmap = dso->kernel ? map__kmap(map) : NULL;
Wang Nanba927322015-04-07 08:22:45 +0000804 struct map_groups *kmaps = kmap ? map__kmaps(map) : NULL;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700805 struct map *curr_map = map;
806 struct dso *curr_dso = dso;
807 Elf_Data *symstrs, *secstrs;
808 uint32_t nr_syms;
809 int err = -1;
810 uint32_t idx;
811 GElf_Ehdr ehdr;
Cody P Schafer261360b2012-08-10 15:23:01 -0700812 GElf_Shdr shdr;
Wang Nan73cdf0c2016-02-26 09:31:49 +0000813 GElf_Shdr tshdr;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700814 Elf_Data *syms, *opddata = NULL;
815 GElf_Sym sym;
Cody P Schafer261360b2012-08-10 15:23:01 -0700816 Elf_Scn *sec, *sec_strndx;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700817 Elf *elf;
818 int nr = 0;
Adrian Hunter39b12f782013-08-07 14:38:47 +0300819 bool remap_kernel = false, adjust_kernel_syms = false;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700820
Wang Nanba927322015-04-07 08:22:45 +0000821 if (kmap && !kmaps)
822 return -1;
823
Cody P Schafer261360b2012-08-10 15:23:01 -0700824 dso->symtab_type = syms_ss->type;
Adrian Hunterc6d8f2a2014-07-14 13:02:41 +0300825 dso->is_64_bit = syms_ss->is_64_bit;
Adrian Hunter0131c4e2013-08-07 14:38:50 +0300826 dso->rel = syms_ss->ehdr.e_type == ET_REL;
827
828 /*
829 * Modules may already have symbols from kallsyms, but those symbols
830 * have the wrong values for the dso maps, so remove them.
831 */
832 if (kmodule && syms_ss->symtab)
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300833 symbols__delete(&dso->symbols);
Cody P Schafer005f9292012-08-10 15:22:58 -0700834
Cody P Schafer261360b2012-08-10 15:23:01 -0700835 if (!syms_ss->symtab) {
Anton Blanchardd0b0d042014-09-09 08:59:29 +1000836 /*
837 * If the vmlinux is stripped, fail so we will fall back
838 * to using kallsyms. The vmlinux runtime symbols aren't
839 * of much use.
840 */
841 if (dso->kernel)
842 goto out_elf_end;
843
Cody P Schafer261360b2012-08-10 15:23:01 -0700844 syms_ss->symtab = syms_ss->dynsym;
845 syms_ss->symshdr = syms_ss->dynshdr;
Cody P Schaferd26cd122012-08-10 15:23:00 -0700846 }
847
Cody P Schafer261360b2012-08-10 15:23:01 -0700848 elf = syms_ss->elf;
849 ehdr = syms_ss->ehdr;
850 sec = syms_ss->symtab;
851 shdr = syms_ss->symshdr;
Cody P Schaferb68e2f92012-08-10 15:22:57 -0700852
Anton Blanchard50de1a02016-08-13 11:55:33 +1000853 if (elf_section_by_name(runtime_ss->elf, &runtime_ss->ehdr, &tshdr,
854 ".text", NULL))
Wang Nan73cdf0c2016-02-26 09:31:49 +0000855 dso->text_offset = tshdr.sh_addr - tshdr.sh_offset;
856
Cody P Schafer261360b2012-08-10 15:23:01 -0700857 if (runtime_ss->opdsec)
858 opddata = elf_rawdata(runtime_ss->opdsec, NULL);
Namhyung Kime5a18452012-08-06 13:41:20 +0900859
860 syms = elf_getdata(sec, NULL);
861 if (syms == NULL)
862 goto out_elf_end;
863
864 sec = elf_getscn(elf, shdr.sh_link);
865 if (sec == NULL)
866 goto out_elf_end;
867
868 symstrs = elf_getdata(sec, NULL);
869 if (symstrs == NULL)
870 goto out_elf_end;
871
Adrian Hunterf247fb82014-07-31 09:00:46 +0300872 sec_strndx = elf_getscn(runtime_ss->elf, runtime_ss->ehdr.e_shstrndx);
Namhyung Kime5a18452012-08-06 13:41:20 +0900873 if (sec_strndx == NULL)
874 goto out_elf_end;
875
876 secstrs = elf_getdata(sec_strndx, NULL);
877 if (secstrs == NULL)
878 goto out_elf_end;
879
880 nr_syms = shdr.sh_size / shdr.sh_entsize;
881
882 memset(&sym, 0, sizeof(sym));
Adrian Hunter39b12f782013-08-07 14:38:47 +0300883
884 /*
885 * The kernel relocation symbol is needed in advance in order to adjust
886 * kernel maps correctly.
887 */
888 if (ref_reloc_sym_not_found(kmap)) {
889 elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) {
890 const char *elf_name = elf_sym__name(&sym, symstrs);
891
892 if (strcmp(elf_name, kmap->ref_reloc_sym->name))
893 continue;
894 kmap->ref_reloc_sym->unrelocated_addr = sym.st_value;
Adrian Hunter91767532014-01-29 16:14:36 +0200895 map->reloc = kmap->ref_reloc_sym->addr -
896 kmap->ref_reloc_sym->unrelocated_addr;
Adrian Hunter39b12f782013-08-07 14:38:47 +0300897 break;
898 }
899 }
900
Adrian Hunterf0ee3b42015-08-14 15:50:06 +0300901 /*
902 * Handle any relocation of vdso necessary because older kernels
903 * attempted to prelink vdso to its virtual address.
904 */
Wang Nan73cdf0c2016-02-26 09:31:49 +0000905 if (dso__is_vdso(dso))
906 map->reloc = map->start - dso->text_offset;
Adrian Hunterf0ee3b42015-08-14 15:50:06 +0300907
Adrian Hunter39b12f782013-08-07 14:38:47 +0300908 dso->adjust_symbols = runtime_ss->adjust_symbols || ref_reloc(kmap);
909 /*
Arnaldo Carvalho de Melod1fd8d92018-04-26 12:36:37 -0300910 * Initial kernel and module mappings do not map to the dso.
911 * Flag the fixups.
Adrian Hunter39b12f782013-08-07 14:38:47 +0300912 */
Arnaldo Carvalho de Melod1fd8d92018-04-26 12:36:37 -0300913 if (dso->kernel || kmodule) {
Adrian Hunter39b12f782013-08-07 14:38:47 +0300914 remap_kernel = true;
915 adjust_kernel_syms = dso->adjust_symbols;
916 }
Namhyung Kime5a18452012-08-06 13:41:20 +0900917 elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) {
918 struct symbol *f;
919 const char *elf_name = elf_sym__name(&sym, symstrs);
920 char *demangled = NULL;
921 int is_label = elf_sym__is_label(&sym);
922 const char *section_name;
Cody P Schafer261360b2012-08-10 15:23:01 -0700923 bool used_opd = false;
Namhyung Kime5a18452012-08-06 13:41:20 +0900924
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300925 if (!is_label && !elf_sym__filter(&sym))
Namhyung Kime5a18452012-08-06 13:41:20 +0900926 continue;
927
928 /* Reject ARM ELF "mapping symbols": these aren't unique and
929 * don't identify functions, so will confuse the profile
930 * output: */
Victor Kamensky4886f2c2015-01-26 22:34:01 -0800931 if (ehdr.e_machine == EM_ARM || ehdr.e_machine == EM_AARCH64) {
932 if (elf_name[0] == '$' && strchr("adtx", elf_name[1])
933 && (elf_name[2] == '\0' || elf_name[2] == '.'))
Namhyung Kime5a18452012-08-06 13:41:20 +0900934 continue;
935 }
936
Cody P Schafer261360b2012-08-10 15:23:01 -0700937 if (runtime_ss->opdsec && sym.st_shndx == runtime_ss->opdidx) {
938 u32 offset = sym.st_value - syms_ss->opdshdr.sh_addr;
Namhyung Kime5a18452012-08-06 13:41:20 +0900939 u64 *opd = opddata->d_buf + offset;
940 sym.st_value = DSO__SWAP(dso, u64, *opd);
Cody P Schafer261360b2012-08-10 15:23:01 -0700941 sym.st_shndx = elf_addr_to_index(runtime_ss->elf,
942 sym.st_value);
943 used_opd = true;
Namhyung Kime5a18452012-08-06 13:41:20 +0900944 }
Namhyung Kim3843b052012-11-21 13:49:44 +0100945 /*
946 * When loading symbols in a data mapping, ABS symbols (which
947 * has a value of SHN_ABS in its st_shndx) failed at
948 * elf_getscn(). And it marks the loading as a failure so
949 * already loaded symbols cannot be fixed up.
950 *
951 * I'm not sure what should be done. Just ignore them for now.
952 * - Namhyung Kim
953 */
954 if (sym.st_shndx == SHN_ABS)
955 continue;
Namhyung Kime5a18452012-08-06 13:41:20 +0900956
Cody P Schafer261360b2012-08-10 15:23:01 -0700957 sec = elf_getscn(runtime_ss->elf, sym.st_shndx);
Namhyung Kime5a18452012-08-06 13:41:20 +0900958 if (!sec)
959 goto out_elf_end;
960
961 gelf_getshdr(sec, &shdr);
962
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -0300963 if (is_label && !elf_sec__filter(&shdr, secstrs))
Namhyung Kime5a18452012-08-06 13:41:20 +0900964 continue;
965
966 section_name = elf_sec__name(&shdr, secstrs);
967
968 /* On ARM, symbols for thumb functions have 1 added to
969 * the symbol address as a flag - remove it */
970 if ((ehdr.e_machine == EM_ARM) &&
Arnaldo Carvalho de Melo18231d72018-04-26 12:45:17 -0300971 (GELF_ST_TYPE(sym.st_info) == STT_FUNC) &&
Namhyung Kime5a18452012-08-06 13:41:20 +0900972 (sym.st_value & 1))
973 --sym.st_value;
974
Adrian Hunter39b12f782013-08-07 14:38:47 +0300975 if (dso->kernel || kmodule) {
Namhyung Kime5a18452012-08-06 13:41:20 +0900976 char dso_name[PATH_MAX];
977
Adrian Hunter39b12f782013-08-07 14:38:47 +0300978 /* Adjust symbol to map to file offset */
979 if (adjust_kernel_syms)
Thomas Richterb28503a2017-09-15 09:14:03 +0200980 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
Adrian Hunter39b12f782013-08-07 14:38:47 +0300981
Namhyung Kime5a18452012-08-06 13:41:20 +0900982 if (strcmp(section_name,
983 (curr_dso->short_name +
984 dso->short_name_len)) == 0)
985 goto new_symbol;
986
987 if (strcmp(section_name, ".text") == 0) {
Adrian Hunter39b12f782013-08-07 14:38:47 +0300988 /*
989 * The initial kernel mapping is based on
990 * kallsyms and identity maps. Overwrite it to
991 * map to the kernel dso.
992 */
993 if (remap_kernel && dso->kernel) {
994 remap_kernel = false;
995 map->start = shdr.sh_addr +
996 ref_reloc(kmap);
997 map->end = map->start + shdr.sh_size;
998 map->pgoff = shdr.sh_offset;
999 map->map_ip = map__map_ip;
1000 map->unmap_ip = map__unmap_ip;
1001 /* Ensure maps are correctly ordered */
Wang Nanba927322015-04-07 08:22:45 +00001002 if (kmaps) {
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001003 map__get(map);
Wang Nanba927322015-04-07 08:22:45 +00001004 map_groups__remove(kmaps, map);
1005 map_groups__insert(kmaps, map);
Arnaldo Carvalho de Melo84c2caf2015-05-25 16:59:56 -03001006 map__put(map);
Wang Nanba927322015-04-07 08:22:45 +00001007 }
Adrian Hunter39b12f782013-08-07 14:38:47 +03001008 }
1009
Adrian Hunter0131c4e2013-08-07 14:38:50 +03001010 /*
1011 * The initial module mapping is based on
1012 * /proc/modules mapped to offset zero.
1013 * Overwrite it to map to the module dso.
1014 */
1015 if (remap_kernel && kmodule) {
1016 remap_kernel = false;
1017 map->pgoff = shdr.sh_offset;
1018 }
1019
Namhyung Kime5a18452012-08-06 13:41:20 +09001020 curr_map = map;
1021 curr_dso = dso;
1022 goto new_symbol;
1023 }
1024
Adrian Hunter0131c4e2013-08-07 14:38:50 +03001025 if (!kmap)
1026 goto new_symbol;
1027
Namhyung Kime5a18452012-08-06 13:41:20 +09001028 snprintf(dso_name, sizeof(dso_name),
1029 "%s%s", dso->short_name, section_name);
1030
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001031 curr_map = map_groups__find_by_name(kmaps, dso_name);
Namhyung Kime5a18452012-08-06 13:41:20 +09001032 if (curr_map == NULL) {
1033 u64 start = sym.st_value;
1034
1035 if (kmodule)
1036 start += map->start + shdr.sh_offset;
1037
1038 curr_dso = dso__new(dso_name);
1039 if (curr_dso == NULL)
1040 goto out_elf_end;
1041 curr_dso->kernel = dso->kernel;
1042 curr_dso->long_name = dso->long_name;
1043 curr_dso->long_name_len = dso->long_name_len;
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001044 curr_map = map__new2(start, curr_dso);
Masami Hiramatsue7a78652015-12-09 11:11:18 +09001045 dso__put(curr_dso);
Namhyung Kime5a18452012-08-06 13:41:20 +09001046 if (curr_map == NULL) {
Namhyung Kime5a18452012-08-06 13:41:20 +09001047 goto out_elf_end;
1048 }
Adrian Hunter39b12f782013-08-07 14:38:47 +03001049 if (adjust_kernel_syms) {
1050 curr_map->start = shdr.sh_addr +
1051 ref_reloc(kmap);
1052 curr_map->end = curr_map->start +
1053 shdr.sh_size;
1054 curr_map->pgoff = shdr.sh_offset;
1055 } else {
1056 curr_map->map_ip = identity__map_ip;
1057 curr_map->unmap_ip = identity__map_ip;
1058 }
Namhyung Kime5a18452012-08-06 13:41:20 +09001059 curr_dso->symtab_type = dso->symtab_type;
Wang Nanba927322015-04-07 08:22:45 +00001060 map_groups__insert(kmaps, curr_map);
Masami Hiramatsue7a78652015-12-09 11:11:18 +09001061 /*
1062 * Add it before we drop the referece to curr_map,
1063 * i.e. while we still are sure to have a reference
1064 * to this DSO via curr_map->dso.
1065 */
1066 dsos__add(&map->groups->machine->dsos, curr_dso);
Masami Hiramatsu8d5c3402015-11-18 15:40:27 +09001067 /* kmaps already got it */
1068 map__put(curr_map);
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001069 dso__set_loaded(curr_dso);
Namhyung Kime5a18452012-08-06 13:41:20 +09001070 } else
1071 curr_dso = curr_map->dso;
Arnaldo Carvalho de Melo857140e2018-04-27 10:53:14 -03001072 } else if ((used_opd && runtime_ss->adjust_symbols) ||
1073 (!used_opd && syms_ss->adjust_symbols)) {
Namhyung Kime5a18452012-08-06 13:41:20 +09001074 pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64 " "
1075 "sh_addr: %#" PRIx64 " sh_offset: %#" PRIx64 "\n", __func__,
1076 (u64)sym.st_value, (u64)shdr.sh_addr,
1077 (u64)shdr.sh_offset);
1078 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
1079 }
Avi Kivity950b8352014-01-22 21:58:46 +02001080new_symbol:
Milian Wolff2a8d41b2016-08-30 13:41:02 +02001081 demangled = demangle_sym(dso, kmodule, elf_name);
1082 if (demangled != NULL)
1083 elf_name = demangled;
Namhyung Kime71e7942014-07-31 14:47:42 +09001084
Namhyung Kime5a18452012-08-06 13:41:20 +09001085 f = symbol__new(sym.st_value, sym.st_size,
Arnaldo Carvalho de Meloaf30bff2018-04-26 11:09:10 -03001086 GELF_ST_BIND(sym.st_info),
1087 GELF_ST_TYPE(sym.st_info), elf_name);
Namhyung Kime5a18452012-08-06 13:41:20 +09001088 free(demangled);
1089 if (!f)
1090 goto out_elf_end;
1091
Naveen N. Rao0b3c2262016-04-12 14:40:50 +05301092 arch__sym_update(f, &sym);
1093
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001094 __symbols__insert(&curr_dso->symbols, f, dso->kernel);
Arnaldo Carvalho de Melobe39db92016-09-01 19:25:52 -03001095 nr++;
Namhyung Kime5a18452012-08-06 13:41:20 +09001096 }
1097
1098 /*
1099 * For misannotated, zeroed, ASM function sizes.
1100 */
1101 if (nr > 0) {
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001102 symbols__fixup_end(&dso->symbols);
1103 symbols__fixup_duplicate(&dso->symbols);
Namhyung Kime5a18452012-08-06 13:41:20 +09001104 if (kmap) {
1105 /*
1106 * We need to fixup this here too because we create new
1107 * maps here, for things like vsyscall sections.
1108 */
Arnaldo Carvalho de Melo3183f8c2018-04-26 16:52:34 -03001109 map_groups__fixup_end(kmaps);
Namhyung Kime5a18452012-08-06 13:41:20 +09001110 }
1111 }
1112 err = nr;
1113out_elf_end:
Namhyung Kime5a18452012-08-06 13:41:20 +09001114 return err;
1115}
1116
Adrian Hunter8e0cf962013-08-07 14:38:51 +03001117static int elf_read_maps(Elf *elf, bool exe, mapfn_t mapfn, void *data)
1118{
1119 GElf_Phdr phdr;
1120 size_t i, phdrnum;
1121 int err;
1122 u64 sz;
1123
1124 if (elf_getphdrnum(elf, &phdrnum))
1125 return -1;
1126
1127 for (i = 0; i < phdrnum; i++) {
1128 if (gelf_getphdr(elf, i, &phdr) == NULL)
1129 return -1;
1130 if (phdr.p_type != PT_LOAD)
1131 continue;
1132 if (exe) {
1133 if (!(phdr.p_flags & PF_X))
1134 continue;
1135 } else {
1136 if (!(phdr.p_flags & PF_R))
1137 continue;
1138 }
1139 sz = min(phdr.p_memsz, phdr.p_filesz);
1140 if (!sz)
1141 continue;
1142 err = mapfn(phdr.p_vaddr, sz, phdr.p_offset, data);
1143 if (err)
1144 return err;
1145 }
1146 return 0;
1147}
1148
1149int file__read_maps(int fd, bool exe, mapfn_t mapfn, void *data,
1150 bool *is_64_bit)
1151{
1152 int err;
1153 Elf *elf;
1154
1155 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
1156 if (elf == NULL)
1157 return -1;
1158
1159 if (is_64_bit)
1160 *is_64_bit = (gelf_getclass(elf) == ELFCLASS64);
1161
1162 err = elf_read_maps(elf, exe, mapfn, data);
1163
1164 elf_end(elf);
1165 return err;
1166}
1167
Adrian Hunter2b5b8bb2014-07-22 16:17:59 +03001168enum dso_type dso__type_fd(int fd)
1169{
1170 enum dso_type dso_type = DSO__TYPE_UNKNOWN;
1171 GElf_Ehdr ehdr;
1172 Elf_Kind ek;
1173 Elf *elf;
1174
1175 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
1176 if (elf == NULL)
1177 goto out;
1178
1179 ek = elf_kind(elf);
1180 if (ek != ELF_K_ELF)
1181 goto out_end;
1182
1183 if (gelf_getclass(elf) == ELFCLASS64) {
1184 dso_type = DSO__TYPE_64BIT;
1185 goto out_end;
1186 }
1187
1188 if (gelf_getehdr(elf, &ehdr) == NULL)
1189 goto out_end;
1190
1191 if (ehdr.e_machine == EM_X86_64)
1192 dso_type = DSO__TYPE_X32BIT;
1193 else
1194 dso_type = DSO__TYPE_32BIT;
1195out_end:
1196 elf_end(elf);
1197out:
1198 return dso_type;
1199}
1200
Adrian Hunterafba19d2013-10-09 15:01:12 +03001201static int copy_bytes(int from, off_t from_offs, int to, off_t to_offs, u64 len)
1202{
1203 ssize_t r;
1204 size_t n;
1205 int err = -1;
1206 char *buf = malloc(page_size);
1207
1208 if (buf == NULL)
1209 return -1;
1210
1211 if (lseek(to, to_offs, SEEK_SET) != to_offs)
1212 goto out;
1213
1214 if (lseek(from, from_offs, SEEK_SET) != from_offs)
1215 goto out;
1216
1217 while (len) {
1218 n = page_size;
1219 if (len < n)
1220 n = len;
1221 /* Use read because mmap won't work on proc files */
1222 r = read(from, buf, n);
1223 if (r < 0)
1224 goto out;
1225 if (!r)
1226 break;
1227 n = r;
1228 r = write(to, buf, n);
1229 if (r < 0)
1230 goto out;
1231 if ((size_t)r != n)
1232 goto out;
1233 len -= n;
1234 }
1235
1236 err = 0;
1237out:
1238 free(buf);
1239 return err;
1240}
1241
1242struct kcore {
1243 int fd;
1244 int elfclass;
1245 Elf *elf;
1246 GElf_Ehdr ehdr;
1247};
1248
1249static int kcore__open(struct kcore *kcore, const char *filename)
1250{
1251 GElf_Ehdr *ehdr;
1252
1253 kcore->fd = open(filename, O_RDONLY);
1254 if (kcore->fd == -1)
1255 return -1;
1256
1257 kcore->elf = elf_begin(kcore->fd, ELF_C_READ, NULL);
1258 if (!kcore->elf)
1259 goto out_close;
1260
1261 kcore->elfclass = gelf_getclass(kcore->elf);
1262 if (kcore->elfclass == ELFCLASSNONE)
1263 goto out_end;
1264
1265 ehdr = gelf_getehdr(kcore->elf, &kcore->ehdr);
1266 if (!ehdr)
1267 goto out_end;
1268
1269 return 0;
1270
1271out_end:
1272 elf_end(kcore->elf);
1273out_close:
1274 close(kcore->fd);
1275 return -1;
1276}
1277
1278static int kcore__init(struct kcore *kcore, char *filename, int elfclass,
1279 bool temp)
1280{
Adrian Hunterafba19d2013-10-09 15:01:12 +03001281 kcore->elfclass = elfclass;
1282
1283 if (temp)
1284 kcore->fd = mkstemp(filename);
1285 else
1286 kcore->fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0400);
1287 if (kcore->fd == -1)
1288 return -1;
1289
1290 kcore->elf = elf_begin(kcore->fd, ELF_C_WRITE, NULL);
1291 if (!kcore->elf)
1292 goto out_close;
1293
1294 if (!gelf_newehdr(kcore->elf, elfclass))
1295 goto out_end;
1296
Adrian Hunterb5cabbc2015-09-24 13:05:22 +03001297 memset(&kcore->ehdr, 0, sizeof(GElf_Ehdr));
Adrian Hunterafba19d2013-10-09 15:01:12 +03001298
1299 return 0;
1300
1301out_end:
1302 elf_end(kcore->elf);
1303out_close:
1304 close(kcore->fd);
1305 unlink(filename);
1306 return -1;
1307}
1308
1309static void kcore__close(struct kcore *kcore)
1310{
1311 elf_end(kcore->elf);
1312 close(kcore->fd);
1313}
1314
1315static int kcore__copy_hdr(struct kcore *from, struct kcore *to, size_t count)
1316{
1317 GElf_Ehdr *ehdr = &to->ehdr;
1318 GElf_Ehdr *kehdr = &from->ehdr;
1319
1320 memcpy(ehdr->e_ident, kehdr->e_ident, EI_NIDENT);
1321 ehdr->e_type = kehdr->e_type;
1322 ehdr->e_machine = kehdr->e_machine;
1323 ehdr->e_version = kehdr->e_version;
1324 ehdr->e_entry = 0;
1325 ehdr->e_shoff = 0;
1326 ehdr->e_flags = kehdr->e_flags;
1327 ehdr->e_phnum = count;
1328 ehdr->e_shentsize = 0;
1329 ehdr->e_shnum = 0;
1330 ehdr->e_shstrndx = 0;
1331
1332 if (from->elfclass == ELFCLASS32) {
1333 ehdr->e_phoff = sizeof(Elf32_Ehdr);
1334 ehdr->e_ehsize = sizeof(Elf32_Ehdr);
1335 ehdr->e_phentsize = sizeof(Elf32_Phdr);
1336 } else {
1337 ehdr->e_phoff = sizeof(Elf64_Ehdr);
1338 ehdr->e_ehsize = sizeof(Elf64_Ehdr);
1339 ehdr->e_phentsize = sizeof(Elf64_Phdr);
1340 }
1341
1342 if (!gelf_update_ehdr(to->elf, ehdr))
1343 return -1;
1344
1345 if (!gelf_newphdr(to->elf, count))
1346 return -1;
1347
1348 return 0;
1349}
1350
1351static int kcore__add_phdr(struct kcore *kcore, int idx, off_t offset,
1352 u64 addr, u64 len)
1353{
Adrian Hunterb5cabbc2015-09-24 13:05:22 +03001354 GElf_Phdr phdr = {
1355 .p_type = PT_LOAD,
1356 .p_flags = PF_R | PF_W | PF_X,
1357 .p_offset = offset,
1358 .p_vaddr = addr,
1359 .p_paddr = 0,
1360 .p_filesz = len,
1361 .p_memsz = len,
1362 .p_align = page_size,
1363 };
Adrian Hunterafba19d2013-10-09 15:01:12 +03001364
Adrian Hunterb5cabbc2015-09-24 13:05:22 +03001365 if (!gelf_update_phdr(kcore->elf, idx, &phdr))
Adrian Hunterafba19d2013-10-09 15:01:12 +03001366 return -1;
1367
1368 return 0;
1369}
1370
1371static off_t kcore__write(struct kcore *kcore)
1372{
1373 return elf_update(kcore->elf, ELF_C_WRITE);
1374}
1375
Adrian Hunterfc1b6912013-10-14 16:57:29 +03001376struct phdr_data {
1377 off_t offset;
1378 u64 addr;
1379 u64 len;
1380};
1381
1382struct kcore_copy_info {
1383 u64 stext;
1384 u64 etext;
1385 u64 first_symbol;
1386 u64 last_symbol;
1387 u64 first_module;
1388 u64 last_module_symbol;
1389 struct phdr_data kernel_map;
1390 struct phdr_data modules_map;
1391};
1392
1393static int kcore_copy__process_kallsyms(void *arg, const char *name, char type,
1394 u64 start)
1395{
1396 struct kcore_copy_info *kci = arg;
1397
Arnaldo Carvalho de Meloe85e0e02018-04-25 17:16:31 -03001398 if (!kallsyms__is_function(type))
Adrian Hunterfc1b6912013-10-14 16:57:29 +03001399 return 0;
1400
1401 if (strchr(name, '[')) {
1402 if (start > kci->last_module_symbol)
1403 kci->last_module_symbol = start;
1404 return 0;
1405 }
1406
1407 if (!kci->first_symbol || start < kci->first_symbol)
1408 kci->first_symbol = start;
1409
1410 if (!kci->last_symbol || start > kci->last_symbol)
1411 kci->last_symbol = start;
1412
1413 if (!strcmp(name, "_stext")) {
1414 kci->stext = start;
1415 return 0;
1416 }
1417
1418 if (!strcmp(name, "_etext")) {
1419 kci->etext = start;
1420 return 0;
1421 }
1422
1423 return 0;
1424}
1425
1426static int kcore_copy__parse_kallsyms(struct kcore_copy_info *kci,
1427 const char *dir)
1428{
1429 char kallsyms_filename[PATH_MAX];
1430
1431 scnprintf(kallsyms_filename, PATH_MAX, "%s/kallsyms", dir);
1432
1433 if (symbol__restricted_filename(kallsyms_filename, "/proc/kallsyms"))
1434 return -1;
1435
1436 if (kallsyms__parse(kallsyms_filename, kci,
1437 kcore_copy__process_kallsyms) < 0)
1438 return -1;
1439
1440 return 0;
1441}
1442
1443static int kcore_copy__process_modules(void *arg,
1444 const char *name __maybe_unused,
Thomas Richter9ad46522017-08-03 15:49:02 +02001445 u64 start, u64 size __maybe_unused)
Adrian Hunterfc1b6912013-10-14 16:57:29 +03001446{
1447 struct kcore_copy_info *kci = arg;
1448
1449 if (!kci->first_module || start < kci->first_module)
1450 kci->first_module = start;
1451
1452 return 0;
1453}
1454
1455static int kcore_copy__parse_modules(struct kcore_copy_info *kci,
1456 const char *dir)
1457{
1458 char modules_filename[PATH_MAX];
1459
1460 scnprintf(modules_filename, PATH_MAX, "%s/modules", dir);
1461
1462 if (symbol__restricted_filename(modules_filename, "/proc/modules"))
1463 return -1;
1464
1465 if (modules__parse(modules_filename, kci,
1466 kcore_copy__process_modules) < 0)
1467 return -1;
1468
1469 return 0;
1470}
1471
1472static void kcore_copy__map(struct phdr_data *p, u64 start, u64 end, u64 pgoff,
1473 u64 s, u64 e)
1474{
1475 if (p->addr || s < start || s >= end)
1476 return;
1477
1478 p->addr = s;
1479 p->offset = (s - start) + pgoff;
1480 p->len = e < end ? e - s : end - s;
1481}
1482
1483static int kcore_copy__read_map(u64 start, u64 len, u64 pgoff, void *data)
1484{
1485 struct kcore_copy_info *kci = data;
1486 u64 end = start + len;
1487
1488 kcore_copy__map(&kci->kernel_map, start, end, pgoff, kci->stext,
1489 kci->etext);
1490
1491 kcore_copy__map(&kci->modules_map, start, end, pgoff, kci->first_module,
1492 kci->last_module_symbol);
1493
1494 return 0;
1495}
1496
1497static int kcore_copy__read_maps(struct kcore_copy_info *kci, Elf *elf)
1498{
1499 if (elf_read_maps(elf, true, kcore_copy__read_map, kci) < 0)
1500 return -1;
1501
1502 return 0;
1503}
1504
1505static int kcore_copy__calc_maps(struct kcore_copy_info *kci, const char *dir,
1506 Elf *elf)
1507{
1508 if (kcore_copy__parse_kallsyms(kci, dir))
1509 return -1;
1510
1511 if (kcore_copy__parse_modules(kci, dir))
1512 return -1;
1513
1514 if (kci->stext)
1515 kci->stext = round_down(kci->stext, page_size);
1516 else
1517 kci->stext = round_down(kci->first_symbol, page_size);
1518
1519 if (kci->etext) {
1520 kci->etext = round_up(kci->etext, page_size);
1521 } else if (kci->last_symbol) {
1522 kci->etext = round_up(kci->last_symbol, page_size);
1523 kci->etext += page_size;
1524 }
1525
1526 kci->first_module = round_down(kci->first_module, page_size);
1527
1528 if (kci->last_module_symbol) {
1529 kci->last_module_symbol = round_up(kci->last_module_symbol,
1530 page_size);
1531 kci->last_module_symbol += page_size;
1532 }
1533
1534 if (!kci->stext || !kci->etext)
1535 return -1;
1536
1537 if (kci->first_module && !kci->last_module_symbol)
1538 return -1;
1539
1540 return kcore_copy__read_maps(kci, elf);
1541}
1542
1543static int kcore_copy__copy_file(const char *from_dir, const char *to_dir,
1544 const char *name)
1545{
1546 char from_filename[PATH_MAX];
1547 char to_filename[PATH_MAX];
1548
1549 scnprintf(from_filename, PATH_MAX, "%s/%s", from_dir, name);
1550 scnprintf(to_filename, PATH_MAX, "%s/%s", to_dir, name);
1551
1552 return copyfile_mode(from_filename, to_filename, 0400);
1553}
1554
1555static int kcore_copy__unlink(const char *dir, const char *name)
1556{
1557 char filename[PATH_MAX];
1558
1559 scnprintf(filename, PATH_MAX, "%s/%s", dir, name);
1560
1561 return unlink(filename);
1562}
1563
1564static int kcore_copy__compare_fds(int from, int to)
1565{
1566 char *buf_from;
1567 char *buf_to;
1568 ssize_t ret;
1569 size_t len;
1570 int err = -1;
1571
1572 buf_from = malloc(page_size);
1573 buf_to = malloc(page_size);
1574 if (!buf_from || !buf_to)
1575 goto out;
1576
1577 while (1) {
1578 /* Use read because mmap won't work on proc files */
1579 ret = read(from, buf_from, page_size);
1580 if (ret < 0)
1581 goto out;
1582
1583 if (!ret)
1584 break;
1585
1586 len = ret;
1587
1588 if (readn(to, buf_to, len) != (int)len)
1589 goto out;
1590
1591 if (memcmp(buf_from, buf_to, len))
1592 goto out;
1593 }
1594
1595 err = 0;
1596out:
1597 free(buf_to);
1598 free(buf_from);
1599 return err;
1600}
1601
1602static int kcore_copy__compare_files(const char *from_filename,
1603 const char *to_filename)
1604{
1605 int from, to, err = -1;
1606
1607 from = open(from_filename, O_RDONLY);
1608 if (from < 0)
1609 return -1;
1610
1611 to = open(to_filename, O_RDONLY);
1612 if (to < 0)
1613 goto out_close_from;
1614
1615 err = kcore_copy__compare_fds(from, to);
1616
1617 close(to);
1618out_close_from:
1619 close(from);
1620 return err;
1621}
1622
1623static int kcore_copy__compare_file(const char *from_dir, const char *to_dir,
1624 const char *name)
1625{
1626 char from_filename[PATH_MAX];
1627 char to_filename[PATH_MAX];
1628
1629 scnprintf(from_filename, PATH_MAX, "%s/%s", from_dir, name);
1630 scnprintf(to_filename, PATH_MAX, "%s/%s", to_dir, name);
1631
1632 return kcore_copy__compare_files(from_filename, to_filename);
1633}
1634
1635/**
1636 * kcore_copy - copy kallsyms, modules and kcore from one directory to another.
1637 * @from_dir: from directory
1638 * @to_dir: to directory
1639 *
1640 * This function copies kallsyms, modules and kcore files from one directory to
1641 * another. kallsyms and modules are copied entirely. Only code segments are
1642 * copied from kcore. It is assumed that two segments suffice: one for the
1643 * kernel proper and one for all the modules. The code segments are determined
1644 * from kallsyms and modules files. The kernel map starts at _stext or the
1645 * lowest function symbol, and ends at _etext or the highest function symbol.
1646 * The module map starts at the lowest module address and ends at the highest
1647 * module symbol. Start addresses are rounded down to the nearest page. End
1648 * addresses are rounded up to the nearest page. An extra page is added to the
1649 * highest kernel symbol and highest module symbol to, hopefully, encompass that
1650 * symbol too. Because it contains only code sections, the resulting kcore is
1651 * unusual. One significant peculiarity is that the mapping (start -> pgoff)
1652 * is not the same for the kernel map and the modules map. That happens because
1653 * the data is copied adjacently whereas the original kcore has gaps. Finally,
1654 * kallsyms and modules files are compared with their copies to check that
1655 * modules have not been loaded or unloaded while the copies were taking place.
1656 *
1657 * Return: %0 on success, %-1 on failure.
1658 */
1659int kcore_copy(const char *from_dir, const char *to_dir)
1660{
1661 struct kcore kcore;
1662 struct kcore extract;
1663 size_t count = 2;
1664 int idx = 0, err = -1;
1665 off_t offset = page_size, sz, modules_offset = 0;
1666 struct kcore_copy_info kci = { .stext = 0, };
1667 char kcore_filename[PATH_MAX];
1668 char extract_filename[PATH_MAX];
1669
1670 if (kcore_copy__copy_file(from_dir, to_dir, "kallsyms"))
1671 return -1;
1672
1673 if (kcore_copy__copy_file(from_dir, to_dir, "modules"))
1674 goto out_unlink_kallsyms;
1675
1676 scnprintf(kcore_filename, PATH_MAX, "%s/kcore", from_dir);
1677 scnprintf(extract_filename, PATH_MAX, "%s/kcore", to_dir);
1678
1679 if (kcore__open(&kcore, kcore_filename))
1680 goto out_unlink_modules;
1681
1682 if (kcore_copy__calc_maps(&kci, from_dir, kcore.elf))
1683 goto out_kcore_close;
1684
1685 if (kcore__init(&extract, extract_filename, kcore.elfclass, false))
1686 goto out_kcore_close;
1687
1688 if (!kci.modules_map.addr)
1689 count -= 1;
1690
1691 if (kcore__copy_hdr(&kcore, &extract, count))
1692 goto out_extract_close;
1693
1694 if (kcore__add_phdr(&extract, idx++, offset, kci.kernel_map.addr,
1695 kci.kernel_map.len))
1696 goto out_extract_close;
1697
1698 if (kci.modules_map.addr) {
1699 modules_offset = offset + kci.kernel_map.len;
1700 if (kcore__add_phdr(&extract, idx, modules_offset,
1701 kci.modules_map.addr, kci.modules_map.len))
1702 goto out_extract_close;
1703 }
1704
1705 sz = kcore__write(&extract);
1706 if (sz < 0 || sz > offset)
1707 goto out_extract_close;
1708
1709 if (copy_bytes(kcore.fd, kci.kernel_map.offset, extract.fd, offset,
1710 kci.kernel_map.len))
1711 goto out_extract_close;
1712
1713 if (modules_offset && copy_bytes(kcore.fd, kci.modules_map.offset,
1714 extract.fd, modules_offset,
1715 kci.modules_map.len))
1716 goto out_extract_close;
1717
1718 if (kcore_copy__compare_file(from_dir, to_dir, "modules"))
1719 goto out_extract_close;
1720
1721 if (kcore_copy__compare_file(from_dir, to_dir, "kallsyms"))
1722 goto out_extract_close;
1723
1724 err = 0;
1725
1726out_extract_close:
1727 kcore__close(&extract);
1728 if (err)
1729 unlink(extract_filename);
1730out_kcore_close:
1731 kcore__close(&kcore);
1732out_unlink_modules:
1733 if (err)
1734 kcore_copy__unlink(to_dir, "modules");
1735out_unlink_kallsyms:
1736 if (err)
1737 kcore_copy__unlink(to_dir, "kallsyms");
1738
1739 return err;
1740}
1741
Adrian Hunterafba19d2013-10-09 15:01:12 +03001742int kcore_extract__create(struct kcore_extract *kce)
1743{
1744 struct kcore kcore;
1745 struct kcore extract;
1746 size_t count = 1;
1747 int idx = 0, err = -1;
1748 off_t offset = page_size, sz;
1749
1750 if (kcore__open(&kcore, kce->kcore_filename))
1751 return -1;
1752
1753 strcpy(kce->extract_filename, PERF_KCORE_EXTRACT);
1754 if (kcore__init(&extract, kce->extract_filename, kcore.elfclass, true))
1755 goto out_kcore_close;
1756
1757 if (kcore__copy_hdr(&kcore, &extract, count))
1758 goto out_extract_close;
1759
1760 if (kcore__add_phdr(&extract, idx, offset, kce->addr, kce->len))
1761 goto out_extract_close;
1762
1763 sz = kcore__write(&extract);
1764 if (sz < 0 || sz > offset)
1765 goto out_extract_close;
1766
1767 if (copy_bytes(kcore.fd, kce->offs, extract.fd, offset, kce->len))
1768 goto out_extract_close;
1769
1770 err = 0;
1771
1772out_extract_close:
1773 kcore__close(&extract);
1774 if (err)
1775 unlink(kce->extract_filename);
1776out_kcore_close:
1777 kcore__close(&kcore);
1778
1779 return err;
1780}
1781
1782void kcore_extract__delete(struct kcore_extract *kce)
1783{
1784 unlink(kce->extract_filename);
1785}
1786
Arnaldo Carvalho de Melo1c1a3a42016-07-12 12:19:09 -03001787#ifdef HAVE_GELF_GETNOTE_SUPPORT
Hemant Kumar060fa0c2016-07-01 17:03:46 +09001788/**
1789 * populate_sdt_note : Parse raw data and identify SDT note
1790 * @elf: elf of the opened file
1791 * @data: raw data of a section with description offset applied
1792 * @len: note description size
1793 * @type: type of the note
1794 * @sdt_notes: List to add the SDT note
1795 *
1796 * Responsible for parsing the @data in section .note.stapsdt in @elf and
1797 * if its an SDT note, it appends to @sdt_notes list.
1798 */
1799static int populate_sdt_note(Elf **elf, const char *data, size_t len,
1800 struct list_head *sdt_notes)
1801{
Alexis Berlemontbe881842016-12-14 01:07:31 +01001802 const char *provider, *name, *args;
Hemant Kumar060fa0c2016-07-01 17:03:46 +09001803 struct sdt_note *tmp = NULL;
1804 GElf_Ehdr ehdr;
1805 GElf_Addr base_off = 0;
1806 GElf_Shdr shdr;
1807 int ret = -EINVAL;
1808
1809 union {
1810 Elf64_Addr a64[NR_ADDR];
1811 Elf32_Addr a32[NR_ADDR];
1812 } buf;
1813
1814 Elf_Data dst = {
1815 .d_buf = &buf, .d_type = ELF_T_ADDR, .d_version = EV_CURRENT,
1816 .d_size = gelf_fsize((*elf), ELF_T_ADDR, NR_ADDR, EV_CURRENT),
1817 .d_off = 0, .d_align = 0
1818 };
1819 Elf_Data src = {
1820 .d_buf = (void *) data, .d_type = ELF_T_ADDR,
1821 .d_version = EV_CURRENT, .d_size = dst.d_size, .d_off = 0,
1822 .d_align = 0
1823 };
1824
1825 tmp = (struct sdt_note *)calloc(1, sizeof(struct sdt_note));
1826 if (!tmp) {
1827 ret = -ENOMEM;
1828 goto out_err;
1829 }
1830
1831 INIT_LIST_HEAD(&tmp->note_list);
1832
1833 if (len < dst.d_size + 3)
1834 goto out_free_note;
1835
1836 /* Translation from file representation to memory representation */
1837 if (gelf_xlatetom(*elf, &dst, &src,
1838 elf_getident(*elf, NULL)[EI_DATA]) == NULL) {
1839 pr_err("gelf_xlatetom : %s\n", elf_errmsg(-1));
1840 goto out_free_note;
1841 }
1842
1843 /* Populate the fields of sdt_note */
1844 provider = data + dst.d_size;
1845
1846 name = (const char *)memchr(provider, '\0', data + len - provider);
1847 if (name++ == NULL)
1848 goto out_free_note;
1849
1850 tmp->provider = strdup(provider);
1851 if (!tmp->provider) {
1852 ret = -ENOMEM;
1853 goto out_free_note;
1854 }
1855 tmp->name = strdup(name);
1856 if (!tmp->name) {
1857 ret = -ENOMEM;
1858 goto out_free_prov;
1859 }
1860
Alexis Berlemontbe881842016-12-14 01:07:31 +01001861 args = memchr(name, '\0', data + len - name);
1862
1863 /*
1864 * There is no argument if:
1865 * - We reached the end of the note;
1866 * - There is not enough room to hold a potential string;
1867 * - The argument string is empty or just contains ':'.
1868 */
1869 if (args == NULL || data + len - args < 2 ||
1870 args[1] == ':' || args[1] == '\0')
1871 tmp->args = NULL;
1872 else {
1873 tmp->args = strdup(++args);
1874 if (!tmp->args) {
1875 ret = -ENOMEM;
1876 goto out_free_name;
1877 }
1878 }
1879
Hemant Kumar060fa0c2016-07-01 17:03:46 +09001880 if (gelf_getclass(*elf) == ELFCLASS32) {
1881 memcpy(&tmp->addr, &buf, 3 * sizeof(Elf32_Addr));
1882 tmp->bit32 = true;
1883 } else {
1884 memcpy(&tmp->addr, &buf, 3 * sizeof(Elf64_Addr));
1885 tmp->bit32 = false;
1886 }
1887
1888 if (!gelf_getehdr(*elf, &ehdr)) {
1889 pr_debug("%s : cannot get elf header.\n", __func__);
1890 ret = -EBADF;
Alexis Berlemontbe881842016-12-14 01:07:31 +01001891 goto out_free_args;
Hemant Kumar060fa0c2016-07-01 17:03:46 +09001892 }
1893
1894 /* Adjust the prelink effect :
1895 * Find out the .stapsdt.base section.
1896 * This scn will help us to handle prelinking (if present).
1897 * Compare the retrieved file offset of the base section with the
1898 * base address in the description of the SDT note. If its different,
1899 * then accordingly, adjust the note location.
1900 */
1901 if (elf_section_by_name(*elf, &ehdr, &shdr, SDT_BASE_SCN, NULL)) {
1902 base_off = shdr.sh_offset;
1903 if (base_off) {
1904 if (tmp->bit32)
1905 tmp->addr.a32[0] = tmp->addr.a32[0] + base_off -
1906 tmp->addr.a32[1];
1907 else
1908 tmp->addr.a64[0] = tmp->addr.a64[0] + base_off -
1909 tmp->addr.a64[1];
1910 }
1911 }
1912
1913 list_add_tail(&tmp->note_list, sdt_notes);
1914 return 0;
1915
Alexis Berlemontbe881842016-12-14 01:07:31 +01001916out_free_args:
1917 free(tmp->args);
Hemant Kumar060fa0c2016-07-01 17:03:46 +09001918out_free_name:
1919 free(tmp->name);
1920out_free_prov:
1921 free(tmp->provider);
1922out_free_note:
1923 free(tmp);
1924out_err:
1925 return ret;
1926}
1927
1928/**
1929 * construct_sdt_notes_list : constructs a list of SDT notes
1930 * @elf : elf to look into
1931 * @sdt_notes : empty list_head
1932 *
1933 * Scans the sections in 'elf' for the section
1934 * .note.stapsdt. It, then calls populate_sdt_note to find
1935 * out the SDT events and populates the 'sdt_notes'.
1936 */
1937static int construct_sdt_notes_list(Elf *elf, struct list_head *sdt_notes)
1938{
1939 GElf_Ehdr ehdr;
1940 Elf_Scn *scn = NULL;
1941 Elf_Data *data;
1942 GElf_Shdr shdr;
1943 size_t shstrndx, next;
1944 GElf_Nhdr nhdr;
1945 size_t name_off, desc_off, offset;
1946 int ret = 0;
1947
1948 if (gelf_getehdr(elf, &ehdr) == NULL) {
1949 ret = -EBADF;
1950 goto out_ret;
1951 }
1952 if (elf_getshdrstrndx(elf, &shstrndx) != 0) {
1953 ret = -EBADF;
1954 goto out_ret;
1955 }
1956
1957 /* Look for the required section */
1958 scn = elf_section_by_name(elf, &ehdr, &shdr, SDT_NOTE_SCN, NULL);
1959 if (!scn) {
1960 ret = -ENOENT;
1961 goto out_ret;
1962 }
1963
1964 if ((shdr.sh_type != SHT_NOTE) || (shdr.sh_flags & SHF_ALLOC)) {
1965 ret = -ENOENT;
1966 goto out_ret;
1967 }
1968
1969 data = elf_getdata(scn, NULL);
1970
1971 /* Get the SDT notes */
1972 for (offset = 0; (next = gelf_getnote(data, offset, &nhdr, &name_off,
1973 &desc_off)) > 0; offset = next) {
1974 if (nhdr.n_namesz == sizeof(SDT_NOTE_NAME) &&
1975 !memcmp(data->d_buf + name_off, SDT_NOTE_NAME,
1976 sizeof(SDT_NOTE_NAME))) {
1977 /* Check the type of the note */
1978 if (nhdr.n_type != SDT_NOTE_TYPE)
1979 goto out_ret;
1980
1981 ret = populate_sdt_note(&elf, ((data->d_buf) + desc_off),
1982 nhdr.n_descsz, sdt_notes);
1983 if (ret < 0)
1984 goto out_ret;
1985 }
1986 }
1987 if (list_empty(sdt_notes))
1988 ret = -ENOENT;
1989
1990out_ret:
1991 return ret;
1992}
1993
1994/**
1995 * get_sdt_note_list : Wrapper to construct a list of sdt notes
1996 * @head : empty list_head
1997 * @target : file to find SDT notes from
1998 *
1999 * This opens the file, initializes
2000 * the ELF and then calls construct_sdt_notes_list.
2001 */
2002int get_sdt_note_list(struct list_head *head, const char *target)
2003{
2004 Elf *elf;
2005 int fd, ret;
2006
2007 fd = open(target, O_RDONLY);
2008 if (fd < 0)
2009 return -EBADF;
2010
2011 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
2012 if (!elf) {
2013 ret = -EBADF;
2014 goto out_close;
2015 }
2016 ret = construct_sdt_notes_list(elf, head);
2017 elf_end(elf);
2018out_close:
2019 close(fd);
2020 return ret;
2021}
2022
2023/**
2024 * cleanup_sdt_note_list : free the sdt notes' list
2025 * @sdt_notes: sdt notes' list
2026 *
2027 * Free up the SDT notes in @sdt_notes.
2028 * Returns the number of SDT notes free'd.
2029 */
2030int cleanup_sdt_note_list(struct list_head *sdt_notes)
2031{
2032 struct sdt_note *tmp, *pos;
2033 int nr_free = 0;
2034
2035 list_for_each_entry_safe(pos, tmp, sdt_notes, note_list) {
2036 list_del(&pos->note_list);
2037 free(pos->name);
2038 free(pos->provider);
2039 free(pos);
2040 nr_free++;
2041 }
2042 return nr_free;
2043}
2044
2045/**
2046 * sdt_notes__get_count: Counts the number of sdt events
2047 * @start: list_head to sdt_notes list
2048 *
2049 * Returns the number of SDT notes in a list
2050 */
2051int sdt_notes__get_count(struct list_head *start)
2052{
2053 struct sdt_note *sdt_ptr;
2054 int count = 0;
2055
2056 list_for_each_entry(sdt_ptr, start, note_list)
2057 count++;
2058 return count;
2059}
Arnaldo Carvalho de Melo1c1a3a42016-07-12 12:19:09 -03002060#endif
Hemant Kumar060fa0c2016-07-01 17:03:46 +09002061
Namhyung Kime5a18452012-08-06 13:41:20 +09002062void symbol__elf_init(void)
2063{
2064 elf_version(EV_CURRENT);
2065}