uvm_bio.c revision 1.24 1 1.24 simonb /* $NetBSD: uvm_bio.c,v 1.24 2002/02/15 17:45:05 simonb Exp $ */
2 1.2 chs
3 1.13 chs /*
4 1.2 chs * Copyright (c) 1998 Chuck Silvers.
5 1.2 chs * All rights reserved.
6 1.2 chs *
7 1.2 chs * Redistribution and use in source and binary forms, with or without
8 1.2 chs * modification, are permitted provided that the following conditions
9 1.2 chs * are met:
10 1.2 chs * 1. Redistributions of source code must retain the above copyright
11 1.2 chs * notice, this list of conditions and the following disclaimer.
12 1.2 chs * 2. Redistributions in binary form must reproduce the above copyright
13 1.2 chs * notice, this list of conditions and the following disclaimer in the
14 1.2 chs * documentation and/or other materials provided with the distribution.
15 1.2 chs * 3. The name of the author may not be used to endorse or promote products
16 1.2 chs * derived from this software without specific prior written permission.
17 1.2 chs *
18 1.2 chs * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.2 chs * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.2 chs * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.2 chs * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.2 chs * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 1.2 chs * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 1.2 chs * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 1.2 chs * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 1.2 chs * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 1.2 chs * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 1.2 chs * SUCH DAMAGE.
29 1.2 chs *
30 1.2 chs */
31 1.2 chs
32 1.2 chs /*
33 1.2 chs * uvm_bio.c: buffered i/o vnode mapping cache
34 1.2 chs */
35 1.2 chs
36 1.21 lukem #include <sys/cdefs.h>
37 1.24 simonb __KERNEL_RCSID(0, "$NetBSD: uvm_bio.c,v 1.24 2002/02/15 17:45:05 simonb Exp $");
38 1.21 lukem
39 1.21 lukem #include "opt_uvmhist.h"
40 1.2 chs
41 1.2 chs #include <sys/param.h>
42 1.2 chs #include <sys/systm.h>
43 1.2 chs #include <sys/malloc.h>
44 1.2 chs #include <sys/kernel.h>
45 1.2 chs #include <sys/vnode.h>
46 1.19 chs #include <sys/proc.h>
47 1.2 chs
48 1.2 chs #include <uvm/uvm.h>
49 1.2 chs
50 1.2 chs /*
51 1.2 chs * global data structures
52 1.2 chs */
53 1.2 chs
54 1.2 chs /*
55 1.2 chs * local functions
56 1.2 chs */
57 1.2 chs
58 1.18 chs int ubc_fault __P((struct uvm_faultinfo *, vaddr_t, struct vm_page **, int,
59 1.18 chs int, vm_fault_t, vm_prot_t, int));
60 1.18 chs struct ubc_map *ubc_find_mapping __P((struct uvm_object *, voff_t));
61 1.2 chs
62 1.2 chs /*
63 1.2 chs * local data structues
64 1.2 chs */
65 1.2 chs
66 1.18 chs #define UBC_HASH(uobj, offset) \
67 1.18 chs (((((u_long)(uobj)) >> 8) + (((u_long)(offset)) >> PAGE_SHIFT)) & \
68 1.2 chs ubc_object.hashmask)
69 1.2 chs
70 1.18 chs #define UBC_QUEUE(offset) \
71 1.18 chs (&ubc_object.inactive[(((u_long)(offset)) >> ubc_winshift) & \
72 1.18 chs (UBC_NQUEUES - 1)])
73 1.18 chs
74 1.18 chs #define UBC_UMAP_ADDR(u) \
75 1.18 chs (vaddr_t)(ubc_object.kva + (((u) - ubc_object.umap) << ubc_winshift))
76 1.18 chs
77 1.18 chs
78 1.18 chs #define UMAP_PAGES_LOCKED 0x0001
79 1.18 chs #define UMAP_MAPPING_CACHED 0x0002
80 1.2 chs
81 1.2 chs struct ubc_map
82 1.2 chs {
83 1.2 chs struct uvm_object * uobj; /* mapped object */
84 1.2 chs voff_t offset; /* offset into uobj */
85 1.2 chs voff_t writeoff; /* overwrite offset */
86 1.2 chs vsize_t writelen; /* overwrite len */
87 1.18 chs int refcount; /* refcount on mapping */
88 1.18 chs int flags; /* extra state */
89 1.2 chs
90 1.2 chs LIST_ENTRY(ubc_map) hash; /* hash table */
91 1.2 chs TAILQ_ENTRY(ubc_map) inactive; /* inactive queue */
92 1.2 chs };
93 1.2 chs
94 1.2 chs static struct ubc_object
95 1.2 chs {
96 1.2 chs struct uvm_object uobj; /* glue for uvm_map() */
97 1.2 chs char *kva; /* where ubc_object is mapped */
98 1.2 chs struct ubc_map *umap; /* array of ubc_map's */
99 1.2 chs
100 1.2 chs LIST_HEAD(, ubc_map) *hash; /* hashtable for cached ubc_map's */
101 1.2 chs u_long hashmask; /* mask for hashtable */
102 1.2 chs
103 1.2 chs TAILQ_HEAD(ubc_inactive_head, ubc_map) *inactive;
104 1.2 chs /* inactive queues for ubc_map's */
105 1.2 chs
106 1.2 chs } ubc_object;
107 1.2 chs
108 1.2 chs struct uvm_pagerops ubc_pager =
109 1.2 chs {
110 1.2 chs NULL, /* init */
111 1.2 chs NULL, /* reference */
112 1.2 chs NULL, /* detach */
113 1.2 chs ubc_fault, /* fault */
114 1.2 chs /* ... rest are NULL */
115 1.2 chs };
116 1.2 chs
117 1.2 chs int ubc_nwins = UBC_NWINS;
118 1.11 chs int ubc_winshift = UBC_WINSHIFT;
119 1.11 chs int ubc_winsize;
120 1.2 chs #ifdef PMAP_PREFER
121 1.2 chs int ubc_nqueues;
122 1.2 chs boolean_t ubc_release_unmap = FALSE;
123 1.2 chs #define UBC_NQUEUES ubc_nqueues
124 1.2 chs #define UBC_RELEASE_UNMAP ubc_release_unmap
125 1.2 chs #else
126 1.2 chs #define UBC_NQUEUES 1
127 1.2 chs #define UBC_RELEASE_UNMAP FALSE
128 1.2 chs #endif
129 1.2 chs
130 1.2 chs /*
131 1.2 chs * ubc_init
132 1.2 chs *
133 1.2 chs * init pager private data structures.
134 1.2 chs */
135 1.2 chs
136 1.2 chs void
137 1.2 chs ubc_init(void)
138 1.2 chs {
139 1.2 chs struct ubc_map *umap;
140 1.2 chs vaddr_t va;
141 1.2 chs int i;
142 1.15 simonb
143 1.15 simonb /*
144 1.15 simonb * Make sure ubc_winshift is sane.
145 1.15 simonb */
146 1.15 simonb if (ubc_winshift < PAGE_SHIFT)
147 1.15 simonb ubc_winshift = PAGE_SHIFT;
148 1.2 chs
149 1.2 chs /*
150 1.2 chs * init ubc_object.
151 1.2 chs * alloc and init ubc_map's.
152 1.2 chs * init inactive queues.
153 1.2 chs * alloc and init hashtable.
154 1.2 chs * map in ubc_object.
155 1.2 chs */
156 1.2 chs
157 1.2 chs simple_lock_init(&ubc_object.uobj.vmobjlock);
158 1.2 chs ubc_object.uobj.pgops = &ubc_pager;
159 1.2 chs TAILQ_INIT(&ubc_object.uobj.memq);
160 1.2 chs ubc_object.uobj.uo_npages = 0;
161 1.2 chs ubc_object.uobj.uo_refs = UVM_OBJ_KERN;
162 1.2 chs
163 1.2 chs ubc_object.umap = malloc(ubc_nwins * sizeof(struct ubc_map),
164 1.2 chs M_TEMP, M_NOWAIT);
165 1.7 enami if (ubc_object.umap == NULL)
166 1.7 enami panic("ubc_init: failed to allocate ubc_map");
167 1.16 thorpej memset(ubc_object.umap, 0, ubc_nwins * sizeof(struct ubc_map));
168 1.2 chs
169 1.18 chs if (ubc_winshift < PAGE_SHIFT) {
170 1.18 chs ubc_winshift = PAGE_SHIFT;
171 1.18 chs }
172 1.2 chs va = (vaddr_t)1L;
173 1.2 chs #ifdef PMAP_PREFER
174 1.2 chs PMAP_PREFER(0, &va);
175 1.11 chs ubc_nqueues = va >> ubc_winshift;
176 1.11 chs if (ubc_nqueues == 0) {
177 1.11 chs ubc_nqueues = 1;
178 1.2 chs }
179 1.2 chs if (ubc_nqueues != 1) {
180 1.2 chs ubc_release_unmap = TRUE;
181 1.2 chs }
182 1.2 chs #endif
183 1.11 chs ubc_winsize = 1 << ubc_winshift;
184 1.2 chs ubc_object.inactive = malloc(UBC_NQUEUES *
185 1.18 chs sizeof(struct ubc_inactive_head), M_TEMP, M_NOWAIT);
186 1.7 enami if (ubc_object.inactive == NULL)
187 1.7 enami panic("ubc_init: failed to allocate inactive queue heads");
188 1.2 chs for (i = 0; i < UBC_NQUEUES; i++) {
189 1.2 chs TAILQ_INIT(&ubc_object.inactive[i]);
190 1.2 chs }
191 1.2 chs for (i = 0; i < ubc_nwins; i++) {
192 1.2 chs umap = &ubc_object.umap[i];
193 1.2 chs TAILQ_INSERT_TAIL(&ubc_object.inactive[i & (UBC_NQUEUES - 1)],
194 1.2 chs umap, inactive);
195 1.2 chs }
196 1.2 chs
197 1.2 chs ubc_object.hash = hashinit(ubc_nwins, HASH_LIST, M_TEMP, M_NOWAIT,
198 1.2 chs &ubc_object.hashmask);
199 1.2 chs for (i = 0; i <= ubc_object.hashmask; i++) {
200 1.2 chs LIST_INIT(&ubc_object.hash[i]);
201 1.2 chs }
202 1.2 chs
203 1.2 chs if (uvm_map(kernel_map, (vaddr_t *)&ubc_object.kva,
204 1.11 chs ubc_nwins << ubc_winshift, &ubc_object.uobj, 0, (vsize_t)va,
205 1.2 chs UVM_MAPFLAG(UVM_PROT_ALL, UVM_PROT_ALL, UVM_INH_NONE,
206 1.9 chs UVM_ADV_RANDOM, UVM_FLAG_NOMERGE)) != 0) {
207 1.2 chs panic("ubc_init: failed to map ubc_object\n");
208 1.2 chs }
209 1.2 chs UVMHIST_INIT(ubchist, 300);
210 1.2 chs }
211 1.2 chs
212 1.2 chs /*
213 1.2 chs * ubc_fault: fault routine for ubc mapping
214 1.2 chs */
215 1.18 chs
216 1.11 chs int
217 1.2 chs ubc_fault(ufi, ign1, ign2, ign3, ign4, fault_type, access_type, flags)
218 1.2 chs struct uvm_faultinfo *ufi;
219 1.2 chs vaddr_t ign1;
220 1.14 chs struct vm_page **ign2;
221 1.2 chs int ign3, ign4;
222 1.2 chs vm_fault_t fault_type;
223 1.2 chs vm_prot_t access_type;
224 1.2 chs int flags;
225 1.2 chs {
226 1.2 chs struct uvm_object *uobj;
227 1.2 chs struct vnode *vp;
228 1.2 chs struct ubc_map *umap;
229 1.2 chs vaddr_t va, eva, ubc_offset, slot_offset;
230 1.18 chs int i, error, npages;
231 1.18 chs struct vm_page *pgs[ubc_winsize >> PAGE_SHIFT], *pg;
232 1.23 chs vm_prot_t prot;
233 1.2 chs UVMHIST_FUNC("ubc_fault"); UVMHIST_CALLED(ubchist);
234 1.2 chs
235 1.2 chs /*
236 1.2 chs * no need to try with PGO_LOCKED...
237 1.2 chs * we don't need to have the map locked since we know that
238 1.2 chs * no one will mess with it until our reference is released.
239 1.2 chs */
240 1.18 chs
241 1.2 chs if (flags & PGO_LOCKED) {
242 1.2 chs uvmfault_unlockall(ufi, NULL, &ubc_object.uobj, NULL);
243 1.2 chs flags &= ~PGO_LOCKED;
244 1.2 chs }
245 1.2 chs
246 1.2 chs va = ufi->orig_rvaddr;
247 1.2 chs ubc_offset = va - (vaddr_t)ubc_object.kva;
248 1.2 chs
249 1.2 chs UVMHIST_LOG(ubchist, "va 0x%lx ubc_offset 0x%lx at %d",
250 1.24 simonb va, ubc_offset, access_type, 0);
251 1.2 chs
252 1.11 chs umap = &ubc_object.umap[ubc_offset >> ubc_winshift];
253 1.2 chs KASSERT(umap->refcount != 0);
254 1.18 chs slot_offset = ubc_offset & (ubc_winsize - 1);
255 1.2 chs
256 1.2 chs /* no umap locking needed since we have a ref on the umap */
257 1.2 chs uobj = umap->uobj;
258 1.2 chs vp = (struct vnode *)uobj;
259 1.18 chs KASSERT(vp != NULL);
260 1.2 chs
261 1.18 chs npages = MIN(ubc_winsize - slot_offset,
262 1.20 chs (round_page(MAX(vp->v_size, umap->offset +
263 1.20 chs umap->writeoff + umap->writelen)) -
264 1.20 chs umap->offset)) >> PAGE_SHIFT;
265 1.2 chs
266 1.2 chs again:
267 1.2 chs memset(pgs, 0, sizeof (pgs));
268 1.2 chs simple_lock(&uobj->vmobjlock);
269 1.2 chs
270 1.2 chs UVMHIST_LOG(ubchist, "slot_offset 0x%x writeoff 0x%x writelen 0x%x "
271 1.18 chs "v_size 0x%x", slot_offset, umap->writeoff, umap->writelen,
272 1.18 chs vp->v_size);
273 1.2 chs UVMHIST_LOG(ubchist, "getpages vp %p offset 0x%x npages %d",
274 1.18 chs uobj, umap->offset + slot_offset, npages, 0);
275 1.2 chs
276 1.18 chs flags |= PGO_PASTEOF;
277 1.5 chs error = VOP_GETPAGES(vp, umap->offset + slot_offset, pgs, &npages, 0,
278 1.5 chs access_type, 0, flags);
279 1.24 simonb UVMHIST_LOG(ubchist, "getpages error %d npages %d", error, npages, 0,
280 1.24 simonb 0);
281 1.2 chs
282 1.5 chs if (error == EAGAIN) {
283 1.2 chs tsleep(&lbolt, PVM, "ubc_fault", 0);
284 1.2 chs goto again;
285 1.2 chs }
286 1.5 chs if (error) {
287 1.10 chs return error;
288 1.5 chs }
289 1.2 chs
290 1.2 chs va = ufi->orig_rvaddr;
291 1.2 chs eva = ufi->orig_rvaddr + (npages << PAGE_SHIFT);
292 1.2 chs
293 1.23 chs /*
294 1.23 chs * for virtually-indexed, virtually-tagged caches we should avoid
295 1.23 chs * creating writable mappings when we don't absolutely need them,
296 1.23 chs * since the "compatible alias" trick doesn't work on such caches.
297 1.23 chs * otherwise, we can always map the pages writable.
298 1.23 chs */
299 1.23 chs
300 1.23 chs #ifdef PMAP_CACHE_VIVT
301 1.23 chs prot = VM_PROT_READ | access_type;
302 1.23 chs #else
303 1.23 chs prot = VM_PROT_READ | VM_PROT_WRITE;
304 1.23 chs #endif
305 1.24 simonb UVMHIST_LOG(ubchist, "va 0x%lx eva 0x%lx", va, eva, 0, 0);
306 1.2 chs simple_lock(&uobj->vmobjlock);
307 1.18 chs uvm_lock_pageq();
308 1.2 chs for (i = 0; va < eva; i++, va += PAGE_SIZE) {
309 1.24 simonb UVMHIST_LOG(ubchist, "pgs[%d] = %p", i, pgs[i], 0, 0);
310 1.2 chs pg = pgs[i];
311 1.2 chs
312 1.2 chs if (pg == NULL || pg == PGO_DONTCARE) {
313 1.2 chs continue;
314 1.2 chs }
315 1.2 chs if (pg->flags & PG_WANTED) {
316 1.2 chs wakeup(pg);
317 1.2 chs }
318 1.2 chs KASSERT((pg->flags & PG_FAKE) == 0);
319 1.2 chs if (pg->flags & PG_RELEASED) {
320 1.18 chs uvm_pagefree(pg);
321 1.2 chs continue;
322 1.2 chs }
323 1.2 chs KASSERT(access_type == VM_PROT_READ ||
324 1.18 chs (pg->flags & PG_RDONLY) == 0);
325 1.18 chs pmap_enter(ufi->orig_map->pmap, va, VM_PAGE_TO_PHYS(pg),
326 1.23 chs prot, access_type);
327 1.2 chs uvm_pageactivate(pg);
328 1.2 chs pg->flags &= ~(PG_BUSY);
329 1.2 chs UVM_PAGE_OWN(pg, NULL);
330 1.2 chs }
331 1.18 chs uvm_unlock_pageq();
332 1.2 chs simple_unlock(&uobj->vmobjlock);
333 1.17 chris pmap_update(ufi->orig_map->pmap);
334 1.8 chs return 0;
335 1.2 chs }
336 1.2 chs
337 1.2 chs /*
338 1.2 chs * local functions
339 1.2 chs */
340 1.2 chs
341 1.11 chs struct ubc_map *
342 1.2 chs ubc_find_mapping(uobj, offset)
343 1.2 chs struct uvm_object *uobj;
344 1.2 chs voff_t offset;
345 1.2 chs {
346 1.2 chs struct ubc_map *umap;
347 1.2 chs
348 1.2 chs LIST_FOREACH(umap, &ubc_object.hash[UBC_HASH(uobj, offset)], hash) {
349 1.2 chs if (umap->uobj == uobj && umap->offset == offset) {
350 1.2 chs return umap;
351 1.2 chs }
352 1.2 chs }
353 1.2 chs return NULL;
354 1.2 chs }
355 1.2 chs
356 1.2 chs
357 1.2 chs /*
358 1.2 chs * ubc interface functions
359 1.2 chs */
360 1.2 chs
361 1.2 chs /*
362 1.18 chs * ubc_alloc: allocate a file mapping window
363 1.2 chs */
364 1.18 chs
365 1.2 chs void *
366 1.2 chs ubc_alloc(uobj, offset, lenp, flags)
367 1.2 chs struct uvm_object *uobj;
368 1.2 chs voff_t offset;
369 1.2 chs vsize_t *lenp;
370 1.2 chs int flags;
371 1.2 chs {
372 1.18 chs struct vnode *vp = (struct vnode *)uobj;
373 1.6 chs vaddr_t slot_offset, va;
374 1.2 chs struct ubc_map *umap;
375 1.6 chs voff_t umap_offset;
376 1.18 chs int error;
377 1.2 chs UVMHIST_FUNC("ubc_alloc"); UVMHIST_CALLED(ubchist);
378 1.2 chs
379 1.2 chs UVMHIST_LOG(ubchist, "uobj %p offset 0x%lx len 0x%lx filesize 0x%x",
380 1.18 chs uobj, offset, *lenp, vp->v_size);
381 1.2 chs
382 1.6 chs umap_offset = (offset & ~((voff_t)ubc_winsize - 1));
383 1.4 enami slot_offset = (vaddr_t)(offset & ((voff_t)ubc_winsize - 1));
384 1.18 chs *lenp = MIN(*lenp, ubc_winsize - slot_offset);
385 1.2 chs
386 1.2 chs /*
387 1.2 chs * the vnode is always locked here, so we don't need to add a ref.
388 1.2 chs */
389 1.2 chs
390 1.2 chs again:
391 1.2 chs simple_lock(&ubc_object.uobj.vmobjlock);
392 1.2 chs umap = ubc_find_mapping(uobj, umap_offset);
393 1.2 chs if (umap == NULL) {
394 1.2 chs umap = TAILQ_FIRST(UBC_QUEUE(offset));
395 1.2 chs if (umap == NULL) {
396 1.2 chs simple_unlock(&ubc_object.uobj.vmobjlock);
397 1.2 chs tsleep(&lbolt, PVM, "ubc_alloc", 0);
398 1.2 chs goto again;
399 1.2 chs }
400 1.2 chs
401 1.2 chs /*
402 1.18 chs * remove from old hash (if any), add to new hash.
403 1.2 chs */
404 1.2 chs
405 1.2 chs if (umap->uobj != NULL) {
406 1.2 chs LIST_REMOVE(umap, hash);
407 1.2 chs }
408 1.2 chs umap->uobj = uobj;
409 1.2 chs umap->offset = umap_offset;
410 1.2 chs LIST_INSERT_HEAD(&ubc_object.hash[UBC_HASH(uobj, umap_offset)],
411 1.18 chs umap, hash);
412 1.18 chs va = UBC_UMAP_ADDR(umap);
413 1.18 chs if (umap->flags & UMAP_MAPPING_CACHED) {
414 1.18 chs umap->flags &= ~UMAP_MAPPING_CACHED;
415 1.18 chs pmap_remove(pmap_kernel(), va, va + ubc_winsize);
416 1.18 chs pmap_update(pmap_kernel());
417 1.18 chs }
418 1.18 chs } else {
419 1.18 chs va = UBC_UMAP_ADDR(umap);
420 1.2 chs }
421 1.2 chs
422 1.2 chs if (umap->refcount == 0) {
423 1.2 chs TAILQ_REMOVE(UBC_QUEUE(offset), umap, inactive);
424 1.2 chs }
425 1.2 chs
426 1.2 chs #ifdef DIAGNOSTIC
427 1.18 chs if ((flags & UBC_WRITE) && (umap->writeoff || umap->writelen)) {
428 1.2 chs panic("ubc_fault: concurrent writes vp %p", uobj);
429 1.2 chs }
430 1.2 chs #endif
431 1.2 chs if (flags & UBC_WRITE) {
432 1.2 chs umap->writeoff = slot_offset;
433 1.2 chs umap->writelen = *lenp;
434 1.2 chs }
435 1.2 chs
436 1.2 chs umap->refcount++;
437 1.2 chs simple_unlock(&ubc_object.uobj.vmobjlock);
438 1.18 chs UVMHIST_LOG(ubchist, "umap %p refs %d va %p flags 0x%x",
439 1.18 chs umap, umap->refcount, va, flags);
440 1.18 chs
441 1.18 chs if (flags & UBC_FAULTBUSY) {
442 1.18 chs int npages = (*lenp + PAGE_SIZE - 1) >> PAGE_SHIFT;
443 1.18 chs struct vm_page *pgs[npages];
444 1.18 chs int gpflags = PGO_SYNCIO|PGO_OVERWRITE|PGO_PASTEOF;
445 1.18 chs int i;
446 1.2 chs
447 1.18 chs if (umap->flags & UMAP_MAPPING_CACHED) {
448 1.18 chs umap->flags &= ~UMAP_MAPPING_CACHED;
449 1.18 chs pmap_remove(pmap_kernel(), va, va + ubc_winsize);
450 1.18 chs }
451 1.22 enami memset(pgs, 0, sizeof(pgs));
452 1.18 chs simple_lock(&uobj->vmobjlock);
453 1.18 chs error = VOP_GETPAGES(vp, trunc_page(offset), pgs, &npages, 0,
454 1.18 chs VM_PROT_READ|VM_PROT_WRITE, 0, gpflags);
455 1.24 simonb UVMHIST_LOG(ubchist, "faultbusy getpages %d", error, 0, 0, 0);
456 1.18 chs if (error) {
457 1.18 chs goto out;
458 1.18 chs }
459 1.18 chs for (i = 0; i < npages; i++) {
460 1.18 chs pmap_kenter_pa(va + slot_offset + (i << PAGE_SHIFT),
461 1.18 chs VM_PAGE_TO_PHYS(pgs[i]),
462 1.18 chs VM_PROT_READ | VM_PROT_WRITE);
463 1.18 chs }
464 1.18 chs pmap_update(pmap_kernel());
465 1.18 chs umap->flags |= UMAP_PAGES_LOCKED;
466 1.18 chs }
467 1.18 chs
468 1.18 chs out:
469 1.18 chs return (void *)(va + slot_offset);
470 1.2 chs }
471 1.2 chs
472 1.18 chs /*
473 1.18 chs * ubc_release: free a file mapping window.
474 1.18 chs */
475 1.2 chs
476 1.2 chs void
477 1.18 chs ubc_release(va, flags)
478 1.2 chs void *va;
479 1.18 chs int flags;
480 1.2 chs {
481 1.2 chs struct ubc_map *umap;
482 1.2 chs struct uvm_object *uobj;
483 1.18 chs vaddr_t umapva;
484 1.18 chs boolean_t unmapped;
485 1.2 chs UVMHIST_FUNC("ubc_release"); UVMHIST_CALLED(ubchist);
486 1.2 chs
487 1.24 simonb UVMHIST_LOG(ubchist, "va %p", va, 0, 0, 0);
488 1.11 chs umap = &ubc_object.umap[((char *)va - ubc_object.kva) >> ubc_winshift];
489 1.18 chs umapva = UBC_UMAP_ADDR(umap);
490 1.2 chs uobj = umap->uobj;
491 1.2 chs KASSERT(uobj != NULL);
492 1.2 chs
493 1.18 chs if (umap->flags & UMAP_PAGES_LOCKED) {
494 1.18 chs int slot_offset = umap->writeoff;
495 1.18 chs int endoff = umap->writeoff + umap->writelen;
496 1.18 chs int zerolen = round_page(endoff) - endoff;
497 1.18 chs int npages = (int)(round_page(umap->writeoff + umap->writelen)
498 1.18 chs - trunc_page(umap->writeoff)) >> PAGE_SHIFT;
499 1.18 chs struct vm_page *pgs[npages];
500 1.18 chs paddr_t pa;
501 1.18 chs int i;
502 1.18 chs boolean_t rv;
503 1.18 chs
504 1.18 chs if (zerolen) {
505 1.18 chs memset((char *)umapva + endoff, 0, zerolen);
506 1.18 chs }
507 1.18 chs umap->flags &= ~UMAP_PAGES_LOCKED;
508 1.18 chs uvm_lock_pageq();
509 1.18 chs for (i = 0; i < npages; i++) {
510 1.18 chs rv = pmap_extract(pmap_kernel(),
511 1.18 chs umapva + slot_offset + (i << PAGE_SHIFT), &pa);
512 1.18 chs KASSERT(rv);
513 1.18 chs pgs[i] = PHYS_TO_VM_PAGE(pa);
514 1.18 chs pgs[i]->flags &= ~(PG_FAKE|PG_CLEAN);
515 1.18 chs uvm_pageactivate(pgs[i]);
516 1.18 chs }
517 1.18 chs uvm_unlock_pageq();
518 1.18 chs pmap_kremove(umapva, ubc_winsize);
519 1.18 chs pmap_update(pmap_kernel());
520 1.18 chs uvm_page_unbusy(pgs, npages);
521 1.18 chs unmapped = TRUE;
522 1.18 chs } else {
523 1.18 chs unmapped = FALSE;
524 1.18 chs }
525 1.18 chs
526 1.18 chs simple_lock(&ubc_object.uobj.vmobjlock);
527 1.2 chs umap->writeoff = 0;
528 1.2 chs umap->writelen = 0;
529 1.2 chs umap->refcount--;
530 1.2 chs if (umap->refcount == 0) {
531 1.2 chs if (UBC_RELEASE_UNMAP &&
532 1.2 chs (((struct vnode *)uobj)->v_flag & VTEXT)) {
533 1.2 chs
534 1.2 chs /*
535 1.2 chs * if this file is the executable image of
536 1.2 chs * some process, that process will likely have
537 1.2 chs * the file mapped at an alignment other than
538 1.2 chs * what PMAP_PREFER() would like. we'd like
539 1.2 chs * to have process text be able to use the
540 1.2 chs * cache even if someone is also reading the
541 1.2 chs * file, so invalidate mappings of such files
542 1.2 chs * as soon as possible.
543 1.2 chs */
544 1.2 chs
545 1.18 chs pmap_remove(pmap_kernel(), umapva,
546 1.18 chs umapva + ubc_winsize);
547 1.18 chs umap->flags &= ~UMAP_MAPPING_CACHED;
548 1.17 chris pmap_update(pmap_kernel());
549 1.2 chs LIST_REMOVE(umap, hash);
550 1.2 chs umap->uobj = NULL;
551 1.2 chs TAILQ_INSERT_HEAD(UBC_QUEUE(umap->offset), umap,
552 1.2 chs inactive);
553 1.2 chs } else {
554 1.18 chs if (!unmapped) {
555 1.18 chs umap->flags |= UMAP_MAPPING_CACHED;
556 1.18 chs }
557 1.2 chs TAILQ_INSERT_TAIL(UBC_QUEUE(umap->offset), umap,
558 1.2 chs inactive);
559 1.2 chs }
560 1.2 chs }
561 1.24 simonb UVMHIST_LOG(ubchist, "umap %p refs %d", umap, umap->refcount, 0, 0);
562 1.2 chs simple_unlock(&ubc_object.uobj.vmobjlock);
563 1.2 chs }
564 1.2 chs
565 1.2 chs
566 1.2 chs /*
567 1.2 chs * removing a range of mappings from the ubc mapping cache.
568 1.2 chs */
569 1.2 chs
570 1.2 chs void
571 1.2 chs ubc_flush(uobj, start, end)
572 1.2 chs struct uvm_object *uobj;
573 1.2 chs voff_t start, end;
574 1.2 chs {
575 1.2 chs struct ubc_map *umap;
576 1.2 chs vaddr_t va;
577 1.2 chs UVMHIST_FUNC("ubc_flush"); UVMHIST_CALLED(ubchist);
578 1.2 chs
579 1.2 chs UVMHIST_LOG(ubchist, "uobj %p start 0x%lx end 0x%lx",
580 1.24 simonb uobj, start, end, 0);
581 1.2 chs
582 1.2 chs simple_lock(&ubc_object.uobj.vmobjlock);
583 1.2 chs for (umap = ubc_object.umap;
584 1.2 chs umap < &ubc_object.umap[ubc_nwins];
585 1.2 chs umap++) {
586 1.2 chs
587 1.18 chs if (umap->uobj != uobj || umap->offset < start ||
588 1.2 chs (umap->offset >= end && end != 0) ||
589 1.2 chs umap->refcount > 0) {
590 1.2 chs continue;
591 1.2 chs }
592 1.2 chs
593 1.2 chs /*
594 1.2 chs * remove from hash,
595 1.2 chs * move to head of inactive queue.
596 1.2 chs */
597 1.2 chs
598 1.2 chs va = (vaddr_t)(ubc_object.kva +
599 1.18 chs ((umap - ubc_object.umap) << ubc_winshift));
600 1.4 enami pmap_remove(pmap_kernel(), va, va + ubc_winsize);
601 1.2 chs
602 1.2 chs LIST_REMOVE(umap, hash);
603 1.2 chs umap->uobj = NULL;
604 1.2 chs TAILQ_REMOVE(UBC_QUEUE(umap->offset), umap, inactive);
605 1.2 chs TAILQ_INSERT_HEAD(UBC_QUEUE(umap->offset), umap, inactive);
606 1.2 chs }
607 1.18 chs pmap_update(pmap_kernel());
608 1.2 chs simple_unlock(&ubc_object.uobj.vmobjlock);
609 1.2 chs }
610