2 * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <lttng/align.h>
24 #include <lttng/ust-elf.h>
25 #include <sys/types.h>
31 #include "lttng-tracer-core.h"
35 #ifndef NT_GNU_BUILD_ID
36 # define NT_GNU_BUILD_ID 3
40 * Retrieve the nth (where n is the `index` argument) phdr (program
41 * header) from the given elf instance.
43 * A pointer to the phdr is returned on success, NULL on failure.
46 struct lttng_ust_elf_phdr
*lttng_ust_elf_get_phdr(struct lttng_ust_elf
*elf
,
49 struct lttng_ust_elf_phdr
*phdr
= NULL
;
56 if (index
>= elf
->ehdr
->e_phnum
) {
60 phdr
= zmalloc(sizeof(struct lttng_ust_elf_phdr
));
65 offset
= (off_t
) elf
->ehdr
->e_phoff
66 + (off_t
) index
* elf
->ehdr
->e_phentsize
;
67 if (lseek(elf
->fd
, offset
, SEEK_SET
) < 0) {
71 if (is_elf_32_bit(elf
)) {
74 if (lttng_ust_read(elf
->fd
, &elf_phdr
, sizeof(elf_phdr
))
78 if (!is_elf_native_endian(elf
)) {
81 copy_phdr(elf_phdr
, *phdr
);
85 if (lttng_ust_read(elf
->fd
, &elf_phdr
, sizeof(elf_phdr
))
89 if (!is_elf_native_endian(elf
)) {
92 copy_phdr(elf_phdr
, *phdr
);
103 * Retrieve the nth (where n is the `index` argument) shdr (section
104 * header) from the given elf instance.
106 * A pointer to the shdr is returned on success, NULL on failure.
109 struct lttng_ust_elf_shdr
*lttng_ust_elf_get_shdr(struct lttng_ust_elf
*elf
,
112 struct lttng_ust_elf_shdr
*shdr
= NULL
;
119 if (index
>= elf
->ehdr
->e_shnum
) {
123 shdr
= zmalloc(sizeof(struct lttng_ust_elf_shdr
));
128 offset
= (off_t
) elf
->ehdr
->e_shoff
129 + (off_t
) index
* elf
->ehdr
->e_shentsize
;
130 if (lseek(elf
->fd
, offset
, SEEK_SET
) < 0) {
134 if (is_elf_32_bit(elf
)) {
137 if (lttng_ust_read(elf
->fd
, &elf_shdr
, sizeof(elf_shdr
))
138 < sizeof(elf_shdr
)) {
141 if (!is_elf_native_endian(elf
)) {
142 bswap_shdr(elf_shdr
);
144 copy_shdr(elf_shdr
, *shdr
);
148 if (lttng_ust_read(elf
->fd
, &elf_shdr
, sizeof(elf_shdr
))
149 < sizeof(elf_shdr
)) {
152 if (!is_elf_native_endian(elf
)) {
153 bswap_shdr(elf_shdr
);
155 copy_shdr(elf_shdr
, *shdr
);
166 * Lookup a section's name from a given offset (usually from an shdr's
167 * sh_name value) in bytes relative to the beginning of the section
168 * names string table.
170 * If no name is found, NULL is returned.
173 char *lttng_ust_elf_get_section_name(struct lttng_ust_elf
*elf
, off_t offset
)
176 size_t len
= 0, to_read
; /* len does not include \0 */
182 if (offset
>= elf
->section_names_size
) {
186 if (lseek(elf
->fd
, elf
->section_names_offset
+ offset
, SEEK_SET
) < 0) {
190 to_read
= elf
->section_names_size
- offset
;
192 /* Find first \0 after or at current location, remember len. */
201 read_len
= lttng_ust_read(elf
->fd
, buf
,
202 min_t(size_t, BUF_LEN
, to_read
));
206 for (i
= 0; i
< read_len
; i
++) {
207 if (buf
[i
] == '\0') {
216 name
= zmalloc(sizeof(char) * (len
+ 1)); /* + 1 for \0 */
220 if (lseek(elf
->fd
, elf
->section_names_offset
+ offset
,
224 if (lttng_ust_read(elf
->fd
, name
, len
+ 1) < len
+ 1) {
236 * Create an instance of lttng_ust_elf for the ELF file located at
239 * Return a pointer to the instance on success, NULL on failure.
241 struct lttng_ust_elf
*lttng_ust_elf_create(const char *path
)
243 uint8_t e_ident
[EI_NIDENT
];
244 struct lttng_ust_elf_shdr
*section_names_shdr
;
245 struct lttng_ust_elf
*elf
= NULL
;
247 elf
= zmalloc(sizeof(struct lttng_ust_elf
));
253 elf
->path
= strdup(path
);
258 lttng_ust_lock_fd_tracker();
259 elf
->fd
= open(elf
->path
, O_RDONLY
| O_CLOEXEC
);
261 lttng_ust_unlock_fd_tracker();
264 lttng_ust_add_fd_to_tracker(elf
->fd
);
265 lttng_ust_unlock_fd_tracker();
267 if (lttng_ust_read(elf
->fd
, e_ident
, EI_NIDENT
) < EI_NIDENT
) {
270 elf
->bitness
= e_ident
[EI_CLASS
];
271 elf
->endianness
= e_ident
[EI_DATA
];
273 if (lseek(elf
->fd
, 0, SEEK_SET
) < 0) {
277 elf
->ehdr
= zmalloc(sizeof(struct lttng_ust_elf_ehdr
));
282 if (is_elf_32_bit(elf
)) {
285 if (lttng_ust_read(elf
->fd
, &elf_ehdr
, sizeof(elf_ehdr
))
286 < sizeof(elf_ehdr
)) {
289 if (!is_elf_native_endian(elf
)) {
290 bswap_ehdr(elf_ehdr
);
292 copy_ehdr(elf_ehdr
, *(elf
->ehdr
));
296 if (lttng_ust_read(elf
->fd
, &elf_ehdr
, sizeof(elf_ehdr
))
297 < sizeof(elf_ehdr
)) {
300 if (!is_elf_native_endian(elf
)) {
301 bswap_ehdr(elf_ehdr
);
303 copy_ehdr(elf_ehdr
, *(elf
->ehdr
));
306 section_names_shdr
= lttng_ust_elf_get_shdr(elf
, elf
->ehdr
->e_shstrndx
);
307 if (!section_names_shdr
) {
311 elf
->section_names_offset
= section_names_shdr
->sh_offset
;
312 elf
->section_names_size
= section_names_shdr
->sh_size
;
314 free(section_names_shdr
);
318 lttng_ust_elf_destroy(elf
);
323 * Test whether the ELF file is position independent code (PIC)
325 uint8_t lttng_ust_elf_is_pic(struct lttng_ust_elf
*elf
)
328 * PIC has and e_type value of ET_DYN, see ELF specification
329 * version 1.1 p. 1-3.
331 return elf
->ehdr
->e_type
== ET_DYN
;
335 * Destroy the given lttng_ust_elf instance.
337 void lttng_ust_elf_destroy(struct lttng_ust_elf
*elf
)
346 lttng_ust_lock_fd_tracker();
347 ret
= close(elf
->fd
);
349 lttng_ust_delete_fd_from_tracker(elf
->fd
);
354 lttng_ust_unlock_fd_tracker();
363 * Compute the total in-memory size of the ELF file, in bytes.
365 * Returns 0 if successful, -1 if not. On success, the memory size is
366 * returned through the out parameter `memsz`.
368 int lttng_ust_elf_get_memsz(struct lttng_ust_elf
*elf
, uint64_t *memsz
)
371 uint64_t low_addr
= UINT64_MAX
, high_addr
= 0;
373 if (!elf
|| !memsz
) {
377 for (i
= 0; i
< elf
->ehdr
->e_phnum
; ++i
) {
378 struct lttng_ust_elf_phdr
*phdr
;
380 phdr
= lttng_ust_elf_get_phdr(elf
, i
);
386 * Only PT_LOAD segments contribute to memsz. Skip
389 if (phdr
->p_type
!= PT_LOAD
) {
393 low_addr
= min_t(uint64_t, low_addr
, phdr
->p_vaddr
);
394 high_addr
= max_t(uint64_t, high_addr
,
395 phdr
->p_vaddr
+ phdr
->p_memsz
);
400 if (high_addr
< low_addr
) {
401 /* No PT_LOAD segments or corrupted data. */
405 *memsz
= high_addr
- low_addr
;
412 * Internal method used to try and get the build_id from a PT_NOTE
413 * segment ranging from `offset` to `segment_end`.
415 * If the function returns successfully, the out parameter `found`
416 * indicates whether the build id information was present in the
417 * segment or not. If `found` is not 0, the out parameters `build_id`
418 * and `length` will both have been set with the retrieved
421 * Returns 0 on success, -1 if an error occurred.
424 int lttng_ust_elf_get_build_id_from_segment(
425 struct lttng_ust_elf
*elf
, uint8_t **build_id
, size_t *length
,
426 off_t offset
, off_t segment_end
)
428 uint8_t *_build_id
= NULL
; /* Silence old gcc warning. */
429 size_t _length
= 0; /* Silence old gcc warning. */
431 while (offset
< segment_end
) {
432 struct lttng_ust_elf_nhdr nhdr
;
435 /* Align start of note entry */
436 offset
+= offset_align(offset
, ELF_NOTE_ENTRY_ALIGN
);
437 if (offset
>= segment_end
) {
441 * We seek manually because if the note isn't the
442 * build id the data following the header will not
445 if (lseek(elf
->fd
, offset
, SEEK_SET
) < 0) {
448 if (lttng_ust_read(elf
->fd
, &nhdr
, sizeof(nhdr
))
453 if (!is_elf_native_endian(elf
)) {
454 nhdr
.n_namesz
= bswap_32(nhdr
.n_namesz
);
455 nhdr
.n_descsz
= bswap_32(nhdr
.n_descsz
);
456 nhdr
.n_type
= bswap_32(nhdr
.n_type
);
459 offset
+= sizeof(nhdr
) + nhdr
.n_namesz
;
460 /* Align start of desc entry */
461 offset
+= offset_align(offset
, ELF_NOTE_DESC_ALIGN
);
463 if (nhdr
.n_type
!= NT_GNU_BUILD_ID
) {
465 * Ignore non build id notes but still
466 * increase the offset.
468 offset
+= nhdr
.n_descsz
;
472 _length
= nhdr
.n_descsz
;
473 _build_id
= zmalloc(sizeof(uint8_t) * _length
);
478 if (lseek(elf
->fd
, offset
, SEEK_SET
) < 0) {
481 read_len
= sizeof(*_build_id
) * _length
;
482 if (lttng_ust_read(elf
->fd
, _build_id
, read_len
) < read_len
) {
490 *build_id
= _build_id
;
501 * Retrieve a build ID (an array of bytes) from the corresponding
502 * section in the ELF file. The length of the build ID can be either
503 * 16 or 20 bytes depending on the method used to generate it, hence
504 * the length out parameter.
506 * If the function returns successfully, the out parameter `found`
507 * indicates whether the build id information was present in the ELF
508 * file or not. If `found` is not 0, the out parameters `build_id` and
509 * `length` will both have been set with the retrieved information.
511 * Returns 0 on success, -1 if an error occurred.
513 int lttng_ust_elf_get_build_id(struct lttng_ust_elf
*elf
, uint8_t **build_id
,
514 size_t *length
, int *found
)
517 uint8_t *_build_id
= NULL
; /* Silence old gcc warning. */
518 size_t _length
= 0; /* Silence old gcc warning. */
520 if (!elf
|| !build_id
|| !length
|| !found
) {
524 for (i
= 0; i
< elf
->ehdr
->e_phnum
; ++i
) {
525 off_t offset
, segment_end
;
526 struct lttng_ust_elf_phdr
*phdr
;
529 phdr
= lttng_ust_elf_get_phdr(elf
, i
);
534 /* Build ID will be contained in a PT_NOTE segment. */
535 if (phdr
->p_type
!= PT_NOTE
) {
539 offset
= phdr
->p_offset
;
540 segment_end
= offset
+ phdr
->p_filesz
;
541 ret
= lttng_ust_elf_get_build_id_from_segment(
542 elf
, &_build_id
, &_length
, offset
, segment_end
);
554 *build_id
= _build_id
;
568 * Try to retrieve filename and CRC from given ELF section `shdr`.
570 * If the function returns successfully, the out parameter `found`
571 * indicates whether the debug link information was present in the ELF
572 * section or not. If `found` is not 0, the out parameters `filename` and
573 * `crc` will both have been set with the retrieved information.
575 * Returns 0 on success, -1 if an error occurred.
577 int lttng_ust_elf_get_debug_link_from_section(struct lttng_ust_elf
*elf
,
578 char **filename
, uint32_t *crc
,
579 struct lttng_ust_elf_shdr
*shdr
)
581 char *_filename
= NULL
; /* Silence old gcc warning. */
583 char *section_name
= NULL
;
584 uint32_t _crc
= 0; /* Silence old gcc warning. */
586 if (!elf
|| !filename
|| !crc
|| !shdr
) {
591 * The .gnu_debuglink section is of type SHT_PROGBITS,
592 * skip the other sections.
594 if (shdr
->sh_type
!= SHT_PROGBITS
) {
598 section_name
= lttng_ust_elf_get_section_name(elf
,
603 if (strcmp(section_name
, ".gnu_debuglink")) {
608 * The length of the filename is the sh_size excluding the CRC
609 * which comes after it in the section.
611 _filename
= zmalloc(sizeof(char) * (shdr
->sh_size
- ELF_CRC_SIZE
));
615 if (lseek(elf
->fd
, shdr
->sh_offset
, SEEK_SET
) < 0) {
618 filename_len
= sizeof(*_filename
) * (shdr
->sh_size
- ELF_CRC_SIZE
);
619 if (lttng_ust_read(elf
->fd
, _filename
, filename_len
) < filename_len
) {
622 if (lttng_ust_read(elf
->fd
, &_crc
, sizeof(_crc
)) < sizeof(_crc
)) {
625 if (!is_elf_native_endian(elf
)) {
626 _crc
= bswap_32(_crc
);
632 *filename
= _filename
;
645 * Retrieve filename and CRC from ELF's .gnu_debuglink section, if any.
647 * If the function returns successfully, the out parameter `found`
648 * indicates whether the debug link information was present in the ELF
649 * file or not. If `found` is not 0, the out parameters `filename` and
650 * `crc` will both have been set with the retrieved information.
652 * Returns 0 on success, -1 if an error occurred.
654 int lttng_ust_elf_get_debug_link(struct lttng_ust_elf
*elf
, char **filename
,
655 uint32_t *crc
, int *found
)
659 char *_filename
= NULL
; /* Silence old gcc warning. */
660 uint32_t _crc
= 0; /* Silence old gcc warning. */
662 if (!elf
|| !filename
|| !crc
|| !found
) {
666 for (i
= 0; i
< elf
->ehdr
->e_shnum
; ++i
) {
667 struct lttng_ust_elf_shdr
*shdr
= NULL
;
669 shdr
= lttng_ust_elf_get_shdr(elf
, i
);
674 ret
= lttng_ust_elf_get_debug_link_from_section(
675 elf
, &_filename
, &_crc
, shdr
);
687 *filename
= _filename
;
This page took 0.056281 seconds and 5 git commands to generate.