Home | History | Annotate | Line # | Download | only in libtos
elf.c revision 1.5.16.1
      1  1.5.16.1  skrll /*	$NetBSD: elf.c,v 1.5.16.1 2005/11/10 13:55:33 skrll Exp $	*/
      2       1.1    leo 
      3       1.1    leo /*-
      4       1.1    leo  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5       1.1    leo  * All rights reserved.
      6       1.1    leo  *
      7       1.1    leo  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1    leo  * by Leo Weppelman.
      9       1.1    leo  *
     10       1.1    leo  * Redistribution and use in source and binary forms, with or without
     11       1.1    leo  * modification, are permitted provided that the following conditions
     12       1.1    leo  * are met:
     13       1.1    leo  * 1. Redistributions of source code must retain the above copyright
     14       1.1    leo  *    notice, this list of conditions and the following disclaimer.
     15       1.1    leo  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1    leo  *    notice, this list of conditions and the following disclaimer in the
     17       1.1    leo  *    documentation and/or other materials provided with the distribution.
     18       1.1    leo  * 3. All advertising materials mentioning features or use of this software
     19       1.1    leo  *    must display the following acknowledgement:
     20       1.1    leo  *        This product includes software developed by the NetBSD
     21       1.1    leo  *        Foundation, Inc. and its contributors.
     22       1.1    leo  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1    leo  *    contributors may be used to endorse or promote products derived
     24       1.1    leo  *    from this software without specific prior written permission.
     25       1.1    leo  *
     26       1.1    leo  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1    leo  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1    leo  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1    leo  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1    leo  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1    leo  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1    leo  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1    leo  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1    leo  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1    leo  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1    leo  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1    leo  */
     38       1.1    leo 
     39       1.3    leo #ifdef TOSTOOLS
     40       1.1    leo #include <stdio.h>
     41       1.1    leo #include <stdlib.h>
     42       1.4    leo #include <unistd.h>
     43       1.1    leo #include <string.h>
     44       1.1    leo #include <sys/types.h>
     45       1.3    leo #include "exec_elf.h"
     46       1.3    leo 
     47       1.3    leo #define	MALLOC(x)	malloc(x)
     48       1.1    leo 
     49       1.1    leo #else
     50       1.3    leo 
     51  1.5.16.1  skrll #include <lib/libsa/stand.h>
     52       1.3    leo #include <atari_stand.h>
     53       1.3    leo #include <string.h>
     54       1.3    leo #include <libkern.h>
     55       1.1    leo #include <sys/exec_elf.h>
     56       1.3    leo 
     57       1.3    leo #define	MALLOC(x)	alloc(x)
     58       1.1    leo #endif
     59       1.3    leo 
     60       1.5    leo #include "libtos.h"
     61       1.1    leo #include "tosdefs.h"
     62       1.1    leo #include "kparamb.h"
     63       1.2    leo #include "cread.h"
     64       1.1    leo 
     65       1.1    leo /*
     66       1.1    leo  * Load an elf image.
     67       1.1    leo  * Exit codes:
     68       1.1    leo  *	-1      : Not an ELF file.
     69       1.1    leo  *	 0      : OK
     70       1.1    leo  *	 error# : Error during load (*errp might contain error string).
     71       1.1    leo  */
     72       1.1    leo #define ELFMAGIC	((ELFMAG0 << 24) | (ELFMAG1 << 16) | \
     73       1.1    leo 				(ELFMAG2 << 8) | ELFMAG3)
     74       1.1    leo 
     75       1.1    leo int
     76       1.1    leo elf_load(fd, od, errp, loadsyms)
     77       1.1    leo int	fd;
     78       1.1    leo osdsc_t	*od;
     79       1.1    leo char	**errp;
     80       1.1    leo int	loadsyms;
     81       1.1    leo {
     82       1.1    leo 	int		i,j;
     83       1.1    leo 	int		err;
     84       1.1    leo 	Elf32_Ehdr	ehdr;
     85       1.1    leo 	Elf32_Phdr	*phdrs;
     86       1.1    leo 	Elf32_Word	symsize, symstart;
     87       1.1    leo 	long		kernsize;
     88       1.1    leo 
     89       1.1    leo 	*errp = NULL;
     90       1.1    leo 	lseek(fd, (off_t)0, SEEK_SET);
     91       1.1    leo 	if (read(fd, (char *)&ehdr, sizeof(ehdr)) != sizeof(ehdr))
     92       1.1    leo 		return -1;
     93       1.1    leo 
     94       1.1    leo 	if (*((u_int *)ehdr.e_ident) != ELFMAGIC)
     95       1.1    leo 		return -1;
     96       1.1    leo 
     97       1.1    leo 	/*
     98       1.1    leo 	 * calculate highest used address
     99       1.1    leo 	 */
    100       1.1    leo 	i = ehdr.e_phnum * sizeof(Elf32_Phdr);
    101       1.1    leo 	err = 1;
    102       1.3    leo 	if ((phdrs = (Elf32_Phdr *)MALLOC(i)) == NULL)
    103       1.1    leo 		goto error;
    104       1.1    leo 	err = 2;
    105       1.1    leo 	if (read(fd, phdrs, i) != i)
    106       1.1    leo 		goto error;
    107       1.1    leo 
    108       1.1    leo 	kernsize = 0;
    109       1.1    leo 	for (i = 0; i < ehdr.e_phnum; i++) {
    110       1.1    leo 		Elf32_Word sum;
    111       1.1    leo 
    112       1.1    leo 		sum = phdrs[i].p_vaddr + phdrs[i].p_memsz;
    113       1.1    leo 		if ((phdrs[i].p_flags & (PF_W|PF_X)) && (sum > kernsize))
    114       1.1    leo 			kernsize = sum;
    115       1.1    leo 	}
    116       1.1    leo 
    117       1.1    leo 	/*
    118       1.1    leo 	 * look for symbols and calculate the size
    119       1.1    leo 	 * XXX: This increases the load time by a factor 2 for gzipped
    120       1.1    leo 	 *      images!
    121       1.1    leo 	 */
    122       1.1    leo 	symsize  = 0;
    123       1.1    leo 	symstart = 0;
    124       1.1    leo 	if (loadsyms) {
    125       1.1    leo 	    i = ehdr.e_shnum + 1;
    126       1.1    leo 	    err = 3;
    127       1.1    leo 	    if (lseek(fd, (off_t)ehdr.e_shoff, SEEK_SET) != ehdr.e_shoff)
    128       1.1    leo 		goto error;
    129       1.1    leo 	    while (--i) {
    130       1.1    leo 	      Elf32_Shdr shdr;
    131       1.1    leo 
    132       1.1    leo 	      err = 4;
    133       1.1    leo 	      if (read(fd, &shdr, sizeof(shdr)) != sizeof(shdr))
    134       1.1    leo 		goto error;
    135       1.1    leo 	      if ((shdr.sh_type == SHT_SYMTAB) || (shdr.sh_type == SHT_STRTAB))
    136       1.1    leo 		symsize += shdr.sh_size;
    137       1.1    leo 	    }
    138       1.1    leo 	}
    139       1.1    leo 
    140       1.1    leo 	if (symsize) {
    141       1.1    leo 	  symstart = kernsize;
    142       1.1    leo 	  kernsize += symsize + sizeof(ehdr) + ehdr.e_shnum*sizeof(Elf32_Shdr);
    143       1.1    leo 	}
    144       1.1    leo 
    145       1.1    leo 	/*
    146       1.1    leo 	 * Extract various sizes from the kernel executable
    147       1.1    leo 	 */
    148       1.1    leo 	od->k_esym = symsize ? kernsize : 0;
    149       1.1    leo 	od->ksize  = kernsize;
    150       1.1    leo 	od->kentry = ehdr.e_entry;
    151       1.1    leo 
    152       1.1    leo 	err = 5;
    153       1.3    leo 	if ((od->kstart = (u_char *)MALLOC(od->ksize)) == NULL)
    154       1.1    leo 		goto error;
    155       1.1    leo 
    156       1.1    leo 	/*
    157       1.1    leo 	 * Read text & data, clear bss
    158       1.1    leo 	 */
    159       1.1    leo 	for (i = 0; i < ehdr.e_phnum; i++) {
    160       1.1    leo 	    u_char	*p;
    161       1.1    leo 	    Elf32_Phdr	*php = &phdrs[i];
    162       1.1    leo 
    163       1.1    leo 	    if (php->p_flags & (PF_W|PF_X)) {
    164       1.1    leo 		err = 6;
    165       1.1    leo 		if (lseek(fd, (off_t)php->p_offset, SEEK_SET) != php->p_offset)
    166       1.1    leo 		    goto error;
    167       1.1    leo 		p = (u_char *)(od->kstart) + php->p_vaddr;
    168       1.1    leo 		err = 7;
    169       1.1    leo 		if (read(fd, p, php->p_filesz) != php->p_filesz)
    170       1.1    leo 		    goto error;
    171       1.1    leo 		if (php->p_memsz > php->p_filesz)
    172       1.3    leo 		    bzero(p + php->p_filesz, php->p_memsz - php->p_filesz);
    173       1.1    leo 	    }
    174       1.1    leo 	}
    175       1.1    leo 
    176       1.1    leo 	/*
    177       1.1    leo 	 * Read symbols and strings
    178       1.1    leo 	 */
    179       1.1    leo 	if (symsize) {
    180       1.1    leo 	    u_char	*p, *symtab;
    181       1.1    leo 	    int		nhdrs;
    182       1.1    leo 	    Elf32_Shdr	*shp;
    183       1.1    leo 
    184       1.1    leo 	    symtab = od->kstart + symstart;
    185       1.1    leo 
    186       1.1    leo 	    p = symtab + sizeof(ehdr);
    187       1.1    leo 	    nhdrs = ehdr.e_shnum;
    188       1.1    leo 	    err = 8;
    189       1.1    leo 	    if (lseek(fd, (off_t)ehdr.e_shoff, SEEK_SET) != ehdr.e_shoff)
    190       1.1    leo 		goto error;
    191       1.1    leo 	    err = 9;
    192       1.1    leo 	    if (read(fd, p, nhdrs * sizeof(*shp)) != nhdrs * sizeof(*shp))
    193       1.1    leo 		goto error;
    194       1.1    leo 	    shp = (Elf32_Shdr*)p;
    195       1.1    leo 	    p  += nhdrs * sizeof(*shp);
    196       1.1    leo 	    for (i = 0; i < nhdrs; i++) {
    197       1.1    leo 		if (shp[i].sh_type == SHT_SYMTAB) {
    198       1.1    leo 		    if (shp[i].sh_offset == 0)
    199       1.1    leo 			continue;
    200       1.1    leo 		    /* Got the symbol table. */
    201       1.1    leo 		    err = 10;
    202       1.1    leo 		    if (lseek(fd, (off_t)shp[i].sh_offset, SEEK_SET) !=
    203       1.1    leo 							shp[i].sh_offset)
    204       1.1    leo 		    	goto error;
    205       1.1    leo 		    err = 11;
    206       1.1    leo 		    if (read(fd, p, shp[i].sh_size) != shp[i].sh_size)
    207       1.1    leo 			goto error;
    208       1.1    leo 		    shp[i].sh_offset = p - symtab;
    209       1.1    leo 		    /* Find the string table to go with it. */
    210       1.1    leo 		    j = shp[i].sh_link;
    211       1.1    leo 		    if (shp[j].sh_offset == 0)
    212       1.1    leo 			continue;
    213       1.1    leo 		    p += shp[i].sh_size;
    214       1.1    leo 		    err = 12;
    215       1.1    leo 		    if (lseek(fd, (off_t)shp[j].sh_offset, SEEK_SET) !=
    216       1.1    leo 				    			shp[j].sh_offset)
    217       1.1    leo 		    	goto error;
    218       1.1    leo 		    err = 13;
    219       1.1    leo 		    if (read(fd, p, shp[j].sh_size) != shp[j].sh_size)
    220       1.1    leo 			goto error;
    221       1.1    leo 		    shp[j].sh_offset = p - symtab;
    222       1.1    leo 		    /* There should only be one symbol table. */
    223       1.1    leo 		    break;
    224       1.1    leo 		}
    225       1.1    leo 	    }
    226       1.1    leo 	    ehdr.e_shoff = sizeof(ehdr);
    227       1.1    leo 	    bcopy(&ehdr, symtab, sizeof(ehdr));
    228       1.1    leo 	}
    229       1.1    leo 	return 0;
    230       1.1    leo 
    231       1.1    leo error:
    232       1.1    leo #ifdef TOSTOOLS
    233       1.1    leo 	{
    234       1.1    leo 		static char *errs[] = {
    235       1.1    leo 			/*  1 */ "Cannot malloc Elf phdr storage space",
    236       1.1    leo 			/*  2 */ "Cannot read Elf32_Phdrs",
    237       1.1    leo 			/*  3 */ "Cannot seek to e_shoff location",
    238       1.1    leo 			/*  4 */ "Cannot read Elf32_shdr",
    239       1.1    leo 			/*  5 */ "Cannot malloc kernel image space",
    240       1.1    leo 		    	/*  6 */ "Seek error while reading text segment\n",
    241       1.1    leo 		    	/*  7 */ "Read error in text segment\n",
    242       1.1    leo 			/*  8 */ "Error seeking to section headers",
    243       1.1    leo 			/*  9 */ "Error reading section headers",
    244       1.1    leo 		    	/* 10 */ "Error seeking to symbols",
    245       1.1    leo 			/* 11 */ "Error reading symbols",
    246       1.1    leo 		    	/* 12 */ "Error seeking to string table",
    247       1.1    leo 			/* 13 */ "Error reading strings"
    248       1.1    leo 		};
    249       1.1    leo 		*errp = errs[err];
    250       1.1    leo 	}
    251       1.1    leo #endif /* TOSTOOLS */
    252       1.1    leo 
    253       1.1    leo 	return err;
    254       1.1    leo }
    255