15b81b6b3SRodney W. Grimes /*- 25b81b6b3SRodney W. Grimes * Copyright (c) 1982, 1986 The Regents of the University of California. 35b81b6b3SRodney W. Grimes * Copyright (c) 1989, 1990 William Jolitz 45b81b6b3SRodney W. Grimes * All rights reserved. 55b81b6b3SRodney W. Grimes * 65b81b6b3SRodney W. Grimes * This code is derived from software contributed to Berkeley by 75b81b6b3SRodney W. Grimes * the Systems Programming Group of the University of Utah Computer 85b81b6b3SRodney W. Grimes * Science Department, and William Jolitz. 95b81b6b3SRodney W. Grimes * 105b81b6b3SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 115b81b6b3SRodney W. Grimes * modification, are permitted provided that the following conditions 125b81b6b3SRodney W. Grimes * are met: 135b81b6b3SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 145b81b6b3SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 155b81b6b3SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 165b81b6b3SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 175b81b6b3SRodney W. Grimes * documentation and/or other materials provided with the distribution. 185b81b6b3SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 195b81b6b3SRodney W. Grimes * must display the following acknowledgement: 205b81b6b3SRodney W. Grimes * This product includes software developed by the University of 215b81b6b3SRodney W. Grimes * California, Berkeley and its contributors. 225b81b6b3SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 235b81b6b3SRodney W. Grimes * may be used to endorse or promote products derived from this software 245b81b6b3SRodney W. Grimes * without specific prior written permission. 255b81b6b3SRodney W. Grimes * 265b81b6b3SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 275b81b6b3SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 285b81b6b3SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 295b81b6b3SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 305b81b6b3SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 315b81b6b3SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 325b81b6b3SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 335b81b6b3SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 345b81b6b3SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 355b81b6b3SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 365b81b6b3SRodney W. Grimes * SUCH DAMAGE. 375b81b6b3SRodney W. Grimes * 38960173b9SRodney W. Grimes * from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91 395b81b6b3SRodney W. Grimes * Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$ 40b9d60b3fSDavid Greenman * $Id: vm_machdep.c,v 1.10 1994/01/21 17:11:38 davidg Exp $ 415b81b6b3SRodney W. Grimes */ 425b81b6b3SRodney W. Grimes 43960173b9SRodney W. Grimes #include "npx.h" 445b81b6b3SRodney W. Grimes #include "param.h" 455b81b6b3SRodney W. Grimes #include "systm.h" 465b81b6b3SRodney W. Grimes #include "proc.h" 475b81b6b3SRodney W. Grimes #include "malloc.h" 485b81b6b3SRodney W. Grimes #include "buf.h" 495b81b6b3SRodney W. Grimes #include "user.h" 505b81b6b3SRodney W. Grimes 515b81b6b3SRodney W. Grimes #include "../include/cpu.h" 525b81b6b3SRodney W. Grimes 535b81b6b3SRodney W. Grimes #include "vm/vm.h" 545b81b6b3SRodney W. Grimes #include "vm/vm_kern.h" 555b81b6b3SRodney W. Grimes 565b81b6b3SRodney W. Grimes /* 575b81b6b3SRodney W. Grimes * Finish a fork operation, with process p2 nearly set up. 585b81b6b3SRodney W. Grimes * Copy and update the kernel stack and pcb, making the child 595b81b6b3SRodney W. Grimes * ready to run, and marking it so that it can return differently 605b81b6b3SRodney W. Grimes * than the parent. Returns 1 in the child process, 0 in the parent. 615b81b6b3SRodney W. Grimes * We currently double-map the user area so that the stack is at the same 625b81b6b3SRodney W. Grimes * address in each process; in the future we will probably relocate 635b81b6b3SRodney W. Grimes * the frame pointers on the stack after copying. 645b81b6b3SRodney W. Grimes */ 65381fe1aaSGarrett Wollman int 665b81b6b3SRodney W. Grimes cpu_fork(p1, p2) 675b81b6b3SRodney W. Grimes register struct proc *p1, *p2; 685b81b6b3SRodney W. Grimes { 695b81b6b3SRodney W. Grimes register struct user *up = p2->p_addr; 705b81b6b3SRodney W. Grimes int foo, offset, addr, i; 715b81b6b3SRodney W. Grimes extern char kstack[]; 725b81b6b3SRodney W. Grimes extern int mvesp(); 735b81b6b3SRodney W. Grimes 745b81b6b3SRodney W. Grimes /* 755b81b6b3SRodney W. Grimes * Copy pcb and stack from proc p1 to p2. 765b81b6b3SRodney W. Grimes * We do this as cheaply as possible, copying only the active 775b81b6b3SRodney W. Grimes * part of the stack. The stack and pcb need to agree; 785b81b6b3SRodney W. Grimes * this is tricky, as the final pcb is constructed by savectx, 795b81b6b3SRodney W. Grimes * but its frame isn't yet on the stack when the stack is copied. 805b81b6b3SRodney W. Grimes * swtch compensates for this when the child eventually runs. 815b81b6b3SRodney W. Grimes * This should be done differently, with a single call 825b81b6b3SRodney W. Grimes * that copies and updates the pcb+stack, 835b81b6b3SRodney W. Grimes * replacing the bcopy and savectx. 845b81b6b3SRodney W. Grimes */ 855b81b6b3SRodney W. Grimes p2->p_addr->u_pcb = p1->p_addr->u_pcb; 865b81b6b3SRodney W. Grimes offset = mvesp() - (int)kstack; 875b81b6b3SRodney W. Grimes bcopy((caddr_t)kstack + offset, (caddr_t)p2->p_addr + offset, 885b81b6b3SRodney W. Grimes (unsigned) ctob(UPAGES) - offset); 895b81b6b3SRodney W. Grimes p2->p_regs = p1->p_regs; 905b81b6b3SRodney W. Grimes 915b81b6b3SRodney W. Grimes /* 925b81b6b3SRodney W. Grimes * Wire top of address space of child to it's kstack. 935b81b6b3SRodney W. Grimes * First, fault in a page of pte's to map it. 945b81b6b3SRodney W. Grimes */ 957f8cb368SDavid Greenman #if 0 965b81b6b3SRodney W. Grimes addr = trunc_page((u_int)vtopte(kstack)); 975b81b6b3SRodney W. Grimes vm_map_pageable(&p2->p_vmspace->vm_map, addr, addr+NBPG, FALSE); 985b81b6b3SRodney W. Grimes for (i=0; i < UPAGES; i++) 997f8cb368SDavid Greenman pmap_enter(&p2->p_vmspace->vm_pmap, kstack+i*NBPG, 10026931201SDavid Greenman pmap_extract(kernel_pmap, ((int)p2->p_addr)+i*NBPG), 10126931201SDavid Greenman /* 10226931201SDavid Greenman * The user area has to be mapped writable because 10326931201SDavid Greenman * it contains the kernel stack (when CR0_WP is on 10426931201SDavid Greenman * on a 486 there is no user-read/kernel-write 10526931201SDavid Greenman * mode). It is protected from user mode access 10626931201SDavid Greenman * by the segment limits. 10726931201SDavid Greenman */ 10826931201SDavid Greenman VM_PROT_READ|VM_PROT_WRITE, TRUE); 1097f8cb368SDavid Greenman #endif 1105b81b6b3SRodney W. Grimes pmap_activate(&p2->p_vmspace->vm_pmap, &up->u_pcb); 1115b81b6b3SRodney W. Grimes 1125b81b6b3SRodney W. Grimes /* 1135b81b6b3SRodney W. Grimes * 1145b81b6b3SRodney W. Grimes * Arrange for a non-local goto when the new process 1155b81b6b3SRodney W. Grimes * is started, to resume here, returning nonzero from setjmp. 1165b81b6b3SRodney W. Grimes */ 1175b81b6b3SRodney W. Grimes if (savectx(up, 1)) { 1185b81b6b3SRodney W. Grimes /* 1195b81b6b3SRodney W. Grimes * Return 1 in child. 1205b81b6b3SRodney W. Grimes */ 1215b81b6b3SRodney W. Grimes return (1); 1225b81b6b3SRodney W. Grimes } 1235b81b6b3SRodney W. Grimes return (0); 1245b81b6b3SRodney W. Grimes } 1255b81b6b3SRodney W. Grimes 1265b81b6b3SRodney W. Grimes #ifdef notyet 1275b81b6b3SRodney W. Grimes /* 1285b81b6b3SRodney W. Grimes * cpu_exit is called as the last action during exit. 1295b81b6b3SRodney W. Grimes * 1305b81b6b3SRodney W. Grimes * We change to an inactive address space and a "safe" stack, 1315b81b6b3SRodney W. Grimes * passing thru an argument to the new stack. Now, safely isolated 1325b81b6b3SRodney W. Grimes * from the resources we're shedding, we release the address space 1335b81b6b3SRodney W. Grimes * and any remaining machine-dependent resources, including the 1345b81b6b3SRodney W. Grimes * memory for the user structure and kernel stack. 1355b81b6b3SRodney W. Grimes * 1365b81b6b3SRodney W. Grimes * Next, we assign a dummy context to be written over by swtch, 1375b81b6b3SRodney W. Grimes * calling it to send this process off to oblivion. 1385b81b6b3SRodney W. Grimes * [The nullpcb allows us to minimize cost in swtch() by not having 1395b81b6b3SRodney W. Grimes * a special case]. 1405b81b6b3SRodney W. Grimes */ 1415b81b6b3SRodney W. Grimes struct proc *swtch_to_inactive(); 14275124a8bSPaul Richards volatile void 1435b81b6b3SRodney W. Grimes cpu_exit(p) 1445b81b6b3SRodney W. Grimes register struct proc *p; 1455b81b6b3SRodney W. Grimes { 1465b81b6b3SRodney W. Grimes static struct pcb nullpcb; /* pcb to overwrite on last swtch */ 1475b81b6b3SRodney W. Grimes 148960173b9SRodney W. Grimes #if NNPX > 0 1495b81b6b3SRodney W. Grimes npxexit(p); 150960173b9SRodney W. Grimes #endif /* NNPX */ 1515b81b6b3SRodney W. Grimes 1525b81b6b3SRodney W. Grimes /* move to inactive space and stack, passing arg accross */ 1535b81b6b3SRodney W. Grimes p = swtch_to_inactive(p); 1545b81b6b3SRodney W. Grimes 1555b81b6b3SRodney W. Grimes /* drop per-process resources */ 1565b81b6b3SRodney W. Grimes vmspace_free(p->p_vmspace); 1575b81b6b3SRodney W. Grimes kmem_free(kernel_map, (vm_offset_t)p->p_addr, ctob(UPAGES)); 1585b81b6b3SRodney W. Grimes 1595b81b6b3SRodney W. Grimes p->p_addr = (struct user *) &nullpcb; 1605b81b6b3SRodney W. Grimes splclock(); 1615b81b6b3SRodney W. Grimes swtch(); 1625b81b6b3SRodney W. Grimes /* NOTREACHED */ 1635b81b6b3SRodney W. Grimes } 1645b81b6b3SRodney W. Grimes #else 1657c2b54e8SNate Williams void 1665b81b6b3SRodney W. Grimes cpu_exit(p) 1675b81b6b3SRodney W. Grimes register struct proc *p; 1685b81b6b3SRodney W. Grimes { 1695b81b6b3SRodney W. Grimes 170960173b9SRodney W. Grimes #if NNPX > 0 1715b81b6b3SRodney W. Grimes npxexit(p); 172960173b9SRodney W. Grimes #endif /* NNPX */ 1735b81b6b3SRodney W. Grimes splclock(); 1747f8cb368SDavid Greenman curproc = 0; 1755b81b6b3SRodney W. Grimes swtch(); 1767c2b54e8SNate Williams /* 1777c2b54e8SNate Williams * This is to shutup the compiler, and if swtch() failed I suppose 1787c2b54e8SNate Williams * this would be a good thing. This keeps gcc happy because panic 1797c2b54e8SNate Williams * is a volatile void function as well. 1807c2b54e8SNate Williams */ 1817c2b54e8SNate Williams panic("cpu_exit"); 1825b81b6b3SRodney W. Grimes } 1835b81b6b3SRodney W. Grimes 184381fe1aaSGarrett Wollman void 1857f8cb368SDavid Greenman cpu_wait(p) struct proc *p; { 1867f8cb368SDavid Greenman /* extern vm_map_t upages_map; */ 1877f8cb368SDavid Greenman extern char kstack[]; 1885b81b6b3SRodney W. Grimes 1895b81b6b3SRodney W. Grimes /* drop per-process resources */ 1907f8cb368SDavid Greenman pmap_remove(vm_map_pmap(kernel_map), (vm_offset_t) p->p_addr, 1917f8cb368SDavid Greenman ((vm_offset_t) p->p_addr) + ctob(UPAGES)); 1925b81b6b3SRodney W. Grimes kmem_free(kernel_map, (vm_offset_t)p->p_addr, ctob(UPAGES)); 1937f8cb368SDavid Greenman vmspace_free(p->p_vmspace); 1945b81b6b3SRodney W. Grimes } 1955b81b6b3SRodney W. Grimes #endif 1965b81b6b3SRodney W. Grimes 1975b81b6b3SRodney W. Grimes /* 1985b81b6b3SRodney W. Grimes * Set a red zone in the kernel stack after the u. area. 1995b81b6b3SRodney W. Grimes */ 200381fe1aaSGarrett Wollman void 2015b81b6b3SRodney W. Grimes setredzone(pte, vaddr) 2025b81b6b3SRodney W. Grimes u_short *pte; 2035b81b6b3SRodney W. Grimes caddr_t vaddr; 2045b81b6b3SRodney W. Grimes { 2055b81b6b3SRodney W. Grimes /* eventually do this by setting up an expand-down stack segment 2065b81b6b3SRodney W. Grimes for ss0: selector, allowing stack access down to top of u. 2075b81b6b3SRodney W. Grimes this means though that protection violations need to be handled 2085b81b6b3SRodney W. Grimes thru a double fault exception that must do an integral task 2095b81b6b3SRodney W. Grimes switch to a known good context, within which a dump can be 2105b81b6b3SRodney W. Grimes taken. a sensible scheme might be to save the initial context 2115b81b6b3SRodney W. Grimes used by sched (that has physical memory mapped 1:1 at bottom) 2125b81b6b3SRodney W. Grimes and take the dump while still in mapped mode */ 2135b81b6b3SRodney W. Grimes } 2145b81b6b3SRodney W. Grimes 2155b81b6b3SRodney W. Grimes /* 2165b81b6b3SRodney W. Grimes * Move pages from one kernel virtual address to another. 2175b81b6b3SRodney W. Grimes * Both addresses are assumed to reside in the Sysmap, 2185b81b6b3SRodney W. Grimes * and size must be a multiple of CLSIZE. 2195b81b6b3SRodney W. Grimes */ 220381fe1aaSGarrett Wollman void 2215b81b6b3SRodney W. Grimes pagemove(from, to, size) 2225b81b6b3SRodney W. Grimes register caddr_t from, to; 2235b81b6b3SRodney W. Grimes int size; 2245b81b6b3SRodney W. Grimes { 2255b81b6b3SRodney W. Grimes register struct pte *fpte, *tpte; 2265b81b6b3SRodney W. Grimes 2275b81b6b3SRodney W. Grimes if (size % CLBYTES) 2285b81b6b3SRodney W. Grimes panic("pagemove"); 2295b81b6b3SRodney W. Grimes fpte = kvtopte(from); 2305b81b6b3SRodney W. Grimes tpte = kvtopte(to); 2315b81b6b3SRodney W. Grimes while (size > 0) { 2325b81b6b3SRodney W. Grimes *tpte++ = *fpte; 2335b81b6b3SRodney W. Grimes *(int *)fpte++ = 0; 2345b81b6b3SRodney W. Grimes from += NBPG; 2355b81b6b3SRodney W. Grimes to += NBPG; 2365b81b6b3SRodney W. Grimes size -= NBPG; 2375b81b6b3SRodney W. Grimes } 2385b81b6b3SRodney W. Grimes tlbflush(); 2395b81b6b3SRodney W. Grimes } 2405b81b6b3SRodney W. Grimes 2415b81b6b3SRodney W. Grimes /* 2425b81b6b3SRodney W. Grimes * Convert kernel VA to physical address 2435b81b6b3SRodney W. Grimes */ 244aaf08d94SGarrett Wollman u_long 2457f8cb368SDavid Greenman kvtop(void *addr) 2465b81b6b3SRodney W. Grimes { 2475b81b6b3SRodney W. Grimes vm_offset_t va; 2485b81b6b3SRodney W. Grimes 2495b81b6b3SRodney W. Grimes va = pmap_extract(kernel_pmap, (vm_offset_t)addr); 2505b81b6b3SRodney W. Grimes if (va == 0) 2515b81b6b3SRodney W. Grimes panic("kvtop: zero page frame"); 2527f8cb368SDavid Greenman return((int)va); 2535b81b6b3SRodney W. Grimes } 2545b81b6b3SRodney W. Grimes 2555b81b6b3SRodney W. Grimes extern vm_map_t phys_map; 2565b81b6b3SRodney W. Grimes 2575b81b6b3SRodney W. Grimes /* 2585b81b6b3SRodney W. Grimes * Map an IO request into kernel virtual address space. Requests fall into 2595b81b6b3SRodney W. Grimes * one of five catagories: 2605b81b6b3SRodney W. Grimes * 2615b81b6b3SRodney W. Grimes * B_PHYS|B_UAREA: User u-area swap. 2625b81b6b3SRodney W. Grimes * Address is relative to start of u-area (p_addr). 2635b81b6b3SRodney W. Grimes * B_PHYS|B_PAGET: User page table swap. 2645b81b6b3SRodney W. Grimes * Address is a kernel VA in usrpt (Usrptmap). 2655b81b6b3SRodney W. Grimes * B_PHYS|B_DIRTY: Dirty page push. 2665b81b6b3SRodney W. Grimes * Address is a VA in proc2's address space. 2675b81b6b3SRodney W. Grimes * B_PHYS|B_PGIN: Kernel pagein of user pages. 2685b81b6b3SRodney W. Grimes * Address is VA in user's address space. 2695b81b6b3SRodney W. Grimes * B_PHYS: User "raw" IO request. 2705b81b6b3SRodney W. Grimes * Address is VA in user's address space. 2715b81b6b3SRodney W. Grimes * 2725b81b6b3SRodney W. Grimes * All requests are (re)mapped into kernel VA space via the useriomap 2735b81b6b3SRodney W. Grimes * (a name with only slightly more meaning than "kernelmap") 2745b81b6b3SRodney W. Grimes */ 275381fe1aaSGarrett Wollman void 2765b81b6b3SRodney W. Grimes vmapbuf(bp) 2775b81b6b3SRodney W. Grimes register struct buf *bp; 2785b81b6b3SRodney W. Grimes { 2795b81b6b3SRodney W. Grimes register int npf; 2805b81b6b3SRodney W. Grimes register caddr_t addr; 2815b81b6b3SRodney W. Grimes register long flags = bp->b_flags; 2825b81b6b3SRodney W. Grimes struct proc *p; 2835b81b6b3SRodney W. Grimes int off; 2845b81b6b3SRodney W. Grimes vm_offset_t kva; 2855b81b6b3SRodney W. Grimes register vm_offset_t pa; 2865b81b6b3SRodney W. Grimes 2875b81b6b3SRodney W. Grimes if ((flags & B_PHYS) == 0) 2885b81b6b3SRodney W. Grimes panic("vmapbuf"); 2895b81b6b3SRodney W. Grimes addr = bp->b_saveaddr = bp->b_un.b_addr; 2905b81b6b3SRodney W. Grimes off = (int)addr & PGOFSET; 2915b81b6b3SRodney W. Grimes p = bp->b_proc; 2925b81b6b3SRodney W. Grimes npf = btoc(round_page(bp->b_bcount + off)); 2935b81b6b3SRodney W. Grimes kva = kmem_alloc_wait(phys_map, ctob(npf)); 2945b81b6b3SRodney W. Grimes bp->b_un.b_addr = (caddr_t) (kva + off); 2955b81b6b3SRodney W. Grimes while (npf--) { 2965b81b6b3SRodney W. Grimes pa = pmap_extract(&p->p_vmspace->vm_pmap, (vm_offset_t)addr); 2975b81b6b3SRodney W. Grimes if (pa == 0) 2985b81b6b3SRodney W. Grimes panic("vmapbuf: null page frame"); 2995b81b6b3SRodney W. Grimes pmap_enter(vm_map_pmap(phys_map), kva, trunc_page(pa), 3005b81b6b3SRodney W. Grimes VM_PROT_READ|VM_PROT_WRITE, TRUE); 3015b81b6b3SRodney W. Grimes addr += PAGE_SIZE; 3025b81b6b3SRodney W. Grimes kva += PAGE_SIZE; 3035b81b6b3SRodney W. Grimes } 3045b81b6b3SRodney W. Grimes } 3055b81b6b3SRodney W. Grimes 3065b81b6b3SRodney W. Grimes /* 3075b81b6b3SRodney W. Grimes * Free the io map PTEs associated with this IO operation. 3085b81b6b3SRodney W. Grimes * We also invalidate the TLB entries and restore the original b_addr. 3095b81b6b3SRodney W. Grimes */ 310381fe1aaSGarrett Wollman void 3115b81b6b3SRodney W. Grimes vunmapbuf(bp) 3125b81b6b3SRodney W. Grimes register struct buf *bp; 3135b81b6b3SRodney W. Grimes { 3145b81b6b3SRodney W. Grimes register int npf; 3155b81b6b3SRodney W. Grimes register caddr_t addr = bp->b_un.b_addr; 3165b81b6b3SRodney W. Grimes vm_offset_t kva; 3175b81b6b3SRodney W. Grimes 3185b81b6b3SRodney W. Grimes if ((bp->b_flags & B_PHYS) == 0) 3195b81b6b3SRodney W. Grimes panic("vunmapbuf"); 3205b81b6b3SRodney W. Grimes npf = btoc(round_page(bp->b_bcount + ((int)addr & PGOFSET))); 3215b81b6b3SRodney W. Grimes kva = (vm_offset_t)((int)addr & ~PGOFSET); 3225b81b6b3SRodney W. Grimes kmem_free_wakeup(phys_map, kva, ctob(npf)); 3235b81b6b3SRodney W. Grimes bp->b_un.b_addr = bp->b_saveaddr; 3245b81b6b3SRodney W. Grimes bp->b_saveaddr = NULL; 3255b81b6b3SRodney W. Grimes } 3265b81b6b3SRodney W. Grimes 3275b81b6b3SRodney W. Grimes /* 3285b81b6b3SRodney W. Grimes * Force reset the processor by invalidating the entire address space! 3295b81b6b3SRodney W. Grimes */ 3307f8cb368SDavid Greenman void 3315b81b6b3SRodney W. Grimes cpu_reset() { 3325b81b6b3SRodney W. Grimes 3335b81b6b3SRodney W. Grimes /* force a shutdown by unmapping entire address space ! */ 3345b81b6b3SRodney W. Grimes bzero((caddr_t) PTD, NBPG); 3355b81b6b3SRodney W. Grimes 3365b81b6b3SRodney W. Grimes /* "good night, sweet prince .... <THUNK!>" */ 3375b81b6b3SRodney W. Grimes tlbflush(); 3385b81b6b3SRodney W. Grimes /* NOTREACHED */ 3397f8cb368SDavid Greenman while(1); 3405b81b6b3SRodney W. Grimes } 341b9d60b3fSDavid Greenman 342b9d60b3fSDavid Greenman /* 343b9d60b3fSDavid Greenman * Grow the user stack to allow for 'sp'. This version grows the stack in 344b9d60b3fSDavid Greenman * chunks of DFLSSIZ. It is expected (required) that there is an 345b9d60b3fSDavid Greenman * integer number of DFLSSIZ chunks in MAXSSIZ. 346b9d60b3fSDavid Greenman */ 347b9d60b3fSDavid Greenman int 348b9d60b3fSDavid Greenman grow(p, sp) 349b9d60b3fSDavid Greenman struct proc *p; 350b9d60b3fSDavid Greenman int sp; 351b9d60b3fSDavid Greenman { 352b9d60b3fSDavid Greenman unsigned int nss; 353b9d60b3fSDavid Greenman caddr_t v; 354b9d60b3fSDavid Greenman struct vmspace *vm = p->p_vmspace; 355b9d60b3fSDavid Greenman 356b9d60b3fSDavid Greenman if ((caddr_t)sp <= vm->vm_maxsaddr || (unsigned)sp >= (unsigned)USRSTACK) 357b9d60b3fSDavid Greenman return (1); 358b9d60b3fSDavid Greenman 359b9d60b3fSDavid Greenman nss = roundup(USRSTACK - (unsigned)sp, PAGE_SIZE); 360b9d60b3fSDavid Greenman 361b9d60b3fSDavid Greenman if (nss > p->p_rlimit[RLIMIT_STACK].rlim_cur) 362b9d60b3fSDavid Greenman return (0); 363b9d60b3fSDavid Greenman 364b9d60b3fSDavid Greenman if (vm->vm_ssize && roundup(vm->vm_ssize << PAGE_SHIFT, 365b9d60b3fSDavid Greenman DFLSSIZ) < nss) { 366b9d60b3fSDavid Greenman int grow_amount; 367b9d60b3fSDavid Greenman /* 368b9d60b3fSDavid Greenman * If necessary, grow the VM that the stack occupies 369b9d60b3fSDavid Greenman * to allow for the rlimit. This allows us to not have 370b9d60b3fSDavid Greenman * to allocate all of the VM up-front in execve (which 371b9d60b3fSDavid Greenman * is expensive). 372b9d60b3fSDavid Greenman * Grow the VM by the amount requested rounded up to 373b9d60b3fSDavid Greenman * the nearest DFLSSIZ to provide for some hysteresis. 374b9d60b3fSDavid Greenman */ 375b9d60b3fSDavid Greenman grow_amount = roundup((nss - (vm->vm_ssize << PAGE_SHIFT)), DFLSSIZ); 376b9d60b3fSDavid Greenman v = (char *)USRSTACK - roundup(vm->vm_ssize << PAGE_SHIFT, 377b9d60b3fSDavid Greenman DFLSSIZ) - grow_amount; 378b9d60b3fSDavid Greenman /* 379b9d60b3fSDavid Greenman * If there isn't enough room to extend by DFLSSIZ, then 380b9d60b3fSDavid Greenman * just extend to the maximum size 381b9d60b3fSDavid Greenman */ 382b9d60b3fSDavid Greenman if (v < vm->vm_maxsaddr) { 383b9d60b3fSDavid Greenman v = vm->vm_maxsaddr; 384b9d60b3fSDavid Greenman grow_amount = MAXSSIZ - (vm->vm_ssize << PAGE_SHIFT); 385b9d60b3fSDavid Greenman } 386b9d60b3fSDavid Greenman if (vm_allocate(&vm->vm_map, (vm_offset_t *)&v, 387b9d60b3fSDavid Greenman grow_amount, FALSE) != KERN_SUCCESS) { 388b9d60b3fSDavid Greenman return (0); 389b9d60b3fSDavid Greenman } 390b9d60b3fSDavid Greenman vm->vm_ssize += grow_amount >> PAGE_SHIFT; 391b9d60b3fSDavid Greenman } 392b9d60b3fSDavid Greenman 393b9d60b3fSDavid Greenman return (1); 394b9d60b3fSDavid Greenman } 395