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 #include <sys/param.h> 76df8bae1dSRodney W. Grimes #include <sys/systm.h> 774edf4a58SJohn Baldwin #include <sys/kernel.h> 78fb919e4dSMark Murray #include <sys/lock.h> 79fb919e4dSMark Murray #include <sys/mutex.h> 8026f9a767SRodney W. Grimes #include <sys/proc.h> 8126f9a767SRodney W. Grimes #include <sys/resourcevar.h> 8223955314SAlfred Perlstein #include <sys/sysctl.h> 834edf4a58SJohn Baldwin #include <sys/vmmeter.h> 844edf4a58SJohn Baldwin #include <sys/vnode.h> 85df8bae1dSRodney W. Grimes 86df8bae1dSRodney W. Grimes #include <vm/vm.h> 87efeaf95aSDavid Greenman #include <vm/vm_param.h> 88efeaf95aSDavid Greenman #include <vm/pmap.h> 89efeaf95aSDavid Greenman #include <vm/vm_map.h> 90efeaf95aSDavid Greenman #include <vm/vm_object.h> 91df8bae1dSRodney W. Grimes #include <vm/vm_page.h> 92df8bae1dSRodney W. Grimes #include <vm/vm_pageout.h> 93a83c285cSDavid Greenman #include <vm/vm_kern.h> 9424a1cce3SDavid Greenman #include <vm/vm_pager.h> 9524a1cce3SDavid Greenman #include <vm/vnode_pager.h> 96efeaf95aSDavid Greenman #include <vm/vm_extern.h> 97df8bae1dSRodney W. Grimes 9811caded3SAlfred Perlstein static int vm_fault_additional_pages(vm_page_t, int, int, vm_page_t *, int *); 9926f9a767SRodney W. Grimes 10047221757SJohn Dyson #define VM_FAULT_READ_AHEAD 8 10147221757SJohn Dyson #define VM_FAULT_READ_BEHIND 7 10226f9a767SRodney W. Grimes #define VM_FAULT_READ (VM_FAULT_READ_AHEAD+VM_FAULT_READ_BEHIND+1) 10326f9a767SRodney W. Grimes 1044866e085SJohn Dyson struct faultstate { 1054866e085SJohn Dyson vm_page_t m; 1064866e085SJohn Dyson vm_object_t object; 1074866e085SJohn Dyson vm_pindex_t pindex; 1084866e085SJohn Dyson vm_page_t first_m; 1094866e085SJohn Dyson vm_object_t first_object; 1104866e085SJohn Dyson vm_pindex_t first_pindex; 1114866e085SJohn Dyson vm_map_t map; 1124866e085SJohn Dyson vm_map_entry_t entry; 11325adb370SBrian Feldman int lookup_still_valid; 1144866e085SJohn Dyson struct vnode *vp; 1154866e085SJohn Dyson }; 1164866e085SJohn Dyson 1171c7c3c6aSMatthew Dillon static __inline void 1184866e085SJohn Dyson release_page(struct faultstate *fs) 1194866e085SJohn Dyson { 1202ad98273SAlan Cox vm_page_lock_queues(); 121e69763a3SDoug Rabson vm_page_wakeup(fs->m); 1224866e085SJohn Dyson vm_page_deactivate(fs->m); 1232ad98273SAlan Cox vm_page_unlock_queues(); 1244866e085SJohn Dyson fs->m = NULL; 1254866e085SJohn Dyson } 1264866e085SJohn Dyson 1271c7c3c6aSMatthew Dillon static __inline void 1284866e085SJohn Dyson unlock_map(struct faultstate *fs) 1294866e085SJohn Dyson { 13025adb370SBrian Feldman if (fs->lookup_still_valid) { 1314866e085SJohn Dyson vm_map_lookup_done(fs->map, fs->entry); 13225adb370SBrian Feldman 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) { 1422ad98273SAlan Cox vm_page_lock_queues(); 1434866e085SJohn Dyson vm_page_free(fs->first_m); 1442ad98273SAlan Cox vm_page_unlock_queues(); 1454866e085SJohn Dyson vm_object_pip_wakeup(fs->first_object); 1464866e085SJohn Dyson fs->first_m = NULL; 1474866e085SJohn Dyson } 1484866e085SJohn Dyson if (dealloc) { 1494866e085SJohn Dyson vm_object_deallocate(fs->first_object); 1504866e085SJohn Dyson } 1514866e085SJohn Dyson unlock_map(fs); 1524866e085SJohn Dyson if (fs->vp != NULL) { 1530cddd8f0SMatthew Dillon vput(fs->vp); 1544866e085SJohn Dyson fs->vp = NULL; 1554866e085SJohn Dyson } 1564866e085SJohn Dyson } 1574866e085SJohn Dyson 1584866e085SJohn Dyson #define unlock_things(fs) _unlock_things(fs, 0) 1594866e085SJohn Dyson #define unlock_and_deallocate(fs) _unlock_things(fs, 1) 1604866e085SJohn Dyson 161df8bae1dSRodney W. Grimes /* 16240360b1bSMatthew Dillon * TRYPAGER - used by vm_fault to calculate whether the pager for the 16340360b1bSMatthew Dillon * current object *might* contain the page. 16440360b1bSMatthew Dillon * 16540360b1bSMatthew Dillon * default objects are zero-fill, there is no real pager. 16640360b1bSMatthew Dillon */ 16740360b1bSMatthew Dillon #define TRYPAGER (fs.object->type != OBJT_DEFAULT && \ 16840360b1bSMatthew Dillon (((fault_flags & VM_FAULT_WIRE_MASK) == 0) || wired)) 16940360b1bSMatthew Dillon 17040360b1bSMatthew Dillon /* 171df8bae1dSRodney W. Grimes * vm_fault: 172df8bae1dSRodney W. Grimes * 173956f3135SPhilippe Charnier * Handle a page fault occurring at the given address, 174df8bae1dSRodney W. Grimes * requiring the given permissions, in the map specified. 175df8bae1dSRodney W. Grimes * If successful, the page is inserted into the 176df8bae1dSRodney W. Grimes * associated physical map. 177df8bae1dSRodney W. Grimes * 178df8bae1dSRodney W. Grimes * NOTE: the given address should be truncated to the 179df8bae1dSRodney W. Grimes * proper page address. 180df8bae1dSRodney W. Grimes * 181df8bae1dSRodney W. Grimes * KERN_SUCCESS is returned if the page fault is handled; otherwise, 182df8bae1dSRodney W. Grimes * a standard error specifying why the fault is fatal is returned. 183df8bae1dSRodney W. Grimes * 184df8bae1dSRodney W. Grimes * 185df8bae1dSRodney W. Grimes * The map in question must be referenced, and remains so. 1860cddd8f0SMatthew Dillon * Caller may hold no locks. 187df8bae1dSRodney W. Grimes */ 188df8bae1dSRodney W. Grimes int 18923955314SAlfred Perlstein vm_fault(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type, 19023955314SAlfred Perlstein int fault_flags) 19123955314SAlfred Perlstein { 192df8bae1dSRodney W. Grimes vm_prot_t prot; 193df8bae1dSRodney W. Grimes int result; 1946139043bSAlan Cox boolean_t growstack, wired; 1952d8acc0fSJohn Dyson int map_generation; 196df8bae1dSRodney W. Grimes vm_object_t next_object; 19726f9a767SRodney W. Grimes vm_page_t marray[VM_FAULT_READ]; 1984866e085SJohn Dyson int hardfault; 1992d8acc0fSJohn Dyson int faultcount; 2004866e085SJohn Dyson struct faultstate fs; 201df8bae1dSRodney W. Grimes 2024866e085SJohn Dyson hardfault = 0; 2036139043bSAlan Cox growstack = TRUE; 20492de35b0SAlan Cox atomic_add_int(&cnt.v_vm_faults, 1); 205df8bae1dSRodney W. Grimes 20692de35b0SAlan Cox mtx_lock(&Giant); 207df8bae1dSRodney W. Grimes RetryFault:; 208df8bae1dSRodney W. Grimes 209df8bae1dSRodney W. Grimes /* 2100d94caffSDavid Greenman * Find the backing store object and offset into it to begin the 2110d94caffSDavid Greenman * search. 212df8bae1dSRodney W. Grimes */ 21340360b1bSMatthew Dillon fs.map = map; 21492de35b0SAlan Cox result = vm_map_lookup(&fs.map, vaddr, fault_type, &fs.entry, 21592de35b0SAlan Cox &fs.first_object, &fs.first_pindex, &prot, &wired); 21692de35b0SAlan Cox if (result != KERN_SUCCESS) { 21792de35b0SAlan Cox if (result != KERN_PROTECTION_FAILURE || 21892de35b0SAlan Cox (fault_flags & VM_FAULT_WIRE_MASK) != VM_FAULT_USER_WIRE) { 2196139043bSAlan Cox if (growstack && result == KERN_INVALID_ADDRESS && 2206139043bSAlan Cox map != kernel_map && curproc != NULL) { 2216139043bSAlan Cox result = vm_map_growstack(curproc, vaddr); 2227788e219SAlan Cox if (result != KERN_SUCCESS) { 2237788e219SAlan Cox mtx_unlock(&Giant); 2246139043bSAlan Cox return (KERN_FAILURE); 2257788e219SAlan Cox } 2266139043bSAlan Cox growstack = FALSE; 2276139043bSAlan Cox goto RetryFault; 2286139043bSAlan Cox } 2297788e219SAlan Cox mtx_unlock(&Giant); 23092de35b0SAlan Cox return (result); 23109e0c6ccSJohn Dyson } 23209e0c6ccSJohn Dyson 2337aaaa4fdSJohn Dyson /* 2347aaaa4fdSJohn Dyson * If we are user-wiring a r/w segment, and it is COW, then 2357aaaa4fdSJohn Dyson * we need to do the COW operation. Note that we don't COW 236595236dfSJohn Dyson * currently RO sections now, because it is NOT desirable 2377aaaa4fdSJohn Dyson * to COW .text. We simply keep .text from ever being COW'ed 2387aaaa4fdSJohn Dyson * and take the heat that one cannot debug wired .text sections. 2397aaaa4fdSJohn Dyson */ 2404866e085SJohn Dyson result = vm_map_lookup(&fs.map, vaddr, 24147221757SJohn Dyson VM_PROT_READ|VM_PROT_WRITE|VM_PROT_OVERRIDE_WRITE, 2424866e085SJohn Dyson &fs.entry, &fs.first_object, &fs.first_pindex, &prot, &wired); 24347221757SJohn Dyson if (result != KERN_SUCCESS) { 2447788e219SAlan Cox mtx_unlock(&Giant); 2457788e219SAlan Cox return (result); 24647221757SJohn Dyson } 24747221757SJohn Dyson 2487aaaa4fdSJohn Dyson /* 2497aaaa4fdSJohn Dyson * If we don't COW now, on a user wire, the user will never 2507aaaa4fdSJohn Dyson * be able to write to the mapping. If we don't make this 2517aaaa4fdSJohn Dyson * restriction, the bookkeeping would be nearly impossible. 252ff8f4ebeSAlan Cox * 253ff8f4ebeSAlan Cox * XXX The following assignment modifies the map without 254ff8f4ebeSAlan Cox * holding a write lock on it. 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. 272fe8e0238SMatthew Dillon * 273fe8e0238SMatthew Dillon * Bump the paging-in-progress count to prevent size changes (e.g. 274fe8e0238SMatthew Dillon * truncation operations) during I/O. This must be done after 275fe8e0238SMatthew Dillon * obtaining the vnode lock in order to avoid possible deadlocks. 276532eadefSAlan Cox * 277532eadefSAlan Cox * XXX vnode_pager_lock() can block without releasing the map lock. 27895e5e988SJohn Dyson */ 2794866e085SJohn Dyson vm_object_reference(fs.first_object); 280fe8e0238SMatthew Dillon fs.vp = vnode_pager_lock(fs.first_object); 281d474eaaaSDoug Rabson vm_object_pip_add(fs.first_object, 1); 28295e5e988SJohn Dyson 283c0b6bbb8SAlan Cox #ifdef ENABLE_VFS_IOOPT 2841efb74fbSJohn Dyson if ((fault_type & VM_PROT_WRITE) && 2854866e085SJohn Dyson (fs.first_object->type == OBJT_VNODE)) { 2864866e085SJohn Dyson vm_freeze_copyopts(fs.first_object, 2874866e085SJohn Dyson fs.first_pindex, fs.first_pindex + 1); 2881efb74fbSJohn Dyson } 289c0b6bbb8SAlan Cox #endif 29025adb370SBrian Feldman fs.lookup_still_valid = TRUE; 291df8bae1dSRodney W. Grimes 292df8bae1dSRodney W. Grimes if (wired) 293df8bae1dSRodney W. Grimes fault_type = prot; 294df8bae1dSRodney W. Grimes 2954866e085SJohn Dyson fs.first_m = NULL; 296df8bae1dSRodney W. Grimes 297df8bae1dSRodney W. Grimes /* 298df8bae1dSRodney W. Grimes * Search for the page at object/offset. 299df8bae1dSRodney W. Grimes */ 3004866e085SJohn Dyson fs.object = fs.first_object; 3014866e085SJohn Dyson fs.pindex = fs.first_pindex; 302df8bae1dSRodney W. Grimes while (TRUE) { 3031c7c3c6aSMatthew Dillon /* 3041c7c3c6aSMatthew Dillon * If the object is dead, we stop here 3051c7c3c6aSMatthew Dillon */ 3064866e085SJohn Dyson if (fs.object->flags & OBJ_DEAD) { 3074866e085SJohn Dyson unlock_and_deallocate(&fs); 3087788e219SAlan Cox mtx_unlock(&Giant); 30947221757SJohn Dyson return (KERN_PROTECTION_FAILURE); 31047221757SJohn Dyson } 31147221757SJohn Dyson 3121c7c3c6aSMatthew Dillon /* 3131c7c3c6aSMatthew Dillon * See if page is resident 3141c7c3c6aSMatthew Dillon */ 3154866e085SJohn Dyson fs.m = vm_page_lookup(fs.object, fs.pindex); 3164866e085SJohn Dyson if (fs.m != NULL) { 317c699f45eSDavid Greenman int queue, s; 31898cb733cSKenneth D. Merry 31998cb733cSKenneth D. Merry /* 32098cb733cSKenneth D. Merry * check for page-based copy on write 32198cb733cSKenneth D. Merry */ 322f4ecdf05SAlan Cox vm_page_lock_queues(); 32398cb733cSKenneth D. Merry if ((fs.m->cow) && 32498cb733cSKenneth D. Merry (fault_type & VM_PROT_WRITE)) { 32598cb733cSKenneth D. Merry s = splvm(); 32698cb733cSKenneth D. Merry vm_page_cowfault(fs.m); 32798cb733cSKenneth D. Merry splx(s); 328f4ecdf05SAlan Cox vm_page_unlock_queues(); 32998cb733cSKenneth D. Merry unlock_things(&fs); 33098cb733cSKenneth D. Merry goto RetryFault; 33198cb733cSKenneth D. Merry } 33298cb733cSKenneth D. Merry 333df8bae1dSRodney W. Grimes /* 3341c7c3c6aSMatthew Dillon * Wait/Retry if the page is busy. We have to do this 3351c7c3c6aSMatthew Dillon * if the page is busy via either PG_BUSY or 3361c7c3c6aSMatthew Dillon * vm_page_t->busy because the vm_pager may be using 3371c7c3c6aSMatthew Dillon * vm_page_t->busy for pageouts ( and even pageins if 3381c7c3c6aSMatthew Dillon * it is the vnode pager ), and we could end up trying 339956f3135SPhilippe Charnier * to pagein and pageout the same page simultaneously. 3401c7c3c6aSMatthew Dillon * 3411c7c3c6aSMatthew Dillon * We can theoretically allow the busy case on a read 3421c7c3c6aSMatthew Dillon * fault if the page is marked valid, but since such 3431c7c3c6aSMatthew Dillon * pages are typically already pmap'd, putting that 3441c7c3c6aSMatthew Dillon * special case in might be more effort then it is 3451c7c3c6aSMatthew Dillon * worth. We cannot under any circumstances mess 3461c7c3c6aSMatthew Dillon * around with a vm_page_t->busy page except, perhaps, 3471c7c3c6aSMatthew Dillon * to pmap it. 348df8bae1dSRodney W. Grimes */ 3491c7c3c6aSMatthew Dillon if ((fs.m->flags & PG_BUSY) || fs.m->busy) { 3504abd55b2SAlan Cox vm_page_unlock_queues(); 3514866e085SJohn Dyson unlock_things(&fs); 3529a96b638SAlan Cox vm_page_lock_queues(); 3539a96b638SAlan Cox if (!vm_page_sleep_if_busy(fs.m, TRUE, "vmpfw")) 3549a96b638SAlan Cox vm_page_unlock_queues(); 355976e77fcSDavid Greenman cnt.v_intrans++; 3564866e085SJohn Dyson vm_object_deallocate(fs.first_object); 357df8bae1dSRodney W. Grimes goto RetryFault; 358df8bae1dSRodney W. Grimes } 3594866e085SJohn Dyson queue = fs.m->queue; 360a1287949SEivind Eklund 361c699f45eSDavid Greenman s = splvm(); 3626d03d577SMatthew Dillon vm_pageq_remove_nowakeup(fs.m); 363c699f45eSDavid Greenman splx(s); 364c82b0181SJohn Dyson 36540360b1bSMatthew Dillon if ((queue - fs.m->pc) == PQ_CACHE && vm_page_count_severe()) { 3664866e085SJohn Dyson vm_page_activate(fs.m); 3674abd55b2SAlan Cox vm_page_unlock_queues(); 3684866e085SJohn Dyson unlock_and_deallocate(&fs); 369ef6020d1SMike Silbersack VM_WAITPFAULT; 37022ba64e8SJohn Dyson goto RetryFault; 37122ba64e8SJohn Dyson } 3727615edaaSMatthew Dillon 3731c7c3c6aSMatthew Dillon /* 3741c7c3c6aSMatthew Dillon * Mark page busy for other processes, and the 3751c7c3c6aSMatthew Dillon * pagedaemon. If it still isn't completely valid 3761c7c3c6aSMatthew Dillon * (readable), jump to readrest, else break-out ( we 3771c7c3c6aSMatthew Dillon * found the page ). 3781c7c3c6aSMatthew Dillon */ 379e69763a3SDoug Rabson vm_page_busy(fs.m); 3804abd55b2SAlan Cox vm_page_unlock_queues(); 3814866e085SJohn Dyson if (((fs.m->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) && 3824866e085SJohn Dyson fs.m->object != kernel_object && fs.m->object != kmem_object) { 3830d94caffSDavid Greenman goto readrest; 3840d94caffSDavid Greenman } 385ffc82b0aSJohn Dyson 386df8bae1dSRodney W. Grimes break; 387df8bae1dSRodney W. Grimes } 3881c7c3c6aSMatthew Dillon 3891c7c3c6aSMatthew Dillon /* 39040360b1bSMatthew Dillon * Page is not resident, If this is the search termination 39140360b1bSMatthew Dillon * or the pager might contain the page, allocate a new page. 3921c7c3c6aSMatthew Dillon */ 39340360b1bSMatthew Dillon if (TRYPAGER || fs.object == fs.first_object) { 3944866e085SJohn Dyson if (fs.pindex >= fs.object->size) { 3954866e085SJohn Dyson unlock_and_deallocate(&fs); 3967788e219SAlan Cox mtx_unlock(&Giant); 3975f55e841SDavid Greenman return (KERN_PROTECTION_FAILURE); 3985f55e841SDavid Greenman } 39922ba64e8SJohn Dyson 400df8bae1dSRodney W. Grimes /* 4010d94caffSDavid Greenman * Allocate a new page for this object/offset pair. 402df8bae1dSRodney W. Grimes */ 40340360b1bSMatthew Dillon fs.m = NULL; 40440360b1bSMatthew Dillon if (!vm_page_count_severe()) { 4054866e085SJohn Dyson fs.m = vm_page_alloc(fs.object, fs.pindex, 4064866e085SJohn Dyson (fs.vp || fs.object->backing_object)? VM_ALLOC_NORMAL: VM_ALLOC_ZERO); 40740360b1bSMatthew Dillon } 4084866e085SJohn Dyson if (fs.m == NULL) { 4094866e085SJohn Dyson unlock_and_deallocate(&fs); 410ef6020d1SMike Silbersack VM_WAITPFAULT; 411df8bae1dSRodney W. Grimes goto RetryFault; 412df8bae1dSRodney W. Grimes } 413df8bae1dSRodney W. Grimes } 41447221757SJohn Dyson 4150d94caffSDavid Greenman readrest: 4161c7c3c6aSMatthew Dillon /* 41740360b1bSMatthew Dillon * We have found a valid page or we have allocated a new page. 41840360b1bSMatthew Dillon * The page thus may not be valid or may not be entirely 41940360b1bSMatthew Dillon * valid. 42040360b1bSMatthew Dillon * 42140360b1bSMatthew Dillon * Attempt to fault-in the page if there is a chance that the 42240360b1bSMatthew Dillon * pager has it, and potentially fault in additional pages 42340360b1bSMatthew Dillon * at the same time. 4241c7c3c6aSMatthew Dillon */ 42540360b1bSMatthew Dillon if (TRYPAGER) { 426df8bae1dSRodney W. Grimes int rv; 42726f9a767SRodney W. Grimes int reqpage; 428867a482dSJohn Dyson int ahead, behind; 4297f866e4bSAlan Cox u_char behavior = vm_map_entry_behavior(fs.entry); 430867a482dSJohn Dyson 4317f866e4bSAlan Cox if (behavior == MAP_ENTRY_BEHAV_RANDOM) { 432867a482dSJohn Dyson ahead = 0; 433867a482dSJohn Dyson behind = 0; 4342d8acc0fSJohn Dyson } else { 4354866e085SJohn Dyson behind = (vaddr - fs.entry->start) >> PAGE_SHIFT; 4362d8acc0fSJohn Dyson if (behind > VM_FAULT_READ_BEHIND) 4372d8acc0fSJohn Dyson behind = VM_FAULT_READ_BEHIND; 4382d8acc0fSJohn Dyson 4394866e085SJohn Dyson ahead = ((fs.entry->end - vaddr) >> PAGE_SHIFT) - 1; 4402d8acc0fSJohn Dyson if (ahead > VM_FAULT_READ_AHEAD) 4412d8acc0fSJohn Dyson ahead = VM_FAULT_READ_AHEAD; 442867a482dSJohn Dyson } 443867a482dSJohn Dyson 4444866e085SJohn Dyson if ((fs.first_object->type != OBJT_DEVICE) && 44540360b1bSMatthew Dillon (behavior == MAP_ENTRY_BEHAV_SEQUENTIAL || 44640360b1bSMatthew Dillon (behavior != MAP_ENTRY_BEHAV_RANDOM && 44740360b1bSMatthew Dillon fs.pindex >= fs.entry->lastr && 44840360b1bSMatthew Dillon fs.pindex < fs.entry->lastr + VM_FAULT_READ)) 44940360b1bSMatthew Dillon ) { 450867a482dSJohn Dyson vm_pindex_t firstpindex, tmppindex; 45140360b1bSMatthew Dillon 45240360b1bSMatthew Dillon if (fs.first_pindex < 2 * VM_FAULT_READ) 453867a482dSJohn Dyson firstpindex = 0; 454867a482dSJohn Dyson else 45540360b1bSMatthew Dillon firstpindex = fs.first_pindex - 2 * VM_FAULT_READ; 456867a482dSJohn Dyson 45715a5d210SAlan Cox vm_page_lock_queues(); 4584221e284SAlan Cox /* 4594221e284SAlan Cox * note: partially valid pages cannot be 4604221e284SAlan Cox * included in the lookahead - NFS piecemeal 4614221e284SAlan Cox * writes will barf on it badly. 4624221e284SAlan Cox */ 4634866e085SJohn Dyson for (tmppindex = fs.first_pindex - 1; 4642100d645SPeter Wemm tmppindex >= firstpindex; 465867a482dSJohn Dyson --tmppindex) { 466867a482dSJohn Dyson vm_page_t mt; 467a1287949SEivind Eklund 4684866e085SJohn Dyson mt = vm_page_lookup(fs.first_object, tmppindex); 469867a482dSJohn Dyson if (mt == NULL || (mt->valid != VM_PAGE_BITS_ALL)) 470867a482dSJohn Dyson break; 471ff97964aSJohn Dyson if (mt->busy || 4728b03c8edSMatthew Dillon (mt->flags & (PG_BUSY | PG_FICTITIOUS | PG_UNMANAGED)) || 473ff97964aSJohn Dyson mt->hold_count || 474867a482dSJohn Dyson mt->wire_count) 475867a482dSJohn Dyson continue; 476867a482dSJohn Dyson if (mt->dirty == 0) 477867a482dSJohn Dyson vm_page_test_dirty(mt); 478867a482dSJohn Dyson if (mt->dirty) { 4794fec79beSAlan Cox pmap_remove_all(mt); 480867a482dSJohn Dyson vm_page_deactivate(mt); 481867a482dSJohn Dyson } else { 482867a482dSJohn Dyson vm_page_cache(mt); 483867a482dSJohn Dyson } 484867a482dSJohn Dyson } 48515a5d210SAlan Cox vm_page_unlock_queues(); 486867a482dSJohn Dyson ahead += behind; 487867a482dSJohn Dyson behind = 0; 488867a482dSJohn Dyson } 489df8bae1dSRodney W. Grimes 490df8bae1dSRodney W. Grimes /* 4910d94caffSDavid Greenman * now we find out if any other pages should be paged 4920d94caffSDavid Greenman * in at this time this routine checks to see if the 4930d94caffSDavid Greenman * pages surrounding this fault reside in the same 4940d94caffSDavid Greenman * object as the page for this fault. If they do, 4950d94caffSDavid Greenman * then they are faulted in also into the object. The 4960d94caffSDavid Greenman * array "marray" returned contains an array of 4970d94caffSDavid Greenman * vm_page_t structs where one of them is the 4980d94caffSDavid Greenman * vm_page_t passed to the routine. The reqpage 4990d94caffSDavid Greenman * return value is the index into the marray for the 5000d94caffSDavid Greenman * vm_page_t passed to the routine. 5011c7c3c6aSMatthew Dillon * 5021c7c3c6aSMatthew Dillon * fs.m plus the additional pages are PG_BUSY'd. 503532eadefSAlan Cox * 504532eadefSAlan Cox * XXX vm_fault_additional_pages() can block 505532eadefSAlan Cox * without releasing the map lock. 50626f9a767SRodney W. Grimes */ 50705f0fdd2SPoul-Henning Kamp faultcount = vm_fault_additional_pages( 5084866e085SJohn Dyson fs.m, behind, ahead, marray, &reqpage); 509df8bae1dSRodney W. Grimes 510df8bae1dSRodney W. Grimes /* 51140360b1bSMatthew Dillon * update lastr imperfectly (we do not know how much 51240360b1bSMatthew Dillon * getpages will actually read), but good enough. 513532eadefSAlan Cox * 514532eadefSAlan Cox * XXX The following assignment modifies the map 515532eadefSAlan Cox * without holding a write lock on it. 51640360b1bSMatthew Dillon */ 51740360b1bSMatthew Dillon fs.entry->lastr = fs.pindex + faultcount - behind; 51840360b1bSMatthew Dillon 51940360b1bSMatthew Dillon /* 5200d94caffSDavid Greenman * Call the pager to retrieve the data, if any, after 5211c7c3c6aSMatthew Dillon * releasing the lock on the map. We hold a ref on 5221c7c3c6aSMatthew Dillon * fs.object and the pages are PG_BUSY'd. 523df8bae1dSRodney W. Grimes */ 5244866e085SJohn Dyson unlock_map(&fs); 525df8bae1dSRodney W. Grimes 52626f9a767SRodney W. Grimes rv = faultcount ? 5274866e085SJohn Dyson vm_pager_get_pages(fs.object, marray, faultcount, 52824a1cce3SDavid Greenman reqpage) : VM_PAGER_FAIL; 52922ba64e8SJohn Dyson 53026f9a767SRodney W. Grimes if (rv == VM_PAGER_OK) { 531df8bae1dSRodney W. Grimes /* 532f230c45cSJohn Dyson * Found the page. Leave it busy while we play 533f230c45cSJohn Dyson * with it. 534f230c45cSJohn Dyson */ 535f230c45cSJohn Dyson 536f230c45cSJohn Dyson /* 5370d94caffSDavid Greenman * Relookup in case pager changed page. Pager 5380d94caffSDavid Greenman * is responsible for disposition of old page 5390d94caffSDavid Greenman * if moved. 540df8bae1dSRodney W. Grimes */ 5414866e085SJohn Dyson fs.m = vm_page_lookup(fs.object, fs.pindex); 5424866e085SJohn Dyson if (!fs.m) { 5434866e085SJohn Dyson unlock_and_deallocate(&fs); 544f6b04d2bSDavid Greenman goto RetryFault; 545f6b04d2bSDavid Greenman } 546f6b04d2bSDavid Greenman 54726f9a767SRodney W. Grimes hardfault++; 5481c7c3c6aSMatthew Dillon break; /* break to PAGE HAS BEEN FOUND */ 549df8bae1dSRodney W. Grimes } 550df8bae1dSRodney W. Grimes /* 5510d94caffSDavid Greenman * Remove the bogus page (which does not exist at this 5520d94caffSDavid Greenman * object/offset); before doing so, we must get back 5530d94caffSDavid Greenman * our object lock to preserve our invariant. 554df8bae1dSRodney W. Grimes * 55524a1cce3SDavid Greenman * Also wake up any other process that may want to bring 5560d94caffSDavid Greenman * in this page. 557df8bae1dSRodney W. Grimes * 5580d94caffSDavid Greenman * If this is the top-level object, we must leave the 55924a1cce3SDavid Greenman * busy page to prevent another process from rushing 5600d94caffSDavid Greenman * past us, and inserting the page in that object at 5610d94caffSDavid Greenman * the same time that we are. 562df8bae1dSRodney W. Grimes */ 563a83c285cSDavid Greenman if (rv == VM_PAGER_ERROR) 564f3679e35SDavid Greenman printf("vm_fault: pager read error, pid %d (%s)\n", 565f3679e35SDavid Greenman curproc->p_pid, curproc->p_comm); 56626f9a767SRodney W. Grimes /* 567a83c285cSDavid Greenman * Data outside the range of the pager or an I/O error 56826f9a767SRodney W. Grimes */ 569a83c285cSDavid Greenman /* 5700d94caffSDavid Greenman * XXX - the check for kernel_map is a kludge to work 5710d94caffSDavid Greenman * around having the machine panic on a kernel space 5720d94caffSDavid Greenman * fault w/ I/O error. 573a83c285cSDavid Greenman */ 5744866e085SJohn Dyson if (((fs.map != kernel_map) && (rv == VM_PAGER_ERROR)) || 57547221757SJohn Dyson (rv == VM_PAGER_BAD)) { 5762ad98273SAlan Cox vm_page_lock_queues(); 5774866e085SJohn Dyson vm_page_free(fs.m); 5782ad98273SAlan Cox vm_page_unlock_queues(); 5794866e085SJohn Dyson fs.m = NULL; 5804866e085SJohn Dyson unlock_and_deallocate(&fs); 5817788e219SAlan Cox mtx_unlock(&Giant); 582a83c285cSDavid Greenman return ((rv == VM_PAGER_ERROR) ? KERN_FAILURE : KERN_PROTECTION_FAILURE); 58326f9a767SRodney W. Grimes } 5844866e085SJohn Dyson if (fs.object != fs.first_object) { 5852ad98273SAlan Cox vm_page_lock_queues(); 5864866e085SJohn Dyson vm_page_free(fs.m); 5872ad98273SAlan Cox vm_page_unlock_queues(); 5884866e085SJohn Dyson fs.m = NULL; 58926f9a767SRodney W. Grimes /* 59026f9a767SRodney W. Grimes * XXX - we cannot just fall out at this 59126f9a767SRodney W. Grimes * point, m has been freed and is invalid! 59226f9a767SRodney W. Grimes */ 593df8bae1dSRodney W. Grimes } 594df8bae1dSRodney W. Grimes } 59540360b1bSMatthew Dillon 596df8bae1dSRodney W. Grimes /* 5971c7c3c6aSMatthew Dillon * We get here if the object has default pager (or unwiring) 5981c7c3c6aSMatthew Dillon * or the pager doesn't have the page. 599df8bae1dSRodney W. Grimes */ 6004866e085SJohn Dyson if (fs.object == fs.first_object) 6014866e085SJohn Dyson fs.first_m = fs.m; 602df8bae1dSRodney W. Grimes 603df8bae1dSRodney W. Grimes /* 6040d94caffSDavid Greenman * Move on to the next object. Lock the next object before 6050d94caffSDavid Greenman * unlocking the current one. 606df8bae1dSRodney W. Grimes */ 6074866e085SJohn Dyson fs.pindex += OFF_TO_IDX(fs.object->backing_object_offset); 6084866e085SJohn Dyson next_object = fs.object->backing_object; 609df8bae1dSRodney W. Grimes if (next_object == NULL) { 610df8bae1dSRodney W. Grimes /* 6110d94caffSDavid Greenman * If there's no object left, fill the page in the top 6120d94caffSDavid Greenman * object with zeros. 613df8bae1dSRodney W. Grimes */ 6144866e085SJohn Dyson if (fs.object != fs.first_object) { 6154866e085SJohn Dyson vm_object_pip_wakeup(fs.object); 616df8bae1dSRodney W. Grimes 6174866e085SJohn Dyson fs.object = fs.first_object; 6184866e085SJohn Dyson fs.pindex = fs.first_pindex; 6194866e085SJohn Dyson fs.m = fs.first_m; 620df8bae1dSRodney W. Grimes } 6214866e085SJohn Dyson fs.first_m = NULL; 622df8bae1dSRodney W. Grimes 6234221e284SAlan Cox /* 6244221e284SAlan Cox * Zero the page if necessary and mark it valid. 6254221e284SAlan Cox */ 6264866e085SJohn Dyson if ((fs.m->flags & PG_ZERO) == 0) { 627fff6062aSAlan Cox pmap_zero_page(fs.m); 6284221e284SAlan Cox } else { 62914286e5eSAlan Cox cnt.v_ozfod++; 6304221e284SAlan Cox } 631df8bae1dSRodney W. Grimes cnt.v_zfod++; 6324221e284SAlan Cox fs.m->valid = VM_PAGE_BITS_ALL; 6331c7c3c6aSMatthew Dillon break; /* break to PAGE HAS BEEN FOUND */ 6340d94caffSDavid Greenman } else { 6354866e085SJohn Dyson if (fs.object != fs.first_object) { 6364866e085SJohn Dyson vm_object_pip_wakeup(fs.object); 637c0503609SDavid Greenman } 6381c7c3c6aSMatthew Dillon KASSERT(fs.object != next_object, ("object loop %p", next_object)); 6394866e085SJohn Dyson fs.object = next_object; 640d474eaaaSDoug Rabson vm_object_pip_add(fs.object, 1); 641df8bae1dSRodney W. Grimes } 642df8bae1dSRodney W. Grimes } 6431c7c3c6aSMatthew Dillon 6445526d2d9SEivind Eklund KASSERT((fs.m->flags & PG_BUSY) != 0, 6455526d2d9SEivind Eklund ("vm_fault: not busy after main loop")); 646df8bae1dSRodney W. Grimes 647df8bae1dSRodney W. Grimes /* 6480d94caffSDavid Greenman * PAGE HAS BEEN FOUND. [Loop invariant still holds -- the object lock 649df8bae1dSRodney W. Grimes * is held.] 650df8bae1dSRodney W. Grimes */ 651df8bae1dSRodney W. Grimes 652df8bae1dSRodney W. Grimes /* 6530d94caffSDavid Greenman * If the page is being written, but isn't already owned by the 6540d94caffSDavid Greenman * top-level object, we have to copy it into a new page owned by the 6550d94caffSDavid Greenman * top-level object. 656df8bae1dSRodney W. Grimes */ 6574866e085SJohn Dyson if (fs.object != fs.first_object) { 658df8bae1dSRodney W. Grimes /* 6590d94caffSDavid Greenman * We only really need to copy if we want to write it. 660df8bae1dSRodney W. Grimes */ 661df8bae1dSRodney W. Grimes if (fault_type & VM_PROT_WRITE) { 662df8bae1dSRodney W. Grimes /* 6631c7c3c6aSMatthew Dillon * This allows pages to be virtually copied from a 6641c7c3c6aSMatthew Dillon * backing_object into the first_object, where the 6651c7c3c6aSMatthew Dillon * backing object has no other refs to it, and cannot 6661c7c3c6aSMatthew Dillon * gain any more refs. Instead of a bcopy, we just 6671c7c3c6aSMatthew Dillon * move the page from the backing object to the 6681c7c3c6aSMatthew Dillon * first object. Note that we must mark the page 6691c7c3c6aSMatthew Dillon * dirty in the first object so that it will go out 6701c7c3c6aSMatthew Dillon * to swap when needed. 671df8bae1dSRodney W. Grimes */ 6724866e085SJohn Dyson if (map_generation == fs.map->timestamp && 673de5f6a77SJohn Dyson /* 674de5f6a77SJohn Dyson * Only one shadow object 675de5f6a77SJohn Dyson */ 6764866e085SJohn Dyson (fs.object->shadow_count == 1) && 677de5f6a77SJohn Dyson /* 678de5f6a77SJohn Dyson * No COW refs, except us 679de5f6a77SJohn Dyson */ 6804866e085SJohn Dyson (fs.object->ref_count == 1) && 681de5f6a77SJohn Dyson /* 6825929bcfaSPhilippe Charnier * No one else can look this object up 683de5f6a77SJohn Dyson */ 6844866e085SJohn Dyson (fs.object->handle == NULL) && 685de5f6a77SJohn Dyson /* 686de5f6a77SJohn Dyson * No other ways to look the object up 687de5f6a77SJohn Dyson */ 6884866e085SJohn Dyson ((fs.object->type == OBJT_DEFAULT) || 6894866e085SJohn Dyson (fs.object->type == OBJT_SWAP)) && 690de5f6a77SJohn Dyson /* 691de5f6a77SJohn Dyson * We don't chase down the shadow chain 692de5f6a77SJohn Dyson */ 6934866e085SJohn Dyson (fs.object == fs.first_object->backing_object) && 694df8bae1dSRodney W. Grimes 695df8bae1dSRodney W. Grimes /* 6962d8acc0fSJohn Dyson * grab the lock if we need to 6972d8acc0fSJohn Dyson */ 698d974f03cSAlan Cox (fs.lookup_still_valid || vm_map_trylock(fs.map))) { 69925adb370SBrian Feldman 70025adb370SBrian Feldman fs.lookup_still_valid = 1; 7012d8acc0fSJohn Dyson /* 702de5f6a77SJohn Dyson * get rid of the unnecessary page 703df8bae1dSRodney W. Grimes */ 7042ad98273SAlan Cox vm_page_lock_queues(); 7054fec79beSAlan Cox pmap_remove_all(fs.first_m); 7064866e085SJohn Dyson vm_page_free(fs.first_m); 7074866e085SJohn Dyson fs.first_m = NULL; 7084866e085SJohn Dyson 709de5f6a77SJohn Dyson /* 7101c7c3c6aSMatthew Dillon * grab the page and put it into the 7111c7c3c6aSMatthew Dillon * process'es object. The page is 7121c7c3c6aSMatthew Dillon * automatically made dirty. 713de5f6a77SJohn Dyson */ 7144866e085SJohn Dyson vm_page_rename(fs.m, fs.first_object, fs.first_pindex); 7154866e085SJohn Dyson fs.first_m = fs.m; 716e69763a3SDoug Rabson vm_page_busy(fs.first_m); 7179a96b638SAlan Cox vm_page_unlock_queues(); 7184866e085SJohn Dyson fs.m = NULL; 7194866e085SJohn Dyson cnt.v_cow_optim++; 720de5f6a77SJohn Dyson } else { 721de5f6a77SJohn Dyson /* 722de5f6a77SJohn Dyson * Oh, well, lets copy it. 723de5f6a77SJohn Dyson */ 7244866e085SJohn Dyson vm_page_copy(fs.m, fs.first_m); 725de5f6a77SJohn Dyson } 726df8bae1dSRodney W. Grimes 7274866e085SJohn Dyson if (fs.m) { 728df8bae1dSRodney W. Grimes /* 729df8bae1dSRodney W. Grimes * We no longer need the old page or object. 730df8bae1dSRodney W. Grimes */ 7314866e085SJohn Dyson release_page(&fs); 732de5f6a77SJohn Dyson } 733df8bae1dSRodney W. Grimes 7341c7c3c6aSMatthew Dillon /* 7351c7c3c6aSMatthew Dillon * fs.object != fs.first_object due to above 7361c7c3c6aSMatthew Dillon * conditional 7371c7c3c6aSMatthew Dillon */ 7384866e085SJohn Dyson vm_object_pip_wakeup(fs.object); 7391c7c3c6aSMatthew Dillon 740df8bae1dSRodney W. Grimes /* 741df8bae1dSRodney W. Grimes * Only use the new page below... 742df8bae1dSRodney W. Grimes */ 743df8bae1dSRodney W. Grimes cnt.v_cow_faults++; 7444866e085SJohn Dyson fs.m = fs.first_m; 7454866e085SJohn Dyson fs.object = fs.first_object; 7464866e085SJohn Dyson fs.pindex = fs.first_pindex; 747df8bae1dSRodney W. Grimes 7480d94caffSDavid Greenman } else { 749df8bae1dSRodney W. Grimes prot &= ~VM_PROT_WRITE; 750df8bae1dSRodney W. Grimes } 751df8bae1dSRodney W. Grimes } 752df8bae1dSRodney W. Grimes 753df8bae1dSRodney W. Grimes /* 7540d94caffSDavid Greenman * We must verify that the maps have not changed since our last 7550d94caffSDavid Greenman * lookup. 756df8bae1dSRodney W. Grimes */ 75725adb370SBrian Feldman if (!fs.lookup_still_valid && 7584866e085SJohn Dyson (fs.map->timestamp != map_generation)) { 759df8bae1dSRodney W. Grimes vm_object_t retry_object; 760a316d390SJohn Dyson vm_pindex_t retry_pindex; 761df8bae1dSRodney W. Grimes vm_prot_t retry_prot; 762df8bae1dSRodney W. Grimes 763df8bae1dSRodney W. Grimes /* 7640d94caffSDavid Greenman * Since map entries may be pageable, make sure we can take a 7650d94caffSDavid Greenman * page fault on them. 766df8bae1dSRodney W. Grimes */ 767df8bae1dSRodney W. Grimes 768df8bae1dSRodney W. Grimes /* 769b33fb764SMatthew Dillon * Unlock vnode before the lookup to avoid deadlock. E.G. 770b33fb764SMatthew Dillon * avoid a deadlock between the inode and exec_map that can 771b33fb764SMatthew Dillon * occur due to locks being obtained in different orders. 772b33fb764SMatthew Dillon */ 773b33fb764SMatthew Dillon if (fs.vp != NULL) { 774b33fb764SMatthew Dillon vput(fs.vp); 775b33fb764SMatthew Dillon fs.vp = NULL; 776b33fb764SMatthew Dillon } 777b823bbd6SMatthew Dillon 778b823bbd6SMatthew Dillon if (fs.map->infork) { 779b823bbd6SMatthew Dillon release_page(&fs); 780b823bbd6SMatthew Dillon unlock_and_deallocate(&fs); 781b823bbd6SMatthew Dillon goto RetryFault; 782b823bbd6SMatthew Dillon } 783b33fb764SMatthew Dillon 784b33fb764SMatthew Dillon /* 78524a1cce3SDavid Greenman * To avoid trying to write_lock the map while another process 7860d94caffSDavid Greenman * has it read_locked (in vm_map_pageable), we do not try for 7870d94caffSDavid Greenman * write permission. If the page is still writable, we will 7880d94caffSDavid Greenman * get write permission. If it is not, or has been marked 7890d94caffSDavid Greenman * needs_copy, we enter the mapping without write permission, 7900d94caffSDavid Greenman * and will merely take another fault. 791df8bae1dSRodney W. Grimes */ 7924866e085SJohn Dyson result = vm_map_lookup(&fs.map, vaddr, fault_type & ~VM_PROT_WRITE, 7934866e085SJohn Dyson &fs.entry, &retry_object, &retry_pindex, &retry_prot, &wired); 7944866e085SJohn Dyson map_generation = fs.map->timestamp; 795df8bae1dSRodney W. Grimes 796df8bae1dSRodney W. Grimes /* 7970d94caffSDavid Greenman * If we don't need the page any longer, put it on the active 7980d94caffSDavid Greenman * list (the easiest thing to do here). If no one needs it, 7990d94caffSDavid Greenman * pageout will grab it eventually. 800df8bae1dSRodney W. Grimes */ 801df8bae1dSRodney W. Grimes if (result != KERN_SUCCESS) { 8024866e085SJohn Dyson release_page(&fs); 8034866e085SJohn Dyson unlock_and_deallocate(&fs); 8047788e219SAlan Cox mtx_unlock(&Giant); 805df8bae1dSRodney W. Grimes return (result); 806df8bae1dSRodney W. Grimes } 80725adb370SBrian Feldman fs.lookup_still_valid = TRUE; 808df8bae1dSRodney W. Grimes 8094866e085SJohn Dyson if ((retry_object != fs.first_object) || 8104866e085SJohn Dyson (retry_pindex != fs.first_pindex)) { 8114866e085SJohn Dyson release_page(&fs); 8124866e085SJohn Dyson unlock_and_deallocate(&fs); 813df8bae1dSRodney W. Grimes goto RetryFault; 814df8bae1dSRodney W. Grimes } 815df8bae1dSRodney W. Grimes /* 8160d94caffSDavid Greenman * Check whether the protection has changed or the object has 8170d94caffSDavid Greenman * been copied while we left the map unlocked. Changing from 8180d94caffSDavid Greenman * read to write permission is OK - we leave the page 8190d94caffSDavid Greenman * write-protected, and catch the write fault. Changing from 8200d94caffSDavid Greenman * write to read permission means that we can't mark the page 8210d94caffSDavid Greenman * write-enabled after all. 822df8bae1dSRodney W. Grimes */ 823df8bae1dSRodney W. Grimes prot &= retry_prot; 824df8bae1dSRodney W. Grimes } 825df8bae1dSRodney W. Grimes 826df8bae1dSRodney W. Grimes /* 8270d94caffSDavid Greenman * Put this page into the physical map. We had to do the unlock above 8280d94caffSDavid Greenman * because pmap_enter may cause other faults. We don't put the page 8290d94caffSDavid Greenman * back on the active queue until later so that the page-out daemon 8300d94caffSDavid Greenman * won't find us (yet). 831df8bae1dSRodney W. Grimes */ 832df8bae1dSRodney W. Grimes 8332ddba215SDavid Greenman if (prot & VM_PROT_WRITE) { 8349a96b638SAlan Cox vm_page_lock_queues(); 835e69763a3SDoug Rabson vm_page_flag_set(fs.m, PG_WRITEABLE); 836245df27cSMatthew Dillon vm_object_set_writeable_dirty(fs.m->object); 8374f79d873SMatthew Dillon 8382ddba215SDavid Greenman /* 8392ddba215SDavid Greenman * If the fault is a write, we know that this page is being 8404f79d873SMatthew Dillon * written NOW so dirty it explicitly to save on 8414f79d873SMatthew Dillon * pmap_is_modified() calls later. 8424f79d873SMatthew Dillon * 8434f79d873SMatthew Dillon * If this is a NOSYNC mmap we do not want to set PG_NOSYNC 8444f79d873SMatthew Dillon * if the page is already dirty to prevent data written with 8454f79d873SMatthew Dillon * the expectation of being synced from not being synced. 8464f79d873SMatthew Dillon * Likewise if this entry does not request NOSYNC then make 8474f79d873SMatthew Dillon * sure the page isn't marked NOSYNC. Applications sharing 8484f79d873SMatthew Dillon * data should use the same flags to avoid ping ponging. 8491c7c3c6aSMatthew Dillon * 8501c7c3c6aSMatthew Dillon * Also tell the backing pager, if any, that it should remove 8511c7c3c6aSMatthew Dillon * any swap backing since the page is now dirty. 8522ddba215SDavid Greenman */ 8534f79d873SMatthew Dillon if (fs.entry->eflags & MAP_ENTRY_NOSYNC) { 8544f79d873SMatthew Dillon if (fs.m->dirty == 0) 8554f79d873SMatthew Dillon vm_page_flag_set(fs.m, PG_NOSYNC); 8564f79d873SMatthew Dillon } else { 8574f79d873SMatthew Dillon vm_page_flag_clear(fs.m, PG_NOSYNC); 8584f79d873SMatthew Dillon } 8599a96b638SAlan Cox vm_page_unlock_queues(); 8605bf53acbSMatthew Dillon if (fault_flags & VM_FAULT_DIRTY) { 8615bf53acbSMatthew Dillon int s; 8627dbf82dcSMatthew Dillon vm_page_dirty(fs.m); 863ef0646f9SMatthew Dillon s = splvm(); 8641c7c3c6aSMatthew Dillon vm_pager_page_unswapped(fs.m); 865ef0646f9SMatthew Dillon splx(s); 8662ddba215SDavid Greenman } 8672ddba215SDavid Greenman } 868f6b04d2bSDavid Greenman 869bc6d84a6SMatthew Dillon /* 870bc6d84a6SMatthew Dillon * Page had better still be busy 871bc6d84a6SMatthew Dillon */ 872ca06c247SAlan Cox KASSERT(fs.m->flags & PG_BUSY, 873ca06c247SAlan Cox ("vm_fault: page %p not busy!", fs.m)); 8744866e085SJohn Dyson unlock_things(&fs); 8754221e284SAlan Cox 8764221e284SAlan Cox /* 8774221e284SAlan Cox * Sanity check: page must be completely valid or it is not fit to 8784221e284SAlan Cox * map into user space. vm_pager_get_pages() ensures this. 8794221e284SAlan Cox */ 8804221e284SAlan Cox if (fs.m->valid != VM_PAGE_BITS_ALL) { 8814221e284SAlan Cox vm_page_zero_invalid(fs.m, TRUE); 8824221e284SAlan Cox printf("Warning: page %p partially invalid on fault\n", fs.m); 8834221e284SAlan Cox } 8840385347cSPeter Wemm pmap_enter(fs.map->pmap, vaddr, fs.m, prot, wired); 8852d8acc0fSJohn Dyson if (((fault_flags & VM_FAULT_WIRE_MASK) == 0) && (wired == 0)) { 8864866e085SJohn Dyson pmap_prefault(fs.map->pmap, vaddr, fs.entry); 8872d8acc0fSJohn Dyson } 8882d09a6adSAlan Cox vm_page_lock_queues(); 8894221e284SAlan Cox vm_page_flag_clear(fs.m, PG_ZERO); 890db44450bSAlan Cox vm_page_flag_set(fs.m, PG_REFERENCED); 891ff97964aSJohn Dyson 892df8bae1dSRodney W. Grimes /* 8930d94caffSDavid Greenman * If the page is not wired down, then put it where the pageout daemon 8940d94caffSDavid Greenman * can find it. 895df8bae1dSRodney W. Grimes */ 896a04c970aSJohn Dyson if (fault_flags & VM_FAULT_WIRE_MASK) { 897df8bae1dSRodney W. Grimes if (wired) 8984866e085SJohn Dyson vm_page_wire(fs.m); 899df8bae1dSRodney W. Grimes else 90073007561SDavid Greenman vm_page_unwire(fs.m, 1); 9010d94caffSDavid Greenman } else { 9024866e085SJohn Dyson vm_page_activate(fs.m); 90326f9a767SRodney W. Grimes } 904a9911f9aSAlan Cox vm_page_wakeup(fs.m); 9052d09a6adSAlan Cox vm_page_unlock_queues(); 9069ed346baSBosko Milekic mtx_lock_spin(&sched_lock); 907b9393356SJohn Baldwin if (curproc && (curproc->p_sflag & PS_INMEM) && curproc->p_stats) { 90826f9a767SRodney W. Grimes if (hardfault) { 90926f9a767SRodney W. Grimes curproc->p_stats->p_ru.ru_majflt++; 91026f9a767SRodney W. Grimes } else { 91126f9a767SRodney W. Grimes curproc->p_stats->p_ru.ru_minflt++; 91226f9a767SRodney W. Grimes } 91326f9a767SRodney W. Grimes } 9149ed346baSBosko Milekic mtx_unlock_spin(&sched_lock); 915df8bae1dSRodney W. Grimes 916df8bae1dSRodney W. Grimes /* 917df8bae1dSRodney W. Grimes * Unlock everything, and return 918df8bae1dSRodney W. Grimes */ 9194866e085SJohn Dyson vm_object_deallocate(fs.first_object); 9207788e219SAlan Cox mtx_unlock(&Giant); 921df8bae1dSRodney W. Grimes return (KERN_SUCCESS); 922df8bae1dSRodney W. Grimes } 923df8bae1dSRodney W. Grimes 924df8bae1dSRodney W. Grimes /* 925e3669ceeSMatthew Dillon * vm_fault_quick: 926e3669ceeSMatthew Dillon * 927e3669ceeSMatthew Dillon * Ensure that the requested virtual address, which may be in userland, 928e3669ceeSMatthew Dillon * is valid. Fault-in the page if necessary. Return -1 on failure. 929e3669ceeSMatthew Dillon */ 930e3669ceeSMatthew Dillon int 931e3669ceeSMatthew Dillon vm_fault_quick(caddr_t v, int prot) 932e3669ceeSMatthew Dillon { 933e3669ceeSMatthew Dillon int r; 934e3669ceeSMatthew Dillon 935e3669ceeSMatthew Dillon if (prot & VM_PROT_WRITE) 936e3669ceeSMatthew Dillon r = subyte(v, fubyte(v)); 937e3669ceeSMatthew Dillon else 938e3669ceeSMatthew Dillon r = fubyte(v); 939e3669ceeSMatthew Dillon return(r); 940e3669ceeSMatthew Dillon } 941e3669ceeSMatthew Dillon 942e3669ceeSMatthew Dillon /* 943df8bae1dSRodney W. Grimes * vm_fault_wire: 944df8bae1dSRodney W. Grimes * 945df8bae1dSRodney W. Grimes * Wire down a range of virtual addresses in a map. 946df8bae1dSRodney W. Grimes */ 947df8bae1dSRodney W. Grimes int 948ef594d31SAlan Cox vm_fault_wire(map, start, end, user_wire) 949df8bae1dSRodney W. Grimes vm_map_t map; 950df8bae1dSRodney W. Grimes vm_offset_t start, end; 951ef594d31SAlan Cox boolean_t user_wire; 952df8bae1dSRodney W. Grimes { 95354d92145SMatthew Dillon vm_offset_t va; 954df8bae1dSRodney W. Grimes int rv; 955df8bae1dSRodney W. Grimes 956df8bae1dSRodney W. Grimes /* 9570d94caffSDavid Greenman * We simulate a fault to get the page and enter it in the physical 958ef594d31SAlan Cox * map. For user wiring, we only ask for read access on currently 959ef594d31SAlan Cox * read-only sections. 960df8bae1dSRodney W. Grimes */ 961df8bae1dSRodney W. Grimes for (va = start; va < end; va += PAGE_SIZE) { 962ef594d31SAlan Cox rv = vm_fault(map, va, 963ef594d31SAlan Cox user_wire ? VM_PROT_READ : VM_PROT_READ | VM_PROT_WRITE, 964ef594d31SAlan Cox user_wire ? VM_FAULT_USER_WIRE : VM_FAULT_CHANGE_WIRING); 9657aaaa4fdSJohn Dyson if (rv) { 9667aaaa4fdSJohn Dyson if (va != start) 9677aaaa4fdSJohn Dyson vm_fault_unwire(map, start, va); 9687aaaa4fdSJohn Dyson return (rv); 9697aaaa4fdSJohn Dyson } 9707aaaa4fdSJohn Dyson } 9717aaaa4fdSJohn Dyson return (KERN_SUCCESS); 9727aaaa4fdSJohn Dyson } 9737aaaa4fdSJohn Dyson 9747aaaa4fdSJohn Dyson /* 975df8bae1dSRodney W. Grimes * vm_fault_unwire: 976df8bae1dSRodney W. Grimes * 977df8bae1dSRodney W. Grimes * Unwire a range of virtual addresses in a map. 978df8bae1dSRodney W. Grimes */ 97926f9a767SRodney W. Grimes void 98026f9a767SRodney W. Grimes vm_fault_unwire(map, start, end) 981df8bae1dSRodney W. Grimes vm_map_t map; 982df8bae1dSRodney W. Grimes vm_offset_t start, end; 983df8bae1dSRodney W. Grimes { 98454d92145SMatthew Dillon vm_offset_t va, pa; 98554d92145SMatthew Dillon pmap_t pmap; 986df8bae1dSRodney W. Grimes 987df8bae1dSRodney W. Grimes pmap = vm_map_pmap(map); 988df8bae1dSRodney W. Grimes 9894b9fdc2bSAlan Cox mtx_lock(&Giant); 990df8bae1dSRodney W. Grimes /* 9910d94caffSDavid Greenman * Since the pages are wired down, we must be able to get their 9920d94caffSDavid Greenman * mappings from the physical map system. 993df8bae1dSRodney W. Grimes */ 994df8bae1dSRodney W. Grimes for (va = start; va < end; va += PAGE_SIZE) { 995df8bae1dSRodney W. Grimes pa = pmap_extract(pmap, va); 996b18bfc3dSJohn Dyson if (pa != (vm_offset_t) 0) { 997df8bae1dSRodney W. Grimes pmap_change_wiring(pmap, va, FALSE); 9982d09a6adSAlan Cox vm_page_lock_queues(); 99973007561SDavid Greenman vm_page_unwire(PHYS_TO_VM_PAGE(pa), 1); 10002d09a6adSAlan Cox vm_page_unlock_queues(); 1001df8bae1dSRodney W. Grimes } 1002b18bfc3dSJohn Dyson } 1003042bb299SAlan Cox mtx_unlock(&Giant); 1004df8bae1dSRodney W. Grimes } 1005df8bae1dSRodney W. Grimes 1006df8bae1dSRodney W. Grimes /* 1007df8bae1dSRodney W. Grimes * Routine: 1008df8bae1dSRodney W. Grimes * vm_fault_copy_entry 1009df8bae1dSRodney W. Grimes * Function: 1010df8bae1dSRodney W. Grimes * Copy all of the pages from a wired-down map entry to another. 1011df8bae1dSRodney W. Grimes * 1012df8bae1dSRodney W. Grimes * In/out conditions: 1013df8bae1dSRodney W. Grimes * The source and destination maps must be locked for write. 1014df8bae1dSRodney W. Grimes * The source map entry must be wired down (or be a sharing map 1015df8bae1dSRodney W. Grimes * entry corresponding to a main map entry that is wired down). 1016df8bae1dSRodney W. Grimes */ 101726f9a767SRodney W. Grimes void 101826f9a767SRodney W. Grimes vm_fault_copy_entry(dst_map, src_map, dst_entry, src_entry) 1019df8bae1dSRodney W. Grimes vm_map_t dst_map; 1020df8bae1dSRodney W. Grimes vm_map_t src_map; 1021df8bae1dSRodney W. Grimes vm_map_entry_t dst_entry; 1022df8bae1dSRodney W. Grimes vm_map_entry_t src_entry; 1023df8bae1dSRodney W. Grimes { 1024df8bae1dSRodney W. Grimes vm_object_t dst_object; 1025df8bae1dSRodney W. Grimes vm_object_t src_object; 1026a316d390SJohn Dyson vm_ooffset_t dst_offset; 1027a316d390SJohn Dyson vm_ooffset_t src_offset; 1028df8bae1dSRodney W. Grimes vm_prot_t prot; 1029df8bae1dSRodney W. Grimes vm_offset_t vaddr; 1030df8bae1dSRodney W. Grimes vm_page_t dst_m; 1031df8bae1dSRodney W. Grimes vm_page_t src_m; 1032df8bae1dSRodney W. Grimes 1033df8bae1dSRodney W. Grimes #ifdef lint 1034df8bae1dSRodney W. Grimes src_map++; 10350d94caffSDavid Greenman #endif /* lint */ 1036df8bae1dSRodney W. Grimes 1037df8bae1dSRodney W. Grimes src_object = src_entry->object.vm_object; 1038df8bae1dSRodney W. Grimes src_offset = src_entry->offset; 1039df8bae1dSRodney W. Grimes 1040df8bae1dSRodney W. Grimes /* 10410d94caffSDavid Greenman * Create the top-level object for the destination entry. (Doesn't 10420d94caffSDavid Greenman * actually shadow anything - we copy the pages directly.) 1043df8bae1dSRodney W. Grimes */ 104424a1cce3SDavid Greenman dst_object = vm_object_allocate(OBJT_DEFAULT, 1045a316d390SJohn Dyson (vm_size_t) OFF_TO_IDX(dst_entry->end - dst_entry->start)); 1046df8bae1dSRodney W. Grimes 1047df8bae1dSRodney W. Grimes dst_entry->object.vm_object = dst_object; 1048df8bae1dSRodney W. Grimes dst_entry->offset = 0; 1049df8bae1dSRodney W. Grimes 1050df8bae1dSRodney W. Grimes prot = dst_entry->max_protection; 1051df8bae1dSRodney W. Grimes 1052df8bae1dSRodney W. Grimes /* 10530d94caffSDavid Greenman * Loop through all of the pages in the entry's range, copying each 10540d94caffSDavid Greenman * one from the source object (it should be there) to the destination 10550d94caffSDavid Greenman * object. 1056df8bae1dSRodney W. Grimes */ 1057df8bae1dSRodney W. Grimes for (vaddr = dst_entry->start, dst_offset = 0; 1058df8bae1dSRodney W. Grimes vaddr < dst_entry->end; 1059df8bae1dSRodney W. Grimes vaddr += PAGE_SIZE, dst_offset += PAGE_SIZE) { 1060df8bae1dSRodney W. Grimes 1061df8bae1dSRodney W. Grimes /* 1062df8bae1dSRodney W. Grimes * Allocate a page in the destination object 1063df8bae1dSRodney W. Grimes */ 1064df8bae1dSRodney W. Grimes do { 1065a316d390SJohn Dyson dst_m = vm_page_alloc(dst_object, 1066a316d390SJohn Dyson OFF_TO_IDX(dst_offset), VM_ALLOC_NORMAL); 1067df8bae1dSRodney W. Grimes if (dst_m == NULL) { 1068df8bae1dSRodney W. Grimes VM_WAIT; 1069df8bae1dSRodney W. Grimes } 1070df8bae1dSRodney W. Grimes } while (dst_m == NULL); 1071df8bae1dSRodney W. Grimes 1072df8bae1dSRodney W. Grimes /* 1073df8bae1dSRodney W. Grimes * Find the page in the source object, and copy it in. 10740d94caffSDavid Greenman * (Because the source is wired down, the page will be in 10750d94caffSDavid Greenman * memory.) 1076df8bae1dSRodney W. Grimes */ 1077a316d390SJohn Dyson src_m = vm_page_lookup(src_object, 1078a316d390SJohn Dyson OFF_TO_IDX(dst_offset + src_offset)); 1079df8bae1dSRodney W. Grimes if (src_m == NULL) 1080df8bae1dSRodney W. Grimes panic("vm_fault_copy_wired: page missing"); 1081df8bae1dSRodney W. Grimes 1082df8bae1dSRodney W. Grimes vm_page_copy(src_m, dst_m); 1083df8bae1dSRodney W. Grimes 1084df8bae1dSRodney W. Grimes /* 1085df8bae1dSRodney W. Grimes * Enter it in the pmap... 1086df8bae1dSRodney W. Grimes */ 10870385347cSPeter Wemm pmap_enter(dst_map->pmap, vaddr, dst_m, prot, FALSE); 10884abd55b2SAlan Cox vm_page_lock_queues(); 1089db44450bSAlan Cox vm_page_flag_set(dst_m, PG_WRITEABLE); 1090df8bae1dSRodney W. Grimes 1091df8bae1dSRodney W. Grimes /* 1092df8bae1dSRodney W. Grimes * Mark it no longer busy, and put it on the active list. 1093df8bae1dSRodney W. Grimes */ 1094df8bae1dSRodney W. Grimes vm_page_activate(dst_m); 1095e69763a3SDoug Rabson vm_page_wakeup(dst_m); 10964abd55b2SAlan Cox vm_page_unlock_queues(); 1097df8bae1dSRodney W. Grimes } 1098df8bae1dSRodney W. Grimes } 109926f9a767SRodney W. Grimes 110026f9a767SRodney W. Grimes 110126f9a767SRodney W. Grimes /* 110226f9a767SRodney W. Grimes * This routine checks around the requested page for other pages that 110322ba64e8SJohn Dyson * might be able to be faulted in. This routine brackets the viable 110422ba64e8SJohn Dyson * pages for the pages to be paged in. 110526f9a767SRodney W. Grimes * 110626f9a767SRodney W. Grimes * Inputs: 110722ba64e8SJohn Dyson * m, rbehind, rahead 110826f9a767SRodney W. Grimes * 110926f9a767SRodney W. Grimes * Outputs: 111026f9a767SRodney W. Grimes * marray (array of vm_page_t), reqpage (index of requested page) 111126f9a767SRodney W. Grimes * 111226f9a767SRodney W. Grimes * Return value: 111326f9a767SRodney W. Grimes * number of pages in marray 111423955314SAlfred Perlstein * 111523955314SAlfred Perlstein * This routine can't block. 111626f9a767SRodney W. Grimes */ 1117303b270bSEivind Eklund static int 111822ba64e8SJohn Dyson vm_fault_additional_pages(m, rbehind, rahead, marray, reqpage) 111926f9a767SRodney W. Grimes vm_page_t m; 112026f9a767SRodney W. Grimes int rbehind; 112122ba64e8SJohn Dyson int rahead; 112226f9a767SRodney W. Grimes vm_page_t *marray; 112326f9a767SRodney W. Grimes int *reqpage; 112426f9a767SRodney W. Grimes { 11252d8acc0fSJohn Dyson int i,j; 112626f9a767SRodney W. Grimes vm_object_t object; 1127a316d390SJohn Dyson vm_pindex_t pindex, startpindex, endpindex, tpindex; 112826f9a767SRodney W. Grimes vm_page_t rtm; 1129170db9c6SJohn Dyson int cbehind, cahead; 113026f9a767SRodney W. Grimes 11310cddd8f0SMatthew Dillon GIANT_REQUIRED; 113223955314SAlfred Perlstein 113326f9a767SRodney W. Grimes object = m->object; 1134a316d390SJohn Dyson pindex = m->pindex; 113526f9a767SRodney W. Grimes 113626f9a767SRodney W. Grimes /* 1137f35329acSJohn Dyson * we don't fault-ahead for device pager 1138f35329acSJohn Dyson */ 1139f35329acSJohn Dyson if (object->type == OBJT_DEVICE) { 1140f35329acSJohn Dyson *reqpage = 0; 1141f35329acSJohn Dyson marray[0] = m; 1142f35329acSJohn Dyson return 1; 1143f35329acSJohn Dyson } 1144f35329acSJohn Dyson 1145f35329acSJohn Dyson /* 114626f9a767SRodney W. Grimes * if the requested page is not available, then give up now 114726f9a767SRodney W. Grimes */ 11481c7c3c6aSMatthew Dillon if (!vm_pager_has_page(object, pindex, &cbehind, &cahead)) { 114926f9a767SRodney W. Grimes return 0; 11502d8acc0fSJohn Dyson } 115126f9a767SRodney W. Grimes 115222ba64e8SJohn Dyson if ((cbehind == 0) && (cahead == 0)) { 115322ba64e8SJohn Dyson *reqpage = 0; 115422ba64e8SJohn Dyson marray[0] = m; 115522ba64e8SJohn Dyson return 1; 1156170db9c6SJohn Dyson } 115722ba64e8SJohn Dyson 115822ba64e8SJohn Dyson if (rahead > cahead) { 115922ba64e8SJohn Dyson rahead = cahead; 116022ba64e8SJohn Dyson } 116122ba64e8SJohn Dyson 1162170db9c6SJohn Dyson if (rbehind > cbehind) { 1163170db9c6SJohn Dyson rbehind = cbehind; 1164170db9c6SJohn Dyson } 1165170db9c6SJohn Dyson 116626f9a767SRodney W. Grimes /* 116726f9a767SRodney W. Grimes * try to do any readahead that we might have free pages for. 116826f9a767SRodney W. Grimes */ 1169ccbb2f72SJohn Dyson if ((rahead + rbehind) > 117022ba64e8SJohn Dyson ((cnt.v_free_count + cnt.v_cache_count) - cnt.v_free_reserved)) { 1171f919ebdeSDavid Greenman pagedaemon_wakeup(); 117226f9a767SRodney W. Grimes marray[0] = m; 11732d8acc0fSJohn Dyson *reqpage = 0; 117426f9a767SRodney W. Grimes return 1; 117526f9a767SRodney W. Grimes } 117622ba64e8SJohn Dyson 117726f9a767SRodney W. Grimes /* 11782d8acc0fSJohn Dyson * scan backward for the read behind pages -- in memory 117926f9a767SRodney W. Grimes */ 11802d8acc0fSJohn Dyson if (pindex > 0) { 11812d8acc0fSJohn Dyson if (rbehind > pindex) { 1182a316d390SJohn Dyson rbehind = pindex; 11832d8acc0fSJohn Dyson startpindex = 0; 11842d8acc0fSJohn Dyson } else { 1185a316d390SJohn Dyson startpindex = pindex - rbehind; 11862d8acc0fSJohn Dyson } 11872d8acc0fSJohn Dyson 11882d8acc0fSJohn Dyson for (tpindex = pindex - 1; tpindex >= startpindex; tpindex -= 1) { 1189a316d390SJohn Dyson if (vm_page_lookup(object, tpindex)) { 1190a316d390SJohn Dyson startpindex = tpindex + 1; 119126f9a767SRodney W. Grimes break; 119226f9a767SRodney W. Grimes } 1193a316d390SJohn Dyson if (tpindex == 0) 119426f9a767SRodney W. Grimes break; 1195317205caSDavid Greenman } 119626f9a767SRodney W. Grimes 11972d8acc0fSJohn Dyson for (i = 0, tpindex = startpindex; tpindex < pindex; i++, tpindex++) { 119826f9a767SRodney W. Grimes 11992d8acc0fSJohn Dyson rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL); 1200ccbb2f72SJohn Dyson if (rtm == NULL) { 12012ad98273SAlan Cox vm_page_lock_queues(); 1202ccbb2f72SJohn Dyson for (j = 0; j < i; j++) { 12034866e085SJohn Dyson vm_page_free(marray[j]); 120426f9a767SRodney W. Grimes } 12052ad98273SAlan Cox vm_page_unlock_queues(); 120626f9a767SRodney W. Grimes marray[0] = m; 12072d8acc0fSJohn Dyson *reqpage = 0; 120826f9a767SRodney W. Grimes return 1; 120926f9a767SRodney W. Grimes } 1210170db9c6SJohn Dyson 12112d8acc0fSJohn Dyson marray[i] = rtm; 121226f9a767SRodney W. Grimes } 12132d8acc0fSJohn Dyson } else { 12142d8acc0fSJohn Dyson startpindex = 0; 12152d8acc0fSJohn Dyson i = 0; 12162d8acc0fSJohn Dyson } 12172d8acc0fSJohn Dyson 12182d8acc0fSJohn Dyson marray[i] = m; 12192d8acc0fSJohn Dyson /* page offset of the required page */ 12202d8acc0fSJohn Dyson *reqpage = i; 12212d8acc0fSJohn Dyson 12222d8acc0fSJohn Dyson tpindex = pindex + 1; 12232d8acc0fSJohn Dyson i++; 12242d8acc0fSJohn Dyson 12252d8acc0fSJohn Dyson /* 12262d8acc0fSJohn Dyson * scan forward for the read ahead pages 12272d8acc0fSJohn Dyson */ 12282d8acc0fSJohn Dyson endpindex = tpindex + rahead; 12292d8acc0fSJohn Dyson if (endpindex > object->size) 12302d8acc0fSJohn Dyson endpindex = object->size; 12312d8acc0fSJohn Dyson 12322d8acc0fSJohn Dyson for (; tpindex < endpindex; i++, tpindex++) { 12332d8acc0fSJohn Dyson 12342d8acc0fSJohn Dyson if (vm_page_lookup(object, tpindex)) { 12352d8acc0fSJohn Dyson break; 12362d8acc0fSJohn Dyson } 12372d8acc0fSJohn Dyson 12382d8acc0fSJohn Dyson rtm = vm_page_alloc(object, tpindex, VM_ALLOC_NORMAL); 12392d8acc0fSJohn Dyson if (rtm == NULL) { 12402d8acc0fSJohn Dyson break; 12412d8acc0fSJohn Dyson } 12422d8acc0fSJohn Dyson 12432d8acc0fSJohn Dyson marray[i] = rtm; 12442d8acc0fSJohn Dyson } 12452d8acc0fSJohn Dyson 12462d8acc0fSJohn Dyson /* return number of bytes of pages */ 12472d8acc0fSJohn Dyson return i; 124826f9a767SRodney W. Grimes } 1249