load_elf.cpp revision 1.11 1 1.11 uch /* $NetBSD: load_elf.cpp,v 1.11 2004/06/10 15:57:18 uch Exp $ */
2 1.1 uch
3 1.1 uch /*-
4 1.1 uch * Copyright (c) 2001 The NetBSD Foundation, Inc.
5 1.1 uch * All rights reserved.
6 1.1 uch *
7 1.1 uch * This code is derived from software contributed to The NetBSD Foundation
8 1.1 uch * by UCHIYAMA Yasushi.
9 1.1 uch *
10 1.1 uch * Redistribution and use in source and binary forms, with or without
11 1.1 uch * modification, are permitted provided that the following conditions
12 1.1 uch * are met:
13 1.1 uch * 1. Redistributions of source code must retain the above copyright
14 1.1 uch * notice, this list of conditions and the following disclaimer.
15 1.1 uch * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 uch * notice, this list of conditions and the following disclaimer in the
17 1.1 uch * documentation and/or other materials provided with the distribution.
18 1.1 uch * 3. All advertising materials mentioning features or use of this software
19 1.1 uch * must display the following acknowledgement:
20 1.1 uch * This product includes software developed by the NetBSD
21 1.1 uch * Foundation, Inc. and its contributors.
22 1.1 uch * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 uch * contributors may be used to endorse or promote products derived
24 1.1 uch * from this software without specific prior written permission.
25 1.1 uch *
26 1.1 uch * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 uch * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 uch * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 uch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 uch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 uch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 uch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 uch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 uch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 uch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 uch * POSSIBILITY OF SUCH DAMAGE.
37 1.1 uch */
38 1.1 uch
39 1.4 uch #include <hpcmenu.h>
40 1.4 uch #include <menu/window.h>
41 1.4 uch #include <menu/rootwindow.h>
42 1.4 uch
43 1.1 uch #include <load.h>
44 1.1 uch #include <load_elf.h>
45 1.1 uch #include <console.h>
46 1.1 uch #include <memory.h>
47 1.1 uch #include <file.h>
48 1.1 uch
49 1.4 uch #define ROUND4(x) (((x) + 3) & ~3)
50 1.4 uch
51 1.1 uch ElfLoader::ElfLoader(Console *&cons, MemoryManager *&mem)
52 1.1 uch : Loader(cons, mem)
53 1.1 uch {
54 1.11 uch
55 1.4 uch _sym_blk.enable = FALSE;
56 1.11 uch _ph = NULL;
57 1.11 uch _sh = NULL;
58 1.4 uch
59 1.1 uch DPRINTF((TEXT("Loader: ELF\n")));
60 1.1 uch }
61 1.1 uch
62 1.1 uch ElfLoader::~ElfLoader(void)
63 1.1 uch {
64 1.11 uch
65 1.4 uch if (_sym_blk.header != NULL)
66 1.11 uch free(_sym_blk.header);
67 1.11 uch if (_ph != NULL)
68 1.11 uch free(_ph);
69 1.11 uch if (_sh != NULL)
70 1.11 uch free(_sh);
71 1.1 uch }
72 1.1 uch
73 1.1 uch BOOL
74 1.1 uch ElfLoader::setFile(File *&file)
75 1.1 uch {
76 1.2 toshii size_t sz;
77 1.1 uch Loader::setFile(file);
78 1.1 uch
79 1.4 uch // read ELF header and check it
80 1.1 uch if (!read_header())
81 1.1 uch return FALSE;
82 1.11 uch
83 1.4 uch // read section header
84 1.2 toshii sz = _eh.e_shnum * _eh.e_shentsize;
85 1.11 uch if ((_sh = static_cast<Elf_Shdr *>(malloc(sz))) == NULL) {
86 1.11 uch DPRINTF((TEXT("can't allocate section header table.\n")));
87 1.11 uch return FALSE;
88 1.11 uch }
89 1.11 uch if (_file->read(_sh, sz, _eh.e_shoff) != sz) {
90 1.11 uch DPRINTF((TEXT("section header read error.\n")));
91 1.11 uch return FALSE;
92 1.11 uch }
93 1.2 toshii
94 1.4 uch // read program header
95 1.2 toshii sz = _eh.e_phnum * _eh.e_phentsize;
96 1.11 uch if ((_ph = static_cast<Elf_Phdr *>(malloc(sz))) == NULL) {
97 1.11 uch DPRINTF((TEXT("can't allocate program header table.\n")));
98 1.11 uch return FALSE;
99 1.11 uch }
100 1.11 uch if (_file->read(_ph, sz, _eh.e_phoff) != sz) {
101 1.11 uch DPRINTF((TEXT("program header read error.\n")));
102 1.11 uch return FALSE;
103 1.11 uch }
104 1.1 uch
105 1.11 uch return TRUE;
106 1.1 uch }
107 1.1 uch
108 1.1 uch size_t
109 1.1 uch ElfLoader::memorySize()
110 1.1 uch {
111 1.1 uch int i;
112 1.1 uch Elf_Phdr *ph = _ph;
113 1.1 uch size_t sz = 0;
114 1.1 uch
115 1.1 uch DPRINTF((TEXT("file size: ")));
116 1.1 uch for (i = 0; i < _eh.e_phnum; i++, ph++) {
117 1.1 uch if (ph->p_type == PT_LOAD) {
118 1.1 uch size_t filesz = ph->p_filesz;
119 1.1 uch DPRINTF((TEXT("+0x%x"), filesz));
120 1.1 uch sz += _mem->roundPage(filesz);
121 1.1 uch }
122 1.1 uch }
123 1.4 uch
124 1.4 uch // reserve for symbols
125 1.4 uch size_t symblk_sz = symbol_block_size();
126 1.4 uch if (symblk_sz) {
127 1.4 uch sz += symblk_sz;
128 1.4 uch DPRINTF((TEXT(" = 0x%x]"), symblk_sz));
129 1.4 uch }
130 1.2 toshii
131 1.1 uch DPRINTF((TEXT(" = 0x%x byte\n"), sz));
132 1.1 uch return sz;
133 1.1 uch }
134 1.1 uch
135 1.1 uch kaddr_t
136 1.1 uch ElfLoader::jumpAddr()
137 1.1 uch {
138 1.1 uch DPRINTF((TEXT("kernel entry address: 0x%08x\n"), _eh.e_entry));
139 1.1 uch return _eh.e_entry;
140 1.1 uch }
141 1.1 uch
142 1.1 uch BOOL
143 1.1 uch ElfLoader::load()
144 1.1 uch {
145 1.1 uch Elf_Phdr *ph;
146 1.3 uch vaddr_t kv;
147 1.1 uch int i;
148 1.1 uch
149 1.1 uch _load_segment_start();
150 1.1 uch
151 1.1 uch for (i = 0, ph = _ph; i < _eh.e_phnum; i++, ph++) {
152 1.1 uch if (ph->p_type == PT_LOAD) {
153 1.1 uch size_t filesz = ph->p_filesz;
154 1.1 uch size_t memsz = ph->p_memsz;
155 1.2 toshii kv = ph->p_vaddr;
156 1.1 uch off_t fileofs = ph->p_offset;
157 1.1 uch DPRINTF((TEXT("[%d] vaddr 0x%08x file size 0x%x mem size 0x%x\n"),
158 1.3 uch i, kv, filesz, memsz));
159 1.1 uch _load_segment(kv, memsz, fileofs, filesz);
160 1.2 toshii kv += memsz;
161 1.2 toshii }
162 1.2 toshii }
163 1.2 toshii
164 1.4 uch load_symbol_block(kv);
165 1.4 uch
166 1.4 uch // tag chain still opening
167 1.4 uch
168 1.7 uch return _load_success();
169 1.4 uch }
170 1.4 uch
171 1.4 uch //
172 1.4 uch // Prepare ELF headers for symbol table.
173 1.4 uch //
174 1.4 uch // ELF header
175 1.4 uch // section header
176 1.4 uch // shstrtab
177 1.9 uwe // symtab
178 1.4 uch // strtab
179 1.4 uch //
180 1.4 uch size_t
181 1.4 uch ElfLoader::symbol_block_size()
182 1.4 uch {
183 1.4 uch size_t shstrsize = ROUND4(_sh[_eh.e_shstrndx].sh_size);
184 1.4 uch size_t shtab_sz = _eh.e_shentsize * _eh.e_shnum;
185 1.4 uch off_t shstrtab_offset = sizeof(Elf_Ehdr) + shtab_sz;
186 1.4 uch int i;
187 1.4 uch
188 1.4 uch memset(&_sym_blk, 0, sizeof(_sym_blk));
189 1.4 uch _sym_blk.enable = FALSE;
190 1.4 uch _sym_blk.header_size = sizeof(Elf_Ehdr) + shtab_sz + shstrsize;
191 1.4 uch
192 1.4 uch // inquire string and symbol table size
193 1.4 uch _sym_blk.header = static_cast<char *>(malloc(_sym_blk.header_size));
194 1.4 uch if (_sym_blk.header == NULL) {
195 1.4 uch MessageBox(HPC_MENU._root->_window,
196 1.8 uwe TEXT("Can't determine symbol block size."),
197 1.8 uwe TEXT("WARNING"),
198 1.8 uwe MB_ICONWARNING | MB_OK);
199 1.10 uwe UpdateWindow(HPC_MENU._root->_window);
200 1.4 uch return (0);
201 1.4 uch }
202 1.4 uch
203 1.4 uch // set pointer for symbol block
204 1.4 uch Elf_Ehdr *eh = reinterpret_cast<Elf_Ehdr *>(_sym_blk.header);
205 1.4 uch Elf_Shdr *sh = reinterpret_cast<Elf_Shdr *>
206 1.4 uch (_sym_blk.header + sizeof(Elf_Ehdr));
207 1.4 uch char *shstrtab = _sym_blk.header + shstrtab_offset;
208 1.4 uch
209 1.4 uch // initialize headers
210 1.4 uch memset(_sym_blk.header, 0, _sym_blk.header_size);
211 1.4 uch memcpy(eh, &_eh, sizeof(Elf_Ehdr));
212 1.4 uch eh->e_phoff = 0;
213 1.4 uch eh->e_phnum = 0;
214 1.4 uch eh->e_entry = 0; // XXX NetBSD kernel check this member. see machdep.c
215 1.4 uch eh->e_shoff = sizeof(Elf_Ehdr);
216 1.4 uch memcpy(sh, _sh, shtab_sz);
217 1.4 uch
218 1.4 uch // inquire symbol/string table information
219 1.4 uch _file->read(shstrtab, shstrsize, _sh[_eh.e_shstrndx].sh_offset);
220 1.4 uch for (i = 0; i < _eh.e_shnum; i++, sh++) {
221 1.4 uch if (strcmp(".strtab", shstrtab + sh->sh_name) == 0) {
222 1.4 uch _sym_blk.shstr = sh;
223 1.4 uch _sym_blk.stroff = sh->sh_offset;
224 1.4 uch } else if (strcmp(".symtab", shstrtab + sh->sh_name) == 0) {
225 1.4 uch _sym_blk.shsym = sh;
226 1.4 uch _sym_blk.symoff = sh->sh_offset;
227 1.1 uch }
228 1.2 toshii
229 1.4 uch sh->sh_offset = (i == _eh.e_shstrndx) ? shstrtab_offset : 0;
230 1.4 uch }
231 1.4 uch
232 1.4 uch if (_sym_blk.shstr == NULL || _sym_blk.shsym == NULL) {
233 1.10 uwe if (HPC_PREFERENCE.safety_message) {
234 1.5 uch MessageBox(HPC_MENU._root->_window,
235 1.8 uwe TEXT("No symbol and/or string table in binary.\n(not fatal)"),
236 1.8 uwe TEXT("Information"),
237 1.8 uwe MB_ICONINFORMATION | MB_OK);
238 1.10 uwe UpdateWindow(HPC_MENU._root->_window);
239 1.10 uwe }
240 1.4 uch free(_sym_blk.header);
241 1.4 uch _sym_blk.header = NULL;
242 1.1 uch
243 1.4 uch return (0);
244 1.4 uch }
245 1.4 uch
246 1.4 uch // set Section Headers for symbol/string table
247 1.9 uwe _sym_blk.shsym->sh_offset = shstrtab_offset + shstrsize;
248 1.9 uwe _sym_blk.shstr->sh_offset = shstrtab_offset + shstrsize +
249 1.9 uwe ROUND4(_sym_blk.shsym->sh_size);
250 1.4 uch _sym_blk.enable = TRUE;
251 1.4 uch
252 1.9 uwe DPRINTF((TEXT("+[(symbol block: header %d symbol %d string %d byte)"),
253 1.9 uwe _sym_blk.header_size,_sym_blk.shsym->sh_size,
254 1.9 uwe _sym_blk.shstr->sh_size));
255 1.4 uch
256 1.4 uch // return total amount of symbol block
257 1.9 uwe return (_sym_blk.header_size + ROUND4(_sym_blk.shsym->sh_size) +
258 1.9 uwe _sym_blk.shstr->sh_size);
259 1.4 uch }
260 1.4 uch
261 1.4 uch void
262 1.4 uch ElfLoader::load_symbol_block(vaddr_t kv)
263 1.4 uch {
264 1.4 uch size_t sz;
265 1.4 uch
266 1.4 uch if (!_sym_blk.enable)
267 1.4 uch return;
268 1.4 uch
269 1.4 uch // load header
270 1.4 uch _load_memory(kv, _sym_blk.header_size, _sym_blk.header);
271 1.4 uch kv += _sym_blk.header_size;
272 1.4 uch
273 1.9 uwe // load symbol table
274 1.9 uwe sz = _sym_blk.shsym->sh_size;
275 1.9 uwe _load_segment(kv, sz, _sym_blk.symoff, sz);
276 1.9 uwe kv += ROUND4(sz);
277 1.9 uwe
278 1.4 uch // load string table
279 1.4 uch sz = _sym_blk.shstr->sh_size;
280 1.4 uch _load_segment(kv, sz, _sym_blk.stroff, sz);
281 1.1 uch }
282 1.1 uch
283 1.1 uch BOOL
284 1.4 uch ElfLoader::read_header()
285 1.1 uch {
286 1.1 uch // read ELF header
287 1.1 uch _file->read(&_eh, sizeof(Elf_Ehdr), 0);
288 1.1 uch
289 1.1 uch // check ELF Magic.
290 1.1 uch if (!is_elf_file()) {
291 1.1 uch DPRINTF((TEXT("not a ELF file.\n")));
292 1.1 uch return FALSE;
293 1.1 uch }
294 1.1 uch
295 1.1 uch // Windows CE is 32bit little-endian only.
296 1.1 uch if (_eh.e_ident[EI_DATA] != ELFDATA2LSB ||
297 1.1 uch _eh.e_ident[EI_CLASS] != ELFCLASS32) {
298 1.1 uch DPRINTF((TEXT("invalid class/data(%d/%d)\n"),
299 1.3 uch _eh.e_ident[EI_CLASS], _eh.e_ident[EI_DATA]));
300 1.1 uch return FALSE;
301 1.1 uch }
302 1.1 uch
303 1.1 uch // Is native architecture?
304 1.1 uch switch(_eh.e_machine) {
305 1.1 uch ELF32_MACHDEP_ID_CASES;
306 1.1 uch default:
307 1.1 uch DPRINTF((TEXT("not a native architecture. machine = %d\n"),
308 1.3 uch _eh.e_machine));
309 1.1 uch return FALSE;
310 1.1 uch }
311 1.1 uch
312 1.4 uch // Check object type
313 1.1 uch if (_eh.e_type != ET_EXEC) {
314 1.1 uch DPRINTF((TEXT("not a executable file. type = %d\n"),
315 1.3 uch _eh.e_type));
316 1.1 uch return FALSE;
317 1.1 uch }
318 1.1 uch
319 1.1 uch if (_eh.e_phoff == 0 || _eh.e_phnum == 0 || _eh.e_phnum > 16 ||
320 1.1 uch _eh.e_phentsize != sizeof(Elf_Phdr)) {
321 1.6 wiz DPRINTF((TEXT("invalid program header information.\n")));
322 1.1 uch return FALSE;
323 1.1 uch }
324 1.1 uch
325 1.1 uch return TRUE;
326 1.1 uch }
327