Home | History | Annotate | Line # | Download | only in common
linux_exec_aout.c revision 1.40
      1  1.40       mrg /*	$NetBSD: linux_exec_aout.c,v 1.40 2000/06/29 02:40:39 mrg Exp $	*/
      2  1.29  christos 
      3  1.29  christos /*-
      4  1.33      fvdl  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
      5  1.29  christos  * All rights reserved.
      6  1.29  christos  *
      7  1.29  christos  * This code is derived from software contributed to The NetBSD Foundation
      8  1.33      fvdl  * by Christos Zoulas, Frank van der Linden and Eric Haszlakiewicz.
      9  1.29  christos  *
     10  1.29  christos  * Redistribution and use in source and binary forms, with or without
     11  1.29  christos  * modification, are permitted provided that the following conditions
     12  1.29  christos  * are met:
     13  1.29  christos  * 1. Redistributions of source code must retain the above copyright
     14  1.29  christos  *    notice, this list of conditions and the following disclaimer.
     15  1.29  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.29  christos  *    notice, this list of conditions and the following disclaimer in the
     17  1.29  christos  *    documentation and/or other materials provided with the distribution.
     18  1.29  christos  * 3. All advertising materials mentioning features or use of this software
     19  1.29  christos  *    must display the following acknowledgement:
     20  1.31       erh  *	This product includes software developed by the NetBSD
     21  1.31       erh  *	Foundation, Inc. and its contributors.
     22  1.29  christos  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.29  christos  *    contributors may be used to endorse or promote products derived
     24  1.29  christos  *    from this software without specific prior written permission.
     25  1.29  christos  *
     26  1.29  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.29  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.29  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.29  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.29  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.29  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.29  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.29  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.29  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.29  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.29  christos  * POSSIBILITY OF SUCH DAMAGE.
     37  1.29  christos  */
     38   1.1      fvdl 
     39   1.1      fvdl /*
     40   1.7      fvdl  * based on exec_aout.c, sunos_exec.c and svr4_exec.c
     41   1.1      fvdl  */
     42   1.1      fvdl 
     43   1.1      fvdl #include <sys/param.h>
     44   1.1      fvdl #include <sys/systm.h>
     45   1.1      fvdl #include <sys/kernel.h>
     46   1.1      fvdl #include <sys/proc.h>
     47   1.1      fvdl #include <sys/malloc.h>
     48   1.1      fvdl #include <sys/namei.h>
     49   1.1      fvdl #include <sys/vnode.h>
     50  1.13  christos #include <sys/mount.h>
     51  1.25  christos #include <sys/exec.h>
     52   1.8      fvdl #include <sys/exec_elf.h>
     53   1.1      fvdl 
     54   1.1      fvdl #include <sys/mman.h>
     55  1.13  christos #include <sys/syscallargs.h>
     56   1.1      fvdl 
     57  1.32  christos #include <machine/cpu.h>
     58  1.32  christos #include <machine/reg.h>
     59  1.32  christos 
     60  1.32  christos #include <compat/linux/common/linux_types.h>
     61  1.32  christos #include <compat/linux/common/linux_signal.h>
     62  1.32  christos #include <compat/linux/common/linux_util.h>
     63  1.32  christos #include <compat/linux/common/linux_exec.h>
     64  1.32  christos #include <compat/linux/common/linux_machdep.h>
     65  1.36     veego #include <compat/linux/common/linux_errno.h>
     66  1.32  christos 
     67  1.32  christos #include <compat/linux/linux_syscallargs.h>
     68   1.4  christos #include <compat/linux/linux_syscall.h>
     69  1.31       erh 
     70   1.1      fvdl 
     71   1.6      fvdl static void *linux_aout_copyargs __P((struct exec_package *,
     72  1.14  christos     struct ps_strings *, void *, void *));
     73   1.4  christos 
     74   1.8      fvdl #define	LINUX_AOUT_AUX_ARGSIZ	2
     75   1.4  christos 
     76  1.12   mycroft extern char linux_sigcode[], linux_esigcode[];
     77   1.4  christos extern struct sysent linux_sysent[];
     78   1.4  christos extern char *linux_syscallnames[];
     79  1.13  christos 
     80  1.13  christos int exec_linux_aout_prep_zmagic __P((struct proc *, struct exec_package *));
     81  1.13  christos int exec_linux_aout_prep_nmagic __P((struct proc *, struct exec_package *));
     82  1.13  christos int exec_linux_aout_prep_omagic __P((struct proc *, struct exec_package *));
     83  1.13  christos int exec_linux_aout_prep_qmagic __P((struct proc *, struct exec_package *));
     84   1.4  christos 
     85   1.6      fvdl struct emul emul_linux_aout = {
     86   1.4  christos 	"linux",
     87  1.35       erh 	native_to_linux_errno,
     88   1.4  christos 	linux_sendsig,
     89   1.4  christos 	LINUX_SYS_syscall,
     90   1.4  christos 	LINUX_SYS_MAXSYSCALL,
     91   1.4  christos 	linux_sysent,
     92   1.4  christos 	linux_syscallnames,
     93   1.6      fvdl 	LINUX_AOUT_AUX_ARGSIZ,
     94   1.6      fvdl 	linux_aout_copyargs,
     95  1.26   mycroft 	linux_setregs,
     96   1.6      fvdl 	linux_sigcode,
     97   1.6      fvdl 	linux_esigcode,
     98   1.6      fvdl };
     99   1.6      fvdl 
    100   1.4  christos static void *
    101   1.6      fvdl linux_aout_copyargs(pack, arginfo, stack, argp)
    102   1.4  christos 	struct exec_package *pack;
    103   1.4  christos 	struct ps_strings *arginfo;
    104   1.4  christos 	void *stack;
    105   1.4  christos 	void *argp;
    106   1.4  christos {
    107   1.4  christos 	char **cpp = stack;
    108   1.4  christos 	char **stk = stack;
    109   1.4  christos 	char *dp, *sp;
    110   1.4  christos 	size_t len;
    111   1.4  christos 	void *nullp = NULL;
    112   1.4  christos 	int argc = arginfo->ps_nargvstr;
    113   1.4  christos 	int envc = arginfo->ps_nenvstr;
    114   1.4  christos 
    115   1.4  christos 	if (copyout(&argc, cpp++, sizeof(argc)))
    116   1.4  christos 		return NULL;
    117   1.4  christos 
    118   1.4  christos 	/* leave room for envp and argv */
    119   1.4  christos 	cpp += 2;
    120   1.4  christos 	if (copyout(&cpp, &stk[1], sizeof (cpp)))
    121   1.4  christos 		return NULL;
    122   1.4  christos 
    123   1.4  christos 	dp = (char *) (cpp + argc + envc + 2);
    124   1.4  christos 	sp = argp;
    125   1.4  christos 
    126   1.4  christos 	/* XXX don't copy them out, remap them! */
    127   1.5   mycroft 	arginfo->ps_argvstr = cpp; /* remember location of argv for later */
    128   1.4  christos 
    129   1.4  christos 	for (; --argc >= 0; sp += len, dp += len)
    130   1.4  christos 		if (copyout(&dp, cpp++, sizeof(dp)) ||
    131   1.4  christos 		    copyoutstr(sp, dp, ARG_MAX, &len))
    132   1.4  christos 			return NULL;
    133   1.4  christos 
    134   1.4  christos 	if (copyout(&nullp, cpp++, sizeof(nullp)))
    135   1.4  christos 		return NULL;
    136   1.4  christos 
    137   1.4  christos 	if (copyout(&cpp, &stk[2], sizeof (cpp)))
    138   1.4  christos 		return NULL;
    139   1.4  christos 
    140   1.5   mycroft 	arginfo->ps_envstr = cpp; /* remember location of envp for later */
    141   1.4  christos 
    142   1.4  christos 	for (; --envc >= 0; sp += len, dp += len)
    143   1.4  christos 		if (copyout(&dp, cpp++, sizeof(dp)) ||
    144   1.4  christos 		    copyoutstr(sp, dp, ARG_MAX, &len))
    145   1.4  christos 			return NULL;
    146   1.4  christos 
    147   1.4  christos 	if (copyout(&nullp, cpp++, sizeof(nullp)))
    148   1.4  christos 		return NULL;
    149   1.4  christos 
    150   1.4  christos 	return cpp;
    151   1.4  christos }
    152   1.4  christos 
    153   1.1      fvdl int
    154   1.1      fvdl exec_linux_aout_makecmds(p, epp)
    155   1.1      fvdl 	struct proc *p;
    156   1.1      fvdl 	struct exec_package *epp;
    157   1.1      fvdl {
    158   1.1      fvdl 	struct exec *linux_ep = epp->ep_hdr;
    159   1.1      fvdl 	int machtype, magic;
    160   1.1      fvdl 	int error = ENOEXEC;
    161   1.1      fvdl 
    162   1.1      fvdl 	magic = LINUX_N_MAGIC(linux_ep);
    163   1.1      fvdl 	machtype = LINUX_N_MACHTYPE(linux_ep);
    164   1.1      fvdl 
    165   1.1      fvdl 
    166   1.1      fvdl 	if (machtype != LINUX_MID_MACHINE)
    167   1.1      fvdl 		return (ENOEXEC);
    168   1.1      fvdl 
    169   1.1      fvdl 	switch (magic) {
    170   1.1      fvdl 	case QMAGIC:
    171   1.1      fvdl 		error = exec_linux_aout_prep_qmagic(p, epp);
    172   1.1      fvdl 		break;
    173   1.1      fvdl 	case ZMAGIC:
    174   1.1      fvdl 		error = exec_linux_aout_prep_zmagic(p, epp);
    175   1.1      fvdl 		break;
    176   1.1      fvdl 	case NMAGIC:
    177   1.1      fvdl 		error = exec_linux_aout_prep_nmagic(p, epp);
    178   1.1      fvdl 		break;
    179   1.1      fvdl 	case OMAGIC:
    180   1.1      fvdl 		error = exec_linux_aout_prep_omagic(p, epp);
    181   1.1      fvdl 		break;
    182   1.1      fvdl 	}
    183   1.4  christos 	if (error == 0)
    184   1.6      fvdl 		epp->ep_emul = &emul_linux_aout;
    185   1.1      fvdl 	return error;
    186   1.1      fvdl }
    187   1.1      fvdl 
    188   1.1      fvdl /*
    189   1.1      fvdl  * Since text starts at 0x400 in Linux ZMAGIC executables, and 0x400
    190   1.1      fvdl  * is very likely not page aligned on most architectures, it is treated
    191   1.1      fvdl  * as an NMAGIC here. XXX
    192   1.1      fvdl  */
    193   1.1      fvdl 
    194   1.1      fvdl int
    195   1.1      fvdl exec_linux_aout_prep_zmagic(p, epp)
    196   1.1      fvdl 	struct proc *p;
    197   1.1      fvdl 	struct exec_package *epp;
    198   1.1      fvdl {
    199   1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    200   1.1      fvdl 
    201   1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, ZMAGIC);
    202   1.1      fvdl 	epp->ep_tsize = execp->a_text;
    203   1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, ZMAGIC);
    204   1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    205   1.1      fvdl 	epp->ep_entry = execp->a_entry;
    206   1.1      fvdl 
    207   1.1      fvdl 	/* set up command for text segment */
    208   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_text,
    209   1.1      fvdl 	    epp->ep_taddr, epp->ep_vp, LINUX_N_TXTOFF(*execp, ZMAGIC),
    210   1.1      fvdl 	    VM_PROT_READ|VM_PROT_EXECUTE);
    211   1.1      fvdl 
    212   1.1      fvdl 	/* set up command for data segment */
    213   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_data,
    214   1.1      fvdl 	    epp->ep_daddr, epp->ep_vp, LINUX_N_DATOFF(*execp, ZMAGIC),
    215   1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    216   1.1      fvdl 
    217   1.1      fvdl 	/* set up command for bss segment */
    218   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, execp->a_bss,
    219   1.1      fvdl 	    epp->ep_daddr + execp->a_data, NULLVP, 0,
    220   1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    221   1.1      fvdl 
    222   1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    223   1.1      fvdl }
    224   1.1      fvdl 
    225   1.1      fvdl /*
    226   1.1      fvdl  * exec_aout_prep_nmagic(): Prepare Linux NMAGIC package.
    227   1.1      fvdl  * Not different from the normal stuff.
    228   1.1      fvdl  */
    229   1.1      fvdl 
    230   1.1      fvdl int
    231   1.1      fvdl exec_linux_aout_prep_nmagic(p, epp)
    232   1.1      fvdl 	struct proc *p;
    233   1.1      fvdl 	struct exec_package *epp;
    234   1.1      fvdl {
    235   1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    236   1.1      fvdl 	long bsize, baddr;
    237   1.1      fvdl 
    238   1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, NMAGIC);
    239   1.1      fvdl 	epp->ep_tsize = execp->a_text;
    240   1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, NMAGIC);
    241   1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    242   1.1      fvdl 	epp->ep_entry = execp->a_entry;
    243   1.1      fvdl 
    244   1.1      fvdl 	/* set up command for text segment */
    245   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_text,
    246   1.1      fvdl 	    epp->ep_taddr, epp->ep_vp, LINUX_N_TXTOFF(*execp, NMAGIC),
    247   1.1      fvdl 	    VM_PROT_READ|VM_PROT_EXECUTE);
    248   1.1      fvdl 
    249   1.1      fvdl 	/* set up command for data segment */
    250   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_data,
    251   1.1      fvdl 	    epp->ep_daddr, epp->ep_vp, LINUX_N_DATOFF(*execp, NMAGIC),
    252   1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    253   1.1      fvdl 
    254   1.1      fvdl 	/* set up command for bss segment */
    255   1.1      fvdl 	baddr = roundup(epp->ep_daddr + execp->a_data, NBPG);
    256   1.1      fvdl 	bsize = epp->ep_daddr + epp->ep_dsize - baddr;
    257   1.1      fvdl 	if (bsize > 0)
    258   1.1      fvdl 		NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, bsize, baddr,
    259   1.1      fvdl 		    NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    260   1.1      fvdl 
    261   1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    262   1.1      fvdl }
    263   1.1      fvdl 
    264   1.1      fvdl /*
    265   1.1      fvdl  * exec_aout_prep_omagic(): Prepare Linux OMAGIC package.
    266   1.1      fvdl  * Business as usual.
    267   1.1      fvdl  */
    268   1.1      fvdl 
    269   1.1      fvdl int
    270   1.1      fvdl exec_linux_aout_prep_omagic(p, epp)
    271   1.1      fvdl 	struct proc *p;
    272   1.1      fvdl 	struct exec_package *epp;
    273   1.1      fvdl {
    274   1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    275   1.1      fvdl 	long dsize, bsize, baddr;
    276   1.1      fvdl 
    277   1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, OMAGIC);
    278   1.1      fvdl 	epp->ep_tsize = execp->a_text;
    279   1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, OMAGIC);
    280   1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    281   1.1      fvdl 	epp->ep_entry = execp->a_entry;
    282   1.1      fvdl 
    283   1.1      fvdl 	/* set up command for text and data segments */
    284   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn,
    285   1.1      fvdl 	    execp->a_text + execp->a_data, epp->ep_taddr, epp->ep_vp,
    286   1.1      fvdl 	    LINUX_N_TXTOFF(*execp, OMAGIC), VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    287   1.1      fvdl 
    288   1.1      fvdl 	/* set up command for bss segment */
    289   1.1      fvdl 	baddr = roundup(epp->ep_daddr + execp->a_data, NBPG);
    290   1.1      fvdl 	bsize = epp->ep_daddr + epp->ep_dsize - baddr;
    291   1.1      fvdl 	if (bsize > 0)
    292   1.1      fvdl 		NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, bsize, baddr,
    293   1.1      fvdl 		    NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    294   1.1      fvdl 
    295   1.1      fvdl 	/*
    296   1.1      fvdl 	 * Make sure (# of pages) mapped above equals (vm_tsize + vm_dsize);
    297   1.1      fvdl 	 * obreak(2) relies on this fact. Both `vm_tsize' and `vm_dsize' are
    298   1.1      fvdl 	 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
    299   1.1      fvdl 	 * respectively to page boundaries.
    300   1.1      fvdl 	 * Compensate `ep_dsize' for the amount of data covered by the last
    301   1.1      fvdl 	 * text page.
    302   1.1      fvdl 	 */
    303   1.1      fvdl 	dsize = epp->ep_dsize + execp->a_text - roundup(execp->a_text, NBPG);
    304   1.1      fvdl 	epp->ep_dsize = (dsize > 0) ? dsize : 0;
    305   1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    306   1.1      fvdl }
    307   1.1      fvdl 
    308   1.1      fvdl int
    309   1.1      fvdl exec_linux_aout_prep_qmagic(p, epp)
    310   1.1      fvdl 	struct proc *p;
    311   1.1      fvdl 	struct exec_package *epp;
    312   1.1      fvdl {
    313   1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    314   1.1      fvdl 
    315   1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, QMAGIC);
    316   1.1      fvdl 	epp->ep_tsize = execp->a_text;
    317   1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, QMAGIC);
    318   1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    319   1.1      fvdl 	epp->ep_entry = execp->a_entry;
    320   1.1      fvdl 
    321   1.1      fvdl 	/*
    322   1.1      fvdl 	 * check if vnode is in open for writing, because we want to
    323   1.1      fvdl 	 * demand-page out of it.  if it is, don't do it, for various
    324   1.1      fvdl 	 * reasons
    325   1.1      fvdl 	 */
    326   1.1      fvdl 	if ((execp->a_text != 0 || execp->a_data != 0) &&
    327   1.1      fvdl 	    epp->ep_vp->v_writecount != 0) {
    328   1.1      fvdl #ifdef DIAGNOSTIC
    329   1.1      fvdl 		if (epp->ep_vp->v_flag & VTEXT)
    330   1.1      fvdl 			panic("exec: a VTEXT vnode has writecount != 0\n");
    331   1.1      fvdl #endif
    332   1.1      fvdl 		return ETXTBSY;
    333   1.1      fvdl 	}
    334  1.38       chs 	vn_marktext(epp->ep_vp);
    335   1.1      fvdl 
    336   1.1      fvdl 	/* set up command for text segment */
    337   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, execp->a_text,
    338   1.1      fvdl 	    epp->ep_taddr, epp->ep_vp, LINUX_N_TXTOFF(*execp, QMAGIC),
    339   1.1      fvdl 	    VM_PROT_READ|VM_PROT_EXECUTE);
    340   1.1      fvdl 
    341   1.1      fvdl 	/* set up command for data segment */
    342   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, execp->a_data,
    343   1.1      fvdl 	    epp->ep_daddr, epp->ep_vp, LINUX_N_DATOFF(*execp, QMAGIC),
    344   1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    345   1.1      fvdl 
    346   1.1      fvdl 	/* set up command for bss segment */
    347   1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, execp->a_bss,
    348   1.1      fvdl 	    epp->ep_daddr + execp->a_data, NULLVP, 0,
    349   1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    350   1.1      fvdl 
    351   1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    352   1.1      fvdl }
    353   1.1      fvdl 
    354  1.14  christos /*
    355   1.6      fvdl  * The Linux system call to load shared libraries, a.out version. The
    356   1.6      fvdl  * a.out shared libs are just files that are mapped onto a fixed
    357   1.6      fvdl  * address in the process' address space. The address is given in
    358   1.1      fvdl  * a_entry. Read in the header, set up some VM commands and run them.
    359   1.1      fvdl  *
    360   1.1      fvdl  * Yes, both text and data are mapped at once, so we're left with
    361   1.1      fvdl  * writeable text for the shared libs. The Linux crt0 seemed to break
    362   1.1      fvdl  * sometimes when data was mapped seperately. It munmapped a uselib()
    363   1.1      fvdl  * of ld.so by hand, which failed with shared text and data for ld.so
    364   1.1      fvdl  * Yuck.
    365   1.1      fvdl  *
    366   1.1      fvdl  * Because of the problem with ZMAGIC executables (text starts
    367   1.6      fvdl  * at 0x400 in the file, but needs to be mapped at 0), ZMAGIC
    368   1.1      fvdl  * shared libs are not handled very efficiently :-(
    369   1.1      fvdl  */
    370   1.1      fvdl 
    371   1.1      fvdl int
    372  1.12   mycroft linux_sys_uselib(p, v, retval)
    373   1.1      fvdl 	struct proc *p;
    374  1.11   thorpej 	void *v;
    375  1.11   thorpej 	register_t *retval;
    376  1.11   thorpej {
    377  1.12   mycroft 	struct linux_sys_uselib_args /* {
    378  1.37  christos 		syscallarg(const char *) path;
    379  1.11   thorpej 	} */ *uap = v;
    380   1.1      fvdl 	caddr_t sg;
    381   1.1      fvdl 	long bsize, dsize, tsize, taddr, baddr, daddr;
    382   1.1      fvdl 	struct nameidata ni;
    383   1.1      fvdl 	struct vnode *vp;
    384   1.1      fvdl 	struct exec hdr;
    385   1.1      fvdl 	struct exec_vmcmd_set vcset;
    386  1.27   thorpej 	int i, magic, error;
    387  1.27   thorpej 	size_t rem;
    388   1.1      fvdl 
    389   1.9  christos 	sg = stackgap_init(p->p_emul);
    390   1.9  christos 	LINUX_CHECK_ALT_EXIST(p, &sg, SCARG(uap, path));
    391   1.1      fvdl 
    392   1.1      fvdl 	NDINIT(&ni, LOOKUP, FOLLOW, UIO_USERSPACE, SCARG(uap, path), p);
    393   1.1      fvdl 
    394   1.1      fvdl 	if ((error = namei(&ni)))
    395   1.1      fvdl 		return error;
    396   1.1      fvdl 
    397   1.1      fvdl 	vp = ni.ni_vp;
    398   1.1      fvdl 
    399   1.1      fvdl 	if ((error = vn_rdwr(UIO_READ, vp, (caddr_t) &hdr, LINUX_AOUT_HDR_SIZE,
    400   1.1      fvdl 			     0, UIO_SYSSPACE, IO_NODELOCKED, p->p_ucred,
    401   1.1      fvdl 			     &rem, p))) {
    402   1.1      fvdl 		vrele(vp);
    403   1.1      fvdl 		return error;
    404   1.1      fvdl 	}
    405   1.1      fvdl 
    406   1.1      fvdl 	if (rem != 0) {
    407   1.1      fvdl 		vrele(vp);
    408   1.1      fvdl 		return ENOEXEC;
    409   1.1      fvdl 	}
    410   1.6      fvdl 
    411   1.6      fvdl 	if (LINUX_N_MACHTYPE(&hdr) != LINUX_MID_MACHINE)
    412   1.6      fvdl 		return ENOEXEC;
    413   1.1      fvdl 
    414   1.1      fvdl 	magic = LINUX_N_MAGIC(&hdr);
    415   1.1      fvdl 	taddr = hdr.a_entry & (~(NBPG - 1));
    416   1.1      fvdl 	tsize = hdr.a_text;
    417   1.1      fvdl 	daddr = taddr + tsize;
    418   1.1      fvdl 	dsize = hdr.a_data + hdr.a_bss;
    419   1.1      fvdl 
    420   1.1      fvdl 	if ((hdr.a_text != 0 || hdr.a_data != 0) && vp->v_writecount != 0) {
    421   1.1      fvdl 		vrele(vp);
    422   1.1      fvdl                 return ETXTBSY;
    423   1.1      fvdl         }
    424  1.38       chs 	vn_marktext(vp);
    425   1.1      fvdl 
    426   1.1      fvdl 	vcset.evs_cnt = 0;
    427   1.1      fvdl 	vcset.evs_used = 0;
    428   1.1      fvdl 
    429   1.1      fvdl 	NEW_VMCMD(&vcset,
    430   1.1      fvdl 		  magic == ZMAGIC ? vmcmd_map_readvn : vmcmd_map_pagedvn,
    431   1.1      fvdl 		  hdr.a_text + hdr.a_data, taddr,
    432   1.1      fvdl 		  vp, LINUX_N_TXTOFF(hdr, magic),
    433   1.1      fvdl 		  VM_PROT_READ|VM_PROT_EXECUTE|VM_PROT_WRITE);
    434   1.1      fvdl 
    435   1.1      fvdl 	baddr = roundup(daddr + hdr.a_data, NBPG);
    436   1.1      fvdl 	bsize = daddr + dsize - baddr;
    437   1.1      fvdl         if (bsize > 0) {
    438   1.1      fvdl                 NEW_VMCMD(&vcset, vmcmd_map_zero, bsize, baddr,
    439   1.1      fvdl                     NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    440   1.1      fvdl 	}
    441   1.1      fvdl 
    442   1.1      fvdl 	for (i = 0; i < vcset.evs_used && !error; i++) {
    443   1.1      fvdl 		struct exec_vmcmd *vcp;
    444   1.1      fvdl 
    445   1.1      fvdl 		vcp = &vcset.evs_cmds[i];
    446   1.1      fvdl 		error = (*vcp->ev_proc)(p, vcp);
    447   1.1      fvdl 	}
    448   1.1      fvdl 
    449   1.1      fvdl 	kill_vmcmds(&vcset);
    450   1.1      fvdl 
    451   1.1      fvdl 	vrele(vp);
    452   1.1      fvdl 
    453   1.1      fvdl 	return error;
    454   1.1      fvdl }
    455