Home | History | Annotate | Line # | Download | only in common
linux_exec_aout.c revision 1.47.8.1
      1  1.47.8.1   gehenna /*	$NetBSD: linux_exec_aout.c,v 1.47.8.1 2002/08/29 05:22:14 gehenna 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.47     lukem 
     43      1.47     lukem #include <sys/cdefs.h>
     44  1.47.8.1   gehenna __KERNEL_RCSID(0, "$NetBSD: linux_exec_aout.c,v 1.47.8.1 2002/08/29 05:22:14 gehenna Exp $");
     45       1.1      fvdl 
     46       1.1      fvdl #include <sys/param.h>
     47       1.1      fvdl #include <sys/systm.h>
     48       1.1      fvdl #include <sys/kernel.h>
     49       1.1      fvdl #include <sys/proc.h>
     50       1.1      fvdl #include <sys/malloc.h>
     51       1.1      fvdl #include <sys/namei.h>
     52       1.1      fvdl #include <sys/vnode.h>
     53      1.13  christos #include <sys/mount.h>
     54      1.25  christos #include <sys/exec.h>
     55       1.8      fvdl #include <sys/exec_elf.h>
     56       1.1      fvdl 
     57       1.1      fvdl #include <sys/mman.h>
     58      1.13  christos #include <sys/syscallargs.h>
     59       1.1      fvdl 
     60      1.32  christos #include <machine/cpu.h>
     61      1.32  christos #include <machine/reg.h>
     62      1.32  christos 
     63      1.32  christos #include <compat/linux/common/linux_types.h>
     64      1.32  christos #include <compat/linux/common/linux_signal.h>
     65      1.32  christos #include <compat/linux/common/linux_util.h>
     66      1.32  christos #include <compat/linux/common/linux_exec.h>
     67      1.32  christos #include <compat/linux/common/linux_machdep.h>
     68      1.32  christos 
     69      1.32  christos #include <compat/linux/linux_syscallargs.h>
     70       1.4  christos #include <compat/linux/linux_syscall.h>
     71      1.31       erh 
     72  1.47.8.1   gehenna int linux_aout_copyargs __P((struct proc *, struct exec_package *,
     73  1.47.8.1   gehenna     struct ps_strings *, char **, void *));
     74       1.4  christos 
     75      1.42  jdolecek static int exec_linux_aout_prep_zmagic __P((struct proc *,
     76      1.45  christos     struct exec_package *));
     77      1.42  jdolecek static int exec_linux_aout_prep_nmagic __P((struct proc *,
     78      1.45  christos     struct exec_package *));
     79      1.42  jdolecek static int exec_linux_aout_prep_omagic __P((struct proc *,
     80      1.45  christos     struct exec_package *));
     81      1.42  jdolecek static int exec_linux_aout_prep_qmagic __P((struct proc *,
     82      1.45  christos     struct exec_package *));
     83       1.6      fvdl 
     84      1.45  christos int
     85  1.47.8.1   gehenna linux_aout_copyargs(p, pack, arginfo, stackp, argp)
     86  1.47.8.1   gehenna 	struct proc *p;
     87       1.4  christos 	struct exec_package *pack;
     88       1.4  christos 	struct ps_strings *arginfo;
     89      1.45  christos 	char **stackp;
     90       1.4  christos 	void *argp;
     91       1.4  christos {
     92      1.45  christos 	char **cpp = (char **)*stackp;
     93      1.45  christos 	char **stk = (char **)*stackp;
     94       1.4  christos 	char *dp, *sp;
     95       1.4  christos 	size_t len;
     96       1.4  christos 	void *nullp = NULL;
     97       1.4  christos 	int argc = arginfo->ps_nargvstr;
     98       1.4  christos 	int envc = arginfo->ps_nenvstr;
     99      1.45  christos 	int error;
    100       1.4  christos 
    101      1.45  christos 	if ((error = copyout(&argc, cpp++, sizeof(argc))) != 0)
    102      1.45  christos 		return error;
    103       1.4  christos 
    104       1.4  christos 	/* leave room for envp and argv */
    105       1.4  christos 	cpp += 2;
    106      1.45  christos 	if ((error = copyout(&cpp, &stk[1], sizeof (cpp))) != 0)
    107      1.45  christos 		return error;
    108       1.4  christos 
    109       1.4  christos 	dp = (char *) (cpp + argc + envc + 2);
    110       1.4  christos 	sp = argp;
    111       1.4  christos 
    112       1.4  christos 	/* XXX don't copy them out, remap them! */
    113       1.5   mycroft 	arginfo->ps_argvstr = cpp; /* remember location of argv for later */
    114       1.4  christos 
    115       1.4  christos 	for (; --argc >= 0; sp += len, dp += len)
    116      1.45  christos 		if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
    117      1.45  christos 		    (error = copyoutstr(sp, dp, ARG_MAX, &len)) != 0)
    118      1.45  christos 			return error;
    119       1.4  christos 
    120      1.45  christos 	if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
    121      1.45  christos 		return error;
    122       1.4  christos 
    123      1.45  christos 	if ((error = copyout(&cpp, &stk[2], sizeof (cpp))) != 0)
    124      1.45  christos 		return error;
    125       1.4  christos 
    126       1.5   mycroft 	arginfo->ps_envstr = cpp; /* remember location of envp for later */
    127       1.4  christos 
    128       1.4  christos 	for (; --envc >= 0; sp += len, dp += len)
    129      1.45  christos 		if ((error = copyout(&dp, cpp++, sizeof(dp))) != 0 ||
    130      1.45  christos 		    (error = copyoutstr(sp, dp, ARG_MAX, &len)) != 0)
    131      1.45  christos 			return error;
    132       1.4  christos 
    133      1.45  christos 	if ((error = copyout(&nullp, cpp++, sizeof(nullp))) != 0)
    134      1.45  christos 		return error;
    135       1.4  christos 
    136      1.45  christos 	*stackp = (char *)cpp;
    137      1.45  christos 	return 0;
    138       1.4  christos }
    139       1.4  christos 
    140       1.1      fvdl int
    141       1.1      fvdl exec_linux_aout_makecmds(p, epp)
    142       1.1      fvdl 	struct proc *p;
    143       1.1      fvdl 	struct exec_package *epp;
    144       1.1      fvdl {
    145       1.1      fvdl 	struct exec *linux_ep = epp->ep_hdr;
    146       1.1      fvdl 	int machtype, magic;
    147       1.1      fvdl 	int error = ENOEXEC;
    148       1.1      fvdl 
    149       1.1      fvdl 	magic = LINUX_N_MAGIC(linux_ep);
    150       1.1      fvdl 	machtype = LINUX_N_MACHTYPE(linux_ep);
    151       1.1      fvdl 
    152       1.1      fvdl 
    153       1.1      fvdl 	if (machtype != LINUX_MID_MACHINE)
    154       1.1      fvdl 		return (ENOEXEC);
    155       1.1      fvdl 
    156       1.1      fvdl 	switch (magic) {
    157       1.1      fvdl 	case QMAGIC:
    158       1.1      fvdl 		error = exec_linux_aout_prep_qmagic(p, epp);
    159       1.1      fvdl 		break;
    160       1.1      fvdl 	case ZMAGIC:
    161       1.1      fvdl 		error = exec_linux_aout_prep_zmagic(p, epp);
    162       1.1      fvdl 		break;
    163       1.1      fvdl 	case NMAGIC:
    164       1.1      fvdl 		error = exec_linux_aout_prep_nmagic(p, epp);
    165       1.1      fvdl 		break;
    166       1.1      fvdl 	case OMAGIC:
    167       1.1      fvdl 		error = exec_linux_aout_prep_omagic(p, epp);
    168       1.1      fvdl 		break;
    169       1.1      fvdl 	}
    170       1.1      fvdl 	return error;
    171       1.1      fvdl }
    172       1.1      fvdl 
    173       1.1      fvdl /*
    174       1.1      fvdl  * Since text starts at 0x400 in Linux ZMAGIC executables, and 0x400
    175       1.1      fvdl  * is very likely not page aligned on most architectures, it is treated
    176       1.1      fvdl  * as an NMAGIC here. XXX
    177       1.1      fvdl  */
    178       1.1      fvdl 
    179      1.42  jdolecek static int
    180       1.1      fvdl exec_linux_aout_prep_zmagic(p, epp)
    181       1.1      fvdl 	struct proc *p;
    182       1.1      fvdl 	struct exec_package *epp;
    183       1.1      fvdl {
    184       1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    185       1.1      fvdl 
    186       1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, ZMAGIC);
    187       1.1      fvdl 	epp->ep_tsize = execp->a_text;
    188       1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, ZMAGIC);
    189       1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    190       1.1      fvdl 	epp->ep_entry = execp->a_entry;
    191       1.1      fvdl 
    192       1.1      fvdl 	/* set up command for text segment */
    193       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_text,
    194       1.1      fvdl 	    epp->ep_taddr, epp->ep_vp, LINUX_N_TXTOFF(*execp, ZMAGIC),
    195       1.1      fvdl 	    VM_PROT_READ|VM_PROT_EXECUTE);
    196       1.1      fvdl 
    197       1.1      fvdl 	/* set up command for data segment */
    198       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_data,
    199       1.1      fvdl 	    epp->ep_daddr, epp->ep_vp, LINUX_N_DATOFF(*execp, ZMAGIC),
    200       1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    201       1.1      fvdl 
    202       1.1      fvdl 	/* set up command for bss segment */
    203       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, execp->a_bss,
    204       1.1      fvdl 	    epp->ep_daddr + execp->a_data, NULLVP, 0,
    205       1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    206       1.1      fvdl 
    207       1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    208       1.1      fvdl }
    209       1.1      fvdl 
    210       1.1      fvdl /*
    211       1.1      fvdl  * exec_aout_prep_nmagic(): Prepare Linux NMAGIC package.
    212       1.1      fvdl  * Not different from the normal stuff.
    213       1.1      fvdl  */
    214       1.1      fvdl 
    215      1.42  jdolecek static int
    216       1.1      fvdl exec_linux_aout_prep_nmagic(p, epp)
    217       1.1      fvdl 	struct proc *p;
    218       1.1      fvdl 	struct exec_package *epp;
    219       1.1      fvdl {
    220       1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    221       1.1      fvdl 	long bsize, baddr;
    222       1.1      fvdl 
    223       1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, NMAGIC);
    224       1.1      fvdl 	epp->ep_tsize = execp->a_text;
    225       1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, NMAGIC);
    226       1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    227       1.1      fvdl 	epp->ep_entry = execp->a_entry;
    228       1.1      fvdl 
    229       1.1      fvdl 	/* set up command for text segment */
    230       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_text,
    231       1.1      fvdl 	    epp->ep_taddr, epp->ep_vp, LINUX_N_TXTOFF(*execp, NMAGIC),
    232       1.1      fvdl 	    VM_PROT_READ|VM_PROT_EXECUTE);
    233       1.1      fvdl 
    234       1.1      fvdl 	/* set up command for data segment */
    235       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, execp->a_data,
    236       1.1      fvdl 	    epp->ep_daddr, epp->ep_vp, LINUX_N_DATOFF(*execp, NMAGIC),
    237       1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    238       1.1      fvdl 
    239       1.1      fvdl 	/* set up command for bss segment */
    240       1.1      fvdl 	baddr = roundup(epp->ep_daddr + execp->a_data, NBPG);
    241       1.1      fvdl 	bsize = epp->ep_daddr + epp->ep_dsize - baddr;
    242       1.1      fvdl 	if (bsize > 0)
    243       1.1      fvdl 		NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, bsize, baddr,
    244       1.1      fvdl 		    NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    245       1.1      fvdl 
    246       1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    247       1.1      fvdl }
    248       1.1      fvdl 
    249       1.1      fvdl /*
    250       1.1      fvdl  * exec_aout_prep_omagic(): Prepare Linux OMAGIC package.
    251       1.1      fvdl  * Business as usual.
    252       1.1      fvdl  */
    253       1.1      fvdl 
    254      1.42  jdolecek static int
    255       1.1      fvdl exec_linux_aout_prep_omagic(p, epp)
    256       1.1      fvdl 	struct proc *p;
    257       1.1      fvdl 	struct exec_package *epp;
    258       1.1      fvdl {
    259       1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    260       1.1      fvdl 	long dsize, bsize, baddr;
    261       1.1      fvdl 
    262       1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, OMAGIC);
    263       1.1      fvdl 	epp->ep_tsize = execp->a_text;
    264       1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, OMAGIC);
    265       1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    266       1.1      fvdl 	epp->ep_entry = execp->a_entry;
    267       1.1      fvdl 
    268       1.1      fvdl 	/* set up command for text and data segments */
    269       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn,
    270       1.1      fvdl 	    execp->a_text + execp->a_data, epp->ep_taddr, epp->ep_vp,
    271       1.1      fvdl 	    LINUX_N_TXTOFF(*execp, OMAGIC), VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    272       1.1      fvdl 
    273       1.1      fvdl 	/* set up command for bss segment */
    274       1.1      fvdl 	baddr = roundup(epp->ep_daddr + execp->a_data, NBPG);
    275       1.1      fvdl 	bsize = epp->ep_daddr + epp->ep_dsize - baddr;
    276       1.1      fvdl 	if (bsize > 0)
    277       1.1      fvdl 		NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, bsize, baddr,
    278       1.1      fvdl 		    NULLVP, 0, VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    279       1.1      fvdl 
    280       1.1      fvdl 	/*
    281       1.1      fvdl 	 * Make sure (# of pages) mapped above equals (vm_tsize + vm_dsize);
    282       1.1      fvdl 	 * obreak(2) relies on this fact. Both `vm_tsize' and `vm_dsize' are
    283       1.1      fvdl 	 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
    284       1.1      fvdl 	 * respectively to page boundaries.
    285       1.1      fvdl 	 * Compensate `ep_dsize' for the amount of data covered by the last
    286       1.1      fvdl 	 * text page.
    287       1.1      fvdl 	 */
    288       1.1      fvdl 	dsize = epp->ep_dsize + execp->a_text - roundup(execp->a_text, NBPG);
    289       1.1      fvdl 	epp->ep_dsize = (dsize > 0) ? dsize : 0;
    290       1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    291       1.1      fvdl }
    292       1.1      fvdl 
    293      1.42  jdolecek static int
    294       1.1      fvdl exec_linux_aout_prep_qmagic(p, epp)
    295       1.1      fvdl 	struct proc *p;
    296       1.1      fvdl 	struct exec_package *epp;
    297       1.1      fvdl {
    298       1.1      fvdl 	struct exec *execp = epp->ep_hdr;
    299       1.1      fvdl 
    300       1.1      fvdl 	epp->ep_taddr = LINUX_N_TXTADDR(*execp, QMAGIC);
    301       1.1      fvdl 	epp->ep_tsize = execp->a_text;
    302       1.1      fvdl 	epp->ep_daddr = LINUX_N_DATADDR(*execp, QMAGIC);
    303       1.1      fvdl 	epp->ep_dsize = execp->a_data + execp->a_bss;
    304       1.1      fvdl 	epp->ep_entry = execp->a_entry;
    305       1.1      fvdl 
    306       1.1      fvdl 	/*
    307       1.1      fvdl 	 * check if vnode is in open for writing, because we want to
    308       1.1      fvdl 	 * demand-page out of it.  if it is, don't do it, for various
    309       1.1      fvdl 	 * reasons
    310       1.1      fvdl 	 */
    311       1.1      fvdl 	if ((execp->a_text != 0 || execp->a_data != 0) &&
    312       1.1      fvdl 	    epp->ep_vp->v_writecount != 0) {
    313       1.1      fvdl #ifdef DIAGNOSTIC
    314       1.1      fvdl 		if (epp->ep_vp->v_flag & VTEXT)
    315       1.1      fvdl 			panic("exec: a VTEXT vnode has writecount != 0\n");
    316       1.1      fvdl #endif
    317       1.1      fvdl 		return ETXTBSY;
    318       1.1      fvdl 	}
    319      1.46   thorpej 	epp->ep_vp->v_flag |= VTEXT;
    320       1.1      fvdl 
    321       1.1      fvdl 	/* set up command for text segment */
    322       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, execp->a_text,
    323       1.1      fvdl 	    epp->ep_taddr, epp->ep_vp, LINUX_N_TXTOFF(*execp, QMAGIC),
    324       1.1      fvdl 	    VM_PROT_READ|VM_PROT_EXECUTE);
    325       1.1      fvdl 
    326       1.1      fvdl 	/* set up command for data segment */
    327       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, execp->a_data,
    328       1.1      fvdl 	    epp->ep_daddr, epp->ep_vp, LINUX_N_DATOFF(*execp, QMAGIC),
    329       1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    330       1.1      fvdl 
    331       1.1      fvdl 	/* set up command for bss segment */
    332       1.1      fvdl 	NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, execp->a_bss,
    333       1.1      fvdl 	    epp->ep_daddr + execp->a_data, NULLVP, 0,
    334       1.1      fvdl 	    VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
    335       1.1      fvdl 
    336       1.1      fvdl 	return exec_aout_setup_stack(p, epp);
    337       1.1      fvdl }
    338