source: mainline/uspace/lib/c/generic/elf/elf_mod.c@ 5754c31e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 5754c31e was 5754c31e, checked in by Jiří Zárevúcky <jiri.zarevucky@…>, 8 years ago

We should not attempt to read sections in the ELF file.

  • Property mode set to 100644
File size: 10.7 KB
Line 
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
65static 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 "file io error"
73};
74
75static unsigned int elf_load_module(elf_ld_t *elf, size_t so_bias);
76static int segment_header(elf_ld_t *elf, elf_segment_header_t *entry);
77static 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 EE_OK on success or EE_xx error code.
93 *
94 */
95int 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 errno_t 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 EE_IO;
106 }
107
108 elf.fd = ofile;
109 elf.info = info;
110 elf.flags = flags;
111
112 int ret = elf_load_module(&elf, so_bias);
113
114 vfs_put(ofile);
115 return ret;
116}
117
118int 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 errno_t rc = vfs_lookup(path, 0, &file);
123 if (rc == EOK) {
124 int ret = elf_load_file(file, so_bias, flags, info);
125 vfs_put(file);
126 return ret;
127 } else {
128 return EE_IO;
129 }
130}
131
132/** Load an ELF binary.
133 *
134 * The @a elf structure contains the loader state, including
135 * an open file, from which the binary will be loaded,
136 * a pointer to the @c info structure etc.
137 *
138 * @param elf Pointer to loader state buffer.
139 * @param so_bias Bias to use if the file is a shared object.
140 * @return EE_OK on success or EE_xx error code.
141 */
142static unsigned int elf_load_module(elf_ld_t *elf, size_t so_bias)
143{
144 elf_header_t header_buf;
145 elf_header_t *header = &header_buf;
146 aoff64_t pos = 0;
147 size_t nr;
148 int i, ret;
149 errno_t rc;
150
151 rc = vfs_read(elf->fd, &pos, header, sizeof(elf_header_t), &nr);
152 if (rc != EOK || nr != sizeof(elf_header_t)) {
153 DPRINTF("Read error.\n");
154 return EE_IO;
155 }
156
157 elf->header = header;
158
159 /* Identify ELF */
160 if (header->e_ident[EI_MAG0] != ELFMAG0 ||
161 header->e_ident[EI_MAG1] != ELFMAG1 ||
162 header->e_ident[EI_MAG2] != ELFMAG2 ||
163 header->e_ident[EI_MAG3] != ELFMAG3) {
164 DPRINTF("Invalid header.\n");
165 return EE_INVALID;
166 }
167
168 /* Identify ELF compatibility */
169 if (header->e_ident[EI_DATA] != ELF_DATA_ENCODING ||
170 header->e_machine != ELF_MACHINE ||
171 header->e_ident[EI_VERSION] != EV_CURRENT ||
172 header->e_version != EV_CURRENT ||
173 header->e_ident[EI_CLASS] != ELF_CLASS) {
174 DPRINTF("Incompatible data/version/class.\n");
175 return EE_INCOMPATIBLE;
176 }
177
178 if (header->e_phentsize != sizeof(elf_segment_header_t)) {
179 DPRINTF("e_phentsize: %u != %zu\n", header->e_phentsize,
180 sizeof(elf_segment_header_t));
181 return EE_INCOMPATIBLE;
182 }
183
184 /* Check if the object type is supported. */
185 if (header->e_type != ET_EXEC && header->e_type != ET_DYN) {
186 DPRINTF("Object type %d is not supported\n", header->e_type);
187 return EE_UNSUPPORTED;
188 }
189
190 /* Shared objects can be loaded with a bias */
191 if (header->e_type == ET_DYN)
192 elf->bias = so_bias;
193 else
194 elf->bias = 0;
195
196 elf->info->interp = NULL;
197 elf->info->dynamic = NULL;
198
199 /* Walk through all segment headers and process them. */
200 for (i = 0; i < header->e_phnum; i++) {
201 elf_segment_header_t segment_hdr;
202
203 pos = header->e_phoff + i * sizeof(elf_segment_header_t);
204 rc = vfs_read(elf->fd, &pos, &segment_hdr,
205 sizeof(elf_segment_header_t), &nr);
206 if (rc != EOK || nr != sizeof(elf_segment_header_t)) {
207 DPRINTF("Read error.\n");
208 return EE_IO;
209 }
210
211 ret = segment_header(elf, &segment_hdr);
212 if (ret != EE_OK)
213 return ret;
214 }
215
216 elf->info->entry =
217 (entry_point_t)((uint8_t *)header->e_entry + elf->bias);
218
219 DPRINTF("Done.\n");
220
221 return EE_OK;
222}
223
224/** Print error message according to error code.
225 *
226 * @param rc Return code returned by elf_load().
227 *
228 * @return NULL terminated description of error.
229 */
230const char *elf_error(unsigned int rc)
231{
232 assert(rc < sizeof(error_codes) / sizeof(char *));
233
234 return error_codes[rc];
235}
236
237/** Process TLS program header.
238 *
239 * @param elf Pointer to loader state buffer.
240 * @param hdr TLS program header
241 * @param info Place to store TLS info
242 */
243static void tls_program_header(elf_ld_t *elf, elf_segment_header_t *hdr,
244 elf_tls_info_t *info)
245{
246 info->tdata = (void *)((uint8_t *)hdr->p_vaddr + elf->bias);
247 info->tdata_size = hdr->p_filesz;
248 info->tbss_size = hdr->p_memsz - hdr->p_filesz;
249 info->tls_align = hdr->p_align;
250}
251
252/** Process segment header.
253 *
254 * @param elf Pointer to loader state buffer.
255 * @param entry Segment header.
256 *
257 * @return EE_OK on success, error code otherwise.
258 */
259static int segment_header(elf_ld_t *elf, elf_segment_header_t *entry)
260{
261 switch (entry->p_type) {
262 case PT_NULL:
263 case PT_PHDR:
264 case PT_NOTE:
265 break;
266 case PT_LOAD:
267 return load_segment(elf, entry);
268 break;
269 case PT_INTERP:
270 /* Assume silently interp == "/app/dload" */
271 elf->info->interp = "/app/dload";
272 break;
273 case PT_DYNAMIC:
274 /* Record pointer to dynamic section into info structure */
275 elf->info->dynamic =
276 (void *)((uint8_t *)entry->p_vaddr + elf->bias);
277 DPRINTF("dynamic section found at %p\n",
278 (void *)elf->info->dynamic);
279 break;
280 case 0x70000000:
281 /* FIXME: MIPS reginfo */
282 break;
283 case PT_TLS:
284 /* Parse TLS program header */
285 tls_program_header(elf, entry, &elf->info->tls);
286 DPRINTF("TLS header found at %p\n",
287 (void *)((uint8_t *)entry->p_vaddr + elf->bias));
288 break;
289 case PT_SHLIB:
290// case PT_LOPROC:
291// case PT_HIPROC:
292 default:
293 DPRINTF("Segment p_type %d unknown.\n", entry->p_type);
294 return EE_UNSUPPORTED;
295 break;
296 }
297 return EE_OK;
298}
299
300/** Load segment described by program header entry.
301 *
302 * @param elf Loader state.
303 * @param entry Program header entry describing segment to be loaded.
304 *
305 * @return EE_OK on success, error code otherwise.
306 */
307int load_segment(elf_ld_t *elf, elf_segment_header_t *entry)
308{
309 void *a;
310 int flags = 0;
311 uintptr_t bias;
312 uintptr_t base;
313 void *seg_ptr;
314 uintptr_t seg_addr;
315 size_t mem_sz;
316 aoff64_t pos;
317 errno_t rc;
318 size_t nr;
319
320 bias = elf->bias;
321
322 seg_addr = entry->p_vaddr + bias;
323 seg_ptr = (void *) seg_addr;
324
325 DPRINTF("Load segment at addr %p, size 0x%zx\n", (void *) seg_addr,
326 entry->p_memsz);
327
328 if (entry->p_align > 1) {
329 if ((entry->p_offset % entry->p_align) !=
330 (seg_addr % entry->p_align)) {
331 DPRINTF("Align check 1 failed offset%%align=0x%zx, "
332 "vaddr%%align=0x%zx\n",
333 entry->p_offset % entry->p_align,
334 seg_addr % entry->p_align);
335 return EE_INVALID;
336 }
337 }
338
339 /* Final flags that will be set for the memory area */
340
341 if (entry->p_flags & PF_X)
342 flags |= AS_AREA_EXEC;
343 if (entry->p_flags & PF_W)
344 flags |= AS_AREA_WRITE;
345 if (entry->p_flags & PF_R)
346 flags |= AS_AREA_READ;
347 flags |= AS_AREA_CACHEABLE;
348
349 base = ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE);
350 mem_sz = entry->p_memsz + (entry->p_vaddr - base);
351
352 DPRINTF("Map to seg_addr=%p-%p.\n", (void *) seg_addr,
353 (void *) (entry->p_vaddr + bias +
354 ALIGN_UP(entry->p_memsz, PAGE_SIZE)));
355
356 /*
357 * For the course of loading, the area needs to be readable
358 * and writeable.
359 */
360 a = as_area_create((uint8_t *) base + bias, mem_sz,
361 AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE,
362 AS_AREA_UNPAGED);
363 if (a == AS_MAP_FAILED) {
364 DPRINTF("memory mapping failed (%p, %zu)\n",
365 (void *) (base + bias), mem_sz);
366 return EE_MEMORY;
367 }
368
369 DPRINTF("as_area_create(%p, %#zx, %d) -> %p\n",
370 (void *) (base + bias), mem_sz, flags, (void *) a);
371
372 /*
373 * Load segment data
374 */
375 pos = entry->p_offset;
376 rc = vfs_read(elf->fd, &pos, seg_ptr, entry->p_filesz, &nr);
377 if (rc != EOK || nr != entry->p_filesz) {
378 DPRINTF("read error\n");
379 return EE_IO;
380 }
381
382 /*
383 * The caller wants to modify the segments first. He will then
384 * need to set the right access mode and ensure SMC coherence.
385 */
386 if ((elf->flags & ELDF_RW) != 0) return EE_OK;
387
388// printf("set area flags to %d\n", flags);
389 rc = as_area_change_flags(seg_ptr, flags);
390 if (rc != EOK) {
391 DPRINTF("Failed to set memory area flags.\n");
392 return EE_MEMORY;
393 }
394
395 if (flags & AS_AREA_EXEC) {
396 /* Enforce SMC coherence for the segment */
397 if (smc_coherence(seg_ptr, entry->p_filesz))
398 return EE_MEMORY;
399 }
400
401 return EE_OK;
402}
403
404/** @}
405 */
Note: See TracBrowser for help on using the repository browser.