Home | History | Annotate | Line # | Download | only in i386
linux_exec_machdep.c revision 1.4.20.4
      1  1.4.20.4      yamt /*	$NetBSD: linux_exec_machdep.c,v 1.4.20.4 2010/08/11 22:53:05 yamt Exp $	*/
      2       1.1  christos 
      3       1.1  christos /*-
      4       1.1  christos  * Copyright (c) 2004 The NetBSD Foundation, Inc.
      5       1.1  christos  * All rights reserved.
      6       1.1  christos  *
      7       1.1  christos  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  christos  * by Christos Zoulas.
      9       1.1  christos  *
     10       1.1  christos  * Redistribution and use in source and binary forms, with or without
     11       1.1  christos  * modification, are permitted provided that the following conditions
     12       1.1  christos  * are met:
     13       1.1  christos  * 1. Redistributions of source code must retain the above copyright
     14       1.1  christos  *    notice, this list of conditions and the following disclaimer.
     15       1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  christos  *    documentation and/or other materials provided with the distribution.
     18       1.1  christos  *
     19       1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1  christos  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1  christos  */
     31       1.1  christos 
     32       1.1  christos #include <sys/cdefs.h>
     33  1.4.20.4      yamt __KERNEL_RCSID(0, "$NetBSD: linux_exec_machdep.c,v 1.4.20.4 2010/08/11 22:53:05 yamt Exp $");
     34       1.1  christos 
     35       1.1  christos #if defined(_KERNEL_OPT)
     36       1.1  christos #include "opt_vm86.h"
     37       1.1  christos #include "opt_user_ldt.h"
     38       1.1  christos #endif
     39       1.1  christos 
     40       1.1  christos #include <sys/param.h>
     41       1.1  christos #include <sys/systm.h>
     42       1.1  christos #include <sys/resource.h>
     43       1.1  christos #include <sys/proc.h>
     44       1.1  christos #include <sys/conf.h>
     45       1.1  christos #include <sys/exec.h>
     46       1.1  christos #include <sys/exec_elf.h>
     47       1.1  christos #include <sys/vnode.h>
     48       1.1  christos #include <sys/lwp.h>
     49       1.1  christos 
     50       1.4        ad #include <sys/cpu.h>
     51       1.1  christos #include <machine/vmparam.h>
     52       1.1  christos 
     53       1.1  christos #include <uvm/uvm.h>
     54       1.1  christos 
     55  1.4.20.2      yamt #include <sys/syscallargs.h>
     56  1.4.20.2      yamt 
     57  1.4.20.2      yamt #ifndef DEBUG_LINUX
     58  1.4.20.2      yamt #define DPRINTF(a)
     59  1.4.20.2      yamt #else
     60  1.4.20.2      yamt #define DPRINTF(a)	uprintf a
     61  1.4.20.2      yamt #endif
     62  1.4.20.2      yamt 
     63       1.1  christos #include <compat/linux/common/linux_types.h>
     64       1.1  christos #include <compat/linux/common/linux_signal.h>
     65  1.4.20.2      yamt #include <compat/linux/common/linux_machdep.h>
     66       1.1  christos #include <compat/linux/common/linux_util.h>
     67       1.1  christos #include <compat/linux/common/linux_ioctl.h>
     68       1.1  christos #include <compat/linux/common/linux_hdio.h>
     69       1.1  christos #include <compat/linux/common/linux_exec.h>
     70       1.1  christos #include <compat/linux/common/linux_errno.h>
     71  1.4.20.2      yamt #include <compat/linux//linux_syscallargs.h>
     72  1.4.20.2      yamt 
     73       1.1  christos int
     74       1.3  christos linux_exec_setup_stack(struct lwp *l, struct exec_package *epp)
     75       1.1  christos {
     76       1.1  christos 	u_long max_stack_size;
     77       1.1  christos 	u_long access_linear_min, access_size;
     78       1.1  christos 	u_long noaccess_linear_min, noaccess_size;
     79       1.1  christos 
     80       1.1  christos #ifndef	USRSTACK32
     81       1.1  christos #define USRSTACK32	(0x00000000ffffffffL&~PGOFSET)
     82       1.1  christos #endif
     83       1.1  christos 
     84       1.1  christos 	if (epp->ep_flags & EXEC_32) {
     85       1.1  christos 		epp->ep_minsaddr = USRSTACK32;
     86       1.1  christos 		max_stack_size = MAXSSIZ;
     87       1.1  christos 	} else {
     88       1.1  christos 		epp->ep_minsaddr = USRSTACK;
     89       1.1  christos 		max_stack_size = MAXSSIZ;
     90       1.1  christos 	}
     91       1.1  christos 
     92       1.1  christos 	if (epp->ep_minsaddr > LINUX_USRSTACK)
     93       1.1  christos 		epp->ep_minsaddr = LINUX_USRSTACK;
     94       1.1  christos #ifdef DEBUG_LINUX
     95       1.1  christos 	else {
     96       1.1  christos 		/*
     97       1.1  christos 		 * Someone needs to make KERNBASE and TEXTADDR
     98       1.1  christos 		 * java versions < 1.4.2 need the stack to be
     99       1.1  christos 		 * at 0xC0000000
    100       1.1  christos 		 */
    101       1.1  christos 		uprintf("Cannot setup stack to 0xC0000000, "
    102       1.1  christos 		    "java will not work properly\n");
    103       1.1  christos 	}
    104       1.1  christos #endif
    105       1.2     perry 	epp->ep_maxsaddr = (u_long)STACK_GROW(epp->ep_minsaddr,
    106       1.1  christos 		max_stack_size);
    107       1.3  christos 	epp->ep_ssize = l->l_proc->p_rlimit[RLIMIT_STACK].rlim_cur;
    108       1.1  christos 
    109       1.1  christos 	/*
    110       1.1  christos 	 * set up commands for stack.  note that this takes *two*, one to
    111       1.1  christos 	 * map the part of the stack which we can access, and one to map
    112       1.1  christos 	 * the part which we can't.
    113       1.1  christos 	 *
    114       1.1  christos 	 * arguably, it could be made into one, but that would require the
    115       1.1  christos 	 * addition of another mapping proc, which is unnecessary
    116       1.1  christos 	 */
    117       1.1  christos 	access_size = epp->ep_ssize;
    118       1.1  christos 	access_linear_min = (u_long)STACK_ALLOC(epp->ep_minsaddr, access_size);
    119       1.1  christos 	noaccess_size = max_stack_size - access_size;
    120       1.2     perry 	noaccess_linear_min = (u_long)STACK_ALLOC(STACK_GROW(epp->ep_minsaddr,
    121       1.1  christos 	    access_size), noaccess_size);
    122       1.1  christos 	if (noaccess_size > 0) {
    123  1.4.20.2      yamt 		NEW_VMCMD2(&epp->ep_vmcmds, vmcmd_map_zero, noaccess_size,
    124  1.4.20.2      yamt 		    noaccess_linear_min, NULLVP, 0, VM_PROT_NONE, VMCMD_STACK);
    125       1.1  christos 	}
    126       1.1  christos 	KASSERT(access_size > 0);
    127  1.4.20.2      yamt 	NEW_VMCMD2(&epp->ep_vmcmds, vmcmd_map_zero, access_size,
    128  1.4.20.2      yamt 	    access_linear_min, NULLVP, 0, VM_PROT_READ | VM_PROT_WRITE,
    129  1.4.20.2      yamt 	    VMCMD_STACK);
    130  1.4.20.2      yamt 
    131  1.4.20.2      yamt 	return 0;
    132  1.4.20.2      yamt }
    133  1.4.20.2      yamt 
    134  1.4.20.2      yamt int
    135  1.4.20.2      yamt linux_sys_set_thread_area(struct lwp *l,
    136  1.4.20.2      yamt     const struct linux_sys_set_thread_area_args *uap, register_t *retval)
    137  1.4.20.2      yamt {
    138  1.4.20.4      yamt 	/* {
    139  1.4.20.4      yamt 		syscallarg(struct linux_user_desc *) desc;
    140  1.4.20.4      yamt 	} */
    141  1.4.20.2      yamt 
    142  1.4.20.4      yamt 	return linux_lwp_setprivate(l, SCARG(uap, desc));
    143  1.4.20.2      yamt }
    144  1.4.20.2      yamt 
    145  1.4.20.2      yamt int
    146  1.4.20.2      yamt linux_sys_get_thread_area(struct lwp *l,
    147  1.4.20.2      yamt     const struct linux_sys_get_thread_area_args *uap, register_t *retval)
    148  1.4.20.2      yamt {
    149  1.4.20.4      yamt 	/* {
    150  1.4.20.4      yamt 		syscallarg(struct linux_user_desc *) desc;
    151  1.4.20.4      yamt 	} */
    152  1.4.20.2      yamt 
    153  1.4.20.4      yamt 	/* glibc doesn't actually call this. */
    154  1.4.20.4      yamt 	return ENOSYS;
    155  1.4.20.2      yamt }
    156