1 #ifndef _LTTNG_UST_ELF_H
2 #define _LTTNG_UST_ELF_H
4 * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #include <lttng/ust-endian.h>
29 * Determine native endianness in order to convert when reading an ELF
30 * file if there is a mismatch.
32 #if BYTE_ORDER == LITTLE_ENDIAN
33 #define NATIVE_ELF_ENDIANNESS ELFDATA2LSB
35 #define NATIVE_ELF_ENDIANNESS ELFDATA2MSB
39 * The size in bytes of the debug link CRC as contained in an ELF
42 #define ELF_CRC_SIZE 4
44 * ELF notes are aligned on 4 bytes. ref: ELF specification version
47 #define ELF_NOTE_ENTRY_ALIGN 4
49 * Within an ELF note, the `desc` field is also aligned on 4
50 * bytes. ref: ELF specification version 1.1 p. 2-5.
52 #define ELF_NOTE_DESC_ALIGN 4
56 switch (sizeof(x)) { \
73 #define bswap_phdr(phdr) \
75 bswap((phdr).p_type); \
76 bswap((phdr).p_offset); \
77 bswap((phdr).p_filesz); \
78 bswap((phdr).p_memsz); \
79 bswap((phdr).p_align); \
80 bswap((phdr).p_vaddr); \
83 #define bswap_shdr(shdr) \
85 bswap((shdr).sh_name); \
86 bswap((shdr).sh_type); \
87 bswap((shdr).sh_flags); \
88 bswap((shdr).sh_addr); \
89 bswap((shdr).sh_offset); \
90 bswap((shdr).sh_size); \
91 bswap((shdr).sh_link); \
92 bswap((shdr).sh_info); \
93 bswap((shdr).sh_addralign); \
94 bswap((shdr).sh_entsize); \
97 #define bswap_ehdr(ehdr) \
99 bswap((ehdr).e_type); \
100 bswap((ehdr).e_machine); \
101 bswap((ehdr).e_version); \
102 bswap((ehdr).e_entry); \
103 bswap((ehdr).e_phoff); \
104 bswap((ehdr).e_shoff); \
105 bswap((ehdr).e_flags); \
106 bswap((ehdr).e_ehsize); \
107 bswap((ehdr).e_phentsize); \
108 bswap((ehdr).e_phnum); \
109 bswap((ehdr).e_shentsize); \
110 bswap((ehdr).e_shnum); \
111 bswap((ehdr).e_shstrndx); \
114 #define copy_phdr(src_phdr, dst_phdr) \
116 (dst_phdr).p_type = (src_phdr).p_type; \
117 (dst_phdr).p_offset = (src_phdr).p_offset; \
118 (dst_phdr).p_filesz = (src_phdr).p_filesz; \
119 (dst_phdr).p_memsz = (src_phdr).p_memsz; \
120 (dst_phdr).p_align = (src_phdr).p_align; \
121 (dst_phdr).p_vaddr = (src_phdr).p_vaddr; \
124 #define copy_shdr(src_shdr, dst_shdr) \
126 (dst_shdr).sh_name = (src_shdr).sh_name; \
127 (dst_shdr).sh_type = (src_shdr).sh_type; \
128 (dst_shdr).sh_flags = (src_shdr).sh_flags; \
129 (dst_shdr).sh_addr = (src_shdr).sh_addr; \
130 (dst_shdr).sh_offset = (src_shdr).sh_offset; \
131 (dst_shdr).sh_size = (src_shdr).sh_size; \
132 (dst_shdr).sh_link = (src_shdr).sh_link; \
133 (dst_shdr).sh_info = (src_shdr).sh_info; \
134 (dst_shdr).sh_addralign = (src_shdr).sh_addralign; \
135 (dst_shdr).sh_entsize = (src_shdr).sh_entsize; \
138 #define copy_ehdr(src_ehdr, dst_ehdr) \
140 (dst_ehdr).e_type = (src_ehdr).e_type; \
141 (dst_ehdr).e_machine = (src_ehdr).e_machine; \
142 (dst_ehdr).e_version = (src_ehdr).e_version; \
143 (dst_ehdr).e_entry = (src_ehdr).e_entry; \
144 (dst_ehdr).e_phoff = (src_ehdr).e_phoff; \
145 (dst_ehdr).e_shoff = (src_ehdr).e_shoff; \
146 (dst_ehdr).e_flags = (src_ehdr).e_flags; \
147 (dst_ehdr).e_ehsize = (src_ehdr).e_ehsize; \
148 (dst_ehdr).e_phentsize = (src_ehdr).e_phentsize; \
149 (dst_ehdr).e_phnum = (src_ehdr).e_phnum; \
150 (dst_ehdr).e_shentsize = (src_ehdr).e_shentsize; \
151 (dst_ehdr).e_shnum = (src_ehdr).e_shnum; \
152 (dst_ehdr).e_shstrndx = (src_ehdr).e_shstrndx; \
155 struct lttng_ust_elf_ehdr
{
164 uint16_t e_phentsize
;
166 uint16_t e_shentsize
;
171 struct lttng_ust_elf_phdr
{
180 struct lttng_ust_elf_shdr
{
189 uint64_t sh_addralign
;
193 struct lttng_ust_elf_nhdr
{
199 struct lttng_ust_elf
{
200 /* Offset in bytes to start of section names string table. */
201 off_t section_names_offset
;
202 /* Size in bytes of section names string table. */
203 size_t section_names_size
;
206 struct lttng_ust_elf_ehdr
*ehdr
;
212 int is_elf_32_bit(struct lttng_ust_elf
*elf
)
214 return elf
->bitness
== ELFCLASS32
;
218 int is_elf_native_endian(struct lttng_ust_elf
*elf
)
220 return elf
->endianness
== NATIVE_ELF_ENDIANNESS
;
223 struct lttng_ust_elf
*lttng_ust_elf_create(const char *path
);
224 void lttng_ust_elf_destroy(struct lttng_ust_elf
*elf
);
225 uint8_t lttng_ust_elf_is_pic(struct lttng_ust_elf
*elf
);
226 int lttng_ust_elf_get_memsz(struct lttng_ust_elf
*elf
, uint64_t *memsz
);
227 int lttng_ust_elf_get_build_id(struct lttng_ust_elf
*elf
, uint8_t **build_id
,
228 size_t *length
, int *found
);
229 int lttng_ust_elf_get_debug_link(struct lttng_ust_elf
*elf
, char **filename
,
230 uint32_t *crc
, int *found
);
232 #endif /* _LTTNG_UST_ELF_H */