Home | History | Annotate | Line # | Download | only in kern
exec_subr.c revision 1.76
      1  1.76  christos /*	$NetBSD: exec_subr.c,v 1.76 2016/05/22 14:26:09 christos Exp $	*/
      2   1.8       cgd 
      3   1.1       cgd /*
      4  1.10       cgd  * Copyright (c) 1993, 1994, 1996 Christopher G. Demetriou
      5   1.1       cgd  * All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *      This product includes software developed by Christopher G. Demetriou.
     18   1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     19   1.5       jtc  *    derived from this software without specific prior written permission
     20   1.1       cgd  *
     21   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22   1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23   1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24   1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25   1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26   1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27   1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28   1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29   1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30   1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31   1.1       cgd  */
     32  1.29     lukem 
     33  1.29     lukem #include <sys/cdefs.h>
     34  1.76  christos __KERNEL_RCSID(0, "$NetBSD: exec_subr.c,v 1.76 2016/05/22 14:26:09 christos Exp $");
     35  1.48      elad 
     36  1.48      elad #include "opt_pax.h"
     37  1.12       mrg 
     38   1.1       cgd #include <sys/param.h>
     39   1.1       cgd #include <sys/systm.h>
     40   1.1       cgd #include <sys/proc.h>
     41  1.59      yamt #include <sys/kmem.h>
     42   1.1       cgd #include <sys/vnode.h>
     43   1.4       cgd #include <sys/filedesc.h>
     44   1.1       cgd #include <sys/exec.h>
     45   1.1       cgd #include <sys/mman.h>
     46  1.38  christos #include <sys/resourcevar.h>
     47  1.45   thorpej #include <sys/device.h>
     48  1.48      elad #include <sys/pax.h>
     49  1.48      elad 
     50  1.67  uebayasi #include <uvm/uvm_extern.h>
     51  1.11       mrg 
     52  1.45   thorpej #define	VMCMD_EVCNT_DECL(name)					\
     53  1.45   thorpej static struct evcnt vmcmd_ev_##name =				\
     54  1.45   thorpej     EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "vmcmd", #name);	\
     55  1.45   thorpej EVCNT_ATTACH_STATIC(vmcmd_ev_##name)
     56  1.45   thorpej 
     57  1.45   thorpej #define	VMCMD_EVCNT_INCR(name)					\
     58  1.45   thorpej     vmcmd_ev_##name.ev_count++
     59  1.45   thorpej 
     60  1.45   thorpej VMCMD_EVCNT_DECL(calls);
     61  1.45   thorpej VMCMD_EVCNT_DECL(extends);
     62  1.45   thorpej VMCMD_EVCNT_DECL(kills);
     63  1.10       cgd 
     64  1.68  christos #ifdef DEBUG_STACK
     65  1.68  christos #define DPRINTF(a) uprintf a
     66  1.68  christos #else
     67  1.68  christos #define DPRINTF(a)
     68  1.68  christos #endif
     69  1.68  christos 
     70   1.1       cgd /*
     71   1.1       cgd  * new_vmcmd():
     72   1.1       cgd  *	create a new vmcmd structure and fill in its fields based
     73   1.1       cgd  *	on function call arguments.  make sure objects ref'd by
     74   1.1       cgd  *	the vmcmd are 'held'.
     75   1.1       cgd  */
     76   1.1       cgd 
     77   1.1       cgd void
     78  1.22   thorpej new_vmcmd(struct exec_vmcmd_set *evsp,
     79  1.46  christos     int (*proc)(struct lwp * l, struct exec_vmcmd *),
     80  1.63      matt     vsize_t len, vaddr_t addr, struct vnode *vp, u_long offset,
     81  1.22   thorpej     u_int prot, int flags)
     82   1.1       cgd {
     83  1.71      maxv 	struct exec_vmcmd *vcp;
     84   1.1       cgd 
     85  1.45   thorpej 	VMCMD_EVCNT_INCR(calls);
     86  1.66      yamt 	KASSERT(proc != vmcmd_map_pagedvn || (vp->v_iflag & VI_TEXT));
     87  1.66      yamt 	KASSERT(vp == NULL || vp->v_usecount > 0);
     88  1.45   thorpej 
     89   1.1       cgd 	if (evsp->evs_used >= evsp->evs_cnt)
     90   1.1       cgd 		vmcmdset_extend(evsp);
     91   1.1       cgd 	vcp = &evsp->evs_cmds[evsp->evs_used++];
     92   1.1       cgd 	vcp->ev_proc = proc;
     93   1.1       cgd 	vcp->ev_len = len;
     94   1.1       cgd 	vcp->ev_addr = addr;
     95   1.1       cgd 	if ((vcp->ev_vp = vp) != NULL)
     96   1.1       cgd 		vref(vp);
     97   1.1       cgd 	vcp->ev_offset = offset;
     98   1.1       cgd 	vcp->ev_prot = prot;
     99  1.25        tv 	vcp->ev_flags = flags;
    100   1.1       cgd }
    101   1.1       cgd 
    102   1.1       cgd void
    103  1.22   thorpej vmcmdset_extend(struct exec_vmcmd_set *evsp)
    104   1.1       cgd {
    105   1.1       cgd 	struct exec_vmcmd *nvcp;
    106   1.1       cgd 	u_int ocnt;
    107   1.1       cgd 
    108   1.1       cgd #ifdef DIAGNOSTIC
    109   1.1       cgd 	if (evsp->evs_used < evsp->evs_cnt)
    110   1.1       cgd 		panic("vmcmdset_extend: not necessary");
    111   1.1       cgd #endif
    112   1.1       cgd 
    113   1.1       cgd 	/* figure out number of entries in new set */
    114  1.45   thorpej 	if ((ocnt = evsp->evs_cnt) != 0) {
    115  1.45   thorpej 		evsp->evs_cnt += ocnt;
    116  1.45   thorpej 		VMCMD_EVCNT_INCR(extends);
    117  1.45   thorpej 	} else
    118  1.45   thorpej 		evsp->evs_cnt = EXEC_DEFAULT_VMCMD_SETSIZE;
    119   1.1       cgd 
    120   1.1       cgd 	/* allocate it */
    121  1.59      yamt 	nvcp = kmem_alloc(evsp->evs_cnt * sizeof(struct exec_vmcmd), KM_SLEEP);
    122   1.1       cgd 
    123   1.1       cgd 	/* free the old struct, if there was one, and record the new one */
    124   1.1       cgd 	if (ocnt) {
    125  1.23   thorpej 		memcpy(nvcp, evsp->evs_cmds,
    126  1.23   thorpej 		    (ocnt * sizeof(struct exec_vmcmd)));
    127  1.59      yamt 		kmem_free(evsp->evs_cmds, ocnt * sizeof(struct exec_vmcmd));
    128   1.1       cgd 	}
    129   1.1       cgd 	evsp->evs_cmds = nvcp;
    130   1.1       cgd }
    131   1.1       cgd 
    132   1.1       cgd void
    133  1.22   thorpej kill_vmcmds(struct exec_vmcmd_set *evsp)
    134   1.1       cgd {
    135   1.1       cgd 	struct exec_vmcmd *vcp;
    136  1.30   thorpej 	u_int i;
    137   1.1       cgd 
    138  1.45   thorpej 	VMCMD_EVCNT_INCR(kills);
    139  1.45   thorpej 
    140   1.1       cgd 	if (evsp->evs_cnt == 0)
    141   1.1       cgd 		return;
    142   1.1       cgd 
    143   1.1       cgd 	for (i = 0; i < evsp->evs_used; i++) {
    144   1.1       cgd 		vcp = &evsp->evs_cmds[i];
    145  1.40       chs 		if (vcp->ev_vp != NULL)
    146   1.1       cgd 			vrele(vcp->ev_vp);
    147   1.1       cgd 	}
    148  1.59      yamt 	kmem_free(evsp->evs_cmds, evsp->evs_cnt * sizeof(struct exec_vmcmd));
    149   1.1       cgd 	evsp->evs_used = evsp->evs_cnt = 0;
    150   1.1       cgd }
    151   1.1       cgd 
    152   1.1       cgd /*
    153   1.1       cgd  * vmcmd_map_pagedvn():
    154   1.1       cgd  *	handle vmcmd which specifies that a vnode should be mmap'd.
    155   1.1       cgd  *	appropriate for handling demand-paged text and data segments.
    156   1.1       cgd  */
    157   1.1       cgd 
    158   1.1       cgd int
    159  1.46  christos vmcmd_map_pagedvn(struct lwp *l, struct exec_vmcmd *cmd)
    160   1.1       cgd {
    161  1.27       chs 	struct uvm_object *uobj;
    162  1.50       chs 	struct vnode *vp = cmd->ev_vp;
    163  1.46  christos 	struct proc *p = l->l_proc;
    164  1.27       chs 	int error;
    165  1.48      elad 	vm_prot_t prot, maxprot;
    166  1.27       chs 
    167  1.55        ad 	KASSERT(vp->v_iflag & VI_TEXT);
    168  1.11       mrg 
    169  1.11       mrg 	/*
    170  1.11       mrg 	 * map the vnode in using uvm_map.
    171  1.11       mrg 	 */
    172  1.11       mrg 
    173  1.71      maxv 	if (cmd->ev_len == 0)
    174  1.71      maxv 		return 0;
    175  1.71      maxv 	if (cmd->ev_offset & PAGE_MASK)
    176  1.71      maxv 		return EINVAL;
    177  1.11       mrg 	if (cmd->ev_addr & PAGE_MASK)
    178  1.71      maxv 		return EINVAL;
    179  1.18       chs 	if (cmd->ev_len & PAGE_MASK)
    180  1.71      maxv 		return EINVAL;
    181  1.11       mrg 
    182  1.54     pooka 	prot = cmd->ev_prot;
    183  1.54     pooka 	maxprot = UVM_PROT_ALL;
    184  1.73  christos 	PAX_MPROTECT_ADJUST(l, &prot, &maxprot);
    185  1.54     pooka 
    186  1.11       mrg 	/*
    187  1.53     pooka 	 * check the file system's opinion about mmapping the file
    188  1.11       mrg 	 */
    189  1.11       mrg 
    190  1.60        ad 	error = VOP_MMAP(vp, prot, l->l_cred);
    191  1.53     pooka 	if (error)
    192  1.53     pooka 		return error;
    193  1.50       chs 
    194  1.55        ad 	if ((vp->v_vflag & VV_MAPPED) == 0) {
    195  1.50       chs 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    196  1.55        ad 		vp->v_vflag |= VV_MAPPED;
    197  1.64   hannken 		VOP_UNLOCK(vp);
    198  1.50       chs 	}
    199  1.11       mrg 
    200  1.11       mrg 	/*
    201  1.53     pooka 	 * do the map, reference the object for this map entry
    202  1.11       mrg 	 */
    203  1.53     pooka 	uobj = &vp->v_uobj;
    204  1.53     pooka 	vref(vp);
    205  1.11       mrg 
    206  1.43     perry 	error = uvm_map(&p->p_vmspace->vm_map, &cmd->ev_addr, cmd->ev_len,
    207  1.24   thorpej 		uobj, cmd->ev_offset, 0,
    208  1.48      elad 		UVM_MAPFLAG(prot, maxprot, UVM_INH_COPY,
    209  1.34    atatat 			UVM_ADV_NORMAL, UVM_FLAG_COPYONW|UVM_FLAG_FIXED));
    210  1.27       chs 	if (error) {
    211  1.27       chs 		uobj->pgops->pgo_detach(uobj);
    212  1.27       chs 	}
    213  1.27       chs 	return error;
    214   1.1       cgd }
    215   1.1       cgd 
    216   1.1       cgd /*
    217   1.1       cgd  * vmcmd_map_readvn():
    218   1.1       cgd  *	handle vmcmd which specifies that a vnode should be read from.
    219   1.1       cgd  *	appropriate for non-demand-paged text/data segments, i.e. impure
    220   1.1       cgd  *	objects (a la OMAGIC and NMAGIC).
    221   1.1       cgd  */
    222   1.1       cgd int
    223  1.46  christos vmcmd_map_readvn(struct lwp *l, struct exec_vmcmd *cmd)
    224   1.1       cgd {
    225  1.46  christos 	struct proc *p = l->l_proc;
    226   1.1       cgd 	int error;
    227  1.17        ws 	long diff;
    228   1.1       cgd 
    229  1.11       mrg 	if (cmd->ev_len == 0)
    230  1.27       chs 		return 0;
    231  1.27       chs 
    232  1.17        ws 	diff = cmd->ev_addr - trunc_page(cmd->ev_addr);
    233  1.17        ws 	cmd->ev_addr -= diff;			/* required by uvm_map */
    234  1.17        ws 	cmd->ev_offset -= diff;
    235  1.17        ws 	cmd->ev_len += diff;
    236  1.17        ws 
    237  1.43     perry 	error = uvm_map(&p->p_vmspace->vm_map, &cmd->ev_addr,
    238  1.24   thorpej 			round_page(cmd->ev_len), NULL, UVM_UNKNOWN_OFFSET, 0,
    239  1.13     chuck 			UVM_MAPFLAG(UVM_PROT_ALL, UVM_PROT_ALL, UVM_INH_COPY,
    240  1.11       mrg 			UVM_ADV_NORMAL,
    241  1.34    atatat 			UVM_FLAG_FIXED|UVM_FLAG_OVERLAY|UVM_FLAG_COPYONW));
    242  1.11       mrg 
    243   1.1       cgd 	if (error)
    244   1.1       cgd 		return error;
    245  1.19      matt 
    246  1.46  christos 	return vmcmd_readvn(l, cmd);
    247  1.19      matt }
    248  1.19      matt 
    249  1.19      matt int
    250  1.46  christos vmcmd_readvn(struct lwp *l, struct exec_vmcmd *cmd)
    251  1.19      matt {
    252  1.46  christos 	struct proc *p = l->l_proc;
    253  1.19      matt 	int error;
    254  1.48      elad 	vm_prot_t prot, maxprot;
    255   1.1       cgd 
    256  1.52  christos 	error = vn_rdwr(UIO_READ, cmd->ev_vp, (void *)cmd->ev_addr,
    257  1.10       cgd 	    cmd->ev_len, cmd->ev_offset, UIO_USERSPACE, IO_UNIT,
    258  1.49        ad 	    l->l_cred, NULL, l);
    259   1.1       cgd 	if (error)
    260   1.1       cgd 		return error;
    261  1.32      matt 
    262  1.48      elad 	prot = cmd->ev_prot;
    263  1.48      elad 	maxprot = VM_PROT_ALL;
    264  1.73  christos 	PAX_MPROTECT_ADJUST(l, &prot, &maxprot);
    265  1.48      elad 
    266  1.32      matt #ifdef PMAP_NEED_PROCWR
    267  1.32      matt 	/*
    268  1.32      matt 	 * we had to write the process, make sure the pages are synched
    269  1.32      matt 	 * with the instruction cache.
    270  1.32      matt 	 */
    271  1.48      elad 	if (prot & VM_PROT_EXECUTE)
    272  1.32      matt 		pmap_procwr(p, cmd->ev_addr, cmd->ev_len);
    273  1.32      matt #endif
    274   1.1       cgd 
    275  1.48      elad 	/*
    276  1.48      elad 	 * we had to map in the area at PROT_ALL so that vn_rdwr()
    277  1.48      elad 	 * could write to it.   however, the caller seems to want
    278  1.48      elad 	 * it mapped read-only, so now we are going to have to call
    279  1.48      elad 	 * uvm_map_protect() to fix up the protection.  ICK.
    280  1.48      elad 	 */
    281  1.48      elad 	if (maxprot != VM_PROT_ALL) {
    282  1.48      elad 		error = uvm_map_protect(&p->p_vmspace->vm_map,
    283  1.48      elad 				trunc_page(cmd->ev_addr),
    284  1.48      elad 				round_page(cmd->ev_addr + cmd->ev_len),
    285  1.51   thorpej 				maxprot, true);
    286  1.48      elad 		if (error)
    287  1.71      maxv 			return error;
    288  1.48      elad 	}
    289  1.27       chs 
    290  1.48      elad 	if (prot != maxprot) {
    291  1.48      elad 		error = uvm_map_protect(&p->p_vmspace->vm_map,
    292  1.13     chuck 				trunc_page(cmd->ev_addr),
    293  1.13     chuck 				round_page(cmd->ev_addr + cmd->ev_len),
    294  1.51   thorpej 				prot, false);
    295  1.48      elad 		if (error)
    296  1.71      maxv 			return error;
    297  1.13     chuck 	}
    298  1.48      elad 
    299  1.27       chs 	return 0;
    300   1.1       cgd }
    301   1.1       cgd 
    302   1.1       cgd /*
    303   1.1       cgd  * vmcmd_map_zero():
    304   1.1       cgd  *	handle vmcmd which specifies a zero-filled address space region.  The
    305   1.1       cgd  *	address range must be first allocated, then protected appropriately.
    306   1.1       cgd  */
    307   1.1       cgd 
    308   1.1       cgd int
    309  1.46  christos vmcmd_map_zero(struct lwp *l, struct exec_vmcmd *cmd)
    310   1.1       cgd {
    311  1.46  christos 	struct proc *p = l->l_proc;
    312   1.1       cgd 	int error;
    313  1.17        ws 	long diff;
    314  1.48      elad 	vm_prot_t prot, maxprot;
    315   1.1       cgd 
    316  1.17        ws 	diff = cmd->ev_addr - trunc_page(cmd->ev_addr);
    317  1.17        ws 	cmd->ev_addr -= diff;			/* required by uvm_map */
    318  1.17        ws 	cmd->ev_len += diff;
    319  1.17        ws 
    320  1.48      elad 	prot = cmd->ev_prot;
    321  1.48      elad 	maxprot = UVM_PROT_ALL;
    322  1.73  christos 	PAX_MPROTECT_ADJUST(l, &prot, &maxprot);
    323  1.48      elad 
    324  1.43     perry 	error = uvm_map(&p->p_vmspace->vm_map, &cmd->ev_addr,
    325  1.24   thorpej 			round_page(cmd->ev_len), NULL, UVM_UNKNOWN_OFFSET, 0,
    326  1.48      elad 			UVM_MAPFLAG(prot, maxprot, UVM_INH_COPY,
    327  1.11       mrg 			UVM_ADV_NORMAL,
    328  1.34    atatat 			UVM_FLAG_FIXED|UVM_FLAG_COPYONW));
    329  1.62       mrg 	if (cmd->ev_flags & VMCMD_STACK)
    330  1.62       mrg 		curproc->p_vmspace->vm_issize += atop(round_page(cmd->ev_len));
    331  1.27       chs 	return error;
    332   1.1       cgd }
    333  1.28  christos 
    334  1.28  christos /*
    335  1.28  christos  * exec_read_from():
    336  1.28  christos  *
    337  1.28  christos  *	Read from vnode into buffer at offset.
    338  1.28  christos  */
    339  1.28  christos int
    340  1.46  christos exec_read_from(struct lwp *l, struct vnode *vp, u_long off, void *bf,
    341  1.28  christos     size_t size)
    342  1.28  christos {
    343  1.28  christos 	int error;
    344  1.28  christos 	size_t resid;
    345  1.28  christos 
    346  1.44  christos 	if ((error = vn_rdwr(UIO_READ, vp, bf, size, off, UIO_SYSSPACE,
    347  1.49        ad 	    0, l->l_cred, &resid, NULL)) != 0)
    348  1.28  christos 		return error;
    349  1.28  christos 	/*
    350  1.28  christos 	 * See if we got all of it
    351  1.28  christos 	 */
    352  1.28  christos 	if (resid != 0)
    353  1.28  christos 		return ENOEXEC;
    354  1.28  christos 	return 0;
    355  1.28  christos }
    356  1.28  christos 
    357  1.38  christos /*
    358  1.38  christos  * exec_setup_stack(): Set up the stack segment for an elf
    359  1.38  christos  * executable.
    360  1.38  christos  *
    361  1.38  christos  * Note that the ep_ssize parameter must be set to be the current stack
    362  1.38  christos  * limit; this is adjusted in the body of execve() to yield the
    363  1.38  christos  * appropriate stack segment usage once the argument length is
    364  1.38  christos  * calculated.
    365  1.38  christos  *
    366  1.38  christos  * This function returns an int for uniformity with other (future) formats'
    367  1.38  christos  * stack setup functions.  They might have errors to return.
    368  1.38  christos  */
    369  1.38  christos 
    370  1.38  christos int
    371  1.46  christos exec_setup_stack(struct lwp *l, struct exec_package *epp)
    372  1.38  christos {
    373  1.63      matt 	vsize_t max_stack_size;
    374  1.63      matt 	vaddr_t access_linear_min;
    375  1.63      matt 	vsize_t access_size;
    376  1.63      matt 	vaddr_t noaccess_linear_min;
    377  1.63      matt 	vsize_t noaccess_size;
    378  1.38  christos 
    379  1.38  christos #ifndef	USRSTACK32
    380  1.38  christos #define USRSTACK32	(0x00000000ffffffffL&~PGOFSET)
    381  1.38  christos #endif
    382  1.68  christos #ifndef MAXSSIZ32
    383  1.68  christos #define MAXSSIZ32	(MAXSSIZ >> 2)
    384  1.68  christos #endif
    385  1.38  christos 
    386  1.38  christos 	if (epp->ep_flags & EXEC_32) {
    387  1.38  christos 		epp->ep_minsaddr = USRSTACK32;
    388  1.68  christos 		max_stack_size = MAXSSIZ32;
    389  1.38  christos 	} else {
    390  1.38  christos 		epp->ep_minsaddr = USRSTACK;
    391  1.38  christos 		max_stack_size = MAXSSIZ;
    392  1.38  christos 	}
    393  1.68  christos 
    394  1.75  christos 	DPRINTF(("ep_minsaddr=%#jx max_stack_size=%#jx\n",
    395  1.75  christos 	    (uintmax_t)epp->ep_minsaddr, (uintmax_t)max_stack_size));
    396  1.57  christos 
    397  1.72      maxv 	pax_aslr_stack(epp, &max_stack_size);
    398  1.57  christos 
    399  1.75  christos 	DPRINTF(("[RLIMIT_STACK].lim_cur=%#jx max_stack_size=%#jx\n",
    400  1.75  christos 	    (uintmax_t)l->l_proc->p_rlimit[RLIMIT_STACK].rlim_cur,
    401  1.75  christos 	    (uintmax_t)max_stack_size));
    402  1.75  christos 	epp->ep_ssize = MIN(l->l_proc->p_rlimit[RLIMIT_STACK].rlim_cur,
    403  1.75  christos 	    max_stack_size);
    404  1.75  christos 
    405  1.57  christos 	l->l_proc->p_stackbase = epp->ep_minsaddr;
    406  1.57  christos 
    407  1.63      matt 	epp->ep_maxsaddr = (vaddr_t)STACK_GROW(epp->ep_minsaddr,
    408  1.75  christos 	    max_stack_size);
    409  1.38  christos 
    410  1.75  christos 	DPRINTF(("ep_ssize=%#jx ep_minsaddr=%#jx ep_maxsaddr=%#jx\n",
    411  1.75  christos 	    (uintmax_t)epp->ep_ssize, (uintmax_t)epp->ep_minsaddr,
    412  1.75  christos 	    (uintmax_t)epp->ep_maxsaddr));
    413  1.68  christos 
    414  1.38  christos 	/*
    415  1.38  christos 	 * set up commands for stack.  note that this takes *two*, one to
    416  1.38  christos 	 * map the part of the stack which we can access, and one to map
    417  1.38  christos 	 * the part which we can't.
    418  1.38  christos 	 *
    419  1.38  christos 	 * arguably, it could be made into one, but that would require the
    420  1.38  christos 	 * addition of another mapping proc, which is unnecessary
    421  1.38  christos 	 */
    422  1.38  christos 	access_size = epp->ep_ssize;
    423  1.63      matt 	access_linear_min = (vaddr_t)STACK_ALLOC(epp->ep_minsaddr, access_size);
    424  1.38  christos 	noaccess_size = max_stack_size - access_size;
    425  1.63      matt 	noaccess_linear_min = (vaddr_t)STACK_ALLOC(STACK_GROW(epp->ep_minsaddr,
    426  1.38  christos 	    access_size), noaccess_size);
    427  1.68  christos 
    428  1.75  christos 	DPRINTF(("access_size=%#jx, access_linear_min=%#jx, "
    429  1.75  christos 	    "noaccess_size=%#jx, noaccess_linear_min=%#jx\n",
    430  1.75  christos 	    (uintmax_t)access_size, (uintmax_t)access_linear_min,
    431  1.75  christos 	    (uintmax_t)noaccess_size, (uintmax_t)noaccess_linear_min));
    432  1.68  christos 
    433  1.65  christos 	if (noaccess_size > 0 && noaccess_size <= MAXSSIZ) {
    434  1.62       mrg 		NEW_VMCMD2(&epp->ep_vmcmds, vmcmd_map_zero, noaccess_size,
    435  1.62       mrg 		    noaccess_linear_min, NULL, 0, VM_PROT_NONE, VMCMD_STACK);
    436  1.39      yamt 	}
    437  1.65  christos 	KASSERT(access_size > 0 && access_size <= MAXSSIZ);
    438  1.62       mrg 	NEW_VMCMD2(&epp->ep_vmcmds, vmcmd_map_zero, access_size,
    439  1.62       mrg 	    access_linear_min, NULL, 0, VM_PROT_READ | VM_PROT_WRITE,
    440  1.62       mrg 	    VMCMD_STACK);
    441  1.38  christos 
    442  1.38  christos 	return 0;
    443  1.38  christos }
    444