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 module 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 <errno.h>
|
---|
47 | #include <stdio.h>
|
---|
48 | #include <vfs/vfs.h>
|
---|
49 | #include <stddef.h>
|
---|
50 | #include <stdint.h>
|
---|
51 | #include <align.h>
|
---|
52 | #include <assert.h>
|
---|
53 | #include <as.h>
|
---|
54 | #include <elf/elf.h>
|
---|
55 | #include <smc.h>
|
---|
56 | #include <loader/pcb.h>
|
---|
57 | #include <entry_point.h>
|
---|
58 | #include <str_error.h>
|
---|
59 | #include <stdlib.h>
|
---|
60 |
|
---|
61 | #include <elf/elf_load.h>
|
---|
62 |
|
---|
63 | #define DPRINTF(...)
|
---|
64 |
|
---|
65 | static const char *error_codes[] = {
|
---|
66 | "no error",
|
---|
67 | "invalid image",
|
---|
68 | "address space error",
|
---|
69 | "incompatible image",
|
---|
70 | "unsupported image type",
|
---|
71 | "irrecoverable error"
|
---|
72 | };
|
---|
73 |
|
---|
74 | static unsigned int elf_load_module(elf_ld_t *elf, size_t so_bias);
|
---|
75 | static int segment_header(elf_ld_t *elf, elf_segment_header_t *entry);
|
---|
76 | static int section_header(elf_ld_t *elf, elf_section_header_t *entry);
|
---|
77 | static int load_segment(elf_ld_t *elf, elf_segment_header_t *entry);
|
---|
78 |
|
---|
79 | /** Load ELF binary from a file.
|
---|
80 | *
|
---|
81 | * Load an ELF binary from the specified file. If the file is
|
---|
82 | * an executable program, it is loaded unbiased. If it is a shared
|
---|
83 | * object, it is loaded with the bias @a so_bias. Some information
|
---|
84 | * extracted from the binary is stored in a elf_info_t structure
|
---|
85 | * pointed to by @a info.
|
---|
86 | *
|
---|
87 | * @param file ELF file.
|
---|
88 | * @param so_bias Bias to use if the file is a shared object.
|
---|
89 | * @param info Pointer to a structure for storing information
|
---|
90 | * extracted from the binary.
|
---|
91 | *
|
---|
92 | * @return EOK on success or negative error code.
|
---|
93 | *
|
---|
94 | */
|
---|
95 | int elf_load_file(int file, size_t so_bias, eld_flags_t flags, elf_finfo_t *info)
|
---|
96 | {
|
---|
97 | elf_ld_t elf;
|
---|
98 |
|
---|
99 | int ofile;
|
---|
100 | int rc = vfs_clone(file, -1, true, &ofile);
|
---|
101 | if (rc == EOK) {
|
---|
102 | rc = vfs_open(ofile, MODE_READ);
|
---|
103 | }
|
---|
104 | if (rc != EOK) {
|
---|
105 | return rc;
|
---|
106 | }
|
---|
107 |
|
---|
108 | elf.fd = ofile;
|
---|
109 | elf.info = info;
|
---|
110 | elf.flags = flags;
|
---|
111 |
|
---|
112 | rc = elf_load_module(&elf, so_bias);
|
---|
113 |
|
---|
114 | vfs_put(ofile);
|
---|
115 | return rc;
|
---|
116 | }
|
---|
117 |
|
---|
118 | int elf_load_file_name(const char *path, size_t so_bias, eld_flags_t flags,
|
---|
119 | elf_finfo_t *info)
|
---|
120 | {
|
---|
121 | int file;
|
---|
122 | int rc = vfs_lookup(path, 0, &file);
|
---|
123 | if (rc == EOK) {
|
---|
124 | rc = elf_load_file(file, so_bias, flags, info);
|
---|
125 | vfs_put(file);
|
---|
126 | }
|
---|
127 | return rc;
|
---|
128 | }
|
---|
129 |
|
---|
130 | /** Load an ELF binary.
|
---|
131 | *
|
---|
132 | * The @a elf structure contains the loader state, including
|
---|
133 | * an open file, from which the binary will be loaded,
|
---|
134 | * a pointer to the @c info structure etc.
|
---|
135 | *
|
---|
136 | * @param elf Pointer to loader state buffer.
|
---|
137 | * @param so_bias Bias to use if the file is a shared object.
|
---|
138 | * @return EE_OK on success or EE_xx error code.
|
---|
139 | */
|
---|
140 | static unsigned int elf_load_module(elf_ld_t *elf, size_t so_bias)
|
---|
141 | {
|
---|
142 | elf_header_t header_buf;
|
---|
143 | elf_header_t *header = &header_buf;
|
---|
144 | aoff64_t pos = 0;
|
---|
145 | size_t nr;
|
---|
146 | int i, rc;
|
---|
147 |
|
---|
148 | rc = vfs_read(elf->fd, &pos, header, sizeof(elf_header_t), &nr);
|
---|
149 | if (rc != EOK || nr != sizeof(elf_header_t)) {
|
---|
150 | DPRINTF("Read error.\n");
|
---|
151 | return EE_INVALID;
|
---|
152 | }
|
---|
153 |
|
---|
154 | elf->header = header;
|
---|
155 |
|
---|
156 | /* Identify ELF */
|
---|
157 | if (header->e_ident[EI_MAG0] != ELFMAG0 ||
|
---|
158 | header->e_ident[EI_MAG1] != ELFMAG1 ||
|
---|
159 | header->e_ident[EI_MAG2] != ELFMAG2 ||
|
---|
160 | header->e_ident[EI_MAG3] != ELFMAG3) {
|
---|
161 | DPRINTF("Invalid header.\n");
|
---|
162 | return EE_INVALID;
|
---|
163 | }
|
---|
164 |
|
---|
165 | /* Identify ELF compatibility */
|
---|
166 | if (header->e_ident[EI_DATA] != ELF_DATA_ENCODING ||
|
---|
167 | header->e_machine != ELF_MACHINE ||
|
---|
168 | header->e_ident[EI_VERSION] != EV_CURRENT ||
|
---|
169 | header->e_version != EV_CURRENT ||
|
---|
170 | header->e_ident[EI_CLASS] != ELF_CLASS) {
|
---|
171 | DPRINTF("Incompatible data/version/class.\n");
|
---|
172 | return EE_INCOMPATIBLE;
|
---|
173 | }
|
---|
174 |
|
---|
175 | if (header->e_phentsize != sizeof(elf_segment_header_t)) {
|
---|
176 | DPRINTF("e_phentsize: %u != %zu\n", header->e_phentsize,
|
---|
177 | sizeof(elf_segment_header_t));
|
---|
178 | return EE_INCOMPATIBLE;
|
---|
179 | }
|
---|
180 |
|
---|
181 | if (header->e_shentsize != sizeof(elf_section_header_t)) {
|
---|
182 | DPRINTF("e_shentsize: %u != %zu\n", header->e_shentsize,
|
---|
183 | sizeof(elf_section_header_t));
|
---|
184 | return EE_INCOMPATIBLE;
|
---|
185 | }
|
---|
186 |
|
---|
187 | /* Check if the object type is supported. */
|
---|
188 | if (header->e_type != ET_EXEC && header->e_type != ET_DYN) {
|
---|
189 | DPRINTF("Object type %d is not supported\n", header->e_type);
|
---|
190 | return EE_UNSUPPORTED;
|
---|
191 | }
|
---|
192 |
|
---|
193 | /* Shared objects can be loaded with a bias */
|
---|
194 | if (header->e_type == ET_DYN)
|
---|
195 | elf->bias = so_bias;
|
---|
196 | else
|
---|
197 | elf->bias = 0;
|
---|
198 |
|
---|
199 | elf->info->interp = NULL;
|
---|
200 | elf->info->dynamic = NULL;
|
---|
201 |
|
---|
202 | /* Walk through all segment headers and process them. */
|
---|
203 | for (i = 0; i < header->e_phnum; i++) {
|
---|
204 | elf_segment_header_t segment_hdr;
|
---|
205 |
|
---|
206 | pos = header->e_phoff + i * sizeof(elf_segment_header_t);
|
---|
207 | rc = vfs_read(elf->fd, &pos, &segment_hdr,
|
---|
208 | sizeof(elf_segment_header_t), &nr);
|
---|
209 | if (rc != EOK || nr != sizeof(elf_segment_header_t)) {
|
---|
210 | DPRINTF("Read error.\n");
|
---|
211 | return EE_INVALID;
|
---|
212 | }
|
---|
213 |
|
---|
214 | rc = segment_header(elf, &segment_hdr);
|
---|
215 | if (rc != EE_OK)
|
---|
216 | return rc;
|
---|
217 | }
|
---|
218 |
|
---|
219 | DPRINTF("Parse sections.\n");
|
---|
220 |
|
---|
221 | /* Inspect all section headers and proccess them. */
|
---|
222 | for (i = 0; i < header->e_shnum; i++) {
|
---|
223 | elf_section_header_t section_hdr;
|
---|
224 |
|
---|
225 | pos = header->e_shoff + i * sizeof(elf_section_header_t);
|
---|
226 | rc = vfs_read(elf->fd, &pos, §ion_hdr,
|
---|
227 | sizeof(elf_section_header_t), &nr);
|
---|
228 | if (rc != EOK || nr != sizeof(elf_section_header_t)) {
|
---|
229 | DPRINTF("Read error.\n");
|
---|
230 | return EE_INVALID;
|
---|
231 | }
|
---|
232 |
|
---|
233 | rc = section_header(elf, §ion_hdr);
|
---|
234 | if (rc != EE_OK)
|
---|
235 | return rc;
|
---|
236 | }
|
---|
237 |
|
---|
238 | elf->info->entry =
|
---|
239 | (entry_point_t)((uint8_t *)header->e_entry + elf->bias);
|
---|
240 |
|
---|
241 | DPRINTF("Done.\n");
|
---|
242 |
|
---|
243 | return EE_OK;
|
---|
244 | }
|
---|
245 |
|
---|
246 | /** Print error message according to error code.
|
---|
247 | *
|
---|
248 | * @param rc Return code returned by elf_load().
|
---|
249 | *
|
---|
250 | * @return NULL terminated description of error.
|
---|
251 | */
|
---|
252 | const char *elf_error(unsigned int rc)
|
---|
253 | {
|
---|
254 | assert(rc < sizeof(error_codes) / sizeof(char *));
|
---|
255 |
|
---|
256 | return error_codes[rc];
|
---|
257 | }
|
---|
258 |
|
---|
259 | /** Process TLS program header.
|
---|
260 | *
|
---|
261 | * @param elf Pointer to loader state buffer.
|
---|
262 | * @param hdr TLS program header
|
---|
263 | * @param info Place to store TLS info
|
---|
264 | */
|
---|
265 | static void tls_program_header(elf_ld_t *elf, elf_segment_header_t *hdr,
|
---|
266 | elf_tls_info_t *info)
|
---|
267 | {
|
---|
268 | info->tdata = (void *)((uint8_t *)hdr->p_vaddr + elf->bias);
|
---|
269 | info->tdata_size = hdr->p_filesz;
|
---|
270 | info->tbss_size = hdr->p_memsz - hdr->p_filesz;
|
---|
271 | info->tls_align = hdr->p_align;
|
---|
272 | }
|
---|
273 |
|
---|
274 | /** Process segment header.
|
---|
275 | *
|
---|
276 | * @param elf Pointer to loader state buffer.
|
---|
277 | * @param entry Segment header.
|
---|
278 | *
|
---|
279 | * @return EE_OK on success, error code otherwise.
|
---|
280 | */
|
---|
281 | static int segment_header(elf_ld_t *elf, elf_segment_header_t *entry)
|
---|
282 | {
|
---|
283 | switch (entry->p_type) {
|
---|
284 | case PT_NULL:
|
---|
285 | case PT_PHDR:
|
---|
286 | case PT_NOTE:
|
---|
287 | break;
|
---|
288 | case PT_LOAD:
|
---|
289 | return load_segment(elf, entry);
|
---|
290 | break;
|
---|
291 | case PT_INTERP:
|
---|
292 | /* Assume silently interp == "/app/dload" */
|
---|
293 | elf->info->interp = "/app/dload";
|
---|
294 | break;
|
---|
295 | case PT_DYNAMIC:
|
---|
296 | /* Record pointer to dynamic section into info structure */
|
---|
297 | elf->info->dynamic =
|
---|
298 | (void *)((uint8_t *)entry->p_vaddr + elf->bias);
|
---|
299 | DPRINTF("dynamic section found at %p\n",
|
---|
300 | (void *)elf->info->dynamic);
|
---|
301 | break;
|
---|
302 | case 0x70000000:
|
---|
303 | /* FIXME: MIPS reginfo */
|
---|
304 | break;
|
---|
305 | case PT_TLS:
|
---|
306 | /* Parse TLS program header */
|
---|
307 | tls_program_header(elf, entry, &elf->info->tls);
|
---|
308 | DPRINTF("TLS header found at %p\n",
|
---|
309 | (void *)((uint8_t *)entry->p_vaddr + elf->bias));
|
---|
310 | break;
|
---|
311 | case PT_SHLIB:
|
---|
312 | // case PT_LOPROC:
|
---|
313 | // case PT_HIPROC:
|
---|
314 | default:
|
---|
315 | DPRINTF("Segment p_type %d unknown.\n", entry->p_type);
|
---|
316 | return EE_UNSUPPORTED;
|
---|
317 | break;
|
---|
318 | }
|
---|
319 | return EE_OK;
|
---|
320 | }
|
---|
321 |
|
---|
322 | /** Load segment described by program header entry.
|
---|
323 | *
|
---|
324 | * @param elf Loader state.
|
---|
325 | * @param entry Program header entry describing segment to be loaded.
|
---|
326 | *
|
---|
327 | * @return EE_OK on success, error code otherwise.
|
---|
328 | */
|
---|
329 | int load_segment(elf_ld_t *elf, elf_segment_header_t *entry)
|
---|
330 | {
|
---|
331 | void *a;
|
---|
332 | int flags = 0;
|
---|
333 | uintptr_t bias;
|
---|
334 | uintptr_t base;
|
---|
335 | void *seg_ptr;
|
---|
336 | uintptr_t seg_addr;
|
---|
337 | size_t mem_sz;
|
---|
338 | aoff64_t pos;
|
---|
339 | int rc;
|
---|
340 | size_t nr;
|
---|
341 |
|
---|
342 | bias = elf->bias;
|
---|
343 |
|
---|
344 | seg_addr = entry->p_vaddr + bias;
|
---|
345 | seg_ptr = (void *) seg_addr;
|
---|
346 |
|
---|
347 | DPRINTF("Load segment at addr %p, size 0x%zx\n", (void *) seg_addr,
|
---|
348 | entry->p_memsz);
|
---|
349 |
|
---|
350 | if (entry->p_align > 1) {
|
---|
351 | if ((entry->p_offset % entry->p_align) !=
|
---|
352 | (seg_addr % entry->p_align)) {
|
---|
353 | DPRINTF("Align check 1 failed offset%%align=0x%zx, "
|
---|
354 | "vaddr%%align=0x%zx\n",
|
---|
355 | entry->p_offset % entry->p_align,
|
---|
356 | seg_addr % entry->p_align);
|
---|
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 | AS_AREA_UNPAGED);
|
---|
385 | if (a == AS_MAP_FAILED) {
|
---|
386 | DPRINTF("memory mapping failed (%p, %zu)\n",
|
---|
387 | (void *) (base + bias), mem_sz);
|
---|
388 | return EE_MEMORY;
|
---|
389 | }
|
---|
390 |
|
---|
391 | DPRINTF("as_area_create(%p, %#zx, %d) -> %p\n",
|
---|
392 | (void *) (base + bias), mem_sz, flags, (void *) a);
|
---|
393 |
|
---|
394 | /*
|
---|
395 | * Load segment data
|
---|
396 | */
|
---|
397 | pos = entry->p_offset;
|
---|
398 | rc = vfs_read(elf->fd, &pos, seg_ptr, entry->p_filesz, &nr);
|
---|
399 | if (rc != EOK || nr != entry->p_filesz) {
|
---|
400 | DPRINTF("read error\n");
|
---|
401 | return EE_INVALID;
|
---|
402 | }
|
---|
403 |
|
---|
404 | /*
|
---|
405 | * The caller wants to modify the segments first. He will then
|
---|
406 | * need to set the right access mode and ensure SMC coherence.
|
---|
407 | */
|
---|
408 | if ((elf->flags & ELDF_RW) != 0) return EE_OK;
|
---|
409 |
|
---|
410 | // printf("set area flags to %d\n", flags);
|
---|
411 | rc = as_area_change_flags(seg_ptr, flags);
|
---|
412 | if (rc != 0) {
|
---|
413 | DPRINTF("Failed to set memory area flags.\n");
|
---|
414 | return EE_MEMORY;
|
---|
415 | }
|
---|
416 |
|
---|
417 | if (flags & AS_AREA_EXEC) {
|
---|
418 | /* Enforce SMC coherence for the segment */
|
---|
419 | if (smc_coherence(seg_ptr, entry->p_filesz))
|
---|
420 | return EE_MEMORY;
|
---|
421 | }
|
---|
422 |
|
---|
423 | return EE_OK;
|
---|
424 | }
|
---|
425 |
|
---|
426 | /** Process section header.
|
---|
427 | *
|
---|
428 | * @param elf Loader state.
|
---|
429 | * @param entry Segment header.
|
---|
430 | *
|
---|
431 | * @return EE_OK on success, error code otherwise.
|
---|
432 | */
|
---|
433 | static int section_header(elf_ld_t *elf, elf_section_header_t *entry)
|
---|
434 | {
|
---|
435 | switch (entry->sh_type) {
|
---|
436 | case SHT_PROGBITS:
|
---|
437 | if (entry->sh_flags & SHF_TLS) {
|
---|
438 | /* .tdata */
|
---|
439 | }
|
---|
440 | break;
|
---|
441 | case SHT_NOBITS:
|
---|
442 | if (entry->sh_flags & SHF_TLS) {
|
---|
443 | /* .tbss */
|
---|
444 | }
|
---|
445 | break;
|
---|
446 | case SHT_DYNAMIC:
|
---|
447 | /* Record pointer to dynamic section into info structure */
|
---|
448 | elf->info->dynamic =
|
---|
449 | (void *)((uint8_t *)entry->sh_addr + elf->bias);
|
---|
450 | DPRINTF("Dynamic section found at %p.\n",
|
---|
451 | (void *) elf->info->dynamic);
|
---|
452 | break;
|
---|
453 | default:
|
---|
454 | break;
|
---|
455 | }
|
---|
456 |
|
---|
457 | return EE_OK;
|
---|
458 | }
|
---|
459 |
|
---|
460 | /** @}
|
---|
461 | */
|
---|