Home | History | Annotate | Line # | Download | only in freebsd
freebsd_exec_elf32.c revision 1.5
      1 /*	$NetBSD: freebsd_exec_elf32.c,v 1.5 2001/10/27 09:50:22 jdolecek Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1993, 1994 Christopher G. Demetriou
      5  * All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. 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  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *      This product includes software developed by Christopher G. Demetriou.
     18  * 4. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 #include <sys/param.h>
     34 #include <sys/systm.h>
     35 #include <sys/proc.h>
     36 #include <sys/malloc.h>
     37 #include <sys/vnode.h>
     38 #include <sys/exec.h>
     39 #ifndef ELFSIZE
     40 #  define ELFSIZE 32
     41 #endif /* !ELFSIZE */
     42 #include <sys/exec_elf.h>
     43 
     44 #include <machine/freebsd_machdep.h>
     45 
     46 #include <compat/freebsd/freebsd_exec.h>
     47 #include <compat/common/compat_util.h>
     48 
     49 int
     50 ELFNAME2(freebsd,probe)(p, epp, veh, itp, pos)
     51 	struct proc *p;
     52 	struct exec_package *epp;
     53 	void *veh;
     54 	char *itp;
     55 	vaddr_t *pos;
     56 {
     57 	int error;
     58 	size_t i;
     59 	size_t phsize;
     60 	Elf_Ehdr *eh = (Elf_Ehdr *) veh;
     61 	Elf_Phdr *ph;
     62 	Elf_Phdr *ephp;
     63 	Elf_Nhdr *np;
     64 	const char *bp;
     65 
     66         static const char wantBrand[] = FREEBSD_ELF_BRAND_STRING;
     67         static const char wantInterp[] = FREEBSD_ELF_INTERP_PREFIX_STRING;
     68 
     69         /*
     70 	 * Insist that the executable have a brand, and that it be "FreeBSD".
     71 	 * Newer FreeBSD binaries have OSABI set to ELFOSABI_FREEBSD. This
     72 	 * is arguably broken, but they seem to think they need it, for
     73 	 * whatever reason.
     74 	 */
     75 #ifndef EI_BRAND
     76 #define EI_BRAND 8
     77 #endif
     78         if ((eh->e_ident[EI_BRAND] == '\0'
     79 		|| strcmp(&eh->e_ident[EI_BRAND], wantBrand) != 0)
     80 	    && eh->e_ident[EI_OSABI] != ELFOSABI_FREEBSD)
     81 		return ENOEXEC;
     82 
     83 	i = eh->e_phnum;
     84 	if (i != 0) {
     85 		phsize = i * sizeof(Elf_Phdr);
     86 		ph = (Elf_Phdr *) malloc(phsize, M_TEMP, M_WAITOK);
     87 		if ((error = exec_read_from(p, epp->ep_vp, eh->e_phoff, ph,
     88 		    phsize)) != 0)
     89 			goto bad1;
     90 
     91 		for (ephp = ph; i--; ephp++) {
     92 			if (ephp->p_type != PT_INTERP)
     93 				continue;
     94 
     95 			/* Check for "legal" intepreter name. */
     96 			if (ephp->p_filesz < sizeof wantInterp)
     97 				goto bad1;
     98 
     99 			np = (Elf_Nhdr *) malloc(ephp->p_filesz+1,
    100 			    M_TEMP, M_WAITOK);
    101 
    102 			if (((error = exec_read_from(p, epp->ep_vp,
    103 			    ephp->p_offset, np, ephp->p_filesz)) != 0))
    104 				goto bad2;
    105 
    106 			if (strncmp((char *)np, wantInterp,
    107 			    sizeof wantInterp - 1))
    108 				goto bad2;
    109 
    110 			free(np, M_TEMP);
    111 			break;
    112 		}
    113 		free(ph, M_TEMP);
    114 	}
    115 
    116 	if (itp[0]) {
    117 		if ((error = emul_find(p, NULL, epp->ep_esch->es_emul->e_path,
    118 		    itp, &bp, 0)))
    119 			return error;
    120 		if ((error = copystr(bp, itp, MAXPATHLEN, &i)) != 0)
    121 			return error;
    122 		free((void *)bp, M_TEMP);
    123 	}
    124 	*pos = ELF_NO_ADDR;
    125 #ifdef DEBUG_FREEBSD_ELF
    126 	printf("freebsd_elf32_probe: returning 0\n");
    127 #endif
    128 	return 0;
    129 
    130 bad2:
    131 	free(np, M_TEMP);
    132 bad1:
    133 	free(ph, M_TEMP);
    134 	return ENOEXEC;
    135 }
    136