forked from sysprog21/riscv-emu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
elf.c
247 lines (217 loc) · 7.24 KB
/
elf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/*
* ELF format support
*
* Copyright (c) 2019 Fernando Lemos
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
#include "cutils.h"
typedef struct __attribute__((packed)) {
uint8_t magic[4];
uint8_t class;
uint8_t data;
uint8_t version;
uint8_t osabi;
uint8_t abiversion;
uint8_t pad[7];
} elf_ident_t;
typedef struct __attribute__((packed)) {
elf_ident_t ident;
uint16_t type;
uint16_t machine;
uint32_t version;
uint32_t entry;
uint32_t phoff;
uint32_t shoff;
uint32_t flags;
uint16_t ehsize;
uint16_t phentsize;
uint16_t phnum;
uint16_t shentsize;
uint16_t shnum;
uint16_t shstrndx;
} elf_header32_t;
typedef struct __attribute__((packed)) {
elf_ident_t ident;
uint16_t type;
uint16_t machine;
uint32_t version;
uint64_t entry;
uint64_t phoff;
uint64_t shoff;
uint32_t flags;
uint16_t ehsize;
uint16_t phentsize;
uint16_t phnum;
uint16_t shentsize;
uint16_t shnum;
uint16_t shstrndx;
} elf_header64_t;
typedef struct __attribute__((packed)) {
uint32_t type;
uint32_t offset;
uint32_t vaddr;
uint32_t paddr;
uint32_t filesz;
uint32_t memsz;
uint32_t flags;
uint32_t align;
} elf_pheader32_t;
typedef struct __attribute__((packed)) {
uint32_t type;
uint32_t flags;
uint64_t offset;
uint64_t vaddr;
uint64_t paddr;
uint64_t filesz;
uint64_t memsz;
uint64_t align;
} elf_pheader64_t;
typedef struct __attribute__((packed)) {
uint32_t name;
uint32_t type;
uint32_t flags;
uint32_t addr;
uint32_t offset;
uint32_t size;
uint32_t link;
uint32_t info;
uint32_t addralign;
uint32_t entsize;
} elf_sheader32_t;
typedef struct __attribute__((packed)) {
uint32_t name;
uint32_t type;
uint64_t flags;
uint64_t addr;
uint64_t offset;
uint64_t size;
uint32_t link;
uint32_t info;
uint64_t addralign;
uint64_t entsize;
} elf_sheader64_t;
#define PT_LOAD 0x01
int elf_detect_magic(const uint8_t *buf, int buf_len)
{
if (buf_len < sizeof(elf_ident_t)) return 0;
elf_ident_t *ident = (void *)buf;
return (ident->magic[0] == 0x7f &&
ident->magic[1] == 'E' &&
ident->magic[2] == 'L' &&
ident->magic[3] == 'F' &&
ident->version == 1);
}
#define is_elf_64 (ident->class == 2)
#define is_big_endian (ident->data == 2)
#ifdef WORDS_BIGENDIAN
#define elf_to_cpu16(x) (is_big_endian ? (x) : bswap_16(x))
#define elf_to_cpu32(x) (is_big_endian ? (x) : bswap_32(x))
#define elf_to_cpu64(x) (is_big_endian ? (x) : bswap_64(x))
#else
#define elf_to_cpu16(x) (is_big_endian ? bswap_16(x) : (x))
#define elf_to_cpu32(x) (is_big_endian ? bswap_32(x) : (x))
#define elf_to_cpu64(x) (is_big_endian ? bswap_64(x) : (x))
#endif
#define header_field(bs, x) \
(is_elf_64 ? \
elf_to_cpu##bs(((elf_header64_t *)buf)->x) : \
elf_to_cpu##bs(((elf_header32_t *)buf)->x))
#define header_dword(x) \
(is_elf_64 ? \
elf_to_cpu64(((elf_header64_t *)buf)->x) : \
(uint64_t)elf_to_cpu32(((elf_header32_t *)buf)->x))
#define pheader_field(bs, x) \
(is_elf_64 ? \
elf_to_cpu##bs(((elf_pheader64_t *)(buf + phbase))->x) : \
elf_to_cpu##bs(((elf_pheader32_t *)(buf + phbase))->x))
#define pheader_dword(x) \
(is_elf_64 ? \
elf_to_cpu64(((elf_pheader64_t *)(buf + phbase))->x) : \
(uint64_t)elf_to_cpu32(((elf_pheader32_t *)(buf + phbase))->x))
#define sheader_field(bs, x) \
(is_elf_64 ? \
elf_to_cpu##bs(((elf_sheader64_t *)(buf + shbase))->x) : \
elf_to_cpu##bs(((elf_sheader32_t *)(buf + shbase))->x))
#define sheader_dword(x) \
(is_elf_64 ? \
elf_to_cpu64(((elf_sheader64_t *)(buf + shbase))->x) : \
(uint64_t)elf_to_cpu32(((elf_sheader32_t *)(buf + shbase))->x))
int elf_load(const uint8_t *buf, int buf_len,
uint8_t *outbuf, int outbuf_len)
{
elf_ident_t *ident = (elf_ident_t *)buf;
const uint16_t phnum = header_field(16, phnum);
const uint16_t phentsize = header_field(16, phentsize);
const uintptr_t phoff = (uintptr_t)header_dword(phoff);
uintptr_t base_address = UINTPTR_MAX;
uint16_t i;
for (i = 0; i < phnum; i++) {
const uintptr_t phbase = phoff + i * phentsize;
const uint32_t type = pheader_field(32, type);
if (type == PT_LOAD) {
const uintptr_t paddr = (uintptr_t)pheader_dword(paddr);
if (paddr < base_address) base_address = paddr;
}
}
for (i = 0; i < phnum; i++) {
const uintptr_t phbase = phoff + i * phentsize;
const uint32_t type = pheader_field(32, type);
if (type == PT_LOAD) {
const uintptr_t offset = (uintptr_t)pheader_dword(offset);
const uintptr_t paddr = (uintptr_t)pheader_dword(paddr);
const size_t filesz = (size_t)pheader_dword(filesz);
if (paddr - base_address + filesz > outbuf_len) return -1;
memcpy(&outbuf[paddr - base_address], &buf[offset], filesz);
}
}
return 0;
}
int elf_find_section(const uint8_t *buf, const char *name,
uint64_t *start, uint64_t *len)
{
elf_ident_t *ident = (elf_ident_t *)buf;
const uint16_t shstrndx = header_field(16, shstrndx);
if (shstrndx == 0) return 0;
const uint16_t shnum = header_field(16, shnum);
const uint16_t shentsize = header_field(16, shentsize);
const uintptr_t shoff = (uintptr_t)header_dword(shoff);
/* Find the string table */
uintptr_t shbase = (uintptr_t)shoff + shstrndx * shentsize;
const uintptr_t table_start = (uintptr_t)sheader_dword(offset);
const uint64_t table_len = sheader_dword(size);
if (table_len == 0) return 0;
/* Find the section by name */
uint16_t i;
for (i = 0; i < shnum; i++) {
shbase = shoff + i * shentsize;
const uint32_t name_idx = sheader_field(32, name);
const char *name_str = (const char *)(buf + table_start + name_idx);
if (!strcmp(name_str, name)) {
if (start != NULL) *start = sheader_dword(addr);
if (len != NULL) *len = sheader_dword(size);
return 1;
}
}
return 0;
}