xref: /freebsd/sys/vm/vnode_pager.c (revision ee2ea5ceafed78a5bd9810beb9e3ca927180c226)
1 /*
2  * Copyright (c) 1990 University of Utah.
3  * Copyright (c) 1991 The Regents of the University of California.
4  * All rights reserved.
5  * Copyright (c) 1993, 1994 John S. Dyson
6  * Copyright (c) 1995, David Greenman
7  *
8  * This code is derived from software contributed to Berkeley by
9  * the Systems Programming Group of the University of Utah Computer
10  * Science Department.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *	This product includes software developed by the University of
23  *	California, Berkeley and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *	from: @(#)vnode_pager.c	7.5 (Berkeley) 4/20/91
41  * $FreeBSD$
42  */
43 
44 /*
45  * Page to/from files (vnodes).
46  */
47 
48 /*
49  * TODO:
50  *	Implement VOP_GETPAGES/PUTPAGES interface for filesystems. Will
51  *	greatly re-simplify the vnode_pager.
52  */
53 
54 #include <sys/param.h>
55 #include <sys/systm.h>
56 #include <sys/proc.h>
57 #include <sys/vnode.h>
58 #include <sys/mount.h>
59 #include <sys/bio.h>
60 #include <sys/buf.h>
61 #include <sys/vmmeter.h>
62 #include <sys/conf.h>
63 
64 #include <vm/vm.h>
65 #include <vm/vm_object.h>
66 #include <vm/vm_page.h>
67 #include <vm/vm_pager.h>
68 #include <vm/vm_map.h>
69 #include <vm/vnode_pager.h>
70 #include <vm/vm_extern.h>
71 
72 static void vnode_pager_init(void);
73 static vm_offset_t vnode_pager_addr(struct vnode *vp, vm_ooffset_t address,
74 					 int *run);
75 static void vnode_pager_iodone(struct buf *bp);
76 static int vnode_pager_input_smlfs(vm_object_t object, vm_page_t m);
77 static int vnode_pager_input_old(vm_object_t object, vm_page_t m);
78 static void vnode_pager_dealloc(vm_object_t);
79 static int vnode_pager_getpages(vm_object_t, vm_page_t *, int, int);
80 static void vnode_pager_putpages(vm_object_t, vm_page_t *, int, boolean_t, int *);
81 static boolean_t vnode_pager_haspage(vm_object_t, vm_pindex_t, int *, int *);
82 
83 struct pagerops vnodepagerops = {
84 	vnode_pager_init,
85 	vnode_pager_alloc,
86 	vnode_pager_dealloc,
87 	vnode_pager_getpages,
88 	vnode_pager_putpages,
89 	vnode_pager_haspage,
90 	NULL
91 };
92 
93 int vnode_pbuf_freecnt;
94 
95 void
96 vnode_pager_init(void)
97 {
98 
99 	vnode_pbuf_freecnt = nswbuf / 2 + 1;
100 }
101 
102 /*
103  * Allocate (or lookup) pager for a vnode.
104  * Handle is a vnode pointer.
105  */
106 vm_object_t
107 vnode_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
108 		  vm_ooffset_t offset)
109 {
110 	vm_object_t object;
111 	struct vnode *vp;
112 
113 	GIANT_REQUIRED;
114 
115 	/*
116 	 * Pageout to vnode, no can do yet.
117 	 */
118 	if (handle == NULL)
119 		return (NULL);
120 
121 	vp = (struct vnode *) handle;
122 
123 	/*
124 	 * Prevent race condition when allocating the object. This
125 	 * can happen with NFS vnodes since the nfsnode isn't locked.
126 	 */
127 	while (vp->v_flag & VOLOCK) {
128 		vp->v_flag |= VOWANT;
129 		tsleep(vp, PVM, "vnpobj", 0);
130 	}
131 	vp->v_flag |= VOLOCK;
132 
133 	/*
134 	 * If the object is being terminated, wait for it to
135 	 * go away.
136 	 */
137 	while (((object = vp->v_object) != NULL) &&
138 		(object->flags & OBJ_DEAD)) {
139 		tsleep(object, PVM, "vadead", 0);
140 	}
141 
142 	if (vp->v_usecount == 0)
143 		panic("vnode_pager_alloc: no vnode reference");
144 
145 	if (object == NULL) {
146 		/*
147 		 * And an object of the appropriate size
148 		 */
149 		object = vm_object_allocate(OBJT_VNODE, OFF_TO_IDX(round_page(size)));
150 		object->flags = 0;
151 
152 		object->un_pager.vnp.vnp_size = size;
153 
154 		object->handle = handle;
155 		vp->v_object = object;
156 		vp->v_usecount++;
157 	} else {
158 		object->ref_count++;
159 		vp->v_usecount++;
160 	}
161 
162 	vp->v_flag &= ~VOLOCK;
163 	if (vp->v_flag & VOWANT) {
164 		vp->v_flag &= ~VOWANT;
165 		wakeup(vp);
166 	}
167 	return (object);
168 }
169 
170 static void
171 vnode_pager_dealloc(object)
172 	vm_object_t object;
173 {
174 	struct vnode *vp = object->handle;
175 
176 	GIANT_REQUIRED;
177 	if (vp == NULL)
178 		panic("vnode_pager_dealloc: pager already dealloced");
179 
180 	vm_object_pip_wait(object, "vnpdea");
181 
182 	object->handle = NULL;
183 	object->type = OBJT_DEAD;
184 	vp->v_object = NULL;
185 	vp->v_flag &= ~(VTEXT | VOBJBUF);
186 }
187 
188 static boolean_t
189 vnode_pager_haspage(object, pindex, before, after)
190 	vm_object_t object;
191 	vm_pindex_t pindex;
192 	int *before;
193 	int *after;
194 {
195 	struct vnode *vp = object->handle;
196 	daddr64_t bn;
197 	int err;
198 	daddr_t reqblock;
199 	int poff;
200 	int bsize;
201 	int pagesperblock, blocksperpage;
202 
203 	GIANT_REQUIRED;
204 	/*
205 	 * If no vp or vp is doomed or marked transparent to VM, we do not
206 	 * have the page.
207 	 */
208 	if ((vp == NULL) || (vp->v_flag & VDOOMED))
209 		return FALSE;
210 
211 	/*
212 	 * If filesystem no longer mounted or offset beyond end of file we do
213 	 * not have the page.
214 	 */
215 	if ((vp->v_mount == NULL) ||
216 	    (IDX_TO_OFF(pindex) >= object->un_pager.vnp.vnp_size))
217 		return FALSE;
218 
219 	bsize = vp->v_mount->mnt_stat.f_iosize;
220 	pagesperblock = bsize / PAGE_SIZE;
221 	blocksperpage = 0;
222 	if (pagesperblock > 0) {
223 		reqblock = pindex / pagesperblock;
224 	} else {
225 		blocksperpage = (PAGE_SIZE / bsize);
226 		reqblock = pindex * blocksperpage;
227 	}
228 	err = VOP_BMAP(vp, reqblock, (struct vnode **) 0, &bn,
229 		after, before);
230 	if (err)
231 		return TRUE;
232 	if (bn == -1)
233 		return FALSE;
234 	if (pagesperblock > 0) {
235 		poff = pindex - (reqblock * pagesperblock);
236 		if (before) {
237 			*before *= pagesperblock;
238 			*before += poff;
239 		}
240 		if (after) {
241 			int numafter;
242 			*after *= pagesperblock;
243 			numafter = pagesperblock - (poff + 1);
244 			if (IDX_TO_OFF(pindex + numafter) > object->un_pager.vnp.vnp_size) {
245 				numafter = OFF_TO_IDX((object->un_pager.vnp.vnp_size - IDX_TO_OFF(pindex)));
246 			}
247 			*after += numafter;
248 		}
249 	} else {
250 		if (before) {
251 			*before /= blocksperpage;
252 		}
253 
254 		if (after) {
255 			*after /= blocksperpage;
256 		}
257 	}
258 	return TRUE;
259 }
260 
261 /*
262  * Lets the VM system know about a change in size for a file.
263  * We adjust our own internal size and flush any cached pages in
264  * the associated object that are affected by the size change.
265  *
266  * Note: this routine may be invoked as a result of a pager put
267  * operation (possibly at object termination time), so we must be careful.
268  */
269 void
270 vnode_pager_setsize(vp, nsize)
271 	struct vnode *vp;
272 	vm_ooffset_t nsize;
273 {
274 	vm_pindex_t nobjsize;
275 	vm_object_t object = vp->v_object;
276 
277 	GIANT_REQUIRED;
278 
279 	if (object == NULL)
280 		return;
281 
282 	/*
283 	 * Hasn't changed size
284 	 */
285 	if (nsize == object->un_pager.vnp.vnp_size)
286 		return;
287 
288 	nobjsize = OFF_TO_IDX(nsize + PAGE_MASK);
289 
290 	/*
291 	 * File has shrunk. Toss any cached pages beyond the new EOF.
292 	 */
293 	if (nsize < object->un_pager.vnp.vnp_size) {
294 #ifdef ENABLE_VFS_IOOPT
295 		vm_freeze_copyopts(object, OFF_TO_IDX(nsize), object->size);
296 #endif
297 		if (nobjsize < object->size) {
298 			vm_object_page_remove(object, nobjsize, object->size,
299 				FALSE);
300 		}
301 		/*
302 		 * this gets rid of garbage at the end of a page that is now
303 		 * only partially backed by the vnode.
304 		 *
305 		 * XXX for some reason (I don't know yet), if we take a
306 		 * completely invalid page and mark it partially valid
307 		 * it can screw up NFS reads, so we don't allow the case.
308 		 */
309 		if (nsize & PAGE_MASK) {
310 			vm_page_t m;
311 
312 			m = vm_page_lookup(object, OFF_TO_IDX(nsize));
313 			if (m && m->valid) {
314 				int base = (int)nsize & PAGE_MASK;
315 				int size = PAGE_SIZE - base;
316 
317 				/*
318 				 * Clear out partial-page garbage in case
319 				 * the page has been mapped.
320 				 */
321 				vm_page_zero_fill_area(m, base, size);
322 
323 				/*
324 				 * XXX work around SMP data integrity race
325 				 * by unmapping the page from user processes.
326 				 * The garbage we just cleared may be mapped
327 				 * to a user process running on another cpu
328 				 * and this code is not running through normal
329 				 * I/O channels which handle SMP issues for
330 				 * us, so unmap page to synchronize all cpus.
331 				 *
332 				 * XXX should vm_pager_unmap_page() have
333 				 * dealt with this?
334 				 */
335 				vm_page_protect(m, VM_PROT_NONE);
336 
337 				/*
338 				 * Clear out partial-page dirty bits.  This
339 				 * has the side effect of setting the valid
340 				 * bits, but that is ok.  There are a bunch
341 				 * of places in the VM system where we expected
342 				 * m->dirty == VM_PAGE_BITS_ALL.  The file EOF
343 				 * case is one of them.  If the page is still
344 				 * partially dirty, make it fully dirty.
345 				 *
346 				 * note that we do not clear out the valid
347 				 * bits.  This would prevent bogus_page
348 				 * replacement from working properly.
349 				 */
350 				vm_page_set_validclean(m, base, size);
351 				if (m->dirty != 0)
352 					m->dirty = VM_PAGE_BITS_ALL;
353 			}
354 		}
355 	}
356 	object->un_pager.vnp.vnp_size = nsize;
357 	object->size = nobjsize;
358 }
359 
360 /*
361  * calculate the linear (byte) disk address of specified virtual
362  * file address
363  */
364 static vm_offset_t
365 vnode_pager_addr(vp, address, run)
366 	struct vnode *vp;
367 	vm_ooffset_t address;
368 	int *run;
369 {
370 	int rtaddress;
371 	int bsize;
372 	daddr64_t block;
373 	struct vnode *rtvp;
374 	int err;
375 	daddr_t vblock;
376 	int voffset;
377 
378 	GIANT_REQUIRED;
379 	if ((int) address < 0)
380 		return -1;
381 
382 	if (vp->v_mount == NULL)
383 		return -1;
384 
385 	bsize = vp->v_mount->mnt_stat.f_iosize;
386 	vblock = address / bsize;
387 	voffset = address % bsize;
388 
389 	err = VOP_BMAP(vp, vblock, &rtvp, &block, run, NULL);
390 
391 	if (err || (block == -1))
392 		rtaddress = -1;
393 	else {
394 		rtaddress = block + voffset / DEV_BSIZE;
395 		if (run) {
396 			*run += 1;
397 			*run *= bsize/PAGE_SIZE;
398 			*run -= voffset/PAGE_SIZE;
399 		}
400 	}
401 
402 	return rtaddress;
403 }
404 
405 /*
406  * interrupt routine for I/O completion
407  */
408 static void
409 vnode_pager_iodone(bp)
410 	struct buf *bp;
411 {
412 	bp->b_flags |= B_DONE;
413 	wakeup(bp);
414 }
415 
416 /*
417  * small block file system vnode pager input
418  */
419 static int
420 vnode_pager_input_smlfs(object, m)
421 	vm_object_t object;
422 	vm_page_t m;
423 {
424 	int i;
425 	int s;
426 	struct vnode *dp, *vp;
427 	struct buf *bp;
428 	vm_offset_t kva;
429 	int fileaddr;
430 	vm_offset_t bsize;
431 	int error = 0;
432 
433 	GIANT_REQUIRED;
434 
435 	vp = object->handle;
436 	if (vp->v_mount == NULL)
437 		return VM_PAGER_BAD;
438 
439 	bsize = vp->v_mount->mnt_stat.f_iosize;
440 
441 	VOP_BMAP(vp, 0, &dp, 0, NULL, NULL);
442 
443 	kva = vm_pager_map_page(m);
444 
445 	for (i = 0; i < PAGE_SIZE / bsize; i++) {
446 		vm_ooffset_t address;
447 
448 		if (vm_page_bits(i * bsize, bsize) & m->valid)
449 			continue;
450 
451 		address = IDX_TO_OFF(m->pindex) + i * bsize;
452 		if (address >= object->un_pager.vnp.vnp_size) {
453 			fileaddr = -1;
454 		} else {
455 			fileaddr = vnode_pager_addr(vp, address, NULL);
456 		}
457 		if (fileaddr != -1) {
458 			bp = getpbuf(&vnode_pbuf_freecnt);
459 
460 			/* build a minimal buffer header */
461 			bp->b_iocmd = BIO_READ;
462 			bp->b_iodone = vnode_pager_iodone;
463 			KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
464 			KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
465 			bp->b_rcred = crhold(curthread->td_ucred);
466 			bp->b_wcred = crhold(curthread->td_ucred);
467 			bp->b_data = (caddr_t) kva + i * bsize;
468 			bp->b_blkno = fileaddr;
469 			pbgetvp(dp, bp);
470 			bp->b_bcount = bsize;
471 			bp->b_bufsize = bsize;
472 			bp->b_runningbufspace = bp->b_bufsize;
473 			runningbufspace += bp->b_runningbufspace;
474 
475 			/* do the input */
476 			BUF_STRATEGY(bp);
477 
478 			/* we definitely need to be at splvm here */
479 
480 			s = splvm();
481 			while ((bp->b_flags & B_DONE) == 0) {
482 				tsleep(bp, PVM, "vnsrd", 0);
483 			}
484 			splx(s);
485 			if ((bp->b_ioflags & BIO_ERROR) != 0)
486 				error = EIO;
487 
488 			/*
489 			 * free the buffer header back to the swap buffer pool
490 			 */
491 			relpbuf(bp, &vnode_pbuf_freecnt);
492 			if (error)
493 				break;
494 
495 			vm_page_set_validclean(m, (i * bsize) & PAGE_MASK, bsize);
496 		} else {
497 			vm_page_set_validclean(m, (i * bsize) & PAGE_MASK, bsize);
498 			bzero((caddr_t) kva + i * bsize, bsize);
499 		}
500 	}
501 	vm_pager_unmap_page(kva);
502 	pmap_clear_modify(m);
503 	vm_page_flag_clear(m, PG_ZERO);
504 	if (error) {
505 		return VM_PAGER_ERROR;
506 	}
507 	return VM_PAGER_OK;
508 
509 }
510 
511 
512 /*
513  * old style vnode pager output routine
514  */
515 static int
516 vnode_pager_input_old(object, m)
517 	vm_object_t object;
518 	vm_page_t m;
519 {
520 	struct uio auio;
521 	struct iovec aiov;
522 	int error;
523 	int size;
524 	vm_offset_t kva;
525 	struct vnode *vp;
526 
527 	GIANT_REQUIRED;
528 	error = 0;
529 
530 	/*
531 	 * Return failure if beyond current EOF
532 	 */
533 	if (IDX_TO_OFF(m->pindex) >= object->un_pager.vnp.vnp_size) {
534 		return VM_PAGER_BAD;
535 	} else {
536 		size = PAGE_SIZE;
537 		if (IDX_TO_OFF(m->pindex) + size > object->un_pager.vnp.vnp_size)
538 			size = object->un_pager.vnp.vnp_size - IDX_TO_OFF(m->pindex);
539 
540 		/*
541 		 * Allocate a kernel virtual address and initialize so that
542 		 * we can use VOP_READ/WRITE routines.
543 		 */
544 		kva = vm_pager_map_page(m);
545 
546 		vp = object->handle;
547 		aiov.iov_base = (caddr_t) kva;
548 		aiov.iov_len = size;
549 		auio.uio_iov = &aiov;
550 		auio.uio_iovcnt = 1;
551 		auio.uio_offset = IDX_TO_OFF(m->pindex);
552 		auio.uio_segflg = UIO_SYSSPACE;
553 		auio.uio_rw = UIO_READ;
554 		auio.uio_resid = size;
555 		auio.uio_td = curthread;
556 
557 		error = VOP_READ(vp, &auio, 0, curthread->td_ucred);
558 		if (!error) {
559 			int count = size - auio.uio_resid;
560 
561 			if (count == 0)
562 				error = EINVAL;
563 			else if (count != PAGE_SIZE)
564 				bzero((caddr_t) kva + count, PAGE_SIZE - count);
565 		}
566 		vm_pager_unmap_page(kva);
567 	}
568 	pmap_clear_modify(m);
569 	vm_page_undirty(m);
570 	vm_page_flag_clear(m, PG_ZERO);
571 	if (!error)
572 		m->valid = VM_PAGE_BITS_ALL;
573 	return error ? VM_PAGER_ERROR : VM_PAGER_OK;
574 }
575 
576 /*
577  * generic vnode pager input routine
578  */
579 
580 /*
581  * Local media VFS's that do not implement their own VOP_GETPAGES
582  * should have their VOP_GETPAGES should call to
583  * vnode_pager_generic_getpages() to implement the previous behaviour.
584  *
585  * All other FS's should use the bypass to get to the local media
586  * backing vp's VOP_GETPAGES.
587  */
588 static int
589 vnode_pager_getpages(object, m, count, reqpage)
590 	vm_object_t object;
591 	vm_page_t *m;
592 	int count;
593 	int reqpage;
594 {
595 	int rtval;
596 	struct vnode *vp;
597 	int bytes = count * PAGE_SIZE;
598 
599 	GIANT_REQUIRED;
600 	vp = object->handle;
601 	rtval = VOP_GETPAGES(vp, m, bytes, reqpage, 0);
602 	KASSERT(rtval != EOPNOTSUPP,
603 	    ("vnode_pager: FS getpages not implemented\n"));
604 	return rtval;
605 }
606 
607 
608 /*
609  * This is now called from local media FS's to operate against their
610  * own vnodes if they fail to implement VOP_GETPAGES.
611  */
612 int
613 vnode_pager_generic_getpages(vp, m, bytecount, reqpage)
614 	struct vnode *vp;
615 	vm_page_t *m;
616 	int bytecount;
617 	int reqpage;
618 {
619 	vm_object_t object;
620 	vm_offset_t kva;
621 	off_t foff, tfoff, nextoff;
622 	int i, size, bsize, first, firstaddr;
623 	struct vnode *dp;
624 	int runpg;
625 	int runend;
626 	struct buf *bp;
627 	int s;
628 	int count;
629 	int error = 0;
630 
631 	GIANT_REQUIRED;
632 	object = vp->v_object;
633 	count = bytecount / PAGE_SIZE;
634 
635 	if (vp->v_mount == NULL)
636 		return VM_PAGER_BAD;
637 
638 	bsize = vp->v_mount->mnt_stat.f_iosize;
639 
640 	/* get the UNDERLYING device for the file with VOP_BMAP() */
641 
642 	/*
643 	 * originally, we did not check for an error return value -- assuming
644 	 * an fs always has a bmap entry point -- that assumption is wrong!!!
645 	 */
646 	foff = IDX_TO_OFF(m[reqpage]->pindex);
647 
648 	/*
649 	 * if we can't bmap, use old VOP code
650 	 */
651 	if (VOP_BMAP(vp, 0, &dp, 0, NULL, NULL)) {
652 		for (i = 0; i < count; i++) {
653 			if (i != reqpage) {
654 				vm_page_free(m[i]);
655 			}
656 		}
657 		cnt.v_vnodein++;
658 		cnt.v_vnodepgsin++;
659 		return vnode_pager_input_old(object, m[reqpage]);
660 
661 		/*
662 		 * if the blocksize is smaller than a page size, then use
663 		 * special small filesystem code.  NFS sometimes has a small
664 		 * blocksize, but it can handle large reads itself.
665 		 */
666 	} else if ((PAGE_SIZE / bsize) > 1 &&
667 	    (vp->v_mount->mnt_stat.f_type != nfs_mount_type)) {
668 		for (i = 0; i < count; i++) {
669 			if (i != reqpage) {
670 				vm_page_free(m[i]);
671 			}
672 		}
673 		cnt.v_vnodein++;
674 		cnt.v_vnodepgsin++;
675 		return vnode_pager_input_smlfs(object, m[reqpage]);
676 	}
677 
678 	/*
679 	 * If we have a completely valid page available to us, we can
680 	 * clean up and return.  Otherwise we have to re-read the
681 	 * media.
682 	 */
683 	if (m[reqpage]->valid == VM_PAGE_BITS_ALL) {
684 		for (i = 0; i < count; i++) {
685 			if (i != reqpage)
686 				vm_page_free(m[i]);
687 		}
688 		return VM_PAGER_OK;
689 	}
690 	m[reqpage]->valid = 0;
691 
692 	/*
693 	 * here on direct device I/O
694 	 */
695 	firstaddr = -1;
696 
697 	/*
698 	 * calculate the run that includes the required page
699 	 */
700 	for (first = 0, i = 0; i < count; i = runend) {
701 		firstaddr = vnode_pager_addr(vp,
702 			IDX_TO_OFF(m[i]->pindex), &runpg);
703 		if (firstaddr == -1) {
704 			if (i == reqpage && foff < object->un_pager.vnp.vnp_size) {
705 				/* XXX no %qd in kernel. */
706 				panic("vnode_pager_getpages: unexpected missing page: firstaddr: %d, foff: 0x%lx%08lx, vnp_size: 0x%lx%08lx",
707 			   	 firstaddr, (u_long)(foff >> 32),
708 			   	 (u_long)(u_int32_t)foff,
709 				 (u_long)(u_int32_t)
710 				 (object->un_pager.vnp.vnp_size >> 32),
711 				 (u_long)(u_int32_t)
712 				 object->un_pager.vnp.vnp_size);
713 			}
714 			vm_page_free(m[i]);
715 			runend = i + 1;
716 			first = runend;
717 			continue;
718 		}
719 		runend = i + runpg;
720 		if (runend <= reqpage) {
721 			int j;
722 			for (j = i; j < runend; j++) {
723 				vm_page_free(m[j]);
724 			}
725 		} else {
726 			if (runpg < (count - first)) {
727 				for (i = first + runpg; i < count; i++)
728 					vm_page_free(m[i]);
729 				count = first + runpg;
730 			}
731 			break;
732 		}
733 		first = runend;
734 	}
735 
736 	/*
737 	 * the first and last page have been calculated now, move input pages
738 	 * to be zero based...
739 	 */
740 	if (first != 0) {
741 		for (i = first; i < count; i++) {
742 			m[i - first] = m[i];
743 		}
744 		count -= first;
745 		reqpage -= first;
746 	}
747 
748 	/*
749 	 * calculate the file virtual address for the transfer
750 	 */
751 	foff = IDX_TO_OFF(m[0]->pindex);
752 
753 	/*
754 	 * calculate the size of the transfer
755 	 */
756 	size = count * PAGE_SIZE;
757 	if ((foff + size) > object->un_pager.vnp.vnp_size)
758 		size = object->un_pager.vnp.vnp_size - foff;
759 
760 	/*
761 	 * round up physical size for real devices.
762 	 */
763 	if (dp->v_type == VBLK || dp->v_type == VCHR) {
764 		int secmask = dp->v_rdev->si_bsize_phys - 1;
765 		KASSERT(secmask < PAGE_SIZE, ("vnode_pager_generic_getpages: sector size %d too large\n", secmask + 1));
766 		size = (size + secmask) & ~secmask;
767 	}
768 
769 	bp = getpbuf(&vnode_pbuf_freecnt);
770 	kva = (vm_offset_t) bp->b_data;
771 
772 	/*
773 	 * and map the pages to be read into the kva
774 	 */
775 	pmap_qenter(kva, m, count);
776 
777 	/* build a minimal buffer header */
778 	bp->b_iocmd = BIO_READ;
779 	bp->b_iodone = vnode_pager_iodone;
780 	/* B_PHYS is not set, but it is nice to fill this in */
781 	KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
782 	KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
783 	bp->b_rcred = crhold(curthread->td_ucred);
784 	bp->b_wcred = crhold(curthread->td_ucred);
785 	bp->b_blkno = firstaddr;
786 	pbgetvp(dp, bp);
787 	bp->b_bcount = size;
788 	bp->b_bufsize = size;
789 	bp->b_runningbufspace = bp->b_bufsize;
790 	runningbufspace += bp->b_runningbufspace;
791 
792 	cnt.v_vnodein++;
793 	cnt.v_vnodepgsin += count;
794 
795 	/* do the input */
796 	BUF_STRATEGY(bp);
797 
798 	s = splvm();
799 	/* we definitely need to be at splvm here */
800 
801 	while ((bp->b_flags & B_DONE) == 0) {
802 		tsleep(bp, PVM, "vnread", 0);
803 	}
804 	splx(s);
805 	if ((bp->b_ioflags & BIO_ERROR) != 0)
806 		error = EIO;
807 
808 	if (!error) {
809 		if (size != count * PAGE_SIZE)
810 			bzero((caddr_t) kva + size, PAGE_SIZE * count - size);
811 	}
812 	pmap_qremove(kva, count);
813 
814 	/*
815 	 * free the buffer header back to the swap buffer pool
816 	 */
817 	relpbuf(bp, &vnode_pbuf_freecnt);
818 
819 	for (i = 0, tfoff = foff; i < count; i++, tfoff = nextoff) {
820 		vm_page_t mt;
821 
822 		nextoff = tfoff + PAGE_SIZE;
823 		mt = m[i];
824 
825 		if (nextoff <= object->un_pager.vnp.vnp_size) {
826 			/*
827 			 * Read filled up entire page.
828 			 */
829 			mt->valid = VM_PAGE_BITS_ALL;
830 			vm_page_undirty(mt);	/* should be an assert? XXX */
831 			pmap_clear_modify(mt);
832 		} else {
833 			/*
834 			 * Read did not fill up entire page.  Since this
835 			 * is getpages, the page may be mapped, so we have
836 			 * to zero the invalid portions of the page even
837 			 * though we aren't setting them valid.
838 			 *
839 			 * Currently we do not set the entire page valid,
840 			 * we just try to clear the piece that we couldn't
841 			 * read.
842 			 */
843 			vm_page_set_validclean(mt, 0,
844 			    object->un_pager.vnp.vnp_size - tfoff);
845 			/* handled by vm_fault now */
846 			/* vm_page_zero_invalid(mt, FALSE); */
847 		}
848 
849 		vm_page_flag_clear(mt, PG_ZERO);
850 		if (i != reqpage) {
851 
852 			/*
853 			 * whether or not to leave the page activated is up in
854 			 * the air, but we should put the page on a page queue
855 			 * somewhere. (it already is in the object). Result:
856 			 * It appears that empirical results show that
857 			 * deactivating pages is best.
858 			 */
859 
860 			/*
861 			 * just in case someone was asking for this page we
862 			 * now tell them that it is ok to use
863 			 */
864 			if (!error) {
865 				if (mt->flags & PG_WANTED)
866 					vm_page_activate(mt);
867 				else
868 					vm_page_deactivate(mt);
869 				vm_page_wakeup(mt);
870 			} else {
871 				vm_page_free(mt);
872 			}
873 		}
874 	}
875 	if (error) {
876 		printf("vnode_pager_getpages: I/O read error\n");
877 	}
878 	return (error ? VM_PAGER_ERROR : VM_PAGER_OK);
879 }
880 
881 /*
882  * EOPNOTSUPP is no longer legal.  For local media VFS's that do not
883  * implement their own VOP_PUTPAGES, their VOP_PUTPAGES should call to
884  * vnode_pager_generic_putpages() to implement the previous behaviour.
885  *
886  * All other FS's should use the bypass to get to the local media
887  * backing vp's VOP_PUTPAGES.
888  */
889 static void
890 vnode_pager_putpages(object, m, count, sync, rtvals)
891 	vm_object_t object;
892 	vm_page_t *m;
893 	int count;
894 	boolean_t sync;
895 	int *rtvals;
896 {
897 	int rtval;
898 	struct vnode *vp;
899 	struct mount *mp;
900 	int bytes = count * PAGE_SIZE;
901 
902 	GIANT_REQUIRED;
903 	/*
904 	 * Force synchronous operation if we are extremely low on memory
905 	 * to prevent a low-memory deadlock.  VOP operations often need to
906 	 * allocate more memory to initiate the I/O ( i.e. do a BMAP
907 	 * operation ).  The swapper handles the case by limiting the amount
908 	 * of asynchronous I/O, but that sort of solution doesn't scale well
909 	 * for the vnode pager without a lot of work.
910 	 *
911 	 * Also, the backing vnode's iodone routine may not wake the pageout
912 	 * daemon up.  This should be probably be addressed XXX.
913 	 */
914 
915 	if ((cnt.v_free_count + cnt.v_cache_count) < cnt.v_pageout_free_min)
916 		sync |= OBJPC_SYNC;
917 
918 	/*
919 	 * Call device-specific putpages function
920 	 */
921 	vp = object->handle;
922 	if (vp->v_type != VREG)
923 		mp = NULL;
924 	(void)vn_start_write(vp, &mp, V_WAIT);
925 	rtval = VOP_PUTPAGES(vp, m, bytes, sync, rtvals, 0);
926 	KASSERT(rtval != EOPNOTSUPP,
927 	    ("vnode_pager: stale FS putpages\n"));
928 	vn_finished_write(mp);
929 }
930 
931 
932 /*
933  * This is now called from local media FS's to operate against their
934  * own vnodes if they fail to implement VOP_PUTPAGES.
935  *
936  * This is typically called indirectly via the pageout daemon and
937  * clustering has already typically occured, so in general we ask the
938  * underlying filesystem to write the data out asynchronously rather
939  * then delayed.
940  */
941 int
942 vnode_pager_generic_putpages(vp, m, bytecount, flags, rtvals)
943 	struct vnode *vp;
944 	vm_page_t *m;
945 	int bytecount;
946 	int flags;
947 	int *rtvals;
948 {
949 	int i;
950 	vm_object_t object;
951 	int count;
952 
953 	int maxsize, ncount;
954 	vm_ooffset_t poffset;
955 	struct uio auio;
956 	struct iovec aiov;
957 	int error;
958 	int ioflags;
959 
960 	GIANT_REQUIRED;
961 	object = vp->v_object;
962 	count = bytecount / PAGE_SIZE;
963 
964 	for (i = 0; i < count; i++)
965 		rtvals[i] = VM_PAGER_AGAIN;
966 
967 	if ((int) m[0]->pindex < 0) {
968 		printf("vnode_pager_putpages: attempt to write meta-data!!! -- 0x%lx(%x)\n",
969 			(long)m[0]->pindex, m[0]->dirty);
970 		rtvals[0] = VM_PAGER_BAD;
971 		return VM_PAGER_BAD;
972 	}
973 
974 	maxsize = count * PAGE_SIZE;
975 	ncount = count;
976 
977 	poffset = IDX_TO_OFF(m[0]->pindex);
978 
979 	/*
980 	 * If the page-aligned write is larger then the actual file we
981 	 * have to invalidate pages occuring beyond the file EOF.  However,
982 	 * there is an edge case where a file may not be page-aligned where
983 	 * the last page is partially invalid.  In this case the filesystem
984 	 * may not properly clear the dirty bits for the entire page (which
985 	 * could be VM_PAGE_BITS_ALL due to the page having been mmap()d).
986 	 * With the page locked we are free to fix-up the dirty bits here.
987 	 *
988 	 * We do not under any circumstances truncate the valid bits, as
989 	 * this will screw up bogus page replacement.
990 	 */
991 	if (maxsize + poffset > object->un_pager.vnp.vnp_size) {
992 		if (object->un_pager.vnp.vnp_size > poffset) {
993 			int pgoff;
994 
995 			maxsize = object->un_pager.vnp.vnp_size - poffset;
996 			ncount = btoc(maxsize);
997 			if ((pgoff = (int)maxsize & PAGE_MASK) != 0) {
998 				vm_page_clear_dirty(m[ncount - 1], pgoff,
999 					PAGE_SIZE - pgoff);
1000 			}
1001 		} else {
1002 			maxsize = 0;
1003 			ncount = 0;
1004 		}
1005 		if (ncount < count) {
1006 			for (i = ncount; i < count; i++) {
1007 				rtvals[i] = VM_PAGER_BAD;
1008 			}
1009 		}
1010 	}
1011 
1012 	/*
1013 	 * pageouts are already clustered, use IO_ASYNC t o force a bawrite()
1014 	 * rather then a bdwrite() to prevent paging I/O from saturating
1015 	 * the buffer cache.
1016 	 */
1017 	ioflags = IO_VMIO;
1018 	ioflags |= (flags & (VM_PAGER_PUT_SYNC | VM_PAGER_PUT_INVAL)) ? IO_SYNC: IO_ASYNC;
1019 	ioflags |= (flags & VM_PAGER_PUT_INVAL) ? IO_INVAL: 0;
1020 
1021 	aiov.iov_base = (caddr_t) 0;
1022 	aiov.iov_len = maxsize;
1023 	auio.uio_iov = &aiov;
1024 	auio.uio_iovcnt = 1;
1025 	auio.uio_offset = poffset;
1026 	auio.uio_segflg = UIO_NOCOPY;
1027 	auio.uio_rw = UIO_WRITE;
1028 	auio.uio_resid = maxsize;
1029 	auio.uio_td = (struct thread *) 0;
1030 	error = VOP_WRITE(vp, &auio, ioflags, curthread->td_ucred);
1031 	cnt.v_vnodeout++;
1032 	cnt.v_vnodepgsout += ncount;
1033 
1034 	if (error) {
1035 		printf("vnode_pager_putpages: I/O error %d\n", error);
1036 	}
1037 	if (auio.uio_resid) {
1038 		printf("vnode_pager_putpages: residual I/O %d at %lu\n",
1039 		    auio.uio_resid, (u_long)m[0]->pindex);
1040 	}
1041 	for (i = 0; i < ncount; i++) {
1042 		rtvals[i] = VM_PAGER_OK;
1043 	}
1044 	return rtvals[0];
1045 }
1046 
1047 struct vnode *
1048 vnode_pager_lock(object)
1049 	vm_object_t object;
1050 {
1051 	struct thread *td = curthread;	/* XXX */
1052 
1053 	GIANT_REQUIRED;
1054 
1055 	for (; object != NULL; object = object->backing_object) {
1056 		if (object->type != OBJT_VNODE)
1057 			continue;
1058 		if (object->flags & OBJ_DEAD) {
1059 			return NULL;
1060 		}
1061 
1062 		/* XXX; If object->handle can change, we need to cache it. */
1063 		while (vget(object->handle,
1064 			LK_NOPAUSE | LK_SHARED | LK_RETRY | LK_CANRECURSE, td)){
1065 			if ((object->flags & OBJ_DEAD) || (object->type != OBJT_VNODE))
1066 				return NULL;
1067 			printf("vnode_pager_lock: retrying\n");
1068 		}
1069 		return object->handle;
1070 	}
1071 	return NULL;
1072 }
1073