1 | /*
|
---|
2 | * Copyright (c) 2006 Sergey Bondari
|
---|
3 | * Copyright (c) 2006 Jakub Jermar
|
---|
4 | * Copyright (c) 2011 Jiri Svoboda
|
---|
5 | * All rights reserved.
|
---|
6 | *
|
---|
7 | * Redistribution and use in source and binary forms, with or without
|
---|
8 | * modification, are permitted provided that the following conditions
|
---|
9 | * are met:
|
---|
10 | *
|
---|
11 | * - Redistributions of source code must retain the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer.
|
---|
13 | * - Redistributions in binary form must reproduce the above copyright
|
---|
14 | * notice, this list of conditions and the following disclaimer in the
|
---|
15 | * documentation and/or other materials provided with the distribution.
|
---|
16 | * - The name of the author may not be used to endorse or promote products
|
---|
17 | * derived from this software without specific prior written permission.
|
---|
18 | *
|
---|
19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
29 | */
|
---|
30 |
|
---|
31 | /** @addtogroup generic
|
---|
32 | * @{
|
---|
33 | */
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * @file
|
---|
37 | * @brief Userspace ELF loader.
|
---|
38 | *
|
---|
39 | * This module allows loading ELF binaries (both executables and
|
---|
40 | * shared objects) from VFS. The current implementation allocates
|
---|
41 | * anonymous memory, fills it with segment data and then adjusts
|
---|
42 | * the memory areas' flags to the final value. In the future,
|
---|
43 | * the segments will be mapped directly from the file.
|
---|
44 | */
|
---|
45 |
|
---|
46 | #include <stdio.h>
|
---|
47 | #include <sys/types.h>
|
---|
48 | #include <align.h>
|
---|
49 | #include <assert.h>
|
---|
50 | #include <as.h>
|
---|
51 | #include <unistd.h>
|
---|
52 | #include <fcntl.h>
|
---|
53 | #include <smc.h>
|
---|
54 | #include <loader/pcb.h>
|
---|
55 | #include <entry_point.h>
|
---|
56 |
|
---|
57 | #include "elf.h"
|
---|
58 | #include "elf_load.h"
|
---|
59 |
|
---|
60 | #define DPRINTF(...)
|
---|
61 |
|
---|
62 | static const char *error_codes[] = {
|
---|
63 | "no error",
|
---|
64 | "invalid image",
|
---|
65 | "address space error",
|
---|
66 | "incompatible image",
|
---|
67 | "unsupported image type",
|
---|
68 | "irrecoverable error"
|
---|
69 | };
|
---|
70 |
|
---|
71 | static unsigned int elf_load(elf_ld_t *elf, size_t so_bias);
|
---|
72 | static int segment_header(elf_ld_t *elf, elf_segment_header_t *entry);
|
---|
73 | static int section_header(elf_ld_t *elf, elf_section_header_t *entry);
|
---|
74 | static int load_segment(elf_ld_t *elf, elf_segment_header_t *entry);
|
---|
75 |
|
---|
76 | /** Read until the buffer is read in its entirety. */
|
---|
77 | static int my_read(int fd, void *buf, size_t len)
|
---|
78 | {
|
---|
79 | int cnt = 0;
|
---|
80 | do {
|
---|
81 | buf += cnt;
|
---|
82 | len -= cnt;
|
---|
83 | cnt = read(fd, buf, len);
|
---|
84 | } while ((cnt > 0) && ((len - cnt) > 0));
|
---|
85 |
|
---|
86 | return cnt;
|
---|
87 | }
|
---|
88 |
|
---|
89 | /** Load ELF binary from a file.
|
---|
90 | *
|
---|
91 | * Load an ELF binary from the specified file. If the file is
|
---|
92 | * an executable program, it is loaded unbiased. If it is a shared
|
---|
93 | * object, it is loaded with the bias @a so_bias. Some information
|
---|
94 | * extracted from the binary is stored in a elf_info_t structure
|
---|
95 | * pointed to by @a info.
|
---|
96 | *
|
---|
97 | * @param file_name Path to the ELF file.
|
---|
98 | * @param so_bias Bias to use if the file is a shared object.
|
---|
99 | * @param info Pointer to a structure for storing information
|
---|
100 | * extracted from the binary.
|
---|
101 | *
|
---|
102 | * @return EOK on success or negative error code.
|
---|
103 | *
|
---|
104 | */
|
---|
105 | int elf_load_file(const char *file_name, size_t so_bias, elf_info_t *info)
|
---|
106 | {
|
---|
107 | elf_ld_t elf;
|
---|
108 |
|
---|
109 | int fd;
|
---|
110 | int rc;
|
---|
111 |
|
---|
112 | fd = open(file_name, O_RDONLY);
|
---|
113 | if (fd < 0) {
|
---|
114 | DPRINTF("failed opening file\n");
|
---|
115 | return -1;
|
---|
116 | }
|
---|
117 |
|
---|
118 | elf.fd = fd;
|
---|
119 | elf.info = info;
|
---|
120 |
|
---|
121 | rc = elf_load(&elf, so_bias);
|
---|
122 |
|
---|
123 | close(fd);
|
---|
124 |
|
---|
125 | return rc;
|
---|
126 | }
|
---|
127 |
|
---|
128 | /** Run an ELF executable.
|
---|
129 | *
|
---|
130 | * Transfers control to the entry point of an ELF executable loaded
|
---|
131 | * earlier with elf_load_file(). This function does not return.
|
---|
132 | *
|
---|
133 | * @param info Info structure filled earlier by elf_load_file()
|
---|
134 | *
|
---|
135 | */
|
---|
136 | void elf_run(elf_info_t *info, pcb_t *pcb)
|
---|
137 | {
|
---|
138 | entry_point_jmp(info->entry, pcb);
|
---|
139 |
|
---|
140 | /* not reached */
|
---|
141 | }
|
---|
142 |
|
---|
143 | /** Create the program control block (PCB).
|
---|
144 | *
|
---|
145 | * Fills the program control block @a pcb with information from
|
---|
146 | * @a info.
|
---|
147 | *
|
---|
148 | * @param info Program info structure
|
---|
149 | * @return EOK on success or negative error code
|
---|
150 | */
|
---|
151 | void elf_create_pcb(elf_info_t *info, pcb_t *pcb)
|
---|
152 | {
|
---|
153 | pcb->entry = info->entry;
|
---|
154 | pcb->dynamic = info->dynamic;
|
---|
155 | }
|
---|
156 |
|
---|
157 |
|
---|
158 | /** Load an ELF binary.
|
---|
159 | *
|
---|
160 | * The @a elf structure contains the loader state, including
|
---|
161 | * an open file, from which the binary will be loaded,
|
---|
162 | * a pointer to the @c info structure etc.
|
---|
163 | *
|
---|
164 | * @param elf Pointer to loader state buffer.
|
---|
165 | * @param so_bias Bias to use if the file is a shared object.
|
---|
166 | * @return EE_OK on success or EE_xx error code.
|
---|
167 | */
|
---|
168 | static unsigned int elf_load(elf_ld_t *elf, size_t so_bias)
|
---|
169 | {
|
---|
170 | elf_header_t header_buf;
|
---|
171 | elf_header_t *header = &header_buf;
|
---|
172 | int i, rc;
|
---|
173 |
|
---|
174 | rc = my_read(elf->fd, header, sizeof(elf_header_t));
|
---|
175 | if (rc < 0) {
|
---|
176 | DPRINTF("Read error.\n");
|
---|
177 | return EE_INVALID;
|
---|
178 | }
|
---|
179 |
|
---|
180 | elf->header = header;
|
---|
181 |
|
---|
182 | /* Identify ELF */
|
---|
183 | if (header->e_ident[EI_MAG0] != ELFMAG0 ||
|
---|
184 | header->e_ident[EI_MAG1] != ELFMAG1 ||
|
---|
185 | header->e_ident[EI_MAG2] != ELFMAG2 ||
|
---|
186 | header->e_ident[EI_MAG3] != ELFMAG3) {
|
---|
187 | DPRINTF("Invalid header.\n");
|
---|
188 | return EE_INVALID;
|
---|
189 | }
|
---|
190 |
|
---|
191 | /* Identify ELF compatibility */
|
---|
192 | if (header->e_ident[EI_DATA] != ELF_DATA_ENCODING ||
|
---|
193 | header->e_machine != ELF_MACHINE ||
|
---|
194 | header->e_ident[EI_VERSION] != EV_CURRENT ||
|
---|
195 | header->e_version != EV_CURRENT ||
|
---|
196 | header->e_ident[EI_CLASS] != ELF_CLASS) {
|
---|
197 | DPRINTF("Incompatible data/version/class.\n");
|
---|
198 | return EE_INCOMPATIBLE;
|
---|
199 | }
|
---|
200 |
|
---|
201 | if (header->e_phentsize != sizeof(elf_segment_header_t)) {
|
---|
202 | DPRINTF("e_phentsize:%d != %d\n", header->e_phentsize,
|
---|
203 | sizeof(elf_segment_header_t));
|
---|
204 | return EE_INCOMPATIBLE;
|
---|
205 | }
|
---|
206 |
|
---|
207 | if (header->e_shentsize != sizeof(elf_section_header_t)) {
|
---|
208 | DPRINTF("e_shentsize:%d != %d\n", header->e_shentsize,
|
---|
209 | sizeof(elf_section_header_t));
|
---|
210 | return EE_INCOMPATIBLE;
|
---|
211 | }
|
---|
212 |
|
---|
213 | /* Check if the object type is supported. */
|
---|
214 | if (header->e_type != ET_EXEC && header->e_type != ET_DYN) {
|
---|
215 | DPRINTF("Object type %d is not supported\n", header->e_type);
|
---|
216 | return EE_UNSUPPORTED;
|
---|
217 | }
|
---|
218 |
|
---|
219 | /* Shared objects can be loaded with a bias */
|
---|
220 | if (header->e_type == ET_DYN)
|
---|
221 | elf->bias = so_bias;
|
---|
222 | else
|
---|
223 | elf->bias = 0;
|
---|
224 |
|
---|
225 | elf->info->interp = NULL;
|
---|
226 | elf->info->dynamic = NULL;
|
---|
227 |
|
---|
228 | /* Walk through all segment headers and process them. */
|
---|
229 | for (i = 0; i < header->e_phnum; i++) {
|
---|
230 | elf_segment_header_t segment_hdr;
|
---|
231 |
|
---|
232 | /* Seek to start of segment header */
|
---|
233 | lseek(elf->fd, header->e_phoff
|
---|
234 | + i * sizeof(elf_segment_header_t), SEEK_SET);
|
---|
235 |
|
---|
236 | rc = my_read(elf->fd, &segment_hdr,
|
---|
237 | sizeof(elf_segment_header_t));
|
---|
238 | if (rc < 0) {
|
---|
239 | DPRINTF("Read error.\n");
|
---|
240 | return EE_INVALID;
|
---|
241 | }
|
---|
242 |
|
---|
243 | rc = segment_header(elf, &segment_hdr);
|
---|
244 | if (rc != EE_OK)
|
---|
245 | return rc;
|
---|
246 | }
|
---|
247 |
|
---|
248 | DPRINTF("Parse sections.\n");
|
---|
249 |
|
---|
250 | /* Inspect all section headers and proccess them. */
|
---|
251 | for (i = 0; i < header->e_shnum; i++) {
|
---|
252 | elf_section_header_t section_hdr;
|
---|
253 |
|
---|
254 | /* Seek to start of section header */
|
---|
255 | lseek(elf->fd, header->e_shoff
|
---|
256 | + i * sizeof(elf_section_header_t), SEEK_SET);
|
---|
257 |
|
---|
258 | rc = my_read(elf->fd, §ion_hdr,
|
---|
259 | sizeof(elf_section_header_t));
|
---|
260 | if (rc < 0) {
|
---|
261 | DPRINTF("Read error.\n");
|
---|
262 | return EE_INVALID;
|
---|
263 | }
|
---|
264 |
|
---|
265 | rc = section_header(elf, §ion_hdr);
|
---|
266 | if (rc != EE_OK)
|
---|
267 | return rc;
|
---|
268 | }
|
---|
269 |
|
---|
270 | elf->info->entry =
|
---|
271 | (entry_point_t)((uint8_t *)header->e_entry + elf->bias);
|
---|
272 |
|
---|
273 | DPRINTF("Done.\n");
|
---|
274 |
|
---|
275 | return EE_OK;
|
---|
276 | }
|
---|
277 |
|
---|
278 | /** Print error message according to error code.
|
---|
279 | *
|
---|
280 | * @param rc Return code returned by elf_load().
|
---|
281 | *
|
---|
282 | * @return NULL terminated description of error.
|
---|
283 | */
|
---|
284 | const char *elf_error(unsigned int rc)
|
---|
285 | {
|
---|
286 | assert(rc < sizeof(error_codes) / sizeof(char *));
|
---|
287 |
|
---|
288 | return error_codes[rc];
|
---|
289 | }
|
---|
290 |
|
---|
291 | /** Process segment header.
|
---|
292 | *
|
---|
293 | * @param entry Segment header.
|
---|
294 | *
|
---|
295 | * @return EE_OK on success, error code otherwise.
|
---|
296 | */
|
---|
297 | static int segment_header(elf_ld_t *elf, elf_segment_header_t *entry)
|
---|
298 | {
|
---|
299 | switch (entry->p_type) {
|
---|
300 | case PT_NULL:
|
---|
301 | case PT_PHDR:
|
---|
302 | case PT_NOTE:
|
---|
303 | break;
|
---|
304 | case PT_LOAD:
|
---|
305 | return load_segment(elf, entry);
|
---|
306 | break;
|
---|
307 | case PT_INTERP:
|
---|
308 | /* Assume silently interp == "/rtld.so" */
|
---|
309 | elf->info->interp = "/rtld.so";
|
---|
310 | break;
|
---|
311 | case PT_DYNAMIC:
|
---|
312 | case PT_SHLIB:
|
---|
313 | case PT_LOPROC:
|
---|
314 | case PT_HIPROC:
|
---|
315 | default:
|
---|
316 | DPRINTF("Segment p_type %d unknown.\n", entry->p_type);
|
---|
317 | return EE_UNSUPPORTED;
|
---|
318 | break;
|
---|
319 | }
|
---|
320 | return EE_OK;
|
---|
321 | }
|
---|
322 |
|
---|
323 | /** Load segment described by program header entry.
|
---|
324 | *
|
---|
325 | * @param elf Loader state.
|
---|
326 | * @param entry Program header entry describing segment to be loaded.
|
---|
327 | *
|
---|
328 | * @return EE_OK on success, error code otherwise.
|
---|
329 | */
|
---|
330 | int load_segment(elf_ld_t *elf, elf_segment_header_t *entry)
|
---|
331 | {
|
---|
332 | void *a;
|
---|
333 | int flags = 0;
|
---|
334 | uintptr_t bias;
|
---|
335 | uintptr_t base;
|
---|
336 | void *seg_ptr;
|
---|
337 | uintptr_t seg_addr;
|
---|
338 | size_t mem_sz;
|
---|
339 | int rc;
|
---|
340 |
|
---|
341 | bias = elf->bias;
|
---|
342 |
|
---|
343 | seg_addr = entry->p_vaddr + bias;
|
---|
344 | seg_ptr = (void *) seg_addr;
|
---|
345 |
|
---|
346 | DPRINTF("Load segment at addr %p, size 0x%x\n", (void *) seg_addr,
|
---|
347 | entry->p_memsz);
|
---|
348 |
|
---|
349 | if (entry->p_align > 1) {
|
---|
350 | if ((entry->p_offset % entry->p_align) !=
|
---|
351 | (seg_addr % entry->p_align)) {
|
---|
352 | DPRINTF("Align check 1 failed offset%%align=%d, "
|
---|
353 | "vaddr%%align=%d\n",
|
---|
354 | entry->p_offset % entry->p_align,
|
---|
355 | seg_addr % entry->p_align
|
---|
356 | );
|
---|
357 | return EE_INVALID;
|
---|
358 | }
|
---|
359 | }
|
---|
360 |
|
---|
361 | /* Final flags that will be set for the memory area */
|
---|
362 |
|
---|
363 | if (entry->p_flags & PF_X)
|
---|
364 | flags |= AS_AREA_EXEC;
|
---|
365 | if (entry->p_flags & PF_W)
|
---|
366 | flags |= AS_AREA_WRITE;
|
---|
367 | if (entry->p_flags & PF_R)
|
---|
368 | flags |= AS_AREA_READ;
|
---|
369 | flags |= AS_AREA_CACHEABLE;
|
---|
370 |
|
---|
371 | base = ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE);
|
---|
372 | mem_sz = entry->p_memsz + (entry->p_vaddr - base);
|
---|
373 |
|
---|
374 | DPRINTF("Map to seg_addr=%p-%p.\n", (void *) seg_addr,
|
---|
375 | (void *) (entry->p_vaddr + bias +
|
---|
376 | ALIGN_UP(entry->p_memsz, PAGE_SIZE)));
|
---|
377 |
|
---|
378 | /*
|
---|
379 | * For the course of loading, the area needs to be readable
|
---|
380 | * and writeable.
|
---|
381 | */
|
---|
382 | a = as_area_create((uint8_t *)base + bias, mem_sz,
|
---|
383 | AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE);
|
---|
384 | if (a == (void *)(-1)) {
|
---|
385 | DPRINTF("Memory mapping failed.\n");
|
---|
386 | return EE_MEMORY;
|
---|
387 | }
|
---|
388 |
|
---|
389 | DPRINTF("as_area_create(%p, %#zx, %d) -> %p\n",
|
---|
390 | (void *) (base + bias), mem_sz, flags, (void *) a);
|
---|
391 |
|
---|
392 | /*
|
---|
393 | * Load segment data
|
---|
394 | */
|
---|
395 | rc = lseek(elf->fd, entry->p_offset, SEEK_SET);
|
---|
396 | if (rc < 0) {
|
---|
397 | printf("seek error\n");
|
---|
398 | return EE_INVALID;
|
---|
399 | }
|
---|
400 |
|
---|
401 | /* rc = read(fd, (void *)(entry->p_vaddr + bias), entry->p_filesz);
|
---|
402 | if (rc < 0) { printf("read error\n"); return EE_INVALID; }*/
|
---|
403 |
|
---|
404 | /* Long reads are not possible yet. Load segment piecewise. */
|
---|
405 |
|
---|
406 | unsigned left, now;
|
---|
407 | uint8_t *dp;
|
---|
408 |
|
---|
409 | left = entry->p_filesz;
|
---|
410 | dp = seg_ptr;
|
---|
411 |
|
---|
412 | while (left > 0) {
|
---|
413 | now = 16384;
|
---|
414 | if (now > left) now = left;
|
---|
415 |
|
---|
416 | rc = my_read(elf->fd, dp, now);
|
---|
417 |
|
---|
418 | if (rc < 0) {
|
---|
419 | DPRINTF("Read error.\n");
|
---|
420 | return EE_INVALID;
|
---|
421 | }
|
---|
422 |
|
---|
423 | left -= now;
|
---|
424 | dp += now;
|
---|
425 | }
|
---|
426 |
|
---|
427 | rc = as_area_change_flags(seg_ptr, flags);
|
---|
428 | if (rc != 0) {
|
---|
429 | DPRINTF("Failed to set memory area flags.\n");
|
---|
430 | return EE_MEMORY;
|
---|
431 | }
|
---|
432 |
|
---|
433 | if (flags & AS_AREA_EXEC) {
|
---|
434 | /* Enforce SMC coherence for the segment */
|
---|
435 | if (smc_coherence(seg_ptr, entry->p_filesz))
|
---|
436 | return EE_MEMORY;
|
---|
437 | }
|
---|
438 |
|
---|
439 | return EE_OK;
|
---|
440 | }
|
---|
441 |
|
---|
442 | /** Process section header.
|
---|
443 | *
|
---|
444 | * @param elf Loader state.
|
---|
445 | * @param entry Segment header.
|
---|
446 | *
|
---|
447 | * @return EE_OK on success, error code otherwise.
|
---|
448 | */
|
---|
449 | static int section_header(elf_ld_t *elf, elf_section_header_t *entry)
|
---|
450 | {
|
---|
451 | switch (entry->sh_type) {
|
---|
452 | case SHT_PROGBITS:
|
---|
453 | if (entry->sh_flags & SHF_TLS) {
|
---|
454 | /* .tdata */
|
---|
455 | }
|
---|
456 | break;
|
---|
457 | case SHT_NOBITS:
|
---|
458 | if (entry->sh_flags & SHF_TLS) {
|
---|
459 | /* .tbss */
|
---|
460 | }
|
---|
461 | break;
|
---|
462 | case SHT_DYNAMIC:
|
---|
463 | /* Record pointer to dynamic section into info structure */
|
---|
464 | elf->info->dynamic =
|
---|
465 | (void *)((uint8_t *)entry->sh_addr + elf->bias);
|
---|
466 | DPRINTF("Dynamic section found at %p.\n",
|
---|
467 | (void *) elf->info->dynamic);
|
---|
468 | break;
|
---|
469 | default:
|
---|
470 | break;
|
---|
471 | }
|
---|
472 |
|
---|
473 | return EE_OK;
|
---|
474 | }
|
---|
475 |
|
---|
476 | /** @}
|
---|
477 | */
|
---|