perf probe ppc: Enable matching against dot symbols automatically
[linux-2.6-block.git] / tools / perf / util / symbol-elf.c
CommitLineData
e5a1845f
NK
1#include <fcntl.h>
2#include <stdio.h>
3#include <errno.h>
4#include <string.h>
5#include <unistd.h>
6#include <inttypes.h>
7
8#include "symbol.h"
8fa7d87f 9#include "machine.h"
922d0e4d 10#include "vdso.h"
c506c96b 11#include <symbol/kallsyms.h>
e5a1845f
NK
12#include "debug.h"
13
e370a3d5
DA
14#ifndef EM_AARCH64
15#define EM_AARCH64 183 /* ARM 64 bit */
16#endif
17
18
aaba4e12
ACM
19#ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
20extern char *cplus_demangle(const char *, int);
21
22static inline char *bfd_demangle(void __maybe_unused *v, const char *c, int i)
23{
24 return cplus_demangle(c, i);
25}
26#else
27#ifdef NO_DEMANGLE
28static inline char *bfd_demangle(void __maybe_unused *v,
29 const char __maybe_unused *c,
30 int __maybe_unused i)
31{
32 return NULL;
33}
34#else
35#define PACKAGE 'perf'
36#include <bfd.h>
37#endif
38#endif
39
89fe808a 40#ifndef HAVE_ELF_GETPHDRNUM_SUPPORT
e955d5c4
AH
41static int elf_getphdrnum(Elf *elf, size_t *dst)
42{
43 GElf_Ehdr gehdr;
44 GElf_Ehdr *ehdr;
45
46 ehdr = gelf_getehdr(elf, &gehdr);
47 if (!ehdr)
48 return -1;
49
50 *dst = ehdr->e_phnum;
51
52 return 0;
53}
54#endif
55
e5a1845f
NK
56#ifndef NT_GNU_BUILD_ID
57#define NT_GNU_BUILD_ID 3
58#endif
59
60/**
61 * elf_symtab__for_each_symbol - iterate thru all the symbols
62 *
63 * @syms: struct elf_symtab instance to iterate
64 * @idx: uint32_t idx
65 * @sym: GElf_Sym iterator
66 */
67#define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
68 for (idx = 0, gelf_getsym(syms, idx, &sym);\
69 idx < nr_syms; \
70 idx++, gelf_getsym(syms, idx, &sym))
71
72static inline uint8_t elf_sym__type(const GElf_Sym *sym)
73{
74 return GELF_ST_TYPE(sym->st_info);
75}
76
4e31050f
VL
77#ifndef STT_GNU_IFUNC
78#define STT_GNU_IFUNC 10
79#endif
80
e5a1845f
NK
81static inline int elf_sym__is_function(const GElf_Sym *sym)
82{
a2f3b6bf
AH
83 return (elf_sym__type(sym) == STT_FUNC ||
84 elf_sym__type(sym) == STT_GNU_IFUNC) &&
e5a1845f
NK
85 sym->st_name != 0 &&
86 sym->st_shndx != SHN_UNDEF;
87}
88
89static inline bool elf_sym__is_object(const GElf_Sym *sym)
90{
91 return elf_sym__type(sym) == STT_OBJECT &&
92 sym->st_name != 0 &&
93 sym->st_shndx != SHN_UNDEF;
94}
95
96static inline int elf_sym__is_label(const GElf_Sym *sym)
97{
98 return elf_sym__type(sym) == STT_NOTYPE &&
99 sym->st_name != 0 &&
100 sym->st_shndx != SHN_UNDEF &&
101 sym->st_shndx != SHN_ABS;
102}
103
104static bool elf_sym__is_a(GElf_Sym *sym, enum map_type type)
105{
106 switch (type) {
107 case MAP__FUNCTION:
108 return elf_sym__is_function(sym);
109 case MAP__VARIABLE:
110 return elf_sym__is_object(sym);
111 default:
112 return false;
113 }
114}
115
116static inline const char *elf_sym__name(const GElf_Sym *sym,
117 const Elf_Data *symstrs)
118{
119 return symstrs->d_buf + sym->st_name;
120}
121
122static inline const char *elf_sec__name(const GElf_Shdr *shdr,
123 const Elf_Data *secstrs)
124{
125 return secstrs->d_buf + shdr->sh_name;
126}
127
128static inline int elf_sec__is_text(const GElf_Shdr *shdr,
129 const Elf_Data *secstrs)
130{
131 return strstr(elf_sec__name(shdr, secstrs), "text") != NULL;
132}
133
134static inline bool elf_sec__is_data(const GElf_Shdr *shdr,
135 const Elf_Data *secstrs)
136{
137 return strstr(elf_sec__name(shdr, secstrs), "data") != NULL;
138}
139
140static bool elf_sec__is_a(GElf_Shdr *shdr, Elf_Data *secstrs,
141 enum map_type type)
142{
143 switch (type) {
144 case MAP__FUNCTION:
145 return elf_sec__is_text(shdr, secstrs);
146 case MAP__VARIABLE:
147 return elf_sec__is_data(shdr, secstrs);
148 default:
149 return false;
150 }
151}
152
153static size_t elf_addr_to_index(Elf *elf, GElf_Addr addr)
154{
155 Elf_Scn *sec = NULL;
156 GElf_Shdr shdr;
157 size_t cnt = 1;
158
159 while ((sec = elf_nextscn(elf, sec)) != NULL) {
160 gelf_getshdr(sec, &shdr);
161
162 if ((addr >= shdr.sh_addr) &&
163 (addr < (shdr.sh_addr + shdr.sh_size)))
164 return cnt;
165
166 ++cnt;
167 }
168
169 return -1;
170}
171
99ca4233
MH
172Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
173 GElf_Shdr *shp, const char *name, size_t *idx)
e5a1845f
NK
174{
175 Elf_Scn *sec = NULL;
176 size_t cnt = 1;
177
49274654
CS
178 /* Elf is corrupted/truncated, avoid calling elf_strptr. */
179 if (!elf_rawdata(elf_getscn(elf, ep->e_shstrndx), NULL))
180 return NULL;
181
e5a1845f
NK
182 while ((sec = elf_nextscn(elf, sec)) != NULL) {
183 char *str;
184
185 gelf_getshdr(sec, shp);
186 str = elf_strptr(elf, ep->e_shstrndx, shp->sh_name);
155b3a13 187 if (str && !strcmp(name, str)) {
e5a1845f
NK
188 if (idx)
189 *idx = cnt;
155b3a13 190 return sec;
e5a1845f
NK
191 }
192 ++cnt;
193 }
194
155b3a13 195 return NULL;
e5a1845f
NK
196}
197
198#define elf_section__for_each_rel(reldata, pos, pos_mem, idx, nr_entries) \
199 for (idx = 0, pos = gelf_getrel(reldata, 0, &pos_mem); \
200 idx < nr_entries; \
201 ++idx, pos = gelf_getrel(reldata, idx, &pos_mem))
202
203#define elf_section__for_each_rela(reldata, pos, pos_mem, idx, nr_entries) \
204 for (idx = 0, pos = gelf_getrela(reldata, 0, &pos_mem); \
205 idx < nr_entries; \
206 ++idx, pos = gelf_getrela(reldata, idx, &pos_mem))
207
208/*
209 * We need to check if we have a .dynsym, so that we can handle the
210 * .plt, synthesizing its symbols, that aren't on the symtabs (be it
211 * .dynsym or .symtab).
212 * And always look at the original dso, not at debuginfo packages, that
213 * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
214 */
a44f605b 215int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss, struct map *map,
e5a1845f
NK
216 symbol_filter_t filter)
217{
218 uint32_t nr_rel_entries, idx;
219 GElf_Sym sym;
220 u64 plt_offset;
221 GElf_Shdr shdr_plt;
222 struct symbol *f;
223 GElf_Shdr shdr_rel_plt, shdr_dynsym;
224 Elf_Data *reldata, *syms, *symstrs;
225 Elf_Scn *scn_plt_rel, *scn_symstrs, *scn_dynsym;
226 size_t dynsym_idx;
227 GElf_Ehdr ehdr;
228 char sympltname[1024];
229 Elf *elf;
a44f605b 230 int nr = 0, symidx, err = 0;
e5a1845f 231
f47b58b7
DA
232 if (!ss->dynsym)
233 return 0;
234
a44f605b
CS
235 elf = ss->elf;
236 ehdr = ss->ehdr;
e5a1845f 237
a44f605b
CS
238 scn_dynsym = ss->dynsym;
239 shdr_dynsym = ss->dynshdr;
240 dynsym_idx = ss->dynsym_idx;
e5a1845f 241
e5a1845f
NK
242 if (scn_dynsym == NULL)
243 goto out_elf_end;
244
245 scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
246 ".rela.plt", NULL);
247 if (scn_plt_rel == NULL) {
248 scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
249 ".rel.plt", NULL);
250 if (scn_plt_rel == NULL)
251 goto out_elf_end;
252 }
253
254 err = -1;
255
256 if (shdr_rel_plt.sh_link != dynsym_idx)
257 goto out_elf_end;
258
259 if (elf_section_by_name(elf, &ehdr, &shdr_plt, ".plt", NULL) == NULL)
260 goto out_elf_end;
261
262 /*
263 * Fetch the relocation section to find the idxes to the GOT
264 * and the symbols in the .dynsym they refer to.
265 */
266 reldata = elf_getdata(scn_plt_rel, NULL);
267 if (reldata == NULL)
268 goto out_elf_end;
269
270 syms = elf_getdata(scn_dynsym, NULL);
271 if (syms == NULL)
272 goto out_elf_end;
273
274 scn_symstrs = elf_getscn(elf, shdr_dynsym.sh_link);
275 if (scn_symstrs == NULL)
276 goto out_elf_end;
277
278 symstrs = elf_getdata(scn_symstrs, NULL);
279 if (symstrs == NULL)
280 goto out_elf_end;
281
52f9ddba
CS
282 if (symstrs->d_size == 0)
283 goto out_elf_end;
284
e5a1845f
NK
285 nr_rel_entries = shdr_rel_plt.sh_size / shdr_rel_plt.sh_entsize;
286 plt_offset = shdr_plt.sh_offset;
287
288 if (shdr_rel_plt.sh_type == SHT_RELA) {
289 GElf_Rela pos_mem, *pos;
290
291 elf_section__for_each_rela(reldata, pos, pos_mem, idx,
292 nr_rel_entries) {
293 symidx = GELF_R_SYM(pos->r_info);
294 plt_offset += shdr_plt.sh_entsize;
295 gelf_getsym(syms, symidx, &sym);
296 snprintf(sympltname, sizeof(sympltname),
297 "%s@plt", elf_sym__name(&sym, symstrs));
298
299 f = symbol__new(plt_offset, shdr_plt.sh_entsize,
300 STB_GLOBAL, sympltname);
301 if (!f)
302 goto out_elf_end;
303
304 if (filter && filter(map, f))
305 symbol__delete(f);
306 else {
307 symbols__insert(&dso->symbols[map->type], f);
308 ++nr;
309 }
310 }
311 } else if (shdr_rel_plt.sh_type == SHT_REL) {
312 GElf_Rel pos_mem, *pos;
313 elf_section__for_each_rel(reldata, pos, pos_mem, idx,
314 nr_rel_entries) {
315 symidx = GELF_R_SYM(pos->r_info);
316 plt_offset += shdr_plt.sh_entsize;
317 gelf_getsym(syms, symidx, &sym);
318 snprintf(sympltname, sizeof(sympltname),
319 "%s@plt", elf_sym__name(&sym, symstrs));
320
321 f = symbol__new(plt_offset, shdr_plt.sh_entsize,
322 STB_GLOBAL, sympltname);
323 if (!f)
324 goto out_elf_end;
325
326 if (filter && filter(map, f))
327 symbol__delete(f);
328 else {
329 symbols__insert(&dso->symbols[map->type], f);
330 ++nr;
331 }
332 }
333 }
334
335 err = 0;
336out_elf_end:
e5a1845f
NK
337 if (err == 0)
338 return nr;
e5a1845f
NK
339 pr_debug("%s: problems reading %s PLT info.\n",
340 __func__, dso->long_name);
341 return 0;
342}
343
344/*
345 * Align offset to 4 bytes as needed for note name and descriptor data.
346 */
347#define NOTE_ALIGN(n) (((n) + 3) & -4U)
348
349static int elf_read_build_id(Elf *elf, void *bf, size_t size)
350{
351 int err = -1;
352 GElf_Ehdr ehdr;
353 GElf_Shdr shdr;
354 Elf_Data *data;
355 Elf_Scn *sec;
356 Elf_Kind ek;
357 void *ptr;
358
359 if (size < BUILD_ID_SIZE)
360 goto out;
361
362 ek = elf_kind(elf);
363 if (ek != ELF_K_ELF)
364 goto out;
365
366 if (gelf_getehdr(elf, &ehdr) == NULL) {
367 pr_err("%s: cannot get elf header.\n", __func__);
368 goto out;
369 }
370
371 /*
372 * Check following sections for notes:
373 * '.note.gnu.build-id'
374 * '.notes'
375 * '.note' (VDSO specific)
376 */
377 do {
378 sec = elf_section_by_name(elf, &ehdr, &shdr,
379 ".note.gnu.build-id", NULL);
380 if (sec)
381 break;
382
383 sec = elf_section_by_name(elf, &ehdr, &shdr,
384 ".notes", NULL);
385 if (sec)
386 break;
387
388 sec = elf_section_by_name(elf, &ehdr, &shdr,
389 ".note", NULL);
390 if (sec)
391 break;
392
393 return err;
394
395 } while (0);
396
397 data = elf_getdata(sec, NULL);
398 if (data == NULL)
399 goto out;
400
401 ptr = data->d_buf;
402 while (ptr < (data->d_buf + data->d_size)) {
403 GElf_Nhdr *nhdr = ptr;
404 size_t namesz = NOTE_ALIGN(nhdr->n_namesz),
405 descsz = NOTE_ALIGN(nhdr->n_descsz);
406 const char *name;
407
408 ptr += sizeof(*nhdr);
409 name = ptr;
410 ptr += namesz;
411 if (nhdr->n_type == NT_GNU_BUILD_ID &&
412 nhdr->n_namesz == sizeof("GNU")) {
413 if (memcmp(name, "GNU", sizeof("GNU")) == 0) {
414 size_t sz = min(size, descsz);
415 memcpy(bf, ptr, sz);
416 memset(bf + sz, 0, size - sz);
417 err = descsz;
418 break;
419 }
420 }
421 ptr += descsz;
422 }
423
424out:
425 return err;
426}
427
428int filename__read_build_id(const char *filename, void *bf, size_t size)
429{
430 int fd, err = -1;
431 Elf *elf;
432
433 if (size < BUILD_ID_SIZE)
434 goto out;
435
436 fd = open(filename, O_RDONLY);
437 if (fd < 0)
438 goto out;
439
440 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
441 if (elf == NULL) {
442 pr_debug2("%s: cannot read %s ELF file.\n", __func__, filename);
443 goto out_close;
444 }
445
446 err = elf_read_build_id(elf, bf, size);
447
448 elf_end(elf);
449out_close:
450 close(fd);
451out:
452 return err;
453}
454
455int sysfs__read_build_id(const char *filename, void *build_id, size_t size)
456{
457 int fd, err = -1;
458
459 if (size < BUILD_ID_SIZE)
460 goto out;
461
462 fd = open(filename, O_RDONLY);
463 if (fd < 0)
464 goto out;
465
466 while (1) {
467 char bf[BUFSIZ];
468 GElf_Nhdr nhdr;
469 size_t namesz, descsz;
470
471 if (read(fd, &nhdr, sizeof(nhdr)) != sizeof(nhdr))
472 break;
473
474 namesz = NOTE_ALIGN(nhdr.n_namesz);
475 descsz = NOTE_ALIGN(nhdr.n_descsz);
476 if (nhdr.n_type == NT_GNU_BUILD_ID &&
477 nhdr.n_namesz == sizeof("GNU")) {
478 if (read(fd, bf, namesz) != (ssize_t)namesz)
479 break;
480 if (memcmp(bf, "GNU", sizeof("GNU")) == 0) {
481 size_t sz = min(descsz, size);
482 if (read(fd, build_id, sz) == (ssize_t)sz) {
483 memset(build_id + sz, 0, size - sz);
484 err = 0;
485 break;
486 }
487 } else if (read(fd, bf, descsz) != (ssize_t)descsz)
488 break;
489 } else {
490 int n = namesz + descsz;
491 if (read(fd, bf, n) != n)
492 break;
493 }
494 }
495 close(fd);
496out:
497 return err;
498}
499
500int filename__read_debuglink(const char *filename, char *debuglink,
501 size_t size)
502{
503 int fd, err = -1;
504 Elf *elf;
505 GElf_Ehdr ehdr;
506 GElf_Shdr shdr;
507 Elf_Data *data;
508 Elf_Scn *sec;
509 Elf_Kind ek;
510
511 fd = open(filename, O_RDONLY);
512 if (fd < 0)
513 goto out;
514
515 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
516 if (elf == NULL) {
517 pr_debug2("%s: cannot read %s ELF file.\n", __func__, filename);
518 goto out_close;
519 }
520
521 ek = elf_kind(elf);
522 if (ek != ELF_K_ELF)
784f3390 523 goto out_elf_end;
e5a1845f
NK
524
525 if (gelf_getehdr(elf, &ehdr) == NULL) {
526 pr_err("%s: cannot get elf header.\n", __func__);
784f3390 527 goto out_elf_end;
e5a1845f
NK
528 }
529
530 sec = elf_section_by_name(elf, &ehdr, &shdr,
531 ".gnu_debuglink", NULL);
532 if (sec == NULL)
784f3390 533 goto out_elf_end;
e5a1845f
NK
534
535 data = elf_getdata(sec, NULL);
536 if (data == NULL)
784f3390 537 goto out_elf_end;
e5a1845f
NK
538
539 /* the start of this section is a zero-terminated string */
540 strncpy(debuglink, data->d_buf, size);
541
0d3dc5e8
SE
542 err = 0;
543
784f3390 544out_elf_end:
e5a1845f 545 elf_end(elf);
e5a1845f
NK
546out_close:
547 close(fd);
548out:
549 return err;
550}
551
552static int dso__swap_init(struct dso *dso, unsigned char eidata)
553{
554 static unsigned int const endian = 1;
555
556 dso->needs_swap = DSO_SWAP__NO;
557
558 switch (eidata) {
559 case ELFDATA2LSB:
560 /* We are big endian, DSO is little endian. */
561 if (*(unsigned char const *)&endian != 1)
562 dso->needs_swap = DSO_SWAP__YES;
563 break;
564
565 case ELFDATA2MSB:
566 /* We are little endian, DSO is big endian. */
567 if (*(unsigned char const *)&endian != 0)
568 dso->needs_swap = DSO_SWAP__YES;
569 break;
570
571 default:
572 pr_err("unrecognized DSO data encoding %d\n", eidata);
573 return -EINVAL;
574 }
575
576 return 0;
577}
578
c00c48fc
NK
579static int decompress_kmodule(struct dso *dso, const char *name,
580 enum dso_binary_type type)
581{
914f85c4 582 int fd = -1;
c00c48fc 583 char tmpbuf[] = "/tmp/perf-kmod-XXXXXX";
914f85c4 584 struct kmod_path m;
c00c48fc 585
0b064f43
NK
586 if (type != DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE_COMP &&
587 type != DSO_BINARY_TYPE__GUEST_KMODULE_COMP &&
588 type != DSO_BINARY_TYPE__BUILD_ID_CACHE)
c00c48fc
NK
589 return -1;
590
914f85c4
JO
591 if (type == DSO_BINARY_TYPE__BUILD_ID_CACHE)
592 name = dso->long_name;
593
594 if (kmod_path__parse_ext(&m, name) || !m.comp)
595 return -1;
c00c48fc
NK
596
597 fd = mkstemp(tmpbuf);
18425f13
ACM
598 if (fd < 0) {
599 dso->load_errno = errno;
914f85c4 600 goto out;
18425f13 601 }
c00c48fc 602
914f85c4 603 if (!decompress_to_file(m.ext, name, fd)) {
18425f13 604 dso->load_errno = DSO_LOAD_ERRNO__DECOMPRESSION_FAILURE;
c00c48fc
NK
605 close(fd);
606 fd = -1;
607 }
608
609 unlink(tmpbuf);
610
914f85c4
JO
611out:
612 free(m.ext);
c00c48fc
NK
613 return fd;
614}
615
3aafe5ae
CS
616bool symsrc__possibly_runtime(struct symsrc *ss)
617{
618 return ss->dynsym || ss->opdsec;
619}
620
d26cd12b
CS
621bool symsrc__has_symtab(struct symsrc *ss)
622{
623 return ss->symtab != NULL;
624}
b68e2f91
CS
625
626void symsrc__destroy(struct symsrc *ss)
627{
74cf249d 628 zfree(&ss->name);
b68e2f91
CS
629 elf_end(ss->elf);
630 close(ss->fd);
631}
632
d2332098
NR
633bool __weak elf__needs_adjust_symbols(GElf_Ehdr ehdr)
634{
635 return ehdr.e_type == ET_EXEC || ehdr.e_type == ET_REL;
636}
637
b68e2f91
CS
638int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
639 enum dso_binary_type type)
e5a1845f 640{
e5a1845f 641 int err = -1;
e5a1845f 642 GElf_Ehdr ehdr;
e5a1845f 643 Elf *elf;
b68e2f91
CS
644 int fd;
645
18425f13 646 if (dso__needs_decompress(dso)) {
c00c48fc 647 fd = decompress_kmodule(dso, name, type);
18425f13
ACM
648 if (fd < 0)
649 return -1;
650 } else {
c00c48fc 651 fd = open(name, O_RDONLY);
18425f13
ACM
652 if (fd < 0) {
653 dso->load_errno = errno;
654 return -1;
655 }
656 }
e5a1845f
NK
657
658 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
659 if (elf == NULL) {
660 pr_debug("%s: cannot read %s ELF file.\n", __func__, name);
18425f13 661 dso->load_errno = DSO_LOAD_ERRNO__INVALID_ELF;
e5a1845f
NK
662 goto out_close;
663 }
664
665 if (gelf_getehdr(elf, &ehdr) == NULL) {
18425f13 666 dso->load_errno = DSO_LOAD_ERRNO__INVALID_ELF;
e5a1845f
NK
667 pr_debug("%s: cannot get elf header.\n", __func__);
668 goto out_elf_end;
669 }
670
18425f13
ACM
671 if (dso__swap_init(dso, ehdr.e_ident[EI_DATA])) {
672 dso->load_errno = DSO_LOAD_ERRNO__INTERNAL_ERROR;
e5a1845f 673 goto out_elf_end;
18425f13 674 }
e5a1845f
NK
675
676 /* Always reject images with a mismatched build-id: */
677 if (dso->has_build_id) {
678 u8 build_id[BUILD_ID_SIZE];
679
18425f13
ACM
680 if (elf_read_build_id(elf, build_id, BUILD_ID_SIZE) < 0) {
681 dso->load_errno = DSO_LOAD_ERRNO__CANNOT_READ_BUILDID;
e5a1845f 682 goto out_elf_end;
18425f13 683 }
e5a1845f 684
18425f13
ACM
685 if (!dso__build_id_equal(dso, build_id)) {
686 dso->load_errno = DSO_LOAD_ERRNO__MISMATCHING_BUILDID;
e5a1845f 687 goto out_elf_end;
18425f13 688 }
e5a1845f
NK
689 }
690
c6d8f2a4
AH
691 ss->is_64_bit = (gelf_getclass(elf) == ELFCLASS64);
692
b68e2f91
CS
693 ss->symtab = elf_section_by_name(elf, &ehdr, &ss->symshdr, ".symtab",
694 NULL);
695 if (ss->symshdr.sh_type != SHT_SYMTAB)
696 ss->symtab = NULL;
697
698 ss->dynsym_idx = 0;
699 ss->dynsym = elf_section_by_name(elf, &ehdr, &ss->dynshdr, ".dynsym",
700 &ss->dynsym_idx);
701 if (ss->dynshdr.sh_type != SHT_DYNSYM)
702 ss->dynsym = NULL;
703
704 ss->opdidx = 0;
705 ss->opdsec = elf_section_by_name(elf, &ehdr, &ss->opdshdr, ".opd",
706 &ss->opdidx);
707 if (ss->opdshdr.sh_type != SHT_PROGBITS)
708 ss->opdsec = NULL;
709
710 if (dso->kernel == DSO_TYPE_USER) {
711 GElf_Shdr shdr;
712 ss->adjust_symbols = (ehdr.e_type == ET_EXEC ||
0131c4ec 713 ehdr.e_type == ET_REL ||
51682dc7 714 dso__is_vdso(dso) ||
b68e2f91
CS
715 elf_section_by_name(elf, &ehdr, &shdr,
716 ".gnu.prelink_undo",
717 NULL) != NULL);
718 } else {
d2332098 719 ss->adjust_symbols = elf__needs_adjust_symbols(ehdr);
b68e2f91
CS
720 }
721
722 ss->name = strdup(name);
18425f13
ACM
723 if (!ss->name) {
724 dso->load_errno = errno;
b68e2f91 725 goto out_elf_end;
18425f13 726 }
b68e2f91
CS
727
728 ss->elf = elf;
729 ss->fd = fd;
730 ss->ehdr = ehdr;
731 ss->type = type;
732
733 return 0;
734
735out_elf_end:
736 elf_end(elf);
737out_close:
738 close(fd);
739 return err;
740}
741
39b12f78
AH
742/**
743 * ref_reloc_sym_not_found - has kernel relocation symbol been found.
744 * @kmap: kernel maps and relocation reference symbol
745 *
746 * This function returns %true if we are dealing with the kernel maps and the
747 * relocation reference symbol has not yet been found. Otherwise %false is
748 * returned.
749 */
750static bool ref_reloc_sym_not_found(struct kmap *kmap)
751{
752 return kmap && kmap->ref_reloc_sym && kmap->ref_reloc_sym->name &&
753 !kmap->ref_reloc_sym->unrelocated_addr;
754}
755
756/**
757 * ref_reloc - kernel relocation offset.
758 * @kmap: kernel maps and relocation reference symbol
759 *
760 * This function returns the offset of kernel addresses as determined by using
761 * the relocation reference symbol i.e. if the kernel has not been relocated
762 * then the return value is zero.
763 */
764static u64 ref_reloc(struct kmap *kmap)
765{
766 if (kmap && kmap->ref_reloc_sym &&
767 kmap->ref_reloc_sym->unrelocated_addr)
768 return kmap->ref_reloc_sym->addr -
769 kmap->ref_reloc_sym->unrelocated_addr;
770 return 0;
771}
772
763122ad
AK
773static bool want_demangle(bool is_kernel_sym)
774{
775 return is_kernel_sym ? symbol_conf.demangle_kernel : symbol_conf.demangle;
776}
777
261360b6
CS
778int dso__load_sym(struct dso *dso, struct map *map,
779 struct symsrc *syms_ss, struct symsrc *runtime_ss,
d26cd12b 780 symbol_filter_t filter, int kmodule)
b68e2f91
CS
781{
782 struct kmap *kmap = dso->kernel ? map__kmap(map) : NULL;
ba92732e 783 struct map_groups *kmaps = kmap ? map__kmaps(map) : NULL;
b68e2f91
CS
784 struct map *curr_map = map;
785 struct dso *curr_dso = dso;
786 Elf_Data *symstrs, *secstrs;
787 uint32_t nr_syms;
788 int err = -1;
789 uint32_t idx;
790 GElf_Ehdr ehdr;
261360b6 791 GElf_Shdr shdr;
b68e2f91
CS
792 Elf_Data *syms, *opddata = NULL;
793 GElf_Sym sym;
261360b6 794 Elf_Scn *sec, *sec_strndx;
b68e2f91
CS
795 Elf *elf;
796 int nr = 0;
39b12f78 797 bool remap_kernel = false, adjust_kernel_syms = false;
b68e2f91 798
ba92732e
WN
799 if (kmap && !kmaps)
800 return -1;
801
261360b6 802 dso->symtab_type = syms_ss->type;
c6d8f2a4 803 dso->is_64_bit = syms_ss->is_64_bit;
0131c4ec
AH
804 dso->rel = syms_ss->ehdr.e_type == ET_REL;
805
806 /*
807 * Modules may already have symbols from kallsyms, but those symbols
808 * have the wrong values for the dso maps, so remove them.
809 */
810 if (kmodule && syms_ss->symtab)
811 symbols__delete(&dso->symbols[map->type]);
005f9294 812
261360b6 813 if (!syms_ss->symtab) {
d0b0d040
AB
814 /*
815 * If the vmlinux is stripped, fail so we will fall back
816 * to using kallsyms. The vmlinux runtime symbols aren't
817 * of much use.
818 */
819 if (dso->kernel)
820 goto out_elf_end;
821
261360b6
CS
822 syms_ss->symtab = syms_ss->dynsym;
823 syms_ss->symshdr = syms_ss->dynshdr;
d26cd12b
CS
824 }
825
261360b6
CS
826 elf = syms_ss->elf;
827 ehdr = syms_ss->ehdr;
828 sec = syms_ss->symtab;
829 shdr = syms_ss->symshdr;
b68e2f91 830
261360b6
CS
831 if (runtime_ss->opdsec)
832 opddata = elf_rawdata(runtime_ss->opdsec, NULL);
e5a1845f
NK
833
834 syms = elf_getdata(sec, NULL);
835 if (syms == NULL)
836 goto out_elf_end;
837
838 sec = elf_getscn(elf, shdr.sh_link);
839 if (sec == NULL)
840 goto out_elf_end;
841
842 symstrs = elf_getdata(sec, NULL);
843 if (symstrs == NULL)
844 goto out_elf_end;
845
f247fb81 846 sec_strndx = elf_getscn(runtime_ss->elf, runtime_ss->ehdr.e_shstrndx);
e5a1845f
NK
847 if (sec_strndx == NULL)
848 goto out_elf_end;
849
850 secstrs = elf_getdata(sec_strndx, NULL);
851 if (secstrs == NULL)
852 goto out_elf_end;
853
854 nr_syms = shdr.sh_size / shdr.sh_entsize;
855
856 memset(&sym, 0, sizeof(sym));
39b12f78
AH
857
858 /*
859 * The kernel relocation symbol is needed in advance in order to adjust
860 * kernel maps correctly.
861 */
862 if (ref_reloc_sym_not_found(kmap)) {
863 elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) {
864 const char *elf_name = elf_sym__name(&sym, symstrs);
865
866 if (strcmp(elf_name, kmap->ref_reloc_sym->name))
867 continue;
868 kmap->ref_reloc_sym->unrelocated_addr = sym.st_value;
9176753d
AH
869 map->reloc = kmap->ref_reloc_sym->addr -
870 kmap->ref_reloc_sym->unrelocated_addr;
39b12f78
AH
871 break;
872 }
873 }
874
875 dso->adjust_symbols = runtime_ss->adjust_symbols || ref_reloc(kmap);
876 /*
877 * Initial kernel and module mappings do not map to the dso. For
878 * function mappings, flag the fixups.
879 */
880 if (map->type == MAP__FUNCTION && (dso->kernel || kmodule)) {
881 remap_kernel = true;
882 adjust_kernel_syms = dso->adjust_symbols;
883 }
e5a1845f
NK
884 elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) {
885 struct symbol *f;
886 const char *elf_name = elf_sym__name(&sym, symstrs);
887 char *demangled = NULL;
888 int is_label = elf_sym__is_label(&sym);
889 const char *section_name;
261360b6 890 bool used_opd = false;
e5a1845f 891
e5a1845f
NK
892 if (!is_label && !elf_sym__is_a(&sym, map->type))
893 continue;
894
895 /* Reject ARM ELF "mapping symbols": these aren't unique and
896 * don't identify functions, so will confuse the profile
897 * output: */
4886f2ca
VK
898 if (ehdr.e_machine == EM_ARM || ehdr.e_machine == EM_AARCH64) {
899 if (elf_name[0] == '$' && strchr("adtx", elf_name[1])
900 && (elf_name[2] == '\0' || elf_name[2] == '.'))
e5a1845f
NK
901 continue;
902 }
903
261360b6
CS
904 if (runtime_ss->opdsec && sym.st_shndx == runtime_ss->opdidx) {
905 u32 offset = sym.st_value - syms_ss->opdshdr.sh_addr;
e5a1845f
NK
906 u64 *opd = opddata->d_buf + offset;
907 sym.st_value = DSO__SWAP(dso, u64, *opd);
261360b6
CS
908 sym.st_shndx = elf_addr_to_index(runtime_ss->elf,
909 sym.st_value);
910 used_opd = true;
e5a1845f 911 }
3843b05d
NK
912 /*
913 * When loading symbols in a data mapping, ABS symbols (which
914 * has a value of SHN_ABS in its st_shndx) failed at
915 * elf_getscn(). And it marks the loading as a failure so
916 * already loaded symbols cannot be fixed up.
917 *
918 * I'm not sure what should be done. Just ignore them for now.
919 * - Namhyung Kim
920 */
921 if (sym.st_shndx == SHN_ABS)
922 continue;
e5a1845f 923
261360b6 924 sec = elf_getscn(runtime_ss->elf, sym.st_shndx);
e5a1845f
NK
925 if (!sec)
926 goto out_elf_end;
927
928 gelf_getshdr(sec, &shdr);
929
930 if (is_label && !elf_sec__is_a(&shdr, secstrs, map->type))
931 continue;
932
933 section_name = elf_sec__name(&shdr, secstrs);
934
935 /* On ARM, symbols for thumb functions have 1 added to
936 * the symbol address as a flag - remove it */
937 if ((ehdr.e_machine == EM_ARM) &&
938 (map->type == MAP__FUNCTION) &&
939 (sym.st_value & 1))
940 --sym.st_value;
941
39b12f78 942 if (dso->kernel || kmodule) {
e5a1845f
NK
943 char dso_name[PATH_MAX];
944
39b12f78
AH
945 /* Adjust symbol to map to file offset */
946 if (adjust_kernel_syms)
947 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
948
e5a1845f
NK
949 if (strcmp(section_name,
950 (curr_dso->short_name +
951 dso->short_name_len)) == 0)
952 goto new_symbol;
953
954 if (strcmp(section_name, ".text") == 0) {
39b12f78
AH
955 /*
956 * The initial kernel mapping is based on
957 * kallsyms and identity maps. Overwrite it to
958 * map to the kernel dso.
959 */
960 if (remap_kernel && dso->kernel) {
961 remap_kernel = false;
962 map->start = shdr.sh_addr +
963 ref_reloc(kmap);
964 map->end = map->start + shdr.sh_size;
965 map->pgoff = shdr.sh_offset;
966 map->map_ip = map__map_ip;
967 map->unmap_ip = map__unmap_ip;
968 /* Ensure maps are correctly ordered */
ba92732e
WN
969 if (kmaps) {
970 map_groups__remove(kmaps, map);
971 map_groups__insert(kmaps, map);
972 }
39b12f78
AH
973 }
974
0131c4ec
AH
975 /*
976 * The initial module mapping is based on
977 * /proc/modules mapped to offset zero.
978 * Overwrite it to map to the module dso.
979 */
980 if (remap_kernel && kmodule) {
981 remap_kernel = false;
982 map->pgoff = shdr.sh_offset;
983 }
984
e5a1845f
NK
985 curr_map = map;
986 curr_dso = dso;
987 goto new_symbol;
988 }
989
0131c4ec
AH
990 if (!kmap)
991 goto new_symbol;
992
e5a1845f
NK
993 snprintf(dso_name, sizeof(dso_name),
994 "%s%s", dso->short_name, section_name);
995
ba92732e 996 curr_map = map_groups__find_by_name(kmaps, map->type, dso_name);
e5a1845f
NK
997 if (curr_map == NULL) {
998 u64 start = sym.st_value;
999
1000 if (kmodule)
1001 start += map->start + shdr.sh_offset;
1002
1003 curr_dso = dso__new(dso_name);
1004 if (curr_dso == NULL)
1005 goto out_elf_end;
1006 curr_dso->kernel = dso->kernel;
1007 curr_dso->long_name = dso->long_name;
1008 curr_dso->long_name_len = dso->long_name_len;
1009 curr_map = map__new2(start, curr_dso,
1010 map->type);
1011 if (curr_map == NULL) {
1012 dso__delete(curr_dso);
1013 goto out_elf_end;
1014 }
39b12f78
AH
1015 if (adjust_kernel_syms) {
1016 curr_map->start = shdr.sh_addr +
1017 ref_reloc(kmap);
1018 curr_map->end = curr_map->start +
1019 shdr.sh_size;
1020 curr_map->pgoff = shdr.sh_offset;
1021 } else {
1022 curr_map->map_ip = identity__map_ip;
1023 curr_map->unmap_ip = identity__map_ip;
1024 }
e5a1845f 1025 curr_dso->symtab_type = dso->symtab_type;
ba92732e 1026 map_groups__insert(kmaps, curr_map);
8fa7d87f
WL
1027 /*
1028 * The new DSO should go to the kernel DSOS
1029 */
1030 dsos__add(&map->groups->machine->kernel_dsos,
1031 curr_dso);
e5a1845f
NK
1032 dso__set_loaded(curr_dso, map->type);
1033 } else
1034 curr_dso = curr_map->dso;
1035
1036 goto new_symbol;
1037 }
1038
261360b6
CS
1039 if ((used_opd && runtime_ss->adjust_symbols)
1040 || (!used_opd && syms_ss->adjust_symbols)) {
e5a1845f
NK
1041 pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64 " "
1042 "sh_addr: %#" PRIx64 " sh_offset: %#" PRIx64 "\n", __func__,
1043 (u64)sym.st_value, (u64)shdr.sh_addr,
1044 (u64)shdr.sh_offset);
1045 sym.st_value -= shdr.sh_addr - shdr.sh_offset;
1046 }
950b8354 1047new_symbol:
e5a1845f
NK
1048 /*
1049 * We need to figure out if the object was created from C++ sources
1050 * DWARF DW_compile_unit has this, but we don't always have access
1051 * to it...
1052 */
763122ad 1053 if (want_demangle(dso->kernel || kmodule)) {
e71e7945
NK
1054 int demangle_flags = DMGL_NO_OPTS;
1055 if (verbose)
1056 demangle_flags = DMGL_PARAMS | DMGL_ANSI;
1057
1058 demangled = bfd_demangle(NULL, elf_name, demangle_flags);
328ccdac
NK
1059 if (demangled != NULL)
1060 elf_name = demangled;
1061 }
e5a1845f
NK
1062 f = symbol__new(sym.st_value, sym.st_size,
1063 GELF_ST_BIND(sym.st_info), elf_name);
1064 free(demangled);
1065 if (!f)
1066 goto out_elf_end;
1067
1068 if (filter && filter(curr_map, f))
1069 symbol__delete(f);
1070 else {
1071 symbols__insert(&curr_dso->symbols[curr_map->type], f);
1072 nr++;
1073 }
1074 }
1075
1076 /*
1077 * For misannotated, zeroed, ASM function sizes.
1078 */
1079 if (nr > 0) {
680d926a
NK
1080 if (!symbol_conf.allow_aliases)
1081 symbols__fixup_duplicate(&dso->symbols[map->type]);
e5a1845f
NK
1082 symbols__fixup_end(&dso->symbols[map->type]);
1083 if (kmap) {
1084 /*
1085 * We need to fixup this here too because we create new
1086 * maps here, for things like vsyscall sections.
1087 */
ba92732e 1088 __map_groups__fixup_end(kmaps, map->type);
e5a1845f
NK
1089 }
1090 }
1091 err = nr;
1092out_elf_end:
e5a1845f
NK
1093 return err;
1094}
1095
8e0cf965
AH
1096static int elf_read_maps(Elf *elf, bool exe, mapfn_t mapfn, void *data)
1097{
1098 GElf_Phdr phdr;
1099 size_t i, phdrnum;
1100 int err;
1101 u64 sz;
1102
1103 if (elf_getphdrnum(elf, &phdrnum))
1104 return -1;
1105
1106 for (i = 0; i < phdrnum; i++) {
1107 if (gelf_getphdr(elf, i, &phdr) == NULL)
1108 return -1;
1109 if (phdr.p_type != PT_LOAD)
1110 continue;
1111 if (exe) {
1112 if (!(phdr.p_flags & PF_X))
1113 continue;
1114 } else {
1115 if (!(phdr.p_flags & PF_R))
1116 continue;
1117 }
1118 sz = min(phdr.p_memsz, phdr.p_filesz);
1119 if (!sz)
1120 continue;
1121 err = mapfn(phdr.p_vaddr, sz, phdr.p_offset, data);
1122 if (err)
1123 return err;
1124 }
1125 return 0;
1126}
1127
1128int file__read_maps(int fd, bool exe, mapfn_t mapfn, void *data,
1129 bool *is_64_bit)
1130{
1131 int err;
1132 Elf *elf;
1133
1134 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
1135 if (elf == NULL)
1136 return -1;
1137
1138 if (is_64_bit)
1139 *is_64_bit = (gelf_getclass(elf) == ELFCLASS64);
1140
1141 err = elf_read_maps(elf, exe, mapfn, data);
1142
1143 elf_end(elf);
1144 return err;
1145}
1146
2b5b8bb2
AH
1147enum dso_type dso__type_fd(int fd)
1148{
1149 enum dso_type dso_type = DSO__TYPE_UNKNOWN;
1150 GElf_Ehdr ehdr;
1151 Elf_Kind ek;
1152 Elf *elf;
1153
1154 elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
1155 if (elf == NULL)
1156 goto out;
1157
1158 ek = elf_kind(elf);
1159 if (ek != ELF_K_ELF)
1160 goto out_end;
1161
1162 if (gelf_getclass(elf) == ELFCLASS64) {
1163 dso_type = DSO__TYPE_64BIT;
1164 goto out_end;
1165 }
1166
1167 if (gelf_getehdr(elf, &ehdr) == NULL)
1168 goto out_end;
1169
1170 if (ehdr.e_machine == EM_X86_64)
1171 dso_type = DSO__TYPE_X32BIT;
1172 else
1173 dso_type = DSO__TYPE_32BIT;
1174out_end:
1175 elf_end(elf);
1176out:
1177 return dso_type;
1178}
1179
afba19d9
AH
1180static int copy_bytes(int from, off_t from_offs, int to, off_t to_offs, u64 len)
1181{
1182 ssize_t r;
1183 size_t n;
1184 int err = -1;
1185 char *buf = malloc(page_size);
1186
1187 if (buf == NULL)
1188 return -1;
1189
1190 if (lseek(to, to_offs, SEEK_SET) != to_offs)
1191 goto out;
1192
1193 if (lseek(from, from_offs, SEEK_SET) != from_offs)
1194 goto out;
1195
1196 while (len) {
1197 n = page_size;
1198 if (len < n)
1199 n = len;
1200 /* Use read because mmap won't work on proc files */
1201 r = read(from, buf, n);
1202 if (r < 0)
1203 goto out;
1204 if (!r)
1205 break;
1206 n = r;
1207 r = write(to, buf, n);
1208 if (r < 0)
1209 goto out;
1210 if ((size_t)r != n)
1211 goto out;
1212 len -= n;
1213 }
1214
1215 err = 0;
1216out:
1217 free(buf);
1218 return err;
1219}
1220
1221struct kcore {
1222 int fd;
1223 int elfclass;
1224 Elf *elf;
1225 GElf_Ehdr ehdr;
1226};
1227
1228static int kcore__open(struct kcore *kcore, const char *filename)
1229{
1230 GElf_Ehdr *ehdr;
1231
1232 kcore->fd = open(filename, O_RDONLY);
1233 if (kcore->fd == -1)
1234 return -1;
1235
1236 kcore->elf = elf_begin(kcore->fd, ELF_C_READ, NULL);
1237 if (!kcore->elf)
1238 goto out_close;
1239
1240 kcore->elfclass = gelf_getclass(kcore->elf);
1241 if (kcore->elfclass == ELFCLASSNONE)
1242 goto out_end;
1243
1244 ehdr = gelf_getehdr(kcore->elf, &kcore->ehdr);
1245 if (!ehdr)
1246 goto out_end;
1247
1248 return 0;
1249
1250out_end:
1251 elf_end(kcore->elf);
1252out_close:
1253 close(kcore->fd);
1254 return -1;
1255}
1256
1257static int kcore__init(struct kcore *kcore, char *filename, int elfclass,
1258 bool temp)
1259{
1260 GElf_Ehdr *ehdr;
1261
1262 kcore->elfclass = elfclass;
1263
1264 if (temp)
1265 kcore->fd = mkstemp(filename);
1266 else
1267 kcore->fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0400);
1268 if (kcore->fd == -1)
1269 return -1;
1270
1271 kcore->elf = elf_begin(kcore->fd, ELF_C_WRITE, NULL);
1272 if (!kcore->elf)
1273 goto out_close;
1274
1275 if (!gelf_newehdr(kcore->elf, elfclass))
1276 goto out_end;
1277
1278 ehdr = gelf_getehdr(kcore->elf, &kcore->ehdr);
1279 if (!ehdr)
1280 goto out_end;
1281
1282 return 0;
1283
1284out_end:
1285 elf_end(kcore->elf);
1286out_close:
1287 close(kcore->fd);
1288 unlink(filename);
1289 return -1;
1290}
1291
1292static void kcore__close(struct kcore *kcore)
1293{
1294 elf_end(kcore->elf);
1295 close(kcore->fd);
1296}
1297
1298static int kcore__copy_hdr(struct kcore *from, struct kcore *to, size_t count)
1299{
1300 GElf_Ehdr *ehdr = &to->ehdr;
1301 GElf_Ehdr *kehdr = &from->ehdr;
1302
1303 memcpy(ehdr->e_ident, kehdr->e_ident, EI_NIDENT);
1304 ehdr->e_type = kehdr->e_type;
1305 ehdr->e_machine = kehdr->e_machine;
1306 ehdr->e_version = kehdr->e_version;
1307 ehdr->e_entry = 0;
1308 ehdr->e_shoff = 0;
1309 ehdr->e_flags = kehdr->e_flags;
1310 ehdr->e_phnum = count;
1311 ehdr->e_shentsize = 0;
1312 ehdr->e_shnum = 0;
1313 ehdr->e_shstrndx = 0;
1314
1315 if (from->elfclass == ELFCLASS32) {
1316 ehdr->e_phoff = sizeof(Elf32_Ehdr);
1317 ehdr->e_ehsize = sizeof(Elf32_Ehdr);
1318 ehdr->e_phentsize = sizeof(Elf32_Phdr);
1319 } else {
1320 ehdr->e_phoff = sizeof(Elf64_Ehdr);
1321 ehdr->e_ehsize = sizeof(Elf64_Ehdr);
1322 ehdr->e_phentsize = sizeof(Elf64_Phdr);
1323 }
1324
1325 if (!gelf_update_ehdr(to->elf, ehdr))
1326 return -1;
1327
1328 if (!gelf_newphdr(to->elf, count))
1329 return -1;
1330
1331 return 0;
1332}
1333
1334static int kcore__add_phdr(struct kcore *kcore, int idx, off_t offset,
1335 u64 addr, u64 len)
1336{
1337 GElf_Phdr gphdr;
1338 GElf_Phdr *phdr;
1339
1340 phdr = gelf_getphdr(kcore->elf, idx, &gphdr);
1341 if (!phdr)
1342 return -1;
1343
1344 phdr->p_type = PT_LOAD;
1345 phdr->p_flags = PF_R | PF_W | PF_X;
1346 phdr->p_offset = offset;
1347 phdr->p_vaddr = addr;
1348 phdr->p_paddr = 0;
1349 phdr->p_filesz = len;
1350 phdr->p_memsz = len;
1351 phdr->p_align = page_size;
1352
1353 if (!gelf_update_phdr(kcore->elf, idx, phdr))
1354 return -1;
1355
1356 return 0;
1357}
1358
1359static off_t kcore__write(struct kcore *kcore)
1360{
1361 return elf_update(kcore->elf, ELF_C_WRITE);
1362}
1363
fc1b691d
AH
1364struct phdr_data {
1365 off_t offset;
1366 u64 addr;
1367 u64 len;
1368};
1369
1370struct kcore_copy_info {
1371 u64 stext;
1372 u64 etext;
1373 u64 first_symbol;
1374 u64 last_symbol;
1375 u64 first_module;
1376 u64 last_module_symbol;
1377 struct phdr_data kernel_map;
1378 struct phdr_data modules_map;
1379};
1380
1381static int kcore_copy__process_kallsyms(void *arg, const char *name, char type,
1382 u64 start)
1383{
1384 struct kcore_copy_info *kci = arg;
1385
1386 if (!symbol_type__is_a(type, MAP__FUNCTION))
1387 return 0;
1388
1389 if (strchr(name, '[')) {
1390 if (start > kci->last_module_symbol)
1391 kci->last_module_symbol = start;
1392 return 0;
1393 }
1394
1395 if (!kci->first_symbol || start < kci->first_symbol)
1396 kci->first_symbol = start;
1397
1398 if (!kci->last_symbol || start > kci->last_symbol)
1399 kci->last_symbol = start;
1400
1401 if (!strcmp(name, "_stext")) {
1402 kci->stext = start;
1403 return 0;
1404 }
1405
1406 if (!strcmp(name, "_etext")) {
1407 kci->etext = start;
1408 return 0;
1409 }
1410
1411 return 0;
1412}
1413
1414static int kcore_copy__parse_kallsyms(struct kcore_copy_info *kci,
1415 const char *dir)
1416{
1417 char kallsyms_filename[PATH_MAX];
1418
1419 scnprintf(kallsyms_filename, PATH_MAX, "%s/kallsyms", dir);
1420
1421 if (symbol__restricted_filename(kallsyms_filename, "/proc/kallsyms"))
1422 return -1;
1423
1424 if (kallsyms__parse(kallsyms_filename, kci,
1425 kcore_copy__process_kallsyms) < 0)
1426 return -1;
1427
1428 return 0;
1429}
1430
1431static int kcore_copy__process_modules(void *arg,
1432 const char *name __maybe_unused,
1433 u64 start)
1434{
1435 struct kcore_copy_info *kci = arg;
1436
1437 if (!kci->first_module || start < kci->first_module)
1438 kci->first_module = start;
1439
1440 return 0;
1441}
1442
1443static int kcore_copy__parse_modules(struct kcore_copy_info *kci,
1444 const char *dir)
1445{
1446 char modules_filename[PATH_MAX];
1447
1448 scnprintf(modules_filename, PATH_MAX, "%s/modules", dir);
1449
1450 if (symbol__restricted_filename(modules_filename, "/proc/modules"))
1451 return -1;
1452
1453 if (modules__parse(modules_filename, kci,
1454 kcore_copy__process_modules) < 0)
1455 return -1;
1456
1457 return 0;
1458}
1459
1460static void kcore_copy__map(struct phdr_data *p, u64 start, u64 end, u64 pgoff,
1461 u64 s, u64 e)
1462{
1463 if (p->addr || s < start || s >= end)
1464 return;
1465
1466 p->addr = s;
1467 p->offset = (s - start) + pgoff;
1468 p->len = e < end ? e - s : end - s;
1469}
1470
1471static int kcore_copy__read_map(u64 start, u64 len, u64 pgoff, void *data)
1472{
1473 struct kcore_copy_info *kci = data;
1474 u64 end = start + len;
1475
1476 kcore_copy__map(&kci->kernel_map, start, end, pgoff, kci->stext,
1477 kci->etext);
1478
1479 kcore_copy__map(&kci->modules_map, start, end, pgoff, kci->first_module,
1480 kci->last_module_symbol);
1481
1482 return 0;
1483}
1484
1485static int kcore_copy__read_maps(struct kcore_copy_info *kci, Elf *elf)
1486{
1487 if (elf_read_maps(elf, true, kcore_copy__read_map, kci) < 0)
1488 return -1;
1489
1490 return 0;
1491}
1492
1493static int kcore_copy__calc_maps(struct kcore_copy_info *kci, const char *dir,
1494 Elf *elf)
1495{
1496 if (kcore_copy__parse_kallsyms(kci, dir))
1497 return -1;
1498
1499 if (kcore_copy__parse_modules(kci, dir))
1500 return -1;
1501
1502 if (kci->stext)
1503 kci->stext = round_down(kci->stext, page_size);
1504 else
1505 kci->stext = round_down(kci->first_symbol, page_size);
1506
1507 if (kci->etext) {
1508 kci->etext = round_up(kci->etext, page_size);
1509 } else if (kci->last_symbol) {
1510 kci->etext = round_up(kci->last_symbol, page_size);
1511 kci->etext += page_size;
1512 }
1513
1514 kci->first_module = round_down(kci->first_module, page_size);
1515
1516 if (kci->last_module_symbol) {
1517 kci->last_module_symbol = round_up(kci->last_module_symbol,
1518 page_size);
1519 kci->last_module_symbol += page_size;
1520 }
1521
1522 if (!kci->stext || !kci->etext)
1523 return -1;
1524
1525 if (kci->first_module && !kci->last_module_symbol)
1526 return -1;
1527
1528 return kcore_copy__read_maps(kci, elf);
1529}
1530
1531static int kcore_copy__copy_file(const char *from_dir, const char *to_dir,
1532 const char *name)
1533{
1534 char from_filename[PATH_MAX];
1535 char to_filename[PATH_MAX];
1536
1537 scnprintf(from_filename, PATH_MAX, "%s/%s", from_dir, name);
1538 scnprintf(to_filename, PATH_MAX, "%s/%s", to_dir, name);
1539
1540 return copyfile_mode(from_filename, to_filename, 0400);
1541}
1542
1543static int kcore_copy__unlink(const char *dir, const char *name)
1544{
1545 char filename[PATH_MAX];
1546
1547 scnprintf(filename, PATH_MAX, "%s/%s", dir, name);
1548
1549 return unlink(filename);
1550}
1551
1552static int kcore_copy__compare_fds(int from, int to)
1553{
1554 char *buf_from;
1555 char *buf_to;
1556 ssize_t ret;
1557 size_t len;
1558 int err = -1;
1559
1560 buf_from = malloc(page_size);
1561 buf_to = malloc(page_size);
1562 if (!buf_from || !buf_to)
1563 goto out;
1564
1565 while (1) {
1566 /* Use read because mmap won't work on proc files */
1567 ret = read(from, buf_from, page_size);
1568 if (ret < 0)
1569 goto out;
1570
1571 if (!ret)
1572 break;
1573
1574 len = ret;
1575
1576 if (readn(to, buf_to, len) != (int)len)
1577 goto out;
1578
1579 if (memcmp(buf_from, buf_to, len))
1580 goto out;
1581 }
1582
1583 err = 0;
1584out:
1585 free(buf_to);
1586 free(buf_from);
1587 return err;
1588}
1589
1590static int kcore_copy__compare_files(const char *from_filename,
1591 const char *to_filename)
1592{
1593 int from, to, err = -1;
1594
1595 from = open(from_filename, O_RDONLY);
1596 if (from < 0)
1597 return -1;
1598
1599 to = open(to_filename, O_RDONLY);
1600 if (to < 0)
1601 goto out_close_from;
1602
1603 err = kcore_copy__compare_fds(from, to);
1604
1605 close(to);
1606out_close_from:
1607 close(from);
1608 return err;
1609}
1610
1611static int kcore_copy__compare_file(const char *from_dir, const char *to_dir,
1612 const char *name)
1613{
1614 char from_filename[PATH_MAX];
1615 char to_filename[PATH_MAX];
1616
1617 scnprintf(from_filename, PATH_MAX, "%s/%s", from_dir, name);
1618 scnprintf(to_filename, PATH_MAX, "%s/%s", to_dir, name);
1619
1620 return kcore_copy__compare_files(from_filename, to_filename);
1621}
1622
1623/**
1624 * kcore_copy - copy kallsyms, modules and kcore from one directory to another.
1625 * @from_dir: from directory
1626 * @to_dir: to directory
1627 *
1628 * This function copies kallsyms, modules and kcore files from one directory to
1629 * another. kallsyms and modules are copied entirely. Only code segments are
1630 * copied from kcore. It is assumed that two segments suffice: one for the
1631 * kernel proper and one for all the modules. The code segments are determined
1632 * from kallsyms and modules files. The kernel map starts at _stext or the
1633 * lowest function symbol, and ends at _etext or the highest function symbol.
1634 * The module map starts at the lowest module address and ends at the highest
1635 * module symbol. Start addresses are rounded down to the nearest page. End
1636 * addresses are rounded up to the nearest page. An extra page is added to the
1637 * highest kernel symbol and highest module symbol to, hopefully, encompass that
1638 * symbol too. Because it contains only code sections, the resulting kcore is
1639 * unusual. One significant peculiarity is that the mapping (start -> pgoff)
1640 * is not the same for the kernel map and the modules map. That happens because
1641 * the data is copied adjacently whereas the original kcore has gaps. Finally,
1642 * kallsyms and modules files are compared with their copies to check that
1643 * modules have not been loaded or unloaded while the copies were taking place.
1644 *
1645 * Return: %0 on success, %-1 on failure.
1646 */
1647int kcore_copy(const char *from_dir, const char *to_dir)
1648{
1649 struct kcore kcore;
1650 struct kcore extract;
1651 size_t count = 2;
1652 int idx = 0, err = -1;
1653 off_t offset = page_size, sz, modules_offset = 0;
1654 struct kcore_copy_info kci = { .stext = 0, };
1655 char kcore_filename[PATH_MAX];
1656 char extract_filename[PATH_MAX];
1657
1658 if (kcore_copy__copy_file(from_dir, to_dir, "kallsyms"))
1659 return -1;
1660
1661 if (kcore_copy__copy_file(from_dir, to_dir, "modules"))
1662 goto out_unlink_kallsyms;
1663
1664 scnprintf(kcore_filename, PATH_MAX, "%s/kcore", from_dir);
1665 scnprintf(extract_filename, PATH_MAX, "%s/kcore", to_dir);
1666
1667 if (kcore__open(&kcore, kcore_filename))
1668 goto out_unlink_modules;
1669
1670 if (kcore_copy__calc_maps(&kci, from_dir, kcore.elf))
1671 goto out_kcore_close;
1672
1673 if (kcore__init(&extract, extract_filename, kcore.elfclass, false))
1674 goto out_kcore_close;
1675
1676 if (!kci.modules_map.addr)
1677 count -= 1;
1678
1679 if (kcore__copy_hdr(&kcore, &extract, count))
1680 goto out_extract_close;
1681
1682 if (kcore__add_phdr(&extract, idx++, offset, kci.kernel_map.addr,
1683 kci.kernel_map.len))
1684 goto out_extract_close;
1685
1686 if (kci.modules_map.addr) {
1687 modules_offset = offset + kci.kernel_map.len;
1688 if (kcore__add_phdr(&extract, idx, modules_offset,
1689 kci.modules_map.addr, kci.modules_map.len))
1690 goto out_extract_close;
1691 }
1692
1693 sz = kcore__write(&extract);
1694 if (sz < 0 || sz > offset)
1695 goto out_extract_close;
1696
1697 if (copy_bytes(kcore.fd, kci.kernel_map.offset, extract.fd, offset,
1698 kci.kernel_map.len))
1699 goto out_extract_close;
1700
1701 if (modules_offset && copy_bytes(kcore.fd, kci.modules_map.offset,
1702 extract.fd, modules_offset,
1703 kci.modules_map.len))
1704 goto out_extract_close;
1705
1706 if (kcore_copy__compare_file(from_dir, to_dir, "modules"))
1707 goto out_extract_close;
1708
1709 if (kcore_copy__compare_file(from_dir, to_dir, "kallsyms"))
1710 goto out_extract_close;
1711
1712 err = 0;
1713
1714out_extract_close:
1715 kcore__close(&extract);
1716 if (err)
1717 unlink(extract_filename);
1718out_kcore_close:
1719 kcore__close(&kcore);
1720out_unlink_modules:
1721 if (err)
1722 kcore_copy__unlink(to_dir, "modules");
1723out_unlink_kallsyms:
1724 if (err)
1725 kcore_copy__unlink(to_dir, "kallsyms");
1726
1727 return err;
1728}
1729
afba19d9
AH
1730int kcore_extract__create(struct kcore_extract *kce)
1731{
1732 struct kcore kcore;
1733 struct kcore extract;
1734 size_t count = 1;
1735 int idx = 0, err = -1;
1736 off_t offset = page_size, sz;
1737
1738 if (kcore__open(&kcore, kce->kcore_filename))
1739 return -1;
1740
1741 strcpy(kce->extract_filename, PERF_KCORE_EXTRACT);
1742 if (kcore__init(&extract, kce->extract_filename, kcore.elfclass, true))
1743 goto out_kcore_close;
1744
1745 if (kcore__copy_hdr(&kcore, &extract, count))
1746 goto out_extract_close;
1747
1748 if (kcore__add_phdr(&extract, idx, offset, kce->addr, kce->len))
1749 goto out_extract_close;
1750
1751 sz = kcore__write(&extract);
1752 if (sz < 0 || sz > offset)
1753 goto out_extract_close;
1754
1755 if (copy_bytes(kcore.fd, kce->offs, extract.fd, offset, kce->len))
1756 goto out_extract_close;
1757
1758 err = 0;
1759
1760out_extract_close:
1761 kcore__close(&extract);
1762 if (err)
1763 unlink(kce->extract_filename);
1764out_kcore_close:
1765 kcore__close(&kcore);
1766
1767 return err;
1768}
1769
1770void kcore_extract__delete(struct kcore_extract *kce)
1771{
1772 unlink(kce->extract_filename);
1773}
1774
e5a1845f
NK
1775void symbol__elf_init(void)
1776{
1777 elf_version(EV_CURRENT);
1778}