vm_glue.c revision 33108
178344Sobrien/*
278344Sobrien * Copyright (c) 1991, 1993
398184Sgordon *	The Regents of the University of California.  All rights reserved.
498184Sgordon *
578344Sobrien * This code is derived from software contributed to Berkeley by
678344Sobrien * The Mach Operating System project at Carnegie-Mellon University.
778344Sobrien *
8140339Sobrien * Redistribution and use in source and binary forms, with or without
978344Sobrien * modification, are permitted provided that the following conditions
1078344Sobrien * are met:
1178344Sobrien * 1. Redistributions of source code must retain the above copyright
1278344Sobrien *    notice, this list of conditions and the following disclaimer.
1398184Sgordon * 2. Redistributions in binary form must reproduce the above copyright
1498184Sgordon *    notice, this list of conditions and the following disclaimer in the
1598184Sgordon *    documentation and/or other materials provided with the distribution.
1678344Sobrien * 3. All advertising materials mentioning features or use of this software
1778344Sobrien *    must display the following acknowledgement:
1878344Sobrien *	This product includes software developed by the University of
19133110Smarkm *	California, Berkeley and its contributors.
20133110Smarkm * 4. Neither the name of the University nor the names of its contributors
21133110Smarkm *    may be used to endorse or promote products derived from this software
22133110Smarkm *    without specific prior written permission.
23133110Smarkm *
24133110Smarkm * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25133110Smarkm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26133110Smarkm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27133110Smarkm * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28133110Smarkm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29133110Smarkm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30133110Smarkm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31133110Smarkm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32133110Smarkm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33133110Smarkm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34133110Smarkm * SUCH DAMAGE.
35133110Smarkm *
36133110Smarkm *	from: @(#)vm_glue.c	8.6 (Berkeley) 1/5/94
37133110Smarkm *
38133110Smarkm *
39133110Smarkm * Copyright (c) 1987, 1990 Carnegie-Mellon University.
40133110Smarkm * All rights reserved.
41133110Smarkm *
42133110Smarkm * Permission to use, copy, modify and distribute this software and
4378344Sobrien * its documentation is hereby granted, provided that both the copyright
4478344Sobrien * notice and this permission notice appear in all copies of the
4598184Sgordon * software, derivative works or modified versions, and any portions
4698184Sgordon * thereof, and that both notices appear in supporting documentation.
4798184Sgordon *
4898184Sgordon * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
4998184Sgordon * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
5098184Sgordon * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
5198184Sgordon *
5298184Sgordon * Carnegie Mellon requests users of this software to return to
5398184Sgordon *
5498184Sgordon *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
5598184Sgordon *  School of Computer Science
5698184Sgordon *  Carnegie Mellon University
5798184Sgordon *  Pittsburgh PA 15213-3890
5878344Sobrien *
5998184Sgordon * any improvements or extensions that they make and grant Carnegie the
6098184Sgordon * rights to redistribute these changes.
6178344Sobrien *
6278344Sobrien * $Id: vm_glue.c,v 1.70 1998/01/22 17:30:34 dyson Exp $
6398184Sgordon */
6498184Sgordon
6598184Sgordon#include "opt_diagnostic.h"
6698184Sgordon#include "opt_rlimit.h"
6778344Sobrien
6898184Sgordon#include <sys/param.h>
6978344Sobrien#include <sys/systm.h>
7098184Sgordon#include <sys/proc.h>
7198184Sgordon#include <sys/resourcevar.h>
7298184Sgordon#include <sys/buf.h>
7398184Sgordon#include <sys/shm.h>
7498184Sgordon#include <sys/vmmeter.h>
7598184Sgordon#include <sys/sysctl.h>
7698184Sgordon
7798184Sgordon#include <sys/kernel.h>
7898184Sgordon#include <sys/unistd.h>
7978344Sobrien
8078344Sobrien#include <machine/limits.h>
8178344Sobrien
8278344Sobrien#include <vm/vm.h>
8398184Sgordon#include <vm/vm_param.h>
8498184Sgordon#include <vm/vm_prot.h>
8598184Sgordon#include <sys/lock.h>
86133110Smarkm#include <vm/pmap.h>
8798184Sgordon#include <vm/vm_map.h>
8878344Sobrien#include <vm/vm_page.h>
8978344Sobrien#include <vm/vm_pageout.h>
9078344Sobrien#include <vm/vm_kern.h>
9178344Sobrien#include <vm/vm_extern.h>
9278344Sobrien
93#include <sys/user.h>
94
95/*
96 * System initialization
97 *
98 * Note: proc0 from proc.h
99 */
100
101static void vm_init_limits __P((void *));
102SYSINIT(vm_limits, SI_SUB_VM_CONF, SI_ORDER_FIRST, vm_init_limits, &proc0)
103
104/*
105 * THIS MUST BE THE LAST INITIALIZATION ITEM!!!
106 *
107 * Note: run scheduling should be divorced from the vm system.
108 */
109static void scheduler __P((void *));
110SYSINIT(scheduler, SI_SUB_RUN_SCHEDULER, SI_ORDER_FIRST, scheduler, NULL)
111
112
113static void swapout __P((struct proc *));
114
115extern char kstack[];
116
117/* vm_map_t upages_map; */
118
119int
120kernacc(addr, len, rw)
121	caddr_t addr;
122	int len, rw;
123{
124	boolean_t rv;
125	vm_offset_t saddr, eaddr;
126	vm_prot_t prot = rw == B_READ ? VM_PROT_READ : VM_PROT_WRITE;
127
128	saddr = trunc_page(addr);
129	eaddr = round_page(addr + len);
130	vm_map_lock_read(kernel_map);
131	rv = vm_map_check_protection(kernel_map, saddr, eaddr, prot);
132	vm_map_unlock_read(kernel_map);
133	return (rv == TRUE);
134}
135
136int
137useracc(addr, len, rw)
138	caddr_t addr;
139	int len, rw;
140{
141	boolean_t rv;
142	vm_prot_t prot = rw == B_READ ? VM_PROT_READ : VM_PROT_WRITE;
143	vm_map_t map;
144	vm_map_entry_t save_hint;
145
146	/*
147	 * XXX - check separately to disallow access to user area and user
148	 * page tables - they are in the map.
149	 *
150	 * XXX - VM_MAXUSER_ADDRESS is an end address, not a max.  It was once
151	 * only used (as an end address) in trap.c.  Use it as an end address
152	 * here too.  This bogusness has spread.  I just fixed where it was
153	 * used as a max in vm_mmap.c.
154	 */
155	if ((vm_offset_t) addr + len > /* XXX */ VM_MAXUSER_ADDRESS
156	    || (vm_offset_t) addr + len < (vm_offset_t) addr) {
157		return (FALSE);
158	}
159	map = &curproc->p_vmspace->vm_map;
160	vm_map_lock_read(map);
161	/*
162	 * We save the map hint, and restore it.  Useracc appears to distort
163	 * the map hint unnecessarily.
164	 */
165	save_hint = map->hint;
166	rv = vm_map_check_protection(map,
167	    trunc_page(addr), round_page(addr + len), prot);
168	map->hint = save_hint;
169	vm_map_unlock_read(map);
170
171	return (rv == TRUE);
172}
173
174void
175vslock(addr, len)
176	caddr_t addr;
177	u_int len;
178{
179	vm_map_pageable(&curproc->p_vmspace->vm_map, trunc_page(addr),
180	    round_page(addr + len), FALSE);
181}
182
183void
184vsunlock(addr, len, dirtied)
185	caddr_t addr;
186	u_int len;
187	int dirtied;
188{
189#ifdef	lint
190	dirtied++;
191#endif	/* lint */
192	vm_map_pageable(&curproc->p_vmspace->vm_map, trunc_page(addr),
193	    round_page(addr + len), TRUE);
194}
195
196/*
197 * Implement fork's actions on an address space.
198 * Here we arrange for the address space to be copied or referenced,
199 * allocate a user struct (pcb and kernel stack), then call the
200 * machine-dependent layer to fill those in and make the new process
201 * ready to run.  The new process is set up so that it returns directly
202 * to user mode to avoid stack copying and relocation problems.
203 */
204void
205vm_fork(p1, p2, flags)
206	register struct proc *p1, *p2;
207	int flags;
208{
209	register struct user *up;
210
211	if (flags & RFMEM) {
212		p2->p_vmspace = p1->p_vmspace;
213		p1->p_vmspace->vm_refcnt++;
214	}
215
216	while ((cnt.v_free_count + cnt.v_cache_count) < cnt.v_free_min) {
217		VM_WAIT;
218	}
219
220	if ((flags & RFMEM) == 0) {
221		p2->p_vmspace = vmspace_fork(p1->p_vmspace);
222
223		if (p1->p_vmspace->vm_shm)
224			shmfork(p1, p2);
225	}
226
227	pmap_new_proc(p2);
228
229	up = p2->p_addr;
230
231	/*
232	 * p_stats and p_sigacts currently point at fields in the user struct
233	 * but not at &u, instead at p_addr. Copy p_sigacts and parts of
234	 * p_stats; zero the rest of p_stats (statistics).
235	 */
236	p2->p_stats = &up->u_stats;
237	p2->p_sigacts = &up->u_sigacts;
238	up->u_sigacts = *p1->p_sigacts;
239	bzero(&up->u_stats.pstat_startzero,
240	    (unsigned) ((caddr_t) &up->u_stats.pstat_endzero -
241		(caddr_t) &up->u_stats.pstat_startzero));
242	bcopy(&p1->p_stats->pstat_startcopy, &up->u_stats.pstat_startcopy,
243	    ((caddr_t) &up->u_stats.pstat_endcopy -
244		(caddr_t) &up->u_stats.pstat_startcopy));
245
246
247	/*
248	 * cpu_fork will copy and update the pcb, set up the kernel stack,
249	 * and make the child ready to run.
250	 */
251	cpu_fork(p1, p2);
252}
253
254/*
255 * Set default limits for VM system.
256 * Called for proc 0, and then inherited by all others.
257 *
258 * XXX should probably act directly on proc0.
259 */
260static void
261vm_init_limits(udata)
262	void *udata;
263{
264	register struct proc *p = udata;
265	int rss_limit;
266
267	/*
268	 * Set up the initial limits on process VM. Set the maximum resident
269	 * set size to be half of (reasonably) available memory.  Since this
270	 * is a soft limit, it comes into effect only when the system is out
271	 * of memory - half of main memory helps to favor smaller processes,
272	 * and reduces thrashing of the object cache.
273	 */
274	p->p_rlimit[RLIMIT_STACK].rlim_cur = DFLSSIZ;
275	p->p_rlimit[RLIMIT_STACK].rlim_max = MAXSSIZ;
276	p->p_rlimit[RLIMIT_DATA].rlim_cur = DFLDSIZ;
277	p->p_rlimit[RLIMIT_DATA].rlim_max = MAXDSIZ;
278	/* limit the limit to no less than 2MB */
279	rss_limit = max(cnt.v_free_count, 512);
280	p->p_rlimit[RLIMIT_RSS].rlim_cur = ptoa(rss_limit);
281	p->p_rlimit[RLIMIT_RSS].rlim_max = RLIM_INFINITY;
282}
283
284void
285faultin(p)
286	struct proc *p;
287{
288	int s;
289
290	if ((p->p_flag & P_INMEM) == 0) {
291
292		++p->p_lock;
293
294		pmap_swapin_proc(p);
295
296		s = splhigh();
297
298		if (p->p_stat == SRUN)
299			setrunqueue(p);
300
301		p->p_flag |= P_INMEM;
302
303		/* undo the effect of setting SLOCK above */
304		--p->p_lock;
305		splx(s);
306
307	}
308}
309
310/*
311 * This swapin algorithm attempts to swap-in processes only if there
312 * is enough space for them.  Of course, if a process waits for a long
313 * time, it will be swapped in anyway.
314 */
315/* ARGSUSED*/
316static void
317scheduler(dummy)
318	void *dummy;
319{
320	register struct proc *p;
321	register int pri;
322	struct proc *pp;
323	int ppri;
324
325loop:
326	while ((cnt.v_free_count + cnt.v_cache_count) < cnt.v_free_min) {
327		VM_WAIT;
328	}
329
330	pp = NULL;
331	ppri = INT_MIN;
332	for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) {
333		if (p->p_stat == SRUN &&
334			(p->p_flag & (P_INMEM | P_SWAPPING)) == 0) {
335			int mempri;
336
337			pri = p->p_swtime + p->p_slptime;
338			if ((p->p_flag & P_SWAPINREQ) == 0) {
339				pri -= p->p_nice * 8;
340			}
341			mempri = pri > 0 ? pri : 0;
342			/*
343			 * if this process is higher priority and there is
344			 * enough space, then select this process instead of
345			 * the previous selection.
346			 */
347			if (pri > ppri) {
348				pp = p;
349				ppri = pri;
350			}
351		}
352	}
353
354	/*
355	 * Nothing to do, back to sleep.
356	 */
357	if ((p = pp) == NULL) {
358		tsleep(&proc0, PVM, "sched", 0);
359		goto loop;
360	}
361	p->p_flag &= ~P_SWAPINREQ;
362
363	/*
364	 * We would like to bring someone in. (only if there is space).
365	 */
366	faultin(p);
367	p->p_swtime = 0;
368	goto loop;
369}
370
371#ifndef NO_SWAPPING
372
373#define	swappable(p) \
374	(((p)->p_lock == 0) && \
375		((p)->p_flag & (P_TRACED|P_NOSWAP|P_SYSTEM|P_INMEM|P_WEXIT|P_PHYSIO|P_SWAPPING)) == P_INMEM)
376
377
378/*
379 * Swap_idle_threshold1 is the guaranteed swapped in time for a process
380 */
381int swap_idle_threshold1 = 2;
382SYSCTL_INT(_vm, OID_AUTO, swap_idle_threshold1,
383	CTLFLAG_RW, &swap_idle_threshold1, 0, "");
384
385/*
386 * Swap_idle_threshold2 is the time that a process can be idle before
387 * it will be swapped out, if idle swapping is enabled.
388 */
389int swap_idle_threshold2 = 10;
390SYSCTL_INT(_vm, OID_AUTO, swap_idle_threshold2,
391	CTLFLAG_RW, &swap_idle_threshold2, 0, "");
392
393/*
394 * Swapout is driven by the pageout daemon.  Very simple, we find eligible
395 * procs and unwire their u-areas.  We try to always "swap" at least one
396 * process in case we need the room for a swapin.
397 * If any procs have been sleeping/stopped for at least maxslp seconds,
398 * they are swapped.  Else, we swap the longest-sleeping or stopped process,
399 * if any, otherwise the longest-resident process.
400 */
401void
402swapout_procs(action)
403int action;
404{
405	register struct proc *p;
406	struct proc *outp, *outp2;
407	int outpri, outpri2;
408	int didswap = 0;
409
410	outp = outp2 = NULL;
411	outpri = outpri2 = INT_MIN;
412retry:
413	for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) {
414		struct vmspace *vm;
415		if (!swappable(p))
416			continue;
417
418		vm = p->p_vmspace;
419
420		switch (p->p_stat) {
421		default:
422			continue;
423
424		case SSLEEP:
425		case SSTOP:
426			/*
427			 * do not swapout a realtime process
428			 */
429			if (p->p_rtprio.type == RTP_PRIO_REALTIME)
430				continue;
431
432			/*
433			 * Do not swapout a process waiting on a critical
434			 * event of some kind.  Also guarantee swap_idle_threshold1
435			 * time in memory.
436			 */
437			if (((p->p_priority & 0x7f) < PSOCK) ||
438				(p->p_slptime < swap_idle_threshold1))
439				continue;
440
441			/*
442			 * If the system is under memory stress, or if we are swapping
443			 * idle processes >= swap_idle_threshold2, then swap the process
444			 * out.
445			 */
446			if (((action & VM_SWAP_NORMAL) == 0) &&
447				(((action & VM_SWAP_IDLE) == 0) ||
448				  (p->p_slptime < swap_idle_threshold2)))
449				continue;
450
451			++vm->vm_refcnt;
452			/*
453			 * do not swapout a process that is waiting for VM
454			 * data structures there is a possible deadlock.
455			 */
456			if (lockmgr(&vm->vm_map.lock,
457					LK_EXCLUSIVE | LK_NOWAIT,
458					(void *)0, curproc)) {
459				vmspace_free(vm);
460				continue;
461			}
462			vm_map_unlock(&vm->vm_map);
463			/*
464			 * If the process has been asleep for awhile and had
465			 * most of its pages taken away already, swap it out.
466			 */
467			if ((action & VM_SWAP_NORMAL) ||
468				((action & VM_SWAP_IDLE) &&
469				 (p->p_slptime > swap_idle_threshold2))) {
470				swapout(p);
471				vmspace_free(vm);
472				didswap++;
473				goto retry;
474			}
475		}
476	}
477	/*
478	 * If we swapped something out, and another process needed memory,
479	 * then wakeup the sched process.
480	 */
481	if (didswap)
482		wakeup(&proc0);
483}
484
485static void
486swapout(p)
487	register struct proc *p;
488{
489
490#if defined(SWAP_DEBUG)
491	printf("swapping out %d\n", p->p_pid);
492#endif
493	++p->p_stats->p_ru.ru_nswap;
494	/*
495	 * remember the process resident count
496	 */
497	p->p_vmspace->vm_swrss =
498	    p->p_vmspace->vm_pmap.pm_stats.resident_count;
499
500	(void) splhigh();
501	p->p_flag &= ~P_INMEM;
502	p->p_flag |= P_SWAPPING;
503	if (p->p_stat == SRUN)
504		remrq(p);
505	(void) spl0();
506
507	pmap_swapout_proc(p);
508
509	p->p_flag &= ~P_SWAPPING;
510	p->p_swtime = 0;
511}
512#endif /* !NO_SWAPPING */
513