Home | History | Annotate | Line # | Download | only in gen
nlist_elf32.c revision 1.29.2.1
      1  1.29.2.1       jym /* $NetBSD: nlist_elf32.c,v 1.29.2.1 2009/05/13 19:18:23 jym Exp $ */
      2       1.1       cgd 
      3       1.1       cgd /*
      4      1.21       cgd  * Copyright (c) 1996 Christopher G. Demetriou
      5      1.21       cgd  * All rights reserved.
      6      1.21       cgd  *
      7       1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8       1.1       cgd  * modification, are permitted provided that the following conditions
      9       1.1       cgd  * are met:
     10       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16       1.1       cgd  *    must display the following acknowledgement:
     17      1.21       cgd  *          This product includes software developed for the
     18      1.24      salo  *          NetBSD Project.  See http://www.NetBSD.org/ for
     19      1.21       cgd  *          information about NetBSD.
     20       1.3       cgd  * 4. The name of the author may not be used to endorse or promote products
     21      1.21       cgd  *    derived from this software without specific prior written permission.
     22      1.21       cgd  *
     23       1.3       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24       1.3       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25       1.3       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26       1.3       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27       1.3       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28       1.3       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29       1.3       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30       1.3       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31       1.3       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32       1.3       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33      1.21       cgd  *
     34      1.21       cgd  * <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
     35       1.1       cgd  */
     36       1.1       cgd 
     37      1.28     lukem #include <sys/cdefs.h>
     38      1.28     lukem #if defined(LIBC_SCCS) && !defined(lint)
     39  1.29.2.1       jym __RCSID("$NetBSD: nlist_elf32.c,v 1.29.2.1 2009/05/13 19:18:23 jym Exp $");
     40      1.28     lukem #endif /* LIBC_SCCS and not lint */
     41      1.28     lukem 
     42       1.1       cgd /* If not included by nlist_elf64.c, ELFSIZE won't be defined. */
     43       1.1       cgd #ifndef ELFSIZE
     44       1.1       cgd #define	ELFSIZE		32
     45       1.1       cgd #endif
     46       1.1       cgd 
     47      1.11    kleink #include "namespace.h"
     48       1.1       cgd #include <sys/param.h>
     49       1.1       cgd #include <sys/mman.h>
     50       1.1       cgd #include <sys/stat.h>
     51       1.1       cgd #include <sys/file.h>
     52      1.22     ragge #include <sys/ioctl.h>
     53      1.22     ragge #include <sys/ksyms.h>
     54       1.1       cgd 
     55      1.14     lukem #include <assert.h>
     56       1.1       cgd #include <errno.h>
     57       1.1       cgd #include <stdio.h>
     58       1.1       cgd #include <string.h>
     59       1.1       cgd #include <unistd.h>
     60       1.1       cgd #include <a.out.h>			/* for 'struct nlist' declaration */
     61       1.1       cgd 
     62       1.1       cgd #include "nlist_private.h"
     63       1.1       cgd #if defined(NLIST_ELF32) || defined(NLIST_ELF64)
     64       1.1       cgd #include <sys/exec_elf.h>
     65       1.1       cgd #endif
     66       1.1       cgd 
     67       1.1       cgd #if (defined(NLIST_ELF32) && (ELFSIZE == 32)) || \
     68       1.1       cgd     (defined(NLIST_ELF64) && (ELFSIZE == 64))
     69      1.17   hannken 
     70      1.12  christos /* No need to check for off < 0 because it is unsigned */
     71      1.12  christos #define	check(off, size)	(off + size > mappedsize)
     72      1.12  christos #define	BAD			goto out
     73      1.12  christos #define	BADUNMAP		goto unmap
     74       1.3       cgd 
     75       1.1       cgd int
     76       1.2       cgd ELFNAMEEND(__fdnlist)(fd, list)
     77       1.8     perry 	int fd;
     78       1.8     perry 	struct nlist *list;
     79       1.1       cgd {
     80       1.2       cgd 	struct stat st;
     81       1.3       cgd 	struct nlist *p;
     82       1.3       cgd 	char *mappedfile, *strtab;
     83       1.3       cgd 	size_t mappedsize;
     84      1.22     ragge 	Elf_Ehdr *ehdrp, ehdr;
     85       1.3       cgd 	Elf_Shdr *shdrp, *symshdrp, *symstrshdrp;
     86       1.3       cgd 	Elf_Sym *symp;
     87       1.5       cgd 	Elf_Off shdr_off;
     88       1.5       cgd 	Elf_Word shdr_size;
     89       1.3       cgd #if (ELFSIZE == 32)
     90       1.3       cgd 	Elf32_Half nshdr;
     91       1.3       cgd #elif (ELFSIZE == 64)
     92       1.3       cgd 	Elf64_Half nshdr;
     93       1.3       cgd #endif
     94      1.12  christos 	size_t i, nsyms;
     95       1.3       cgd 	int rv, nent;
     96      1.14     lukem 
     97      1.14     lukem 	_DIAGASSERT(fd != -1);
     98      1.14     lukem 	_DIAGASSERT(list != NULL);
     99       1.3       cgd 
    100       1.3       cgd 	rv = -1;
    101       1.3       cgd 
    102       1.6   thorpej 	symshdrp = symstrshdrp = NULL;
    103       1.6   thorpej 
    104       1.3       cgd 	/*
    105       1.4       cgd 	 * If we can't fstat() the file, something bad is going on.
    106       1.3       cgd 	 */
    107       1.3       cgd 	if (fstat(fd, &st) < 0)
    108       1.3       cgd 		BAD;
    109       1.4       cgd 
    110       1.4       cgd 	/*
    111       1.4       cgd 	 * Map the file in its entirety.
    112       1.4       cgd 	 */
    113  1.29.2.1       jym 	if ((uintmax_t)st.st_size > (uintmax_t)SIZE_T_MAX) {
    114       1.3       cgd 		errno = EFBIG;
    115       1.3       cgd 		BAD;
    116       1.3       cgd 	}
    117      1.22     ragge 
    118      1.22     ragge 	/*
    119      1.22     ragge 	 * Read the elf header of the file.
    120      1.22     ragge 	 */
    121      1.23  christos 	if ((ssize_t)(i = pread(fd, &ehdr, sizeof(Elf_Ehdr), (off_t)0)) == -1)
    122      1.22     ragge 		BAD;
    123      1.22     ragge 
    124      1.22     ragge 	/*
    125      1.22     ragge 	 * Check that the elf header is correct.
    126      1.22     ragge 	 */
    127      1.22     ragge 	if (i != sizeof(Elf_Ehdr))
    128      1.22     ragge 		BAD;
    129      1.22     ragge 	if (memcmp(ehdr.e_ident, ELFMAG, SELFMAG) != 0 ||
    130      1.22     ragge 	    ehdr.e_ident[EI_CLASS] != ELFCLASS)
    131      1.22     ragge 		BAD;
    132      1.22     ragge 
    133      1.22     ragge 	switch (ehdr.e_machine) {
    134      1.22     ragge 	ELFDEFNNAME(MACHDEP_ID_CASES)
    135      1.22     ragge 
    136      1.22     ragge 	default:
    137      1.27     lukem 		BAD;
    138      1.22     ragge 	}
    139      1.22     ragge 
    140      1.22     ragge 	if (S_ISCHR(st.st_mode)) {
    141      1.22     ragge 		const char *nlistname;
    142      1.22     ragge 		struct ksyms_gsymbol kg;
    143      1.22     ragge 		Elf_Sym sym;
    144      1.22     ragge 
    145      1.22     ragge 		/*
    146      1.22     ragge 		 * Character device; assume /dev/ksyms.
    147      1.22     ragge 		 */
    148      1.22     ragge 		nent = 0;
    149      1.22     ragge 		for (p = list; !ISLAST(p); ++p) {
    150      1.22     ragge 
    151      1.22     ragge 			p->n_other = 0;
    152      1.22     ragge 			p->n_desc = 0;
    153      1.22     ragge 			nlistname = p->n_un.n_name;
    154      1.22     ragge 			if (*nlistname == '_')
    155      1.22     ragge 				nlistname++;
    156      1.22     ragge 
    157      1.22     ragge 			kg.kg_name = nlistname;
    158      1.22     ragge 			kg.kg_sym = &sym;
    159      1.22     ragge 			if (ioctl(fd, KIOCGSYMBOL, &kg) == 0) {
    160      1.22     ragge 				p->n_value = sym.st_value;
    161      1.25   thorpej 				switch (ELF_ST_TYPE(sym.st_info)) {
    162      1.22     ragge 				case STT_NOTYPE:
    163      1.22     ragge 					p->n_type = N_UNDF;
    164      1.22     ragge 					break;
    165      1.22     ragge 				case STT_OBJECT:
    166      1.22     ragge 					p->n_type = N_DATA;
    167      1.22     ragge 					break;
    168      1.22     ragge 				case STT_FUNC:
    169      1.22     ragge 					p->n_type = N_TEXT;
    170      1.22     ragge 					break;
    171      1.22     ragge 				case STT_FILE:
    172      1.22     ragge 					p->n_type = N_FN;
    173      1.22     ragge 					break;
    174      1.22     ragge 				default:
    175      1.22     ragge 					p->n_type = 0;
    176      1.22     ragge 					/* catch other enumerations for gcc */
    177      1.22     ragge 					break;
    178      1.22     ragge 				}
    179      1.26   thorpej 				if (ELF_ST_BIND(sym.st_info) != STB_LOCAL)
    180      1.22     ragge 					p->n_type |= N_EXT;
    181      1.22     ragge 			} else {
    182      1.22     ragge 				nent++;
    183      1.22     ragge 				p->n_value = 0;
    184      1.22     ragge 				p->n_type = 0;
    185      1.22     ragge 			}
    186      1.22     ragge 		}
    187      1.22     ragge 		return nent;
    188      1.22     ragge 	}
    189      1.22     ragge 
    190      1.12  christos 	mappedsize = (size_t)st.st_size;
    191      1.13   thorpej 	mappedfile = mmap(NULL, mappedsize, PROT_READ, MAP_PRIVATE|MAP_FILE,
    192      1.12  christos 	    fd, (off_t)0);
    193       1.3       cgd 	if (mappedfile == (char *)-1)
    194       1.3       cgd 		BAD;
    195       1.3       cgd 
    196       1.3       cgd 	/*
    197       1.3       cgd 	 * Make sure we can access the executable's header
    198       1.3       cgd 	 * directly, and make sure the recognize the executable
    199       1.3       cgd 	 * as an ELF binary.
    200       1.3       cgd 	 */
    201       1.3       cgd 	if (check(0, sizeof *ehdrp))
    202       1.3       cgd 		BADUNMAP;
    203      1.12  christos 	ehdrp = (Elf_Ehdr *)(void *)&mappedfile[0];
    204       1.1       cgd 
    205       1.2       cgd 	/*
    206       1.3       cgd 	 * Find the symbol list and string table.
    207       1.2       cgd 	 */
    208       1.3       cgd 	nshdr = ehdrp->e_shnum;
    209       1.3       cgd 	shdr_off = ehdrp->e_shoff;
    210       1.3       cgd 	shdr_size = ehdrp->e_shentsize * nshdr;
    211       1.3       cgd 
    212       1.3       cgd 	if (check(shdr_off, shdr_size) ||
    213       1.3       cgd 	    (sizeof *shdrp != ehdrp->e_shentsize))
    214       1.3       cgd 		BADUNMAP;
    215      1.12  christos 	shdrp = (Elf_Shdr *)(void *)&mappedfile[shdr_off];
    216       1.3       cgd 
    217       1.3       cgd 	for (i = 0; i < nshdr; i++) {
    218      1.18    kleink 		if (shdrp[i].sh_type == SHT_SYMTAB) {
    219       1.3       cgd 			symshdrp = &shdrp[i];
    220       1.3       cgd 			symstrshdrp = &shdrp[shdrp[i].sh_link];
    221       1.2       cgd 		}
    222       1.2       cgd 	}
    223       1.2       cgd 
    224       1.3       cgd 	/* Make sure we're not stripped. */
    225       1.6   thorpej 	if (symshdrp == NULL || symshdrp->sh_offset == 0)
    226       1.3       cgd 		BADUNMAP;
    227       1.3       cgd 
    228       1.3       cgd 	/* Make sure the symbols and strings are safely mapped. */
    229       1.3       cgd 	if (check(symshdrp->sh_offset, symshdrp->sh_size))
    230       1.3       cgd 		BADUNMAP;
    231       1.3       cgd 	if (check(symstrshdrp->sh_offset, symstrshdrp->sh_size))
    232       1.3       cgd 		BADUNMAP;
    233       1.3       cgd 
    234      1.12  christos 	symp = (Elf_Sym *)(void *)&mappedfile[symshdrp->sh_offset];
    235       1.3       cgd 	nsyms = symshdrp->sh_size / sizeof(*symp);
    236       1.3       cgd 	strtab = &mappedfile[symstrshdrp->sh_offset];
    237       1.1       cgd 
    238       1.2       cgd 	/*
    239       1.4       cgd 	 * Clean out any left-over information for all valid entries.
    240       1.4       cgd 	 * Type and value are defined to be 0 if not found; historical
    241       1.3       cgd 	 * versions cleared other and desc as well.
    242       1.2       cgd 	 *
    243       1.4       cgd 	 * XXX Clearing anything other than n_type and n_value violates
    244       1.2       cgd 	 * the semantics given in the man page.
    245       1.2       cgd 	 */
    246       1.2       cgd 	nent = 0;
    247       1.2       cgd 	for (p = list; !ISLAST(p); ++p) {
    248       1.2       cgd 		p->n_type = 0;
    249       1.2       cgd 		p->n_other = 0;
    250       1.2       cgd 		p->n_desc = 0;
    251       1.2       cgd 		p->n_value = 0;
    252       1.2       cgd 		++nent;
    253       1.2       cgd 	}
    254       1.2       cgd 
    255       1.3       cgd 	for (i = 0; i < nsyms; i++) {
    256       1.3       cgd 		for (p = list; !ISLAST(p); ++p) {
    257       1.9   mycroft 			const char *nlistname;
    258       1.3       cgd 			char *symtabname;
    259       1.3       cgd 
    260       1.3       cgd 			/* This may be incorrect */
    261       1.3       cgd 			nlistname = p->n_un.n_name;
    262       1.3       cgd 			if (*nlistname == '_')
    263       1.3       cgd 				nlistname++;
    264       1.3       cgd 
    265       1.3       cgd 			symtabname = &strtab[symp[i].st_name];
    266       1.3       cgd 
    267       1.3       cgd 			if (!strcmp(symtabname, nlistname)) {
    268       1.4       cgd 				/*
    269       1.4       cgd 				 * Translate (roughly) from ELF to nlist
    270       1.4       cgd 				 */
    271       1.3       cgd 				p->n_value = symp[i].st_value;
    272      1.26   thorpej 				switch (ELF_ST_TYPE(symp[i].st_info)) {
    273      1.18    kleink 				case STT_NOTYPE:
    274       1.3       cgd 					p->n_type = N_UNDF;
    275       1.3       cgd 					break;
    276      1.18    kleink 				case STT_OBJECT:
    277       1.3       cgd 					p->n_type = N_DATA;
    278       1.3       cgd 					break;
    279      1.18    kleink 				case STT_FUNC:
    280       1.3       cgd 					p->n_type = N_TEXT;
    281       1.3       cgd 					break;
    282      1.18    kleink 				case STT_FILE:
    283       1.3       cgd 					p->n_type = N_FN;
    284       1.6   thorpej 					break;
    285       1.6   thorpej 				default:
    286       1.6   thorpej 					/* catch other enumerations for gcc */
    287       1.3       cgd 					break;
    288       1.2       cgd 				}
    289      1.26   thorpej 				if (ELF_ST_BIND(symp[i].st_info) != STB_LOCAL)
    290       1.3       cgd 					p->n_type |= N_EXT;
    291       1.3       cgd 				p->n_desc = 0;			/* XXX */
    292       1.3       cgd 				p->n_other = 0;			/* XXX */
    293       1.3       cgd 
    294       1.3       cgd 				if (--nent <= 0)
    295       1.3       cgd 					goto done;
    296       1.3       cgd 				break;	/* into next run of outer loop */
    297       1.2       cgd 			}
    298       1.2       cgd 		}
    299       1.2       cgd 	}
    300       1.3       cgd 
    301       1.2       cgd done:
    302       1.3       cgd 	rv = nent;
    303       1.3       cgd unmap:
    304       1.3       cgd 	munmap(mappedfile, mappedsize);
    305       1.3       cgd out:
    306       1.3       cgd 	return (rv);
    307       1.1       cgd }
    308       1.1       cgd 
    309       1.1       cgd #endif
    310