xref: /linux/tools/perf/util/symbol-elf.c (revision 155681fcd7f82882a730240c2dde7eee76a46314)
1 // SPDX-License-Identifier: GPL-2.0
2 #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 "map.h"
10 #include "map_groups.h"
11 #include "symbol.h"
12 #include "demangle-java.h"
13 #include "demangle-rust.h"
14 #include "machine.h"
15 #include "vdso.h"
16 #include "debug.h"
17 #include "sane_ctype.h"
18 #include <symbol/kallsyms.h>
19 
20 #ifndef EM_AARCH64
21 #define EM_AARCH64	183  /* ARM 64 bit */
22 #endif
23 
24 #ifndef ELF32_ST_VISIBILITY
25 #define ELF32_ST_VISIBILITY(o)	((o) & 0x03)
26 #endif
27 
28 /* For ELF64 the definitions are the same.  */
29 #ifndef ELF64_ST_VISIBILITY
30 #define ELF64_ST_VISIBILITY(o)	ELF32_ST_VISIBILITY (o)
31 #endif
32 
33 /* How to extract information held in the st_other field.  */
34 #ifndef GELF_ST_VISIBILITY
35 #define GELF_ST_VISIBILITY(val)	ELF64_ST_VISIBILITY (val)
36 #endif
37 
38 typedef Elf64_Nhdr GElf_Nhdr;
39 
40 #ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
41 extern char *cplus_demangle(const char *, int);
42 
43 static inline char *bfd_demangle(void __maybe_unused *v, const char *c, int i)
44 {
45 	return cplus_demangle(c, i);
46 }
47 #else
48 #ifdef NO_DEMANGLE
49 static inline char *bfd_demangle(void __maybe_unused *v,
50 				 const char __maybe_unused *c,
51 				 int __maybe_unused i)
52 {
53 	return NULL;
54 }
55 #else
56 #define PACKAGE 'perf'
57 #include <bfd.h>
58 #endif
59 #endif
60 
61 #ifndef HAVE_ELF_GETPHDRNUM_SUPPORT
62 static int elf_getphdrnum(Elf *elf, size_t *dst)
63 {
64 	GElf_Ehdr gehdr;
65 	GElf_Ehdr *ehdr;
66 
67 	ehdr = gelf_getehdr(elf, &gehdr);
68 	if (!ehdr)
69 		return -1;
70 
71 	*dst = ehdr->e_phnum;
72 
73 	return 0;
74 }
75 #endif
76 
77 #ifndef HAVE_ELF_GETSHDRSTRNDX_SUPPORT
78 static int elf_getshdrstrndx(Elf *elf __maybe_unused, size_t *dst __maybe_unused)
79 {
80 	pr_err("%s: update your libelf to > 0.140, this one lacks elf_getshdrstrndx().\n", __func__);
81 	return -1;
82 }
83 #endif
84 
85 #ifndef NT_GNU_BUILD_ID
86 #define NT_GNU_BUILD_ID 3
87 #endif
88 
89 /**
90  * elf_symtab__for_each_symbol - iterate thru all the symbols
91  *
92  * @syms: struct elf_symtab instance to iterate
93  * @idx: uint32_t idx
94  * @sym: GElf_Sym iterator
95  */
96 #define elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) \
97 	for (idx = 0, gelf_getsym(syms, idx, &sym);\
98 	     idx < nr_syms; \
99 	     idx++, gelf_getsym(syms, idx, &sym))
100 
101 static inline uint8_t elf_sym__type(const GElf_Sym *sym)
102 {
103 	return GELF_ST_TYPE(sym->st_info);
104 }
105 
106 static inline uint8_t elf_sym__visibility(const GElf_Sym *sym)
107 {
108 	return GELF_ST_VISIBILITY(sym->st_other);
109 }
110 
111 #ifndef STT_GNU_IFUNC
112 #define STT_GNU_IFUNC 10
113 #endif
114 
115 static inline int elf_sym__is_function(const GElf_Sym *sym)
116 {
117 	return (elf_sym__type(sym) == STT_FUNC ||
118 		elf_sym__type(sym) == STT_GNU_IFUNC) &&
119 	       sym->st_name != 0 &&
120 	       sym->st_shndx != SHN_UNDEF;
121 }
122 
123 static inline bool elf_sym__is_object(const GElf_Sym *sym)
124 {
125 	return elf_sym__type(sym) == STT_OBJECT &&
126 		sym->st_name != 0 &&
127 		sym->st_shndx != SHN_UNDEF;
128 }
129 
130 static inline int elf_sym__is_label(const GElf_Sym *sym)
131 {
132 	return elf_sym__type(sym) == STT_NOTYPE &&
133 		sym->st_name != 0 &&
134 		sym->st_shndx != SHN_UNDEF &&
135 		sym->st_shndx != SHN_ABS &&
136 		elf_sym__visibility(sym) != STV_HIDDEN &&
137 		elf_sym__visibility(sym) != STV_INTERNAL;
138 }
139 
140 static bool elf_sym__filter(GElf_Sym *sym)
141 {
142 	return elf_sym__is_function(sym) || elf_sym__is_object(sym);
143 }
144 
145 static inline const char *elf_sym__name(const GElf_Sym *sym,
146 					const Elf_Data *symstrs)
147 {
148 	return symstrs->d_buf + sym->st_name;
149 }
150 
151 static inline const char *elf_sec__name(const GElf_Shdr *shdr,
152 					const Elf_Data *secstrs)
153 {
154 	return secstrs->d_buf + shdr->sh_name;
155 }
156 
157 static inline int elf_sec__is_text(const GElf_Shdr *shdr,
158 					const Elf_Data *secstrs)
159 {
160 	return strstr(elf_sec__name(shdr, secstrs), "text") != NULL;
161 }
162 
163 static inline bool elf_sec__is_data(const GElf_Shdr *shdr,
164 				    const Elf_Data *secstrs)
165 {
166 	return strstr(elf_sec__name(shdr, secstrs), "data") != NULL;
167 }
168 
169 static bool elf_sec__filter(GElf_Shdr *shdr, Elf_Data *secstrs)
170 {
171 	return elf_sec__is_text(shdr, secstrs) ||
172 	       elf_sec__is_data(shdr, secstrs);
173 }
174 
175 static size_t elf_addr_to_index(Elf *elf, GElf_Addr addr)
176 {
177 	Elf_Scn *sec = NULL;
178 	GElf_Shdr shdr;
179 	size_t cnt = 1;
180 
181 	while ((sec = elf_nextscn(elf, sec)) != NULL) {
182 		gelf_getshdr(sec, &shdr);
183 
184 		if ((addr >= shdr.sh_addr) &&
185 		    (addr < (shdr.sh_addr + shdr.sh_size)))
186 			return cnt;
187 
188 		++cnt;
189 	}
190 
191 	return -1;
192 }
193 
194 Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
195 			     GElf_Shdr *shp, const char *name, size_t *idx)
196 {
197 	Elf_Scn *sec = NULL;
198 	size_t cnt = 1;
199 
200 	/* Elf is corrupted/truncated, avoid calling elf_strptr. */
201 	if (!elf_rawdata(elf_getscn(elf, ep->e_shstrndx), NULL))
202 		return NULL;
203 
204 	while ((sec = elf_nextscn(elf, sec)) != NULL) {
205 		char *str;
206 
207 		gelf_getshdr(sec, shp);
208 		str = elf_strptr(elf, ep->e_shstrndx, shp->sh_name);
209 		if (str && !strcmp(name, str)) {
210 			if (idx)
211 				*idx = cnt;
212 			return sec;
213 		}
214 		++cnt;
215 	}
216 
217 	return NULL;
218 }
219 
220 static bool want_demangle(bool is_kernel_sym)
221 {
222 	return is_kernel_sym ? symbol_conf.demangle_kernel : symbol_conf.demangle;
223 }
224 
225 static char *demangle_sym(struct dso *dso, int kmodule, const char *elf_name)
226 {
227 	int demangle_flags = verbose > 0 ? (DMGL_PARAMS | DMGL_ANSI) : DMGL_NO_OPTS;
228 	char *demangled = NULL;
229 
230 	/*
231 	 * We need to figure out if the object was created from C++ sources
232 	 * DWARF DW_compile_unit has this, but we don't always have access
233 	 * to it...
234 	 */
235 	if (!want_demangle(dso->kernel || kmodule))
236 	    return demangled;
237 
238 	demangled = bfd_demangle(NULL, elf_name, demangle_flags);
239 	if (demangled == NULL)
240 		demangled = java_demangle_sym(elf_name, JAVA_DEMANGLE_NORET);
241 	else if (rust_is_mangled(demangled))
242 		/*
243 		    * Input to Rust demangling is the BFD-demangled
244 		    * name which it Rust-demangles in place.
245 		    */
246 		rust_demangle_sym(demangled);
247 
248 	return demangled;
249 }
250 
251 #define elf_section__for_each_rel(reldata, pos, pos_mem, idx, nr_entries) \
252 	for (idx = 0, pos = gelf_getrel(reldata, 0, &pos_mem); \
253 	     idx < nr_entries; \
254 	     ++idx, pos = gelf_getrel(reldata, idx, &pos_mem))
255 
256 #define elf_section__for_each_rela(reldata, pos, pos_mem, idx, nr_entries) \
257 	for (idx = 0, pos = gelf_getrela(reldata, 0, &pos_mem); \
258 	     idx < nr_entries; \
259 	     ++idx, pos = gelf_getrela(reldata, idx, &pos_mem))
260 
261 /*
262  * We need to check if we have a .dynsym, so that we can handle the
263  * .plt, synthesizing its symbols, that aren't on the symtabs (be it
264  * .dynsym or .symtab).
265  * And always look at the original dso, not at debuginfo packages, that
266  * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
267  */
268 int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss)
269 {
270 	uint32_t nr_rel_entries, idx;
271 	GElf_Sym sym;
272 	u64 plt_offset, plt_header_size, plt_entry_size;
273 	GElf_Shdr shdr_plt;
274 	struct symbol *f;
275 	GElf_Shdr shdr_rel_plt, shdr_dynsym;
276 	Elf_Data *reldata, *syms, *symstrs;
277 	Elf_Scn *scn_plt_rel, *scn_symstrs, *scn_dynsym;
278 	size_t dynsym_idx;
279 	GElf_Ehdr ehdr;
280 	char sympltname[1024];
281 	Elf *elf;
282 	int nr = 0, symidx, err = 0;
283 
284 	if (!ss->dynsym)
285 		return 0;
286 
287 	elf = ss->elf;
288 	ehdr = ss->ehdr;
289 
290 	scn_dynsym = ss->dynsym;
291 	shdr_dynsym = ss->dynshdr;
292 	dynsym_idx = ss->dynsym_idx;
293 
294 	if (scn_dynsym == NULL)
295 		goto out_elf_end;
296 
297 	scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
298 					  ".rela.plt", NULL);
299 	if (scn_plt_rel == NULL) {
300 		scn_plt_rel = elf_section_by_name(elf, &ehdr, &shdr_rel_plt,
301 						  ".rel.plt", NULL);
302 		if (scn_plt_rel == NULL)
303 			goto out_elf_end;
304 	}
305 
306 	err = -1;
307 
308 	if (shdr_rel_plt.sh_link != dynsym_idx)
309 		goto out_elf_end;
310 
311 	if (elf_section_by_name(elf, &ehdr, &shdr_plt, ".plt", NULL) == NULL)
312 		goto out_elf_end;
313 
314 	/*
315 	 * Fetch the relocation section to find the idxes to the GOT
316 	 * and the symbols in the .dynsym they refer to.
317 	 */
318 	reldata = elf_getdata(scn_plt_rel, NULL);
319 	if (reldata == NULL)
320 		goto out_elf_end;
321 
322 	syms = elf_getdata(scn_dynsym, NULL);
323 	if (syms == NULL)
324 		goto out_elf_end;
325 
326 	scn_symstrs = elf_getscn(elf, shdr_dynsym.sh_link);
327 	if (scn_symstrs == NULL)
328 		goto out_elf_end;
329 
330 	symstrs = elf_getdata(scn_symstrs, NULL);
331 	if (symstrs == NULL)
332 		goto out_elf_end;
333 
334 	if (symstrs->d_size == 0)
335 		goto out_elf_end;
336 
337 	nr_rel_entries = shdr_rel_plt.sh_size / shdr_rel_plt.sh_entsize;
338 	plt_offset = shdr_plt.sh_offset;
339 	switch (ehdr.e_machine) {
340 		case EM_ARM:
341 			plt_header_size = 20;
342 			plt_entry_size = 12;
343 			break;
344 
345 		case EM_AARCH64:
346 			plt_header_size = 32;
347 			plt_entry_size = 16;
348 			break;
349 
350 		case EM_SPARC:
351 			plt_header_size = 48;
352 			plt_entry_size = 12;
353 			break;
354 
355 		case EM_SPARCV9:
356 			plt_header_size = 128;
357 			plt_entry_size = 32;
358 			break;
359 
360 		default: /* FIXME: s390/alpha/mips/parisc/poperpc/sh/xtensa need to be checked */
361 			plt_header_size = shdr_plt.sh_entsize;
362 			plt_entry_size = shdr_plt.sh_entsize;
363 			break;
364 	}
365 	plt_offset += plt_header_size;
366 
367 	if (shdr_rel_plt.sh_type == SHT_RELA) {
368 		GElf_Rela pos_mem, *pos;
369 
370 		elf_section__for_each_rela(reldata, pos, pos_mem, idx,
371 					   nr_rel_entries) {
372 			const char *elf_name = NULL;
373 			char *demangled = NULL;
374 			symidx = GELF_R_SYM(pos->r_info);
375 			gelf_getsym(syms, symidx, &sym);
376 
377 			elf_name = elf_sym__name(&sym, symstrs);
378 			demangled = demangle_sym(dso, 0, elf_name);
379 			if (demangled != NULL)
380 				elf_name = demangled;
381 			snprintf(sympltname, sizeof(sympltname),
382 				 "%s@plt", elf_name);
383 			free(demangled);
384 
385 			f = symbol__new(plt_offset, plt_entry_size,
386 					STB_GLOBAL, STT_FUNC, sympltname);
387 			if (!f)
388 				goto out_elf_end;
389 
390 			plt_offset += plt_entry_size;
391 			symbols__insert(&dso->symbols, f);
392 			++nr;
393 		}
394 	} else if (shdr_rel_plt.sh_type == SHT_REL) {
395 		GElf_Rel pos_mem, *pos;
396 		elf_section__for_each_rel(reldata, pos, pos_mem, idx,
397 					  nr_rel_entries) {
398 			const char *elf_name = NULL;
399 			char *demangled = NULL;
400 			symidx = GELF_R_SYM(pos->r_info);
401 			gelf_getsym(syms, symidx, &sym);
402 
403 			elf_name = elf_sym__name(&sym, symstrs);
404 			demangled = demangle_sym(dso, 0, elf_name);
405 			if (demangled != NULL)
406 				elf_name = demangled;
407 			snprintf(sympltname, sizeof(sympltname),
408 				 "%s@plt", elf_name);
409 			free(demangled);
410 
411 			f = symbol__new(plt_offset, plt_entry_size,
412 					STB_GLOBAL, STT_FUNC, sympltname);
413 			if (!f)
414 				goto out_elf_end;
415 
416 			plt_offset += plt_entry_size;
417 			symbols__insert(&dso->symbols, f);
418 			++nr;
419 		}
420 	}
421 
422 	err = 0;
423 out_elf_end:
424 	if (err == 0)
425 		return nr;
426 	pr_debug("%s: problems reading %s PLT info.\n",
427 		 __func__, dso->long_name);
428 	return 0;
429 }
430 
431 char *dso__demangle_sym(struct dso *dso, int kmodule, const char *elf_name)
432 {
433 	return demangle_sym(dso, kmodule, elf_name);
434 }
435 
436 /*
437  * Align offset to 4 bytes as needed for note name and descriptor data.
438  */
439 #define NOTE_ALIGN(n) (((n) + 3) & -4U)
440 
441 static int elf_read_build_id(Elf *elf, void *bf, size_t size)
442 {
443 	int err = -1;
444 	GElf_Ehdr ehdr;
445 	GElf_Shdr shdr;
446 	Elf_Data *data;
447 	Elf_Scn *sec;
448 	Elf_Kind ek;
449 	void *ptr;
450 
451 	if (size < BUILD_ID_SIZE)
452 		goto out;
453 
454 	ek = elf_kind(elf);
455 	if (ek != ELF_K_ELF)
456 		goto out;
457 
458 	if (gelf_getehdr(elf, &ehdr) == NULL) {
459 		pr_err("%s: cannot get elf header.\n", __func__);
460 		goto out;
461 	}
462 
463 	/*
464 	 * Check following sections for notes:
465 	 *   '.note.gnu.build-id'
466 	 *   '.notes'
467 	 *   '.note' (VDSO specific)
468 	 */
469 	do {
470 		sec = elf_section_by_name(elf, &ehdr, &shdr,
471 					  ".note.gnu.build-id", NULL);
472 		if (sec)
473 			break;
474 
475 		sec = elf_section_by_name(elf, &ehdr, &shdr,
476 					  ".notes", NULL);
477 		if (sec)
478 			break;
479 
480 		sec = elf_section_by_name(elf, &ehdr, &shdr,
481 					  ".note", NULL);
482 		if (sec)
483 			break;
484 
485 		return err;
486 
487 	} while (0);
488 
489 	data = elf_getdata(sec, NULL);
490 	if (data == NULL)
491 		goto out;
492 
493 	ptr = data->d_buf;
494 	while (ptr < (data->d_buf + data->d_size)) {
495 		GElf_Nhdr *nhdr = ptr;
496 		size_t namesz = NOTE_ALIGN(nhdr->n_namesz),
497 		       descsz = NOTE_ALIGN(nhdr->n_descsz);
498 		const char *name;
499 
500 		ptr += sizeof(*nhdr);
501 		name = ptr;
502 		ptr += namesz;
503 		if (nhdr->n_type == NT_GNU_BUILD_ID &&
504 		    nhdr->n_namesz == sizeof("GNU")) {
505 			if (memcmp(name, "GNU", sizeof("GNU")) == 0) {
506 				size_t sz = min(size, descsz);
507 				memcpy(bf, ptr, sz);
508 				memset(bf + sz, 0, size - sz);
509 				err = descsz;
510 				break;
511 			}
512 		}
513 		ptr += descsz;
514 	}
515 
516 out:
517 	return err;
518 }
519 
520 int filename__read_build_id(const char *filename, void *bf, size_t size)
521 {
522 	int fd, err = -1;
523 	Elf *elf;
524 
525 	if (size < BUILD_ID_SIZE)
526 		goto out;
527 
528 	fd = open(filename, O_RDONLY);
529 	if (fd < 0)
530 		goto out;
531 
532 	elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
533 	if (elf == NULL) {
534 		pr_debug2("%s: cannot read %s ELF file.\n", __func__, filename);
535 		goto out_close;
536 	}
537 
538 	err = elf_read_build_id(elf, bf, size);
539 
540 	elf_end(elf);
541 out_close:
542 	close(fd);
543 out:
544 	return err;
545 }
546 
547 int sysfs__read_build_id(const char *filename, void *build_id, size_t size)
548 {
549 	int fd, err = -1;
550 
551 	if (size < BUILD_ID_SIZE)
552 		goto out;
553 
554 	fd = open(filename, O_RDONLY);
555 	if (fd < 0)
556 		goto out;
557 
558 	while (1) {
559 		char bf[BUFSIZ];
560 		GElf_Nhdr nhdr;
561 		size_t namesz, descsz;
562 
563 		if (read(fd, &nhdr, sizeof(nhdr)) != sizeof(nhdr))
564 			break;
565 
566 		namesz = NOTE_ALIGN(nhdr.n_namesz);
567 		descsz = NOTE_ALIGN(nhdr.n_descsz);
568 		if (nhdr.n_type == NT_GNU_BUILD_ID &&
569 		    nhdr.n_namesz == sizeof("GNU")) {
570 			if (read(fd, bf, namesz) != (ssize_t)namesz)
571 				break;
572 			if (memcmp(bf, "GNU", sizeof("GNU")) == 0) {
573 				size_t sz = min(descsz, size);
574 				if (read(fd, build_id, sz) == (ssize_t)sz) {
575 					memset(build_id + sz, 0, size - sz);
576 					err = 0;
577 					break;
578 				}
579 			} else if (read(fd, bf, descsz) != (ssize_t)descsz)
580 				break;
581 		} else {
582 			int n = namesz + descsz;
583 
584 			if (n > (int)sizeof(bf)) {
585 				n = sizeof(bf);
586 				pr_debug("%s: truncating reading of build id in sysfs file %s: n_namesz=%u, n_descsz=%u.\n",
587 					 __func__, filename, nhdr.n_namesz, nhdr.n_descsz);
588 			}
589 			if (read(fd, bf, n) != n)
590 				break;
591 		}
592 	}
593 	close(fd);
594 out:
595 	return err;
596 }
597 
598 int filename__read_debuglink(const char *filename, char *debuglink,
599 			     size_t size)
600 {
601 	int fd, err = -1;
602 	Elf *elf;
603 	GElf_Ehdr ehdr;
604 	GElf_Shdr shdr;
605 	Elf_Data *data;
606 	Elf_Scn *sec;
607 	Elf_Kind ek;
608 
609 	fd = open(filename, O_RDONLY);
610 	if (fd < 0)
611 		goto out;
612 
613 	elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
614 	if (elf == NULL) {
615 		pr_debug2("%s: cannot read %s ELF file.\n", __func__, filename);
616 		goto out_close;
617 	}
618 
619 	ek = elf_kind(elf);
620 	if (ek != ELF_K_ELF)
621 		goto out_elf_end;
622 
623 	if (gelf_getehdr(elf, &ehdr) == NULL) {
624 		pr_err("%s: cannot get elf header.\n", __func__);
625 		goto out_elf_end;
626 	}
627 
628 	sec = elf_section_by_name(elf, &ehdr, &shdr,
629 				  ".gnu_debuglink", NULL);
630 	if (sec == NULL)
631 		goto out_elf_end;
632 
633 	data = elf_getdata(sec, NULL);
634 	if (data == NULL)
635 		goto out_elf_end;
636 
637 	/* the start of this section is a zero-terminated string */
638 	strncpy(debuglink, data->d_buf, size);
639 
640 	err = 0;
641 
642 out_elf_end:
643 	elf_end(elf);
644 out_close:
645 	close(fd);
646 out:
647 	return err;
648 }
649 
650 static int dso__swap_init(struct dso *dso, unsigned char eidata)
651 {
652 	static unsigned int const endian = 1;
653 
654 	dso->needs_swap = DSO_SWAP__NO;
655 
656 	switch (eidata) {
657 	case ELFDATA2LSB:
658 		/* We are big endian, DSO is little endian. */
659 		if (*(unsigned char const *)&endian != 1)
660 			dso->needs_swap = DSO_SWAP__YES;
661 		break;
662 
663 	case ELFDATA2MSB:
664 		/* We are little endian, DSO is big endian. */
665 		if (*(unsigned char const *)&endian != 0)
666 			dso->needs_swap = DSO_SWAP__YES;
667 		break;
668 
669 	default:
670 		pr_err("unrecognized DSO data encoding %d\n", eidata);
671 		return -EINVAL;
672 	}
673 
674 	return 0;
675 }
676 
677 bool symsrc__possibly_runtime(struct symsrc *ss)
678 {
679 	return ss->dynsym || ss->opdsec;
680 }
681 
682 bool symsrc__has_symtab(struct symsrc *ss)
683 {
684 	return ss->symtab != NULL;
685 }
686 
687 void symsrc__destroy(struct symsrc *ss)
688 {
689 	zfree(&ss->name);
690 	elf_end(ss->elf);
691 	close(ss->fd);
692 }
693 
694 bool __weak elf__needs_adjust_symbols(GElf_Ehdr ehdr)
695 {
696 	return ehdr.e_type == ET_EXEC || ehdr.e_type == ET_REL;
697 }
698 
699 int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
700 		 enum dso_binary_type type)
701 {
702 	GElf_Ehdr ehdr;
703 	Elf *elf;
704 	int fd;
705 
706 	if (dso__needs_decompress(dso)) {
707 		fd = dso__decompress_kmodule_fd(dso, name);
708 		if (fd < 0)
709 			return -1;
710 
711 		type = dso->symtab_type;
712 	} else {
713 		fd = open(name, O_RDONLY);
714 		if (fd < 0) {
715 			dso->load_errno = errno;
716 			return -1;
717 		}
718 	}
719 
720 	elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
721 	if (elf == NULL) {
722 		pr_debug("%s: cannot read %s ELF file.\n", __func__, name);
723 		dso->load_errno = DSO_LOAD_ERRNO__INVALID_ELF;
724 		goto out_close;
725 	}
726 
727 	if (gelf_getehdr(elf, &ehdr) == NULL) {
728 		dso->load_errno = DSO_LOAD_ERRNO__INVALID_ELF;
729 		pr_debug("%s: cannot get elf header.\n", __func__);
730 		goto out_elf_end;
731 	}
732 
733 	if (dso__swap_init(dso, ehdr.e_ident[EI_DATA])) {
734 		dso->load_errno = DSO_LOAD_ERRNO__INTERNAL_ERROR;
735 		goto out_elf_end;
736 	}
737 
738 	/* Always reject images with a mismatched build-id: */
739 	if (dso->has_build_id && !symbol_conf.ignore_vmlinux_buildid) {
740 		u8 build_id[BUILD_ID_SIZE];
741 
742 		if (elf_read_build_id(elf, build_id, BUILD_ID_SIZE) < 0) {
743 			dso->load_errno = DSO_LOAD_ERRNO__CANNOT_READ_BUILDID;
744 			goto out_elf_end;
745 		}
746 
747 		if (!dso__build_id_equal(dso, build_id)) {
748 			pr_debug("%s: build id mismatch for %s.\n", __func__, name);
749 			dso->load_errno = DSO_LOAD_ERRNO__MISMATCHING_BUILDID;
750 			goto out_elf_end;
751 		}
752 	}
753 
754 	ss->is_64_bit = (gelf_getclass(elf) == ELFCLASS64);
755 
756 	ss->symtab = elf_section_by_name(elf, &ehdr, &ss->symshdr, ".symtab",
757 			NULL);
758 	if (ss->symshdr.sh_type != SHT_SYMTAB)
759 		ss->symtab = NULL;
760 
761 	ss->dynsym_idx = 0;
762 	ss->dynsym = elf_section_by_name(elf, &ehdr, &ss->dynshdr, ".dynsym",
763 			&ss->dynsym_idx);
764 	if (ss->dynshdr.sh_type != SHT_DYNSYM)
765 		ss->dynsym = NULL;
766 
767 	ss->opdidx = 0;
768 	ss->opdsec = elf_section_by_name(elf, &ehdr, &ss->opdshdr, ".opd",
769 			&ss->opdidx);
770 	if (ss->opdshdr.sh_type != SHT_PROGBITS)
771 		ss->opdsec = NULL;
772 
773 	if (dso->kernel == DSO_TYPE_USER)
774 		ss->adjust_symbols = true;
775 	else
776 		ss->adjust_symbols = elf__needs_adjust_symbols(ehdr);
777 
778 	ss->name   = strdup(name);
779 	if (!ss->name) {
780 		dso->load_errno = errno;
781 		goto out_elf_end;
782 	}
783 
784 	ss->elf    = elf;
785 	ss->fd     = fd;
786 	ss->ehdr   = ehdr;
787 	ss->type   = type;
788 
789 	return 0;
790 
791 out_elf_end:
792 	elf_end(elf);
793 out_close:
794 	close(fd);
795 	return -1;
796 }
797 
798 /**
799  * ref_reloc_sym_not_found - has kernel relocation symbol been found.
800  * @kmap: kernel maps and relocation reference symbol
801  *
802  * This function returns %true if we are dealing with the kernel maps and the
803  * relocation reference symbol has not yet been found.  Otherwise %false is
804  * returned.
805  */
806 static bool ref_reloc_sym_not_found(struct kmap *kmap)
807 {
808 	return kmap && kmap->ref_reloc_sym && kmap->ref_reloc_sym->name &&
809 	       !kmap->ref_reloc_sym->unrelocated_addr;
810 }
811 
812 /**
813  * ref_reloc - kernel relocation offset.
814  * @kmap: kernel maps and relocation reference symbol
815  *
816  * This function returns the offset of kernel addresses as determined by using
817  * the relocation reference symbol i.e. if the kernel has not been relocated
818  * then the return value is zero.
819  */
820 static u64 ref_reloc(struct kmap *kmap)
821 {
822 	if (kmap && kmap->ref_reloc_sym &&
823 	    kmap->ref_reloc_sym->unrelocated_addr)
824 		return kmap->ref_reloc_sym->addr -
825 		       kmap->ref_reloc_sym->unrelocated_addr;
826 	return 0;
827 }
828 
829 void __weak arch__sym_update(struct symbol *s __maybe_unused,
830 		GElf_Sym *sym __maybe_unused) { }
831 
832 static int dso__process_kernel_symbol(struct dso *dso, struct map *map,
833 				      GElf_Sym *sym, GElf_Shdr *shdr,
834 				      struct map_groups *kmaps, struct kmap *kmap,
835 				      struct dso **curr_dsop, struct map **curr_mapp,
836 				      const char *section_name,
837 				      bool adjust_kernel_syms, bool kmodule, bool *remap_kernel)
838 {
839 	struct dso *curr_dso = *curr_dsop;
840 	struct map *curr_map;
841 	char dso_name[PATH_MAX];
842 
843 	/* Adjust symbol to map to file offset */
844 	if (adjust_kernel_syms)
845 		sym->st_value -= shdr->sh_addr - shdr->sh_offset;
846 
847 	if (strcmp(section_name, (curr_dso->short_name + dso->short_name_len)) == 0)
848 		return 0;
849 
850 	if (strcmp(section_name, ".text") == 0) {
851 		/*
852 		 * The initial kernel mapping is based on
853 		 * kallsyms and identity maps.  Overwrite it to
854 		 * map to the kernel dso.
855 		 */
856 		if (*remap_kernel && dso->kernel) {
857 			*remap_kernel = false;
858 			map->start = shdr->sh_addr + ref_reloc(kmap);
859 			map->end = map->start + shdr->sh_size;
860 			map->pgoff = shdr->sh_offset;
861 			map->map_ip = map__map_ip;
862 			map->unmap_ip = map__unmap_ip;
863 			/* Ensure maps are correctly ordered */
864 			if (kmaps) {
865 				map__get(map);
866 				map_groups__remove(kmaps, map);
867 				map_groups__insert(kmaps, map);
868 				map__put(map);
869 			}
870 		}
871 
872 		/*
873 		 * The initial module mapping is based on
874 		 * /proc/modules mapped to offset zero.
875 		 * Overwrite it to map to the module dso.
876 		 */
877 		if (*remap_kernel && kmodule) {
878 			*remap_kernel = false;
879 			map->pgoff = shdr->sh_offset;
880 		}
881 
882 		*curr_mapp = map;
883 		*curr_dsop = dso;
884 		return 0;
885 	}
886 
887 	if (!kmap)
888 		return 0;
889 
890 	snprintf(dso_name, sizeof(dso_name), "%s%s", dso->short_name, section_name);
891 
892 	curr_map = map_groups__find_by_name(kmaps, dso_name);
893 	if (curr_map == NULL) {
894 		u64 start = sym->st_value;
895 
896 		if (kmodule)
897 			start += map->start + shdr->sh_offset;
898 
899 		curr_dso = dso__new(dso_name);
900 		if (curr_dso == NULL)
901 			return -1;
902 		curr_dso->kernel = dso->kernel;
903 		curr_dso->long_name = dso->long_name;
904 		curr_dso->long_name_len = dso->long_name_len;
905 		curr_map = map__new2(start, curr_dso);
906 		dso__put(curr_dso);
907 		if (curr_map == NULL)
908 			return -1;
909 
910 		if (adjust_kernel_syms) {
911 			curr_map->start  = shdr->sh_addr + ref_reloc(kmap);
912 			curr_map->end	 = curr_map->start + shdr->sh_size;
913 			curr_map->pgoff	 = shdr->sh_offset;
914 		} else {
915 			curr_map->map_ip = curr_map->unmap_ip = identity__map_ip;
916 		}
917 		curr_dso->symtab_type = dso->symtab_type;
918 		map_groups__insert(kmaps, curr_map);
919 		/*
920 		 * Add it before we drop the referece to curr_map, i.e. while
921 		 * we still are sure to have a reference to this DSO via
922 		 * *curr_map->dso.
923 		 */
924 		dsos__add(&map->groups->machine->dsos, curr_dso);
925 		/* kmaps already got it */
926 		map__put(curr_map);
927 		dso__set_loaded(curr_dso);
928 		*curr_mapp = curr_map;
929 		*curr_dsop = curr_dso;
930 	} else
931 		*curr_dsop = curr_map->dso;
932 
933 	return 0;
934 }
935 
936 int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *syms_ss,
937 		  struct symsrc *runtime_ss, int kmodule)
938 {
939 	struct kmap *kmap = dso->kernel ? map__kmap(map) : NULL;
940 	struct map_groups *kmaps = kmap ? map__kmaps(map) : NULL;
941 	struct map *curr_map = map;
942 	struct dso *curr_dso = dso;
943 	Elf_Data *symstrs, *secstrs;
944 	uint32_t nr_syms;
945 	int err = -1;
946 	uint32_t idx;
947 	GElf_Ehdr ehdr;
948 	GElf_Shdr shdr;
949 	GElf_Shdr tshdr;
950 	Elf_Data *syms, *opddata = NULL;
951 	GElf_Sym sym;
952 	Elf_Scn *sec, *sec_strndx;
953 	Elf *elf;
954 	int nr = 0;
955 	bool remap_kernel = false, adjust_kernel_syms = false;
956 
957 	if (kmap && !kmaps)
958 		return -1;
959 
960 	dso->symtab_type = syms_ss->type;
961 	dso->is_64_bit = syms_ss->is_64_bit;
962 	dso->rel = syms_ss->ehdr.e_type == ET_REL;
963 
964 	/*
965 	 * Modules may already have symbols from kallsyms, but those symbols
966 	 * have the wrong values for the dso maps, so remove them.
967 	 */
968 	if (kmodule && syms_ss->symtab)
969 		symbols__delete(&dso->symbols);
970 
971 	if (!syms_ss->symtab) {
972 		/*
973 		 * If the vmlinux is stripped, fail so we will fall back
974 		 * to using kallsyms. The vmlinux runtime symbols aren't
975 		 * of much use.
976 		 */
977 		if (dso->kernel)
978 			goto out_elf_end;
979 
980 		syms_ss->symtab  = syms_ss->dynsym;
981 		syms_ss->symshdr = syms_ss->dynshdr;
982 	}
983 
984 	elf = syms_ss->elf;
985 	ehdr = syms_ss->ehdr;
986 	sec = syms_ss->symtab;
987 	shdr = syms_ss->symshdr;
988 
989 	if (elf_section_by_name(runtime_ss->elf, &runtime_ss->ehdr, &tshdr,
990 				".text", NULL))
991 		dso->text_offset = tshdr.sh_addr - tshdr.sh_offset;
992 
993 	if (runtime_ss->opdsec)
994 		opddata = elf_rawdata(runtime_ss->opdsec, NULL);
995 
996 	syms = elf_getdata(sec, NULL);
997 	if (syms == NULL)
998 		goto out_elf_end;
999 
1000 	sec = elf_getscn(elf, shdr.sh_link);
1001 	if (sec == NULL)
1002 		goto out_elf_end;
1003 
1004 	symstrs = elf_getdata(sec, NULL);
1005 	if (symstrs == NULL)
1006 		goto out_elf_end;
1007 
1008 	sec_strndx = elf_getscn(runtime_ss->elf, runtime_ss->ehdr.e_shstrndx);
1009 	if (sec_strndx == NULL)
1010 		goto out_elf_end;
1011 
1012 	secstrs = elf_getdata(sec_strndx, NULL);
1013 	if (secstrs == NULL)
1014 		goto out_elf_end;
1015 
1016 	nr_syms = shdr.sh_size / shdr.sh_entsize;
1017 
1018 	memset(&sym, 0, sizeof(sym));
1019 
1020 	/*
1021 	 * The kernel relocation symbol is needed in advance in order to adjust
1022 	 * kernel maps correctly.
1023 	 */
1024 	if (ref_reloc_sym_not_found(kmap)) {
1025 		elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) {
1026 			const char *elf_name = elf_sym__name(&sym, symstrs);
1027 
1028 			if (strcmp(elf_name, kmap->ref_reloc_sym->name))
1029 				continue;
1030 			kmap->ref_reloc_sym->unrelocated_addr = sym.st_value;
1031 			map->reloc = kmap->ref_reloc_sym->addr -
1032 				     kmap->ref_reloc_sym->unrelocated_addr;
1033 			break;
1034 		}
1035 	}
1036 
1037 	/*
1038 	 * Handle any relocation of vdso necessary because older kernels
1039 	 * attempted to prelink vdso to its virtual address.
1040 	 */
1041 	if (dso__is_vdso(dso))
1042 		map->reloc = map->start - dso->text_offset;
1043 
1044 	dso->adjust_symbols = runtime_ss->adjust_symbols || ref_reloc(kmap);
1045 	/*
1046 	 * Initial kernel and module mappings do not map to the dso.
1047 	 * Flag the fixups.
1048 	 */
1049 	if (dso->kernel || kmodule) {
1050 		remap_kernel = true;
1051 		adjust_kernel_syms = dso->adjust_symbols;
1052 	}
1053 	elf_symtab__for_each_symbol(syms, nr_syms, idx, sym) {
1054 		struct symbol *f;
1055 		const char *elf_name = elf_sym__name(&sym, symstrs);
1056 		char *demangled = NULL;
1057 		int is_label = elf_sym__is_label(&sym);
1058 		const char *section_name;
1059 		bool used_opd = false;
1060 
1061 		if (!is_label && !elf_sym__filter(&sym))
1062 			continue;
1063 
1064 		/* Reject ARM ELF "mapping symbols": these aren't unique and
1065 		 * don't identify functions, so will confuse the profile
1066 		 * output: */
1067 		if (ehdr.e_machine == EM_ARM || ehdr.e_machine == EM_AARCH64) {
1068 			if (elf_name[0] == '$' && strchr("adtx", elf_name[1])
1069 			    && (elf_name[2] == '\0' || elf_name[2] == '.'))
1070 				continue;
1071 		}
1072 
1073 		if (runtime_ss->opdsec && sym.st_shndx == runtime_ss->opdidx) {
1074 			u32 offset = sym.st_value - syms_ss->opdshdr.sh_addr;
1075 			u64 *opd = opddata->d_buf + offset;
1076 			sym.st_value = DSO__SWAP(dso, u64, *opd);
1077 			sym.st_shndx = elf_addr_to_index(runtime_ss->elf,
1078 					sym.st_value);
1079 			used_opd = true;
1080 		}
1081 		/*
1082 		 * When loading symbols in a data mapping, ABS symbols (which
1083 		 * has a value of SHN_ABS in its st_shndx) failed at
1084 		 * elf_getscn().  And it marks the loading as a failure so
1085 		 * already loaded symbols cannot be fixed up.
1086 		 *
1087 		 * I'm not sure what should be done. Just ignore them for now.
1088 		 * - Namhyung Kim
1089 		 */
1090 		if (sym.st_shndx == SHN_ABS)
1091 			continue;
1092 
1093 		sec = elf_getscn(runtime_ss->elf, sym.st_shndx);
1094 		if (!sec)
1095 			goto out_elf_end;
1096 
1097 		gelf_getshdr(sec, &shdr);
1098 
1099 		if (is_label && !elf_sec__filter(&shdr, secstrs))
1100 			continue;
1101 
1102 		section_name = elf_sec__name(&shdr, secstrs);
1103 
1104 		/* On ARM, symbols for thumb functions have 1 added to
1105 		 * the symbol address as a flag - remove it */
1106 		if ((ehdr.e_machine == EM_ARM) &&
1107 		    (GELF_ST_TYPE(sym.st_info) == STT_FUNC) &&
1108 		    (sym.st_value & 1))
1109 			--sym.st_value;
1110 
1111 		if (dso->kernel || kmodule) {
1112 			if (dso__process_kernel_symbol(dso, map, &sym, &shdr, kmaps, kmap, &curr_dso, &curr_map,
1113 						       section_name, adjust_kernel_syms, kmodule, &remap_kernel))
1114 				goto out_elf_end;
1115 		} else if ((used_opd && runtime_ss->adjust_symbols) ||
1116 			   (!used_opd && syms_ss->adjust_symbols)) {
1117 			pr_debug4("%s: adjusting symbol: st_value: %#" PRIx64 " "
1118 				  "sh_addr: %#" PRIx64 " sh_offset: %#" PRIx64 "\n", __func__,
1119 				  (u64)sym.st_value, (u64)shdr.sh_addr,
1120 				  (u64)shdr.sh_offset);
1121 			sym.st_value -= shdr.sh_addr - shdr.sh_offset;
1122 		}
1123 
1124 		demangled = demangle_sym(dso, kmodule, elf_name);
1125 		if (demangled != NULL)
1126 			elf_name = demangled;
1127 
1128 		f = symbol__new(sym.st_value, sym.st_size,
1129 				GELF_ST_BIND(sym.st_info),
1130 				GELF_ST_TYPE(sym.st_info), elf_name);
1131 		free(demangled);
1132 		if (!f)
1133 			goto out_elf_end;
1134 
1135 		arch__sym_update(f, &sym);
1136 
1137 		__symbols__insert(&curr_dso->symbols, f, dso->kernel);
1138 		nr++;
1139 	}
1140 
1141 	/*
1142 	 * For misannotated, zeroed, ASM function sizes.
1143 	 */
1144 	if (nr > 0) {
1145 		symbols__fixup_end(&dso->symbols);
1146 		symbols__fixup_duplicate(&dso->symbols);
1147 		if (kmap) {
1148 			/*
1149 			 * We need to fixup this here too because we create new
1150 			 * maps here, for things like vsyscall sections.
1151 			 */
1152 			map_groups__fixup_end(kmaps);
1153 		}
1154 	}
1155 	err = nr;
1156 out_elf_end:
1157 	return err;
1158 }
1159 
1160 static int elf_read_maps(Elf *elf, bool exe, mapfn_t mapfn, void *data)
1161 {
1162 	GElf_Phdr phdr;
1163 	size_t i, phdrnum;
1164 	int err;
1165 	u64 sz;
1166 
1167 	if (elf_getphdrnum(elf, &phdrnum))
1168 		return -1;
1169 
1170 	for (i = 0; i < phdrnum; i++) {
1171 		if (gelf_getphdr(elf, i, &phdr) == NULL)
1172 			return -1;
1173 		if (phdr.p_type != PT_LOAD)
1174 			continue;
1175 		if (exe) {
1176 			if (!(phdr.p_flags & PF_X))
1177 				continue;
1178 		} else {
1179 			if (!(phdr.p_flags & PF_R))
1180 				continue;
1181 		}
1182 		sz = min(phdr.p_memsz, phdr.p_filesz);
1183 		if (!sz)
1184 			continue;
1185 		err = mapfn(phdr.p_vaddr, sz, phdr.p_offset, data);
1186 		if (err)
1187 			return err;
1188 	}
1189 	return 0;
1190 }
1191 
1192 int file__read_maps(int fd, bool exe, mapfn_t mapfn, void *data,
1193 		    bool *is_64_bit)
1194 {
1195 	int err;
1196 	Elf *elf;
1197 
1198 	elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
1199 	if (elf == NULL)
1200 		return -1;
1201 
1202 	if (is_64_bit)
1203 		*is_64_bit = (gelf_getclass(elf) == ELFCLASS64);
1204 
1205 	err = elf_read_maps(elf, exe, mapfn, data);
1206 
1207 	elf_end(elf);
1208 	return err;
1209 }
1210 
1211 enum dso_type dso__type_fd(int fd)
1212 {
1213 	enum dso_type dso_type = DSO__TYPE_UNKNOWN;
1214 	GElf_Ehdr ehdr;
1215 	Elf_Kind ek;
1216 	Elf *elf;
1217 
1218 	elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
1219 	if (elf == NULL)
1220 		goto out;
1221 
1222 	ek = elf_kind(elf);
1223 	if (ek != ELF_K_ELF)
1224 		goto out_end;
1225 
1226 	if (gelf_getclass(elf) == ELFCLASS64) {
1227 		dso_type = DSO__TYPE_64BIT;
1228 		goto out_end;
1229 	}
1230 
1231 	if (gelf_getehdr(elf, &ehdr) == NULL)
1232 		goto out_end;
1233 
1234 	if (ehdr.e_machine == EM_X86_64)
1235 		dso_type = DSO__TYPE_X32BIT;
1236 	else
1237 		dso_type = DSO__TYPE_32BIT;
1238 out_end:
1239 	elf_end(elf);
1240 out:
1241 	return dso_type;
1242 }
1243 
1244 static int copy_bytes(int from, off_t from_offs, int to, off_t to_offs, u64 len)
1245 {
1246 	ssize_t r;
1247 	size_t n;
1248 	int err = -1;
1249 	char *buf = malloc(page_size);
1250 
1251 	if (buf == NULL)
1252 		return -1;
1253 
1254 	if (lseek(to, to_offs, SEEK_SET) != to_offs)
1255 		goto out;
1256 
1257 	if (lseek(from, from_offs, SEEK_SET) != from_offs)
1258 		goto out;
1259 
1260 	while (len) {
1261 		n = page_size;
1262 		if (len < n)
1263 			n = len;
1264 		/* Use read because mmap won't work on proc files */
1265 		r = read(from, buf, n);
1266 		if (r < 0)
1267 			goto out;
1268 		if (!r)
1269 			break;
1270 		n = r;
1271 		r = write(to, buf, n);
1272 		if (r < 0)
1273 			goto out;
1274 		if ((size_t)r != n)
1275 			goto out;
1276 		len -= n;
1277 	}
1278 
1279 	err = 0;
1280 out:
1281 	free(buf);
1282 	return err;
1283 }
1284 
1285 struct kcore {
1286 	int fd;
1287 	int elfclass;
1288 	Elf *elf;
1289 	GElf_Ehdr ehdr;
1290 };
1291 
1292 static int kcore__open(struct kcore *kcore, const char *filename)
1293 {
1294 	GElf_Ehdr *ehdr;
1295 
1296 	kcore->fd = open(filename, O_RDONLY);
1297 	if (kcore->fd == -1)
1298 		return -1;
1299 
1300 	kcore->elf = elf_begin(kcore->fd, ELF_C_READ, NULL);
1301 	if (!kcore->elf)
1302 		goto out_close;
1303 
1304 	kcore->elfclass = gelf_getclass(kcore->elf);
1305 	if (kcore->elfclass == ELFCLASSNONE)
1306 		goto out_end;
1307 
1308 	ehdr = gelf_getehdr(kcore->elf, &kcore->ehdr);
1309 	if (!ehdr)
1310 		goto out_end;
1311 
1312 	return 0;
1313 
1314 out_end:
1315 	elf_end(kcore->elf);
1316 out_close:
1317 	close(kcore->fd);
1318 	return -1;
1319 }
1320 
1321 static int kcore__init(struct kcore *kcore, char *filename, int elfclass,
1322 		       bool temp)
1323 {
1324 	kcore->elfclass = elfclass;
1325 
1326 	if (temp)
1327 		kcore->fd = mkstemp(filename);
1328 	else
1329 		kcore->fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0400);
1330 	if (kcore->fd == -1)
1331 		return -1;
1332 
1333 	kcore->elf = elf_begin(kcore->fd, ELF_C_WRITE, NULL);
1334 	if (!kcore->elf)
1335 		goto out_close;
1336 
1337 	if (!gelf_newehdr(kcore->elf, elfclass))
1338 		goto out_end;
1339 
1340 	memset(&kcore->ehdr, 0, sizeof(GElf_Ehdr));
1341 
1342 	return 0;
1343 
1344 out_end:
1345 	elf_end(kcore->elf);
1346 out_close:
1347 	close(kcore->fd);
1348 	unlink(filename);
1349 	return -1;
1350 }
1351 
1352 static void kcore__close(struct kcore *kcore)
1353 {
1354 	elf_end(kcore->elf);
1355 	close(kcore->fd);
1356 }
1357 
1358 static int kcore__copy_hdr(struct kcore *from, struct kcore *to, size_t count)
1359 {
1360 	GElf_Ehdr *ehdr = &to->ehdr;
1361 	GElf_Ehdr *kehdr = &from->ehdr;
1362 
1363 	memcpy(ehdr->e_ident, kehdr->e_ident, EI_NIDENT);
1364 	ehdr->e_type      = kehdr->e_type;
1365 	ehdr->e_machine   = kehdr->e_machine;
1366 	ehdr->e_version   = kehdr->e_version;
1367 	ehdr->e_entry     = 0;
1368 	ehdr->e_shoff     = 0;
1369 	ehdr->e_flags     = kehdr->e_flags;
1370 	ehdr->e_phnum     = count;
1371 	ehdr->e_shentsize = 0;
1372 	ehdr->e_shnum     = 0;
1373 	ehdr->e_shstrndx  = 0;
1374 
1375 	if (from->elfclass == ELFCLASS32) {
1376 		ehdr->e_phoff     = sizeof(Elf32_Ehdr);
1377 		ehdr->e_ehsize    = sizeof(Elf32_Ehdr);
1378 		ehdr->e_phentsize = sizeof(Elf32_Phdr);
1379 	} else {
1380 		ehdr->e_phoff     = sizeof(Elf64_Ehdr);
1381 		ehdr->e_ehsize    = sizeof(Elf64_Ehdr);
1382 		ehdr->e_phentsize = sizeof(Elf64_Phdr);
1383 	}
1384 
1385 	if (!gelf_update_ehdr(to->elf, ehdr))
1386 		return -1;
1387 
1388 	if (!gelf_newphdr(to->elf, count))
1389 		return -1;
1390 
1391 	return 0;
1392 }
1393 
1394 static int kcore__add_phdr(struct kcore *kcore, int idx, off_t offset,
1395 			   u64 addr, u64 len)
1396 {
1397 	GElf_Phdr phdr = {
1398 		.p_type		= PT_LOAD,
1399 		.p_flags	= PF_R | PF_W | PF_X,
1400 		.p_offset	= offset,
1401 		.p_vaddr	= addr,
1402 		.p_paddr	= 0,
1403 		.p_filesz	= len,
1404 		.p_memsz	= len,
1405 		.p_align	= page_size,
1406 	};
1407 
1408 	if (!gelf_update_phdr(kcore->elf, idx, &phdr))
1409 		return -1;
1410 
1411 	return 0;
1412 }
1413 
1414 static off_t kcore__write(struct kcore *kcore)
1415 {
1416 	return elf_update(kcore->elf, ELF_C_WRITE);
1417 }
1418 
1419 struct phdr_data {
1420 	off_t offset;
1421 	off_t rel;
1422 	u64 addr;
1423 	u64 len;
1424 	struct list_head node;
1425 	struct phdr_data *remaps;
1426 };
1427 
1428 struct sym_data {
1429 	u64 addr;
1430 	struct list_head node;
1431 };
1432 
1433 struct kcore_copy_info {
1434 	u64 stext;
1435 	u64 etext;
1436 	u64 first_symbol;
1437 	u64 last_symbol;
1438 	u64 first_module;
1439 	u64 last_module_symbol;
1440 	size_t phnum;
1441 	struct list_head phdrs;
1442 	struct list_head syms;
1443 };
1444 
1445 #define kcore_copy__for_each_phdr(k, p) \
1446 	list_for_each_entry((p), &(k)->phdrs, node)
1447 
1448 static struct phdr_data *phdr_data__new(u64 addr, u64 len, off_t offset)
1449 {
1450 	struct phdr_data *p = zalloc(sizeof(*p));
1451 
1452 	if (p) {
1453 		p->addr   = addr;
1454 		p->len    = len;
1455 		p->offset = offset;
1456 	}
1457 
1458 	return p;
1459 }
1460 
1461 static struct phdr_data *kcore_copy_info__addnew(struct kcore_copy_info *kci,
1462 						 u64 addr, u64 len,
1463 						 off_t offset)
1464 {
1465 	struct phdr_data *p = phdr_data__new(addr, len, offset);
1466 
1467 	if (p)
1468 		list_add_tail(&p->node, &kci->phdrs);
1469 
1470 	return p;
1471 }
1472 
1473 static void kcore_copy__free_phdrs(struct kcore_copy_info *kci)
1474 {
1475 	struct phdr_data *p, *tmp;
1476 
1477 	list_for_each_entry_safe(p, tmp, &kci->phdrs, node) {
1478 		list_del(&p->node);
1479 		free(p);
1480 	}
1481 }
1482 
1483 static struct sym_data *kcore_copy__new_sym(struct kcore_copy_info *kci,
1484 					    u64 addr)
1485 {
1486 	struct sym_data *s = zalloc(sizeof(*s));
1487 
1488 	if (s) {
1489 		s->addr = addr;
1490 		list_add_tail(&s->node, &kci->syms);
1491 	}
1492 
1493 	return s;
1494 }
1495 
1496 static void kcore_copy__free_syms(struct kcore_copy_info *kci)
1497 {
1498 	struct sym_data *s, *tmp;
1499 
1500 	list_for_each_entry_safe(s, tmp, &kci->syms, node) {
1501 		list_del(&s->node);
1502 		free(s);
1503 	}
1504 }
1505 
1506 static int kcore_copy__process_kallsyms(void *arg, const char *name, char type,
1507 					u64 start)
1508 {
1509 	struct kcore_copy_info *kci = arg;
1510 
1511 	if (!kallsyms__is_function(type))
1512 		return 0;
1513 
1514 	if (strchr(name, '[')) {
1515 		if (start > kci->last_module_symbol)
1516 			kci->last_module_symbol = start;
1517 		return 0;
1518 	}
1519 
1520 	if (!kci->first_symbol || start < kci->first_symbol)
1521 		kci->first_symbol = start;
1522 
1523 	if (!kci->last_symbol || start > kci->last_symbol)
1524 		kci->last_symbol = start;
1525 
1526 	if (!strcmp(name, "_stext")) {
1527 		kci->stext = start;
1528 		return 0;
1529 	}
1530 
1531 	if (!strcmp(name, "_etext")) {
1532 		kci->etext = start;
1533 		return 0;
1534 	}
1535 
1536 	if (is_entry_trampoline(name) && !kcore_copy__new_sym(kci, start))
1537 		return -1;
1538 
1539 	return 0;
1540 }
1541 
1542 static int kcore_copy__parse_kallsyms(struct kcore_copy_info *kci,
1543 				      const char *dir)
1544 {
1545 	char kallsyms_filename[PATH_MAX];
1546 
1547 	scnprintf(kallsyms_filename, PATH_MAX, "%s/kallsyms", dir);
1548 
1549 	if (symbol__restricted_filename(kallsyms_filename, "/proc/kallsyms"))
1550 		return -1;
1551 
1552 	if (kallsyms__parse(kallsyms_filename, kci,
1553 			    kcore_copy__process_kallsyms) < 0)
1554 		return -1;
1555 
1556 	return 0;
1557 }
1558 
1559 static int kcore_copy__process_modules(void *arg,
1560 				       const char *name __maybe_unused,
1561 				       u64 start, u64 size __maybe_unused)
1562 {
1563 	struct kcore_copy_info *kci = arg;
1564 
1565 	if (!kci->first_module || start < kci->first_module)
1566 		kci->first_module = start;
1567 
1568 	return 0;
1569 }
1570 
1571 static int kcore_copy__parse_modules(struct kcore_copy_info *kci,
1572 				     const char *dir)
1573 {
1574 	char modules_filename[PATH_MAX];
1575 
1576 	scnprintf(modules_filename, PATH_MAX, "%s/modules", dir);
1577 
1578 	if (symbol__restricted_filename(modules_filename, "/proc/modules"))
1579 		return -1;
1580 
1581 	if (modules__parse(modules_filename, kci,
1582 			   kcore_copy__process_modules) < 0)
1583 		return -1;
1584 
1585 	return 0;
1586 }
1587 
1588 static int kcore_copy__map(struct kcore_copy_info *kci, u64 start, u64 end,
1589 			   u64 pgoff, u64 s, u64 e)
1590 {
1591 	u64 len, offset;
1592 
1593 	if (s < start || s >= end)
1594 		return 0;
1595 
1596 	offset = (s - start) + pgoff;
1597 	len = e < end ? e - s : end - s;
1598 
1599 	return kcore_copy_info__addnew(kci, s, len, offset) ? 0 : -1;
1600 }
1601 
1602 static int kcore_copy__read_map(u64 start, u64 len, u64 pgoff, void *data)
1603 {
1604 	struct kcore_copy_info *kci = data;
1605 	u64 end = start + len;
1606 	struct sym_data *sdat;
1607 
1608 	if (kcore_copy__map(kci, start, end, pgoff, kci->stext, kci->etext))
1609 		return -1;
1610 
1611 	if (kcore_copy__map(kci, start, end, pgoff, kci->first_module,
1612 			    kci->last_module_symbol))
1613 		return -1;
1614 
1615 	list_for_each_entry(sdat, &kci->syms, node) {
1616 		u64 s = round_down(sdat->addr, page_size);
1617 
1618 		if (kcore_copy__map(kci, start, end, pgoff, s, s + len))
1619 			return -1;
1620 	}
1621 
1622 	return 0;
1623 }
1624 
1625 static int kcore_copy__read_maps(struct kcore_copy_info *kci, Elf *elf)
1626 {
1627 	if (elf_read_maps(elf, true, kcore_copy__read_map, kci) < 0)
1628 		return -1;
1629 
1630 	return 0;
1631 }
1632 
1633 static void kcore_copy__find_remaps(struct kcore_copy_info *kci)
1634 {
1635 	struct phdr_data *p, *k = NULL;
1636 	u64 kend;
1637 
1638 	if (!kci->stext)
1639 		return;
1640 
1641 	/* Find phdr that corresponds to the kernel map (contains stext) */
1642 	kcore_copy__for_each_phdr(kci, p) {
1643 		u64 pend = p->addr + p->len - 1;
1644 
1645 		if (p->addr <= kci->stext && pend >= kci->stext) {
1646 			k = p;
1647 			break;
1648 		}
1649 	}
1650 
1651 	if (!k)
1652 		return;
1653 
1654 	kend = k->offset + k->len;
1655 
1656 	/* Find phdrs that remap the kernel */
1657 	kcore_copy__for_each_phdr(kci, p) {
1658 		u64 pend = p->offset + p->len;
1659 
1660 		if (p == k)
1661 			continue;
1662 
1663 		if (p->offset >= k->offset && pend <= kend)
1664 			p->remaps = k;
1665 	}
1666 }
1667 
1668 static void kcore_copy__layout(struct kcore_copy_info *kci)
1669 {
1670 	struct phdr_data *p;
1671 	off_t rel = 0;
1672 
1673 	kcore_copy__find_remaps(kci);
1674 
1675 	kcore_copy__for_each_phdr(kci, p) {
1676 		if (!p->remaps) {
1677 			p->rel = rel;
1678 			rel += p->len;
1679 		}
1680 		kci->phnum += 1;
1681 	}
1682 
1683 	kcore_copy__for_each_phdr(kci, p) {
1684 		struct phdr_data *k = p->remaps;
1685 
1686 		if (k)
1687 			p->rel = p->offset - k->offset + k->rel;
1688 	}
1689 }
1690 
1691 static int kcore_copy__calc_maps(struct kcore_copy_info *kci, const char *dir,
1692 				 Elf *elf)
1693 {
1694 	if (kcore_copy__parse_kallsyms(kci, dir))
1695 		return -1;
1696 
1697 	if (kcore_copy__parse_modules(kci, dir))
1698 		return -1;
1699 
1700 	if (kci->stext)
1701 		kci->stext = round_down(kci->stext, page_size);
1702 	else
1703 		kci->stext = round_down(kci->first_symbol, page_size);
1704 
1705 	if (kci->etext) {
1706 		kci->etext = round_up(kci->etext, page_size);
1707 	} else if (kci->last_symbol) {
1708 		kci->etext = round_up(kci->last_symbol, page_size);
1709 		kci->etext += page_size;
1710 	}
1711 
1712 	kci->first_module = round_down(kci->first_module, page_size);
1713 
1714 	if (kci->last_module_symbol) {
1715 		kci->last_module_symbol = round_up(kci->last_module_symbol,
1716 						   page_size);
1717 		kci->last_module_symbol += page_size;
1718 	}
1719 
1720 	if (!kci->stext || !kci->etext)
1721 		return -1;
1722 
1723 	if (kci->first_module && !kci->last_module_symbol)
1724 		return -1;
1725 
1726 	if (kcore_copy__read_maps(kci, elf))
1727 		return -1;
1728 
1729 	kcore_copy__layout(kci);
1730 
1731 	return 0;
1732 }
1733 
1734 static int kcore_copy__copy_file(const char *from_dir, const char *to_dir,
1735 				 const char *name)
1736 {
1737 	char from_filename[PATH_MAX];
1738 	char to_filename[PATH_MAX];
1739 
1740 	scnprintf(from_filename, PATH_MAX, "%s/%s", from_dir, name);
1741 	scnprintf(to_filename, PATH_MAX, "%s/%s", to_dir, name);
1742 
1743 	return copyfile_mode(from_filename, to_filename, 0400);
1744 }
1745 
1746 static int kcore_copy__unlink(const char *dir, const char *name)
1747 {
1748 	char filename[PATH_MAX];
1749 
1750 	scnprintf(filename, PATH_MAX, "%s/%s", dir, name);
1751 
1752 	return unlink(filename);
1753 }
1754 
1755 static int kcore_copy__compare_fds(int from, int to)
1756 {
1757 	char *buf_from;
1758 	char *buf_to;
1759 	ssize_t ret;
1760 	size_t len;
1761 	int err = -1;
1762 
1763 	buf_from = malloc(page_size);
1764 	buf_to = malloc(page_size);
1765 	if (!buf_from || !buf_to)
1766 		goto out;
1767 
1768 	while (1) {
1769 		/* Use read because mmap won't work on proc files */
1770 		ret = read(from, buf_from, page_size);
1771 		if (ret < 0)
1772 			goto out;
1773 
1774 		if (!ret)
1775 			break;
1776 
1777 		len = ret;
1778 
1779 		if (readn(to, buf_to, len) != (int)len)
1780 			goto out;
1781 
1782 		if (memcmp(buf_from, buf_to, len))
1783 			goto out;
1784 	}
1785 
1786 	err = 0;
1787 out:
1788 	free(buf_to);
1789 	free(buf_from);
1790 	return err;
1791 }
1792 
1793 static int kcore_copy__compare_files(const char *from_filename,
1794 				     const char *to_filename)
1795 {
1796 	int from, to, err = -1;
1797 
1798 	from = open(from_filename, O_RDONLY);
1799 	if (from < 0)
1800 		return -1;
1801 
1802 	to = open(to_filename, O_RDONLY);
1803 	if (to < 0)
1804 		goto out_close_from;
1805 
1806 	err = kcore_copy__compare_fds(from, to);
1807 
1808 	close(to);
1809 out_close_from:
1810 	close(from);
1811 	return err;
1812 }
1813 
1814 static int kcore_copy__compare_file(const char *from_dir, const char *to_dir,
1815 				    const char *name)
1816 {
1817 	char from_filename[PATH_MAX];
1818 	char to_filename[PATH_MAX];
1819 
1820 	scnprintf(from_filename, PATH_MAX, "%s/%s", from_dir, name);
1821 	scnprintf(to_filename, PATH_MAX, "%s/%s", to_dir, name);
1822 
1823 	return kcore_copy__compare_files(from_filename, to_filename);
1824 }
1825 
1826 /**
1827  * kcore_copy - copy kallsyms, modules and kcore from one directory to another.
1828  * @from_dir: from directory
1829  * @to_dir: to directory
1830  *
1831  * This function copies kallsyms, modules and kcore files from one directory to
1832  * another.  kallsyms and modules are copied entirely.  Only code segments are
1833  * copied from kcore.  It is assumed that two segments suffice: one for the
1834  * kernel proper and one for all the modules.  The code segments are determined
1835  * from kallsyms and modules files.  The kernel map starts at _stext or the
1836  * lowest function symbol, and ends at _etext or the highest function symbol.
1837  * The module map starts at the lowest module address and ends at the highest
1838  * module symbol.  Start addresses are rounded down to the nearest page.  End
1839  * addresses are rounded up to the nearest page.  An extra page is added to the
1840  * highest kernel symbol and highest module symbol to, hopefully, encompass that
1841  * symbol too.  Because it contains only code sections, the resulting kcore is
1842  * unusual.  One significant peculiarity is that the mapping (start -> pgoff)
1843  * is not the same for the kernel map and the modules map.  That happens because
1844  * the data is copied adjacently whereas the original kcore has gaps.  Finally,
1845  * kallsyms and modules files are compared with their copies to check that
1846  * modules have not been loaded or unloaded while the copies were taking place.
1847  *
1848  * Return: %0 on success, %-1 on failure.
1849  */
1850 int kcore_copy(const char *from_dir, const char *to_dir)
1851 {
1852 	struct kcore kcore;
1853 	struct kcore extract;
1854 	int idx = 0, err = -1;
1855 	off_t offset, sz;
1856 	struct kcore_copy_info kci = { .stext = 0, };
1857 	char kcore_filename[PATH_MAX];
1858 	char extract_filename[PATH_MAX];
1859 	struct phdr_data *p;
1860 
1861 	INIT_LIST_HEAD(&kci.phdrs);
1862 	INIT_LIST_HEAD(&kci.syms);
1863 
1864 	if (kcore_copy__copy_file(from_dir, to_dir, "kallsyms"))
1865 		return -1;
1866 
1867 	if (kcore_copy__copy_file(from_dir, to_dir, "modules"))
1868 		goto out_unlink_kallsyms;
1869 
1870 	scnprintf(kcore_filename, PATH_MAX, "%s/kcore", from_dir);
1871 	scnprintf(extract_filename, PATH_MAX, "%s/kcore", to_dir);
1872 
1873 	if (kcore__open(&kcore, kcore_filename))
1874 		goto out_unlink_modules;
1875 
1876 	if (kcore_copy__calc_maps(&kci, from_dir, kcore.elf))
1877 		goto out_kcore_close;
1878 
1879 	if (kcore__init(&extract, extract_filename, kcore.elfclass, false))
1880 		goto out_kcore_close;
1881 
1882 	if (kcore__copy_hdr(&kcore, &extract, kci.phnum))
1883 		goto out_extract_close;
1884 
1885 	offset = gelf_fsize(extract.elf, ELF_T_EHDR, 1, EV_CURRENT) +
1886 		 gelf_fsize(extract.elf, ELF_T_PHDR, kci.phnum, EV_CURRENT);
1887 	offset = round_up(offset, page_size);
1888 
1889 	kcore_copy__for_each_phdr(&kci, p) {
1890 		off_t offs = p->rel + offset;
1891 
1892 		if (kcore__add_phdr(&extract, idx++, offs, p->addr, p->len))
1893 			goto out_extract_close;
1894 	}
1895 
1896 	sz = kcore__write(&extract);
1897 	if (sz < 0 || sz > offset)
1898 		goto out_extract_close;
1899 
1900 	kcore_copy__for_each_phdr(&kci, p) {
1901 		off_t offs = p->rel + offset;
1902 
1903 		if (p->remaps)
1904 			continue;
1905 		if (copy_bytes(kcore.fd, p->offset, extract.fd, offs, p->len))
1906 			goto out_extract_close;
1907 	}
1908 
1909 	if (kcore_copy__compare_file(from_dir, to_dir, "modules"))
1910 		goto out_extract_close;
1911 
1912 	if (kcore_copy__compare_file(from_dir, to_dir, "kallsyms"))
1913 		goto out_extract_close;
1914 
1915 	err = 0;
1916 
1917 out_extract_close:
1918 	kcore__close(&extract);
1919 	if (err)
1920 		unlink(extract_filename);
1921 out_kcore_close:
1922 	kcore__close(&kcore);
1923 out_unlink_modules:
1924 	if (err)
1925 		kcore_copy__unlink(to_dir, "modules");
1926 out_unlink_kallsyms:
1927 	if (err)
1928 		kcore_copy__unlink(to_dir, "kallsyms");
1929 
1930 	kcore_copy__free_phdrs(&kci);
1931 	kcore_copy__free_syms(&kci);
1932 
1933 	return err;
1934 }
1935 
1936 int kcore_extract__create(struct kcore_extract *kce)
1937 {
1938 	struct kcore kcore;
1939 	struct kcore extract;
1940 	size_t count = 1;
1941 	int idx = 0, err = -1;
1942 	off_t offset = page_size, sz;
1943 
1944 	if (kcore__open(&kcore, kce->kcore_filename))
1945 		return -1;
1946 
1947 	strcpy(kce->extract_filename, PERF_KCORE_EXTRACT);
1948 	if (kcore__init(&extract, kce->extract_filename, kcore.elfclass, true))
1949 		goto out_kcore_close;
1950 
1951 	if (kcore__copy_hdr(&kcore, &extract, count))
1952 		goto out_extract_close;
1953 
1954 	if (kcore__add_phdr(&extract, idx, offset, kce->addr, kce->len))
1955 		goto out_extract_close;
1956 
1957 	sz = kcore__write(&extract);
1958 	if (sz < 0 || sz > offset)
1959 		goto out_extract_close;
1960 
1961 	if (copy_bytes(kcore.fd, kce->offs, extract.fd, offset, kce->len))
1962 		goto out_extract_close;
1963 
1964 	err = 0;
1965 
1966 out_extract_close:
1967 	kcore__close(&extract);
1968 	if (err)
1969 		unlink(kce->extract_filename);
1970 out_kcore_close:
1971 	kcore__close(&kcore);
1972 
1973 	return err;
1974 }
1975 
1976 void kcore_extract__delete(struct kcore_extract *kce)
1977 {
1978 	unlink(kce->extract_filename);
1979 }
1980 
1981 #ifdef HAVE_GELF_GETNOTE_SUPPORT
1982 
1983 static void sdt_adjust_loc(struct sdt_note *tmp, GElf_Addr base_off)
1984 {
1985 	if (!base_off)
1986 		return;
1987 
1988 	if (tmp->bit32)
1989 		tmp->addr.a32[SDT_NOTE_IDX_LOC] =
1990 			tmp->addr.a32[SDT_NOTE_IDX_LOC] + base_off -
1991 			tmp->addr.a32[SDT_NOTE_IDX_BASE];
1992 	else
1993 		tmp->addr.a64[SDT_NOTE_IDX_LOC] =
1994 			tmp->addr.a64[SDT_NOTE_IDX_LOC] + base_off -
1995 			tmp->addr.a64[SDT_NOTE_IDX_BASE];
1996 }
1997 
1998 static void sdt_adjust_refctr(struct sdt_note *tmp, GElf_Addr base_addr,
1999 			      GElf_Addr base_off)
2000 {
2001 	if (!base_off)
2002 		return;
2003 
2004 	if (tmp->bit32 && tmp->addr.a32[SDT_NOTE_IDX_REFCTR])
2005 		tmp->addr.a32[SDT_NOTE_IDX_REFCTR] -= (base_addr - base_off);
2006 	else if (tmp->addr.a64[SDT_NOTE_IDX_REFCTR])
2007 		tmp->addr.a64[SDT_NOTE_IDX_REFCTR] -= (base_addr - base_off);
2008 }
2009 
2010 /**
2011  * populate_sdt_note : Parse raw data and identify SDT note
2012  * @elf: elf of the opened file
2013  * @data: raw data of a section with description offset applied
2014  * @len: note description size
2015  * @type: type of the note
2016  * @sdt_notes: List to add the SDT note
2017  *
2018  * Responsible for parsing the @data in section .note.stapsdt in @elf and
2019  * if its an SDT note, it appends to @sdt_notes list.
2020  */
2021 static int populate_sdt_note(Elf **elf, const char *data, size_t len,
2022 			     struct list_head *sdt_notes)
2023 {
2024 	const char *provider, *name, *args;
2025 	struct sdt_note *tmp = NULL;
2026 	GElf_Ehdr ehdr;
2027 	GElf_Shdr shdr;
2028 	int ret = -EINVAL;
2029 
2030 	union {
2031 		Elf64_Addr a64[NR_ADDR];
2032 		Elf32_Addr a32[NR_ADDR];
2033 	} buf;
2034 
2035 	Elf_Data dst = {
2036 		.d_buf = &buf, .d_type = ELF_T_ADDR, .d_version = EV_CURRENT,
2037 		.d_size = gelf_fsize((*elf), ELF_T_ADDR, NR_ADDR, EV_CURRENT),
2038 		.d_off = 0, .d_align = 0
2039 	};
2040 	Elf_Data src = {
2041 		.d_buf = (void *) data, .d_type = ELF_T_ADDR,
2042 		.d_version = EV_CURRENT, .d_size = dst.d_size, .d_off = 0,
2043 		.d_align = 0
2044 	};
2045 
2046 	tmp = (struct sdt_note *)calloc(1, sizeof(struct sdt_note));
2047 	if (!tmp) {
2048 		ret = -ENOMEM;
2049 		goto out_err;
2050 	}
2051 
2052 	INIT_LIST_HEAD(&tmp->note_list);
2053 
2054 	if (len < dst.d_size + 3)
2055 		goto out_free_note;
2056 
2057 	/* Translation from file representation to memory representation */
2058 	if (gelf_xlatetom(*elf, &dst, &src,
2059 			  elf_getident(*elf, NULL)[EI_DATA]) == NULL) {
2060 		pr_err("gelf_xlatetom : %s\n", elf_errmsg(-1));
2061 		goto out_free_note;
2062 	}
2063 
2064 	/* Populate the fields of sdt_note */
2065 	provider = data + dst.d_size;
2066 
2067 	name = (const char *)memchr(provider, '\0', data + len - provider);
2068 	if (name++ == NULL)
2069 		goto out_free_note;
2070 
2071 	tmp->provider = strdup(provider);
2072 	if (!tmp->provider) {
2073 		ret = -ENOMEM;
2074 		goto out_free_note;
2075 	}
2076 	tmp->name = strdup(name);
2077 	if (!tmp->name) {
2078 		ret = -ENOMEM;
2079 		goto out_free_prov;
2080 	}
2081 
2082 	args = memchr(name, '\0', data + len - name);
2083 
2084 	/*
2085 	 * There is no argument if:
2086 	 * - We reached the end of the note;
2087 	 * - There is not enough room to hold a potential string;
2088 	 * - The argument string is empty or just contains ':'.
2089 	 */
2090 	if (args == NULL || data + len - args < 2 ||
2091 		args[1] == ':' || args[1] == '\0')
2092 		tmp->args = NULL;
2093 	else {
2094 		tmp->args = strdup(++args);
2095 		if (!tmp->args) {
2096 			ret = -ENOMEM;
2097 			goto out_free_name;
2098 		}
2099 	}
2100 
2101 	if (gelf_getclass(*elf) == ELFCLASS32) {
2102 		memcpy(&tmp->addr, &buf, 3 * sizeof(Elf32_Addr));
2103 		tmp->bit32 = true;
2104 	} else {
2105 		memcpy(&tmp->addr, &buf, 3 * sizeof(Elf64_Addr));
2106 		tmp->bit32 = false;
2107 	}
2108 
2109 	if (!gelf_getehdr(*elf, &ehdr)) {
2110 		pr_debug("%s : cannot get elf header.\n", __func__);
2111 		ret = -EBADF;
2112 		goto out_free_args;
2113 	}
2114 
2115 	/* Adjust the prelink effect :
2116 	 * Find out the .stapsdt.base section.
2117 	 * This scn will help us to handle prelinking (if present).
2118 	 * Compare the retrieved file offset of the base section with the
2119 	 * base address in the description of the SDT note. If its different,
2120 	 * then accordingly, adjust the note location.
2121 	 */
2122 	if (elf_section_by_name(*elf, &ehdr, &shdr, SDT_BASE_SCN, NULL))
2123 		sdt_adjust_loc(tmp, shdr.sh_offset);
2124 
2125 	/* Adjust reference counter offset */
2126 	if (elf_section_by_name(*elf, &ehdr, &shdr, SDT_PROBES_SCN, NULL))
2127 		sdt_adjust_refctr(tmp, shdr.sh_addr, shdr.sh_offset);
2128 
2129 	list_add_tail(&tmp->note_list, sdt_notes);
2130 	return 0;
2131 
2132 out_free_args:
2133 	free(tmp->args);
2134 out_free_name:
2135 	free(tmp->name);
2136 out_free_prov:
2137 	free(tmp->provider);
2138 out_free_note:
2139 	free(tmp);
2140 out_err:
2141 	return ret;
2142 }
2143 
2144 /**
2145  * construct_sdt_notes_list : constructs a list of SDT notes
2146  * @elf : elf to look into
2147  * @sdt_notes : empty list_head
2148  *
2149  * Scans the sections in 'elf' for the section
2150  * .note.stapsdt. It, then calls populate_sdt_note to find
2151  * out the SDT events and populates the 'sdt_notes'.
2152  */
2153 static int construct_sdt_notes_list(Elf *elf, struct list_head *sdt_notes)
2154 {
2155 	GElf_Ehdr ehdr;
2156 	Elf_Scn *scn = NULL;
2157 	Elf_Data *data;
2158 	GElf_Shdr shdr;
2159 	size_t shstrndx, next;
2160 	GElf_Nhdr nhdr;
2161 	size_t name_off, desc_off, offset;
2162 	int ret = 0;
2163 
2164 	if (gelf_getehdr(elf, &ehdr) == NULL) {
2165 		ret = -EBADF;
2166 		goto out_ret;
2167 	}
2168 	if (elf_getshdrstrndx(elf, &shstrndx) != 0) {
2169 		ret = -EBADF;
2170 		goto out_ret;
2171 	}
2172 
2173 	/* Look for the required section */
2174 	scn = elf_section_by_name(elf, &ehdr, &shdr, SDT_NOTE_SCN, NULL);
2175 	if (!scn) {
2176 		ret = -ENOENT;
2177 		goto out_ret;
2178 	}
2179 
2180 	if ((shdr.sh_type != SHT_NOTE) || (shdr.sh_flags & SHF_ALLOC)) {
2181 		ret = -ENOENT;
2182 		goto out_ret;
2183 	}
2184 
2185 	data = elf_getdata(scn, NULL);
2186 
2187 	/* Get the SDT notes */
2188 	for (offset = 0; (next = gelf_getnote(data, offset, &nhdr, &name_off,
2189 					      &desc_off)) > 0; offset = next) {
2190 		if (nhdr.n_namesz == sizeof(SDT_NOTE_NAME) &&
2191 		    !memcmp(data->d_buf + name_off, SDT_NOTE_NAME,
2192 			    sizeof(SDT_NOTE_NAME))) {
2193 			/* Check the type of the note */
2194 			if (nhdr.n_type != SDT_NOTE_TYPE)
2195 				goto out_ret;
2196 
2197 			ret = populate_sdt_note(&elf, ((data->d_buf) + desc_off),
2198 						nhdr.n_descsz, sdt_notes);
2199 			if (ret < 0)
2200 				goto out_ret;
2201 		}
2202 	}
2203 	if (list_empty(sdt_notes))
2204 		ret = -ENOENT;
2205 
2206 out_ret:
2207 	return ret;
2208 }
2209 
2210 /**
2211  * get_sdt_note_list : Wrapper to construct a list of sdt notes
2212  * @head : empty list_head
2213  * @target : file to find SDT notes from
2214  *
2215  * This opens the file, initializes
2216  * the ELF and then calls construct_sdt_notes_list.
2217  */
2218 int get_sdt_note_list(struct list_head *head, const char *target)
2219 {
2220 	Elf *elf;
2221 	int fd, ret;
2222 
2223 	fd = open(target, O_RDONLY);
2224 	if (fd < 0)
2225 		return -EBADF;
2226 
2227 	elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
2228 	if (!elf) {
2229 		ret = -EBADF;
2230 		goto out_close;
2231 	}
2232 	ret = construct_sdt_notes_list(elf, head);
2233 	elf_end(elf);
2234 out_close:
2235 	close(fd);
2236 	return ret;
2237 }
2238 
2239 /**
2240  * cleanup_sdt_note_list : free the sdt notes' list
2241  * @sdt_notes: sdt notes' list
2242  *
2243  * Free up the SDT notes in @sdt_notes.
2244  * Returns the number of SDT notes free'd.
2245  */
2246 int cleanup_sdt_note_list(struct list_head *sdt_notes)
2247 {
2248 	struct sdt_note *tmp, *pos;
2249 	int nr_free = 0;
2250 
2251 	list_for_each_entry_safe(pos, tmp, sdt_notes, note_list) {
2252 		list_del(&pos->note_list);
2253 		free(pos->name);
2254 		free(pos->provider);
2255 		free(pos);
2256 		nr_free++;
2257 	}
2258 	return nr_free;
2259 }
2260 
2261 /**
2262  * sdt_notes__get_count: Counts the number of sdt events
2263  * @start: list_head to sdt_notes list
2264  *
2265  * Returns the number of SDT notes in a list
2266  */
2267 int sdt_notes__get_count(struct list_head *start)
2268 {
2269 	struct sdt_note *sdt_ptr;
2270 	int count = 0;
2271 
2272 	list_for_each_entry(sdt_ptr, start, note_list)
2273 		count++;
2274 	return count;
2275 }
2276 #endif
2277 
2278 void symbol__elf_init(void)
2279 {
2280 	elf_version(EV_CURRENT);
2281 }
2282