1 | /*
|
---|
2 | * Copyright (c) 2006 Sergey Bondari
|
---|
3 | * Copyright (c) 2006 Jakub Jermar
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup kernel_generic
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 |
|
---|
34 | /**
|
---|
35 | * @file
|
---|
36 | * @brief Kernel ELF loader.
|
---|
37 | */
|
---|
38 |
|
---|
39 | #include <assert.h>
|
---|
40 | #include <lib/elf.h>
|
---|
41 | #include <typedefs.h>
|
---|
42 | #include <mm/as.h>
|
---|
43 | #include <mm/frame.h>
|
---|
44 | #include <mm/slab.h>
|
---|
45 | #include <align.h>
|
---|
46 | #include <macros.h>
|
---|
47 | #include <arch.h>
|
---|
48 | #include <str.h>
|
---|
49 |
|
---|
50 | #include <lib/elf_load.h>
|
---|
51 |
|
---|
52 | static const char *error_codes[] = {
|
---|
53 | "no error",
|
---|
54 | "invalid image",
|
---|
55 | "address space error",
|
---|
56 | "incompatible image",
|
---|
57 | "unsupported image type",
|
---|
58 | "irrecoverable error"
|
---|
59 | };
|
---|
60 |
|
---|
61 | static int load_segment(elf_segment_header_t *, elf_header_t *, as_t *);
|
---|
62 |
|
---|
63 | /** ELF loader
|
---|
64 | *
|
---|
65 | * @param header Pointer to ELF header in memory
|
---|
66 | * @param as Created and properly mapped address space
|
---|
67 | * @param flags A combination of ELD_F_*
|
---|
68 | *
|
---|
69 | * @return EE_OK on success
|
---|
70 | *
|
---|
71 | */
|
---|
72 | unsigned int elf_load(elf_header_t *header, as_t *as)
|
---|
73 | {
|
---|
74 | /* Identify ELF */
|
---|
75 | if ((header->e_ident[EI_MAG0] != ELFMAG0) ||
|
---|
76 | (header->e_ident[EI_MAG1] != ELFMAG1) ||
|
---|
77 | (header->e_ident[EI_MAG2] != ELFMAG2) ||
|
---|
78 | (header->e_ident[EI_MAG3] != ELFMAG3))
|
---|
79 | return EE_INVALID;
|
---|
80 |
|
---|
81 | /* Identify ELF compatibility */
|
---|
82 | if ((header->e_ident[EI_DATA] != ELF_DATA_ENCODING) ||
|
---|
83 | (header->e_machine != ELF_MACHINE) ||
|
---|
84 | (header->e_ident[EI_VERSION] != EV_CURRENT) ||
|
---|
85 | (header->e_version != EV_CURRENT) ||
|
---|
86 | (header->e_ident[EI_CLASS] != ELF_CLASS))
|
---|
87 | return EE_INCOMPATIBLE;
|
---|
88 |
|
---|
89 | if (header->e_phentsize != sizeof(elf_segment_header_t))
|
---|
90 | return EE_INCOMPATIBLE;
|
---|
91 |
|
---|
92 | /* Check if the object type is supported. */
|
---|
93 | if (header->e_type != ET_EXEC)
|
---|
94 | return EE_UNSUPPORTED;
|
---|
95 |
|
---|
96 | /* Check if the ELF image starts on a page boundary */
|
---|
97 | if (ALIGN_UP((uintptr_t) header, PAGE_SIZE) != (uintptr_t) header)
|
---|
98 | return EE_UNSUPPORTED;
|
---|
99 |
|
---|
100 | /* Walk through all segment headers and process them. */
|
---|
101 | elf_half i;
|
---|
102 | for (i = 0; i < header->e_phnum; i++) {
|
---|
103 | elf_segment_header_t *seghdr =
|
---|
104 | &((elf_segment_header_t *)(((uint8_t *) header) +
|
---|
105 | header->e_phoff))[i];
|
---|
106 |
|
---|
107 | if (seghdr->p_type != PT_LOAD)
|
---|
108 | continue;
|
---|
109 |
|
---|
110 | int rc = load_segment(seghdr, header, as);
|
---|
111 | if (rc != EE_OK)
|
---|
112 | return rc;
|
---|
113 | }
|
---|
114 |
|
---|
115 | return EE_OK;
|
---|
116 | }
|
---|
117 |
|
---|
118 | /** Print error message according to error code.
|
---|
119 | *
|
---|
120 | * @param rc Return code returned by elf_load().
|
---|
121 | *
|
---|
122 | * @return NULL terminated description of error.
|
---|
123 | *
|
---|
124 | */
|
---|
125 | const char *elf_error(unsigned int rc)
|
---|
126 | {
|
---|
127 | assert(rc < sizeof(error_codes) / sizeof(char *));
|
---|
128 |
|
---|
129 | return error_codes[rc];
|
---|
130 | }
|
---|
131 |
|
---|
132 | /** Load segment described by program header entry.
|
---|
133 | *
|
---|
134 | * @param entry Program header entry describing segment to be loaded.
|
---|
135 | * @param elf ELF header.
|
---|
136 | * @param as Address space into wich the ELF is being loaded.
|
---|
137 | *
|
---|
138 | * @return EE_OK on success, error code otherwise.
|
---|
139 | *
|
---|
140 | */
|
---|
141 | int load_segment(elf_segment_header_t *entry, elf_header_t *elf, as_t *as)
|
---|
142 | {
|
---|
143 | mem_backend_data_t backend_data;
|
---|
144 | backend_data.elf = elf;
|
---|
145 | backend_data.segment = entry;
|
---|
146 |
|
---|
147 | if (entry->p_align > 1) {
|
---|
148 | if ((entry->p_offset % entry->p_align) !=
|
---|
149 | (entry->p_vaddr % entry->p_align))
|
---|
150 | return EE_INVALID;
|
---|
151 | }
|
---|
152 |
|
---|
153 | unsigned int flags = 0;
|
---|
154 |
|
---|
155 | if (entry->p_flags & PF_X)
|
---|
156 | flags |= AS_AREA_EXEC;
|
---|
157 |
|
---|
158 | if (entry->p_flags & PF_W)
|
---|
159 | flags |= AS_AREA_WRITE;
|
---|
160 |
|
---|
161 | if (entry->p_flags & PF_R)
|
---|
162 | flags |= AS_AREA_READ;
|
---|
163 |
|
---|
164 | flags |= AS_AREA_CACHEABLE;
|
---|
165 |
|
---|
166 | /*
|
---|
167 | * Align vaddr down, inserting a little "gap" at the beginning.
|
---|
168 | * Adjust area size, so that its end remains in place.
|
---|
169 | *
|
---|
170 | */
|
---|
171 | uintptr_t base = ALIGN_DOWN(entry->p_vaddr, PAGE_SIZE);
|
---|
172 | size_t mem_sz = entry->p_memsz + (entry->p_vaddr - base);
|
---|
173 |
|
---|
174 | as_area_t *area = as_area_create(as, flags, mem_sz,
|
---|
175 | AS_AREA_ATTR_NONE, &elf_backend, &backend_data, &base, 0);
|
---|
176 | if (!area)
|
---|
177 | return EE_MEMORY;
|
---|
178 |
|
---|
179 | /*
|
---|
180 | * The segment will be mapped on demand by elf_page_fault().
|
---|
181 | *
|
---|
182 | */
|
---|
183 |
|
---|
184 | return EE_OK;
|
---|
185 | }
|
---|
186 |
|
---|
187 | /** @}
|
---|
188 | */
|
---|