uvm_fault.c revision 1.221 1 1.221 ad /* $NetBSD: uvm_fault.c,v 1.221 2020/03/20 19:08:54 ad Exp $ */
2 1.1 mrg
3 1.1 mrg /*
4 1.1 mrg * Copyright (c) 1997 Charles D. Cranor and Washington University.
5 1.1 mrg * All rights reserved.
6 1.1 mrg *
7 1.1 mrg * Redistribution and use in source and binary forms, with or without
8 1.1 mrg * modification, are permitted provided that the following conditions
9 1.1 mrg * are met:
10 1.1 mrg * 1. Redistributions of source code must retain the above copyright
11 1.1 mrg * notice, this list of conditions and the following disclaimer.
12 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mrg * notice, this list of conditions and the following disclaimer in the
14 1.1 mrg * documentation and/or other materials provided with the distribution.
15 1.1 mrg *
16 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 mrg * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 mrg * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 mrg * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 mrg * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 1.1 mrg * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 1.1 mrg * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 1.1 mrg * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 1.1 mrg * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 1.1 mrg * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 1.4 mrg *
27 1.4 mrg * from: Id: uvm_fault.c,v 1.1.2.23 1998/02/06 05:29:05 chs Exp
28 1.1 mrg */
29 1.1 mrg
30 1.1 mrg /*
31 1.1 mrg * uvm_fault.c: fault handler
32 1.1 mrg */
33 1.71 lukem
34 1.71 lukem #include <sys/cdefs.h>
35 1.221 ad __KERNEL_RCSID(0, "$NetBSD: uvm_fault.c,v 1.221 2020/03/20 19:08:54 ad Exp $");
36 1.71 lukem
37 1.71 lukem #include "opt_uvmhist.h"
38 1.1 mrg
39 1.1 mrg #include <sys/param.h>
40 1.1 mrg #include <sys/systm.h>
41 1.210 martin #include <sys/atomic.h>
42 1.1 mrg #include <sys/kernel.h>
43 1.1 mrg #include <sys/mman.h>
44 1.1 mrg
45 1.1 mrg #include <uvm/uvm.h>
46 1.1 mrg
47 1.1 mrg /*
48 1.1 mrg *
49 1.1 mrg * a word on page faults:
50 1.1 mrg *
51 1.1 mrg * types of page faults we handle:
52 1.1 mrg *
53 1.1 mrg * CASE 1: upper layer faults CASE 2: lower layer faults
54 1.1 mrg *
55 1.1 mrg * CASE 1A CASE 1B CASE 2A CASE 2B
56 1.1 mrg * read/write1 write>1 read/write +-cow_write/zero
57 1.63 chs * | | | |
58 1.1 mrg * +--|--+ +--|--+ +-----+ + | + | +-----+
59 1.127 uebayasi * amap | V | | ---------> new | | | | ^ |
60 1.1 mrg * +-----+ +-----+ +-----+ + | + | +--|--+
61 1.1 mrg * | | |
62 1.1 mrg * +-----+ +-----+ +--|--+ | +--|--+
63 1.127 uebayasi * uobj | d/c | | d/c | | V | +----+ |
64 1.1 mrg * +-----+ +-----+ +-----+ +-----+
65 1.1 mrg *
66 1.1 mrg * d/c = don't care
67 1.63 chs *
68 1.1 mrg * case [0]: layerless fault
69 1.1 mrg * no amap or uobj is present. this is an error.
70 1.1 mrg *
71 1.1 mrg * case [1]: upper layer fault [anon active]
72 1.1 mrg * 1A: [read] or [write with anon->an_ref == 1]
73 1.127 uebayasi * I/O takes place in upper level anon and uobj is not touched.
74 1.1 mrg * 1B: [write with anon->an_ref > 1]
75 1.1 mrg * new anon is alloc'd and data is copied off ["COW"]
76 1.1 mrg *
77 1.1 mrg * case [2]: lower layer fault [uobj]
78 1.1 mrg * 2A: [read on non-NULL uobj] or [write to non-copy_on_write area]
79 1.1 mrg * I/O takes place directly in object.
80 1.1 mrg * 2B: [write to copy_on_write] or [read on NULL uobj]
81 1.63 chs * data is "promoted" from uobj to a new anon.
82 1.1 mrg * if uobj is null, then we zero fill.
83 1.1 mrg *
84 1.1 mrg * we follow the standard UVM locking protocol ordering:
85 1.1 mrg *
86 1.63 chs * MAPS => AMAP => UOBJ => ANON => PAGE QUEUES (PQ)
87 1.1 mrg * we hold a PG_BUSY page if we unlock for I/O
88 1.1 mrg *
89 1.1 mrg *
90 1.1 mrg * the code is structured as follows:
91 1.63 chs *
92 1.1 mrg * - init the "IN" params in the ufi structure
93 1.177 yamt * ReFault: (ERESTART returned to the loop in uvm_fault_internal)
94 1.1 mrg * - do lookups [locks maps], check protection, handle needs_copy
95 1.1 mrg * - check for case 0 fault (error)
96 1.1 mrg * - establish "range" of fault
97 1.1 mrg * - if we have an amap lock it and extract the anons
98 1.1 mrg * - if sequential advice deactivate pages behind us
99 1.1 mrg * - at the same time check pmap for unmapped areas and anon for pages
100 1.1 mrg * that we could map in (and do map it if found)
101 1.1 mrg * - check object for resident pages that we could map in
102 1.1 mrg * - if (case 2) goto Case2
103 1.1 mrg * - >>> handle case 1
104 1.1 mrg * - ensure source anon is resident in RAM
105 1.1 mrg * - if case 1B alloc new anon and copy from source
106 1.1 mrg * - map the correct page in
107 1.1 mrg * Case2:
108 1.1 mrg * - >>> handle case 2
109 1.1 mrg * - ensure source page is resident (if uobj)
110 1.1 mrg * - if case 2B alloc new anon and copy from source (could be zero
111 1.1 mrg * fill if uobj == NULL)
112 1.1 mrg * - map the correct page in
113 1.1 mrg * - done!
114 1.1 mrg *
115 1.1 mrg * note on paging:
116 1.1 mrg * if we have to do I/O we place a PG_BUSY page in the correct object,
117 1.1 mrg * unlock everything, and do the I/O. when I/O is done we must reverify
118 1.1 mrg * the state of the world before assuming that our data structures are
119 1.1 mrg * valid. [because mappings could change while the map is unlocked]
120 1.1 mrg *
121 1.1 mrg * alternative 1: unbusy the page in question and restart the page fault
122 1.1 mrg * from the top (ReFault). this is easy but does not take advantage
123 1.63 chs * of the information that we already have from our previous lookup,
124 1.1 mrg * although it is possible that the "hints" in the vm_map will help here.
125 1.1 mrg *
126 1.1 mrg * alternative 2: the system already keeps track of a "version" number of
127 1.1 mrg * a map. [i.e. every time you write-lock a map (e.g. to change a
128 1.1 mrg * mapping) you bump the version number up by one...] so, we can save
129 1.1 mrg * the version number of the map before we release the lock and start I/O.
130 1.1 mrg * then when I/O is done we can relock and check the version numbers
131 1.1 mrg * to see if anything changed. this might save us some over 1 because
132 1.1 mrg * we don't have to unbusy the page and may be less compares(?).
133 1.1 mrg *
134 1.1 mrg * alternative 3: put in backpointers or a way to "hold" part of a map
135 1.1 mrg * in place while I/O is in progress. this could be complex to
136 1.1 mrg * implement (especially with structures like amap that can be referenced
137 1.1 mrg * by multiple map entries, and figuring out what should wait could be
138 1.1 mrg * complex as well...).
139 1.1 mrg *
140 1.125 ad * we use alternative 2. given that we are multi-threaded now we may want
141 1.125 ad * to reconsider the choice.
142 1.1 mrg */
143 1.1 mrg
144 1.1 mrg /*
145 1.1 mrg * local data structures
146 1.1 mrg */
147 1.1 mrg
148 1.1 mrg struct uvm_advice {
149 1.7 mrg int advice;
150 1.7 mrg int nback;
151 1.7 mrg int nforw;
152 1.1 mrg };
153 1.1 mrg
154 1.1 mrg /*
155 1.1 mrg * page range array:
156 1.63 chs * note: index in array must match "advice" value
157 1.1 mrg * XXX: borrowed numbers from freebsd. do they work well for us?
158 1.1 mrg */
159 1.1 mrg
160 1.95 thorpej static const struct uvm_advice uvmadvice[] = {
161 1.186 rmind { UVM_ADV_NORMAL, 3, 4 },
162 1.186 rmind { UVM_ADV_RANDOM, 0, 0 },
163 1.186 rmind { UVM_ADV_SEQUENTIAL, 8, 7},
164 1.1 mrg };
165 1.1 mrg
166 1.69 chs #define UVM_MAXRANGE 16 /* must be MAX() of nback+nforw+1 */
167 1.1 mrg
168 1.1 mrg /*
169 1.1 mrg * private prototypes
170 1.1 mrg */
171 1.1 mrg
172 1.1 mrg /*
173 1.193 tls * externs from other modules
174 1.193 tls */
175 1.193 tls
176 1.193 tls extern int start_init_exec; /* Is init_main() done / init running? */
177 1.193 tls
178 1.193 tls /*
179 1.1 mrg * inline functions
180 1.1 mrg */
181 1.1 mrg
182 1.1 mrg /*
183 1.1 mrg * uvmfault_anonflush: try and deactivate pages in specified anons
184 1.1 mrg *
185 1.1 mrg * => does not have to deactivate page if it is busy
186 1.1 mrg */
187 1.1 mrg
188 1.103 perry static inline void
189 1.95 thorpej uvmfault_anonflush(struct vm_anon **anons, int n)
190 1.1 mrg {
191 1.7 mrg int lcv;
192 1.7 mrg struct vm_page *pg;
193 1.63 chs
194 1.163 uebayasi for (lcv = 0; lcv < n; lcv++) {
195 1.7 mrg if (anons[lcv] == NULL)
196 1.7 mrg continue;
197 1.216 ad KASSERT(rw_write_held(anons[lcv]->an_lock));
198 1.94 yamt pg = anons[lcv]->an_page;
199 1.117 yamt if (pg && (pg->flags & PG_BUSY) == 0) {
200 1.214 ad uvm_pagelock(pg);
201 1.212 ad uvm_pagedeactivate(pg);
202 1.214 ad uvm_pageunlock(pg);
203 1.7 mrg }
204 1.7 mrg }
205 1.1 mrg }
206 1.1 mrg
207 1.1 mrg /*
208 1.1 mrg * normal functions
209 1.1 mrg */
210 1.1 mrg
211 1.1 mrg /*
212 1.1 mrg * uvmfault_amapcopy: clear "needs_copy" in a map.
213 1.1 mrg *
214 1.1 mrg * => called with VM data structures unlocked (usually, see below)
215 1.1 mrg * => we get a write lock on the maps and clear needs_copy for a VA
216 1.1 mrg * => if we are out of RAM we sleep (waiting for more)
217 1.1 mrg */
218 1.1 mrg
219 1.7 mrg static void
220 1.95 thorpej uvmfault_amapcopy(struct uvm_faultinfo *ufi)
221 1.1 mrg {
222 1.69 chs for (;;) {
223 1.1 mrg
224 1.7 mrg /*
225 1.7 mrg * no mapping? give up.
226 1.7 mrg */
227 1.1 mrg
228 1.119 thorpej if (uvmfault_lookup(ufi, true) == false)
229 1.7 mrg return;
230 1.1 mrg
231 1.7 mrg /*
232 1.7 mrg * copy if needed.
233 1.7 mrg */
234 1.1 mrg
235 1.7 mrg if (UVM_ET_ISNEEDSCOPY(ufi->entry))
236 1.108 yamt amap_copy(ufi->map, ufi->entry, AMAP_COPY_NOWAIT,
237 1.13 chuck ufi->orig_rvaddr, ufi->orig_rvaddr + 1);
238 1.1 mrg
239 1.7 mrg /*
240 1.7 mrg * didn't work? must be out of RAM. unlock and sleep.
241 1.7 mrg */
242 1.7 mrg
243 1.7 mrg if (UVM_ET_ISNEEDSCOPY(ufi->entry)) {
244 1.119 thorpej uvmfault_unlockmaps(ufi, true);
245 1.7 mrg uvm_wait("fltamapcopy");
246 1.7 mrg continue;
247 1.7 mrg }
248 1.7 mrg
249 1.7 mrg /*
250 1.7 mrg * got it! unlock and return.
251 1.7 mrg */
252 1.63 chs
253 1.119 thorpej uvmfault_unlockmaps(ufi, true);
254 1.7 mrg return;
255 1.7 mrg }
256 1.7 mrg /*NOTREACHED*/
257 1.1 mrg }
258 1.1 mrg
259 1.1 mrg /*
260 1.1 mrg * uvmfault_anonget: get data in an anon into a non-busy, non-released
261 1.1 mrg * page in that anon.
262 1.1 mrg *
263 1.187 rmind * => Map, amap and thus anon should be locked by caller.
264 1.187 rmind * => If we fail, we unlock everything and error is returned.
265 1.187 rmind * => If we are successful, return with everything still locked.
266 1.187 rmind * => We do not move the page on the queues [gets moved later]. If we
267 1.187 rmind * allocate a new page [we_own], it gets put on the queues. Either way,
268 1.187 rmind * the result is that the page is on the queues at return time
269 1.187 rmind * => For pages which are on loan from a uvm_object (and thus are not owned
270 1.187 rmind * by the anon): if successful, return with the owning object locked.
271 1.187 rmind * The caller must unlock this object when it unlocks everything else.
272 1.1 mrg */
273 1.1 mrg
274 1.47 chs int
275 1.95 thorpej uvmfault_anonget(struct uvm_faultinfo *ufi, struct vm_amap *amap,
276 1.95 thorpej struct vm_anon *anon)
277 1.7 mrg {
278 1.7 mrg struct vm_page *pg;
279 1.58 chs int error;
280 1.187 rmind
281 1.7 mrg UVMHIST_FUNC("uvmfault_anonget"); UVMHIST_CALLED(maphist);
282 1.216 ad KASSERT(rw_write_held(anon->an_lock));
283 1.188 rmind KASSERT(anon->an_lock == amap->am_lock);
284 1.53 thorpej
285 1.187 rmind /* Increment the counters.*/
286 1.213 ad cpu_count(CPU_COUNT_FLTANGET, 1);
287 1.187 rmind if (anon->an_page) {
288 1.124 ad curlwp->l_ru.ru_minflt++;
289 1.187 rmind } else {
290 1.124 ad curlwp->l_ru.ru_majflt++;
291 1.187 rmind }
292 1.187 rmind error = 0;
293 1.7 mrg
294 1.63 chs /*
295 1.187 rmind * Loop until we get the anon data, or fail.
296 1.7 mrg */
297 1.7 mrg
298 1.69 chs for (;;) {
299 1.187 rmind bool we_own, locked;
300 1.187 rmind /*
301 1.187 rmind * Note: 'we_own' will become true if we set PG_BUSY on a page.
302 1.187 rmind */
303 1.187 rmind we_own = false;
304 1.94 yamt pg = anon->an_page;
305 1.1 mrg
306 1.7 mrg /*
307 1.187 rmind * If there is a resident page and it is loaned, then anon
308 1.187 rmind * may not own it. Call out to uvm_anon_lockloanpg() to
309 1.187 rmind * identify and lock the real owner of the page.
310 1.7 mrg */
311 1.7 mrg
312 1.7 mrg if (pg && pg->loan_count)
313 1.13 chuck pg = uvm_anon_lockloanpg(anon);
314 1.7 mrg
315 1.7 mrg /*
316 1.187 rmind * Is page resident? Make sure it is not busy/released.
317 1.7 mrg */
318 1.7 mrg
319 1.7 mrg if (pg) {
320 1.7 mrg
321 1.7 mrg /*
322 1.7 mrg * at this point, if the page has a uobject [meaning
323 1.7 mrg * we have it on loan], then that uobject is locked
324 1.7 mrg * by us! if the page is busy, we drop all the
325 1.7 mrg * locks (including uobject) and try again.
326 1.7 mrg */
327 1.7 mrg
328 1.69 chs if ((pg->flags & PG_BUSY) == 0) {
329 1.7 mrg UVMHIST_LOG(maphist, "<- OK",0,0,0,0);
330 1.187 rmind return 0;
331 1.7 mrg }
332 1.213 ad cpu_count(CPU_COUNT_FLTPGWAIT, 1);
333 1.7 mrg
334 1.7 mrg /*
335 1.187 rmind * The last unlock must be an atomic unlock and wait
336 1.187 rmind * on the owner of page.
337 1.7 mrg */
338 1.69 chs
339 1.187 rmind if (pg->uobject) {
340 1.187 rmind /* Owner of page is UVM object. */
341 1.186 rmind uvmfault_unlockall(ufi, amap, NULL);
342 1.7 mrg UVMHIST_LOG(maphist, " unlock+wait on uobj",0,
343 1.7 mrg 0,0,0);
344 1.218 ad uvm_pagewait(pg, pg->uobject->vmobjlock, "anonget1");
345 1.7 mrg } else {
346 1.187 rmind /* Owner of page is anon. */
347 1.186 rmind uvmfault_unlockall(ufi, NULL, NULL);
348 1.7 mrg UVMHIST_LOG(maphist, " unlock+wait on anon",0,
349 1.7 mrg 0,0,0);
350 1.218 ad uvm_pagewait(pg, anon->an_lock, "anonget2");
351 1.7 mrg }
352 1.7 mrg } else {
353 1.101 yamt #if defined(VMSWAP)
354 1.7 mrg /*
355 1.187 rmind * No page, therefore allocate one.
356 1.7 mrg */
357 1.69 chs
358 1.180 enami pg = uvm_pagealloc(NULL,
359 1.180 enami ufi != NULL ? ufi->orig_rvaddr : 0,
360 1.185 tsutsui anon, ufi != NULL ? UVM_FLAG_COLORMATCH : 0);
361 1.187 rmind if (pg == NULL) {
362 1.187 rmind /* Out of memory. Wait a little. */
363 1.186 rmind uvmfault_unlockall(ufi, amap, NULL);
364 1.213 ad cpu_count(CPU_COUNT_FLTNORAM, 1);
365 1.7 mrg UVMHIST_LOG(maphist, " noram -- UVM_WAIT",0,
366 1.7 mrg 0,0,0);
367 1.93 yamt if (!uvm_reclaimable()) {
368 1.93 yamt return ENOMEM;
369 1.93 yamt }
370 1.7 mrg uvm_wait("flt_noram1");
371 1.7 mrg } else {
372 1.187 rmind /* PG_BUSY bit is set. */
373 1.119 thorpej we_own = true;
374 1.186 rmind uvmfault_unlockall(ufi, amap, NULL);
375 1.7 mrg
376 1.7 mrg /*
377 1.215 ad * Pass a PG_BUSY+PG_FAKE clean page into
378 1.187 rmind * the uvm_swap_get() function with all data
379 1.187 rmind * structures unlocked. Note that it is OK
380 1.187 rmind * to read an_swslot here, because we hold
381 1.187 rmind * PG_BUSY on the page.
382 1.7 mrg */
383 1.213 ad cpu_count(CPU_COUNT_PAGEINS, 1);
384 1.58 chs error = uvm_swap_get(pg, anon->an_swslot,
385 1.7 mrg PGO_SYNCIO);
386 1.7 mrg
387 1.7 mrg /*
388 1.187 rmind * We clean up after the I/O below in the
389 1.187 rmind * 'we_own' case.
390 1.7 mrg */
391 1.7 mrg }
392 1.187 rmind #else
393 1.101 yamt panic("%s: no page", __func__);
394 1.101 yamt #endif /* defined(VMSWAP) */
395 1.7 mrg }
396 1.7 mrg
397 1.7 mrg /*
398 1.187 rmind * Re-lock the map and anon.
399 1.7 mrg */
400 1.7 mrg
401 1.7 mrg locked = uvmfault_relock(ufi);
402 1.186 rmind if (locked || we_own) {
403 1.216 ad rw_enter(anon->an_lock, RW_WRITER);
404 1.7 mrg }
405 1.7 mrg
406 1.7 mrg /*
407 1.187 rmind * If we own the page (i.e. we set PG_BUSY), then we need
408 1.187 rmind * to clean up after the I/O. There are three cases to
409 1.7 mrg * consider:
410 1.187 rmind *
411 1.187 rmind * 1) Page was released during I/O: free anon and ReFault.
412 1.187 rmind * 2) I/O not OK. Free the page and cause the fault to fail.
413 1.187 rmind * 3) I/O OK! Activate the page and sync with the non-we_own
414 1.187 rmind * case (i.e. drop anon lock if not locked).
415 1.7 mrg */
416 1.63 chs
417 1.7 mrg if (we_own) {
418 1.101 yamt #if defined(VMSWAP)
419 1.58 chs if (error) {
420 1.1 mrg
421 1.47 chs /*
422 1.187 rmind * Remove the swap slot from the anon and
423 1.187 rmind * mark the anon as having no real slot.
424 1.187 rmind * Do not free the swap slot, thus preventing
425 1.47 chs * it from being used again.
426 1.47 chs */
427 1.69 chs
428 1.187 rmind if (anon->an_swslot > 0) {
429 1.84 pk uvm_swap_markbad(anon->an_swslot, 1);
430 1.187 rmind }
431 1.47 chs anon->an_swslot = SWSLOT_BAD;
432 1.47 chs
433 1.187 rmind if ((pg->flags & PG_RELEASED) != 0) {
434 1.88 yamt goto released;
435 1.187 rmind }
436 1.88 yamt
437 1.47 chs /*
438 1.187 rmind * Note: page was never !PG_BUSY, so it
439 1.187 rmind * cannot be mapped and thus no need to
440 1.187 rmind * pmap_page_protect() it.
441 1.7 mrg */
442 1.69 chs
443 1.7 mrg uvm_pagefree(pg);
444 1.7 mrg
445 1.187 rmind if (locked) {
446 1.186 rmind uvmfault_unlockall(ufi, NULL, NULL);
447 1.187 rmind }
448 1.216 ad rw_exit(anon->an_lock);
449 1.7 mrg UVMHIST_LOG(maphist, "<- ERROR", 0,0,0,0);
450 1.58 chs return error;
451 1.7 mrg }
452 1.63 chs
453 1.88 yamt if ((pg->flags & PG_RELEASED) != 0) {
454 1.88 yamt released:
455 1.88 yamt KASSERT(anon->an_ref == 0);
456 1.88 yamt
457 1.88 yamt /*
458 1.187 rmind * Released while we had unlocked amap.
459 1.88 yamt */
460 1.88 yamt
461 1.187 rmind if (locked) {
462 1.186 rmind uvmfault_unlockall(ufi, NULL, NULL);
463 1.187 rmind }
464 1.88 yamt uvm_anon_release(anon);
465 1.88 yamt
466 1.88 yamt if (error) {
467 1.88 yamt UVMHIST_LOG(maphist,
468 1.88 yamt "<- ERROR/RELEASED", 0,0,0,0);
469 1.88 yamt return error;
470 1.88 yamt }
471 1.88 yamt
472 1.88 yamt UVMHIST_LOG(maphist, "<- RELEASED", 0,0,0,0);
473 1.88 yamt return ERESTART;
474 1.88 yamt }
475 1.88 yamt
476 1.7 mrg /*
477 1.187 rmind * We have successfully read the page, activate it.
478 1.7 mrg */
479 1.69 chs
480 1.214 ad uvm_pagelock(pg);
481 1.7 mrg uvm_pageactivate(pg);
482 1.219 ad uvm_pagewakeup(pg);
483 1.214 ad uvm_pageunlock(pg);
484 1.219 ad pg->flags &= ~(PG_BUSY|PG_FAKE);
485 1.215 ad uvm_pagemarkdirty(pg, UVM_PAGE_STATUS_UNKNOWN);
486 1.219 ad UVM_PAGE_OWN(pg, NULL);
487 1.187 rmind #else
488 1.101 yamt panic("%s: we_own", __func__);
489 1.101 yamt #endif /* defined(VMSWAP) */
490 1.7 mrg }
491 1.7 mrg
492 1.7 mrg /*
493 1.187 rmind * We were not able to re-lock the map - restart the fault.
494 1.7 mrg */
495 1.7 mrg
496 1.7 mrg if (!locked) {
497 1.186 rmind if (we_own) {
498 1.216 ad rw_exit(anon->an_lock);
499 1.186 rmind }
500 1.7 mrg UVMHIST_LOG(maphist, "<- REFAULT", 0,0,0,0);
501 1.187 rmind return ERESTART;
502 1.7 mrg }
503 1.7 mrg
504 1.7 mrg /*
505 1.187 rmind * Verify that no one has touched the amap and moved
506 1.187 rmind * the anon on us.
507 1.7 mrg */
508 1.1 mrg
509 1.186 rmind if (ufi != NULL && amap_lookup(&ufi->entry->aref,
510 1.186 rmind ufi->orig_rvaddr - ufi->entry->start) != anon) {
511 1.63 chs
512 1.186 rmind uvmfault_unlockall(ufi, amap, NULL);
513 1.7 mrg UVMHIST_LOG(maphist, "<- REFAULT", 0,0,0,0);
514 1.187 rmind return ERESTART;
515 1.7 mrg }
516 1.63 chs
517 1.7 mrg /*
518 1.187 rmind * Retry..
519 1.7 mrg */
520 1.1 mrg
521 1.213 ad cpu_count(CPU_COUNT_FLTANRETRY, 1);
522 1.7 mrg continue;
523 1.69 chs }
524 1.7 mrg /*NOTREACHED*/
525 1.1 mrg }
526 1.1 mrg
527 1.1 mrg /*
528 1.106 yamt * uvmfault_promote: promote data to a new anon. used for 1B and 2B.
529 1.106 yamt *
530 1.106 yamt * 1. allocate an anon and a page.
531 1.106 yamt * 2. fill its contents.
532 1.106 yamt * 3. put it into amap.
533 1.106 yamt *
534 1.106 yamt * => if we fail (result != 0) we unlock everything.
535 1.106 yamt * => on success, return a new locked anon via 'nanon'.
536 1.106 yamt * (*nanon)->an_page will be a resident, locked, dirty page.
537 1.183 yamt * => it's caller's responsibility to put the promoted nanon->an_page to the
538 1.183 yamt * page queue.
539 1.106 yamt */
540 1.106 yamt
541 1.106 yamt static int
542 1.106 yamt uvmfault_promote(struct uvm_faultinfo *ufi,
543 1.106 yamt struct vm_anon *oanon,
544 1.106 yamt struct vm_page *uobjpage,
545 1.106 yamt struct vm_anon **nanon, /* OUT: allocated anon */
546 1.106 yamt struct vm_anon **spare)
547 1.106 yamt {
548 1.106 yamt struct vm_amap *amap = ufi->entry->aref.ar_amap;
549 1.106 yamt struct uvm_object *uobj;
550 1.106 yamt struct vm_anon *anon;
551 1.106 yamt struct vm_page *pg;
552 1.106 yamt struct vm_page *opg;
553 1.106 yamt int error;
554 1.106 yamt UVMHIST_FUNC(__func__); UVMHIST_CALLED(maphist);
555 1.106 yamt
556 1.106 yamt if (oanon) {
557 1.106 yamt /* anon COW */
558 1.106 yamt opg = oanon->an_page;
559 1.106 yamt KASSERT(opg != NULL);
560 1.106 yamt KASSERT(opg->uobject == NULL || opg->loan_count > 0);
561 1.106 yamt } else if (uobjpage != PGO_DONTCARE) {
562 1.106 yamt /* object-backed COW */
563 1.106 yamt opg = uobjpage;
564 1.106 yamt } else {
565 1.106 yamt /* ZFOD */
566 1.106 yamt opg = NULL;
567 1.106 yamt }
568 1.106 yamt if (opg != NULL) {
569 1.106 yamt uobj = opg->uobject;
570 1.106 yamt } else {
571 1.106 yamt uobj = NULL;
572 1.106 yamt }
573 1.106 yamt
574 1.106 yamt KASSERT(amap != NULL);
575 1.106 yamt KASSERT(uobjpage != NULL);
576 1.106 yamt KASSERT(uobjpage == PGO_DONTCARE || (uobjpage->flags & PG_BUSY) != 0);
577 1.216 ad KASSERT(rw_write_held(amap->am_lock));
578 1.186 rmind KASSERT(oanon == NULL || amap->am_lock == oanon->an_lock);
579 1.216 ad KASSERT(uobj == NULL || rw_write_held(uobj->vmobjlock));
580 1.106 yamt
581 1.106 yamt if (*spare != NULL) {
582 1.106 yamt anon = *spare;
583 1.106 yamt *spare = NULL;
584 1.192 para } else {
585 1.106 yamt anon = uvm_analloc();
586 1.106 yamt }
587 1.106 yamt if (anon) {
588 1.106 yamt
589 1.106 yamt /*
590 1.106 yamt * The new anon is locked.
591 1.106 yamt *
592 1.106 yamt * if opg == NULL, we want a zero'd, dirty page,
593 1.106 yamt * so have uvm_pagealloc() do that for us.
594 1.106 yamt */
595 1.106 yamt
596 1.186 rmind KASSERT(anon->an_lock == NULL);
597 1.186 rmind anon->an_lock = amap->am_lock;
598 1.179 matt pg = uvm_pagealloc(NULL, ufi->orig_rvaddr, anon,
599 1.179 matt UVM_FLAG_COLORMATCH | (opg == NULL ? UVM_PGA_ZERO : 0));
600 1.186 rmind if (pg == NULL) {
601 1.186 rmind anon->an_lock = NULL;
602 1.186 rmind }
603 1.106 yamt } else {
604 1.106 yamt pg = NULL;
605 1.106 yamt }
606 1.106 yamt
607 1.106 yamt /*
608 1.106 yamt * out of memory resources?
609 1.106 yamt */
610 1.106 yamt
611 1.106 yamt if (pg == NULL) {
612 1.106 yamt /* save anon for the next try. */
613 1.106 yamt if (anon != NULL) {
614 1.106 yamt *spare = anon;
615 1.106 yamt }
616 1.106 yamt
617 1.106 yamt /* unlock and fail ... */
618 1.106 yamt uvm_page_unbusy(&uobjpage, 1);
619 1.186 rmind uvmfault_unlockall(ufi, amap, uobj);
620 1.106 yamt if (!uvm_reclaimable()) {
621 1.106 yamt UVMHIST_LOG(maphist, "out of VM", 0,0,0,0);
622 1.213 ad cpu_count(CPU_COUNT_FLTNOANON, 1);
623 1.106 yamt error = ENOMEM;
624 1.106 yamt goto done;
625 1.106 yamt }
626 1.106 yamt
627 1.106 yamt UVMHIST_LOG(maphist, "out of RAM, waiting for more", 0,0,0,0);
628 1.213 ad cpu_count(CPU_COUNT_FLTNORAM, 1);
629 1.106 yamt uvm_wait("flt_noram5");
630 1.106 yamt error = ERESTART;
631 1.106 yamt goto done;
632 1.106 yamt }
633 1.106 yamt
634 1.106 yamt /* copy page [pg now dirty] */
635 1.106 yamt if (opg) {
636 1.106 yamt uvm_pagecopy(opg, pg);
637 1.106 yamt }
638 1.215 ad KASSERT(uvm_pagegetdirty(pg) == UVM_PAGE_STATUS_DIRTY);
639 1.106 yamt
640 1.106 yamt amap_add(&ufi->entry->aref, ufi->orig_rvaddr - ufi->entry->start, anon,
641 1.106 yamt oanon != NULL);
642 1.106 yamt
643 1.106 yamt *nanon = anon;
644 1.106 yamt error = 0;
645 1.106 yamt done:
646 1.106 yamt return error;
647 1.106 yamt }
648 1.106 yamt
649 1.203 christos /*
650 1.203 christos * Update statistics after fault resolution.
651 1.203 christos * - maxrss
652 1.203 christos */
653 1.203 christos void
654 1.203 christos uvmfault_update_stats(struct uvm_faultinfo *ufi)
655 1.203 christos {
656 1.203 christos struct vm_map *map;
657 1.204 christos struct vmspace *vm;
658 1.203 christos struct proc *p;
659 1.203 christos vsize_t res;
660 1.203 christos
661 1.203 christos map = ufi->orig_map;
662 1.203 christos
663 1.203 christos p = curproc;
664 1.203 christos KASSERT(p != NULL);
665 1.204 christos vm = p->p_vmspace;
666 1.204 christos
667 1.204 christos if (&vm->vm_map != map)
668 1.203 christos return;
669 1.203 christos
670 1.203 christos res = pmap_resident_count(map->pmap);
671 1.204 christos if (vm->vm_rssmax < res)
672 1.204 christos vm->vm_rssmax = res;
673 1.203 christos }
674 1.106 yamt
675 1.106 yamt /*
676 1.1 mrg * F A U L T - m a i n e n t r y p o i n t
677 1.1 mrg */
678 1.1 mrg
679 1.1 mrg /*
680 1.1 mrg * uvm_fault: page fault handler
681 1.1 mrg *
682 1.1 mrg * => called from MD code to resolve a page fault
683 1.63 chs * => VM data structures usually should be unlocked. however, it is
684 1.1 mrg * possible to call here with the main map locked if the caller
685 1.1 mrg * gets a write lock, sets it recusive, and then calls us (c.f.
686 1.1 mrg * uvm_map_pageable). this should be avoided because it keeps
687 1.1 mrg * the map locked off during I/O.
688 1.66 thorpej * => MUST NEVER BE CALLED IN INTERRUPT CONTEXT
689 1.1 mrg */
690 1.1 mrg
691 1.24 mycroft #define MASK(entry) (UVM_ET_ISCOPYONWRITE(entry) ? \
692 1.24 mycroft ~VM_PROT_WRITE : VM_PROT_ALL)
693 1.24 mycroft
694 1.110 drochner /* fault_flag values passed from uvm_fault_wire to uvm_fault_internal */
695 1.130 uebayasi #define UVM_FAULT_WIRE (1 << 0)
696 1.130 uebayasi #define UVM_FAULT_MAXPROT (1 << 1)
697 1.110 drochner
698 1.140 uebayasi struct uvm_faultctx {
699 1.191 yamt
700 1.191 yamt /*
701 1.191 yamt * the following members are set up by uvm_fault_check() and
702 1.191 yamt * read-only after that.
703 1.191 yamt *
704 1.191 yamt * note that narrow is used by uvm_fault_check() to change
705 1.191 yamt * the behaviour after ERESTART.
706 1.191 yamt *
707 1.191 yamt * most of them might change after RESTART if the underlying
708 1.191 yamt * map entry has been changed behind us. an exception is
709 1.191 yamt * wire_paging, which does never change.
710 1.191 yamt */
711 1.140 uebayasi vm_prot_t access_type;
712 1.150 uebayasi vaddr_t startva;
713 1.150 uebayasi int npages;
714 1.150 uebayasi int centeridx;
715 1.191 yamt bool narrow; /* work on a single requested page only */
716 1.191 yamt bool wire_mapping; /* request a PMAP_WIRED mapping
717 1.191 yamt (UVM_FAULT_WIRE or VM_MAPENT_ISWIRED) */
718 1.191 yamt bool wire_paging; /* request uvm_pagewire
719 1.191 yamt (true for UVM_FAULT_WIRE) */
720 1.191 yamt bool cow_now; /* VM_PROT_WRITE is actually requested
721 1.191 yamt (ie. should break COW and page loaning) */
722 1.191 yamt
723 1.191 yamt /*
724 1.191 yamt * enter_prot is set up by uvm_fault_check() and clamped
725 1.191 yamt * (ie. drop the VM_PROT_WRITE bit) in various places in case
726 1.191 yamt * of !cow_now.
727 1.191 yamt */
728 1.191 yamt vm_prot_t enter_prot; /* prot at which we want to enter pages in */
729 1.191 yamt
730 1.191 yamt /*
731 1.191 yamt * the following member is for uvmfault_promote() and ERESTART.
732 1.191 yamt */
733 1.150 uebayasi struct vm_anon *anon_spare;
734 1.191 yamt
735 1.191 yamt /*
736 1.191 yamt * the folloing is actually a uvm_fault_lower() internal.
737 1.191 yamt * it's here merely for debugging.
738 1.191 yamt * (or due to the mechanical separation of the function?)
739 1.191 yamt */
740 1.168 uebayasi bool promote;
741 1.140 uebayasi };
742 1.140 uebayasi
743 1.163 uebayasi static inline int uvm_fault_check(
744 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
745 1.177 yamt struct vm_anon ***, bool);
746 1.163 uebayasi
747 1.163 uebayasi static int uvm_fault_upper(
748 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
749 1.163 uebayasi struct vm_anon **);
750 1.163 uebayasi static inline int uvm_fault_upper_lookup(
751 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
752 1.163 uebayasi struct vm_anon **, struct vm_page **);
753 1.163 uebayasi static inline void uvm_fault_upper_neighbor(
754 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
755 1.163 uebayasi vaddr_t, struct vm_page *, bool);
756 1.163 uebayasi static inline int uvm_fault_upper_loan(
757 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
758 1.163 uebayasi struct vm_anon *, struct uvm_object **);
759 1.163 uebayasi static inline int uvm_fault_upper_promote(
760 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
761 1.163 uebayasi struct uvm_object *, struct vm_anon *);
762 1.163 uebayasi static inline int uvm_fault_upper_direct(
763 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
764 1.163 uebayasi struct uvm_object *, struct vm_anon *);
765 1.163 uebayasi static int uvm_fault_upper_enter(
766 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
767 1.163 uebayasi struct uvm_object *, struct vm_anon *,
768 1.163 uebayasi struct vm_page *, struct vm_anon *);
769 1.169 uebayasi static inline void uvm_fault_upper_done(
770 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
771 1.177 yamt struct vm_anon *, struct vm_page *);
772 1.163 uebayasi
773 1.163 uebayasi static int uvm_fault_lower(
774 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
775 1.163 uebayasi struct vm_page **);
776 1.173 uebayasi static inline void uvm_fault_lower_lookup(
777 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
778 1.163 uebayasi struct vm_page **);
779 1.163 uebayasi static inline void uvm_fault_lower_neighbor(
780 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
781 1.215 ad vaddr_t, struct vm_page *);
782 1.163 uebayasi static inline int uvm_fault_lower_io(
783 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
784 1.163 uebayasi struct uvm_object **, struct vm_page **);
785 1.163 uebayasi static inline int uvm_fault_lower_direct(
786 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
787 1.163 uebayasi struct uvm_object *, struct vm_page *);
788 1.163 uebayasi static inline int uvm_fault_lower_direct_loan(
789 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
790 1.163 uebayasi struct uvm_object *, struct vm_page **,
791 1.163 uebayasi struct vm_page **);
792 1.163 uebayasi static inline int uvm_fault_lower_promote(
793 1.163 uebayasi struct uvm_faultinfo *, struct uvm_faultctx *,
794 1.163 uebayasi struct uvm_object *, struct vm_page *);
795 1.163 uebayasi static int uvm_fault_lower_enter(
796 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
797 1.163 uebayasi struct uvm_object *,
798 1.183 yamt struct vm_anon *, struct vm_page *);
799 1.169 uebayasi static inline void uvm_fault_lower_done(
800 1.177 yamt struct uvm_faultinfo *, const struct uvm_faultctx *,
801 1.177 yamt struct uvm_object *, struct vm_page *);
802 1.138 uebayasi
803 1.7 mrg int
804 1.110 drochner uvm_fault_internal(struct vm_map *orig_map, vaddr_t vaddr,
805 1.110 drochner vm_prot_t access_type, int fault_flag)
806 1.1 mrg {
807 1.7 mrg struct uvm_faultinfo ufi;
808 1.140 uebayasi struct uvm_faultctx flt = {
809 1.140 uebayasi .access_type = access_type,
810 1.146 uebayasi
811 1.146 uebayasi /* don't look for neighborhood * pages on "wire" fault */
812 1.146 uebayasi .narrow = (fault_flag & UVM_FAULT_WIRE) != 0,
813 1.146 uebayasi
814 1.146 uebayasi /* "wire" fault causes wiring of both mapping and paging */
815 1.146 uebayasi .wire_mapping = (fault_flag & UVM_FAULT_WIRE) != 0,
816 1.146 uebayasi .wire_paging = (fault_flag & UVM_FAULT_WIRE) != 0,
817 1.140 uebayasi };
818 1.177 yamt const bool maxprot = (fault_flag & UVM_FAULT_MAXPROT) != 0;
819 1.137 uebayasi struct vm_anon *anons_store[UVM_MAXRANGE], **anons;
820 1.141 uebayasi struct vm_page *pages_store[UVM_MAXRANGE], **pages;
821 1.140 uebayasi int error;
822 1.196 tls
823 1.7 mrg UVMHIST_FUNC("uvm_fault"); UVMHIST_CALLED(maphist);
824 1.1 mrg
825 1.201 pgoyette UVMHIST_LOG(maphist, "(map=%#jx, vaddr=%#jx, at=%jd, ff=%jd)",
826 1.201 pgoyette (uintptr_t)orig_map, vaddr, access_type, fault_flag);
827 1.1 mrg
828 1.193 tls /* Don't count anything until user interaction is possible */
829 1.213 ad kpreempt_disable();
830 1.193 tls if (__predict_true(start_init_exec)) {
831 1.213 ad struct cpu_info *ci = curcpu();
832 1.213 ad CPU_COUNT(CPU_COUNT_NFAULT, 1);
833 1.213 ad /* Don't flood RNG subsystem with samples. */
834 1.213 ad if (++(ci->ci_faultrng) == 503) {
835 1.213 ad ci->ci_faultrng = 0;
836 1.213 ad rnd_add_uint32(&curcpu()->ci_data.cpu_uvm->rs,
837 1.213 ad sizeof(vaddr_t) == sizeof(uint32_t) ?
838 1.213 ad (uint32_t)vaddr : sizeof(vaddr_t) ==
839 1.213 ad sizeof(uint64_t) ?
840 1.213 ad (uint32_t)vaddr :
841 1.213 ad (uint32_t)ci->ci_counts[CPU_COUNT_NFAULT]);
842 1.213 ad }
843 1.193 tls }
844 1.213 ad kpreempt_enable();
845 1.213 ad
846 1.7 mrg /*
847 1.7 mrg * init the IN parameters in the ufi
848 1.7 mrg */
849 1.1 mrg
850 1.7 mrg ufi.orig_map = orig_map;
851 1.7 mrg ufi.orig_rvaddr = trunc_page(vaddr);
852 1.7 mrg ufi.orig_size = PAGE_SIZE; /* can't get any smaller than this */
853 1.7 mrg
854 1.142 uebayasi error = ERESTART;
855 1.183 yamt while (error == ERESTART) { /* ReFault: */
856 1.143 uebayasi anons = anons_store;
857 1.143 uebayasi pages = pages_store;
858 1.1 mrg
859 1.177 yamt error = uvm_fault_check(&ufi, &flt, &anons, maxprot);
860 1.143 uebayasi if (error != 0)
861 1.143 uebayasi continue;
862 1.141 uebayasi
863 1.143 uebayasi error = uvm_fault_upper_lookup(&ufi, &flt, anons, pages);
864 1.143 uebayasi if (error != 0)
865 1.143 uebayasi continue;
866 1.138 uebayasi
867 1.144 uebayasi if (pages[flt.centeridx] == PGO_DONTCARE)
868 1.148 uebayasi error = uvm_fault_upper(&ufi, &flt, anons);
869 1.167 uebayasi else {
870 1.177 yamt struct uvm_object * const uobj =
871 1.177 yamt ufi.entry->object.uvm_obj;
872 1.167 uebayasi
873 1.167 uebayasi if (uobj && uobj->pgops->pgo_fault != NULL) {
874 1.173 uebayasi /*
875 1.173 uebayasi * invoke "special" fault routine.
876 1.173 uebayasi */
877 1.216 ad rw_enter(uobj->vmobjlock, RW_WRITER);
878 1.173 uebayasi /* locked: maps(read), amap(if there), uobj */
879 1.173 uebayasi error = uobj->pgops->pgo_fault(&ufi,
880 1.173 uebayasi flt.startva, pages, flt.npages,
881 1.173 uebayasi flt.centeridx, flt.access_type,
882 1.173 uebayasi PGO_LOCKED|PGO_SYNCIO);
883 1.167 uebayasi
884 1.177 yamt /*
885 1.177 yamt * locked: nothing, pgo_fault has unlocked
886 1.177 yamt * everything
887 1.177 yamt */
888 1.167 uebayasi
889 1.167 uebayasi /*
890 1.177 yamt * object fault routine responsible for
891 1.177 yamt * pmap_update().
892 1.167 uebayasi */
893 1.205 chs
894 1.205 chs /*
895 1.205 chs * Wake up the pagedaemon if the fault method
896 1.205 chs * failed for lack of memory but some can be
897 1.205 chs * reclaimed.
898 1.205 chs */
899 1.205 chs if (error == ENOMEM && uvm_reclaimable()) {
900 1.205 chs uvm_wait("pgo_fault");
901 1.205 chs error = ERESTART;
902 1.205 chs }
903 1.167 uebayasi } else {
904 1.167 uebayasi error = uvm_fault_lower(&ufi, &flt, pages);
905 1.167 uebayasi }
906 1.167 uebayasi }
907 1.142 uebayasi }
908 1.138 uebayasi
909 1.140 uebayasi if (flt.anon_spare != NULL) {
910 1.140 uebayasi flt.anon_spare->an_ref--;
911 1.186 rmind KASSERT(flt.anon_spare->an_ref == 0);
912 1.186 rmind KASSERT(flt.anon_spare->an_lock == NULL);
913 1.221 ad uvm_anfree(flt.anon_spare);
914 1.138 uebayasi }
915 1.138 uebayasi return error;
916 1.141 uebayasi }
917 1.138 uebayasi
918 1.173 uebayasi /*
919 1.173 uebayasi * uvm_fault_check: check prot, handle needs-copy, etc.
920 1.173 uebayasi *
921 1.173 uebayasi * 1. lookup entry.
922 1.173 uebayasi * 2. check protection.
923 1.173 uebayasi * 3. adjust fault condition (mainly for simulated fault).
924 1.173 uebayasi * 4. handle needs-copy (lazy amap copy).
925 1.173 uebayasi * 5. establish range of interest for neighbor fault (aka pre-fault).
926 1.173 uebayasi * 6. look up anons (if amap exists).
927 1.173 uebayasi * 7. flush pages (if MADV_SEQUENTIAL)
928 1.173 uebayasi *
929 1.173 uebayasi * => called with nothing locked.
930 1.173 uebayasi * => if we fail (result != 0) we unlock everything.
931 1.177 yamt * => initialize/adjust many members of flt.
932 1.173 uebayasi */
933 1.173 uebayasi
934 1.144 uebayasi static int
935 1.141 uebayasi uvm_fault_check(
936 1.141 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
937 1.177 yamt struct vm_anon ***ranons, bool maxprot)
938 1.141 uebayasi {
939 1.141 uebayasi struct vm_amap *amap;
940 1.141 uebayasi struct uvm_object *uobj;
941 1.137 uebayasi vm_prot_t check_prot;
942 1.137 uebayasi int nback, nforw;
943 1.164 mlelstv UVMHIST_FUNC("uvm_fault_check"); UVMHIST_CALLED(maphist);
944 1.137 uebayasi
945 1.7 mrg /*
946 1.7 mrg * lookup and lock the maps
947 1.7 mrg */
948 1.7 mrg
949 1.141 uebayasi if (uvmfault_lookup(ufi, false) == false) {
950 1.217 rin UVMHIST_LOG(maphist, "<- no mapping @ %#jx", ufi->orig_rvaddr,
951 1.177 yamt 0,0,0);
952 1.141 uebayasi return EFAULT;
953 1.7 mrg }
954 1.7 mrg /* locked: maps(read) */
955 1.7 mrg
956 1.61 thorpej #ifdef DIAGNOSTIC
957 1.141 uebayasi if ((ufi->map->flags & VM_MAP_PAGEABLE) == 0) {
958 1.61 thorpej printf("Page fault on non-pageable map:\n");
959 1.141 uebayasi printf("ufi->map = %p\n", ufi->map);
960 1.141 uebayasi printf("ufi->orig_map = %p\n", ufi->orig_map);
961 1.217 rin printf("ufi->orig_rvaddr = %#lx\n", (u_long) ufi->orig_rvaddr);
962 1.141 uebayasi panic("uvm_fault: (ufi->map->flags & VM_MAP_PAGEABLE) == 0");
963 1.61 thorpej }
964 1.61 thorpej #endif
965 1.58 chs
966 1.7 mrg /*
967 1.7 mrg * check protection
968 1.7 mrg */
969 1.7 mrg
970 1.177 yamt check_prot = maxprot ?
971 1.141 uebayasi ufi->entry->max_protection : ufi->entry->protection;
972 1.141 uebayasi if ((check_prot & flt->access_type) != flt->access_type) {
973 1.7 mrg UVMHIST_LOG(maphist,
974 1.201 pgoyette "<- protection failure (prot=%#jx, access=%#jx)",
975 1.141 uebayasi ufi->entry->protection, flt->access_type, 0, 0);
976 1.141 uebayasi uvmfault_unlockmaps(ufi, false);
977 1.200 christos return EFAULT;
978 1.7 mrg }
979 1.7 mrg
980 1.7 mrg /*
981 1.7 mrg * "enter_prot" is the protection we want to enter the page in at.
982 1.7 mrg * for certain pages (e.g. copy-on-write pages) this protection can
983 1.141 uebayasi * be more strict than ufi->entry->protection. "wired" means either
984 1.7 mrg * the entry is wired or we are fault-wiring the pg.
985 1.7 mrg */
986 1.7 mrg
987 1.141 uebayasi flt->enter_prot = ufi->entry->protection;
988 1.207 chs if (VM_MAPENT_ISWIRED(ufi->entry)) {
989 1.146 uebayasi flt->wire_mapping = true;
990 1.207 chs flt->wire_paging = true;
991 1.207 chs flt->narrow = true;
992 1.207 chs }
993 1.146 uebayasi
994 1.146 uebayasi if (flt->wire_mapping) {
995 1.141 uebayasi flt->access_type = flt->enter_prot; /* full access for wired */
996 1.141 uebayasi flt->cow_now = (check_prot & VM_PROT_WRITE) != 0;
997 1.73 chs } else {
998 1.141 uebayasi flt->cow_now = (flt->access_type & VM_PROT_WRITE) != 0;
999 1.73 chs }
1000 1.7 mrg
1001 1.168 uebayasi flt->promote = false;
1002 1.168 uebayasi
1003 1.7 mrg /*
1004 1.7 mrg * handle "needs_copy" case. if we need to copy the amap we will
1005 1.7 mrg * have to drop our readlock and relock it with a write lock. (we
1006 1.7 mrg * need a write lock to change anything in a map entry [e.g.
1007 1.7 mrg * needs_copy]).
1008 1.7 mrg */
1009 1.7 mrg
1010 1.141 uebayasi if (UVM_ET_ISNEEDSCOPY(ufi->entry)) {
1011 1.141 uebayasi if (flt->cow_now || (ufi->entry->object.uvm_obj == NULL)) {
1012 1.177 yamt KASSERT(!maxprot);
1013 1.7 mrg /* need to clear */
1014 1.7 mrg UVMHIST_LOG(maphist,
1015 1.7 mrg " need to clear needs_copy and refault",0,0,0,0);
1016 1.141 uebayasi uvmfault_unlockmaps(ufi, false);
1017 1.141 uebayasi uvmfault_amapcopy(ufi);
1018 1.213 ad cpu_count(CPU_COUNT_FLTAMCOPY, 1);
1019 1.141 uebayasi return ERESTART;
1020 1.7 mrg
1021 1.7 mrg } else {
1022 1.7 mrg
1023 1.7 mrg /*
1024 1.7 mrg * ensure that we pmap_enter page R/O since
1025 1.7 mrg * needs_copy is still true
1026 1.7 mrg */
1027 1.72 chs
1028 1.141 uebayasi flt->enter_prot &= ~VM_PROT_WRITE;
1029 1.7 mrg }
1030 1.7 mrg }
1031 1.7 mrg
1032 1.7 mrg /*
1033 1.7 mrg * identify the players
1034 1.7 mrg */
1035 1.7 mrg
1036 1.141 uebayasi amap = ufi->entry->aref.ar_amap; /* upper layer */
1037 1.141 uebayasi uobj = ufi->entry->object.uvm_obj; /* lower layer */
1038 1.7 mrg
1039 1.7 mrg /*
1040 1.7 mrg * check for a case 0 fault. if nothing backing the entry then
1041 1.7 mrg * error now.
1042 1.7 mrg */
1043 1.7 mrg
1044 1.7 mrg if (amap == NULL && uobj == NULL) {
1045 1.141 uebayasi uvmfault_unlockmaps(ufi, false);
1046 1.7 mrg UVMHIST_LOG(maphist,"<- no backing store, no overlay",0,0,0,0);
1047 1.141 uebayasi return EFAULT;
1048 1.7 mrg }
1049 1.1 mrg
1050 1.7 mrg /*
1051 1.7 mrg * establish range of interest based on advice from mapper
1052 1.7 mrg * and then clip to fit map entry. note that we only want
1053 1.63 chs * to do this the first time through the fault. if we
1054 1.7 mrg * ReFault we will disable this by setting "narrow" to true.
1055 1.7 mrg */
1056 1.1 mrg
1057 1.141 uebayasi if (flt->narrow == false) {
1058 1.7 mrg
1059 1.7 mrg /* wide fault (!narrow) */
1060 1.141 uebayasi KASSERT(uvmadvice[ufi->entry->advice].advice ==
1061 1.141 uebayasi ufi->entry->advice);
1062 1.141 uebayasi nback = MIN(uvmadvice[ufi->entry->advice].nback,
1063 1.177 yamt (ufi->orig_rvaddr - ufi->entry->start) >> PAGE_SHIFT);
1064 1.141 uebayasi flt->startva = ufi->orig_rvaddr - (nback << PAGE_SHIFT);
1065 1.7 mrg /*
1066 1.7 mrg * note: "-1" because we don't want to count the
1067 1.7 mrg * faulting page as forw
1068 1.7 mrg */
1069 1.177 yamt nforw = MIN(uvmadvice[ufi->entry->advice].nforw,
1070 1.177 yamt ((ufi->entry->end - ufi->orig_rvaddr) >>
1071 1.177 yamt PAGE_SHIFT) - 1);
1072 1.141 uebayasi flt->npages = nback + nforw + 1;
1073 1.141 uebayasi flt->centeridx = nback;
1074 1.7 mrg
1075 1.141 uebayasi flt->narrow = true; /* ensure only once per-fault */
1076 1.7 mrg
1077 1.7 mrg } else {
1078 1.63 chs
1079 1.7 mrg /* narrow fault! */
1080 1.7 mrg nback = nforw = 0;
1081 1.141 uebayasi flt->startva = ufi->orig_rvaddr;
1082 1.141 uebayasi flt->npages = 1;
1083 1.141 uebayasi flt->centeridx = 0;
1084 1.1 mrg
1085 1.7 mrg }
1086 1.131 uebayasi /* offset from entry's start to pgs' start */
1087 1.141 uebayasi const voff_t eoff = flt->startva - ufi->entry->start;
1088 1.1 mrg
1089 1.7 mrg /* locked: maps(read) */
1090 1.201 pgoyette UVMHIST_LOG(maphist, " narrow=%jd, back=%jd, forw=%jd, startva=%#jx",
1091 1.141 uebayasi flt->narrow, nback, nforw, flt->startva);
1092 1.201 pgoyette UVMHIST_LOG(maphist, " entry=%#jx, amap=%#jx, obj=%#jx",
1093 1.201 pgoyette (uintptr_t)ufi->entry, (uintptr_t)amap, (uintptr_t)uobj, 0);
1094 1.1 mrg
1095 1.7 mrg /*
1096 1.7 mrg * if we've got an amap, lock it and extract current anons.
1097 1.7 mrg */
1098 1.7 mrg
1099 1.7 mrg if (amap) {
1100 1.216 ad amap_lock(amap, RW_WRITER);
1101 1.141 uebayasi amap_lookups(&ufi->entry->aref, eoff, *ranons, flt->npages);
1102 1.7 mrg } else {
1103 1.141 uebayasi *ranons = NULL; /* to be safe */
1104 1.7 mrg }
1105 1.7 mrg
1106 1.7 mrg /* locked: maps(read), amap(if there) */
1107 1.216 ad KASSERT(amap == NULL || rw_write_held(amap->am_lock));
1108 1.7 mrg
1109 1.7 mrg /*
1110 1.7 mrg * for MADV_SEQUENTIAL mappings we want to deactivate the back pages
1111 1.7 mrg * now and then forget about them (for the rest of the fault).
1112 1.7 mrg */
1113 1.7 mrg
1114 1.141 uebayasi if (ufi->entry->advice == MADV_SEQUENTIAL && nback != 0) {
1115 1.7 mrg
1116 1.7 mrg UVMHIST_LOG(maphist, " MADV_SEQUENTIAL: flushing backpages",
1117 1.7 mrg 0,0,0,0);
1118 1.7 mrg /* flush back-page anons? */
1119 1.63 chs if (amap)
1120 1.141 uebayasi uvmfault_anonflush(*ranons, nback);
1121 1.7 mrg
1122 1.7 mrg /* flush object? */
1123 1.7 mrg if (uobj) {
1124 1.137 uebayasi voff_t uoff;
1125 1.137 uebayasi
1126 1.141 uebayasi uoff = ufi->entry->offset + eoff;
1127 1.216 ad rw_enter(uobj->vmobjlock, RW_WRITER);
1128 1.90 yamt (void) (uobj->pgops->pgo_put)(uobj, uoff, uoff +
1129 1.15 chs (nback << PAGE_SHIFT), PGO_DEACTIVATE);
1130 1.7 mrg }
1131 1.7 mrg
1132 1.7 mrg /* now forget about the backpages */
1133 1.7 mrg if (amap)
1134 1.141 uebayasi *ranons += nback;
1135 1.141 uebayasi flt->startva += (nback << PAGE_SHIFT);
1136 1.141 uebayasi flt->npages -= nback;
1137 1.141 uebayasi flt->centeridx = 0;
1138 1.7 mrg }
1139 1.137 uebayasi /*
1140 1.137 uebayasi * => startva is fixed
1141 1.137 uebayasi * => npages is fixed
1142 1.137 uebayasi */
1143 1.177 yamt KASSERT(flt->startva <= ufi->orig_rvaddr);
1144 1.177 yamt KASSERT(ufi->orig_rvaddr + ufi->orig_size <=
1145 1.177 yamt flt->startva + (flt->npages << PAGE_SHIFT));
1146 1.141 uebayasi return 0;
1147 1.141 uebayasi }
1148 1.141 uebayasi
1149 1.173 uebayasi /*
1150 1.173 uebayasi * uvm_fault_upper_lookup: look up existing h/w mapping and amap.
1151 1.173 uebayasi *
1152 1.173 uebayasi * iterate range of interest:
1153 1.173 uebayasi * 1. check if h/w mapping exists. if yes, we don't care
1154 1.173 uebayasi * 2. check if anon exists. if not, page is lower.
1155 1.173 uebayasi * 3. if anon exists, enter h/w mapping for neighbors.
1156 1.173 uebayasi *
1157 1.173 uebayasi * => called with amap locked (if exists).
1158 1.173 uebayasi */
1159 1.173 uebayasi
1160 1.144 uebayasi static int
1161 1.141 uebayasi uvm_fault_upper_lookup(
1162 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
1163 1.141 uebayasi struct vm_anon **anons, struct vm_page **pages)
1164 1.141 uebayasi {
1165 1.141 uebayasi struct vm_amap *amap = ufi->entry->aref.ar_amap;
1166 1.137 uebayasi int lcv;
1167 1.137 uebayasi vaddr_t currva;
1168 1.195 martin bool shadowed __unused;
1169 1.220 ad bool entered;
1170 1.164 mlelstv UVMHIST_FUNC("uvm_fault_upper_lookup"); UVMHIST_CALLED(maphist);
1171 1.7 mrg
1172 1.7 mrg /* locked: maps(read), amap(if there) */
1173 1.216 ad KASSERT(amap == NULL || rw_write_held(amap->am_lock));
1174 1.1 mrg
1175 1.7 mrg /*
1176 1.7 mrg * map in the backpages and frontpages we found in the amap in hopes
1177 1.7 mrg * of preventing future faults. we also init the pages[] array as
1178 1.7 mrg * we go.
1179 1.7 mrg */
1180 1.7 mrg
1181 1.141 uebayasi currva = flt->startva;
1182 1.144 uebayasi shadowed = false;
1183 1.220 ad entered = false;
1184 1.163 uebayasi for (lcv = 0; lcv < flt->npages; lcv++, currva += PAGE_SIZE) {
1185 1.7 mrg /*
1186 1.7 mrg * unmapped or center page. check if any anon at this level.
1187 1.7 mrg */
1188 1.7 mrg if (amap == NULL || anons[lcv] == NULL) {
1189 1.7 mrg pages[lcv] = NULL;
1190 1.7 mrg continue;
1191 1.7 mrg }
1192 1.7 mrg
1193 1.7 mrg /*
1194 1.7 mrg * check for present page and map if possible. re-activate it.
1195 1.7 mrg */
1196 1.7 mrg
1197 1.7 mrg pages[lcv] = PGO_DONTCARE;
1198 1.177 yamt if (lcv == flt->centeridx) { /* save center for later! */
1199 1.144 uebayasi shadowed = true;
1200 1.186 rmind continue;
1201 1.186 rmind }
1202 1.186 rmind
1203 1.186 rmind struct vm_anon *anon = anons[lcv];
1204 1.186 rmind struct vm_page *pg = anon->an_page;
1205 1.161 uebayasi
1206 1.186 rmind KASSERT(anon->an_lock == amap->am_lock);
1207 1.172 uebayasi
1208 1.220 ad /*
1209 1.220 ad * ignore loaned and busy pages.
1210 1.220 ad * don't play with VAs that are already mapped.
1211 1.220 ad */
1212 1.220 ad
1213 1.220 ad if (pg && pg->loan_count == 0 && (pg->flags & PG_BUSY) == 0 &&
1214 1.220 ad !pmap_extract(ufi->orig_map->pmap, currva, NULL)) {
1215 1.186 rmind uvm_fault_upper_neighbor(ufi, flt, currva,
1216 1.186 rmind pg, anon->an_ref > 1);
1217 1.220 ad entered = true;
1218 1.7 mrg }
1219 1.151 uebayasi }
1220 1.220 ad if (entered) {
1221 1.220 ad pmap_update(ufi->orig_map->pmap);
1222 1.220 ad }
1223 1.151 uebayasi
1224 1.160 uebayasi /* locked: maps(read), amap(if there) */
1225 1.216 ad KASSERT(amap == NULL || rw_write_held(amap->am_lock));
1226 1.160 uebayasi /* (shadowed == true) if there is an anon at the faulting address */
1227 1.201 pgoyette UVMHIST_LOG(maphist, " shadowed=%jd, will_get=%jd", shadowed,
1228 1.164 mlelstv (ufi->entry->object.uvm_obj && shadowed != false),0,0);
1229 1.160 uebayasi
1230 1.160 uebayasi /*
1231 1.160 uebayasi * note that if we are really short of RAM we could sleep in the above
1232 1.160 uebayasi * call to pmap_enter with everything locked. bad?
1233 1.160 uebayasi *
1234 1.160 uebayasi * XXX Actually, that is bad; pmap_enter() should just fail in that
1235 1.160 uebayasi * XXX case. --thorpej
1236 1.160 uebayasi */
1237 1.151 uebayasi
1238 1.151 uebayasi return 0;
1239 1.151 uebayasi }
1240 1.151 uebayasi
1241 1.173 uebayasi /*
1242 1.202 chs * uvm_fault_upper_neighbor: enter single upper neighbor page.
1243 1.173 uebayasi *
1244 1.173 uebayasi * => called with amap and anon locked.
1245 1.173 uebayasi */
1246 1.173 uebayasi
1247 1.151 uebayasi static void
1248 1.163 uebayasi uvm_fault_upper_neighbor(
1249 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
1250 1.161 uebayasi vaddr_t currva, struct vm_page *pg, bool readonly)
1251 1.151 uebayasi {
1252 1.164 mlelstv UVMHIST_FUNC("uvm_fault_upper_neighbor"); UVMHIST_CALLED(maphist);
1253 1.151 uebayasi
1254 1.173 uebayasi /* locked: amap, anon */
1255 1.173 uebayasi
1256 1.215 ad KASSERT(pg->uobject == NULL);
1257 1.215 ad KASSERT(pg->uanon != NULL);
1258 1.216 ad KASSERT(rw_write_held(pg->uanon->an_lock));
1259 1.215 ad KASSERT(uvm_pagegetdirty(pg) != UVM_PAGE_STATUS_CLEAN);
1260 1.215 ad
1261 1.214 ad uvm_pagelock(pg);
1262 1.161 uebayasi uvm_pageenqueue(pg);
1263 1.214 ad uvm_pageunlock(pg);
1264 1.152 uebayasi UVMHIST_LOG(maphist,
1265 1.201 pgoyette " MAPPING: n anon: pm=%#jx, va=%#jx, pg=%#jx",
1266 1.201 pgoyette (uintptr_t)ufi->orig_map->pmap, currva, (uintptr_t)pg, 0);
1267 1.213 ad cpu_count(CPU_COUNT_FLTNAMAP, 1);
1268 1.152 uebayasi
1269 1.152 uebayasi /*
1270 1.161 uebayasi * Since this page isn't the page that's actually faulting,
1271 1.161 uebayasi * ignore pmap_enter() failures; it's not critical that we
1272 1.161 uebayasi * enter these right now.
1273 1.152 uebayasi */
1274 1.152 uebayasi
1275 1.152 uebayasi (void) pmap_enter(ufi->orig_map->pmap, currva,
1276 1.161 uebayasi VM_PAGE_TO_PHYS(pg),
1277 1.161 uebayasi readonly ? (flt->enter_prot & ~VM_PROT_WRITE) :
1278 1.152 uebayasi flt->enter_prot,
1279 1.154 uebayasi PMAP_CANFAIL | (flt->wire_mapping ? PMAP_WIRED : 0));
1280 1.151 uebayasi }
1281 1.151 uebayasi
1282 1.173 uebayasi /*
1283 1.173 uebayasi * uvm_fault_upper: handle upper fault.
1284 1.173 uebayasi *
1285 1.173 uebayasi * 1. acquire anon lock.
1286 1.173 uebayasi * 2. get anon. let uvmfault_anonget do the dirty work.
1287 1.173 uebayasi * 3. handle loan.
1288 1.173 uebayasi * 4. dispatch direct or promote handlers.
1289 1.173 uebayasi */
1290 1.134 uebayasi
1291 1.138 uebayasi static int
1292 1.138 uebayasi uvm_fault_upper(
1293 1.140 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
1294 1.148 uebayasi struct vm_anon **anons)
1295 1.138 uebayasi {
1296 1.148 uebayasi struct vm_amap * const amap = ufi->entry->aref.ar_amap;
1297 1.148 uebayasi struct vm_anon * const anon = anons[flt->centeridx];
1298 1.148 uebayasi struct uvm_object *uobj;
1299 1.138 uebayasi int error;
1300 1.164 mlelstv UVMHIST_FUNC("uvm_fault_upper"); UVMHIST_CALLED(maphist);
1301 1.137 uebayasi
1302 1.186 rmind /* locked: maps(read), amap, anon */
1303 1.216 ad KASSERT(rw_write_held(amap->am_lock));
1304 1.186 rmind KASSERT(anon->an_lock == amap->am_lock);
1305 1.7 mrg
1306 1.7 mrg /*
1307 1.7 mrg * handle case 1: fault on an anon in our amap
1308 1.7 mrg */
1309 1.7 mrg
1310 1.201 pgoyette UVMHIST_LOG(maphist, " case 1 fault: anon=%#jx",
1311 1.201 pgoyette (uintptr_t)anon, 0, 0, 0);
1312 1.7 mrg
1313 1.7 mrg /*
1314 1.7 mrg * no matter if we have case 1A or case 1B we are going to need to
1315 1.7 mrg * have the anon's memory resident. ensure that now.
1316 1.7 mrg */
1317 1.7 mrg
1318 1.7 mrg /*
1319 1.47 chs * let uvmfault_anonget do the dirty work.
1320 1.51 thorpej * if it fails (!OK) it will unlock everything for us.
1321 1.47 chs * if it succeeds, locks are still valid and locked.
1322 1.7 mrg * also, if it is OK, then the anon's page is on the queues.
1323 1.7 mrg * if the page is on loan from a uvm_object, then anonget will
1324 1.7 mrg * lock that object for us if it does not fail.
1325 1.7 mrg */
1326 1.7 mrg
1327 1.138 uebayasi error = uvmfault_anonget(ufi, amap, anon);
1328 1.58 chs switch (error) {
1329 1.57 chs case 0:
1330 1.63 chs break;
1331 1.7 mrg
1332 1.57 chs case ERESTART:
1333 1.139 uebayasi return ERESTART;
1334 1.7 mrg
1335 1.57 chs case EAGAIN:
1336 1.128 pooka kpause("fltagain1", false, hz/2, NULL);
1337 1.139 uebayasi return ERESTART;
1338 1.51 thorpej
1339 1.51 thorpej default:
1340 1.138 uebayasi return error;
1341 1.1 mrg }
1342 1.7 mrg
1343 1.7 mrg /*
1344 1.7 mrg * uobj is non null if the page is on loan from an object (i.e. uobj)
1345 1.7 mrg */
1346 1.7 mrg
1347 1.94 yamt uobj = anon->an_page->uobject; /* locked by anonget if !NULL */
1348 1.7 mrg
1349 1.7 mrg /* locked: maps(read), amap, anon, uobj(if one) */
1350 1.216 ad KASSERT(rw_write_held(amap->am_lock));
1351 1.186 rmind KASSERT(anon->an_lock == amap->am_lock);
1352 1.216 ad KASSERT(uobj == NULL || rw_write_held(uobj->vmobjlock));
1353 1.7 mrg
1354 1.7 mrg /*
1355 1.63 chs * special handling for loaned pages
1356 1.7 mrg */
1357 1.52 chs
1358 1.94 yamt if (anon->an_page->loan_count) {
1359 1.148 uebayasi error = uvm_fault_upper_loan(ufi, flt, anon, &uobj);
1360 1.148 uebayasi if (error != 0)
1361 1.148 uebayasi return error;
1362 1.148 uebayasi }
1363 1.160 uebayasi
1364 1.160 uebayasi /*
1365 1.160 uebayasi * if we are case 1B then we will need to allocate a new blank
1366 1.160 uebayasi * anon to transfer the data into. note that we have a lock
1367 1.160 uebayasi * on anon, so no one can busy or release the page until we are done.
1368 1.160 uebayasi * also note that the ref count can't drop to zero here because
1369 1.160 uebayasi * it is > 1 and we are only dropping one ref.
1370 1.160 uebayasi *
1371 1.160 uebayasi * in the (hopefully very rare) case that we are out of RAM we
1372 1.160 uebayasi * will unlock, wait for more RAM, and refault.
1373 1.160 uebayasi *
1374 1.160 uebayasi * if we are out of anon VM we kill the process (XXX: could wait?).
1375 1.160 uebayasi */
1376 1.160 uebayasi
1377 1.160 uebayasi if (flt->cow_now && anon->an_ref > 1) {
1378 1.168 uebayasi flt->promote = true;
1379 1.160 uebayasi error = uvm_fault_upper_promote(ufi, flt, uobj, anon);
1380 1.160 uebayasi } else {
1381 1.160 uebayasi error = uvm_fault_upper_direct(ufi, flt, uobj, anon);
1382 1.160 uebayasi }
1383 1.160 uebayasi return error;
1384 1.148 uebayasi }
1385 1.148 uebayasi
1386 1.173 uebayasi /*
1387 1.173 uebayasi * uvm_fault_upper_loan: handle loaned upper page.
1388 1.173 uebayasi *
1389 1.177 yamt * 1. if not cow'ing now, simply adjust flt->enter_prot.
1390 1.173 uebayasi * 2. if cow'ing now, and if ref count is 1, break loan.
1391 1.173 uebayasi */
1392 1.173 uebayasi
1393 1.148 uebayasi static int
1394 1.148 uebayasi uvm_fault_upper_loan(
1395 1.148 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
1396 1.148 uebayasi struct vm_anon *anon, struct uvm_object **ruobj)
1397 1.148 uebayasi {
1398 1.149 uebayasi struct vm_amap * const amap = ufi->entry->aref.ar_amap;
1399 1.151 uebayasi int error = 0;
1400 1.173 uebayasi UVMHIST_FUNC("uvm_fault_upper_loan"); UVMHIST_CALLED(maphist);
1401 1.149 uebayasi
1402 1.149 uebayasi if (!flt->cow_now) {
1403 1.7 mrg
1404 1.149 uebayasi /*
1405 1.149 uebayasi * for read faults on loaned pages we just cap the
1406 1.149 uebayasi * protection at read-only.
1407 1.149 uebayasi */
1408 1.63 chs
1409 1.149 uebayasi flt->enter_prot = flt->enter_prot & ~VM_PROT_WRITE;
1410 1.7 mrg
1411 1.149 uebayasi } else {
1412 1.149 uebayasi /*
1413 1.149 uebayasi * note that we can't allow writes into a loaned page!
1414 1.149 uebayasi *
1415 1.149 uebayasi * if we have a write fault on a loaned page in an
1416 1.149 uebayasi * anon then we need to look at the anon's ref count.
1417 1.149 uebayasi * if it is greater than one then we are going to do
1418 1.149 uebayasi * a normal copy-on-write fault into a new anon (this
1419 1.149 uebayasi * is not a problem). however, if the reference count
1420 1.149 uebayasi * is one (a case where we would normally allow a
1421 1.149 uebayasi * write directly to the page) then we need to kill
1422 1.149 uebayasi * the loan before we continue.
1423 1.149 uebayasi */
1424 1.149 uebayasi
1425 1.149 uebayasi /* >1 case is already ok */
1426 1.149 uebayasi if (anon->an_ref == 1) {
1427 1.155 uebayasi error = uvm_loanbreak_anon(anon, *ruobj);
1428 1.151 uebayasi if (error != 0) {
1429 1.186 rmind uvmfault_unlockall(ufi, amap, *ruobj);
1430 1.151 uebayasi uvm_wait("flt_noram2");
1431 1.151 uebayasi return ERESTART;
1432 1.151 uebayasi }
1433 1.206 msaitoh /* if we were a loan receiver uobj is gone */
1434 1.155 uebayasi if (*ruobj)
1435 1.155 uebayasi *ruobj = NULL;
1436 1.151 uebayasi }
1437 1.151 uebayasi }
1438 1.151 uebayasi return error;
1439 1.151 uebayasi }
1440 1.151 uebayasi
1441 1.173 uebayasi /*
1442 1.173 uebayasi * uvm_fault_upper_promote: promote upper page.
1443 1.173 uebayasi *
1444 1.173 uebayasi * 1. call uvmfault_promote.
1445 1.173 uebayasi * 2. enqueue page.
1446 1.173 uebayasi * 3. deref.
1447 1.173 uebayasi * 4. pass page to uvm_fault_upper_enter.
1448 1.173 uebayasi */
1449 1.173 uebayasi
1450 1.148 uebayasi static int
1451 1.148 uebayasi uvm_fault_upper_promote(
1452 1.148 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
1453 1.148 uebayasi struct uvm_object *uobj, struct vm_anon *anon)
1454 1.148 uebayasi {
1455 1.149 uebayasi struct vm_anon * const oanon = anon;
1456 1.149 uebayasi struct vm_page *pg;
1457 1.149 uebayasi int error;
1458 1.164 mlelstv UVMHIST_FUNC("uvm_fault_upper_promote"); UVMHIST_CALLED(maphist);
1459 1.149 uebayasi
1460 1.149 uebayasi UVMHIST_LOG(maphist, " case 1B: COW fault",0,0,0,0);
1461 1.213 ad cpu_count(CPU_COUNT_FLT_ACOW, 1);
1462 1.149 uebayasi
1463 1.177 yamt error = uvmfault_promote(ufi, oanon, PGO_DONTCARE, &anon,
1464 1.177 yamt &flt->anon_spare);
1465 1.149 uebayasi switch (error) {
1466 1.149 uebayasi case 0:
1467 1.149 uebayasi break;
1468 1.149 uebayasi case ERESTART:
1469 1.149 uebayasi return ERESTART;
1470 1.149 uebayasi default:
1471 1.149 uebayasi return error;
1472 1.149 uebayasi }
1473 1.7 mrg
1474 1.186 rmind KASSERT(anon == NULL || anon->an_lock == oanon->an_lock);
1475 1.186 rmind
1476 1.149 uebayasi pg = anon->an_page;
1477 1.212 ad /* uvm_fault_upper_done will activate the page */
1478 1.214 ad uvm_pagelock(pg);
1479 1.212 ad uvm_pageenqueue(pg);
1480 1.214 ad uvm_pageunlock(pg);
1481 1.149 uebayasi pg->flags &= ~(PG_BUSY|PG_FAKE);
1482 1.149 uebayasi UVM_PAGE_OWN(pg, NULL);
1483 1.7 mrg
1484 1.149 uebayasi /* deref: can not drop to zero here by defn! */
1485 1.183 yamt KASSERT(oanon->an_ref > 1);
1486 1.149 uebayasi oanon->an_ref--;
1487 1.53 thorpej
1488 1.149 uebayasi /*
1489 1.149 uebayasi * note: oanon is still locked, as is the new anon. we
1490 1.149 uebayasi * need to check for this later when we unlock oanon; if
1491 1.149 uebayasi * oanon != anon, we'll have to unlock anon, too.
1492 1.149 uebayasi */
1493 1.7 mrg
1494 1.149 uebayasi return uvm_fault_upper_enter(ufi, flt, uobj, anon, pg, oanon);
1495 1.148 uebayasi }
1496 1.148 uebayasi
1497 1.173 uebayasi /*
1498 1.173 uebayasi * uvm_fault_upper_direct: handle direct fault.
1499 1.173 uebayasi */
1500 1.173 uebayasi
1501 1.148 uebayasi static int
1502 1.148 uebayasi uvm_fault_upper_direct(
1503 1.148 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
1504 1.148 uebayasi struct uvm_object *uobj, struct vm_anon *anon)
1505 1.148 uebayasi {
1506 1.149 uebayasi struct vm_anon * const oanon = anon;
1507 1.149 uebayasi struct vm_page *pg;
1508 1.173 uebayasi UVMHIST_FUNC("uvm_fault_upper_direct"); UVMHIST_CALLED(maphist);
1509 1.52 chs
1510 1.213 ad cpu_count(CPU_COUNT_FLT_ANON, 1);
1511 1.149 uebayasi pg = anon->an_page;
1512 1.149 uebayasi if (anon->an_ref > 1) /* disallow writes to ref > 1 anons */
1513 1.149 uebayasi flt->enter_prot = flt->enter_prot & ~VM_PROT_WRITE;
1514 1.7 mrg
1515 1.149 uebayasi return uvm_fault_upper_enter(ufi, flt, uobj, anon, pg, oanon);
1516 1.148 uebayasi }
1517 1.148 uebayasi
1518 1.173 uebayasi /*
1519 1.173 uebayasi * uvm_fault_upper_enter: enter h/w mapping of upper page.
1520 1.173 uebayasi */
1521 1.173 uebayasi
1522 1.148 uebayasi static int
1523 1.148 uebayasi uvm_fault_upper_enter(
1524 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
1525 1.148 uebayasi struct uvm_object *uobj, struct vm_anon *anon, struct vm_page *pg,
1526 1.148 uebayasi struct vm_anon *oanon)
1527 1.148 uebayasi {
1528 1.202 chs struct pmap *pmap = ufi->orig_map->pmap;
1529 1.202 chs vaddr_t va = ufi->orig_rvaddr;
1530 1.148 uebayasi struct vm_amap * const amap = ufi->entry->aref.ar_amap;
1531 1.164 mlelstv UVMHIST_FUNC("uvm_fault_upper_enter"); UVMHIST_CALLED(maphist);
1532 1.7 mrg
1533 1.173 uebayasi /* locked: maps(read), amap, oanon, anon(if different from oanon) */
1534 1.216 ad KASSERT(rw_write_held(amap->am_lock));
1535 1.186 rmind KASSERT(anon->an_lock == amap->am_lock);
1536 1.186 rmind KASSERT(oanon->an_lock == amap->am_lock);
1537 1.216 ad KASSERT(uobj == NULL || rw_write_held(uobj->vmobjlock));
1538 1.215 ad KASSERT(uvm_pagegetdirty(pg) != UVM_PAGE_STATUS_CLEAN);
1539 1.7 mrg
1540 1.7 mrg /*
1541 1.69 chs * now map the page in.
1542 1.7 mrg */
1543 1.7 mrg
1544 1.177 yamt UVMHIST_LOG(maphist,
1545 1.201 pgoyette " MAPPING: anon: pm=%#jx, va=%#jx, pg=%#jx, promote=%jd",
1546 1.202 chs (uintptr_t)pmap, va, (uintptr_t)pg, flt->promote);
1547 1.202 chs if (pmap_enter(pmap, va, VM_PAGE_TO_PHYS(pg),
1548 1.177 yamt flt->enter_prot, flt->access_type | PMAP_CANFAIL |
1549 1.177 yamt (flt->wire_mapping ? PMAP_WIRED : 0)) != 0) {
1550 1.69 chs
1551 1.46 thorpej /*
1552 1.202 chs * If pmap_enter() fails, it must not leave behind an existing
1553 1.202 chs * pmap entry. In particular, a now-stale entry for a different
1554 1.202 chs * page would leave the pmap inconsistent with the vm_map.
1555 1.202 chs * This is not to imply that pmap_enter() should remove an
1556 1.202 chs * existing mapping in such a situation (since that could create
1557 1.202 chs * different problems, eg. if the existing mapping is wired),
1558 1.202 chs * but rather that the pmap should be designed such that it
1559 1.202 chs * never needs to fail when the new mapping is replacing an
1560 1.202 chs * existing mapping and the new page has no existing mappings.
1561 1.202 chs */
1562 1.202 chs
1563 1.202 chs KASSERT(!pmap_extract(pmap, va, NULL));
1564 1.202 chs
1565 1.202 chs /*
1566 1.46 thorpej * No need to undo what we did; we can simply think of
1567 1.46 thorpej * this as the pmap throwing away the mapping information.
1568 1.46 thorpej *
1569 1.46 thorpej * We do, however, have to go through the ReFault path,
1570 1.46 thorpej * as the map may change while we're asleep.
1571 1.46 thorpej */
1572 1.69 chs
1573 1.186 rmind uvmfault_unlockall(ufi, amap, uobj);
1574 1.92 yamt if (!uvm_reclaimable()) {
1575 1.46 thorpej UVMHIST_LOG(maphist,
1576 1.46 thorpej "<- failed. out of VM",0,0,0,0);
1577 1.46 thorpej /* XXX instrumentation */
1578 1.148 uebayasi return ENOMEM;
1579 1.46 thorpej }
1580 1.46 thorpej /* XXX instrumentation */
1581 1.46 thorpej uvm_wait("flt_pmfail1");
1582 1.139 uebayasi return ERESTART;
1583 1.46 thorpej }
1584 1.7 mrg
1585 1.177 yamt uvm_fault_upper_done(ufi, flt, anon, pg);
1586 1.169 uebayasi
1587 1.169 uebayasi /*
1588 1.169 uebayasi * done case 1! finish up by unlocking everything and returning success
1589 1.169 uebayasi */
1590 1.169 uebayasi
1591 1.202 chs pmap_update(pmap);
1592 1.186 rmind uvmfault_unlockall(ufi, amap, uobj);
1593 1.169 uebayasi return 0;
1594 1.148 uebayasi }
1595 1.148 uebayasi
1596 1.173 uebayasi /*
1597 1.173 uebayasi * uvm_fault_upper_done: queue upper center page.
1598 1.173 uebayasi */
1599 1.173 uebayasi
1600 1.169 uebayasi static void
1601 1.148 uebayasi uvm_fault_upper_done(
1602 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
1603 1.177 yamt struct vm_anon *anon, struct vm_page *pg)
1604 1.148 uebayasi {
1605 1.174 rmind const bool wire_paging = flt->wire_paging;
1606 1.174 rmind
1607 1.173 uebayasi UVMHIST_FUNC("uvm_fault_upper_done"); UVMHIST_CALLED(maphist);
1608 1.148 uebayasi
1609 1.7 mrg /*
1610 1.46 thorpej * ... update the page queues.
1611 1.7 mrg */
1612 1.7 mrg
1613 1.214 ad uvm_pagelock(pg);
1614 1.174 rmind if (wire_paging) {
1615 1.8 chuck uvm_pagewire(pg);
1616 1.215 ad } else {
1617 1.215 ad uvm_pageactivate(pg);
1618 1.215 ad }
1619 1.215 ad uvm_pageunlock(pg);
1620 1.29 chs
1621 1.215 ad if (wire_paging) {
1622 1.29 chs /*
1623 1.29 chs * since the now-wired page cannot be paged out,
1624 1.29 chs * release its swap resources for others to use.
1625 1.215 ad * and since an anon with no swap cannot be clean,
1626 1.215 ad * mark it dirty now.
1627 1.29 chs */
1628 1.29 chs
1629 1.215 ad uvm_pagemarkdirty(pg, UVM_PAGE_STATUS_DIRTY);
1630 1.174 rmind uvm_anon_dropswap(anon);
1631 1.174 rmind }
1632 1.138 uebayasi }
1633 1.1 mrg
1634 1.173 uebayasi /*
1635 1.173 uebayasi * uvm_fault_lower: handle lower fault.
1636 1.173 uebayasi *
1637 1.173 uebayasi * 1. check uobj
1638 1.173 uebayasi * 1.1. if null, ZFOD.
1639 1.173 uebayasi * 1.2. if not null, look up unnmapped neighbor pages.
1640 1.173 uebayasi * 2. for center page, check if promote.
1641 1.173 uebayasi * 2.1. ZFOD always needs promotion.
1642 1.173 uebayasi * 2.2. other uobjs, when entry is marked COW (usually MAP_PRIVATE vnode).
1643 1.173 uebayasi * 3. if uobj is not ZFOD and page is not found, do i/o.
1644 1.173 uebayasi * 4. dispatch either direct / promote fault.
1645 1.173 uebayasi */
1646 1.173 uebayasi
1647 1.138 uebayasi static int
1648 1.173 uebayasi uvm_fault_lower(
1649 1.140 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
1650 1.173 uebayasi struct vm_page **pages)
1651 1.138 uebayasi {
1652 1.198 riastrad struct vm_amap *amap __diagused = ufi->entry->aref.ar_amap;
1653 1.173 uebayasi struct uvm_object *uobj = ufi->entry->object.uvm_obj;
1654 1.173 uebayasi struct vm_page *uobjpage;
1655 1.138 uebayasi int error;
1656 1.173 uebayasi UVMHIST_FUNC("uvm_fault_lower"); UVMHIST_CALLED(maphist);
1657 1.173 uebayasi
1658 1.7 mrg /*
1659 1.173 uebayasi * now, if the desired page is not shadowed by the amap and we have
1660 1.173 uebayasi * a backing object that does not have a special fault routine, then
1661 1.173 uebayasi * we ask (with pgo_get) the object for resident pages that we care
1662 1.173 uebayasi * about and attempt to map them in. we do not let pgo_get block
1663 1.173 uebayasi * (PGO_LOCKED).
1664 1.173 uebayasi */
1665 1.173 uebayasi
1666 1.173 uebayasi if (uobj == NULL) {
1667 1.173 uebayasi /* zero fill; don't care neighbor pages */
1668 1.173 uebayasi uobjpage = NULL;
1669 1.173 uebayasi } else {
1670 1.173 uebayasi uvm_fault_lower_lookup(ufi, flt, pages);
1671 1.173 uebayasi uobjpage = pages[flt->centeridx];
1672 1.173 uebayasi }
1673 1.173 uebayasi
1674 1.173 uebayasi /*
1675 1.173 uebayasi * note that at this point we are done with any front or back pages.
1676 1.173 uebayasi * we are now going to focus on the center page (i.e. the one we've
1677 1.173 uebayasi * faulted on). if we have faulted on the upper (anon) layer
1678 1.173 uebayasi * [i.e. case 1], then the anon we want is anons[centeridx] (we have
1679 1.173 uebayasi * not touched it yet). if we have faulted on the bottom (uobj)
1680 1.173 uebayasi * layer [i.e. case 2] and the page was both present and available,
1681 1.173 uebayasi * then we've got a pointer to it as "uobjpage" and we've already
1682 1.173 uebayasi * made it BUSY.
1683 1.7 mrg */
1684 1.7 mrg
1685 1.7 mrg /*
1686 1.7 mrg * locked:
1687 1.7 mrg * maps(read), amap(if there), uobj(if !null), uobjpage(if !null)
1688 1.7 mrg */
1689 1.216 ad KASSERT(amap == NULL || rw_write_held(amap->am_lock));
1690 1.216 ad KASSERT(uobj == NULL || rw_write_held(uobj->vmobjlock));
1691 1.120 ad KASSERT(uobjpage == NULL || (uobjpage->flags & PG_BUSY) != 0);
1692 1.7 mrg
1693 1.7 mrg /*
1694 1.7 mrg * note that uobjpage can not be PGO_DONTCARE at this point. we now
1695 1.7 mrg * set uobjpage to PGO_DONTCARE if we are doing a zero fill. if we
1696 1.7 mrg * have a backing object, check and see if we are going to promote
1697 1.7 mrg * the data up to an anon during the fault.
1698 1.7 mrg */
1699 1.7 mrg
1700 1.7 mrg if (uobj == NULL) {
1701 1.63 chs uobjpage = PGO_DONTCARE;
1702 1.168 uebayasi flt->promote = true; /* always need anon here */
1703 1.7 mrg } else {
1704 1.52 chs KASSERT(uobjpage != PGO_DONTCARE);
1705 1.168 uebayasi flt->promote = flt->cow_now && UVM_ET_ISCOPYONWRITE(ufi->entry);
1706 1.7 mrg }
1707 1.201 pgoyette UVMHIST_LOG(maphist, " case 2 fault: promote=%jd, zfill=%jd",
1708 1.168 uebayasi flt->promote, (uobj == NULL), 0,0);
1709 1.1 mrg
1710 1.7 mrg /*
1711 1.9 chuck * if uobjpage is not null then we do not need to do I/O to get the
1712 1.9 chuck * uobjpage.
1713 1.9 chuck *
1714 1.63 chs * if uobjpage is null, then we need to unlock and ask the pager to
1715 1.7 mrg * get the data for us. once we have the data, we need to reverify
1716 1.7 mrg * the state the world. we are currently not holding any resources.
1717 1.7 mrg */
1718 1.1 mrg
1719 1.9 chuck if (uobjpage) {
1720 1.9 chuck /* update rusage counters */
1721 1.124 ad curlwp->l_ru.ru_minflt++;
1722 1.9 chuck } else {
1723 1.163 uebayasi error = uvm_fault_lower_io(ufi, flt, &uobj, &uobjpage);
1724 1.148 uebayasi if (error != 0)
1725 1.148 uebayasi return error;
1726 1.148 uebayasi }
1727 1.160 uebayasi
1728 1.160 uebayasi /*
1729 1.160 uebayasi * locked:
1730 1.160 uebayasi * maps(read), amap(if !null), uobj(if !null), uobjpage(if uobj)
1731 1.160 uebayasi */
1732 1.216 ad KASSERT(amap == NULL || rw_write_held(amap->am_lock));
1733 1.216 ad KASSERT(uobj == NULL || rw_write_held(uobj->vmobjlock));
1734 1.160 uebayasi KASSERT(uobj == NULL || (uobjpage->flags & PG_BUSY) != 0);
1735 1.160 uebayasi
1736 1.160 uebayasi /*
1737 1.160 uebayasi * notes:
1738 1.160 uebayasi * - at this point uobjpage can not be NULL
1739 1.160 uebayasi * - at this point uobjpage can not be PG_RELEASED (since we checked
1740 1.160 uebayasi * for it above)
1741 1.218 ad * - at this point uobjpage could be waited on (handle later)
1742 1.160 uebayasi */
1743 1.160 uebayasi
1744 1.177 yamt KASSERT(uobjpage != NULL);
1745 1.160 uebayasi KASSERT(uobj == NULL || uobj == uobjpage->uobject);
1746 1.160 uebayasi KASSERT(uobj == NULL || !UVM_OBJ_IS_CLEAN(uobjpage->uobject) ||
1747 1.215 ad uvm_pagegetdirty(uobjpage) == UVM_PAGE_STATUS_CLEAN);
1748 1.160 uebayasi
1749 1.177 yamt if (!flt->promote) {
1750 1.163 uebayasi error = uvm_fault_lower_direct(ufi, flt, uobj, uobjpage);
1751 1.160 uebayasi } else {
1752 1.163 uebayasi error = uvm_fault_lower_promote(ufi, flt, uobj, uobjpage);
1753 1.160 uebayasi }
1754 1.160 uebayasi return error;
1755 1.148 uebayasi }
1756 1.148 uebayasi
1757 1.173 uebayasi /*
1758 1.173 uebayasi * uvm_fault_lower_lookup: look up on-memory uobj pages.
1759 1.173 uebayasi *
1760 1.173 uebayasi * 1. get on-memory pages.
1761 1.173 uebayasi * 2. if failed, give up (get only center page later).
1762 1.173 uebayasi * 3. if succeeded, enter h/w mapping of neighbor pages.
1763 1.173 uebayasi */
1764 1.173 uebayasi
1765 1.173 uebayasi static void
1766 1.173 uebayasi uvm_fault_lower_lookup(
1767 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
1768 1.173 uebayasi struct vm_page **pages)
1769 1.173 uebayasi {
1770 1.173 uebayasi struct uvm_object *uobj = ufi->entry->object.uvm_obj;
1771 1.173 uebayasi int lcv, gotpages;
1772 1.173 uebayasi vaddr_t currva;
1773 1.173 uebayasi UVMHIST_FUNC("uvm_fault_lower_lookup"); UVMHIST_CALLED(maphist);
1774 1.173 uebayasi
1775 1.216 ad rw_enter(uobj->vmobjlock, RW_WRITER);
1776 1.186 rmind /* Locked: maps(read), amap(if there), uobj */
1777 1.173 uebayasi
1778 1.213 ad cpu_count(CPU_COUNT_FLTLGET, 1);
1779 1.173 uebayasi gotpages = flt->npages;
1780 1.173 uebayasi (void) uobj->pgops->pgo_get(uobj,
1781 1.173 uebayasi ufi->entry->offset + flt->startva - ufi->entry->start,
1782 1.173 uebayasi pages, &gotpages, flt->centeridx,
1783 1.173 uebayasi flt->access_type & MASK(ufi->entry), ufi->entry->advice, PGO_LOCKED);
1784 1.173 uebayasi
1785 1.216 ad KASSERT(rw_write_held(uobj->vmobjlock));
1786 1.186 rmind
1787 1.173 uebayasi /*
1788 1.173 uebayasi * check for pages to map, if we got any
1789 1.173 uebayasi */
1790 1.173 uebayasi
1791 1.173 uebayasi if (gotpages == 0) {
1792 1.173 uebayasi pages[flt->centeridx] = NULL;
1793 1.173 uebayasi return;
1794 1.173 uebayasi }
1795 1.173 uebayasi
1796 1.173 uebayasi currva = flt->startva;
1797 1.173 uebayasi for (lcv = 0; lcv < flt->npages; lcv++, currva += PAGE_SIZE) {
1798 1.173 uebayasi struct vm_page *curpg;
1799 1.173 uebayasi
1800 1.173 uebayasi curpg = pages[lcv];
1801 1.173 uebayasi if (curpg == NULL || curpg == PGO_DONTCARE) {
1802 1.173 uebayasi continue;
1803 1.173 uebayasi }
1804 1.173 uebayasi KASSERT(curpg->uobject == uobj);
1805 1.173 uebayasi
1806 1.173 uebayasi /*
1807 1.173 uebayasi * if center page is resident and not PG_BUSY|PG_RELEASED
1808 1.173 uebayasi * then pgo_get made it PG_BUSY for us and gave us a handle
1809 1.173 uebayasi * to it.
1810 1.173 uebayasi */
1811 1.173 uebayasi
1812 1.173 uebayasi if (lcv == flt->centeridx) {
1813 1.217 rin UVMHIST_LOG(maphist, " got uobjpage (%#jx) "
1814 1.201 pgoyette "with locked get", (uintptr_t)curpg, 0, 0, 0);
1815 1.173 uebayasi } else {
1816 1.215 ad uvm_fault_lower_neighbor(ufi, flt, currva, curpg);
1817 1.173 uebayasi }
1818 1.173 uebayasi }
1819 1.173 uebayasi pmap_update(ufi->orig_map->pmap);
1820 1.173 uebayasi }
1821 1.173 uebayasi
1822 1.173 uebayasi /*
1823 1.173 uebayasi * uvm_fault_lower_neighbor: enter h/w mapping of lower neighbor page.
1824 1.173 uebayasi */
1825 1.173 uebayasi
1826 1.173 uebayasi static void
1827 1.173 uebayasi uvm_fault_lower_neighbor(
1828 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
1829 1.215 ad vaddr_t currva, struct vm_page *pg)
1830 1.173 uebayasi {
1831 1.215 ad const bool readonly = uvm_pagereadonly_p(pg) || pg->loan_count > 0;
1832 1.182 skrll UVMHIST_FUNC(__func__); UVMHIST_CALLED(maphist);
1833 1.173 uebayasi
1834 1.173 uebayasi /* locked: maps(read), amap(if there), uobj */
1835 1.173 uebayasi
1836 1.173 uebayasi /*
1837 1.173 uebayasi * calling pgo_get with PGO_LOCKED returns us pages which
1838 1.173 uebayasi * are neither busy nor released, so we don't need to check
1839 1.173 uebayasi * for this. we can just directly enter the pages.
1840 1.173 uebayasi */
1841 1.173 uebayasi
1842 1.214 ad uvm_pagelock(pg);
1843 1.173 uebayasi uvm_pageenqueue(pg);
1844 1.214 ad uvm_pageunlock(pg);
1845 1.173 uebayasi UVMHIST_LOG(maphist,
1846 1.201 pgoyette " MAPPING: n obj: pm=%#jx, va=%#jx, pg=%#jx",
1847 1.201 pgoyette (uintptr_t)ufi->orig_map->pmap, currva, (uintptr_t)pg, 0);
1848 1.213 ad cpu_count(CPU_COUNT_FLTNOMAP, 1);
1849 1.173 uebayasi
1850 1.173 uebayasi /*
1851 1.173 uebayasi * Since this page isn't the page that's actually faulting,
1852 1.173 uebayasi * ignore pmap_enter() failures; it's not critical that we
1853 1.173 uebayasi * enter these right now.
1854 1.219 ad * NOTE: page can't be waited on or PG_RELEASED because we've
1855 1.173 uebayasi * held the lock the whole time we've had the handle.
1856 1.173 uebayasi */
1857 1.173 uebayasi KASSERT((pg->flags & PG_PAGEOUT) == 0);
1858 1.173 uebayasi KASSERT((pg->flags & PG_RELEASED) == 0);
1859 1.215 ad KASSERT(!UVM_OBJ_IS_CLEAN(pg->uobject) ||
1860 1.215 ad uvm_pagegetdirty(pg) == UVM_PAGE_STATUS_CLEAN);
1861 1.173 uebayasi pg->flags &= ~(PG_BUSY);
1862 1.173 uebayasi UVM_PAGE_OWN(pg, NULL);
1863 1.173 uebayasi
1864 1.216 ad KASSERT(rw_write_held(pg->uobject->vmobjlock));
1865 1.199 skrll
1866 1.199 skrll const vm_prot_t mapprot =
1867 1.199 skrll readonly ? (flt->enter_prot & ~VM_PROT_WRITE) :
1868 1.199 skrll flt->enter_prot & MASK(ufi->entry);
1869 1.199 skrll const u_int mapflags =
1870 1.199 skrll PMAP_CANFAIL | (flt->wire_mapping ? (mapprot | PMAP_WIRED) : 0);
1871 1.173 uebayasi (void) pmap_enter(ufi->orig_map->pmap, currva,
1872 1.199 skrll VM_PAGE_TO_PHYS(pg), mapprot, mapflags);
1873 1.173 uebayasi }
1874 1.173 uebayasi
1875 1.173 uebayasi /*
1876 1.173 uebayasi * uvm_fault_lower_io: get lower page from backing store.
1877 1.173 uebayasi *
1878 1.173 uebayasi * 1. unlock everything, because i/o will block.
1879 1.173 uebayasi * 2. call pgo_get.
1880 1.173 uebayasi * 3. if failed, recover.
1881 1.173 uebayasi * 4. if succeeded, relock everything and verify things.
1882 1.173 uebayasi */
1883 1.173 uebayasi
1884 1.148 uebayasi static int
1885 1.163 uebayasi uvm_fault_lower_io(
1886 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
1887 1.156 uebayasi struct uvm_object **ruobj, struct vm_page **ruobjpage)
1888 1.148 uebayasi {
1889 1.149 uebayasi struct vm_amap * const amap = ufi->entry->aref.ar_amap;
1890 1.156 uebayasi struct uvm_object *uobj = *ruobj;
1891 1.158 uebayasi struct vm_page *pg;
1892 1.149 uebayasi bool locked;
1893 1.149 uebayasi int gotpages;
1894 1.149 uebayasi int error;
1895 1.149 uebayasi voff_t uoff;
1896 1.208 chs vm_prot_t access_type;
1897 1.208 chs int advice;
1898 1.164 mlelstv UVMHIST_FUNC("uvm_fault_lower_io"); UVMHIST_CALLED(maphist);
1899 1.149 uebayasi
1900 1.149 uebayasi /* update rusage counters */
1901 1.149 uebayasi curlwp->l_ru.ru_majflt++;
1902 1.137 uebayasi
1903 1.208 chs /* grab everything we need from the entry before we unlock */
1904 1.208 chs uoff = (ufi->orig_rvaddr - ufi->entry->start) + ufi->entry->offset;
1905 1.208 chs access_type = flt->access_type & MASK(ufi->entry);
1906 1.208 chs advice = ufi->entry->advice;
1907 1.208 chs
1908 1.186 rmind /* Locked: maps(read), amap(if there), uobj */
1909 1.186 rmind uvmfault_unlockall(ufi, amap, NULL);
1910 1.186 rmind
1911 1.186 rmind /* Locked: uobj */
1912 1.216 ad KASSERT(uobj == NULL || rw_write_held(uobj->vmobjlock));
1913 1.63 chs
1914 1.213 ad cpu_count(CPU_COUNT_FLTGET, 1);
1915 1.149 uebayasi gotpages = 1;
1916 1.166 mlelstv pg = NULL;
1917 1.158 uebayasi error = uobj->pgops->pgo_get(uobj, uoff, &pg, &gotpages,
1918 1.208 chs 0, access_type, advice, PGO_SYNCIO);
1919 1.158 uebayasi /* locked: pg(if no error) */
1920 1.52 chs
1921 1.149 uebayasi /*
1922 1.149 uebayasi * recover from I/O
1923 1.149 uebayasi */
1924 1.1 mrg
1925 1.149 uebayasi if (error) {
1926 1.149 uebayasi if (error == EAGAIN) {
1927 1.149 uebayasi UVMHIST_LOG(maphist,
1928 1.149 uebayasi " pgo_get says TRY AGAIN!",0,0,0,0);
1929 1.149 uebayasi kpause("fltagain2", false, hz/2, NULL);
1930 1.149 uebayasi return ERESTART;
1931 1.149 uebayasi }
1932 1.1 mrg
1933 1.139 uebayasi #if 0
1934 1.149 uebayasi KASSERT(error != ERESTART);
1935 1.139 uebayasi #else
1936 1.149 uebayasi /* XXXUEBS don't re-fault? */
1937 1.149 uebayasi if (error == ERESTART)
1938 1.149 uebayasi error = EIO;
1939 1.139 uebayasi #endif
1940 1.139 uebayasi
1941 1.201 pgoyette UVMHIST_LOG(maphist, "<- pgo_get failed (code %jd)",
1942 1.149 uebayasi error, 0,0,0);
1943 1.149 uebayasi return error;
1944 1.149 uebayasi }
1945 1.7 mrg
1946 1.149 uebayasi /*
1947 1.149 uebayasi * re-verify the state of the world by first trying to relock
1948 1.149 uebayasi * the maps. always relock the object.
1949 1.149 uebayasi */
1950 1.7 mrg
1951 1.149 uebayasi locked = uvmfault_relock(ufi);
1952 1.149 uebayasi if (locked && amap)
1953 1.216 ad amap_lock(amap, RW_WRITER);
1954 1.156 uebayasi
1955 1.156 uebayasi /* might be changed */
1956 1.158 uebayasi uobj = pg->uobject;
1957 1.156 uebayasi
1958 1.216 ad rw_enter(uobj->vmobjlock, RW_WRITER);
1959 1.186 rmind KASSERT((pg->flags & PG_BUSY) != 0);
1960 1.186 rmind
1961 1.214 ad uvm_pagelock(pg);
1962 1.186 rmind uvm_pageactivate(pg);
1963 1.214 ad uvm_pageunlock(pg);
1964 1.63 chs
1965 1.158 uebayasi /* locked(locked): maps(read), amap(if !null), uobj, pg */
1966 1.158 uebayasi /* locked(!locked): uobj, pg */
1967 1.7 mrg
1968 1.149 uebayasi /*
1969 1.149 uebayasi * verify that the page has not be released and re-verify
1970 1.149 uebayasi * that amap slot is still free. if there is a problem,
1971 1.149 uebayasi * we unlock and clean up.
1972 1.149 uebayasi */
1973 1.7 mrg
1974 1.158 uebayasi if ((pg->flags & PG_RELEASED) != 0 ||
1975 1.158 uebayasi (locked && amap && amap_lookup(&ufi->entry->aref,
1976 1.149 uebayasi ufi->orig_rvaddr - ufi->entry->start))) {
1977 1.149 uebayasi if (locked)
1978 1.186 rmind uvmfault_unlockall(ufi, amap, NULL);
1979 1.149 uebayasi locked = false;
1980 1.149 uebayasi }
1981 1.7 mrg
1982 1.149 uebayasi /*
1983 1.149 uebayasi * didn't get the lock? release the page and retry.
1984 1.149 uebayasi */
1985 1.7 mrg
1986 1.149 uebayasi if (locked == false) {
1987 1.149 uebayasi UVMHIST_LOG(maphist,
1988 1.149 uebayasi " wasn't able to relock after fault: retry",
1989 1.149 uebayasi 0,0,0,0);
1990 1.186 rmind if ((pg->flags & PG_RELEASED) == 0) {
1991 1.219 ad pg->flags &= ~PG_BUSY;
1992 1.218 ad uvm_pagelock(pg);
1993 1.219 ad uvm_pagewakeup(pg);
1994 1.218 ad uvm_pageunlock(pg);
1995 1.219 ad UVM_PAGE_OWN(pg, NULL);
1996 1.186 rmind } else {
1997 1.213 ad cpu_count(CPU_COUNT_FLTPGRELE, 1);
1998 1.158 uebayasi uvm_pagefree(pg);
1999 1.7 mrg }
2000 1.216 ad rw_exit(uobj->vmobjlock);
2001 1.149 uebayasi return ERESTART;
2002 1.149 uebayasi }
2003 1.7 mrg
2004 1.149 uebayasi /*
2005 1.158 uebayasi * we have the data in pg which is busy and
2006 1.149 uebayasi * not released. we are holding object lock (so the page
2007 1.149 uebayasi * can't be released on us).
2008 1.149 uebayasi */
2009 1.7 mrg
2010 1.158 uebayasi /* locked: maps(read), amap(if !null), uobj, pg */
2011 1.148 uebayasi
2012 1.156 uebayasi *ruobj = uobj;
2013 1.158 uebayasi *ruobjpage = pg;
2014 1.148 uebayasi return 0;
2015 1.148 uebayasi }
2016 1.148 uebayasi
2017 1.173 uebayasi /*
2018 1.173 uebayasi * uvm_fault_lower_direct: fault lower center page
2019 1.173 uebayasi *
2020 1.177 yamt * 1. adjust flt->enter_prot.
2021 1.173 uebayasi * 2. if page is loaned, resolve.
2022 1.173 uebayasi */
2023 1.173 uebayasi
2024 1.148 uebayasi int
2025 1.163 uebayasi uvm_fault_lower_direct(
2026 1.148 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
2027 1.156 uebayasi struct uvm_object *uobj, struct vm_page *uobjpage)
2028 1.148 uebayasi {
2029 1.149 uebayasi struct vm_page *pg;
2030 1.173 uebayasi UVMHIST_FUNC("uvm_fault_lower_direct"); UVMHIST_CALLED(maphist);
2031 1.149 uebayasi
2032 1.149 uebayasi /*
2033 1.149 uebayasi * we are not promoting. if the mapping is COW ensure that we
2034 1.149 uebayasi * don't give more access than we should (e.g. when doing a read
2035 1.149 uebayasi * fault on a COPYONWRITE mapping we want to map the COW page in
2036 1.149 uebayasi * R/O even though the entry protection could be R/W).
2037 1.149 uebayasi *
2038 1.149 uebayasi * set "pg" to the page we want to map in (uobjpage, usually)
2039 1.149 uebayasi */
2040 1.1 mrg
2041 1.213 ad cpu_count(CPU_COUNT_FLT_OBJ, 1);
2042 1.149 uebayasi if (UVM_ET_ISCOPYONWRITE(ufi->entry) ||
2043 1.149 uebayasi UVM_OBJ_NEEDS_WRITEFAULT(uobjpage->uobject))
2044 1.149 uebayasi flt->enter_prot &= ~VM_PROT_WRITE;
2045 1.149 uebayasi pg = uobjpage; /* map in the actual object */
2046 1.7 mrg
2047 1.149 uebayasi KASSERT(uobjpage != PGO_DONTCARE);
2048 1.7 mrg
2049 1.149 uebayasi /*
2050 1.149 uebayasi * we are faulting directly on the page. be careful
2051 1.149 uebayasi * about writing to loaned pages...
2052 1.149 uebayasi */
2053 1.149 uebayasi
2054 1.149 uebayasi if (uobjpage->loan_count) {
2055 1.163 uebayasi uvm_fault_lower_direct_loan(ufi, flt, uobj, &pg, &uobjpage);
2056 1.151 uebayasi }
2057 1.151 uebayasi KASSERT(pg == uobjpage);
2058 1.151 uebayasi
2059 1.183 yamt KASSERT(uobj == NULL || (uobjpage->flags & PG_BUSY) != 0);
2060 1.183 yamt return uvm_fault_lower_enter(ufi, flt, uobj, NULL, pg);
2061 1.151 uebayasi }
2062 1.151 uebayasi
2063 1.173 uebayasi /*
2064 1.173 uebayasi * uvm_fault_lower_direct_loan: resolve loaned page.
2065 1.173 uebayasi *
2066 1.177 yamt * 1. if not cow'ing, adjust flt->enter_prot.
2067 1.173 uebayasi * 2. if cow'ing, break loan.
2068 1.173 uebayasi */
2069 1.173 uebayasi
2070 1.151 uebayasi static int
2071 1.163 uebayasi uvm_fault_lower_direct_loan(
2072 1.151 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
2073 1.177 yamt struct uvm_object *uobj, struct vm_page **rpg,
2074 1.177 yamt struct vm_page **ruobjpage)
2075 1.151 uebayasi {
2076 1.152 uebayasi struct vm_amap * const amap = ufi->entry->aref.ar_amap;
2077 1.152 uebayasi struct vm_page *pg;
2078 1.152 uebayasi struct vm_page *uobjpage = *ruobjpage;
2079 1.164 mlelstv UVMHIST_FUNC("uvm_fault_lower_direct_loan"); UVMHIST_CALLED(maphist);
2080 1.152 uebayasi
2081 1.152 uebayasi if (!flt->cow_now) {
2082 1.152 uebayasi /* read fault: cap the protection at readonly */
2083 1.152 uebayasi /* cap! */
2084 1.152 uebayasi flt->enter_prot = flt->enter_prot & ~VM_PROT_WRITE;
2085 1.152 uebayasi } else {
2086 1.152 uebayasi /* write fault: must break the loan here */
2087 1.152 uebayasi
2088 1.152 uebayasi pg = uvm_loanbreak(uobjpage);
2089 1.152 uebayasi if (pg == NULL) {
2090 1.152 uebayasi
2091 1.152 uebayasi /*
2092 1.152 uebayasi * drop ownership of page, it can't be released
2093 1.152 uebayasi */
2094 1.152 uebayasi
2095 1.218 ad uvm_pagelock(uobjpage);
2096 1.219 ad uvm_pagewakeup(uobjpage);
2097 1.218 ad uvm_pageunlock(uobjpage);
2098 1.219 ad uobjpage->flags &= ~PG_BUSY;
2099 1.219 ad UVM_PAGE_OWN(uobjpage, NULL);
2100 1.152 uebayasi
2101 1.186 rmind uvmfault_unlockall(ufi, amap, uobj);
2102 1.152 uebayasi UVMHIST_LOG(maphist,
2103 1.152 uebayasi " out of RAM breaking loan, waiting",
2104 1.152 uebayasi 0,0,0,0);
2105 1.213 ad cpu_count(CPU_COUNT_FLTNORAM, 1);
2106 1.152 uebayasi uvm_wait("flt_noram4");
2107 1.152 uebayasi return ERESTART;
2108 1.69 chs }
2109 1.152 uebayasi *rpg = pg;
2110 1.152 uebayasi *ruobjpage = pg;
2111 1.152 uebayasi }
2112 1.152 uebayasi return 0;
2113 1.148 uebayasi }
2114 1.148 uebayasi
2115 1.173 uebayasi /*
2116 1.173 uebayasi * uvm_fault_lower_promote: promote lower page.
2117 1.173 uebayasi *
2118 1.173 uebayasi * 1. call uvmfault_promote.
2119 1.173 uebayasi * 2. fill in data.
2120 1.173 uebayasi * 3. if not ZFOD, dispose old page.
2121 1.173 uebayasi */
2122 1.173 uebayasi
2123 1.148 uebayasi int
2124 1.163 uebayasi uvm_fault_lower_promote(
2125 1.148 uebayasi struct uvm_faultinfo *ufi, struct uvm_faultctx *flt,
2126 1.156 uebayasi struct uvm_object *uobj, struct vm_page *uobjpage)
2127 1.148 uebayasi {
2128 1.149 uebayasi struct vm_amap * const amap = ufi->entry->aref.ar_amap;
2129 1.149 uebayasi struct vm_anon *anon;
2130 1.149 uebayasi struct vm_page *pg;
2131 1.149 uebayasi int error;
2132 1.164 mlelstv UVMHIST_FUNC("uvm_fault_lower_promote"); UVMHIST_CALLED(maphist);
2133 1.63 chs
2134 1.186 rmind KASSERT(amap != NULL);
2135 1.186 rmind
2136 1.149 uebayasi /*
2137 1.186 rmind * If we are going to promote the data to an anon we
2138 1.149 uebayasi * allocate a blank anon here and plug it into our amap.
2139 1.149 uebayasi */
2140 1.149 uebayasi error = uvmfault_promote(ufi, NULL, uobjpage,
2141 1.149 uebayasi &anon, &flt->anon_spare);
2142 1.149 uebayasi switch (error) {
2143 1.149 uebayasi case 0:
2144 1.149 uebayasi break;
2145 1.149 uebayasi case ERESTART:
2146 1.149 uebayasi return ERESTART;
2147 1.149 uebayasi default:
2148 1.149 uebayasi return error;
2149 1.149 uebayasi }
2150 1.149 uebayasi
2151 1.149 uebayasi pg = anon->an_page;
2152 1.149 uebayasi
2153 1.149 uebayasi /*
2154 1.186 rmind * Fill in the data.
2155 1.149 uebayasi */
2156 1.186 rmind KASSERT(uobj == NULL || (uobjpage->flags & PG_BUSY) != 0);
2157 1.105 yamt
2158 1.149 uebayasi if (uobjpage != PGO_DONTCARE) {
2159 1.213 ad cpu_count(CPU_COUNT_FLT_PRCOPY, 1);
2160 1.1 mrg
2161 1.7 mrg /*
2162 1.149 uebayasi * promote to shared amap? make sure all sharing
2163 1.149 uebayasi * procs see it
2164 1.7 mrg */
2165 1.7 mrg
2166 1.149 uebayasi if ((amap_flags(amap) & AMAP_SHARED) != 0) {
2167 1.149 uebayasi pmap_page_protect(uobjpage, VM_PROT_NONE);
2168 1.7 mrg /*
2169 1.149 uebayasi * XXX: PAGE MIGHT BE WIRED!
2170 1.7 mrg */
2171 1.149 uebayasi }
2172 1.69 chs
2173 1.149 uebayasi /*
2174 1.149 uebayasi * dispose of uobjpage. it can't be PG_RELEASED
2175 1.149 uebayasi * since we still hold the object lock.
2176 1.149 uebayasi */
2177 1.149 uebayasi
2178 1.219 ad uobjpage->flags &= ~PG_BUSY;
2179 1.218 ad uvm_pagelock(uobjpage);
2180 1.219 ad uvm_pagewakeup(uobjpage);
2181 1.218 ad uvm_pageunlock(uobjpage);
2182 1.219 ad UVM_PAGE_OWN(uobjpage, NULL);
2183 1.149 uebayasi
2184 1.149 uebayasi UVMHIST_LOG(maphist,
2185 1.217 rin " promote uobjpage %#jx to anon/page %#jx/%#jx",
2186 1.201 pgoyette (uintptr_t)uobjpage, (uintptr_t)anon, (uintptr_t)pg, 0);
2187 1.63 chs
2188 1.149 uebayasi } else {
2189 1.213 ad cpu_count(CPU_COUNT_FLT_PRZERO, 1);
2190 1.7 mrg
2191 1.149 uebayasi /*
2192 1.149 uebayasi * Page is zero'd and marked dirty by
2193 1.149 uebayasi * uvmfault_promote().
2194 1.149 uebayasi */
2195 1.52 chs
2196 1.217 rin UVMHIST_LOG(maphist," zero fill anon/page %#jx/%#jx",
2197 1.201 pgoyette (uintptr_t)anon, (uintptr_t)pg, 0, 0);
2198 1.149 uebayasi }
2199 1.148 uebayasi
2200 1.183 yamt return uvm_fault_lower_enter(ufi, flt, uobj, anon, pg);
2201 1.148 uebayasi }
2202 1.148 uebayasi
2203 1.173 uebayasi /*
2204 1.183 yamt * uvm_fault_lower_enter: enter h/w mapping of lower page or anon page promoted
2205 1.183 yamt * from the lower page.
2206 1.173 uebayasi */
2207 1.173 uebayasi
2208 1.148 uebayasi int
2209 1.163 uebayasi uvm_fault_lower_enter(
2210 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
2211 1.148 uebayasi struct uvm_object *uobj,
2212 1.183 yamt struct vm_anon *anon, struct vm_page *pg)
2213 1.148 uebayasi {
2214 1.148 uebayasi struct vm_amap * const amap = ufi->entry->aref.ar_amap;
2215 1.215 ad const bool readonly = uvm_pagereadonly_p(pg);
2216 1.148 uebayasi int error;
2217 1.164 mlelstv UVMHIST_FUNC("uvm_fault_lower_enter"); UVMHIST_CALLED(maphist);
2218 1.7 mrg
2219 1.7 mrg /*
2220 1.186 rmind * Locked:
2221 1.186 rmind *
2222 1.186 rmind * maps(read), amap(if !null), uobj(if !null),
2223 1.186 rmind * anon(if !null), pg(if anon), unlock_uobj(if !null)
2224 1.7 mrg *
2225 1.186 rmind * Note: pg is either the uobjpage or the new page in the new anon.
2226 1.7 mrg */
2227 1.216 ad KASSERT(amap == NULL || rw_write_held(amap->am_lock));
2228 1.216 ad KASSERT(uobj == NULL || rw_write_held(uobj->vmobjlock));
2229 1.186 rmind KASSERT(anon == NULL || anon->an_lock == amap->am_lock);
2230 1.120 ad KASSERT((pg->flags & PG_BUSY) != 0);
2231 1.7 mrg
2232 1.7 mrg /*
2233 1.7 mrg * all resources are present. we can now map it in and free our
2234 1.7 mrg * resources.
2235 1.7 mrg */
2236 1.7 mrg
2237 1.7 mrg UVMHIST_LOG(maphist,
2238 1.201 pgoyette " MAPPING: case2: pm=%#jx, va=%#jx, pg=%#jx, promote=%jd",
2239 1.201 pgoyette (uintptr_t)ufi->orig_map->pmap, ufi->orig_rvaddr,
2240 1.201 pgoyette (uintptr_t)pg, flt->promote);
2241 1.215 ad KASSERTMSG((flt->access_type & VM_PROT_WRITE) == 0 || !readonly,
2242 1.215 ad "promote=%u cow_now=%u access_type=%x enter_prot=%x cow=%u "
2243 1.215 ad "entry=%p map=%p orig_rvaddr=%p pg=%p",
2244 1.215 ad flt->promote, flt->cow_now, flt->access_type, flt->enter_prot,
2245 1.215 ad UVM_ET_ISCOPYONWRITE(ufi->entry), ufi->entry, ufi->orig_map,
2246 1.215 ad (void *)ufi->orig_rvaddr, pg);
2247 1.215 ad KASSERT((flt->access_type & VM_PROT_WRITE) == 0 || !readonly);
2248 1.177 yamt if (pmap_enter(ufi->orig_map->pmap, ufi->orig_rvaddr,
2249 1.177 yamt VM_PAGE_TO_PHYS(pg),
2250 1.215 ad readonly ? flt->enter_prot & ~VM_PROT_WRITE : flt->enter_prot,
2251 1.177 yamt flt->access_type | PMAP_CANFAIL |
2252 1.177 yamt (flt->wire_mapping ? PMAP_WIRED : 0)) != 0) {
2253 1.52 chs
2254 1.46 thorpej /*
2255 1.46 thorpej * No need to undo what we did; we can simply think of
2256 1.46 thorpej * this as the pmap throwing away the mapping information.
2257 1.46 thorpej *
2258 1.46 thorpej * We do, however, have to go through the ReFault path,
2259 1.46 thorpej * as the map may change while we're asleep.
2260 1.46 thorpej */
2261 1.52 chs
2262 1.183 yamt /*
2263 1.183 yamt * ensure that the page is queued in the case that
2264 1.183 yamt * we just promoted the page.
2265 1.183 yamt */
2266 1.183 yamt
2267 1.214 ad uvm_pagelock(pg);
2268 1.183 yamt uvm_pageenqueue(pg);
2269 1.219 ad uvm_pagewakeup(pg);
2270 1.214 ad uvm_pageunlock(pg);
2271 1.183 yamt
2272 1.63 chs /*
2273 1.46 thorpej * note that pg can't be PG_RELEASED since we did not drop
2274 1.46 thorpej * the object lock since the last time we checked.
2275 1.46 thorpej */
2276 1.111 yamt KASSERT((pg->flags & PG_RELEASED) == 0);
2277 1.219 ad pg->flags &= ~(PG_BUSY|PG_FAKE);
2278 1.219 ad UVM_PAGE_OWN(pg, NULL);
2279 1.171 uebayasi
2280 1.186 rmind uvmfault_unlockall(ufi, amap, uobj);
2281 1.92 yamt if (!uvm_reclaimable()) {
2282 1.46 thorpej UVMHIST_LOG(maphist,
2283 1.46 thorpej "<- failed. out of VM",0,0,0,0);
2284 1.46 thorpej /* XXX instrumentation */
2285 1.106 yamt error = ENOMEM;
2286 1.138 uebayasi return error;
2287 1.46 thorpej }
2288 1.46 thorpej /* XXX instrumentation */
2289 1.46 thorpej uvm_wait("flt_pmfail2");
2290 1.139 uebayasi return ERESTART;
2291 1.46 thorpej }
2292 1.1 mrg
2293 1.177 yamt uvm_fault_lower_done(ufi, flt, uobj, pg);
2294 1.177 yamt
2295 1.177 yamt /*
2296 1.177 yamt * note that pg can't be PG_RELEASED since we did not drop the object
2297 1.177 yamt * lock since the last time we checked.
2298 1.177 yamt */
2299 1.177 yamt KASSERT((pg->flags & PG_RELEASED) == 0);
2300 1.218 ad uvm_pagelock(pg);
2301 1.219 ad uvm_pagewakeup(pg);
2302 1.218 ad uvm_pageunlock(pg);
2303 1.219 ad pg->flags &= ~(PG_BUSY|PG_FAKE);
2304 1.219 ad UVM_PAGE_OWN(pg, NULL);
2305 1.169 uebayasi
2306 1.175 rmind pmap_update(ufi->orig_map->pmap);
2307 1.186 rmind uvmfault_unlockall(ufi, amap, uobj);
2308 1.175 rmind
2309 1.169 uebayasi UVMHIST_LOG(maphist, "<- done (SUCCESS!)",0,0,0,0);
2310 1.169 uebayasi return 0;
2311 1.148 uebayasi }
2312 1.148 uebayasi
2313 1.173 uebayasi /*
2314 1.173 uebayasi * uvm_fault_lower_done: queue lower center page.
2315 1.173 uebayasi */
2316 1.173 uebayasi
2317 1.169 uebayasi void
2318 1.163 uebayasi uvm_fault_lower_done(
2319 1.177 yamt struct uvm_faultinfo *ufi, const struct uvm_faultctx *flt,
2320 1.177 yamt struct uvm_object *uobj, struct vm_page *pg)
2321 1.148 uebayasi {
2322 1.174 rmind bool dropswap = false;
2323 1.174 rmind
2324 1.164 mlelstv UVMHIST_FUNC("uvm_fault_lower_done"); UVMHIST_CALLED(maphist);
2325 1.148 uebayasi
2326 1.214 ad uvm_pagelock(pg);
2327 1.146 uebayasi if (flt->wire_paging) {
2328 1.8 chuck uvm_pagewire(pg);
2329 1.212 ad if (pg->flags & PG_AOBJ) {
2330 1.29 chs
2331 1.29 chs /*
2332 1.29 chs * since the now-wired page cannot be paged out,
2333 1.29 chs * release its swap resources for others to use.
2334 1.215 ad * since an aobj page with no swap cannot be clean,
2335 1.215 ad * mark it dirty now.
2336 1.29 chs */
2337 1.29 chs
2338 1.113 christos KASSERT(uobj != NULL);
2339 1.215 ad uvm_pagemarkdirty(pg, UVM_PAGE_STATUS_DIRTY);
2340 1.174 rmind dropswap = true;
2341 1.22 chs }
2342 1.7 mrg } else {
2343 1.7 mrg uvm_pageactivate(pg);
2344 1.7 mrg }
2345 1.214 ad uvm_pageunlock(pg);
2346 1.171 uebayasi
2347 1.174 rmind if (dropswap) {
2348 1.174 rmind uao_dropswap(uobj, pg->offset >> PAGE_SHIFT);
2349 1.174 rmind }
2350 1.1 mrg }
2351 1.1 mrg
2352 1.110 drochner
2353 1.1 mrg /*
2354 1.1 mrg * uvm_fault_wire: wire down a range of virtual addresses in a map.
2355 1.1 mrg *
2356 1.36 thorpej * => map may be read-locked by caller, but MUST NOT be write-locked.
2357 1.36 thorpej * => if map is read-locked, any operations which may cause map to
2358 1.36 thorpej * be write-locked in uvm_fault() must be taken care of by
2359 1.36 thorpej * the caller. See uvm_map_pageable().
2360 1.1 mrg */
2361 1.1 mrg
2362 1.7 mrg int
2363 1.95 thorpej uvm_fault_wire(struct vm_map *map, vaddr_t start, vaddr_t end,
2364 1.130 uebayasi vm_prot_t access_type, int maxprot)
2365 1.7 mrg {
2366 1.12 eeh vaddr_t va;
2367 1.58 chs int error;
2368 1.7 mrg
2369 1.7 mrg /*
2370 1.47 chs * now fault it in a page at a time. if the fault fails then we have
2371 1.63 chs * to undo what we have done. note that in uvm_fault VM_PROT_NONE
2372 1.47 chs * is replaced with the max protection if fault_type is VM_FAULT_WIRE.
2373 1.7 mrg */
2374 1.1 mrg
2375 1.65 chs /*
2376 1.65 chs * XXX work around overflowing a vaddr_t. this prevents us from
2377 1.65 chs * wiring the last page in the address space, though.
2378 1.65 chs */
2379 1.65 chs if (start > end) {
2380 1.65 chs return EFAULT;
2381 1.65 chs }
2382 1.65 chs
2383 1.163 uebayasi for (va = start; va < end; va += PAGE_SIZE) {
2384 1.110 drochner error = uvm_fault_internal(map, va, access_type,
2385 1.177 yamt (maxprot ? UVM_FAULT_MAXPROT : 0) | UVM_FAULT_WIRE);
2386 1.58 chs if (error) {
2387 1.7 mrg if (va != start) {
2388 1.31 thorpej uvm_fault_unwire(map, start, va);
2389 1.7 mrg }
2390 1.58 chs return error;
2391 1.7 mrg }
2392 1.7 mrg }
2393 1.58 chs return 0;
2394 1.1 mrg }
2395 1.1 mrg
2396 1.1 mrg /*
2397 1.1 mrg * uvm_fault_unwire(): unwire range of virtual space.
2398 1.1 mrg */
2399 1.1 mrg
2400 1.7 mrg void
2401 1.95 thorpej uvm_fault_unwire(struct vm_map *map, vaddr_t start, vaddr_t end)
2402 1.36 thorpej {
2403 1.36 thorpej vm_map_lock_read(map);
2404 1.36 thorpej uvm_fault_unwire_locked(map, start, end);
2405 1.36 thorpej vm_map_unlock_read(map);
2406 1.36 thorpej }
2407 1.36 thorpej
2408 1.36 thorpej /*
2409 1.36 thorpej * uvm_fault_unwire_locked(): the guts of uvm_fault_unwire().
2410 1.36 thorpej *
2411 1.36 thorpej * => map must be at least read-locked.
2412 1.36 thorpej */
2413 1.36 thorpej
2414 1.36 thorpej void
2415 1.95 thorpej uvm_fault_unwire_locked(struct vm_map *map, vaddr_t start, vaddr_t end)
2416 1.7 mrg {
2417 1.186 rmind struct vm_map_entry *entry, *oentry;
2418 1.31 thorpej pmap_t pmap = vm_map_pmap(map);
2419 1.42 thorpej vaddr_t va;
2420 1.12 eeh paddr_t pa;
2421 1.42 thorpej struct vm_page *pg;
2422 1.31 thorpej
2423 1.7 mrg /*
2424 1.7 mrg * we assume that the area we are unwiring has actually been wired
2425 1.7 mrg * in the first place. this means that we should be able to extract
2426 1.7 mrg * the PAs from the pmap. we also lock out the page daemon so that
2427 1.7 mrg * we can call uvm_pageunwire.
2428 1.7 mrg */
2429 1.37 thorpej
2430 1.37 thorpej /*
2431 1.37 thorpej * find the beginning map entry for the region.
2432 1.37 thorpej */
2433 1.74 chs
2434 1.56 chs KASSERT(start >= vm_map_min(map) && end <= vm_map_max(map));
2435 1.119 thorpej if (uvm_map_lookup_entry(map, start, &entry) == false)
2436 1.37 thorpej panic("uvm_fault_unwire_locked: address not in map");
2437 1.37 thorpej
2438 1.186 rmind oentry = NULL;
2439 1.69 chs for (va = start; va < end; va += PAGE_SIZE) {
2440 1.42 thorpej
2441 1.42 thorpej /*
2442 1.74 chs * find the map entry for the current address.
2443 1.42 thorpej */
2444 1.56 chs
2445 1.56 chs KASSERT(va >= entry->start);
2446 1.74 chs while (va >= entry->end) {
2447 1.56 chs KASSERT(entry->next != &map->header &&
2448 1.56 chs entry->next->start <= entry->end);
2449 1.42 thorpej entry = entry->next;
2450 1.42 thorpej }
2451 1.37 thorpej
2452 1.42 thorpej /*
2453 1.186 rmind * lock it.
2454 1.186 rmind */
2455 1.186 rmind
2456 1.186 rmind if (entry != oentry) {
2457 1.186 rmind if (oentry != NULL) {
2458 1.186 rmind uvm_map_unlock_entry(oentry);
2459 1.186 rmind }
2460 1.216 ad uvm_map_lock_entry(entry, RW_WRITER);
2461 1.186 rmind oentry = entry;
2462 1.186 rmind }
2463 1.186 rmind
2464 1.186 rmind /*
2465 1.42 thorpej * if the entry is no longer wired, tell the pmap.
2466 1.42 thorpej */
2467 1.74 chs
2468 1.207 chs if (!pmap_extract(pmap, va, &pa))
2469 1.207 chs continue;
2470 1.207 chs
2471 1.42 thorpej if (VM_MAPENT_ISWIRED(entry) == 0)
2472 1.42 thorpej pmap_unwire(pmap, va);
2473 1.42 thorpej
2474 1.42 thorpej pg = PHYS_TO_VM_PAGE(pa);
2475 1.214 ad if (pg) {
2476 1.214 ad uvm_pagelock(pg);
2477 1.42 thorpej uvm_pageunwire(pg);
2478 1.214 ad uvm_pageunlock(pg);
2479 1.214 ad }
2480 1.7 mrg }
2481 1.1 mrg
2482 1.186 rmind if (oentry != NULL) {
2483 1.186 rmind uvm_map_unlock_entry(entry);
2484 1.186 rmind }
2485 1.1 mrg }
2486