Home | History | Annotate | Line # | Download | only in kern
exec_elf.c revision 1.13
      1  1.13  drochner /*	$NetBSD: exec_elf.c,v 1.13 2010/02/22 19:46:18 drochner Exp $	*/
      2  1.10        ad 
      3  1.10        ad /*-
      4  1.10        ad  * Copyright (c) 1994, 2000, 2005 The NetBSD Foundation, Inc.
      5  1.10        ad  * All rights reserved.
      6  1.10        ad  *
      7  1.10        ad  * This code is derived from software contributed to The NetBSD Foundation
      8  1.10        ad  * by Christos Zoulas.
      9  1.10        ad  *
     10  1.10        ad  * Redistribution and use in source and binary forms, with or without
     11  1.10        ad  * modification, are permitted provided that the following conditions
     12  1.10        ad  * are met:
     13  1.10        ad  * 1. Redistributions of source code must retain the above copyright
     14  1.10        ad  *    notice, this list of conditions and the following disclaimer.
     15  1.10        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.10        ad  *    notice, this list of conditions and the following disclaimer in the
     17  1.10        ad  *    documentation and/or other materials provided with the distribution.
     18  1.10        ad  *
     19  1.10        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.10        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.10        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.10        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.10        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.10        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.10        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.10        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.10        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.10        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.10        ad  * POSSIBILITY OF SUCH DAMAGE.
     30  1.10        ad  */
     31   1.1      fvdl 
     32   1.1      fvdl /*
     33  1.10        ad  * Copyright (c) 1996 Christopher G. Demetriou
     34   1.1      fvdl  * All rights reserved.
     35   1.1      fvdl  *
     36   1.1      fvdl  * Redistribution and use in source and binary forms, with or without
     37   1.1      fvdl  * modification, are permitted provided that the following conditions
     38   1.1      fvdl  * are met:
     39   1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     40   1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     41   1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     42   1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     43   1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     44   1.1      fvdl  * 3. The name of the author may not be used to endorse or promote products
     45   1.1      fvdl  *    derived from this software without specific prior written permission
     46   1.1      fvdl  *
     47   1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     48   1.1      fvdl  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     49   1.1      fvdl  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     50   1.1      fvdl  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     51   1.1      fvdl  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     52   1.1      fvdl  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     53   1.1      fvdl  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     54   1.1      fvdl  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     55   1.1      fvdl  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     56   1.1      fvdl  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     57   1.1      fvdl  */
     58   1.1      fvdl 
     59  1.10        ad #include <sys/cdefs.h>
     60  1.13  drochner __KERNEL_RCSID(1, "$NetBSD: exec_elf.c,v 1.13 2010/02/22 19:46:18 drochner Exp $");
     61  1.10        ad 
     62  1.10        ad #ifdef _KERNEL_OPT
     63  1.10        ad #include "opt_pax.h"
     64  1.10        ad #endif /* _KERNEL_OPT */
     65  1.10        ad 
     66   1.1      fvdl #include <sys/param.h>
     67   1.1      fvdl #include <sys/proc.h>
     68   1.1      fvdl #include <sys/malloc.h>
     69  1.10        ad #include <sys/kmem.h>
     70   1.1      fvdl #include <sys/namei.h>
     71   1.1      fvdl #include <sys/vnode.h>
     72   1.1      fvdl #include <sys/exec.h>
     73   1.1      fvdl #include <sys/exec_elf.h>
     74   1.8  christos #include <sys/syscall.h>
     75   1.8  christos #include <sys/signalvar.h>
     76  1.10        ad #include <sys/mount.h>
     77  1.10        ad #include <sys/stat.h>
     78  1.10        ad #include <sys/kauth.h>
     79  1.10        ad #include <sys/bitops.h>
     80  1.10        ad 
     81  1.10        ad #include <sys/cpu.h>
     82  1.10        ad #include <machine/reg.h>
     83   1.1      fvdl 
     84  1.10        ad #include <compat/common/compat_util.h>
     85   1.1      fvdl 
     86  1.10        ad #include <sys/pax.h>
     87   1.1      fvdl 
     88  1.10        ad extern struct emul emul_netbsd;
     89   1.1      fvdl 
     90  1.10        ad #define elf_check_header	ELFNAME(check_header)
     91  1.10        ad #define elf_copyargs		ELFNAME(copyargs)
     92  1.10        ad #define elf_load_file		ELFNAME(load_file)
     93  1.10        ad #define elf_load_psection	ELFNAME(load_psection)
     94  1.10        ad #define exec_elf_makecmds	ELFNAME2(exec,makecmds)
     95  1.10        ad #define netbsd_elf_signature	ELFNAME2(netbsd,signature)
     96  1.10        ad #define netbsd_elf_probe	ELFNAME2(netbsd,probe)
     97  1.10        ad #define	coredump		ELFNAMEEND(coredump)
     98   1.1      fvdl 
     99  1.10        ad int	elf_load_file(struct lwp *, struct exec_package *, char *,
    100  1.10        ad 	    struct exec_vmcmd_set *, u_long *, struct elf_args *, Elf_Addr *);
    101  1.10        ad void	elf_load_psection(struct exec_vmcmd_set *, struct vnode *,
    102  1.10        ad 	    const Elf_Phdr *, Elf_Addr *, u_long *, int *, int);
    103   1.6  christos 
    104  1.10        ad int	netbsd_elf_signature(struct lwp *, struct exec_package *, Elf_Ehdr *);
    105  1.10        ad int	netbsd_elf_probe(struct lwp *, struct exec_package *, void *, char *,
    106  1.10        ad 	    vaddr_t *);
    107   1.1      fvdl 
    108  1.10        ad /* round up and down to page boundaries. */
    109  1.10        ad #define	ELF_ROUND(a, b)		(((a) + (b) - 1) & ~((b) - 1))
    110  1.10        ad #define	ELF_TRUNC(a, b)		((a) & ~((b) - 1))
    111   1.1      fvdl 
    112  1.10        ad #define MAXPHNUM	50
    113   1.1      fvdl 
    114  1.10        ad #ifdef PAX_ASLR
    115   1.1      fvdl /*
    116  1.10        ad  * We don't move this code in kern_pax.c because it is compiled twice.
    117   1.8  christos  */
    118  1.10        ad static void
    119  1.10        ad pax_aslr_elf(struct lwp *l, struct exec_package *epp, Elf_Ehdr *eh,
    120  1.10        ad     Elf_Phdr *ph)
    121  1.10        ad {
    122  1.10        ad 	size_t pax_align = 0, pax_offset, i;
    123  1.10        ad 	uint32_t r;
    124  1.10        ad 
    125  1.10        ad 	if (!pax_aslr_active(l))
    126  1.10        ad 		return;
    127  1.10        ad 
    128  1.10        ad 	/*
    129  1.10        ad 	 * find align XXX: not all sections might have the same
    130  1.10        ad 	 * alignment
    131  1.10        ad 	 */
    132  1.10        ad 	for (i = 0; i < eh->e_phnum; i++)
    133  1.10        ad 		if (ph[i].p_type == PT_LOAD) {
    134  1.10        ad 			pax_align = ph[i].p_align;
    135  1.10        ad 			break;
    136  1.10        ad 		}
    137  1.10        ad 
    138  1.10        ad 	r = arc4random();
    139   1.8  christos 
    140  1.10        ad 	if (pax_align == 0)
    141  1.10        ad 		pax_align = PGSHIFT;
    142  1.10        ad #ifdef DEBUG_ASLR
    143  1.10        ad 	uprintf("r=0x%x a=0x%x p=0x%x Delta=0x%lx\n", r,
    144  1.10        ad 	    ilog2(pax_align), PGSHIFT, PAX_ASLR_DELTA(r,
    145  1.10        ad 		ilog2(pax_align), PAX_ASLR_DELTA_EXEC_LEN));
    146  1.10        ad #endif
    147  1.10        ad 	pax_offset = ELF_TRUNC(PAX_ASLR_DELTA(r,
    148  1.10        ad 	    ilog2(pax_align), PAX_ASLR_DELTA_EXEC_LEN), pax_align);
    149  1.10        ad 
    150  1.10        ad 	for (i = 0; i < eh->e_phnum; i++)
    151  1.10        ad 		ph[i].p_vaddr += pax_offset;
    152  1.10        ad 	eh->e_entry += pax_offset;
    153  1.10        ad #ifdef DEBUG_ASLR
    154  1.10        ad 	uprintf("pax offset=0x%zx entry=0x%llx\n",
    155  1.10        ad 	    pax_offset, (unsigned long long)eh->e_entry);
    156   1.8  christos #endif
    157  1.10        ad }
    158  1.13  drochner #else
    159  1.13  drochner static void
    160  1.13  drochner elf_placedynexec(Elf_Ehdr *eh, Elf_Phdr *ph)
    161  1.13  drochner {
    162  1.13  drochner 	int i;
    163  1.13  drochner 
    164  1.13  drochner 	for (i = 0; i < eh->e_phnum; i++)
    165  1.13  drochner 		ph[i].p_vaddr += PAGE_SIZE;
    166  1.13  drochner 	eh->e_entry += PAGE_SIZE;
    167  1.13  drochner }
    168  1.10        ad #endif /* PAX_ASLR */
    169   1.8  christos 
    170   1.8  christos /*
    171   1.1      fvdl  * Copy arguments onto the stack in the normal way, but add some
    172   1.1      fvdl  * extra information in case of dynamic binding.
    173   1.1      fvdl  */
    174  1.10        ad int
    175  1.10        ad elf_copyargs(struct lwp *l, struct exec_package *pack,
    176  1.10        ad     struct ps_strings *arginfo, char **stackp, void *argp)
    177   1.1      fvdl {
    178  1.10        ad 	size_t len, vlen;
    179  1.10        ad 	AuxInfo ai[ELF_AUX_ENTRIES], *a, *execname;
    180   1.1      fvdl 	struct elf_args *ap;
    181  1.10        ad 	int error;
    182   1.1      fvdl 
    183  1.10        ad 	if ((error = copyargs(l, pack, arginfo, stackp, argp)) != 0)
    184  1.10        ad 		return error;
    185  1.10        ad 
    186  1.10        ad 	a = ai;
    187  1.10        ad 	execname = NULL;
    188   1.1      fvdl 
    189   1.1      fvdl 	/*
    190   1.1      fvdl 	 * Push extra arguments on the stack needed by dynamically
    191   1.1      fvdl 	 * linked binaries
    192   1.1      fvdl 	 */
    193  1.10        ad 	if ((ap = (struct elf_args *)pack->ep_emul_arg)) {
    194  1.10        ad 		struct vattr *vap = pack->ep_vap;
    195  1.10        ad 
    196  1.10        ad 		a->a_type = AT_PHDR;
    197  1.10        ad 		a->a_v = ap->arg_phaddr;
    198  1.10        ad 		a++;
    199  1.10        ad 
    200  1.10        ad 		a->a_type = AT_PHENT;
    201  1.10        ad 		a->a_v = ap->arg_phentsize;
    202  1.10        ad 		a++;
    203  1.10        ad 
    204  1.10        ad 		a->a_type = AT_PHNUM;
    205  1.10        ad 		a->a_v = ap->arg_phnum;
    206  1.10        ad 		a++;
    207   1.1      fvdl 
    208  1.10        ad 		a->a_type = AT_PAGESZ;
    209  1.10        ad 		a->a_v = PAGE_SIZE;
    210   1.1      fvdl 		a++;
    211   1.1      fvdl 
    212  1.10        ad 		a->a_type = AT_BASE;
    213  1.10        ad 		a->a_v = ap->arg_interp;
    214   1.1      fvdl 		a++;
    215   1.1      fvdl 
    216  1.10        ad 		a->a_type = AT_FLAGS;
    217  1.10        ad 		a->a_v = 0;
    218   1.1      fvdl 		a++;
    219   1.1      fvdl 
    220  1.10        ad 		a->a_type = AT_ENTRY;
    221  1.10        ad 		a->a_v = ap->arg_entry;
    222   1.1      fvdl 		a++;
    223   1.1      fvdl 
    224  1.10        ad 		a->a_type = AT_EUID;
    225  1.10        ad 		if (vap->va_mode & S_ISUID)
    226  1.10        ad 			a->a_v = vap->va_uid;
    227  1.10        ad 		else
    228  1.10        ad 			a->a_v = kauth_cred_geteuid(l->l_cred);
    229   1.1      fvdl 		a++;
    230   1.1      fvdl 
    231  1.10        ad 		a->a_type = AT_RUID;
    232  1.10        ad 		a->a_v = kauth_cred_getuid(l->l_cred);
    233   1.1      fvdl 		a++;
    234   1.1      fvdl 
    235  1.10        ad 		a->a_type = AT_EGID;
    236  1.10        ad 		if (vap->va_mode & S_ISGID)
    237  1.10        ad 			a->a_v = vap->va_gid;
    238  1.10        ad 		else
    239  1.10        ad 			a->a_v = kauth_cred_getegid(l->l_cred);
    240   1.1      fvdl 		a++;
    241   1.1      fvdl 
    242  1.10        ad 		a->a_type = AT_RGID;
    243  1.10        ad 		a->a_v = kauth_cred_getgid(l->l_cred);
    244   1.1      fvdl 		a++;
    245   1.1      fvdl 
    246  1.10        ad 		if (pack->ep_path) {
    247  1.10        ad 			execname = a;
    248  1.10        ad 			a->a_type = AT_SUN_EXECNAME;
    249  1.10        ad 			a++;
    250  1.10        ad 		}
    251  1.10        ad 
    252  1.10        ad 		free(ap, M_TEMP);
    253  1.10        ad 		pack->ep_emul_arg = NULL;
    254   1.1      fvdl 	}
    255  1.10        ad 
    256  1.10        ad 	a->a_type = AT_NULL;
    257  1.10        ad 	a->a_v = 0;
    258  1.10        ad 	a++;
    259  1.10        ad 
    260  1.10        ad 	vlen = (a - ai) * sizeof(AuxInfo);
    261  1.10        ad 
    262  1.10        ad 	if (execname) {
    263  1.10        ad 		char *path = pack->ep_path;
    264  1.10        ad 		execname->a_v = (uintptr_t)(*stackp + vlen);
    265  1.10        ad 		len = strlen(path) + 1;
    266  1.10        ad 		if ((error = copyout(path, (*stackp + vlen), len)) != 0)
    267  1.10        ad 			return error;
    268  1.10        ad 		len = ALIGN(len);
    269  1.10        ad 	} else
    270  1.10        ad 		len = 0;
    271  1.10        ad 
    272  1.10        ad 	if ((error = copyout(ai, *stackp, vlen)) != 0)
    273  1.10        ad 		return error;
    274  1.10        ad 	*stackp += vlen + len;
    275  1.10        ad 
    276  1.10        ad 	return 0;
    277   1.1      fvdl }
    278   1.1      fvdl 
    279   1.1      fvdl /*
    280   1.1      fvdl  * elf_check_header():
    281   1.1      fvdl  *
    282   1.1      fvdl  * Check header for validity; return 0 of ok ENOEXEC if error
    283   1.1      fvdl  */
    284   1.1      fvdl int
    285  1.10        ad elf_check_header(Elf_Ehdr *eh, int type)
    286   1.1      fvdl {
    287   1.3   thorpej 
    288  1.10        ad 	if (memcmp(eh->e_ident, ELFMAG, SELFMAG) != 0 ||
    289  1.10        ad 	    eh->e_ident[EI_CLASS] != ELFCLASS)
    290   1.1      fvdl 		return ENOEXEC;
    291   1.1      fvdl 
    292   1.1      fvdl 	switch (eh->e_machine) {
    293  1.10        ad 
    294  1.10        ad 	ELFDEFNNAME(MACHDEP_ID_CASES)
    295   1.1      fvdl 
    296   1.1      fvdl 	default:
    297   1.1      fvdl 		return ENOEXEC;
    298   1.1      fvdl 	}
    299   1.1      fvdl 
    300  1.10        ad 	if (ELF_EHDR_FLAGS_OK(eh) == 0)
    301  1.10        ad 		return ENOEXEC;
    302  1.10        ad 
    303   1.1      fvdl 	if (eh->e_type != type)
    304   1.1      fvdl 		return ENOEXEC;
    305   1.1      fvdl 
    306  1.10        ad 	if (eh->e_shnum > 32768 || eh->e_phnum > 128)
    307  1.10        ad 		return ENOEXEC;
    308  1.10        ad 
    309   1.1      fvdl 	return 0;
    310   1.1      fvdl }
    311   1.1      fvdl 
    312   1.1      fvdl /*
    313   1.1      fvdl  * elf_load_psection():
    314  1.10        ad  *
    315   1.1      fvdl  * Load a psection at the appropriate address
    316   1.1      fvdl  */
    317  1.10        ad void
    318  1.10        ad elf_load_psection(struct exec_vmcmd_set *vcset, struct vnode *vp,
    319  1.10        ad     const Elf_Phdr *ph, Elf_Addr *addr, u_long *size, int *prot, int flags)
    320   1.1      fvdl {
    321  1.10        ad 	u_long msize, psize, rm, rf;
    322   1.1      fvdl 	long diff, offset;
    323   1.1      fvdl 
    324   1.1      fvdl 	/*
    325  1.10        ad 	 * If the user specified an address, then we load there.
    326  1.10        ad 	 */
    327  1.10        ad 	if (*addr == ELFDEFNNAME(NO_ADDR))
    328  1.10        ad 		*addr = ph->p_vaddr;
    329  1.10        ad 
    330  1.10        ad 	if (ph->p_align > 1) {
    331  1.10        ad 		/*
    332  1.10        ad 		 * Make sure we are virtually aligned as we are supposed to be.
    333  1.10        ad 		 */
    334  1.10        ad 		diff = ph->p_vaddr - ELF_TRUNC(ph->p_vaddr, ph->p_align);
    335  1.10        ad 		KASSERT(*addr - diff == ELF_TRUNC(*addr, ph->p_align));
    336  1.10        ad 		/*
    337  1.10        ad 		 * But make sure to not map any pages before the start of the
    338  1.10        ad 		 * psection by limiting the difference to within a page.
    339  1.10        ad 		 */
    340  1.10        ad 		diff &= PAGE_MASK;
    341  1.10        ad 	} else
    342  1.10        ad 		diff = 0;
    343   1.1      fvdl 
    344  1.10        ad 	*prot |= (ph->p_flags & PF_R) ? VM_PROT_READ : 0;
    345  1.10        ad 	*prot |= (ph->p_flags & PF_W) ? VM_PROT_WRITE : 0;
    346  1.10        ad 	*prot |= (ph->p_flags & PF_X) ? VM_PROT_EXECUTE : 0;
    347   1.1      fvdl 
    348  1.10        ad 	/*
    349  1.10        ad 	 * Adjust everything so it all starts on a page boundary.
    350  1.10        ad 	 */
    351  1.10        ad 	*addr -= diff;
    352   1.1      fvdl 	offset = ph->p_offset - diff;
    353   1.1      fvdl 	*size = ph->p_filesz + diff;
    354   1.1      fvdl 	msize = ph->p_memsz + diff;
    355   1.1      fvdl 
    356  1.10        ad 	if (ph->p_align >= PAGE_SIZE) {
    357  1.10        ad 		if ((ph->p_flags & PF_W) != 0) {
    358  1.10        ad 			/*
    359  1.10        ad 			 * Because the pagedvn pager can't handle zero fill
    360  1.10        ad 			 * of the last data page if it's not page aligned we
    361  1.10        ad 			 * map the last page readvn.
    362  1.10        ad 			 */
    363  1.10        ad 			psize = trunc_page(*size);
    364  1.10        ad 		} else {
    365  1.10        ad 			psize = round_page(*size);
    366  1.10        ad 		}
    367  1.10        ad 	} else {
    368  1.10        ad 		psize = *size;
    369  1.10        ad 	}
    370  1.10        ad 
    371  1.10        ad 	if (psize > 0) {
    372  1.10        ad 		NEW_VMCMD2(vcset, ph->p_align < PAGE_SIZE ?
    373  1.10        ad 		    vmcmd_map_readvn : vmcmd_map_pagedvn, psize, *addr, vp,
    374  1.10        ad 		    offset, *prot, flags);
    375  1.10        ad 		flags &= VMCMD_RELATIVE;
    376  1.10        ad 	}
    377  1.10        ad 	if (psize < *size) {
    378  1.10        ad 		NEW_VMCMD2(vcset, vmcmd_map_readvn, *size - psize,
    379  1.10        ad 		    *addr + psize, vp, offset + psize, *prot, flags);
    380  1.10        ad 	}
    381   1.1      fvdl 
    382   1.1      fvdl 	/*
    383  1.10        ad 	 * Check if we need to extend the size of the segment (does
    384  1.10        ad 	 * bss extend page the next page boundary)?
    385  1.10        ad 	 */
    386   1.1      fvdl 	rm = round_page(*addr + msize);
    387   1.1      fvdl 	rf = round_page(*addr + *size);
    388   1.1      fvdl 
    389   1.1      fvdl 	if (rm != rf) {
    390  1.10        ad 		NEW_VMCMD2(vcset, vmcmd_map_zero, rm - rf, rf, NULLVP,
    391  1.10        ad 		    0, *prot, flags & VMCMD_RELATIVE);
    392   1.1      fvdl 		*size = msize;
    393   1.1      fvdl 	}
    394   1.1      fvdl }
    395   1.1      fvdl 
    396   1.1      fvdl /*
    397   1.1      fvdl  * elf_load_file():
    398   1.1      fvdl  *
    399   1.1      fvdl  * Load a file (interpreter/library) pointed to by path
    400   1.1      fvdl  * [stolen from coff_load_shlib()]. Made slightly generic
    401   1.1      fvdl  * so it might be used externally.
    402   1.1      fvdl  */
    403   1.1      fvdl int
    404  1.10        ad elf_load_file(struct lwp *l, struct exec_package *epp, char *path,
    405  1.10        ad     struct exec_vmcmd_set *vcset, u_long *entryoff, struct elf_args *ap,
    406  1.10        ad     Elf_Addr *last)
    407   1.1      fvdl {
    408   1.1      fvdl 	int error, i;
    409  1.10        ad 	struct vnode *vp;
    410  1.10        ad 	struct vattr attr;
    411  1.10        ad 	Elf_Ehdr eh;
    412  1.10        ad 	Elf_Phdr *ph = NULL;
    413  1.10        ad 	const Elf_Phdr *ph0;
    414  1.10        ad 	const Elf_Phdr *base_ph;
    415  1.10        ad 	const Elf_Phdr *last_ph;
    416   1.1      fvdl 	u_long phsize;
    417  1.10        ad 	Elf_Addr addr = *last;
    418  1.10        ad 	struct proc *p;
    419  1.10        ad 
    420  1.10        ad 	p = l->l_proc;
    421  1.10        ad 
    422  1.10        ad 	/*
    423  1.10        ad 	 * 1. open file
    424  1.10        ad 	 * 2. read filehdr
    425  1.10        ad 	 * 3. map text, data, and bss out of it using VM_*
    426  1.10        ad 	 */
    427  1.10        ad 	vp = epp->ep_interp;
    428  1.10        ad 	if (vp == NULL) {
    429  1.10        ad 		error = emul_find_interp(l, epp, path);
    430  1.10        ad 		if (error != 0)
    431  1.10        ad 			return error;
    432  1.10        ad 		vp = epp->ep_interp;
    433  1.10        ad 	}
    434  1.10        ad 	/* We'll tidy this ourselves - otherwise we have locking issues */
    435  1.10        ad 	epp->ep_interp = NULL;
    436  1.10        ad 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    437   1.1      fvdl 
    438   1.1      fvdl 	/*
    439  1.10        ad 	 * Similarly, if it's not marked as executable, or it's not a regular
    440  1.10        ad 	 * file, we don't allow it to be used.
    441  1.10        ad 	 */
    442  1.10        ad 	if (vp->v_type != VREG) {
    443  1.10        ad 		error = EACCES;
    444  1.10        ad 		goto badunlock;
    445  1.10        ad 	}
    446  1.10        ad 	if ((error = VOP_ACCESS(vp, VEXEC, l->l_cred)) != 0)
    447  1.10        ad 		goto badunlock;
    448  1.10        ad 
    449  1.10        ad 	/* get attributes */
    450  1.10        ad 	if ((error = VOP_GETATTR(vp, &attr, l->l_cred)) != 0)
    451  1.10        ad 		goto badunlock;
    452  1.10        ad 
    453  1.10        ad 	/*
    454  1.10        ad 	 * Check mount point.  Though we're not trying to exec this binary,
    455  1.10        ad 	 * we will be executing code from it, so if the mount point
    456  1.10        ad 	 * disallows execution or set-id-ness, we punt or kill the set-id.
    457  1.10        ad 	 */
    458  1.10        ad 	if (vp->v_mount->mnt_flag & MNT_NOEXEC) {
    459  1.10        ad 		error = EACCES;
    460  1.10        ad 		goto badunlock;
    461   1.1      fvdl 	}
    462  1.10        ad 	if (vp->v_mount->mnt_flag & MNT_NOSUID)
    463  1.10        ad 		epp->ep_vap->va_mode &= ~(S_ISUID | S_ISGID);
    464  1.10        ad 
    465  1.10        ad #ifdef notyet /* XXX cgd 960926 */
    466  1.10        ad 	XXX cgd 960926: (maybe) VOP_OPEN it (and VOP_CLOSE in copyargs?)
    467  1.10        ad #endif
    468  1.10        ad 
    469  1.10        ad 	error = vn_marktext(vp);
    470  1.10        ad 	if (error)
    471  1.10        ad 		goto badunlock;
    472  1.10        ad 
    473  1.10        ad 	VOP_UNLOCK(vp, 0);
    474  1.10        ad 
    475  1.10        ad 	if ((error = exec_read_from(l, vp, 0, &eh, sizeof(eh))) != 0)
    476  1.10        ad 		goto bad;
    477  1.10        ad 
    478  1.10        ad 	if ((error = elf_check_header(&eh, ET_DYN)) != 0)
    479   1.1      fvdl 		goto bad;
    480   1.1      fvdl 
    481  1.10        ad 	if (eh.e_phnum > MAXPHNUM || eh.e_phnum == 0) {
    482  1.10        ad 		error = ENOEXEC;
    483   1.1      fvdl 		goto bad;
    484  1.10        ad 	}
    485   1.1      fvdl 
    486  1.10        ad 	phsize = eh.e_phnum * sizeof(Elf_Phdr);
    487  1.10        ad 	ph = kmem_alloc(phsize, KM_SLEEP);
    488   1.1      fvdl 
    489  1.10        ad 	if ((error = exec_read_from(l, vp, eh.e_phoff, ph, phsize)) != 0)
    490   1.1      fvdl 		goto bad;
    491   1.1      fvdl 
    492  1.10        ad #ifdef ELF_INTERP_NON_RELOCATABLE
    493  1.10        ad 	/*
    494  1.10        ad 	 * Evil hack:  Only MIPS should be non-relocatable, and the
    495  1.10        ad 	 * psections should have a high address (typically 0x5ffe0000).
    496  1.10        ad 	 * If it's now relocatable, it should be linked at 0 and the
    497  1.10        ad 	 * psections should have zeros in the upper part of the address.
    498  1.10        ad 	 * Otherwise, force the load at the linked address.
    499  1.10        ad 	 */
    500  1.10        ad 	if (*last == ELF_LINK_ADDR && (ph->p_vaddr & 0xffff0000) == 0)
    501  1.10        ad 		*last = ELFDEFNNAME(NO_ADDR);
    502  1.10        ad #endif
    503  1.10        ad 
    504  1.10        ad 	/*
    505  1.10        ad 	 * If no position to load the interpreter was set by a probe
    506  1.10        ad 	 * function, pick the same address that a non-fixed mmap(0, ..)
    507  1.10        ad 	 * would (i.e. something safely out of the way).
    508  1.10        ad 	 */
    509  1.10        ad 	if (*last == ELFDEFNNAME(NO_ADDR)) {
    510  1.10        ad 		u_long limit = 0;
    511  1.10        ad 		/*
    512  1.10        ad 		 * Find the start and ending addresses of the psections to
    513  1.10        ad 		 * be loaded.  This will give us the size.
    514  1.10        ad 		 */
    515  1.10        ad 		for (i = 0, ph0 = ph, base_ph = NULL; i < eh.e_phnum;
    516  1.10        ad 		     i++, ph0++) {
    517  1.10        ad 			if (ph0->p_type == PT_LOAD) {
    518  1.10        ad 				u_long psize = ph0->p_vaddr + ph0->p_memsz;
    519  1.10        ad 				if (base_ph == NULL)
    520  1.10        ad 					base_ph = ph0;
    521  1.10        ad 				if (psize > limit)
    522  1.10        ad 					limit = psize;
    523  1.10        ad 			}
    524  1.10        ad 		}
    525  1.10        ad 
    526  1.10        ad 		if (base_ph == NULL) {
    527  1.10        ad 			error = ENOEXEC;
    528  1.10        ad 			goto bad;
    529  1.10        ad 		}
    530  1.10        ad 
    531  1.10        ad 		/*
    532  1.10        ad 		 * Now compute the size and load address.
    533  1.10        ad 		 */
    534  1.10        ad 		addr = (*epp->ep_esch->es_emul->e_vm_default_addr)(p,
    535  1.10        ad 		    epp->ep_daddr,
    536  1.10        ad 		    round_page(limit) - trunc_page(base_ph->p_vaddr));
    537  1.10        ad 	} else
    538  1.10        ad 		addr = *last; /* may be ELF_LINK_ADDR */
    539  1.10        ad 
    540   1.1      fvdl 	/*
    541  1.10        ad 	 * Load all the necessary sections
    542  1.10        ad 	 */
    543  1.10        ad 	for (i = 0, ph0 = ph, base_ph = NULL, last_ph = NULL;
    544  1.10        ad 	     i < eh.e_phnum; i++, ph0++) {
    545  1.10        ad 		switch (ph0->p_type) {
    546  1.10        ad 		case PT_LOAD: {
    547  1.10        ad 			u_long size;
    548  1.10        ad 			int prot = 0;
    549  1.10        ad 			int flags;
    550  1.10        ad 
    551  1.10        ad 			if (base_ph == NULL) {
    552  1.10        ad 				/*
    553  1.10        ad 				 * First encountered psection is always the
    554  1.10        ad 				 * base psection.  Make sure it's aligned
    555  1.10        ad 				 * properly (align down for topdown and align
    556  1.10        ad 				 * upwards for not topdown).
    557  1.10        ad 				 */
    558  1.10        ad 				base_ph = ph0;
    559  1.10        ad 				flags = VMCMD_BASE;
    560  1.10        ad 				if (addr == ELF_LINK_ADDR)
    561  1.10        ad 					addr = ph0->p_vaddr;
    562  1.10        ad 				if (p->p_vmspace->vm_map.flags & VM_MAP_TOPDOWN)
    563  1.10        ad 					addr = ELF_TRUNC(addr, ph0->p_align);
    564  1.10        ad 				else
    565  1.10        ad 					addr = ELF_ROUND(addr, ph0->p_align);
    566  1.10        ad 			} else {
    567  1.10        ad 				u_long limit = round_page(last_ph->p_vaddr
    568  1.10        ad 				    + last_ph->p_memsz);
    569  1.10        ad 				u_long base = trunc_page(ph0->p_vaddr);
    570  1.10        ad 
    571  1.10        ad 				/*
    572  1.10        ad 				 * If there is a gap in between the psections,
    573  1.10        ad 				 * map it as inaccessible so nothing else
    574  1.10        ad 				 * mmap'ed will be placed there.
    575  1.10        ad 				 */
    576  1.10        ad 				if (limit != base) {
    577  1.10        ad 					NEW_VMCMD2(vcset, vmcmd_map_zero,
    578  1.10        ad 					    base - limit,
    579  1.10        ad 					    limit - base_ph->p_vaddr, NULLVP,
    580  1.10        ad 					    0, VM_PROT_NONE, VMCMD_RELATIVE);
    581  1.10        ad 				}
    582   1.1      fvdl 
    583  1.10        ad 				addr = ph0->p_vaddr - base_ph->p_vaddr;
    584  1.10        ad 				flags = VMCMD_RELATIVE;
    585  1.10        ad 			}
    586  1.10        ad 			last_ph = ph0;
    587  1.10        ad 			elf_load_psection(vcset, vp, &ph[i], &addr,
    588  1.10        ad 			    &size, &prot, flags);
    589  1.10        ad 			/*
    590  1.10        ad 			 * If entry is within this psection then this
    591  1.10        ad 			 * must contain the .text section.  *entryoff is
    592  1.10        ad 			 * relative to the base psection.
    593  1.10        ad 			 */
    594  1.10        ad 			if (eh.e_entry >= ph0->p_vaddr &&
    595  1.10        ad 			    eh.e_entry < (ph0->p_vaddr + size)) {
    596  1.10        ad 				*entryoff = eh.e_entry - base_ph->p_vaddr;
    597   1.1      fvdl 			}
    598   1.1      fvdl 			addr += size;
    599   1.1      fvdl 			break;
    600  1.10        ad 		}
    601   1.1      fvdl 
    602  1.10        ad 		case PT_DYNAMIC:
    603  1.10        ad 		case PT_PHDR:
    604  1.10        ad 			break;
    605  1.10        ad 
    606  1.10        ad 		case PT_NOTE:
    607   1.1      fvdl 			break;
    608   1.1      fvdl 
    609   1.1      fvdl 		default:
    610   1.1      fvdl 			break;
    611   1.1      fvdl 		}
    612   1.1      fvdl 	}
    613   1.1      fvdl 
    614  1.10        ad 	kmem_free(ph, phsize);
    615  1.10        ad 	/*
    616  1.10        ad 	 * This value is ignored if TOPDOWN.
    617  1.10        ad 	 */
    618  1.10        ad 	*last = addr;
    619  1.10        ad 	vrele(vp);
    620  1.10        ad 	return 0;
    621  1.10        ad 
    622  1.10        ad badunlock:
    623  1.10        ad 	VOP_UNLOCK(vp, 0);
    624  1.10        ad 
    625   1.1      fvdl bad:
    626   1.1      fvdl 	if (ph != NULL)
    627  1.10        ad 		kmem_free(ph, phsize);
    628  1.10        ad #ifdef notyet /* XXX cgd 960926 */
    629  1.10        ad 	(maybe) VOP_CLOSE it
    630  1.10        ad #endif
    631  1.10        ad 	vrele(vp);
    632   1.1      fvdl 	return error;
    633   1.1      fvdl }
    634   1.1      fvdl 
    635   1.1      fvdl /*
    636   1.1      fvdl  * exec_elf_makecmds(): Prepare an Elf binary's exec package
    637   1.1      fvdl  *
    638   1.1      fvdl  * First, set of the various offsets/lengths in the exec package.
    639   1.1      fvdl  *
    640   1.1      fvdl  * Then, mark the text image busy (so it can be demand paged) or error
    641   1.1      fvdl  * out if this is not possible.  Finally, set up vmcmds for the
    642   1.1      fvdl  * text, data, bss, and stack segments.
    643   1.1      fvdl  */
    644   1.1      fvdl int
    645  1.10        ad exec_elf_makecmds(struct lwp *l, struct exec_package *epp)
    646  1.10        ad {
    647  1.10        ad 	Elf_Ehdr *eh = epp->ep_hdr;
    648  1.10        ad 	Elf_Phdr *ph, *pp;
    649  1.10        ad 	Elf_Addr phdr = 0, pos = 0;
    650  1.10        ad 	int error, i, nload;
    651  1.10        ad 	char *interp = NULL;
    652  1.10        ad 	u_long phsize;
    653   1.1      fvdl 	struct proc *p;
    654  1.10        ad 	bool is_dyn;
    655   1.1      fvdl 
    656  1.10        ad 	if (epp->ep_hdrvalid < sizeof(Elf_Ehdr))
    657   1.1      fvdl 		return ENOEXEC;
    658   1.1      fvdl 
    659  1.10        ad 	is_dyn = elf_check_header(eh, ET_DYN) == 0;
    660  1.10        ad 	/*
    661  1.10        ad 	 * XXX allow for executing shared objects. It seems silly
    662  1.10        ad 	 * but other ELF-based systems allow it as well.
    663  1.10        ad 	 */
    664  1.10        ad 	if (elf_check_header(eh, ET_EXEC) != 0 && !is_dyn)
    665   1.1      fvdl 		return ENOEXEC;
    666   1.1      fvdl 
    667  1.10        ad 	if (eh->e_phnum > MAXPHNUM || eh->e_phnum == 0)
    668  1.10        ad 		return ENOEXEC;
    669  1.10        ad 
    670  1.10        ad 	error = vn_marktext(epp->ep_vp);
    671  1.10        ad 	if (error)
    672  1.10        ad 		return error;
    673  1.10        ad 
    674   1.1      fvdl 	/*
    675  1.10        ad 	 * Allocate space to hold all the program headers, and read them
    676  1.10        ad 	 * from the file
    677  1.10        ad 	 */
    678  1.10        ad 	p = l->l_proc;
    679  1.10        ad 	phsize = eh->e_phnum * sizeof(Elf_Phdr);
    680  1.10        ad 	ph = kmem_alloc(phsize, KM_SLEEP);
    681   1.1      fvdl 
    682  1.10        ad 	if ((error = exec_read_from(l, epp->ep_vp, eh->e_phoff, ph, phsize)) !=
    683  1.10        ad 	    0)
    684   1.1      fvdl 		goto bad;
    685   1.1      fvdl 
    686  1.10        ad 	epp->ep_taddr = epp->ep_tsize = ELFDEFNNAME(NO_ADDR);
    687  1.10        ad 	epp->ep_daddr = epp->ep_dsize = ELFDEFNNAME(NO_ADDR);
    688   1.1      fvdl 
    689   1.1      fvdl 	for (i = 0; i < eh->e_phnum; i++) {
    690   1.1      fvdl 		pp = &ph[i];
    691  1.10        ad 		if (pp->p_type == PT_INTERP) {
    692  1.10        ad 			if (pp->p_filesz >= MAXPATHLEN) {
    693  1.10        ad 				error = ENOEXEC;
    694   1.1      fvdl 				goto bad;
    695  1.10        ad 			}
    696  1.10        ad 			interp = PNBUF_GET();
    697  1.10        ad 			interp[0] = '\0';
    698  1.10        ad 			if ((error = exec_read_from(l, epp->ep_vp,
    699  1.10        ad 			    pp->p_offset, interp, pp->p_filesz)) != 0)
    700   1.1      fvdl 				goto bad;
    701   1.1      fvdl 			break;
    702   1.1      fvdl 		}
    703   1.1      fvdl 	}
    704   1.1      fvdl 
    705   1.1      fvdl 	/*
    706   1.1      fvdl 	 * On the same architecture, we may be emulating different systems.
    707  1.10        ad 	 * See which one will accept this executable.
    708   1.1      fvdl 	 *
    709   1.1      fvdl 	 * Probe functions would normally see if the interpreter (if any)
    710   1.1      fvdl 	 * exists. Emulation packages may possibly replace the interpreter in
    711  1.10        ad 	 * interp[] with a changed path (/emul/xxx/<path>).
    712   1.1      fvdl 	 */
    713  1.10        ad 	pos = ELFDEFNNAME(NO_ADDR);
    714  1.10        ad 	if (epp->ep_esch->u.elf_probe_func) {
    715  1.10        ad 		vaddr_t startp = (vaddr_t)pos;
    716   1.1      fvdl 
    717  1.10        ad 		error = (*epp->ep_esch->u.elf_probe_func)(l, epp, eh, interp,
    718  1.10        ad 							  &startp);
    719   1.1      fvdl 		if (error)
    720   1.1      fvdl 			goto bad;
    721  1.10        ad 		pos = (Elf_Addr)startp;
    722   1.1      fvdl 	}
    723   1.1      fvdl 
    724  1.10        ad #if defined(PAX_MPROTECT) || defined(PAX_SEGVGUARD) || defined(PAX_ASLR)
    725  1.10        ad 	p->p_pax = epp->ep_pax_flags;
    726  1.10        ad #endif /* PAX_MPROTECT || PAX_SEGVGUARD || PAX_ASLR */
    727  1.10        ad 
    728  1.13  drochner 	if (is_dyn)
    729  1.10        ad #ifdef PAX_ASLR
    730  1.10        ad 		pax_aslr_elf(l, epp, eh, ph);
    731  1.13  drochner #else
    732  1.13  drochner 		elf_placedynexec(eh, ph);
    733  1.10        ad #endif /* PAX_ASLR */
    734  1.10        ad 
    735   1.1      fvdl 	/*
    736  1.10        ad 	 * Load all the necessary sections
    737  1.10        ad 	 */
    738   1.4      fvdl 	for (i = nload = 0; i < eh->e_phnum; i++) {
    739  1.10        ad 		Elf_Addr  addr = ELFDEFNNAME(NO_ADDR);
    740  1.10        ad 		u_long size = 0;
    741   1.1      fvdl 		int prot = 0;
    742   1.1      fvdl 
    743   1.1      fvdl 		pp = &ph[i];
    744   1.1      fvdl 
    745   1.1      fvdl 		switch (ph[i].p_type) {
    746  1.10        ad 		case PT_LOAD:
    747   1.4      fvdl 			/*
    748   1.4      fvdl 			 * XXX
    749   1.4      fvdl 			 * Can handle only 2 sections: text and data
    750   1.4      fvdl 			 */
    751  1.10        ad 			if (nload++ == 2) {
    752  1.10        ad 				error = ENOEXEC;
    753   1.4      fvdl 				goto bad;
    754  1.10        ad 			}
    755   1.1      fvdl 			elf_load_psection(&epp->ep_vmcmds, epp->ep_vp,
    756  1.10        ad 			    &ph[i], &addr, &size, &prot, VMCMD_FIXED);
    757  1.10        ad 
    758   1.4      fvdl 			/*
    759   1.4      fvdl 			 * Decide whether it's text or data by looking
    760   1.4      fvdl 			 * at the entry point.
    761   1.4      fvdl 			 */
    762  1.10        ad 			if (eh->e_entry >= addr &&
    763  1.10        ad 			    eh->e_entry < (addr + size)) {
    764   1.4      fvdl 				epp->ep_taddr = addr;
    765   1.4      fvdl 				epp->ep_tsize = size;
    766  1.10        ad 				if (epp->ep_daddr == ELFDEFNNAME(NO_ADDR)) {
    767  1.10        ad 					epp->ep_daddr = addr;
    768  1.10        ad 					epp->ep_dsize = size;
    769  1.10        ad 				}
    770   1.4      fvdl 			} else {
    771   1.4      fvdl 				epp->ep_daddr = addr;
    772   1.4      fvdl 				epp->ep_dsize = size;
    773   1.4      fvdl 			}
    774   1.1      fvdl 			break;
    775   1.1      fvdl 
    776  1.10        ad 		case PT_SHLIB:
    777  1.10        ad 			/* SCO has these sections. */
    778  1.10        ad 		case PT_INTERP:
    779  1.10        ad 			/* Already did this one. */
    780  1.10        ad 		case PT_DYNAMIC:
    781  1.10        ad 			break;
    782  1.10        ad 		case PT_NOTE:
    783   1.1      fvdl 			break;
    784  1.10        ad 		case PT_PHDR:
    785   1.4      fvdl 			/* Note address of program headers (in text segment) */
    786   1.4      fvdl 			phdr = pp->p_vaddr;
    787   1.7  christos 			break;
    788   1.4      fvdl 
    789   1.1      fvdl 		default:
    790   1.1      fvdl 			/*
    791  1.10        ad 			 * Not fatal; we don't need to understand everything.
    792   1.1      fvdl 			 */
    793   1.1      fvdl 			break;
    794   1.1      fvdl 		}
    795   1.1      fvdl 	}
    796   1.5      fvdl 
    797   1.5      fvdl 	/*
    798  1.10        ad 	 * Check if we found a dynamically linked binary and arrange to load
    799  1.10        ad 	 * its interpreter
    800   1.5      fvdl 	 */
    801  1.10        ad 	if (interp) {
    802   1.1      fvdl 		struct elf_args *ap;
    803  1.10        ad 		int j = epp->ep_vmcmds.evs_used;
    804  1.10        ad 		u_long interp_offset;
    805   1.1      fvdl 
    806  1.11    cegger 		ap = (struct elf_args *)malloc(sizeof(struct elf_args),
    807  1.10        ad 		    M_TEMP, M_WAITOK);
    808  1.10        ad 		if ((error = elf_load_file(l, epp, interp,
    809  1.10        ad 		    &epp->ep_vmcmds, &interp_offset, ap, &pos)) != 0) {
    810  1.11    cegger 			free(ap, M_TEMP);
    811   1.1      fvdl 			goto bad;
    812   1.1      fvdl 		}
    813  1.10        ad 		ap->arg_interp = epp->ep_vmcmds.evs_cmds[j].ev_addr;
    814  1.10        ad 		epp->ep_entry = ap->arg_interp + interp_offset;
    815   1.4      fvdl 		ap->arg_phaddr = phdr;
    816   1.1      fvdl 
    817   1.1      fvdl 		ap->arg_phentsize = eh->e_phentsize;
    818   1.1      fvdl 		ap->arg_phnum = eh->e_phnum;
    819   1.1      fvdl 		ap->arg_entry = eh->e_entry;
    820   1.1      fvdl 
    821   1.1      fvdl 		epp->ep_emul_arg = ap;
    822  1.10        ad 
    823  1.10        ad 		PNBUF_PUT(interp);
    824   1.1      fvdl 	} else
    825   1.1      fvdl 		epp->ep_entry = eh->e_entry;
    826   1.1      fvdl 
    827   1.8  christos #ifdef ELF_MAP_PAGE_ZERO
    828   1.8  christos 	/* Dell SVR4 maps page zero, yeuch! */
    829  1.10        ad 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, PAGE_SIZE, 0,
    830  1.10        ad 	    epp->ep_vp, 0, VM_PROT_READ);
    831   1.8  christos #endif
    832  1.10        ad 	kmem_free(ph, phsize);
    833  1.10        ad 	return (*epp->ep_esch->es_setup_stack)(l, epp);
    834   1.1      fvdl 
    835   1.1      fvdl bad:
    836  1.10        ad 	if (interp)
    837  1.10        ad 		PNBUF_PUT(interp);
    838  1.10        ad 	kmem_free(ph, phsize);
    839   1.1      fvdl 	kill_vmcmds(&epp->ep_vmcmds);
    840  1.10        ad 	return error;
    841  1.10        ad }
    842  1.10        ad 
    843  1.10        ad int
    844  1.10        ad netbsd_elf_signature(struct lwp *l, struct exec_package *epp,
    845  1.10        ad     Elf_Ehdr *eh)
    846  1.10        ad {
    847  1.10        ad 	size_t i;
    848  1.10        ad 	Elf_Phdr *ph;
    849  1.10        ad 	size_t phsize;
    850  1.10        ad 	int error;
    851  1.10        ad 	int isnetbsd = 0;
    852  1.10        ad 	char *ndata;
    853  1.10        ad 
    854  1.10        ad 	epp->ep_pax_flags = 0;
    855  1.10        ad 	if (eh->e_phnum > MAXPHNUM || eh->e_phnum == 0)
    856  1.10        ad 		return ENOEXEC;
    857  1.10        ad 
    858  1.10        ad 	phsize = eh->e_phnum * sizeof(Elf_Phdr);
    859  1.10        ad 	ph = kmem_alloc(phsize, KM_SLEEP);
    860  1.10        ad 	error = exec_read_from(l, epp->ep_vp, eh->e_phoff, ph, phsize);
    861  1.10        ad 	if (error)
    862  1.10        ad 		goto out;
    863  1.10        ad 
    864  1.10        ad 	for (i = 0; i < eh->e_phnum; i++) {
    865  1.10        ad 		Elf_Phdr *ephp = &ph[i];
    866  1.10        ad 		Elf_Nhdr *np;
    867  1.10        ad 
    868  1.10        ad 		if (ephp->p_type != PT_NOTE ||
    869  1.10        ad 		    ephp->p_filesz > 1024 ||
    870  1.10        ad 		    ephp->p_filesz < sizeof(Elf_Nhdr) + ELF_NOTE_NETBSD_NAMESZ)
    871  1.10        ad 			continue;
    872  1.10        ad 
    873  1.10        ad 		np = kmem_alloc(ephp->p_filesz, KM_SLEEP);
    874  1.10        ad 		error = exec_read_from(l, epp->ep_vp, ephp->p_offset, np,
    875  1.10        ad 		    ephp->p_filesz);
    876  1.10        ad 		if (error)
    877  1.10        ad 			goto next;
    878  1.10        ad 
    879  1.10        ad 		ndata = (char *)(np + 1);
    880  1.10        ad 		switch (np->n_type) {
    881  1.10        ad 		case ELF_NOTE_TYPE_NETBSD_TAG:
    882  1.10        ad 			if (np->n_namesz != ELF_NOTE_NETBSD_NAMESZ ||
    883  1.10        ad 			    np->n_descsz != ELF_NOTE_NETBSD_DESCSZ ||
    884  1.10        ad 			    memcmp(ndata, ELF_NOTE_NETBSD_NAME,
    885  1.10        ad 			    ELF_NOTE_NETBSD_NAMESZ))
    886  1.10        ad 				goto next;
    887  1.10        ad 			isnetbsd = 1;
    888  1.10        ad 			break;
    889  1.10        ad 
    890  1.10        ad 		case ELF_NOTE_TYPE_PAX_TAG:
    891  1.10        ad 			if (np->n_namesz != ELF_NOTE_PAX_NAMESZ ||
    892  1.10        ad 			    np->n_descsz != ELF_NOTE_PAX_DESCSZ ||
    893  1.10        ad 			    memcmp(ndata, ELF_NOTE_PAX_NAME,
    894  1.10        ad 			    ELF_NOTE_PAX_NAMESZ))
    895  1.10        ad 				goto next;
    896  1.10        ad 			(void)memcpy(&epp->ep_pax_flags,
    897  1.10        ad 			    ndata + ELF_NOTE_PAX_NAMESZ,
    898  1.10        ad 			    sizeof(epp->ep_pax_flags));
    899  1.10        ad 			break;
    900  1.10        ad 
    901  1.10        ad 		default:
    902  1.10        ad 			break;
    903  1.10        ad 		}
    904  1.10        ad 
    905  1.10        ad next:
    906  1.10        ad 		kmem_free(np, ephp->p_filesz);
    907  1.10        ad 		continue;
    908  1.10        ad 	}
    909  1.10        ad 
    910  1.10        ad 	error = isnetbsd ? 0 : ENOEXEC;
    911  1.10        ad out:
    912  1.10        ad 	kmem_free(ph, phsize);
    913  1.10        ad 	return error;
    914  1.10        ad }
    915  1.10        ad 
    916  1.10        ad int
    917  1.10        ad netbsd_elf_probe(struct lwp *l, struct exec_package *epp, void *eh, char *itp,
    918  1.10        ad     vaddr_t *pos)
    919  1.10        ad {
    920  1.10        ad 	int error;
    921  1.10        ad 
    922  1.10        ad 	if ((error = netbsd_elf_signature(l, epp, eh)) != 0)
    923  1.10        ad 		return error;
    924  1.12      matt #ifdef ELF_MD_PROBE_FUNC
    925  1.12      matt 	if ((error = ELF_MD_PROBE_FUNC(l, epp, eh, itp, pos)) != 0)
    926  1.12      matt 		return error;
    927  1.12      matt #elif defined(ELF_INTERP_NON_RELOCATABLE)
    928  1.10        ad 	*pos = ELF_LINK_ADDR;
    929  1.10        ad #endif
    930  1.10        ad 	return 0;
    931   1.1      fvdl }
    932