vm_glue.c revision 114166
1/*
2 * Copyright (c) 1991, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * The Mach Operating System project at Carnegie-Mellon University.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 *    must display the following acknowledgement:
18 *	This product includes software developed by the University of
19 *	California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 *    may be used to endorse or promote products derived from this software
22 *    without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 *	from: @(#)vm_glue.c	8.6 (Berkeley) 1/5/94
37 *
38 *
39 * Copyright (c) 1987, 1990 Carnegie-Mellon University.
40 * All rights reserved.
41 *
42 * Permission to use, copy, modify and distribute this software and
43 * its documentation is hereby granted, provided that both the copyright
44 * notice and this permission notice appear in all copies of the
45 * software, derivative works or modified versions, and any portions
46 * thereof, and that both notices appear in supporting documentation.
47 *
48 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
49 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
50 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
51 *
52 * Carnegie Mellon requests users of this software to return to
53 *
54 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
55 *  School of Computer Science
56 *  Carnegie Mellon University
57 *  Pittsburgh PA 15213-3890
58 *
59 * any improvements or extensions that they make and grant Carnegie the
60 * rights to redistribute these changes.
61 *
62 * $FreeBSD: head/sys/vm/vm_glue.c 114166 2003-04-28 17:13:53Z alc $
63 */
64
65#include "opt_vm.h"
66
67#include <sys/param.h>
68#include <sys/systm.h>
69#include <sys/lock.h>
70#include <sys/mutex.h>
71#include <sys/proc.h>
72#include <sys/resourcevar.h>
73#include <sys/shm.h>
74#include <sys/vmmeter.h>
75#include <sys/sx.h>
76#include <sys/sysctl.h>
77
78#include <sys/kernel.h>
79#include <sys/ktr.h>
80#include <sys/unistd.h>
81
82#include <machine/limits.h>
83
84#include <vm/vm.h>
85#include <vm/vm_param.h>
86#include <vm/pmap.h>
87#include <vm/vm_map.h>
88#include <vm/vm_page.h>
89#include <vm/vm_pageout.h>
90#include <vm/vm_object.h>
91#include <vm/vm_kern.h>
92#include <vm/vm_extern.h>
93#include <vm/vm_pager.h>
94#include <vm/swap_pager.h>
95
96#include <sys/user.h>
97
98extern int maxslp;
99
100/*
101 * System initialization
102 *
103 * Note: proc0 from proc.h
104 */
105static void vm_init_limits(void *);
106SYSINIT(vm_limits, SI_SUB_VM_CONF, SI_ORDER_FIRST, vm_init_limits, &proc0)
107
108/*
109 * THIS MUST BE THE LAST INITIALIZATION ITEM!!!
110 *
111 * Note: run scheduling should be divorced from the vm system.
112 */
113static void scheduler(void *);
114SYSINIT(scheduler, SI_SUB_RUN_SCHEDULER, SI_ORDER_FIRST, scheduler, NULL)
115
116#ifndef NO_SWAPPING
117static void swapout(struct proc *);
118static void vm_proc_swapin(struct proc *p);
119static void vm_proc_swapout(struct proc *p);
120#endif
121
122/*
123 * MPSAFE
124 *
125 * WARNING!  This code calls vm_map_check_protection() which only checks
126 * the associated vm_map_entry range.  It does not determine whether the
127 * contents of the memory is actually readable or writable.  In most cases
128 * just checking the vm_map_entry is sufficient within the kernel's address
129 * space.
130 */
131int
132kernacc(addr, len, rw)
133	void *addr;
134	int len, rw;
135{
136	boolean_t rv;
137	vm_offset_t saddr, eaddr;
138	vm_prot_t prot;
139
140	KASSERT((rw & ~VM_PROT_ALL) == 0,
141	    ("illegal ``rw'' argument to kernacc (%x)\n", rw));
142	prot = rw;
143	saddr = trunc_page((vm_offset_t)addr);
144	eaddr = round_page((vm_offset_t)addr + len);
145	rv = vm_map_check_protection(kernel_map, saddr, eaddr, prot);
146	return (rv == TRUE);
147}
148
149/*
150 * MPSAFE
151 *
152 * WARNING!  This code calls vm_map_check_protection() which only checks
153 * the associated vm_map_entry range.  It does not determine whether the
154 * contents of the memory is actually readable or writable.  vmapbuf(),
155 * vm_fault_quick(), or copyin()/copout()/su*()/fu*() functions should be
156 * used in conjuction with this call.
157 */
158int
159useracc(addr, len, rw)
160	void *addr;
161	int len, rw;
162{
163	boolean_t rv;
164	vm_prot_t prot;
165	vm_map_t map;
166
167	KASSERT((rw & ~VM_PROT_ALL) == 0,
168	    ("illegal ``rw'' argument to useracc (%x)\n", rw));
169	prot = rw;
170	map = &curproc->p_vmspace->vm_map;
171	if ((vm_offset_t)addr + len > vm_map_max(map) ||
172	    (vm_offset_t)addr + len < (vm_offset_t)addr) {
173		return (FALSE);
174	}
175	rv = vm_map_check_protection(map, trunc_page((vm_offset_t)addr),
176	    round_page((vm_offset_t)addr + len), prot);
177	return (rv == TRUE);
178}
179
180/*
181 * MPSAFE
182 */
183void
184vslock(addr, len)
185	void *addr;
186	u_int len;
187{
188
189	vm_map_wire(&curproc->p_vmspace->vm_map, trunc_page((vm_offset_t)addr),
190	    round_page((vm_offset_t)addr + len), FALSE);
191}
192
193/*
194 * MPSAFE
195 */
196void
197vsunlock(addr, len)
198	void *addr;
199	u_int len;
200{
201
202	vm_map_unwire(&curproc->p_vmspace->vm_map,
203	    trunc_page((vm_offset_t)addr),
204	    round_page((vm_offset_t)addr + len), FALSE);
205}
206
207/*
208 * Create the U area for a new process.
209 * This routine directly affects the fork perf for a process.
210 */
211void
212vm_proc_new(struct proc *p)
213{
214	vm_page_t ma[UAREA_PAGES];
215	vm_object_t upobj;
216	vm_offset_t up;
217	vm_page_t m;
218	u_int i;
219
220	/*
221	 * Allocate object for the upage.
222	 */
223	upobj = vm_object_allocate(OBJT_DEFAULT, UAREA_PAGES);
224	p->p_upages_obj = upobj;
225
226	/*
227	 * Get a kernel virtual address for the U area for this process.
228	 */
229	up = kmem_alloc_nofault(kernel_map, UAREA_PAGES * PAGE_SIZE);
230	if (up == 0)
231		panic("vm_proc_new: upage allocation failed");
232	p->p_uarea = (struct user *)up;
233
234	for (i = 0; i < UAREA_PAGES; i++) {
235		/*
236		 * Get a uarea page.
237		 */
238		m = vm_page_grab(upobj, i,
239		    VM_ALLOC_NORMAL | VM_ALLOC_RETRY | VM_ALLOC_WIRED);
240		ma[i] = m;
241
242		vm_page_lock_queues();
243		vm_page_wakeup(m);
244		vm_page_flag_clear(m, PG_ZERO);
245		m->valid = VM_PAGE_BITS_ALL;
246		vm_page_unlock_queues();
247	}
248
249	/*
250	 * Enter the pages into the kernel address space.
251	 */
252	pmap_qenter(up, ma, UAREA_PAGES);
253}
254
255/*
256 * Dispose the U area for a process that has exited.
257 * This routine directly impacts the exit perf of a process.
258 * XXX proc_zone is marked UMA_ZONE_NOFREE, so this should never be called.
259 */
260void
261vm_proc_dispose(struct proc *p)
262{
263	vm_object_t upobj;
264	vm_offset_t up;
265	vm_page_t m;
266
267	upobj = p->p_upages_obj;
268	VM_OBJECT_LOCK(upobj);
269	if (upobj->resident_page_count != UAREA_PAGES)
270		panic("vm_proc_dispose: incorrect number of pages in upobj");
271	vm_page_lock_queues();
272	while ((m = TAILQ_FIRST(&upobj->memq)) != NULL) {
273		vm_page_busy(m);
274		vm_page_unwire(m, 0);
275		vm_page_free(m);
276	}
277	vm_page_unlock_queues();
278	VM_OBJECT_UNLOCK(upobj);
279	up = (vm_offset_t)p->p_uarea;
280	pmap_qremove(up, UAREA_PAGES);
281	kmem_free(kernel_map, up, UAREA_PAGES * PAGE_SIZE);
282	vm_object_deallocate(upobj);
283}
284
285#ifndef NO_SWAPPING
286/*
287 * Allow the U area for a process to be prejudicially paged out.
288 */
289static void
290vm_proc_swapout(struct proc *p)
291{
292	vm_object_t upobj;
293	vm_offset_t up;
294	vm_page_t m;
295
296	upobj = p->p_upages_obj;
297	VM_OBJECT_LOCK(upobj);
298	if (upobj->resident_page_count != UAREA_PAGES)
299		panic("vm_proc_dispose: incorrect number of pages in upobj");
300	vm_page_lock_queues();
301	TAILQ_FOREACH(m, &upobj->memq, listq) {
302		vm_page_dirty(m);
303		vm_page_unwire(m, 0);
304	}
305	vm_page_unlock_queues();
306	VM_OBJECT_UNLOCK(upobj);
307	up = (vm_offset_t)p->p_uarea;
308	pmap_qremove(up, UAREA_PAGES);
309}
310
311/*
312 * Bring the U area for a specified process back in.
313 */
314static void
315vm_proc_swapin(struct proc *p)
316{
317	vm_page_t ma[UAREA_PAGES];
318	vm_object_t upobj;
319	vm_offset_t up;
320	vm_page_t m;
321	int rv;
322	int i;
323
324	upobj = p->p_upages_obj;
325	for (i = 0; i < UAREA_PAGES; i++) {
326		m = vm_page_grab(upobj, i, VM_ALLOC_NORMAL | VM_ALLOC_RETRY);
327		if (m->valid != VM_PAGE_BITS_ALL) {
328			rv = vm_pager_get_pages(upobj, &m, 1, 0);
329			if (rv != VM_PAGER_OK)
330				panic("vm_proc_swapin: cannot get upage");
331		}
332		ma[i] = m;
333	}
334	VM_OBJECT_LOCK(upobj);
335	if (upobj->resident_page_count != UAREA_PAGES)
336		panic("vm_proc_swapin: lost pages from upobj");
337	vm_page_lock_queues();
338	TAILQ_FOREACH(m, &upobj->memq, listq) {
339		m->valid = VM_PAGE_BITS_ALL;
340		vm_page_wire(m);
341		vm_page_wakeup(m);
342	}
343	vm_page_unlock_queues();
344	VM_OBJECT_UNLOCK(upobj);
345	up = (vm_offset_t)p->p_uarea;
346	pmap_qenter(up, ma, UAREA_PAGES);
347}
348
349/*
350 * Swap in the UAREAs of all processes swapped out to the given device.
351 * The pages in the UAREA are marked dirty and their swap metadata is freed.
352 */
353void
354vm_proc_swapin_all(int devidx)
355{
356	struct proc *p;
357	vm_object_t object;
358	vm_page_t m;
359
360retry:
361	sx_slock(&allproc_lock);
362	FOREACH_PROC_IN_SYSTEM(p) {
363		PROC_LOCK(p);
364		object = p->p_upages_obj;
365		if (object != NULL) {
366			VM_OBJECT_LOCK(object);
367			if (swap_pager_isswapped(object, devidx)) {
368				VM_OBJECT_UNLOCK(object);
369				sx_sunlock(&allproc_lock);
370				faultin(p);
371				PROC_UNLOCK(p);
372				VM_OBJECT_LOCK(object);
373				vm_page_lock_queues();
374				TAILQ_FOREACH(m, &object->memq, listq)
375					vm_page_dirty(m);
376				vm_page_unlock_queues();
377				swap_pager_freespace(object, 0,
378				    object->un_pager.swp.swp_bcount);
379				VM_OBJECT_UNLOCK(object);
380				goto retry;
381			}
382			VM_OBJECT_UNLOCK(object);
383		}
384		PROC_UNLOCK(p);
385	}
386	sx_sunlock(&allproc_lock);
387}
388#endif
389
390/*
391 * Implement fork's actions on an address space.
392 * Here we arrange for the address space to be copied or referenced,
393 * allocate a user struct (pcb and kernel stack), then call the
394 * machine-dependent layer to fill those in and make the new process
395 * ready to run.  The new process is set up so that it returns directly
396 * to user mode to avoid stack copying and relocation problems.
397 */
398void
399vm_forkproc(td, p2, td2, flags)
400	struct thread *td;
401	struct proc *p2;
402	struct thread *td2;
403	int flags;
404{
405	struct proc *p1 = td->td_proc;
406	struct user *up;
407
408	GIANT_REQUIRED;
409
410	if ((flags & RFPROC) == 0) {
411		/*
412		 * Divorce the memory, if it is shared, essentially
413		 * this changes shared memory amongst threads, into
414		 * COW locally.
415		 */
416		if ((flags & RFMEM) == 0) {
417			if (p1->p_vmspace->vm_refcnt > 1) {
418				vmspace_unshare(p1);
419			}
420		}
421		cpu_fork(td, p2, td2, flags);
422		return;
423	}
424
425	if (flags & RFMEM) {
426		p2->p_vmspace = p1->p_vmspace;
427		p1->p_vmspace->vm_refcnt++;
428	}
429
430	while (vm_page_count_severe()) {
431		VM_WAIT;
432	}
433
434	if ((flags & RFMEM) == 0) {
435		p2->p_vmspace = vmspace_fork(p1->p_vmspace);
436
437		pmap_pinit2(vmspace_pmap(p2->p_vmspace));
438
439		if (p1->p_vmspace->vm_shm)
440			shmfork(p1, p2);
441	}
442
443	/* XXXKSE this is unsatisfactory but should be adequate */
444	up = p2->p_uarea;
445
446	/*
447	 * p_stats currently points at fields in the user struct
448	 * but not at &u, instead at p_addr. Copy parts of
449	 * p_stats; zero the rest of p_stats (statistics).
450	 *
451	 * If procsig->ps_refcnt is 1 and p2->p_sigacts is NULL we dont' need
452	 * to share sigacts, so we use the up->u_sigacts.
453	 */
454	p2->p_stats = &up->u_stats;
455	if (p2->p_sigacts == NULL) {
456		if (p2->p_procsig->ps_refcnt != 1)
457			printf ("PID:%d NULL sigacts with refcnt not 1!\n",p2->p_pid);
458		p2->p_sigacts = &up->u_sigacts;
459		up->u_sigacts = *p1->p_sigacts;
460	}
461
462	bzero(&up->u_stats.pstat_startzero,
463	    (unsigned) ((caddr_t) &up->u_stats.pstat_endzero -
464		(caddr_t) &up->u_stats.pstat_startzero));
465	bcopy(&p1->p_stats->pstat_startcopy, &up->u_stats.pstat_startcopy,
466	    ((caddr_t) &up->u_stats.pstat_endcopy -
467		(caddr_t) &up->u_stats.pstat_startcopy));
468
469
470	/*
471	 * cpu_fork will copy and update the pcb, set up the kernel stack,
472	 * and make the child ready to run.
473	 */
474	cpu_fork(td, p2, td2, flags);
475}
476
477/*
478 * Called after process has been wait(2)'ed apon and is being reaped.
479 * The idea is to reclaim resources that we could not reclaim while
480 * the process was still executing.
481 */
482void
483vm_waitproc(p)
484	struct proc *p;
485{
486
487	GIANT_REQUIRED;
488	cpu_wait(p);
489	vmspace_exitfree(p);		/* and clean-out the vmspace */
490}
491
492/*
493 * Set default limits for VM system.
494 * Called for proc 0, and then inherited by all others.
495 *
496 * XXX should probably act directly on proc0.
497 */
498static void
499vm_init_limits(udata)
500	void *udata;
501{
502	struct proc *p = udata;
503	int rss_limit;
504
505	/*
506	 * Set up the initial limits on process VM. Set the maximum resident
507	 * set size to be half of (reasonably) available memory.  Since this
508	 * is a soft limit, it comes into effect only when the system is out
509	 * of memory - half of main memory helps to favor smaller processes,
510	 * and reduces thrashing of the object cache.
511	 */
512	p->p_rlimit[RLIMIT_STACK].rlim_cur = dflssiz;
513	p->p_rlimit[RLIMIT_STACK].rlim_max = maxssiz;
514	p->p_rlimit[RLIMIT_DATA].rlim_cur = dfldsiz;
515	p->p_rlimit[RLIMIT_DATA].rlim_max = maxdsiz;
516	/* limit the limit to no less than 2MB */
517	rss_limit = max(cnt.v_free_count, 512);
518	p->p_rlimit[RLIMIT_RSS].rlim_cur = ptoa(rss_limit);
519	p->p_rlimit[RLIMIT_RSS].rlim_max = RLIM_INFINITY;
520}
521
522void
523faultin(p)
524	struct proc *p;
525{
526#ifdef NO_SWAPPING
527
528	PROC_LOCK_ASSERT(p, MA_OWNED);
529	if ((p->p_sflag & PS_INMEM) == 0)
530		panic("faultin: proc swapped out with NO_SWAPPING!");
531#else /* !NO_SWAPPING */
532	struct thread *td;
533
534	GIANT_REQUIRED;
535	PROC_LOCK_ASSERT(p, MA_OWNED);
536	/*
537	 * If another process is swapping in this process,
538	 * just wait until it finishes.
539	 */
540	if (p->p_sflag & PS_SWAPPINGIN)
541		msleep(&p->p_sflag, &p->p_mtx, PVM, "faultin", 0);
542	else if ((p->p_sflag & PS_INMEM) == 0) {
543		/*
544		 * Don't let another thread swap process p out while we are
545		 * busy swapping it in.
546		 */
547		++p->p_lock;
548		mtx_lock_spin(&sched_lock);
549		p->p_sflag |= PS_SWAPPINGIN;
550		mtx_unlock_spin(&sched_lock);
551		PROC_UNLOCK(p);
552
553		vm_proc_swapin(p);
554		FOREACH_THREAD_IN_PROC(p, td)
555			pmap_swapin_thread(td);
556
557		PROC_LOCK(p);
558		mtx_lock_spin(&sched_lock);
559		p->p_sflag &= ~PS_SWAPPINGIN;
560		p->p_sflag |= PS_INMEM;
561		FOREACH_THREAD_IN_PROC(p, td) {
562			TD_CLR_SWAPPED(td);
563			if (TD_CAN_RUN(td))
564				setrunnable(td);
565		}
566		mtx_unlock_spin(&sched_lock);
567
568		wakeup(&p->p_sflag);
569
570		/* Allow other threads to swap p out now. */
571		--p->p_lock;
572	}
573#endif /* NO_SWAPPING */
574}
575
576/*
577 * This swapin algorithm attempts to swap-in processes only if there
578 * is enough space for them.  Of course, if a process waits for a long
579 * time, it will be swapped in anyway.
580 *
581 *  XXXKSE - process with the thread with highest priority counts..
582 *
583 * Giant is still held at this point, to be released in tsleep.
584 */
585/* ARGSUSED*/
586static void
587scheduler(dummy)
588	void *dummy;
589{
590	struct proc *p;
591	struct thread *td;
592	int pri;
593	struct proc *pp;
594	int ppri;
595
596	mtx_assert(&Giant, MA_OWNED | MA_NOTRECURSED);
597	/* GIANT_REQUIRED */
598
599loop:
600	if (vm_page_count_min()) {
601		VM_WAIT;
602		goto loop;
603	}
604
605	pp = NULL;
606	ppri = INT_MIN;
607	sx_slock(&allproc_lock);
608	FOREACH_PROC_IN_SYSTEM(p) {
609		struct ksegrp *kg;
610		if (p->p_sflag & (PS_INMEM | PS_SWAPPINGOUT | PS_SWAPPINGIN)) {
611			continue;
612		}
613		mtx_lock_spin(&sched_lock);
614		FOREACH_THREAD_IN_PROC(p, td) {
615			/*
616			 * An otherwise runnable thread of a process
617			 * swapped out has only the TDI_SWAPPED bit set.
618			 *
619			 */
620			if (td->td_inhibitors == TDI_SWAPPED) {
621				kg = td->td_ksegrp;
622				pri = p->p_swtime + kg->kg_slptime;
623				if ((p->p_sflag & PS_SWAPINREQ) == 0) {
624					pri -= kg->kg_nice * 8;
625				}
626
627				/*
628				 * if this ksegrp is higher priority
629				 * and there is enough space, then select
630				 * this process instead of the previous
631				 * selection.
632				 */
633				if (pri > ppri) {
634					pp = p;
635					ppri = pri;
636				}
637			}
638		}
639		mtx_unlock_spin(&sched_lock);
640	}
641	sx_sunlock(&allproc_lock);
642
643	/*
644	 * Nothing to do, back to sleep.
645	 */
646	if ((p = pp) == NULL) {
647		tsleep(&proc0, PVM, "sched", maxslp * hz / 2);
648		goto loop;
649	}
650	PROC_LOCK(p);
651
652	/*
653	 * Another process may be bringing or may have already
654	 * brought this process in while we traverse all threads.
655	 * Or, this process may even be being swapped out again.
656	 */
657	if (p->p_sflag & (PS_INMEM | PS_SWAPPINGOUT | PS_SWAPPINGIN)) {
658		PROC_UNLOCK(p);
659		goto loop;
660	}
661
662	mtx_lock_spin(&sched_lock);
663	p->p_sflag &= ~PS_SWAPINREQ;
664	mtx_unlock_spin(&sched_lock);
665
666	/*
667	 * We would like to bring someone in. (only if there is space).
668	 * [What checks the space? ]
669	 */
670	faultin(p);
671	PROC_UNLOCK(p);
672	mtx_lock_spin(&sched_lock);
673	p->p_swtime = 0;
674	mtx_unlock_spin(&sched_lock);
675	goto loop;
676}
677
678#ifndef NO_SWAPPING
679
680/*
681 * Swap_idle_threshold1 is the guaranteed swapped in time for a process
682 */
683static int swap_idle_threshold1 = 2;
684SYSCTL_INT(_vm, OID_AUTO, swap_idle_threshold1, CTLFLAG_RW,
685    &swap_idle_threshold1, 0, "Guaranteed swapped in time for a process");
686
687/*
688 * Swap_idle_threshold2 is the time that a process can be idle before
689 * it will be swapped out, if idle swapping is enabled.
690 */
691static int swap_idle_threshold2 = 10;
692SYSCTL_INT(_vm, OID_AUTO, swap_idle_threshold2, CTLFLAG_RW,
693    &swap_idle_threshold2, 0, "Time before a process will be swapped out");
694
695/*
696 * Swapout is driven by the pageout daemon.  Very simple, we find eligible
697 * procs and unwire their u-areas.  We try to always "swap" at least one
698 * process in case we need the room for a swapin.
699 * If any procs have been sleeping/stopped for at least maxslp seconds,
700 * they are swapped.  Else, we swap the longest-sleeping or stopped process,
701 * if any, otherwise the longest-resident process.
702 */
703void
704swapout_procs(action)
705int action;
706{
707	struct proc *p;
708	struct thread *td;
709	struct ksegrp *kg;
710	struct proc *outp, *outp2;
711	int outpri, outpri2;
712	int didswap = 0;
713
714	GIANT_REQUIRED;
715
716	outp = outp2 = NULL;
717	outpri = outpri2 = INT_MIN;
718retry:
719	sx_slock(&allproc_lock);
720	FOREACH_PROC_IN_SYSTEM(p) {
721		struct vmspace *vm;
722		int minslptime = 100000;
723
724		/*
725		 * Watch out for a process in
726		 * creation.  It may have no
727		 * address space or lock yet.
728		 */
729		mtx_lock_spin(&sched_lock);
730		if (p->p_state == PRS_NEW) {
731			mtx_unlock_spin(&sched_lock);
732			continue;
733		}
734		mtx_unlock_spin(&sched_lock);
735
736		/*
737		 * An aio daemon switches its
738		 * address space while running.
739		 * Perform a quick check whether
740		 * a process has P_SYSTEM.
741		 */
742		if ((p->p_flag & P_SYSTEM) != 0)
743			continue;
744
745		/*
746		 * Do not swapout a process that
747		 * is waiting for VM data
748		 * structures as there is a possible
749		 * deadlock.  Test this first as
750		 * this may block.
751		 *
752		 * Lock the map until swapout
753		 * finishes, or a thread of this
754		 * process may attempt to alter
755		 * the map.
756		 */
757		PROC_LOCK(p);
758		vm = p->p_vmspace;
759		KASSERT(vm != NULL,
760			("swapout_procs: a process has no address space"));
761		++vm->vm_refcnt;
762		PROC_UNLOCK(p);
763		if (!vm_map_trylock(&vm->vm_map))
764			goto nextproc1;
765
766		PROC_LOCK(p);
767		if (p->p_lock != 0 ||
768		    (p->p_flag & (P_STOPPED_SINGLE|P_TRACED|P_SYSTEM|P_WEXIT)
769		    ) != 0) {
770			goto nextproc2;
771		}
772		/*
773		 * only aiod changes vmspace, however it will be
774		 * skipped because of the if statement above checking
775		 * for P_SYSTEM
776		 */
777		if ((p->p_sflag & (PS_INMEM|PS_SWAPPINGOUT|PS_SWAPPINGIN)) != PS_INMEM)
778			goto nextproc2;
779
780		switch (p->p_state) {
781		default:
782			/* Don't swap out processes in any sort
783			 * of 'special' state. */
784			break;
785
786		case PRS_NORMAL:
787			mtx_lock_spin(&sched_lock);
788			/*
789			 * do not swapout a realtime process
790			 * Check all the thread groups..
791			 */
792			FOREACH_KSEGRP_IN_PROC(p, kg) {
793				if (PRI_IS_REALTIME(kg->kg_pri_class))
794					goto nextproc;
795
796				/*
797				 * Guarantee swap_idle_threshold1
798				 * time in memory.
799				 */
800				if (kg->kg_slptime < swap_idle_threshold1)
801					goto nextproc;
802
803				/*
804				 * Do not swapout a process if it is
805				 * waiting on a critical event of some
806				 * kind or there is a thread whose
807				 * pageable memory may be accessed.
808				 *
809				 * This could be refined to support
810				 * swapping out a thread.
811				 */
812				FOREACH_THREAD_IN_GROUP(kg, td) {
813					if ((td->td_priority) < PSOCK ||
814					    !thread_safetoswapout(td))
815						goto nextproc;
816				}
817				/*
818				 * If the system is under memory stress,
819				 * or if we are swapping
820				 * idle processes >= swap_idle_threshold2,
821				 * then swap the process out.
822				 */
823				if (((action & VM_SWAP_NORMAL) == 0) &&
824				    (((action & VM_SWAP_IDLE) == 0) ||
825				    (kg->kg_slptime < swap_idle_threshold2)))
826					goto nextproc;
827
828				if (minslptime > kg->kg_slptime)
829					minslptime = kg->kg_slptime;
830			}
831
832			/*
833			 * If the process has been asleep for awhile and had
834			 * most of its pages taken away already, swap it out.
835			 */
836			if ((action & VM_SWAP_NORMAL) ||
837				((action & VM_SWAP_IDLE) &&
838				 (minslptime > swap_idle_threshold2))) {
839				swapout(p);
840				didswap++;
841				mtx_unlock_spin(&sched_lock);
842				PROC_UNLOCK(p);
843				vm_map_unlock(&vm->vm_map);
844				vmspace_free(vm);
845				sx_sunlock(&allproc_lock);
846				goto retry;
847			}
848nextproc:
849			mtx_unlock_spin(&sched_lock);
850		}
851nextproc2:
852		PROC_UNLOCK(p);
853		vm_map_unlock(&vm->vm_map);
854nextproc1:
855		vmspace_free(vm);
856		continue;
857	}
858	sx_sunlock(&allproc_lock);
859	/*
860	 * If we swapped something out, and another process needed memory,
861	 * then wakeup the sched process.
862	 */
863	if (didswap)
864		wakeup(&proc0);
865}
866
867static void
868swapout(p)
869	struct proc *p;
870{
871	struct thread *td;
872
873	PROC_LOCK_ASSERT(p, MA_OWNED);
874	mtx_assert(&sched_lock, MA_OWNED | MA_NOTRECURSED);
875#if defined(SWAP_DEBUG)
876	printf("swapping out %d\n", p->p_pid);
877#endif
878
879	/*
880	 * The states of this process and its threads may have changed
881	 * by now.  Assuming that there is only one pageout daemon thread,
882	 * this process should still be in memory.
883	 */
884	KASSERT((p->p_sflag & (PS_INMEM|PS_SWAPPINGOUT|PS_SWAPPINGIN)) == PS_INMEM,
885		("swapout: lost a swapout race?"));
886
887#if defined(INVARIANTS)
888	/*
889	 * Make sure that all threads are safe to be swapped out.
890	 *
891	 * Alternatively, we could swap out only safe threads.
892	 */
893	FOREACH_THREAD_IN_PROC(p, td) {
894		KASSERT(thread_safetoswapout(td),
895			("swapout: there is a thread not safe for swapout"));
896	}
897#endif /* INVARIANTS */
898
899	++p->p_stats->p_ru.ru_nswap;
900	/*
901	 * remember the process resident count
902	 */
903	p->p_vmspace->vm_swrss = vmspace_resident_count(p->p_vmspace);
904
905	p->p_sflag &= ~PS_INMEM;
906	p->p_sflag |= PS_SWAPPINGOUT;
907	PROC_UNLOCK(p);
908	FOREACH_THREAD_IN_PROC(p, td)
909		TD_SET_SWAPPED(td);
910	mtx_unlock_spin(&sched_lock);
911
912	vm_proc_swapout(p);
913	FOREACH_THREAD_IN_PROC(p, td)
914		pmap_swapout_thread(td);
915
916	PROC_LOCK(p);
917	mtx_lock_spin(&sched_lock);
918	p->p_sflag &= ~PS_SWAPPINGOUT;
919	p->p_swtime = 0;
920}
921#endif /* !NO_SWAPPING */
922