Home | History | Annotate | Line # | Download | only in uvm
uvm_glue.c revision 1.29.2.5
      1  1.29.2.5   bouyer /*	$NetBSD: uvm_glue.c,v 1.29.2.5 2001/04/23 09:42:36 bouyer Exp $	*/
      2       1.1      mrg 
      3       1.1      mrg /*
      4       1.1      mrg  * Copyright (c) 1997 Charles D. Cranor and Washington University.
      5       1.1      mrg  * Copyright (c) 1991, 1993, The Regents of the University of California.
      6       1.1      mrg  *
      7       1.1      mrg  * All rights reserved.
      8       1.1      mrg  *
      9       1.1      mrg  * This code is derived from software contributed to Berkeley by
     10       1.1      mrg  * The Mach Operating System project at Carnegie-Mellon University.
     11       1.1      mrg  *
     12       1.1      mrg  * Redistribution and use in source and binary forms, with or without
     13       1.1      mrg  * modification, are permitted provided that the following conditions
     14       1.1      mrg  * are met:
     15       1.1      mrg  * 1. Redistributions of source code must retain the above copyright
     16       1.1      mrg  *    notice, this list of conditions and the following disclaimer.
     17       1.1      mrg  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.1      mrg  *    notice, this list of conditions and the following disclaimer in the
     19       1.1      mrg  *    documentation and/or other materials provided with the distribution.
     20       1.1      mrg  * 3. All advertising materials mentioning features or use of this software
     21       1.1      mrg  *    must display the following acknowledgement:
     22       1.1      mrg  *	This product includes software developed by Charles D. Cranor,
     23       1.1      mrg  *      Washington University, the University of California, Berkeley and
     24       1.1      mrg  *      its contributors.
     25       1.1      mrg  * 4. Neither the name of the University nor the names of its contributors
     26       1.1      mrg  *    may be used to endorse or promote products derived from this software
     27       1.1      mrg  *    without specific prior written permission.
     28       1.1      mrg  *
     29       1.1      mrg  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30       1.1      mrg  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31       1.1      mrg  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32       1.1      mrg  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33       1.1      mrg  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34       1.1      mrg  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35       1.1      mrg  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36       1.1      mrg  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37       1.1      mrg  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38       1.1      mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39       1.1      mrg  * SUCH DAMAGE.
     40       1.1      mrg  *
     41       1.1      mrg  *	@(#)vm_glue.c	8.6 (Berkeley) 1/5/94
     42       1.4      mrg  * from: Id: uvm_glue.c,v 1.1.2.8 1998/02/07 01:16:54 chs Exp
     43       1.1      mrg  *
     44       1.1      mrg  *
     45       1.1      mrg  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
     46       1.1      mrg  * All rights reserved.
     47       1.1      mrg  *
     48       1.1      mrg  * Permission to use, copy, modify and distribute this software and
     49       1.1      mrg  * its documentation is hereby granted, provided that both the copyright
     50       1.1      mrg  * notice and this permission notice appear in all copies of the
     51       1.1      mrg  * software, derivative works or modified versions, and any portions
     52       1.1      mrg  * thereof, and that both notices appear in supporting documentation.
     53       1.1      mrg  *
     54       1.1      mrg  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     55       1.1      mrg  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     56       1.1      mrg  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     57       1.1      mrg  *
     58       1.1      mrg  * Carnegie Mellon requests users of this software to return to
     59       1.1      mrg  *
     60       1.1      mrg  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     61       1.1      mrg  *  School of Computer Science
     62       1.1      mrg  *  Carnegie Mellon University
     63       1.1      mrg  *  Pittsburgh PA 15213-3890
     64       1.1      mrg  *
     65       1.1      mrg  * any improvements or extensions that they make and grant Carnegie the
     66       1.1      mrg  * rights to redistribute these changes.
     67       1.1      mrg  */
     68       1.1      mrg 
     69       1.5      mrg #include "opt_uvmhist.h"
     70      1.15     tron #include "opt_sysv.h"
     71       1.5      mrg 
     72       1.1      mrg /*
     73       1.1      mrg  * uvm_glue.c: glue functions
     74       1.1      mrg  */
     75       1.1      mrg 
     76       1.1      mrg #include <sys/param.h>
     77       1.1      mrg #include <sys/systm.h>
     78       1.1      mrg #include <sys/proc.h>
     79       1.1      mrg #include <sys/resourcevar.h>
     80       1.1      mrg #include <sys/buf.h>
     81       1.1      mrg #include <sys/user.h>
     82       1.1      mrg #ifdef SYSVSHM
     83       1.1      mrg #include <sys/shm.h>
     84       1.1      mrg #endif
     85       1.1      mrg 
     86       1.1      mrg #include <uvm/uvm.h>
     87       1.1      mrg 
     88       1.1      mrg #include <machine/cpu.h>
     89       1.1      mrg 
     90       1.1      mrg /*
     91       1.1      mrg  * local prototypes
     92       1.1      mrg  */
     93       1.1      mrg 
     94       1.1      mrg static void uvm_swapout __P((struct proc *));
     95       1.1      mrg 
     96       1.1      mrg /*
     97       1.1      mrg  * XXXCDC: do these really belong here?
     98       1.1      mrg  */
     99       1.1      mrg 
    100       1.1      mrg int readbuffers = 0;		/* allow KGDB to read kern buffer pool */
    101       1.1      mrg 				/* XXX: see uvm_kernacc */
    102       1.1      mrg 
    103       1.1      mrg 
    104       1.1      mrg /*
    105       1.1      mrg  * uvm_kernacc: can the kernel access a region of memory
    106       1.1      mrg  *
    107       1.1      mrg  * - called from malloc [DIAGNOSTIC], and /dev/kmem driver (mem.c)
    108       1.1      mrg  */
    109       1.1      mrg 
    110       1.6      mrg boolean_t
    111       1.6      mrg uvm_kernacc(addr, len, rw)
    112       1.6      mrg 	caddr_t addr;
    113      1.11   kleink 	size_t len;
    114      1.11   kleink 	int rw;
    115       1.6      mrg {
    116       1.6      mrg 	boolean_t rv;
    117      1.13      eeh 	vaddr_t saddr, eaddr;
    118       1.6      mrg 	vm_prot_t prot = rw == B_READ ? VM_PROT_READ : VM_PROT_WRITE;
    119       1.6      mrg 
    120  1.29.2.1   bouyer 	saddr = trunc_page((vaddr_t)addr);
    121  1.29.2.2   bouyer 	eaddr = round_page((vaddr_t)addr + len);
    122       1.6      mrg 	vm_map_lock_read(kernel_map);
    123       1.6      mrg 	rv = uvm_map_checkprot(kernel_map, saddr, eaddr, prot);
    124       1.6      mrg 	vm_map_unlock_read(kernel_map);
    125       1.6      mrg 
    126       1.6      mrg 	/*
    127       1.6      mrg 	 * XXX there are still some things (e.g. the buffer cache) that
    128       1.6      mrg 	 * are managed behind the VM system's back so even though an
    129       1.6      mrg 	 * address is accessible in the mind of the VM system, there may
    130       1.6      mrg 	 * not be physical pages where the VM thinks there is.  This can
    131       1.6      mrg 	 * lead to bogus allocation of pages in the kernel address space
    132       1.6      mrg 	 * or worse, inconsistencies at the pmap level.  We only worry
    133       1.6      mrg 	 * about the buffer cache for now.
    134       1.6      mrg 	 */
    135      1.13      eeh 	if (!readbuffers && rv && (eaddr > (vaddr_t)buffers &&
    136      1.13      eeh 			     saddr < (vaddr_t)buffers + MAXBSIZE * nbuf))
    137       1.6      mrg 		rv = FALSE;
    138       1.6      mrg 	return(rv);
    139       1.1      mrg }
    140       1.1      mrg 
    141       1.1      mrg /*
    142       1.1      mrg  * uvm_useracc: can the user access it?
    143       1.1      mrg  *
    144       1.1      mrg  * - called from physio() and sys___sysctl().
    145       1.1      mrg  */
    146       1.1      mrg 
    147       1.6      mrg boolean_t
    148       1.6      mrg uvm_useracc(addr, len, rw)
    149       1.6      mrg 	caddr_t addr;
    150      1.11   kleink 	size_t len;
    151      1.11   kleink 	int rw;
    152       1.1      mrg {
    153      1.25  thorpej 	vm_map_t map;
    154       1.6      mrg 	boolean_t rv;
    155       1.6      mrg 	vm_prot_t prot = rw == B_READ ? VM_PROT_READ : VM_PROT_WRITE;
    156       1.1      mrg 
    157      1.25  thorpej 	/* XXX curproc */
    158      1.25  thorpej 	map = &curproc->p_vmspace->vm_map;
    159      1.25  thorpej 
    160      1.25  thorpej 	vm_map_lock_read(map);
    161  1.29.2.1   bouyer 	rv = uvm_map_checkprot(map, trunc_page((vaddr_t)addr),
    162  1.29.2.2   bouyer 	    round_page((vaddr_t)addr + len), prot);
    163      1.25  thorpej 	vm_map_unlock_read(map);
    164      1.25  thorpej 
    165       1.6      mrg 	return(rv);
    166       1.1      mrg }
    167       1.1      mrg 
    168       1.1      mrg #ifdef KGDB
    169       1.1      mrg /*
    170       1.1      mrg  * Change protections on kernel pages from addr to addr+len
    171       1.1      mrg  * (presumably so debugger can plant a breakpoint).
    172       1.1      mrg  *
    173       1.1      mrg  * We force the protection change at the pmap level.  If we were
    174       1.1      mrg  * to use vm_map_protect a change to allow writing would be lazily-
    175       1.1      mrg  * applied meaning we would still take a protection fault, something
    176       1.1      mrg  * we really don't want to do.  It would also fragment the kernel
    177       1.1      mrg  * map unnecessarily.  We cannot use pmap_protect since it also won't
    178       1.1      mrg  * enforce a write-enable request.  Using pmap_enter is the only way
    179       1.1      mrg  * we can ensure the change takes place properly.
    180       1.1      mrg  */
    181       1.6      mrg void
    182       1.6      mrg uvm_chgkprot(addr, len, rw)
    183  1.29.2.1   bouyer 	caddr_t addr;
    184      1.11   kleink 	size_t len;
    185      1.11   kleink 	int rw;
    186       1.6      mrg {
    187       1.6      mrg 	vm_prot_t prot;
    188      1.13      eeh 	paddr_t pa;
    189      1.13      eeh 	vaddr_t sva, eva;
    190       1.6      mrg 
    191       1.6      mrg 	prot = rw == B_READ ? VM_PROT_READ : VM_PROT_READ|VM_PROT_WRITE;
    192  1.29.2.1   bouyer 	eva = round_page((vaddr_t)addr + len);
    193  1.29.2.1   bouyer 	for (sva = trunc_page((vaddr_t)addr); sva < eva; sva += PAGE_SIZE) {
    194       1.6      mrg 		/*
    195       1.6      mrg 		 * Extract physical address for the page.
    196       1.6      mrg 		 * We use a cheezy hack to differentiate physical
    197       1.6      mrg 		 * page 0 from an invalid mapping, not that it
    198       1.6      mrg 		 * really matters...
    199       1.6      mrg 		 */
    200      1.27  thorpej 		if (pmap_extract(pmap_kernel(), sva, &pa) == FALSE)
    201       1.6      mrg 			panic("chgkprot: invalid page");
    202  1.29.2.1   bouyer 		pmap_enter(pmap_kernel(), sva, pa, prot, PMAP_WIRED);
    203       1.6      mrg 	}
    204       1.1      mrg }
    205       1.1      mrg #endif
    206       1.1      mrg 
    207       1.1      mrg /*
    208       1.1      mrg  * vslock: wire user memory for I/O
    209       1.1      mrg  *
    210       1.1      mrg  * - called from physio and sys___sysctl
    211       1.1      mrg  * - XXXCDC: consider nuking this (or making it a macro?)
    212       1.1      mrg  */
    213       1.1      mrg 
    214      1.26  thorpej int
    215      1.22  thorpej uvm_vslock(p, addr, len, access_type)
    216       1.9  thorpej 	struct proc *p;
    217       1.6      mrg 	caddr_t	addr;
    218      1.11   kleink 	size_t	len;
    219      1.22  thorpej 	vm_prot_t access_type;
    220       1.1      mrg {
    221      1.26  thorpej 	vm_map_t map;
    222      1.26  thorpej 	vaddr_t start, end;
    223  1.29.2.4   bouyer 	int error;
    224      1.26  thorpej 
    225      1.26  thorpej 	map = &p->p_vmspace->vm_map;
    226  1.29.2.1   bouyer 	start = trunc_page((vaddr_t)addr);
    227  1.29.2.1   bouyer 	end = round_page((vaddr_t)addr + len);
    228  1.29.2.4   bouyer 	error = uvm_fault_wire(map, start, end, access_type);
    229  1.29.2.4   bouyer 	return error;
    230       1.1      mrg }
    231       1.1      mrg 
    232       1.1      mrg /*
    233       1.1      mrg  * vslock: wire user memory for I/O
    234       1.1      mrg  *
    235       1.1      mrg  * - called from physio and sys___sysctl
    236       1.1      mrg  * - XXXCDC: consider nuking this (or making it a macro?)
    237       1.1      mrg  */
    238       1.1      mrg 
    239       1.6      mrg void
    240       1.9  thorpej uvm_vsunlock(p, addr, len)
    241       1.9  thorpej 	struct proc *p;
    242       1.6      mrg 	caddr_t	addr;
    243      1.11   kleink 	size_t	len;
    244       1.1      mrg {
    245  1.29.2.2   bouyer 	uvm_fault_unwire(&p->p_vmspace->vm_map, trunc_page((vaddr_t)addr),
    246  1.29.2.2   bouyer 		round_page((vaddr_t)addr + len));
    247       1.1      mrg }
    248       1.1      mrg 
    249       1.1      mrg /*
    250       1.1      mrg  * uvm_fork: fork a virtual address space
    251       1.1      mrg  *
    252       1.1      mrg  * - the address space is copied as per parent map's inherit values
    253       1.1      mrg  * - a new "user" structure is allocated for the child process
    254       1.1      mrg  *	[filled in by MD layer...]
    255      1.20  thorpej  * - if specified, the child gets a new user stack described by
    256      1.20  thorpej  *	stack and stacksize
    257       1.1      mrg  * - NOTE: the kernel stack may be at a different location in the child
    258       1.1      mrg  *	process, and thus addresses of automatic variables may be invalid
    259       1.1      mrg  *	after cpu_fork returns in the child process.  We do nothing here
    260       1.1      mrg  *	after cpu_fork returns.
    261       1.1      mrg  * - XXXCDC: we need a way for this to return a failure value rather
    262       1.1      mrg  *   than just hang
    263       1.1      mrg  */
    264       1.6      mrg void
    265  1.29.2.1   bouyer uvm_fork(p1, p2, shared, stack, stacksize, func, arg)
    266       1.6      mrg 	struct proc *p1, *p2;
    267       1.6      mrg 	boolean_t shared;
    268      1.20  thorpej 	void *stack;
    269      1.20  thorpej 	size_t stacksize;
    270  1.29.2.1   bouyer 	void (*func) __P((void *));
    271  1.29.2.1   bouyer 	void *arg;
    272       1.6      mrg {
    273       1.7  thorpej 	struct user *up = p2->p_addr;
    274  1.29.2.4   bouyer 	int error;
    275       1.6      mrg 
    276  1.29.2.1   bouyer 	if (shared == TRUE) {
    277  1.29.2.1   bouyer 		p2->p_vmspace = NULL;
    278       1.6      mrg 		uvmspace_share(p1, p2);			/* share vmspace */
    279  1.29.2.1   bouyer 	} else
    280       1.6      mrg 		p2->p_vmspace = uvmspace_fork(p1->p_vmspace); /* fork vmspace */
    281       1.1      mrg 
    282       1.6      mrg 	/*
    283       1.7  thorpej 	 * Wire down the U-area for the process, which contains the PCB
    284       1.7  thorpej 	 * and the kernel stack.  Wired state is stored in p->p_flag's
    285       1.7  thorpej 	 * P_INMEM bit rather than in the vm_map_entry's wired count
    286       1.7  thorpej 	 * to prevent kernel_map fragmentation.
    287      1.21  thorpej 	 *
    288      1.21  thorpej 	 * Note the kernel stack gets read/write accesses right off
    289      1.21  thorpej 	 * the bat.
    290       1.6      mrg 	 */
    291  1.29.2.4   bouyer 	error = uvm_fault_wire(kernel_map, (vaddr_t)up,
    292      1.21  thorpej 	    (vaddr_t)up + USPACE, VM_PROT_READ | VM_PROT_WRITE);
    293  1.29.2.4   bouyer 	if (error)
    294  1.29.2.4   bouyer 		panic("uvm_fork: uvm_fault_wire failed: %d", error);
    295       1.6      mrg 
    296       1.6      mrg 	/*
    297      1.19  thorpej 	 * p_stats currently points at a field in the user struct.  Copy
    298      1.19  thorpej 	 * parts of p_stats, and zero out the rest.
    299       1.6      mrg 	 */
    300       1.6      mrg 	p2->p_stats = &up->u_stats;
    301      1.12    perry 	memset(&up->u_stats.pstat_startzero, 0,
    302  1.29.2.2   bouyer 	       ((caddr_t)&up->u_stats.pstat_endzero -
    303  1.29.2.2   bouyer 		(caddr_t)&up->u_stats.pstat_startzero));
    304      1.12    perry 	memcpy(&up->u_stats.pstat_startcopy, &p1->p_stats->pstat_startcopy,
    305  1.29.2.2   bouyer 	       ((caddr_t)&up->u_stats.pstat_endcopy -
    306  1.29.2.2   bouyer 		(caddr_t)&up->u_stats.pstat_startcopy));
    307       1.6      mrg 
    308       1.6      mrg 	/*
    309  1.29.2.1   bouyer 	 * cpu_fork() copy and update the pcb, and make the child ready
    310  1.29.2.1   bouyer 	 * to run.  If this is a normal user fork, the child will exit
    311  1.29.2.1   bouyer 	 * directly to user mode via child_return() on its first time
    312  1.29.2.1   bouyer 	 * slice and will not return here.  If this is a kernel thread,
    313  1.29.2.1   bouyer 	 * the specified entry point will be executed.
    314       1.6      mrg 	 */
    315  1.29.2.1   bouyer 	cpu_fork(p1, p2, stack, stacksize, func, arg);
    316      1.14  thorpej }
    317      1.14  thorpej 
    318      1.14  thorpej /*
    319      1.14  thorpej  * uvm_exit: exit a virtual address space
    320      1.14  thorpej  *
    321      1.14  thorpej  * - the process passed to us is a dead (pre-zombie) process; we
    322      1.14  thorpej  *   are running on a different context now (the reaper).
    323      1.14  thorpej  * - we must run in a separate thread because freeing the vmspace
    324      1.14  thorpej  *   of the dead process may block.
    325      1.14  thorpej  */
    326      1.14  thorpej void
    327      1.14  thorpej uvm_exit(p)
    328      1.14  thorpej 	struct proc *p;
    329      1.14  thorpej {
    330  1.29.2.2   bouyer 	vaddr_t va = (vaddr_t)p->p_addr;
    331      1.14  thorpej 
    332      1.14  thorpej 	uvmspace_free(p->p_vmspace);
    333  1.29.2.2   bouyer 	p->p_flag &= ~P_INMEM;
    334  1.29.2.2   bouyer 	uvm_fault_unwire(kernel_map, va, va + USPACE);
    335  1.29.2.2   bouyer 	uvm_km_free(kernel_map, va, USPACE);
    336  1.29.2.1   bouyer 	p->p_addr = NULL;
    337       1.1      mrg }
    338       1.1      mrg 
    339       1.1      mrg /*
    340       1.1      mrg  * uvm_init_limit: init per-process VM limits
    341       1.1      mrg  *
    342       1.1      mrg  * - called for process 0 and then inherited by all others.
    343       1.1      mrg  */
    344       1.6      mrg void
    345       1.6      mrg uvm_init_limits(p)
    346       1.6      mrg 	struct proc *p;
    347       1.6      mrg {
    348       1.6      mrg 
    349       1.6      mrg 	/*
    350       1.6      mrg 	 * Set up the initial limits on process VM.  Set the maximum
    351       1.6      mrg 	 * resident set size to be all of (reasonably) available memory.
    352       1.6      mrg 	 * This causes any single, large process to start random page
    353       1.6      mrg 	 * replacement once it fills memory.
    354       1.6      mrg 	 */
    355       1.6      mrg 
    356       1.6      mrg 	p->p_rlimit[RLIMIT_STACK].rlim_cur = DFLSSIZ;
    357       1.6      mrg 	p->p_rlimit[RLIMIT_STACK].rlim_max = MAXSSIZ;
    358       1.6      mrg 	p->p_rlimit[RLIMIT_DATA].rlim_cur = DFLDSIZ;
    359       1.6      mrg 	p->p_rlimit[RLIMIT_DATA].rlim_max = MAXDSIZ;
    360       1.6      mrg 	p->p_rlimit[RLIMIT_RSS].rlim_cur = ptoa(uvmexp.free);
    361       1.1      mrg }
    362       1.1      mrg 
    363       1.1      mrg #ifdef DEBUG
    364       1.1      mrg int	enableswap = 1;
    365       1.1      mrg int	swapdebug = 0;
    366       1.1      mrg #define	SDB_FOLLOW	1
    367       1.1      mrg #define SDB_SWAPIN	2
    368       1.1      mrg #define SDB_SWAPOUT	4
    369       1.1      mrg #endif
    370       1.1      mrg 
    371       1.1      mrg /*
    372       1.1      mrg  * uvm_swapin: swap in a process's u-area.
    373       1.1      mrg  */
    374       1.1      mrg 
    375       1.6      mrg void
    376       1.6      mrg uvm_swapin(p)
    377       1.6      mrg 	struct proc *p;
    378       1.6      mrg {
    379      1.13      eeh 	vaddr_t addr;
    380       1.6      mrg 	int s;
    381       1.6      mrg 
    382      1.13      eeh 	addr = (vaddr_t)p->p_addr;
    383       1.6      mrg 	/* make P_INMEM true */
    384      1.21  thorpej 	uvm_fault_wire(kernel_map, addr, addr + USPACE,
    385      1.21  thorpej 	    VM_PROT_READ | VM_PROT_WRITE);
    386       1.6      mrg 
    387       1.6      mrg 	/*
    388       1.6      mrg 	 * Some architectures need to be notified when the user area has
    389       1.6      mrg 	 * moved to new physical page(s) (e.g.  see mips/mips/vm_machdep.c).
    390       1.6      mrg 	 */
    391       1.6      mrg 	cpu_swapin(p);
    392  1.29.2.1   bouyer 	SCHED_LOCK(s);
    393       1.6      mrg 	if (p->p_stat == SRUN)
    394       1.6      mrg 		setrunqueue(p);
    395       1.6      mrg 	p->p_flag |= P_INMEM;
    396  1.29.2.1   bouyer 	SCHED_UNLOCK(s);
    397       1.6      mrg 	p->p_swtime = 0;
    398       1.6      mrg 	++uvmexp.swapins;
    399       1.1      mrg }
    400       1.1      mrg 
    401       1.1      mrg /*
    402       1.1      mrg  * uvm_scheduler: process zero main loop
    403       1.1      mrg  *
    404       1.1      mrg  * - attempt to swapin every swaped-out, runnable process in order of
    405       1.1      mrg  *	priority.
    406       1.1      mrg  * - if not enough memory, wake the pagedaemon and let it clear space.
    407       1.1      mrg  */
    408       1.1      mrg 
    409       1.6      mrg void
    410       1.6      mrg uvm_scheduler()
    411       1.1      mrg {
    412  1.29.2.1   bouyer 	struct proc *p;
    413  1.29.2.1   bouyer 	int pri;
    414       1.6      mrg 	struct proc *pp;
    415       1.6      mrg 	int ppri;
    416       1.1      mrg 
    417       1.1      mrg loop:
    418       1.1      mrg #ifdef DEBUG
    419       1.6      mrg 	while (!enableswap)
    420  1.29.2.2   bouyer 		tsleep(&proc0, PVM, "noswap", 0);
    421       1.1      mrg #endif
    422       1.6      mrg 	pp = NULL;		/* process to choose */
    423       1.6      mrg 	ppri = INT_MIN;	/* its priority */
    424      1.29  thorpej 	proclist_lock_read();
    425  1.29.2.2   bouyer 	LIST_FOREACH(p, &allproc, p_list) {
    426       1.6      mrg 
    427       1.6      mrg 		/* is it a runnable swapped out process? */
    428       1.6      mrg 		if (p->p_stat == SRUN && (p->p_flag & P_INMEM) == 0) {
    429       1.6      mrg 			pri = p->p_swtime + p->p_slptime -
    430       1.6      mrg 			    (p->p_nice - NZERO) * 8;
    431       1.6      mrg 			if (pri > ppri) {   /* higher priority?  remember it. */
    432       1.6      mrg 				pp = p;
    433       1.6      mrg 				ppri = pri;
    434       1.6      mrg 			}
    435       1.6      mrg 		}
    436       1.6      mrg 	}
    437  1.29.2.1   bouyer 	/*
    438  1.29.2.1   bouyer 	 * XXXSMP: possible unlock/sleep race between here and the
    439  1.29.2.1   bouyer 	 * "scheduler" tsleep below..
    440  1.29.2.1   bouyer 	 */
    441      1.28  thorpej 	proclist_unlock_read();
    442       1.1      mrg 
    443       1.1      mrg #ifdef DEBUG
    444       1.6      mrg 	if (swapdebug & SDB_FOLLOW)
    445       1.6      mrg 		printf("scheduler: running, procp %p pri %d\n", pp, ppri);
    446       1.1      mrg #endif
    447       1.6      mrg 	/*
    448       1.6      mrg 	 * Nothing to do, back to sleep
    449       1.6      mrg 	 */
    450       1.6      mrg 	if ((p = pp) == NULL) {
    451  1.29.2.2   bouyer 		tsleep(&proc0, PVM, "scheduler", 0);
    452       1.6      mrg 		goto loop;
    453       1.6      mrg 	}
    454       1.6      mrg 
    455       1.6      mrg 	/*
    456       1.6      mrg 	 * we have found swapped out process which we would like to bring
    457       1.6      mrg 	 * back in.
    458       1.6      mrg 	 *
    459       1.6      mrg 	 * XXX: this part is really bogus cuz we could deadlock on memory
    460       1.6      mrg 	 * despite our feeble check
    461       1.6      mrg 	 */
    462       1.6      mrg 	if (uvmexp.free > atop(USPACE)) {
    463       1.1      mrg #ifdef DEBUG
    464       1.6      mrg 		if (swapdebug & SDB_SWAPIN)
    465       1.6      mrg 			printf("swapin: pid %d(%s)@%p, pri %d free %d\n",
    466       1.1      mrg 	     p->p_pid, p->p_comm, p->p_addr, ppri, uvmexp.free);
    467       1.1      mrg #endif
    468       1.6      mrg 		uvm_swapin(p);
    469       1.6      mrg 		goto loop;
    470       1.6      mrg 	}
    471       1.6      mrg 	/*
    472       1.6      mrg 	 * not enough memory, jab the pageout daemon and wait til the coast
    473       1.6      mrg 	 * is clear
    474       1.6      mrg 	 */
    475       1.1      mrg #ifdef DEBUG
    476       1.6      mrg 	if (swapdebug & SDB_FOLLOW)
    477       1.6      mrg 		printf("scheduler: no room for pid %d(%s), free %d\n",
    478       1.1      mrg 	   p->p_pid, p->p_comm, uvmexp.free);
    479       1.1      mrg #endif
    480       1.6      mrg 	uvm_wait("schedpwait");
    481       1.1      mrg #ifdef DEBUG
    482       1.6      mrg 	if (swapdebug & SDB_FOLLOW)
    483       1.6      mrg 		printf("scheduler: room again, free %d\n", uvmexp.free);
    484       1.1      mrg #endif
    485       1.6      mrg 	goto loop;
    486       1.1      mrg }
    487       1.1      mrg 
    488       1.1      mrg /*
    489       1.1      mrg  * swappable: is process "p" swappable?
    490       1.1      mrg  */
    491       1.1      mrg 
    492       1.1      mrg #define	swappable(p)							\
    493       1.1      mrg 	(((p)->p_flag & (P_SYSTEM | P_INMEM | P_WEXIT)) == P_INMEM &&	\
    494       1.1      mrg 	 (p)->p_holdcnt == 0)
    495       1.1      mrg 
    496       1.1      mrg /*
    497       1.1      mrg  * swapout_threads: find threads that can be swapped and unwire their
    498       1.1      mrg  *	u-areas.
    499       1.1      mrg  *
    500       1.1      mrg  * - called by the pagedaemon
    501       1.1      mrg  * - try and swap at least one processs
    502       1.1      mrg  * - processes that are sleeping or stopped for maxslp or more seconds
    503       1.1      mrg  *   are swapped... otherwise the longest-sleeping or stopped process
    504       1.1      mrg  *   is swapped, otherwise the longest resident process...
    505       1.1      mrg  */
    506       1.6      mrg void
    507       1.6      mrg uvm_swapout_threads()
    508       1.1      mrg {
    509  1.29.2.1   bouyer 	struct proc *p;
    510       1.6      mrg 	struct proc *outp, *outp2;
    511       1.6      mrg 	int outpri, outpri2;
    512       1.6      mrg 	int didswap = 0;
    513       1.6      mrg 	extern int maxslp;
    514       1.6      mrg 	/* XXXCDC: should move off to uvmexp. or uvm., also in uvm_meter */
    515       1.1      mrg 
    516       1.1      mrg #ifdef DEBUG
    517       1.6      mrg 	if (!enableswap)
    518       1.6      mrg 		return;
    519       1.1      mrg #endif
    520       1.1      mrg 
    521       1.6      mrg 	/*
    522       1.6      mrg 	 * outp/outpri  : stop/sleep process with largest sleeptime < maxslp
    523       1.6      mrg 	 * outp2/outpri2: the longest resident process (its swap time)
    524       1.6      mrg 	 */
    525       1.6      mrg 	outp = outp2 = NULL;
    526       1.6      mrg 	outpri = outpri2 = 0;
    527      1.29  thorpej 	proclist_lock_read();
    528  1.29.2.2   bouyer 	LIST_FOREACH(p, &allproc, p_list) {
    529       1.6      mrg 		if (!swappable(p))
    530       1.6      mrg 			continue;
    531       1.6      mrg 		switch (p->p_stat) {
    532       1.6      mrg 		case SRUN:
    533  1.29.2.1   bouyer 		case SONPROC:
    534       1.6      mrg 			if (p->p_swtime > outpri2) {
    535       1.6      mrg 				outp2 = p;
    536       1.6      mrg 				outpri2 = p->p_swtime;
    537       1.6      mrg 			}
    538       1.6      mrg 			continue;
    539       1.1      mrg 
    540       1.6      mrg 		case SSLEEP:
    541       1.6      mrg 		case SSTOP:
    542       1.6      mrg 			if (p->p_slptime >= maxslp) {
    543  1.29.2.2   bouyer 				uvm_swapout(p);
    544       1.6      mrg 				didswap++;
    545       1.6      mrg 			} else if (p->p_slptime > outpri) {
    546       1.6      mrg 				outp = p;
    547       1.6      mrg 				outpri = p->p_slptime;
    548       1.6      mrg 			}
    549       1.6      mrg 			continue;
    550       1.6      mrg 		}
    551       1.6      mrg 	}
    552      1.28  thorpej 	proclist_unlock_read();
    553       1.6      mrg 
    554       1.6      mrg 	/*
    555       1.6      mrg 	 * If we didn't get rid of any real duds, toss out the next most
    556       1.6      mrg 	 * likely sleeping/stopped or running candidate.  We only do this
    557       1.6      mrg 	 * if we are real low on memory since we don't gain much by doing
    558       1.6      mrg 	 * it (USPACE bytes).
    559       1.6      mrg 	 */
    560       1.6      mrg 	if (didswap == 0 && uvmexp.free <= atop(round_page(USPACE))) {
    561       1.6      mrg 		if ((p = outp) == NULL)
    562       1.6      mrg 			p = outp2;
    563       1.1      mrg #ifdef DEBUG
    564       1.6      mrg 		if (swapdebug & SDB_SWAPOUT)
    565       1.6      mrg 			printf("swapout_threads: no duds, try procp %p\n", p);
    566       1.1      mrg #endif
    567       1.6      mrg 		if (p)
    568       1.6      mrg 			uvm_swapout(p);
    569       1.6      mrg 	}
    570       1.1      mrg }
    571       1.1      mrg 
    572       1.1      mrg /*
    573       1.1      mrg  * uvm_swapout: swap out process "p"
    574       1.1      mrg  *
    575       1.1      mrg  * - currently "swapout" means "unwire U-area" and "pmap_collect()"
    576       1.1      mrg  *   the pmap.
    577       1.1      mrg  * - XXXCDC: should deactivate all process' private anonymous memory
    578       1.1      mrg  */
    579       1.1      mrg 
    580       1.6      mrg static void
    581       1.6      mrg uvm_swapout(p)
    582  1.29.2.1   bouyer 	struct proc *p;
    583       1.1      mrg {
    584      1.13      eeh 	vaddr_t addr;
    585       1.6      mrg 	int s;
    586       1.1      mrg 
    587       1.1      mrg #ifdef DEBUG
    588       1.6      mrg 	if (swapdebug & SDB_SWAPOUT)
    589       1.6      mrg 		printf("swapout: pid %d(%s)@%p, stat %x pri %d free %d\n",
    590       1.1      mrg 	   p->p_pid, p->p_comm, p->p_addr, p->p_stat,
    591       1.1      mrg 	   p->p_slptime, uvmexp.free);
    592       1.1      mrg #endif
    593       1.1      mrg 
    594       1.6      mrg 	/*
    595       1.6      mrg 	 * Do any machine-specific actions necessary before swapout.
    596       1.6      mrg 	 * This can include saving floating point state, etc.
    597       1.6      mrg 	 */
    598       1.6      mrg 	cpu_swapout(p);
    599       1.6      mrg 
    600       1.6      mrg 	/*
    601       1.6      mrg 	 * Mark it as (potentially) swapped out.
    602       1.6      mrg 	 */
    603  1.29.2.1   bouyer 	SCHED_LOCK(s);
    604       1.6      mrg 	p->p_flag &= ~P_INMEM;
    605       1.6      mrg 	if (p->p_stat == SRUN)
    606       1.6      mrg 		remrunqueue(p);
    607  1.29.2.1   bouyer 	SCHED_UNLOCK(s);
    608       1.6      mrg 	p->p_swtime = 0;
    609       1.6      mrg 	++uvmexp.swapouts;
    610  1.29.2.2   bouyer 
    611  1.29.2.2   bouyer 	/*
    612  1.29.2.2   bouyer 	 * Unwire the to-be-swapped process's user struct and kernel stack.
    613  1.29.2.2   bouyer 	 */
    614  1.29.2.2   bouyer 	addr = (vaddr_t)p->p_addr;
    615  1.29.2.2   bouyer 	uvm_fault_unwire(kernel_map, addr, addr + USPACE); /* !P_INMEM */
    616  1.29.2.2   bouyer 	pmap_collect(vm_map_pmap(&p->p_vmspace->vm_map));
    617       1.1      mrg }
    618       1.1      mrg 
    619