Home | History | Annotate | Line # | Download | only in hpcboot
load_elf.cpp revision 1.15.4.1
      1  1.15.4.1  simonb /*	$NetBSD: load_elf.cpp,v 1.15.4.1 2006/04/22 11:37:28 simonb 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.13     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.15.4.1  simonb 	size_t extra = 0;
    115       1.1     uch 
    116       1.1     uch 	DPRINTF((TEXT("file size: ")));
    117       1.1     uch 	for (i = 0; i < _eh.e_phnum; i++, ph++) {
    118       1.1     uch 		if (ph->p_type == PT_LOAD) {
    119       1.1     uch 			size_t filesz = ph->p_filesz;
    120  1.15.4.1  simonb 			DPRINTF((TEXT("%s0x%x"),
    121  1.15.4.1  simonb 				 sz == 0 ? "" : "+",
    122  1.15.4.1  simonb 				 filesz));
    123       1.1     uch 			sz += _mem->roundPage(filesz);
    124  1.15.4.1  simonb 			// compensate for partial last tag
    125  1.15.4.1  simonb 			extra += _mem->getTaggedPageSize();
    126  1.15.4.1  simonb 			if (filesz < ph->p_memsz)
    127  1.15.4.1  simonb 				// compensate for zero clear
    128  1.15.4.1  simonb 				extra += _mem->getTaggedPageSize();
    129  1.15.4.1  simonb 
    130       1.1     uch 		}
    131       1.1     uch 	}
    132       1.4     uch 
    133       1.4     uch 	// reserve for symbols
    134       1.4     uch 	size_t symblk_sz = symbol_block_size();
    135       1.4     uch 	if (symblk_sz) {
    136       1.4     uch 		sz += symblk_sz;
    137       1.4     uch 		DPRINTF((TEXT(" = 0x%x]"), symblk_sz));
    138  1.15.4.1  simonb 		// XXX: compensate for partial tags after ELF header and symtab
    139  1.15.4.1  simonb 		extra += 2 * _mem->getTaggedPageSize();
    140       1.4     uch 	}
    141       1.2  toshii 
    142  1.15.4.1  simonb 	sz += extra;
    143  1.15.4.1  simonb 	DPRINTF((TEXT("+[extra: 0x%x]"), extra));
    144  1.15.4.1  simonb 
    145      1.15     uwe 	DPRINTF((TEXT(" = 0x%x bytes\n"), sz));
    146       1.1     uch 	return sz;
    147       1.1     uch }
    148       1.1     uch 
    149       1.1     uch kaddr_t
    150       1.1     uch ElfLoader::jumpAddr()
    151       1.1     uch {
    152       1.1     uch 	DPRINTF((TEXT("kernel entry address: 0x%08x\n"), _eh.e_entry));
    153       1.1     uch 	return _eh.e_entry;
    154       1.1     uch }
    155       1.1     uch 
    156       1.1     uch BOOL
    157       1.1     uch ElfLoader::load()
    158       1.1     uch {
    159       1.1     uch 	Elf_Phdr *ph;
    160       1.3     uch 	vaddr_t kv;
    161       1.1     uch 	int i;
    162      1.13     uch 
    163       1.1     uch 	_load_segment_start();
    164       1.1     uch 
    165       1.1     uch 	for (i = 0, ph = _ph; i < _eh.e_phnum; i++, ph++) {
    166       1.1     uch 		if (ph->p_type == PT_LOAD) {
    167       1.1     uch 			size_t filesz = ph->p_filesz;
    168       1.1     uch 			size_t memsz = ph->p_memsz;
    169       1.2  toshii 			kv = ph->p_vaddr;
    170       1.1     uch 			off_t fileofs = ph->p_offset;
    171      1.15     uwe 			DPRINTF((TEXT("seg[%d] vaddr 0x%08x file size 0x%x mem size 0x%x\n"),
    172       1.3     uch 			    i, kv, filesz, memsz));
    173       1.1     uch 			_load_segment(kv, memsz, fileofs, filesz);
    174      1.12     uch 			kv += ROUND4(memsz);
    175       1.2  toshii 		}
    176       1.2  toshii 	}
    177       1.2  toshii 
    178       1.4     uch 	load_symbol_block(kv);
    179       1.4     uch 
    180      1.12     uch 	// tag chain still opening
    181       1.4     uch 
    182       1.7     uch 	return _load_success();
    183       1.4     uch }
    184       1.4     uch 
    185       1.4     uch //
    186       1.4     uch // Prepare ELF headers for symbol table.
    187       1.4     uch //
    188       1.4     uch //   ELF header
    189       1.4     uch //   section header
    190       1.4     uch //   shstrtab
    191       1.9     uwe //   symtab
    192       1.4     uch //   strtab
    193       1.4     uch //
    194       1.4     uch size_t
    195       1.4     uch ElfLoader::symbol_block_size()
    196       1.4     uch {
    197       1.4     uch 	size_t shstrsize = ROUND4(_sh[_eh.e_shstrndx].sh_size);
    198       1.4     uch 	size_t shtab_sz = _eh.e_shentsize * _eh.e_shnum;
    199       1.4     uch 	off_t shstrtab_offset = sizeof(Elf_Ehdr) + shtab_sz;
    200       1.4     uch 	int i;
    201       1.4     uch 
    202       1.4     uch 	memset(&_sym_blk, 0, sizeof(_sym_blk));
    203       1.4     uch 	_sym_blk.enable = FALSE;
    204       1.4     uch 	_sym_blk.header_size = sizeof(Elf_Ehdr) + shtab_sz + shstrsize;
    205       1.4     uch 
    206       1.4     uch 	// inquire string and symbol table size
    207       1.4     uch 	_sym_blk.header = static_cast<char *>(malloc(_sym_blk.header_size));
    208       1.4     uch 	if (_sym_blk.header == NULL) {
    209       1.4     uch 		MessageBox(HPC_MENU._root->_window,
    210       1.8     uwe 		    TEXT("Can't determine symbol block size."),
    211       1.8     uwe 		    TEXT("WARNING"),
    212       1.8     uwe 		    MB_ICONWARNING | MB_OK);
    213      1.10     uwe 		UpdateWindow(HPC_MENU._root->_window);
    214       1.4     uch 		return (0);
    215       1.4     uch 	}
    216       1.4     uch 
    217       1.4     uch 	// set pointer for symbol block
    218       1.4     uch 	Elf_Ehdr *eh = reinterpret_cast<Elf_Ehdr *>(_sym_blk.header);
    219       1.4     uch 	Elf_Shdr *sh = reinterpret_cast<Elf_Shdr *>
    220       1.4     uch 	    (_sym_blk.header + sizeof(Elf_Ehdr));
    221       1.4     uch 	char *shstrtab = _sym_blk.header + shstrtab_offset;
    222       1.4     uch 
    223       1.4     uch 	// initialize headers
    224       1.4     uch 	memset(_sym_blk.header, 0, _sym_blk.header_size);
    225       1.4     uch 	memcpy(eh, &_eh, sizeof(Elf_Ehdr));
    226       1.4     uch 	eh->e_phoff = 0;
    227       1.4     uch 	eh->e_phnum = 0;
    228       1.4     uch 	eh->e_entry = 0; // XXX NetBSD kernel check this member. see machdep.c
    229       1.4     uch 	eh->e_shoff = sizeof(Elf_Ehdr);
    230       1.4     uch 	memcpy(sh, _sh, shtab_sz);
    231       1.4     uch 
    232       1.4     uch 	// inquire symbol/string table information
    233       1.4     uch 	_file->read(shstrtab, shstrsize, _sh[_eh.e_shstrndx].sh_offset);
    234       1.4     uch 	for (i = 0; i < _eh.e_shnum; i++, sh++) {
    235       1.4     uch 		if (strcmp(".strtab", shstrtab + sh->sh_name) == 0) {
    236       1.4     uch 			_sym_blk.shstr = sh;
    237       1.4     uch 			_sym_blk.stroff = sh->sh_offset;
    238       1.4     uch 		} else if (strcmp(".symtab", shstrtab + sh->sh_name) == 0) {
    239       1.4     uch 			_sym_blk.shsym = sh;
    240       1.4     uch 			_sym_blk.symoff = sh->sh_offset;
    241       1.1     uch 		}
    242       1.2  toshii 
    243       1.4     uch 		sh->sh_offset = (i == _eh.e_shstrndx) ? shstrtab_offset : 0;
    244       1.4     uch 	}
    245       1.4     uch 
    246       1.4     uch 	if (_sym_blk.shstr == NULL || _sym_blk.shsym == NULL) {
    247      1.10     uwe 		if (HPC_PREFERENCE.safety_message) {
    248       1.5     uch 			MessageBox(HPC_MENU._root->_window,
    249       1.8     uwe 			    TEXT("No symbol and/or string table in binary.\n(not fatal)"),
    250       1.8     uwe 			    TEXT("Information"),
    251       1.8     uwe 			    MB_ICONINFORMATION | MB_OK);
    252      1.10     uwe 			UpdateWindow(HPC_MENU._root->_window);
    253      1.10     uwe 		}
    254       1.4     uch 		free(_sym_blk.header);
    255       1.4     uch 		_sym_blk.header = NULL;
    256       1.1     uch 
    257       1.4     uch 		return (0);
    258       1.4     uch 	}
    259       1.4     uch 
    260       1.4     uch 	// set Section Headers for symbol/string table
    261       1.9     uwe 	_sym_blk.shsym->sh_offset = shstrtab_offset + shstrsize;
    262       1.9     uwe 	_sym_blk.shstr->sh_offset = shstrtab_offset + shstrsize +
    263       1.9     uwe 	    ROUND4(_sym_blk.shsym->sh_size);
    264       1.4     uch 	_sym_blk.enable = TRUE;
    265       1.4     uch 
    266      1.15     uwe 	DPRINTF((TEXT("+[ksyms: header 0x%x, symtab 0x%x, strtab 0x%x"),
    267      1.15     uwe 	    _sym_blk.header_size, _sym_blk.shsym->sh_size,
    268       1.9     uwe 	    _sym_blk.shstr->sh_size));
    269       1.4     uch 
    270       1.4     uch 	// return total amount of symbol block
    271       1.9     uwe 	return (_sym_blk.header_size + ROUND4(_sym_blk.shsym->sh_size) +
    272       1.9     uwe 	    _sym_blk.shstr->sh_size);
    273       1.4     uch }
    274       1.4     uch 
    275       1.4     uch void
    276       1.4     uch ElfLoader::load_symbol_block(vaddr_t kv)
    277       1.4     uch {
    278       1.4     uch 	size_t sz;
    279      1.13     uch 
    280       1.4     uch 	if (!_sym_blk.enable)
    281       1.4     uch 		return;
    282       1.4     uch 
    283      1.15     uwe 	DPRINTF((TEXT("ksyms\n")));
    284      1.15     uwe 
    285       1.4     uch 	// load header
    286       1.4     uch 	_load_memory(kv, _sym_blk.header_size, _sym_blk.header);
    287       1.4     uch 	kv += _sym_blk.header_size;
    288       1.4     uch 
    289       1.9     uwe 	// load symbol table
    290       1.9     uwe 	sz = _sym_blk.shsym->sh_size;
    291       1.9     uwe 	_load_segment(kv, sz, _sym_blk.symoff, sz);
    292       1.9     uwe 	kv += ROUND4(sz);
    293       1.9     uwe 
    294       1.4     uch 	// load string table
    295       1.4     uch 	sz = _sym_blk.shstr->sh_size;
    296       1.4     uch 	_load_segment(kv, sz, _sym_blk.stroff, sz);
    297       1.1     uch }
    298       1.1     uch 
    299       1.1     uch BOOL
    300       1.4     uch ElfLoader::read_header()
    301       1.1     uch {
    302       1.1     uch 	// read ELF header
    303       1.1     uch 	_file->read(&_eh, sizeof(Elf_Ehdr), 0);
    304       1.1     uch 
    305       1.1     uch 	// check ELF Magic.
    306       1.1     uch 	if (!is_elf_file()) {
    307       1.1     uch 		DPRINTF((TEXT("not a ELF file.\n")));
    308       1.1     uch 		return FALSE;
    309       1.1     uch 	}
    310      1.13     uch 
    311       1.1     uch 	// Windows CE is 32bit little-endian only.
    312       1.1     uch 	if (_eh.e_ident[EI_DATA] != ELFDATA2LSB ||
    313       1.1     uch 	    _eh.e_ident[EI_CLASS] != ELFCLASS32) {
    314       1.1     uch 		DPRINTF((TEXT("invalid class/data(%d/%d)\n"),
    315       1.3     uch 		    _eh.e_ident[EI_CLASS], _eh.e_ident[EI_DATA]));
    316       1.1     uch 		return FALSE;
    317       1.1     uch 	}
    318       1.1     uch 
    319       1.1     uch 	// Is native architecture?
    320       1.1     uch 	switch(_eh.e_machine) {
    321       1.1     uch 		ELF32_MACHDEP_ID_CASES;
    322       1.1     uch 	default:
    323       1.1     uch 		DPRINTF((TEXT("not a native architecture. machine = %d\n"),
    324       1.3     uch 		    _eh.e_machine));
    325       1.1     uch 		return FALSE;
    326       1.1     uch 	}
    327      1.13     uch 
    328       1.4     uch 	// Check object type
    329       1.1     uch 	if (_eh.e_type != ET_EXEC) {
    330       1.1     uch 		DPRINTF((TEXT("not a executable file. type = %d\n"),
    331       1.3     uch 		    _eh.e_type));
    332       1.1     uch 		return FALSE;
    333       1.1     uch 	}
    334      1.13     uch 
    335       1.1     uch 	if (_eh.e_phoff == 0 || _eh.e_phnum == 0 || _eh.e_phnum > 16 ||
    336       1.1     uch 	    _eh.e_phentsize != sizeof(Elf_Phdr)) {
    337       1.6     wiz 		DPRINTF((TEXT("invalid program header information.\n")));
    338       1.1     uch 		return FALSE;
    339       1.1     uch 	}
    340       1.1     uch 
    341       1.1     uch 	return TRUE;
    342       1.1     uch }
    343