xref: /freebsd/sys/vm/vm_fault.c (revision 6d03d577a58094d65902f97d4f365e7f716515fc)
1df8bae1dSRodney W. Grimes /*
2df8bae1dSRodney W. Grimes  * Copyright (c) 1991, 1993
3df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
426f9a767SRodney W. Grimes  * Copyright (c) 1994 John S. Dyson
526f9a767SRodney W. Grimes  * All rights reserved.
626f9a767SRodney W. Grimes  * Copyright (c) 1994 David Greenman
726f9a767SRodney W. Grimes  * All rights reserved.
826f9a767SRodney W. Grimes  *
9df8bae1dSRodney W. Grimes  *
10df8bae1dSRodney W. Grimes  * This code is derived from software contributed to Berkeley by
11df8bae1dSRodney W. Grimes  * The Mach Operating System project at Carnegie-Mellon University.
12df8bae1dSRodney W. Grimes  *
13df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
14df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
15df8bae1dSRodney W. Grimes  * are met:
16df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
17df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
18df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
19df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
20df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
21df8bae1dSRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
225929bcfaSPhilippe Charnier  *    must display the following acknowledgement:
23df8bae1dSRodney W. Grimes  *	This product includes software developed by the University of
24df8bae1dSRodney W. Grimes  *	California, Berkeley and its contributors.
25df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
26df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
27df8bae1dSRodney W. Grimes  *    without specific prior written permission.
28df8bae1dSRodney W. Grimes  *
29df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
40df8bae1dSRodney W. Grimes  *
413c4dd356SDavid Greenman  *	from: @(#)vm_fault.c	8.4 (Berkeley) 1/12/94
42df8bae1dSRodney W. Grimes  *
43df8bae1dSRodney W. Grimes  *
44df8bae1dSRodney W. Grimes  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
45df8bae1dSRodney W. Grimes  * All rights reserved.
46df8bae1dSRodney W. Grimes  *
47df8bae1dSRodney W. Grimes  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
48df8bae1dSRodney W. Grimes  *
49df8bae1dSRodney W. Grimes  * Permission to use, copy, modify and distribute this software and
50df8bae1dSRodney W. Grimes  * its documentation is hereby granted, provided that both the copyright
51df8bae1dSRodney W. Grimes  * notice and this permission notice appear in all copies of the
52df8bae1dSRodney W. Grimes  * software, derivative works or modified versions, and any portions
53df8bae1dSRodney W. Grimes  * thereof, and that both notices appear in supporting documentation.
54df8bae1dSRodney W. Grimes  *
55df8bae1dSRodney W. Grimes  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
56df8bae1dSRodney W. Grimes  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
57df8bae1dSRodney W. Grimes  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
58df8bae1dSRodney W. Grimes  *
59df8bae1dSRodney W. Grimes  * Carnegie Mellon requests users of this software to return to
60df8bae1dSRodney W. Grimes  *
61df8bae1dSRodney W. Grimes  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
62df8bae1dSRodney W. Grimes  *  School of Computer Science
63df8bae1dSRodney W. Grimes  *  Carnegie Mellon University
64df8bae1dSRodney W. Grimes  *  Pittsburgh PA 15213-3890
65df8bae1dSRodney W. Grimes  *
66df8bae1dSRodney W. Grimes  * any improvements or extensions that they make and grant Carnegie the
67df8bae1dSRodney W. Grimes  * rights to redistribute these changes.
683c4dd356SDavid Greenman  *
69c3aac50fSPeter Wemm  * $FreeBSD$
70df8bae1dSRodney W. Grimes  */
71df8bae1dSRodney W. Grimes 
72df8bae1dSRodney W. Grimes /*
73df8bae1dSRodney W. Grimes  *	Page fault handling module.
74df8bae1dSRodney W. Grimes  */
75df8bae1dSRodney W. Grimes 
76df8bae1dSRodney W. Grimes #include <sys/param.h>
77df8bae1dSRodney W. Grimes #include <sys/systm.h>
784edf4a58SJohn Baldwin #include <sys/kernel.h>
79fb919e4dSMark Murray #include <sys/lock.h>
80fb919e4dSMark Murray #include <sys/mutex.h>
8126f9a767SRodney W. Grimes #include <sys/proc.h>
8226f9a767SRodney W. Grimes #include <sys/resourcevar.h>
8323955314SAlfred Perlstein #include <sys/sysctl.h>
844edf4a58SJohn Baldwin #include <sys/vmmeter.h>
854edf4a58SJohn Baldwin #include <sys/vnode.h>
86df8bae1dSRodney W. Grimes 
87df8bae1dSRodney W. Grimes #include <vm/vm.h>
88efeaf95aSDavid Greenman #include <vm/vm_param.h>
89efeaf95aSDavid Greenman #include <vm/pmap.h>
90efeaf95aSDavid Greenman #include <vm/vm_map.h>
91efeaf95aSDavid Greenman #include <vm/vm_object.h>
92df8bae1dSRodney W. Grimes #include <vm/vm_page.h>
93df8bae1dSRodney W. Grimes #include <vm/vm_pageout.h>
94a83c285cSDavid Greenman #include <vm/vm_kern.h>
9524a1cce3SDavid Greenman #include <vm/vm_pager.h>
9624a1cce3SDavid Greenman #include <vm/vnode_pager.h>
97efeaf95aSDavid Greenman #include <vm/vm_extern.h>
98df8bae1dSRodney W. Grimes 
99303b270bSEivind Eklund static int vm_fault_additional_pages __P((vm_page_t, int,
100303b270bSEivind Eklund 					  int, vm_page_t *, int *));
10126f9a767SRodney W. Grimes 
10247221757SJohn Dyson #define VM_FAULT_READ_AHEAD 8
10347221757SJohn Dyson #define VM_FAULT_READ_BEHIND 7
10426f9a767SRodney W. Grimes #define VM_FAULT_READ (VM_FAULT_READ_AHEAD+VM_FAULT_READ_BEHIND+1)
10526f9a767SRodney W. Grimes 
1064866e085SJohn Dyson struct faultstate {
1074866e085SJohn Dyson 	vm_page_t m;
1084866e085SJohn Dyson 	vm_object_t object;
1094866e085SJohn Dyson 	vm_pindex_t pindex;
1104866e085SJohn Dyson 	vm_page_t first_m;
1114866e085SJohn Dyson 	vm_object_t	first_object;
1124866e085SJohn Dyson 	vm_pindex_t first_pindex;
1134866e085SJohn Dyson 	vm_map_t map;
1144866e085SJohn Dyson 	vm_map_entry_t entry;
1154866e085SJohn Dyson 	int lookup_still_valid;
1164866e085SJohn Dyson 	struct vnode *vp;
1174866e085SJohn Dyson };
1184866e085SJohn Dyson 
1191c7c3c6aSMatthew Dillon static __inline void
1204866e085SJohn Dyson release_page(struct faultstate *fs)
1214866e085SJohn Dyson {
122e69763a3SDoug Rabson 	vm_page_wakeup(fs->m);
1234866e085SJohn Dyson 	vm_page_deactivate(fs->m);
1244866e085SJohn Dyson 	fs->m = NULL;
1254866e085SJohn Dyson }
1264866e085SJohn Dyson 
1271c7c3c6aSMatthew Dillon static __inline void
1284866e085SJohn Dyson unlock_map(struct faultstate *fs)
1294866e085SJohn Dyson {
1304866e085SJohn Dyson 	if (fs->lookup_still_valid) {
1314866e085SJohn Dyson 		vm_map_lookup_done(fs->map, fs->entry);
1324866e085SJohn Dyson 		fs->lookup_still_valid = FALSE;
1334866e085SJohn Dyson 	}
1344866e085SJohn Dyson }
1354866e085SJohn Dyson 
1364866e085SJohn Dyson static void
1374866e085SJohn Dyson _unlock_things(struct faultstate *fs, int dealloc)
1384866e085SJohn Dyson {
1390cddd8f0SMatthew Dillon 	GIANT_REQUIRED;
1404866e085SJohn Dyson 	vm_object_pip_wakeup(fs->object);
1414866e085SJohn Dyson 	if (fs->object != fs->first_object) {
1424866e085SJohn Dyson 		vm_page_free(fs->first_m);
1434866e085SJohn Dyson 		vm_object_pip_wakeup(fs->first_object);
1444866e085SJohn Dyson 		fs->first_m = NULL;
1454866e085SJohn Dyson 	}
1464866e085SJohn Dyson 	if (dealloc) {
1474866e085SJohn Dyson 		vm_object_deallocate(fs->first_object);
1484866e085SJohn Dyson 	}
1494866e085SJohn Dyson 	unlock_map(fs);
1504866e085SJohn Dyson 	if (fs->vp != NULL) {
1510cddd8f0SMatthew Dillon 		vput(fs->vp);
1524866e085SJohn Dyson 		fs->vp = NULL;
1534866e085SJohn Dyson 	}
1544866e085SJohn Dyson }
1554866e085SJohn Dyson 
1564866e085SJohn Dyson #define unlock_things(fs) _unlock_things(fs, 0)
1574866e085SJohn Dyson #define unlock_and_deallocate(fs) _unlock_things(fs, 1)
1584866e085SJohn Dyson 
159df8bae1dSRodney W. Grimes /*
16040360b1bSMatthew Dillon  * TRYPAGER - used by vm_fault to calculate whether the pager for the
16140360b1bSMatthew Dillon  *	      current object *might* contain the page.
16240360b1bSMatthew Dillon  *
16340360b1bSMatthew Dillon  *	      default objects are zero-fill, there is no real pager.
16440360b1bSMatthew Dillon  */
16540360b1bSMatthew Dillon 
16640360b1bSMatthew Dillon #define TRYPAGER	(fs.object->type != OBJT_DEFAULT && \
16740360b1bSMatthew Dillon 			(((fault_flags & VM_FAULT_WIRE_MASK) == 0) || wired))
16840360b1bSMatthew Dillon 
16940360b1bSMatthew Dillon /*
170df8bae1dSRodney W. Grimes  *	vm_fault:
171df8bae1dSRodney W. Grimes  *
172956f3135SPhilippe Charnier  *	Handle a page fault occurring at the given address,
173df8bae1dSRodney W. Grimes  *	requiring the given permissions, in the map specified.
174df8bae1dSRodney W. Grimes  *	If successful, the page is inserted into the
175df8bae1dSRodney W. Grimes  *	associated physical map.
176df8bae1dSRodney W. Grimes  *
177df8bae1dSRodney W. Grimes  *	NOTE: the given address should be truncated to the
178df8bae1dSRodney W. Grimes  *	proper page address.
179df8bae1dSRodney W. Grimes  *
180df8bae1dSRodney W. Grimes  *	KERN_SUCCESS is returned if the page fault is handled; otherwise,
181df8bae1dSRodney W. Grimes  *	a standard error specifying why the fault is fatal is returned.
182df8bae1dSRodney W. Grimes  *
183df8bae1dSRodney W. Grimes  *
184df8bae1dSRodney W. Grimes  *	The map in question must be referenced, and remains so.
1850cddd8f0SMatthew Dillon  *	Caller may hold no locks.
186df8bae1dSRodney W. Grimes  */
18723955314SAlfred Perlstein static int vm_fault1 __P((vm_map_t, vm_offset_t, vm_prot_t, int));
18823955314SAlfred Perlstein 
189df8bae1dSRodney W. Grimes int
19023955314SAlfred Perlstein vm_fault(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type,
19123955314SAlfred Perlstein 	 int fault_flags)
19223955314SAlfred Perlstein {
1930cddd8f0SMatthew Dillon 	int ret;
19423955314SAlfred Perlstein 
195576f0c5fSJohn Baldwin 	mtx_lock(&Giant);
1960cddd8f0SMatthew Dillon 	/* GIANT_REQUIRED */
1970cddd8f0SMatthew Dillon 
19823955314SAlfred Perlstein 	ret = vm_fault1(map, vaddr, fault_type, fault_flags);
199576f0c5fSJohn Baldwin 	mtx_unlock(&Giant);
20023955314SAlfred Perlstein 	return (ret);
20123955314SAlfred Perlstein }
20223955314SAlfred Perlstein 
20323955314SAlfred Perlstein static int
20423955314SAlfred Perlstein vm_fault1(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type,
20523955314SAlfred Perlstein 	  int fault_flags)
206df8bae1dSRodney W. Grimes {
207df8bae1dSRodney W. Grimes 	vm_prot_t prot;
208df8bae1dSRodney W. Grimes 	int result;
209df8bae1dSRodney W. Grimes 	boolean_t wired;
2102d8acc0fSJohn Dyson 	int map_generation;
211df8bae1dSRodney W. Grimes 	vm_object_t next_object;
21226f9a767SRodney W. Grimes 	vm_page_t marray[VM_FAULT_READ];
2134866e085SJohn Dyson 	int hardfault;
2142d8acc0fSJohn Dyson 	int faultcount;
2154866e085SJohn Dyson 	struct faultstate fs;
216df8bae1dSRodney W. Grimes 
2170cddd8f0SMatthew Dillon 	GIANT_REQUIRED;
2180cddd8f0SMatthew Dillon 
21923955314SAlfred Perlstein 	cnt.v_vm_faults++;
2204866e085SJohn Dyson 	hardfault = 0;
221df8bae1dSRodney W. Grimes 
222df8bae1dSRodney W. Grimes RetryFault:;
223df8bae1dSRodney W. Grimes 
224df8bae1dSRodney W. Grimes 	/*
2250d94caffSDavid Greenman 	 * Find the backing store object and offset into it to begin the
2260d94caffSDavid Greenman 	 * search.
227df8bae1dSRodney W. Grimes 	 */
22840360b1bSMatthew Dillon 	fs.map = map;
2294866e085SJohn Dyson 	if ((result = vm_map_lookup(&fs.map, vaddr,
2304866e085SJohn Dyson 		fault_type, &fs.entry, &fs.first_object,
2314866e085SJohn Dyson 		&fs.first_pindex, &prot, &wired)) != KERN_SUCCESS) {
23247221757SJohn Dyson 		if ((result != KERN_PROTECTION_FAILURE) ||
23347221757SJohn Dyson 			((fault_flags & VM_FAULT_WIRE_MASK) != VM_FAULT_USER_WIRE)) {
23447221757SJohn Dyson 			return result;
23509e0c6ccSJohn Dyson 		}
23609e0c6ccSJohn Dyson 
2377aaaa4fdSJohn Dyson 		/*
2387aaaa4fdSJohn Dyson    		 * If we are user-wiring a r/w segment, and it is COW, then
2397aaaa4fdSJohn Dyson    		 * we need to do the COW operation.  Note that we don't COW
240595236dfSJohn Dyson    		 * currently RO sections now, because it is NOT desirable
2417aaaa4fdSJohn Dyson    		 * to COW .text.  We simply keep .text from ever being COW'ed
2427aaaa4fdSJohn Dyson    		 * and take the heat that one cannot debug wired .text sections.
2437aaaa4fdSJohn Dyson    		 */
2444866e085SJohn Dyson 		result = vm_map_lookup(&fs.map, vaddr,
24547221757SJohn Dyson 			VM_PROT_READ|VM_PROT_WRITE|VM_PROT_OVERRIDE_WRITE,
2464866e085SJohn Dyson 			&fs.entry, &fs.first_object, &fs.first_pindex, &prot, &wired);
24747221757SJohn Dyson 		if (result != KERN_SUCCESS) {
24847221757SJohn Dyson 			return result;
24947221757SJohn Dyson 		}
25047221757SJohn Dyson 
2517aaaa4fdSJohn Dyson 		/*
2527aaaa4fdSJohn Dyson 		 * If we don't COW now, on a user wire, the user will never
2537aaaa4fdSJohn Dyson 		 * be able to write to the mapping.  If we don't make this
2547aaaa4fdSJohn Dyson 		 * restriction, the bookkeeping would be nearly impossible.
2557aaaa4fdSJohn Dyson 		 */
2564866e085SJohn Dyson 		if ((fs.entry->protection & VM_PROT_WRITE) == 0)
2574866e085SJohn Dyson 			fs.entry->max_protection &= ~VM_PROT_WRITE;
2587aaaa4fdSJohn Dyson 	}
25947221757SJohn Dyson 
2604866e085SJohn Dyson 	map_generation = fs.map->timestamp;
2612d8acc0fSJohn Dyson 
2624866e085SJohn Dyson 	if (fs.entry->eflags & MAP_ENTRY_NOFAULT) {
26347221757SJohn Dyson 		panic("vm_fault: fault on nofault entry, addr: %lx",
26492c4c4ebSBruce Evans 		    (u_long)vaddr);
2657aaaa4fdSJohn Dyson 	}
2667aaaa4fdSJohn Dyson 
26795e5e988SJohn Dyson 	/*
26895e5e988SJohn Dyson 	 * Make a reference to this object to prevent its disposal while we
26995e5e988SJohn Dyson 	 * are messing with it.  Once we have the reference, the map is free
27095e5e988SJohn Dyson 	 * to be diddled.  Since objects reference their shadows (and copies),
27195e5e988SJohn Dyson 	 * they will stay around as well.
27295e5e988SJohn Dyson 	 */
2734866e085SJohn Dyson 	vm_object_reference(fs.first_object);
274d474eaaaSDoug Rabson 	vm_object_pip_add(fs.first_object, 1);
27595e5e988SJohn Dyson 
2764866e085SJohn Dyson 	fs.vp = vnode_pager_lock(fs.first_object);
2771efb74fbSJohn Dyson 	if ((fault_type & VM_PROT_WRITE) &&
2784866e085SJohn Dyson 		(fs.first_object->type == OBJT_VNODE)) {
2794866e085SJohn Dyson 		vm_freeze_copyopts(fs.first_object,
2804866e085SJohn Dyson 			fs.first_pindex, fs.first_pindex + 1);
2811efb74fbSJohn Dyson 	}
282f6b04d2bSDavid Greenman 
2834866e085SJohn Dyson 	fs.lookup_still_valid = TRUE;
284df8bae1dSRodney W. Grimes 
285df8bae1dSRodney W. Grimes 	if (wired)
286df8bae1dSRodney W. Grimes 		fault_type = prot;
287df8bae1dSRodney W. Grimes 
2884866e085SJohn Dyson 	fs.first_m = NULL;
289df8bae1dSRodney W. Grimes 
290df8bae1dSRodney W. Grimes 	/*
291df8bae1dSRodney W. Grimes 	 * Search for the page at object/offset.
292df8bae1dSRodney W. Grimes 	 */
293df8bae1dSRodney W. Grimes 
2944866e085SJohn Dyson 	fs.object = fs.first_object;
2954866e085SJohn Dyson 	fs.pindex = fs.first_pindex;
296df8bae1dSRodney W. Grimes 
297df8bae1dSRodney W. Grimes 	while (TRUE) {
2981c7c3c6aSMatthew Dillon 		/*
2991c7c3c6aSMatthew Dillon 		 * If the object is dead, we stop here
3001c7c3c6aSMatthew Dillon 		 */
30147221757SJohn Dyson 
3024866e085SJohn Dyson 		if (fs.object->flags & OBJ_DEAD) {
3034866e085SJohn Dyson 			unlock_and_deallocate(&fs);
30447221757SJohn Dyson 			return (KERN_PROTECTION_FAILURE);
30547221757SJohn Dyson 		}
30647221757SJohn Dyson 
3071c7c3c6aSMatthew Dillon 		/*
3081c7c3c6aSMatthew Dillon 		 * See if page is resident
3091c7c3c6aSMatthew Dillon 		 */
3101c7c3c6aSMatthew Dillon 
3114866e085SJohn Dyson 		fs.m = vm_page_lookup(fs.object, fs.pindex);
3124866e085SJohn Dyson 		if (fs.m != NULL) {
313c699f45eSDavid Greenman 			int queue, s;
314df8bae1dSRodney W. Grimes 			/*
3151c7c3c6aSMatthew Dillon 			 * Wait/Retry if the page is busy.  We have to do this
3161c7c3c6aSMatthew Dillon 			 * if the page is busy via either PG_BUSY or
3171c7c3c6aSMatthew Dillon 			 * vm_page_t->busy because the vm_pager may be using
3181c7c3c6aSMatthew Dillon 			 * vm_page_t->busy for pageouts ( and even pageins if
3191c7c3c6aSMatthew Dillon 			 * it is the vnode pager ), and we could end up trying
320956f3135SPhilippe Charnier 			 * to pagein and pageout the same page simultaneously.
3211c7c3c6aSMatthew Dillon 			 *
3221c7c3c6aSMatthew Dillon 			 * We can theoretically allow the busy case on a read
3231c7c3c6aSMatthew Dillon 			 * fault if the page is marked valid, but since such
3241c7c3c6aSMatthew Dillon 			 * pages are typically already pmap'd, putting that
3251c7c3c6aSMatthew Dillon 			 * special case in might be more effort then it is
3261c7c3c6aSMatthew Dillon 			 * worth.  We cannot under any circumstances mess
3271c7c3c6aSMatthew Dillon 			 * around with a vm_page_t->busy page except, perhaps,
3281c7c3c6aSMatthew Dillon 			 * to pmap it.
329df8bae1dSRodney W. Grimes 			 */
3301c7c3c6aSMatthew Dillon 			if ((fs.m->flags & PG_BUSY) || fs.m->busy) {
3314866e085SJohn Dyson 				unlock_things(&fs);
3321c7c3c6aSMatthew Dillon 				(void)vm_page_sleep_busy(fs.m, TRUE, "vmpfw");
333976e77fcSDavid Greenman 				cnt.v_intrans++;
3344866e085SJohn Dyson 				vm_object_deallocate(fs.first_object);
335df8bae1dSRodney W. Grimes 				goto RetryFault;
336df8bae1dSRodney W. Grimes 			}
337f6b04d2bSDavid Greenman 
3384866e085SJohn Dyson 			queue = fs.m->queue;
339c699f45eSDavid Greenman 			s = splvm();
3406d03d577SMatthew Dillon 			vm_pageq_remove_nowakeup(fs.m);
341c699f45eSDavid Greenman 			splx(s);
342c82b0181SJohn Dyson 
34340360b1bSMatthew Dillon 			if ((queue - fs.m->pc) == PQ_CACHE && vm_page_count_severe()) {
3444866e085SJohn Dyson 				vm_page_activate(fs.m);
3454866e085SJohn Dyson 				unlock_and_deallocate(&fs);
34622ba64e8SJohn Dyson 				VM_WAIT;
34722ba64e8SJohn Dyson 				goto RetryFault;
34822ba64e8SJohn Dyson 			}
3497615edaaSMatthew Dillon 
3501c7c3c6aSMatthew Dillon 			/*
3511c7c3c6aSMatthew Dillon 			 * Mark page busy for other processes, and the
3521c7c3c6aSMatthew Dillon 			 * pagedaemon.  If it still isn't completely valid
3531c7c3c6aSMatthew Dillon 			 * (readable), jump to readrest, else break-out ( we
3541c7c3c6aSMatthew Dillon 			 * found the page ).
3551c7c3c6aSMatthew Dillon 			 */
35622ba64e8SJohn Dyson 
357e69763a3SDoug Rabson 			vm_page_busy(fs.m);
3584866e085SJohn Dyson 			if (((fs.m->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) &&
3594866e085SJohn Dyson 				fs.m->object != kernel_object && fs.m->object != kmem_object) {
3600d94caffSDavid Greenman 				goto readrest;
3610d94caffSDavid Greenman 			}
362ffc82b0aSJohn Dyson 
363df8bae1dSRodney W. Grimes 			break;
364df8bae1dSRodney W. Grimes 		}
3651c7c3c6aSMatthew Dillon 
3661c7c3c6aSMatthew Dillon 		/*
36740360b1bSMatthew Dillon 		 * Page is not resident, If this is the search termination
36840360b1bSMatthew Dillon 		 * or the pager might contain the page, allocate a new page.
3691c7c3c6aSMatthew Dillon 		 */
3701c7c3c6aSMatthew Dillon 
37140360b1bSMatthew Dillon 		if (TRYPAGER || fs.object == fs.first_object) {
3724866e085SJohn Dyson 			if (fs.pindex >= fs.object->size) {
3734866e085SJohn Dyson 				unlock_and_deallocate(&fs);
3745f55e841SDavid Greenman 				return (KERN_PROTECTION_FAILURE);
3755f55e841SDavid Greenman 			}
37622ba64e8SJohn Dyson 
377df8bae1dSRodney W. Grimes 			/*
3780d94caffSDavid Greenman 			 * Allocate a new page for this object/offset pair.
379df8bae1dSRodney W. Grimes 			 */
38040360b1bSMatthew Dillon 			fs.m = NULL;
38140360b1bSMatthew Dillon 			if (!vm_page_count_severe()) {
3824866e085SJohn Dyson 				fs.m = vm_page_alloc(fs.object, fs.pindex,
3834866e085SJohn Dyson 				    (fs.vp || fs.object->backing_object)? VM_ALLOC_NORMAL: VM_ALLOC_ZERO);
38440360b1bSMatthew Dillon 			}
3854866e085SJohn Dyson 			if (fs.m == NULL) {
3864866e085SJohn Dyson 				unlock_and_deallocate(&fs);
387df8bae1dSRodney W. Grimes 				VM_WAIT;
388df8bae1dSRodney W. Grimes 				goto RetryFault;
389df8bae1dSRodney W. Grimes 			}
390df8bae1dSRodney W. Grimes 		}
39147221757SJohn Dyson 
3920d94caffSDavid Greenman readrest:
3931c7c3c6aSMatthew Dillon 		/*
39440360b1bSMatthew Dillon 		 * We have found a valid page or we have allocated a new page.
39540360b1bSMatthew Dillon 		 * The page thus may not be valid or may not be entirely
39640360b1bSMatthew Dillon 		 * valid.
39740360b1bSMatthew Dillon 		 *
39840360b1bSMatthew Dillon 		 * Attempt to fault-in the page if there is a chance that the
39940360b1bSMatthew Dillon 		 * pager has it, and potentially fault in additional pages
40040360b1bSMatthew Dillon 		 * at the same time.
4011c7c3c6aSMatthew Dillon 		 */
4021c7c3c6aSMatthew Dillon 
40340360b1bSMatthew Dillon 		if (TRYPAGER) {
404df8bae1dSRodney W. Grimes 			int rv;
40526f9a767SRodney W. Grimes 			int reqpage;
406867a482dSJohn Dyson 			int ahead, behind;
4077f866e4bSAlan Cox 			u_char behavior = vm_map_entry_behavior(fs.entry);
408867a482dSJohn Dyson 
4097f866e4bSAlan Cox 			if (behavior == MAP_ENTRY_BEHAV_RANDOM) {
410867a482dSJohn Dyson 				ahead = 0;
411867a482dSJohn Dyson 				behind = 0;
4122d8acc0fSJohn Dyson 			} else {
4134866e085SJohn Dyson 				behind = (vaddr - fs.entry->start) >> PAGE_SHIFT;
4142d8acc0fSJohn Dyson 				if (behind > VM_FAULT_READ_BEHIND)
4152d8acc0fSJohn Dyson 					behind = VM_FAULT_READ_BEHIND;
4162d8acc0fSJohn Dyson 
4174866e085SJohn Dyson 				ahead = ((fs.entry->end - vaddr) >> PAGE_SHIFT) - 1;
4182d8acc0fSJohn Dyson 				if (ahead > VM_FAULT_READ_AHEAD)
4192d8acc0fSJohn Dyson 					ahead = VM_FAULT_READ_AHEAD;
420867a482dSJohn Dyson 			}
421867a482dSJohn Dyson 
4224866e085SJohn Dyson 			if ((fs.first_object->type != OBJT_DEVICE) &&
42340360b1bSMatthew Dillon 			    (behavior == MAP_ENTRY_BEHAV_SEQUENTIAL ||
42440360b1bSMatthew Dillon                                 (behavior != MAP_ENTRY_BEHAV_RANDOM &&
42540360b1bSMatthew Dillon                                 fs.pindex >= fs.entry->lastr &&
42640360b1bSMatthew Dillon                                 fs.pindex < fs.entry->lastr + VM_FAULT_READ))
42740360b1bSMatthew Dillon 			) {
428867a482dSJohn Dyson 				vm_pindex_t firstpindex, tmppindex;
42940360b1bSMatthew Dillon 
43040360b1bSMatthew Dillon 				if (fs.first_pindex < 2 * VM_FAULT_READ)
431867a482dSJohn Dyson 					firstpindex = 0;
432867a482dSJohn Dyson 				else
43340360b1bSMatthew Dillon 					firstpindex = fs.first_pindex - 2 * VM_FAULT_READ;
434867a482dSJohn Dyson 
4354221e284SAlan Cox 				/*
4364221e284SAlan Cox 				 * note: partially valid pages cannot be
4374221e284SAlan Cox 				 * included in the lookahead - NFS piecemeal
4384221e284SAlan Cox 				 * writes will barf on it badly.
4394221e284SAlan Cox 				 */
4404221e284SAlan Cox 
4414866e085SJohn Dyson 				for(tmppindex = fs.first_pindex - 1;
4422100d645SPeter Wemm 					tmppindex >= firstpindex;
443867a482dSJohn Dyson 					--tmppindex) {
444867a482dSJohn Dyson 					vm_page_t mt;
4454866e085SJohn Dyson 					mt = vm_page_lookup( fs.first_object, tmppindex);
446867a482dSJohn Dyson 					if (mt == NULL || (mt->valid != VM_PAGE_BITS_ALL))
447867a482dSJohn Dyson 						break;
448ff97964aSJohn Dyson 					if (mt->busy ||
4498b03c8edSMatthew Dillon 						(mt->flags & (PG_BUSY | PG_FICTITIOUS | PG_UNMANAGED)) ||
450ff97964aSJohn Dyson 						mt->hold_count ||
451867a482dSJohn Dyson 						mt->wire_count)
452867a482dSJohn Dyson 						continue;
453867a482dSJohn Dyson 					if (mt->dirty == 0)
454867a482dSJohn Dyson 						vm_page_test_dirty(mt);
455867a482dSJohn Dyson 					if (mt->dirty) {
456867a482dSJohn Dyson 						vm_page_protect(mt, VM_PROT_NONE);
457867a482dSJohn Dyson 						vm_page_deactivate(mt);
458867a482dSJohn Dyson 					} else {
459867a482dSJohn Dyson 						vm_page_cache(mt);
460867a482dSJohn Dyson 					}
461867a482dSJohn Dyson 				}
462867a482dSJohn Dyson 
463867a482dSJohn Dyson 				ahead += behind;
464867a482dSJohn Dyson 				behind = 0;
465867a482dSJohn Dyson 			}
466df8bae1dSRodney W. Grimes 
467df8bae1dSRodney W. Grimes 			/*
4680d94caffSDavid Greenman 			 * now we find out if any other pages should be paged
4690d94caffSDavid Greenman 			 * in at this time this routine checks to see if the
4700d94caffSDavid Greenman 			 * pages surrounding this fault reside in the same
4710d94caffSDavid Greenman 			 * object as the page for this fault.  If they do,
4720d94caffSDavid Greenman 			 * then they are faulted in also into the object.  The
4730d94caffSDavid Greenman 			 * array "marray" returned contains an array of
4740d94caffSDavid Greenman 			 * vm_page_t structs where one of them is the
4750d94caffSDavid Greenman 			 * vm_page_t passed to the routine.  The reqpage
4760d94caffSDavid Greenman 			 * return value is the index into the marray for the
4770d94caffSDavid Greenman 			 * vm_page_t passed to the routine.
4781c7c3c6aSMatthew Dillon 			 *
4791c7c3c6aSMatthew Dillon 			 * fs.m plus the additional pages are PG_BUSY'd.
48026f9a767SRodney W. Grimes 			 */
48105f0fdd2SPoul-Henning Kamp 			faultcount = vm_fault_additional_pages(
4824866e085SJohn Dyson 			    fs.m, behind, ahead, marray, &reqpage);
483df8bae1dSRodney W. Grimes 
484df8bae1dSRodney W. Grimes 			/*
48540360b1bSMatthew Dillon 			 * update lastr imperfectly (we do not know how much
48640360b1bSMatthew Dillon 			 * getpages will actually read), but good enough.
48740360b1bSMatthew Dillon 			 */
48840360b1bSMatthew Dillon 			fs.entry->lastr = fs.pindex + faultcount - behind;
48940360b1bSMatthew Dillon 
49040360b1bSMatthew Dillon 			/*
4910d94caffSDavid Greenman 			 * Call the pager to retrieve the data, if any, after
4921c7c3c6aSMatthew Dillon 			 * releasing the lock on the map.  We hold a ref on
4931c7c3c6aSMatthew Dillon 			 * fs.object and the pages are PG_BUSY'd.
494df8bae1dSRodney W. Grimes 			 */
4954866e085SJohn Dyson 			unlock_map(&fs);
496df8bae1dSRodney W. Grimes 
49726f9a767SRodney W. Grimes 			rv = faultcount ?
4984866e085SJohn Dyson 			    vm_pager_get_pages(fs.object, marray, faultcount,
49924a1cce3SDavid Greenman 				reqpage) : VM_PAGER_FAIL;
50022ba64e8SJohn Dyson 
50126f9a767SRodney W. Grimes 			if (rv == VM_PAGER_OK) {
502df8bae1dSRodney W. Grimes 				/*
503f230c45cSJohn Dyson 				 * Found the page. Leave it busy while we play
504f230c45cSJohn Dyson 				 * with it.
505f230c45cSJohn Dyson 				 */
506f230c45cSJohn Dyson 
507f230c45cSJohn Dyson 				/*
5080d94caffSDavid Greenman 				 * Relookup in case pager changed page. Pager
5090d94caffSDavid Greenman 				 * is responsible for disposition of old page
5100d94caffSDavid Greenman 				 * if moved.
511df8bae1dSRodney W. Grimes 				 */
5124866e085SJohn Dyson 				fs.m = vm_page_lookup(fs.object, fs.pindex);
5134866e085SJohn Dyson 				if(!fs.m) {
5144866e085SJohn Dyson 					unlock_and_deallocate(&fs);
515f6b04d2bSDavid Greenman 					goto RetryFault;
516f6b04d2bSDavid Greenman 				}
517f6b04d2bSDavid Greenman 
51826f9a767SRodney W. Grimes 				hardfault++;
5191c7c3c6aSMatthew Dillon 				break; /* break to PAGE HAS BEEN FOUND */
520df8bae1dSRodney W. Grimes 			}
521df8bae1dSRodney W. Grimes 			/*
5220d94caffSDavid Greenman 			 * Remove the bogus page (which does not exist at this
5230d94caffSDavid Greenman 			 * object/offset); before doing so, we must get back
5240d94caffSDavid Greenman 			 * our object lock to preserve our invariant.
525df8bae1dSRodney W. Grimes 			 *
52624a1cce3SDavid Greenman 			 * Also wake up any other process that may want to bring
5270d94caffSDavid Greenman 			 * in this page.
528df8bae1dSRodney W. Grimes 			 *
5290d94caffSDavid Greenman 			 * If this is the top-level object, we must leave the
53024a1cce3SDavid Greenman 			 * busy page to prevent another process from rushing
5310d94caffSDavid Greenman 			 * past us, and inserting the page in that object at
5320d94caffSDavid Greenman 			 * the same time that we are.
533df8bae1dSRodney W. Grimes 			 */
53426f9a767SRodney W. Grimes 
535a83c285cSDavid Greenman 			if (rv == VM_PAGER_ERROR)
536f3679e35SDavid Greenman 				printf("vm_fault: pager read error, pid %d (%s)\n",
537f3679e35SDavid Greenman 				    curproc->p_pid, curproc->p_comm);
53826f9a767SRodney W. Grimes 			/*
539a83c285cSDavid Greenman 			 * Data outside the range of the pager or an I/O error
54026f9a767SRodney W. Grimes 			 */
541a83c285cSDavid Greenman 			/*
5420d94caffSDavid Greenman 			 * XXX - the check for kernel_map is a kludge to work
5430d94caffSDavid Greenman 			 * around having the machine panic on a kernel space
5440d94caffSDavid Greenman 			 * fault w/ I/O error.
545a83c285cSDavid Greenman 			 */
5464866e085SJohn Dyson 			if (((fs.map != kernel_map) && (rv == VM_PAGER_ERROR)) ||
54747221757SJohn Dyson 				(rv == VM_PAGER_BAD)) {
5484866e085SJohn Dyson 				vm_page_free(fs.m);
5494866e085SJohn Dyson 				fs.m = NULL;
5504866e085SJohn Dyson 				unlock_and_deallocate(&fs);
551a83c285cSDavid Greenman 				return ((rv == VM_PAGER_ERROR) ? KERN_FAILURE : KERN_PROTECTION_FAILURE);
55226f9a767SRodney W. Grimes 			}
5534866e085SJohn Dyson 			if (fs.object != fs.first_object) {
5544866e085SJohn Dyson 				vm_page_free(fs.m);
5554866e085SJohn Dyson 				fs.m = NULL;
55626f9a767SRodney W. Grimes 				/*
55726f9a767SRodney W. Grimes 				 * XXX - we cannot just fall out at this
55826f9a767SRodney W. Grimes 				 * point, m has been freed and is invalid!
55926f9a767SRodney W. Grimes 				 */
560df8bae1dSRodney W. Grimes 			}
561df8bae1dSRodney W. Grimes 		}
56240360b1bSMatthew Dillon 
563df8bae1dSRodney W. Grimes 		/*
5641c7c3c6aSMatthew Dillon 		 * We get here if the object has default pager (or unwiring)
5651c7c3c6aSMatthew Dillon 		 * or the pager doesn't have the page.
566df8bae1dSRodney W. Grimes 		 */
5674866e085SJohn Dyson 		if (fs.object == fs.first_object)
5684866e085SJohn Dyson 			fs.first_m = fs.m;
569df8bae1dSRodney W. Grimes 
570df8bae1dSRodney W. Grimes 		/*
5710d94caffSDavid Greenman 		 * Move on to the next object.  Lock the next object before
5720d94caffSDavid Greenman 		 * unlocking the current one.
573df8bae1dSRodney W. Grimes 		 */
574df8bae1dSRodney W. Grimes 
5754866e085SJohn Dyson 		fs.pindex += OFF_TO_IDX(fs.object->backing_object_offset);
5764866e085SJohn Dyson 		next_object = fs.object->backing_object;
577df8bae1dSRodney W. Grimes 		if (next_object == NULL) {
578df8bae1dSRodney W. Grimes 			/*
5790d94caffSDavid Greenman 			 * If there's no object left, fill the page in the top
5800d94caffSDavid Greenman 			 * object with zeros.
581df8bae1dSRodney W. Grimes 			 */
5824866e085SJohn Dyson 			if (fs.object != fs.first_object) {
5834866e085SJohn Dyson 				vm_object_pip_wakeup(fs.object);
584df8bae1dSRodney W. Grimes 
5854866e085SJohn Dyson 				fs.object = fs.first_object;
5864866e085SJohn Dyson 				fs.pindex = fs.first_pindex;
5874866e085SJohn Dyson 				fs.m = fs.first_m;
588df8bae1dSRodney W. Grimes 			}
5894866e085SJohn Dyson 			fs.first_m = NULL;
590df8bae1dSRodney W. Grimes 
5914221e284SAlan Cox 			/*
5924221e284SAlan Cox 			 * Zero the page if necessary and mark it valid.
5934221e284SAlan Cox 			 */
5944866e085SJohn Dyson 			if ((fs.m->flags & PG_ZERO) == 0) {
5954866e085SJohn Dyson 				vm_page_zero_fill(fs.m);
5964221e284SAlan Cox 			} else {
59714286e5eSAlan Cox 				cnt.v_ozfod++;
5984221e284SAlan Cox 			}
599df8bae1dSRodney W. Grimes 			cnt.v_zfod++;
6004221e284SAlan Cox 			fs.m->valid = VM_PAGE_BITS_ALL;
6011c7c3c6aSMatthew Dillon 			break;	/* break to PAGE HAS BEEN FOUND */
6020d94caffSDavid Greenman 		} else {
6034866e085SJohn Dyson 			if (fs.object != fs.first_object) {
6044866e085SJohn Dyson 				vm_object_pip_wakeup(fs.object);
605c0503609SDavid Greenman 			}
6061c7c3c6aSMatthew Dillon 			KASSERT(fs.object != next_object, ("object loop %p", next_object));
6074866e085SJohn Dyson 			fs.object = next_object;
608d474eaaaSDoug Rabson 			vm_object_pip_add(fs.object, 1);
609df8bae1dSRodney W. Grimes 		}
610df8bae1dSRodney W. Grimes 	}
6111c7c3c6aSMatthew Dillon 
6125526d2d9SEivind Eklund 	KASSERT((fs.m->flags & PG_BUSY) != 0,
6135526d2d9SEivind Eklund 	    ("vm_fault: not busy after main loop"));
614df8bae1dSRodney W. Grimes 
615df8bae1dSRodney W. Grimes 	/*
6160d94caffSDavid Greenman 	 * PAGE HAS BEEN FOUND. [Loop invariant still holds -- the object lock
617df8bae1dSRodney W. Grimes 	 * is held.]
618df8bae1dSRodney W. Grimes 	 */
619df8bae1dSRodney W. Grimes 
620df8bae1dSRodney W. Grimes 	/*
6210d94caffSDavid Greenman 	 * If the page is being written, but isn't already owned by the
6220d94caffSDavid Greenman 	 * top-level object, we have to copy it into a new page owned by the
6230d94caffSDavid Greenman 	 * top-level object.
624df8bae1dSRodney W. Grimes 	 */
625df8bae1dSRodney W. Grimes 
6264866e085SJohn Dyson 	if (fs.object != fs.first_object) {
627df8bae1dSRodney W. Grimes 		/*
6280d94caffSDavid Greenman 		 * We only really need to copy if we want to write it.
629df8bae1dSRodney W. Grimes 		 */
630df8bae1dSRodney W. Grimes 
631df8bae1dSRodney W. Grimes 		if (fault_type & VM_PROT_WRITE) {
632df8bae1dSRodney W. Grimes 			/*
6331c7c3c6aSMatthew Dillon 			 * This allows pages to be virtually copied from a
6341c7c3c6aSMatthew Dillon 			 * backing_object into the first_object, where the
6351c7c3c6aSMatthew Dillon 			 * backing object has no other refs to it, and cannot
6361c7c3c6aSMatthew Dillon 			 * gain any more refs.  Instead of a bcopy, we just
6371c7c3c6aSMatthew Dillon 			 * move the page from the backing object to the
6381c7c3c6aSMatthew Dillon 			 * first object.  Note that we must mark the page
6391c7c3c6aSMatthew Dillon 			 * dirty in the first object so that it will go out
6401c7c3c6aSMatthew Dillon 			 * to swap when needed.
641df8bae1dSRodney W. Grimes 			 */
6424866e085SJohn Dyson 			if (map_generation == fs.map->timestamp &&
643de5f6a77SJohn Dyson 				/*
644de5f6a77SJohn Dyson 				 * Only one shadow object
645de5f6a77SJohn Dyson 				 */
6464866e085SJohn Dyson 				(fs.object->shadow_count == 1) &&
647de5f6a77SJohn Dyson 				/*
648de5f6a77SJohn Dyson 				 * No COW refs, except us
649de5f6a77SJohn Dyson 				 */
6504866e085SJohn Dyson 				(fs.object->ref_count == 1) &&
651de5f6a77SJohn Dyson 				/*
6525929bcfaSPhilippe Charnier 				 * No one else can look this object up
653de5f6a77SJohn Dyson 				 */
6544866e085SJohn Dyson 				(fs.object->handle == NULL) &&
655de5f6a77SJohn Dyson 				/*
656de5f6a77SJohn Dyson 				 * No other ways to look the object up
657de5f6a77SJohn Dyson 				 */
6584866e085SJohn Dyson 				((fs.object->type == OBJT_DEFAULT) ||
6594866e085SJohn Dyson 				 (fs.object->type == OBJT_SWAP)) &&
660de5f6a77SJohn Dyson 				/*
661de5f6a77SJohn Dyson 				 * We don't chase down the shadow chain
662de5f6a77SJohn Dyson 				 */
6634866e085SJohn Dyson 				(fs.object == fs.first_object->backing_object) &&
664df8bae1dSRodney W. Grimes 
665df8bae1dSRodney W. Grimes 				/*
6662d8acc0fSJohn Dyson 				 * grab the lock if we need to
6672d8acc0fSJohn Dyson 				 */
6684866e085SJohn Dyson 				(fs.lookup_still_valid ||
6699fdfe602SMatthew Dillon 				 lockmgr(&fs.map->lock, LK_EXCLUSIVE|LK_NOWAIT, (void *)0, curproc) == 0)
6709fdfe602SMatthew Dillon 			    ) {
6712d8acc0fSJohn Dyson 
6724866e085SJohn Dyson 				fs.lookup_still_valid = 1;
6732d8acc0fSJohn Dyson 				/*
674de5f6a77SJohn Dyson 				 * get rid of the unnecessary page
675df8bae1dSRodney W. Grimes 				 */
6764866e085SJohn Dyson 				vm_page_protect(fs.first_m, VM_PROT_NONE);
6774866e085SJohn Dyson 				vm_page_free(fs.first_m);
6784866e085SJohn Dyson 				fs.first_m = NULL;
6794866e085SJohn Dyson 
680de5f6a77SJohn Dyson 				/*
6811c7c3c6aSMatthew Dillon 				 * grab the page and put it into the
6821c7c3c6aSMatthew Dillon 				 * process'es object.  The page is
6831c7c3c6aSMatthew Dillon 				 * automatically made dirty.
684de5f6a77SJohn Dyson 				 */
6854866e085SJohn Dyson 				vm_page_rename(fs.m, fs.first_object, fs.first_pindex);
6864866e085SJohn Dyson 				fs.first_m = fs.m;
687e69763a3SDoug Rabson 				vm_page_busy(fs.first_m);
6884866e085SJohn Dyson 				fs.m = NULL;
6894866e085SJohn Dyson 				cnt.v_cow_optim++;
690de5f6a77SJohn Dyson 			} else {
691de5f6a77SJohn Dyson 				/*
692de5f6a77SJohn Dyson 				 * Oh, well, lets copy it.
693de5f6a77SJohn Dyson 				 */
6944866e085SJohn Dyson 				vm_page_copy(fs.m, fs.first_m);
695de5f6a77SJohn Dyson 			}
696df8bae1dSRodney W. Grimes 
6974866e085SJohn Dyson 			if (fs.m) {
698df8bae1dSRodney W. Grimes 				/*
699df8bae1dSRodney W. Grimes 				 * We no longer need the old page or object.
700df8bae1dSRodney W. Grimes 				 */
7014866e085SJohn Dyson 				release_page(&fs);
702de5f6a77SJohn Dyson 			}
703df8bae1dSRodney W. Grimes 
7041c7c3c6aSMatthew Dillon 			/*
7051c7c3c6aSMatthew Dillon 			 * fs.object != fs.first_object due to above
7061c7c3c6aSMatthew Dillon 			 * conditional
7071c7c3c6aSMatthew Dillon 			 */
7081c7c3c6aSMatthew Dillon 
7094866e085SJohn Dyson 			vm_object_pip_wakeup(fs.object);
7101c7c3c6aSMatthew Dillon 
711df8bae1dSRodney W. Grimes 			/*
712df8bae1dSRodney W. Grimes 			 * Only use the new page below...
713df8bae1dSRodney W. Grimes 			 */
714df8bae1dSRodney W. Grimes 
715df8bae1dSRodney W. Grimes 			cnt.v_cow_faults++;
7164866e085SJohn Dyson 			fs.m = fs.first_m;
7174866e085SJohn Dyson 			fs.object = fs.first_object;
7184866e085SJohn Dyson 			fs.pindex = fs.first_pindex;
719df8bae1dSRodney W. Grimes 
7200d94caffSDavid Greenman 		} else {
721df8bae1dSRodney W. Grimes 			prot &= ~VM_PROT_WRITE;
722df8bae1dSRodney W. Grimes 		}
723df8bae1dSRodney W. Grimes 	}
724df8bae1dSRodney W. Grimes 
725df8bae1dSRodney W. Grimes 	/*
7260d94caffSDavid Greenman 	 * We must verify that the maps have not changed since our last
7270d94caffSDavid Greenman 	 * lookup.
728df8bae1dSRodney W. Grimes 	 */
729df8bae1dSRodney W. Grimes 
7304866e085SJohn Dyson 	if (!fs.lookup_still_valid &&
7314866e085SJohn Dyson 		(fs.map->timestamp != map_generation)) {
732df8bae1dSRodney W. Grimes 		vm_object_t retry_object;
733a316d390SJohn Dyson 		vm_pindex_t retry_pindex;
734df8bae1dSRodney W. Grimes 		vm_prot_t retry_prot;
735df8bae1dSRodney W. Grimes 
736df8bae1dSRodney W. Grimes 		/*
7370d94caffSDavid Greenman 		 * Since map entries may be pageable, make sure we can take a
7380d94caffSDavid Greenman 		 * page fault on them.
739df8bae1dSRodney W. Grimes 		 */
740df8bae1dSRodney W. Grimes 
741df8bae1dSRodney W. Grimes 		/*
742b33fb764SMatthew Dillon 		 * Unlock vnode before the lookup to avoid deadlock.   E.G.
743b33fb764SMatthew Dillon 		 * avoid a deadlock between the inode and exec_map that can
744b33fb764SMatthew Dillon 		 * occur due to locks being obtained in different orders.
745b33fb764SMatthew Dillon 		 */
746b33fb764SMatthew Dillon 
747b33fb764SMatthew Dillon 		if (fs.vp != NULL) {
748b33fb764SMatthew Dillon 			vput(fs.vp);
749b33fb764SMatthew Dillon 			fs.vp = NULL;
750b33fb764SMatthew Dillon 		}
751b823bbd6SMatthew Dillon 
752b823bbd6SMatthew Dillon 		if (fs.map->infork) {
753b823bbd6SMatthew Dillon 			release_page(&fs);
754b823bbd6SMatthew Dillon 			unlock_and_deallocate(&fs);
755b823bbd6SMatthew Dillon 			goto RetryFault;
756b823bbd6SMatthew Dillon 		}
757b33fb764SMatthew Dillon 
758b33fb764SMatthew Dillon 		/*
75924a1cce3SDavid Greenman 		 * To avoid trying to write_lock the map while another process
7600d94caffSDavid Greenman 		 * has it read_locked (in vm_map_pageable), we do not try for
7610d94caffSDavid Greenman 		 * write permission.  If the page is still writable, we will
7620d94caffSDavid Greenman 		 * get write permission.  If it is not, or has been marked
7630d94caffSDavid Greenman 		 * needs_copy, we enter the mapping without write permission,
7640d94caffSDavid Greenman 		 * and will merely take another fault.
765df8bae1dSRodney W. Grimes 		 */
7664866e085SJohn Dyson 		result = vm_map_lookup(&fs.map, vaddr, fault_type & ~VM_PROT_WRITE,
7674866e085SJohn Dyson 		    &fs.entry, &retry_object, &retry_pindex, &retry_prot, &wired);
7684866e085SJohn Dyson 		map_generation = fs.map->timestamp;
769df8bae1dSRodney W. Grimes 
770df8bae1dSRodney W. Grimes 		/*
7710d94caffSDavid Greenman 		 * If we don't need the page any longer, put it on the active
7720d94caffSDavid Greenman 		 * list (the easiest thing to do here).  If no one needs it,
7730d94caffSDavid Greenman 		 * pageout will grab it eventually.
774df8bae1dSRodney W. Grimes 		 */
775df8bae1dSRodney W. Grimes 
776df8bae1dSRodney W. Grimes 		if (result != KERN_SUCCESS) {
7774866e085SJohn Dyson 			release_page(&fs);
7784866e085SJohn Dyson 			unlock_and_deallocate(&fs);
779df8bae1dSRodney W. Grimes 			return (result);
780df8bae1dSRodney W. Grimes 		}
7814866e085SJohn Dyson 		fs.lookup_still_valid = TRUE;
782df8bae1dSRodney W. Grimes 
7834866e085SJohn Dyson 		if ((retry_object != fs.first_object) ||
7844866e085SJohn Dyson 		    (retry_pindex != fs.first_pindex)) {
7854866e085SJohn Dyson 			release_page(&fs);
7864866e085SJohn Dyson 			unlock_and_deallocate(&fs);
787df8bae1dSRodney W. Grimes 			goto RetryFault;
788df8bae1dSRodney W. Grimes 		}
789df8bae1dSRodney W. Grimes 		/*
7900d94caffSDavid Greenman 		 * Check whether the protection has changed or the object has
7910d94caffSDavid Greenman 		 * been copied while we left the map unlocked. Changing from
7920d94caffSDavid Greenman 		 * read to write permission is OK - we leave the page
7930d94caffSDavid Greenman 		 * write-protected, and catch the write fault. Changing from
7940d94caffSDavid Greenman 		 * write to read permission means that we can't mark the page
7950d94caffSDavid Greenman 		 * write-enabled after all.
796df8bae1dSRodney W. Grimes 		 */
797df8bae1dSRodney W. Grimes 		prot &= retry_prot;
798df8bae1dSRodney W. Grimes 	}
799df8bae1dSRodney W. Grimes 
800df8bae1dSRodney W. Grimes 	/*
8010d94caffSDavid Greenman 	 * Put this page into the physical map. We had to do the unlock above
8020d94caffSDavid Greenman 	 * because pmap_enter may cause other faults.   We don't put the page
8030d94caffSDavid Greenman 	 * back on the active queue until later so that the page-out daemon
8040d94caffSDavid Greenman 	 * won't find us (yet).
805df8bae1dSRodney W. Grimes 	 */
806df8bae1dSRodney W. Grimes 
8072ddba215SDavid Greenman 	if (prot & VM_PROT_WRITE) {
808e69763a3SDoug Rabson 		vm_page_flag_set(fs.m, PG_WRITEABLE);
809069e9bc1SDoug Rabson 		vm_object_set_flag(fs.m->object,
810069e9bc1SDoug Rabson 				   OBJ_WRITEABLE|OBJ_MIGHTBEDIRTY);
8114f79d873SMatthew Dillon 
8122ddba215SDavid Greenman 		/*
8132ddba215SDavid Greenman 		 * If the fault is a write, we know that this page is being
8144f79d873SMatthew Dillon 		 * written NOW so dirty it explicitly to save on
8154f79d873SMatthew Dillon 		 * pmap_is_modified() calls later.
8164f79d873SMatthew Dillon 		 *
8174f79d873SMatthew Dillon 		 * If this is a NOSYNC mmap we do not want to set PG_NOSYNC
8184f79d873SMatthew Dillon 		 * if the page is already dirty to prevent data written with
8194f79d873SMatthew Dillon 		 * the expectation of being synced from not being synced.
8204f79d873SMatthew Dillon 		 * Likewise if this entry does not request NOSYNC then make
8214f79d873SMatthew Dillon 		 * sure the page isn't marked NOSYNC.  Applications sharing
8224f79d873SMatthew Dillon 		 * data should use the same flags to avoid ping ponging.
8231c7c3c6aSMatthew Dillon 		 *
8241c7c3c6aSMatthew Dillon 		 * Also tell the backing pager, if any, that it should remove
8251c7c3c6aSMatthew Dillon 		 * any swap backing since the page is now dirty.
8262ddba215SDavid Greenman 		 */
8274f79d873SMatthew Dillon 		if (fs.entry->eflags & MAP_ENTRY_NOSYNC) {
8284f79d873SMatthew Dillon 			if (fs.m->dirty == 0)
8294f79d873SMatthew Dillon 				vm_page_flag_set(fs.m, PG_NOSYNC);
8304f79d873SMatthew Dillon 		} else {
8314f79d873SMatthew Dillon 			vm_page_flag_clear(fs.m, PG_NOSYNC);
8324f79d873SMatthew Dillon 		}
8335bf53acbSMatthew Dillon 		if (fault_flags & VM_FAULT_DIRTY) {
8345bf53acbSMatthew Dillon 			int s;
8357dbf82dcSMatthew Dillon 			vm_page_dirty(fs.m);
836ef0646f9SMatthew Dillon 			s = splvm();
8371c7c3c6aSMatthew Dillon 			vm_pager_page_unswapped(fs.m);
838ef0646f9SMatthew Dillon 			splx(s);
8392ddba215SDavid Greenman 		}
8402ddba215SDavid Greenman 	}
841f6b04d2bSDavid Greenman 
842bc6d84a6SMatthew Dillon 	/*
843bc6d84a6SMatthew Dillon 	 * Page had better still be busy
844bc6d84a6SMatthew Dillon 	 */
845bc6d84a6SMatthew Dillon 
846ca06c247SAlan Cox 	KASSERT(fs.m->flags & PG_BUSY,
847ca06c247SAlan Cox 		("vm_fault: page %p not busy!", fs.m));
848bc6d84a6SMatthew Dillon 
8494866e085SJohn Dyson 	unlock_things(&fs);
8504221e284SAlan Cox 
8514221e284SAlan Cox 	/*
8524221e284SAlan Cox 	 * Sanity check: page must be completely valid or it is not fit to
8534221e284SAlan Cox 	 * map into user space.  vm_pager_get_pages() ensures this.
8544221e284SAlan Cox 	 */
8554221e284SAlan Cox 
8564221e284SAlan Cox 	if (fs.m->valid != VM_PAGE_BITS_ALL) {
8574221e284SAlan Cox 		vm_page_zero_invalid(fs.m, TRUE);
8584221e284SAlan Cox 		printf("Warning: page %p partially invalid on fault\n", fs.m);
8594221e284SAlan Cox 	}
860f919ebdeSDavid Greenman 
8610385347cSPeter Wemm 	pmap_enter(fs.map->pmap, vaddr, fs.m, prot, wired);
8624221e284SAlan Cox 
8632d8acc0fSJohn Dyson 	if (((fault_flags & VM_FAULT_WIRE_MASK) == 0) && (wired == 0)) {
8644866e085SJohn Dyson 		pmap_prefault(fs.map->pmap, vaddr, fs.entry);
8652d8acc0fSJohn Dyson 	}
866df8bae1dSRodney W. Grimes 
8674221e284SAlan Cox 	vm_page_flag_clear(fs.m, PG_ZERO);
868e69763a3SDoug Rabson 	vm_page_flag_set(fs.m, PG_MAPPED|PG_REFERENCED);
869a04c970aSJohn Dyson 	if (fault_flags & VM_FAULT_HOLD)
8704866e085SJohn Dyson 		vm_page_hold(fs.m);
871ff97964aSJohn Dyson 
872df8bae1dSRodney W. Grimes 	/*
8730d94caffSDavid Greenman 	 * If the page is not wired down, then put it where the pageout daemon
8740d94caffSDavid Greenman 	 * can find it.
875df8bae1dSRodney W. Grimes 	 */
876bc6d84a6SMatthew Dillon 
877a04c970aSJohn Dyson 	if (fault_flags & VM_FAULT_WIRE_MASK) {
878df8bae1dSRodney W. Grimes 		if (wired)
8794866e085SJohn Dyson 			vm_page_wire(fs.m);
880df8bae1dSRodney W. Grimes 		else
88173007561SDavid Greenman 			vm_page_unwire(fs.m, 1);
8820d94caffSDavid Greenman 	} else {
8834866e085SJohn Dyson 		vm_page_activate(fs.m);
88426f9a767SRodney W. Grimes 	}
88526f9a767SRodney W. Grimes 
8869ed346baSBosko Milekic 	mtx_lock_spin(&sched_lock);
887b9393356SJohn Baldwin 	if (curproc && (curproc->p_sflag & PS_INMEM) && curproc->p_stats) {
88826f9a767SRodney W. Grimes 		if (hardfault) {
88926f9a767SRodney W. Grimes 			curproc->p_stats->p_ru.ru_majflt++;
89026f9a767SRodney W. Grimes 		} else {
89126f9a767SRodney W. Grimes 			curproc->p_stats->p_ru.ru_minflt++;
89226f9a767SRodney W. Grimes 		}
89326f9a767SRodney W. Grimes 	}
8949ed346baSBosko Milekic 	mtx_unlock_spin(&sched_lock);
895df8bae1dSRodney W. Grimes 
896df8bae1dSRodney W. Grimes 	/*
897df8bae1dSRodney W. Grimes 	 * Unlock everything, and return
898df8bae1dSRodney W. Grimes 	 */
899df8bae1dSRodney W. Grimes 
900e69763a3SDoug Rabson 	vm_page_wakeup(fs.m);
9014866e085SJohn Dyson 	vm_object_deallocate(fs.first_object);
902df8bae1dSRodney W. Grimes 
903df8bae1dSRodney W. Grimes 	return (KERN_SUCCESS);
904df8bae1dSRodney W. Grimes 
905df8bae1dSRodney W. Grimes }
906df8bae1dSRodney W. Grimes 
907df8bae1dSRodney W. Grimes /*
908df8bae1dSRodney W. Grimes  *	vm_fault_wire:
909df8bae1dSRodney W. Grimes  *
910df8bae1dSRodney W. Grimes  *	Wire down a range of virtual addresses in a map.
911df8bae1dSRodney W. Grimes  */
912df8bae1dSRodney W. Grimes int
913df8bae1dSRodney W. Grimes vm_fault_wire(map, start, end)
914df8bae1dSRodney W. Grimes 	vm_map_t map;
915df8bae1dSRodney W. Grimes 	vm_offset_t start, end;
916df8bae1dSRodney W. Grimes {
91726f9a767SRodney W. Grimes 
91854d92145SMatthew Dillon 	vm_offset_t va;
91954d92145SMatthew Dillon 	pmap_t pmap;
920df8bae1dSRodney W. Grimes 	int rv;
921df8bae1dSRodney W. Grimes 
922df8bae1dSRodney W. Grimes 	pmap = vm_map_pmap(map);
923df8bae1dSRodney W. Grimes 
924df8bae1dSRodney W. Grimes 	/*
9250d94caffSDavid Greenman 	 * Inform the physical mapping system that the range of addresses may
9260d94caffSDavid Greenman 	 * not fault, so that page tables and such can be locked down as well.
927df8bae1dSRodney W. Grimes 	 */
928df8bae1dSRodney W. Grimes 
929df8bae1dSRodney W. Grimes 	pmap_pageable(pmap, start, end, FALSE);
930df8bae1dSRodney W. Grimes 
931df8bae1dSRodney W. Grimes 	/*
9320d94caffSDavid Greenman 	 * We simulate a fault to get the page and enter it in the physical
9330d94caffSDavid Greenman 	 * map.
934df8bae1dSRodney W. Grimes 	 */
935df8bae1dSRodney W. Grimes 
936df8bae1dSRodney W. Grimes 	for (va = start; va < end; va += PAGE_SIZE) {
9377aaaa4fdSJohn Dyson 		rv = vm_fault(map, va, VM_PROT_READ|VM_PROT_WRITE,
9387aaaa4fdSJohn Dyson 			VM_FAULT_CHANGE_WIRING);
9397aaaa4fdSJohn Dyson 		if (rv) {
9407aaaa4fdSJohn Dyson 			if (va != start)
9417aaaa4fdSJohn Dyson 				vm_fault_unwire(map, start, va);
9427aaaa4fdSJohn Dyson 			return (rv);
9437aaaa4fdSJohn Dyson 		}
9447aaaa4fdSJohn Dyson 	}
9457aaaa4fdSJohn Dyson 	return (KERN_SUCCESS);
9467aaaa4fdSJohn Dyson }
9477aaaa4fdSJohn Dyson 
9487aaaa4fdSJohn Dyson /*
9497aaaa4fdSJohn Dyson  *	vm_fault_user_wire:
9507aaaa4fdSJohn Dyson  *
9517aaaa4fdSJohn Dyson  *	Wire down a range of virtual addresses in a map.  This
9527aaaa4fdSJohn Dyson  *	is for user mode though, so we only ask for read access
9537aaaa4fdSJohn Dyson  *	on currently read only sections.
9547aaaa4fdSJohn Dyson  */
9557aaaa4fdSJohn Dyson int
9567aaaa4fdSJohn Dyson vm_fault_user_wire(map, start, end)
9577aaaa4fdSJohn Dyson 	vm_map_t map;
9587aaaa4fdSJohn Dyson 	vm_offset_t start, end;
9597aaaa4fdSJohn Dyson {
9607aaaa4fdSJohn Dyson 
96154d92145SMatthew Dillon 	vm_offset_t va;
96254d92145SMatthew Dillon 	pmap_t pmap;
9637aaaa4fdSJohn Dyson 	int rv;
9647aaaa4fdSJohn Dyson 
9650cddd8f0SMatthew Dillon 	GIANT_REQUIRED;
9660cddd8f0SMatthew Dillon 
9677aaaa4fdSJohn Dyson 	pmap = vm_map_pmap(map);
9687aaaa4fdSJohn Dyson 
9697aaaa4fdSJohn Dyson 	/*
9707aaaa4fdSJohn Dyson 	 * Inform the physical mapping system that the range of addresses may
9717aaaa4fdSJohn Dyson 	 * not fault, so that page tables and such can be locked down as well.
9727aaaa4fdSJohn Dyson 	 */
9732d8acc0fSJohn Dyson 
9747aaaa4fdSJohn Dyson 	pmap_pageable(pmap, start, end, FALSE);
9757aaaa4fdSJohn Dyson 
9767aaaa4fdSJohn Dyson 	/*
9777aaaa4fdSJohn Dyson 	 * We simulate a fault to get the page and enter it in the physical
9787aaaa4fdSJohn Dyson 	 * map.
9797aaaa4fdSJohn Dyson 	 */
9807aaaa4fdSJohn Dyson 	for (va = start; va < end; va += PAGE_SIZE) {
9817aaaa4fdSJohn Dyson 		rv = vm_fault(map, va, VM_PROT_READ, VM_FAULT_USER_WIRE);
982df8bae1dSRodney W. Grimes 		if (rv) {
983df8bae1dSRodney W. Grimes 			if (va != start)
984df8bae1dSRodney W. Grimes 				vm_fault_unwire(map, start, va);
985df8bae1dSRodney W. Grimes 			return (rv);
986df8bae1dSRodney W. Grimes 		}
987df8bae1dSRodney W. Grimes 	}
988df8bae1dSRodney W. Grimes 	return (KERN_SUCCESS);
989df8bae1dSRodney W. Grimes }
990df8bae1dSRodney W. Grimes 
991df8bae1dSRodney W. Grimes 
992df8bae1dSRodney W. Grimes /*
993df8bae1dSRodney W. Grimes  *	vm_fault_unwire:
994df8bae1dSRodney W. Grimes  *
995df8bae1dSRodney W. Grimes  *	Unwire a range of virtual addresses in a map.
996df8bae1dSRodney W. Grimes  */
99726f9a767SRodney W. Grimes void
99826f9a767SRodney W. Grimes vm_fault_unwire(map, start, end)
999df8bae1dSRodney W. Grimes 	vm_map_t map;
1000df8bae1dSRodney W. Grimes 	vm_offset_t start, end;
1001df8bae1dSRodney W. Grimes {
1002df8bae1dSRodney W. Grimes 
100354d92145SMatthew Dillon 	vm_offset_t va, pa;
100454d92145SMatthew Dillon 	pmap_t pmap;
1005df8bae1dSRodney W. Grimes 
1006df8bae1dSRodney W. Grimes 	pmap = vm_map_pmap(map);
1007df8bae1dSRodney W. Grimes 
1008df8bae1dSRodney W. Grimes 	/*
10090d94caffSDavid Greenman 	 * Since the pages are wired down, we must be able to get their
10100d94caffSDavid Greenman 	 * mappings from the physical map system.
1011df8bae1dSRodney W. Grimes 	 */
1012df8bae1dSRodney W. Grimes 
1013df8bae1dSRodney W. Grimes 	for (va = start; va < end; va += PAGE_SIZE) {
1014df8bae1dSRodney W. Grimes 		pa = pmap_extract(pmap, va);
1015b18bfc3dSJohn Dyson 		if (pa != (vm_offset_t) 0) {
1016df8bae1dSRodney W. Grimes 			pmap_change_wiring(pmap, va, FALSE);
101773007561SDavid Greenman 			vm_page_unwire(PHYS_TO_VM_PAGE(pa), 1);
1018df8bae1dSRodney W. Grimes 		}
1019b18bfc3dSJohn Dyson 	}
1020df8bae1dSRodney W. Grimes 
1021df8bae1dSRodney W. Grimes 	/*
10220d94caffSDavid Greenman 	 * Inform the physical mapping system that the range of addresses may
10230d94caffSDavid Greenman 	 * fault, so that page tables and such may be unwired themselves.
1024df8bae1dSRodney W. Grimes 	 */
1025df8bae1dSRodney W. Grimes 
1026df8bae1dSRodney W. Grimes 	pmap_pageable(pmap, start, end, TRUE);
1027df8bae1dSRodney W. Grimes 
1028df8bae1dSRodney W. Grimes }
1029df8bae1dSRodney W. Grimes 
1030df8bae1dSRodney W. Grimes /*
1031df8bae1dSRodney W. Grimes  *	Routine:
1032df8bae1dSRodney W. Grimes  *		vm_fault_copy_entry
1033df8bae1dSRodney W. Grimes  *	Function:
1034df8bae1dSRodney W. Grimes  *		Copy all of the pages from a wired-down map entry to another.
1035df8bae1dSRodney W. Grimes  *
1036df8bae1dSRodney W. Grimes  *	In/out conditions:
1037df8bae1dSRodney W. Grimes  *		The source and destination maps must be locked for write.
1038df8bae1dSRodney W. Grimes  *		The source map entry must be wired down (or be a sharing map
1039df8bae1dSRodney W. Grimes  *		entry corresponding to a main map entry that is wired down).
1040df8bae1dSRodney W. Grimes  */
1041df8bae1dSRodney W. Grimes 
104226f9a767SRodney W. Grimes void
104326f9a767SRodney W. Grimes vm_fault_copy_entry(dst_map, src_map, dst_entry, src_entry)
1044df8bae1dSRodney W. Grimes 	vm_map_t dst_map;
1045df8bae1dSRodney W. Grimes 	vm_map_t src_map;
1046df8bae1dSRodney W. Grimes 	vm_map_entry_t dst_entry;
1047df8bae1dSRodney W. Grimes 	vm_map_entry_t src_entry;
1048df8bae1dSRodney W. Grimes {
1049df8bae1dSRodney W. Grimes 	vm_object_t dst_object;
1050df8bae1dSRodney W. Grimes 	vm_object_t src_object;
1051a316d390SJohn Dyson 	vm_ooffset_t dst_offset;
1052a316d390SJohn Dyson 	vm_ooffset_t src_offset;
1053df8bae1dSRodney W. Grimes 	vm_prot_t prot;
1054df8bae1dSRodney W. Grimes 	vm_offset_t vaddr;
1055df8bae1dSRodney W. Grimes 	vm_page_t dst_m;
1056df8bae1dSRodney W. Grimes 	vm_page_t src_m;
1057df8bae1dSRodney W. Grimes 
1058df8bae1dSRodney W. Grimes #ifdef	lint
1059df8bae1dSRodney W. Grimes 	src_map++;
10600d94caffSDavid Greenman #endif	/* lint */
1061df8bae1dSRodney W. Grimes 
1062df8bae1dSRodney W. Grimes 	src_object = src_entry->object.vm_object;
1063df8bae1dSRodney W. Grimes 	src_offset = src_entry->offset;
1064df8bae1dSRodney W. Grimes 
1065df8bae1dSRodney W. Grimes 	/*
10660d94caffSDavid Greenman 	 * Create the top-level object for the destination entry. (Doesn't
10670d94caffSDavid Greenman 	 * actually shadow anything - we copy the pages directly.)
1068df8bae1dSRodney W. Grimes 	 */
106924a1cce3SDavid Greenman 	dst_object = vm_object_allocate(OBJT_DEFAULT,
1070a316d390SJohn Dyson 	    (vm_size_t) OFF_TO_IDX(dst_entry->end - dst_entry->start));
1071df8bae1dSRodney W. Grimes 
1072df8bae1dSRodney W. Grimes 	dst_entry->object.vm_object = dst_object;
1073df8bae1dSRodney W. Grimes 	dst_entry->offset = 0;
1074df8bae1dSRodney W. Grimes 
1075df8bae1dSRodney W. Grimes 	prot = dst_entry->max_protection;
1076df8bae1dSRodney W. Grimes 
1077df8bae1dSRodney W. Grimes 	/*
10780d94caffSDavid Greenman 	 * Loop through all of the pages in the entry's range, copying each
10790d94caffSDavid Greenman 	 * one from the source object (it should be there) to the destination
10800d94caffSDavid Greenman 	 * object.
1081df8bae1dSRodney W. Grimes 	 */
1082df8bae1dSRodney W. Grimes 	for (vaddr = dst_entry->start, dst_offset = 0;
1083df8bae1dSRodney W. Grimes 	    vaddr < dst_entry->end;
1084df8bae1dSRodney W. Grimes 	    vaddr += PAGE_SIZE, dst_offset += PAGE_SIZE) {
1085df8bae1dSRodney W. Grimes 
1086df8bae1dSRodney W. Grimes 		/*
1087df8bae1dSRodney W. Grimes 		 * Allocate a page in the destination object
1088df8bae1dSRodney W. Grimes 		 */
1089df8bae1dSRodney W. Grimes 		do {
1090a316d390SJohn Dyson 			dst_m = vm_page_alloc(dst_object,
1091a316d390SJohn Dyson 				OFF_TO_IDX(dst_offset), VM_ALLOC_NORMAL);
1092df8bae1dSRodney W. Grimes 			if (dst_m == NULL) {
1093df8bae1dSRodney W. Grimes 				VM_WAIT;
1094df8bae1dSRodney W. Grimes 			}
1095df8bae1dSRodney W. Grimes 		} while (dst_m == NULL);
1096df8bae1dSRodney W. Grimes 
1097df8bae1dSRodney W. Grimes 		/*
1098df8bae1dSRodney W. Grimes 		 * Find the page in the source object, and copy it in.
10990d94caffSDavid Greenman 		 * (Because the source is wired down, the page will be in
11000d94caffSDavid Greenman 		 * memory.)
1101df8bae1dSRodney W. Grimes 		 */
1102a316d390SJohn Dyson 		src_m = vm_page_lookup(src_object,
1103a316d390SJohn Dyson 			OFF_TO_IDX(dst_offset + src_offset));
1104df8bae1dSRodney W. Grimes 		if (src_m == NULL)
1105df8bae1dSRodney W. Grimes 			panic("vm_fault_copy_wired: page missing");
1106df8bae1dSRodney W. Grimes 
1107df8bae1dSRodney W. Grimes 		vm_page_copy(src_m, dst_m);
1108df8bae1dSRodney W. Grimes 
1109df8bae1dSRodney W. Grimes 		/*
1110df8bae1dSRodney W. Grimes 		 * Enter it in the pmap...
1111df8bae1dSRodney W. Grimes 		 */
1112df8bae1dSRodney W. Grimes 
1113e69763a3SDoug Rabson 		vm_page_flag_clear(dst_m, PG_ZERO);
11140385347cSPeter Wemm 		pmap_enter(dst_map->pmap, vaddr, dst_m, prot, FALSE);
1115e69763a3SDoug Rabson 		vm_page_flag_set(dst_m, PG_WRITEABLE|PG_MAPPED);
1116df8bae1dSRodney W. Grimes 
1117df8bae1dSRodney W. Grimes 		/*
1118df8bae1dSRodney W. Grimes 		 * Mark it no longer busy, and put it on the active list.
1119df8bae1dSRodney W. Grimes 		 */
1120df8bae1dSRodney W. Grimes 		vm_page_activate(dst_m);
1121e69763a3SDoug Rabson 		vm_page_wakeup(dst_m);
1122df8bae1dSRodney W. Grimes 	}
1123df8bae1dSRodney W. Grimes }
112426f9a767SRodney W. Grimes 
112526f9a767SRodney W. Grimes 
112626f9a767SRodney W. Grimes /*
112726f9a767SRodney W. Grimes  * This routine checks around the requested page for other pages that
112822ba64e8SJohn Dyson  * might be able to be faulted in.  This routine brackets the viable
112922ba64e8SJohn Dyson  * pages for the pages to be paged in.
113026f9a767SRodney W. Grimes  *
113126f9a767SRodney W. Grimes  * Inputs:
113222ba64e8SJohn Dyson  *	m, rbehind, rahead
113326f9a767SRodney W. Grimes  *
113426f9a767SRodney W. Grimes  * Outputs:
113526f9a767SRodney W. Grimes  *  marray (array of vm_page_t), reqpage (index of requested page)
113626f9a767SRodney W. Grimes  *
113726f9a767SRodney W. Grimes  * Return value:
113826f9a767SRodney W. Grimes  *  number of pages in marray
113923955314SAlfred Perlstein  *
114023955314SAlfred Perlstein  * This routine can't block.
114126f9a767SRodney W. Grimes  */
1142303b270bSEivind Eklund static int
114322ba64e8SJohn Dyson vm_fault_additional_pages(m, rbehind, rahead, marray, reqpage)
114426f9a767SRodney W. Grimes 	vm_page_t m;
114526f9a767SRodney W. Grimes 	int rbehind;
114622ba64e8SJohn Dyson 	int rahead;
114726f9a767SRodney W. Grimes 	vm_page_t *marray;
114826f9a767SRodney W. Grimes 	int *reqpage;
114926f9a767SRodney W. Grimes {
11502d8acc0fSJohn Dyson 	int i,j;
115126f9a767SRodney W. Grimes 	vm_object_t object;
1152a316d390SJohn Dyson 	vm_pindex_t pindex, startpindex, endpindex, tpindex;
115326f9a767SRodney W. Grimes 	vm_page_t rtm;
1154170db9c6SJohn Dyson 	int cbehind, cahead;
115526f9a767SRodney W. Grimes 
11560cddd8f0SMatthew Dillon 	GIANT_REQUIRED;
115723955314SAlfred Perlstein 
115826f9a767SRodney W. Grimes 	object = m->object;
1159a316d390SJohn Dyson 	pindex = m->pindex;
116026f9a767SRodney W. Grimes 
116126f9a767SRodney W. Grimes 	/*
1162f35329acSJohn Dyson 	 * we don't fault-ahead for device pager
1163f35329acSJohn Dyson 	 */
1164f35329acSJohn Dyson 	if (object->type == OBJT_DEVICE) {
1165f35329acSJohn Dyson 		*reqpage = 0;
1166f35329acSJohn Dyson 		marray[0] = m;
1167f35329acSJohn Dyson 		return 1;
1168f35329acSJohn Dyson 	}
1169f35329acSJohn Dyson 
1170f35329acSJohn Dyson 	/*
117126f9a767SRodney W. Grimes 	 * if the requested page is not available, then give up now
117226f9a767SRodney W. Grimes 	 */
117326f9a767SRodney W. Grimes 
11741c7c3c6aSMatthew Dillon 	if (!vm_pager_has_page(object, pindex, &cbehind, &cahead)) {
117526f9a767SRodney W. Grimes 		return 0;
11762d8acc0fSJohn Dyson 	}
117726f9a767SRodney W. Grimes 
117822ba64e8SJohn Dyson 	if ((cbehind == 0) && (cahead == 0)) {
117922ba64e8SJohn Dyson 		*reqpage = 0;
118022ba64e8SJohn Dyson 		marray[0] = m;
118122ba64e8SJohn Dyson 		return 1;
1182170db9c6SJohn Dyson 	}
118322ba64e8SJohn Dyson 
118422ba64e8SJohn Dyson 	if (rahead > cahead) {
118522ba64e8SJohn Dyson 		rahead = cahead;
118622ba64e8SJohn Dyson 	}
118722ba64e8SJohn Dyson 
1188170db9c6SJohn Dyson 	if (rbehind > cbehind) {
1189170db9c6SJohn Dyson 		rbehind = cbehind;
1190170db9c6SJohn Dyson 	}
1191170db9c6SJohn Dyson 
119226f9a767SRodney W. Grimes 	/*
119326f9a767SRodney W. Grimes 	 * try to do any readahead that we might have free pages for.
119426f9a767SRodney W. Grimes 	 */
1195ccbb2f72SJohn Dyson 	if ((rahead + rbehind) >
119622ba64e8SJohn Dyson 		((cnt.v_free_count + cnt.v_cache_count) - cnt.v_free_reserved)) {
1197f919ebdeSDavid Greenman 		pagedaemon_wakeup();
119826f9a767SRodney W. Grimes 		marray[0] = m;
11992d8acc0fSJohn Dyson 		*reqpage = 0;
120026f9a767SRodney W. Grimes 		return 1;
120126f9a767SRodney W. Grimes 	}
120222ba64e8SJohn Dyson 
120326f9a767SRodney W. Grimes 	/*
12042d8acc0fSJohn Dyson 	 * scan backward for the read behind pages -- in memory
120526f9a767SRodney W. Grimes 	 */
12062d8acc0fSJohn Dyson 	if (pindex > 0) {
12072d8acc0fSJohn Dyson 		if (rbehind > pindex) {
1208a316d390SJohn Dyson 			rbehind = pindex;
12092d8acc0fSJohn Dyson 			startpindex = 0;
12102d8acc0fSJohn Dyson 		} else {
1211a316d390SJohn Dyson 			startpindex = pindex - rbehind;
12122d8acc0fSJohn Dyson 		}
12132d8acc0fSJohn Dyson 
12142d8acc0fSJohn Dyson 		for ( tpindex = pindex - 1; tpindex >= startpindex; tpindex -= 1) {
1215a316d390SJohn Dyson 			if (vm_page_lookup( object, tpindex)) {
1216a316d390SJohn Dyson 				startpindex = tpindex + 1;
121726f9a767SRodney W. Grimes 				break;
121826f9a767SRodney W. Grimes 			}
1219a316d390SJohn Dyson 			if (tpindex == 0)
122026f9a767SRodney W. Grimes 				break;
1221317205caSDavid Greenman 		}
122226f9a767SRodney W. Grimes 
12232d8acc0fSJohn Dyson 		for(i = 0, tpindex = startpindex; tpindex < pindex; i++, tpindex++) {
122426f9a767SRodney W. Grimes 
12252d8acc0fSJohn Dyson 			rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL);
1226ccbb2f72SJohn Dyson 			if (rtm == NULL) {
1227ccbb2f72SJohn Dyson 				for (j = 0; j < i; j++) {
12284866e085SJohn Dyson 					vm_page_free(marray[j]);
122926f9a767SRodney W. Grimes 				}
123026f9a767SRodney W. Grimes 				marray[0] = m;
12312d8acc0fSJohn Dyson 				*reqpage = 0;
123226f9a767SRodney W. Grimes 				return 1;
123326f9a767SRodney W. Grimes 			}
1234170db9c6SJohn Dyson 
12352d8acc0fSJohn Dyson 			marray[i] = rtm;
123626f9a767SRodney W. Grimes 		}
12372d8acc0fSJohn Dyson 	} else {
12382d8acc0fSJohn Dyson 		startpindex = 0;
12392d8acc0fSJohn Dyson 		i = 0;
12402d8acc0fSJohn Dyson 	}
12412d8acc0fSJohn Dyson 
12422d8acc0fSJohn Dyson 	marray[i] = m;
12432d8acc0fSJohn Dyson 	/* page offset of the required page */
12442d8acc0fSJohn Dyson 	*reqpage = i;
12452d8acc0fSJohn Dyson 
12462d8acc0fSJohn Dyson 	tpindex = pindex + 1;
12472d8acc0fSJohn Dyson 	i++;
12482d8acc0fSJohn Dyson 
12492d8acc0fSJohn Dyson 	/*
12502d8acc0fSJohn Dyson 	 * scan forward for the read ahead pages
12512d8acc0fSJohn Dyson 	 */
12522d8acc0fSJohn Dyson 	endpindex = tpindex + rahead;
12532d8acc0fSJohn Dyson 	if (endpindex > object->size)
12542d8acc0fSJohn Dyson 		endpindex = object->size;
12552d8acc0fSJohn Dyson 
12562d8acc0fSJohn Dyson 	for( ; tpindex < endpindex; i++, tpindex++) {
12572d8acc0fSJohn Dyson 
12582d8acc0fSJohn Dyson 		if (vm_page_lookup(object, tpindex)) {
12592d8acc0fSJohn Dyson 			break;
12602d8acc0fSJohn Dyson 		}
12612d8acc0fSJohn Dyson 
12622d8acc0fSJohn Dyson 		rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL);
12632d8acc0fSJohn Dyson 		if (rtm == NULL) {
12642d8acc0fSJohn Dyson 			break;
12652d8acc0fSJohn Dyson 		}
12662d8acc0fSJohn Dyson 
12672d8acc0fSJohn Dyson 		marray[i] = rtm;
12682d8acc0fSJohn Dyson 	}
12692d8acc0fSJohn Dyson 
12702d8acc0fSJohn Dyson 	/* return number of bytes of pages */
12712d8acc0fSJohn Dyson 	return i;
127226f9a767SRodney W. Grimes }
1273