xref: /freebsd/sys/vm/vnode_pager.c (revision b82d7897595d9b28a2b9861c2e09a943500c28ed)
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
4  * Copyright (c) 1990 University of Utah.
5  * Copyright (c) 1991 The Regents of the University of California.
6  * All rights reserved.
7  * Copyright (c) 1993, 1994 John S. Dyson
8  * Copyright (c) 1995, David Greenman
9  *
10  * This code is derived from software contributed to Berkeley by
11  * the Systems Programming Group of the University of Utah Computer
12  * Science Department.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions
16  * are met:
17  * 1. Redistributions of source code must retain the above copyright
18  *    notice, this list of conditions and the following disclaimer.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  * 3. All advertising materials mentioning features or use of this software
23  *    must display the following acknowledgement:
24  *	This product includes software developed by the University of
25  *	California, Berkeley and its contributors.
26  * 4. Neither the name of the University nor the names of its contributors
27  *    may be used to endorse or promote products derived from this software
28  *    without specific prior written permission.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40  * SUCH DAMAGE.
41  */
42 
43 /*
44  * Page to/from files (vnodes).
45  */
46 
47 /*
48  * TODO:
49  *	Implement VOP_GETPAGES/PUTPAGES interface for filesystems. Will
50  *	greatly re-simplify the vnode_pager.
51  */
52 
53 #include <sys/cdefs.h>
54 #include "opt_vm.h"
55 
56 #include <sys/param.h>
57 #include <sys/kernel.h>
58 #include <sys/systm.h>
59 #include <sys/sysctl.h>
60 #include <sys/proc.h>
61 #include <sys/vnode.h>
62 #include <sys/mount.h>
63 #include <sys/bio.h>
64 #include <sys/buf.h>
65 #include <sys/vmmeter.h>
66 #include <sys/ktr.h>
67 #include <sys/limits.h>
68 #include <sys/conf.h>
69 #include <sys/refcount.h>
70 #include <sys/rwlock.h>
71 #include <sys/sf_buf.h>
72 #include <sys/domainset.h>
73 #include <sys/user.h>
74 
75 #include <machine/atomic.h>
76 
77 #include <vm/vm.h>
78 #include <vm/vm_param.h>
79 #include <vm/vm_object.h>
80 #include <vm/vm_page.h>
81 #include <vm/vm_pager.h>
82 #include <vm/vm_map.h>
83 #include <vm/vnode_pager.h>
84 #include <vm/vm_extern.h>
85 #include <vm/uma.h>
86 
87 static int vnode_pager_addr(struct vnode *vp, vm_ooffset_t address,
88     daddr_t *rtaddress, int *run);
89 static int vnode_pager_input_smlfs(vm_object_t object, vm_page_t m);
90 static int vnode_pager_input_old(vm_object_t object, vm_page_t m);
91 static void vnode_pager_dealloc(vm_object_t);
92 static int vnode_pager_getpages(vm_object_t, vm_page_t *, int, int *, int *);
93 static int vnode_pager_getpages_async(vm_object_t, vm_page_t *, int, int *,
94     int *, vop_getpages_iodone_t, void *);
95 static void vnode_pager_putpages(vm_object_t, vm_page_t *, int, int, int *);
96 static boolean_t vnode_pager_haspage(vm_object_t, vm_pindex_t, int *, int *);
97 static vm_object_t vnode_pager_alloc(void *, vm_ooffset_t, vm_prot_t,
98     vm_ooffset_t, struct ucred *cred);
99 static int vnode_pager_generic_getpages_done(struct buf *);
100 static void vnode_pager_generic_getpages_done_async(struct buf *);
101 static void vnode_pager_update_writecount(vm_object_t, vm_offset_t,
102     vm_offset_t);
103 static void vnode_pager_release_writecount(vm_object_t, vm_offset_t,
104     vm_offset_t);
105 static void vnode_pager_getvp(vm_object_t, struct vnode **, bool *);
106 
107 const struct pagerops vnodepagerops = {
108 	.pgo_kvme_type = KVME_TYPE_VNODE,
109 	.pgo_alloc =	vnode_pager_alloc,
110 	.pgo_dealloc =	vnode_pager_dealloc,
111 	.pgo_getpages =	vnode_pager_getpages,
112 	.pgo_getpages_async = vnode_pager_getpages_async,
113 	.pgo_putpages =	vnode_pager_putpages,
114 	.pgo_haspage =	vnode_pager_haspage,
115 	.pgo_update_writecount = vnode_pager_update_writecount,
116 	.pgo_release_writecount = vnode_pager_release_writecount,
117 	.pgo_set_writeable_dirty = vm_object_set_writeable_dirty_,
118 	.pgo_mightbedirty = vm_object_mightbedirty_,
119 	.pgo_getvp = vnode_pager_getvp,
120 };
121 
122 static struct domainset *vnode_domainset = NULL;
123 
124 SYSCTL_PROC(_debug, OID_AUTO, vnode_domainset,
125     CTLTYPE_STRING | CTLFLAG_MPSAFE | CTLFLAG_RW, &vnode_domainset, 0,
126     sysctl_handle_domainset, "A", "Default vnode NUMA policy");
127 
128 static int nvnpbufs;
129 SYSCTL_INT(_vm, OID_AUTO, vnode_pbufs, CTLFLAG_RDTUN | CTLFLAG_NOFETCH,
130     &nvnpbufs, 0, "number of physical buffers allocated for vnode pager");
131 
132 static uma_zone_t vnode_pbuf_zone;
133 
134 static void
vnode_pager_init(void * dummy)135 vnode_pager_init(void *dummy)
136 {
137 
138 #ifdef __LP64__
139 	nvnpbufs = nswbuf * 2;
140 #else
141 	nvnpbufs = nswbuf / 2;
142 #endif
143 	TUNABLE_INT_FETCH("vm.vnode_pbufs", &nvnpbufs);
144 	vnode_pbuf_zone = pbuf_zsecond_create("vnpbuf", nvnpbufs);
145 }
146 SYSINIT(vnode_pager, SI_SUB_CPU, SI_ORDER_ANY, vnode_pager_init, NULL);
147 
148 /* Create the VM system backing object for this vnode */
149 static int
vnode_create_vobject_any(struct vnode * vp,off_t isize,struct thread * td)150 vnode_create_vobject_any(struct vnode *vp, off_t isize, struct thread *td)
151 {
152 	vm_object_t object;
153 	vm_ooffset_t size;
154 	bool last;
155 
156 	object = vp->v_object;
157 	if (object != NULL)
158 		return (0);
159 
160 	if (isize == VNODE_NO_SIZE) {
161 		if (vn_getsize_locked(vp, &size, td->td_ucred) != 0)
162 			return (0);
163 	} else {
164 		size = isize;
165 	}
166 
167 	object = vnode_pager_alloc(vp, size, 0, 0, td->td_ucred);
168 	/*
169 	 * Dereference the reference we just created.  This assumes
170 	 * that the object is associated with the vp.  We still have
171 	 * to serialize with vnode_pager_dealloc() for the last
172 	 * potential reference.
173 	 */
174 	VM_OBJECT_RLOCK(object);
175 	last = refcount_release(&object->ref_count);
176 	VM_OBJECT_RUNLOCK(object);
177 	if (last)
178 		vrele(vp);
179 
180 	VNASSERT(vp->v_object != NULL, vp, ("%s: NULL object", __func__));
181 
182 	return (0);
183 }
184 
185 int
vnode_create_vobject(struct vnode * vp,off_t isize,struct thread * td)186 vnode_create_vobject(struct vnode *vp, off_t isize, struct thread *td)
187 {
188 	VNASSERT(!vn_isdisk(vp), vp, ("%s: disk vnode", __func__));
189 	VNASSERT(isize == VNODE_NO_SIZE || isize >= 0, vp,
190 	    ("%s: invalid size (%jd)", __func__, (intmax_t)isize));
191 
192 	if (!vn_canvmio(vp))
193 		return (0);
194 
195 	return (vnode_create_vobject_any(vp, isize, td));
196 }
197 
198 int
vnode_create_disk_vobject(struct vnode * vp,off_t isize,struct thread * td)199 vnode_create_disk_vobject(struct vnode *vp, off_t isize, struct thread *td)
200 {
201 	VNASSERT(isize > 0, vp, ("%s: invalid size (%jd)", __func__,
202 	    (intmax_t)isize));
203 
204 	return (vnode_create_vobject_any(vp, isize, td));
205 }
206 
207 void
vnode_destroy_vobject(struct vnode * vp)208 vnode_destroy_vobject(struct vnode *vp)
209 {
210 	struct vm_object *obj;
211 
212 	obj = vp->v_object;
213 	if (obj == NULL || obj->handle != vp)
214 		return;
215 	ASSERT_VOP_ELOCKED(vp, "vnode_destroy_vobject");
216 	VM_OBJECT_WLOCK(obj);
217 	MPASS(obj->type == OBJT_VNODE);
218 	umtx_shm_object_terminated(obj);
219 	if (obj->ref_count == 0) {
220 		KASSERT((obj->flags & OBJ_DEAD) == 0,
221 		   ("vnode_destroy_vobject: Terminating dead object"));
222 		vm_object_set_flag(obj, OBJ_DEAD);
223 
224 		/*
225 		 * Clean pages and flush buffers.
226 		 */
227 		vm_object_page_clean(obj, 0, 0, OBJPC_SYNC);
228 		VM_OBJECT_WUNLOCK(obj);
229 
230 		vinvalbuf(vp, V_SAVE, 0, 0);
231 
232 		BO_LOCK(&vp->v_bufobj);
233 		vp->v_bufobj.bo_flag |= BO_DEAD;
234 		BO_UNLOCK(&vp->v_bufobj);
235 
236 		VM_OBJECT_WLOCK(obj);
237 		vm_object_terminate(obj);
238 	} else {
239 		/*
240 		 * Woe to the process that tries to page now :-).
241 		 */
242 		vm_pager_deallocate(obj);
243 		VM_OBJECT_WUNLOCK(obj);
244 	}
245 	KASSERT(vp->v_object == NULL, ("vp %p obj %p", vp, vp->v_object));
246 }
247 
248 /*
249  * Allocate (or lookup) pager for a vnode.
250  * Handle is a vnode pointer.
251  */
252 vm_object_t
vnode_pager_alloc(void * handle,vm_ooffset_t size,vm_prot_t prot,vm_ooffset_t offset,struct ucred * cred)253 vnode_pager_alloc(void *handle, vm_ooffset_t size, vm_prot_t prot,
254     vm_ooffset_t offset, struct ucred *cred)
255 {
256 	vm_object_t object;
257 	struct vnode *vp;
258 
259 	/*
260 	 * Pageout to vnode, no can do yet.
261 	 */
262 	if (handle == NULL)
263 		return (NULL);
264 
265 	vp = (struct vnode *)handle;
266 	ASSERT_VOP_LOCKED(vp, "vnode_pager_alloc");
267 	VNPASS(vp->v_usecount > 0, vp);
268 retry:
269 	object = vp->v_object;
270 
271 	if (object == NULL) {
272 		/*
273 		 * Add an object of the appropriate size
274 		 */
275 		object = vm_object_allocate(OBJT_VNODE,
276 		    OFF_TO_IDX(round_page(size)));
277 
278 		object->un_pager.vnp.vnp_size = size;
279 		object->un_pager.vnp.writemappings = 0;
280 		object->domain.dr_policy = vnode_domainset;
281 		object->handle = handle;
282 		if ((vp->v_vflag & VV_VMSIZEVNLOCK) != 0) {
283 			VM_OBJECT_WLOCK(object);
284 			vm_object_set_flag(object, OBJ_SIZEVNLOCK);
285 			VM_OBJECT_WUNLOCK(object);
286 		}
287 		VI_LOCK(vp);
288 		if (vp->v_object != NULL) {
289 			/*
290 			 * Object has been created while we were allocating.
291 			 */
292 			VI_UNLOCK(vp);
293 			VM_OBJECT_WLOCK(object);
294 			KASSERT(object->ref_count == 1,
295 			    ("leaked ref %p %d", object, object->ref_count));
296 			object->type = OBJT_DEAD;
297 			refcount_init(&object->ref_count, 0);
298 			VM_OBJECT_WUNLOCK(object);
299 			vm_object_destroy(object);
300 			goto retry;
301 		}
302 		vp->v_object = object;
303 		VI_UNLOCK(vp);
304 		vrefact(vp);
305 	} else {
306 		vm_object_reference(object);
307 #if VM_NRESERVLEVEL > 0
308 		if ((object->flags & OBJ_COLORED) == 0) {
309 			VM_OBJECT_WLOCK(object);
310 			vm_object_color(object, 0);
311 			VM_OBJECT_WUNLOCK(object);
312 		}
313 #endif
314 	}
315 	return (object);
316 }
317 
318 /*
319  *	The object must be locked.
320  */
321 static void
vnode_pager_dealloc(vm_object_t object)322 vnode_pager_dealloc(vm_object_t object)
323 {
324 	struct vnode *vp;
325 	int refs;
326 
327 	vp = object->handle;
328 	if (vp == NULL)
329 		panic("vnode_pager_dealloc: pager already dealloced");
330 
331 	VM_OBJECT_ASSERT_WLOCKED(object);
332 	vm_object_pip_wait(object, "vnpdea");
333 	refs = object->ref_count;
334 
335 	object->handle = NULL;
336 	object->type = OBJT_DEAD;
337 	ASSERT_VOP_ELOCKED(vp, "vnode_pager_dealloc");
338 	if (object->un_pager.vnp.writemappings > 0) {
339 		object->un_pager.vnp.writemappings = 0;
340 		VOP_ADD_WRITECOUNT_CHECKED(vp, -1);
341 		CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d",
342 		    __func__, vp, vp->v_writecount);
343 	}
344 	vp->v_object = NULL;
345 	VI_LOCK(vp);
346 
347 	/*
348 	 * vm_map_entry_set_vnode_text() cannot reach this vnode by
349 	 * following object->handle.  Clear all text references now.
350 	 * This also clears the transient references from
351 	 * kern_execve(), which is fine because dead_vnodeops uses nop
352 	 * for VOP_UNSET_TEXT().
353 	 */
354 	if (vp->v_writecount < 0)
355 		vp->v_writecount = 0;
356 	VI_UNLOCK(vp);
357 	VM_OBJECT_WUNLOCK(object);
358 	if (refs > 0)
359 		vunref(vp);
360 	VM_OBJECT_WLOCK(object);
361 }
362 
363 static boolean_t
vnode_pager_haspage(vm_object_t object,vm_pindex_t pindex,int * before,int * after)364 vnode_pager_haspage(vm_object_t object, vm_pindex_t pindex, int *before,
365     int *after)
366 {
367 	struct vnode *vp = object->handle;
368 	daddr_t bn;
369 	uintptr_t lockstate;
370 	int err;
371 	daddr_t reqblock;
372 	int poff;
373 	int bsize;
374 	int pagesperblock, blocksperpage;
375 
376 	VM_OBJECT_ASSERT_LOCKED(object);
377 	/*
378 	 * If no vp or vp is doomed or marked transparent to VM, we do not
379 	 * have the page.
380 	 */
381 	if (vp == NULL || VN_IS_DOOMED(vp))
382 		return FALSE;
383 	/*
384 	 * If the offset is beyond end of file we do
385 	 * not have the page.
386 	 */
387 	if (IDX_TO_OFF(pindex) >= object->un_pager.vnp.vnp_size)
388 		return FALSE;
389 
390 	bsize = vp->v_mount->mnt_stat.f_iosize;
391 	pagesperblock = bsize / PAGE_SIZE;
392 	blocksperpage = 0;
393 	if (pagesperblock > 0) {
394 		reqblock = pindex / pagesperblock;
395 	} else {
396 		blocksperpage = (PAGE_SIZE / bsize);
397 		reqblock = pindex * blocksperpage;
398 	}
399 	lockstate = VM_OBJECT_DROP(object);
400 	err = VOP_BMAP(vp, reqblock, NULL, &bn, after, before);
401 	VM_OBJECT_PICKUP(object, lockstate);
402 	if (err)
403 		return TRUE;
404 	if (bn == -1)
405 		return FALSE;
406 	if (pagesperblock > 0) {
407 		poff = pindex - (reqblock * pagesperblock);
408 		if (before) {
409 			*before *= pagesperblock;
410 			*before += poff;
411 		}
412 		if (after) {
413 			/*
414 			 * The BMAP vop can report a partial block in the
415 			 * 'after', but must not report blocks after EOF.
416 			 * Assert the latter, and truncate 'after' in case
417 			 * of the former.
418 			 */
419 			KASSERT((reqblock + *after) * pagesperblock <
420 			    roundup2(object->size, pagesperblock),
421 			    ("%s: reqblock %jd after %d size %ju", __func__,
422 			    (intmax_t )reqblock, *after,
423 			    (uintmax_t )object->size));
424 			*after *= pagesperblock;
425 			*after += pagesperblock - (poff + 1);
426 			if (pindex + *after >= object->size)
427 				*after = object->size - 1 - pindex;
428 		}
429 	} else {
430 		if (before) {
431 			*before /= blocksperpage;
432 		}
433 
434 		if (after) {
435 			*after /= blocksperpage;
436 		}
437 	}
438 	return TRUE;
439 }
440 
441 /*
442  * Internal routine clearing partial-page content
443  */
444 static void
vnode_pager_subpage_purge(struct vm_page * m,int base,int end)445 vnode_pager_subpage_purge(struct vm_page *m, int base, int end)
446 {
447 	int size;
448 
449 	KASSERT(end > base && end <= PAGE_SIZE,
450 	    ("%s: start %d end %d", __func__, base, end));
451 	size = end - base;
452 
453 	/*
454 	 * Clear out partial-page garbage in case
455 	 * the page has been mapped.
456 	 */
457 	pmap_zero_page_area(m, base, size);
458 
459 	/*
460 	 * Update the valid bits to reflect the blocks
461 	 * that have been zeroed.  Some of these valid
462 	 * bits may have already been set.
463 	 */
464 	vm_page_set_valid_range(m, base, size);
465 
466 	/*
467 	 * Round up "base" to the next block boundary so
468 	 * that the dirty bit for a partially zeroed
469 	 * block is not cleared.
470 	 */
471 	base = roundup2(base, DEV_BSIZE);
472 	end = rounddown2(end, DEV_BSIZE);
473 
474 	if (end > base) {
475 		/*
476 		 * Clear out partial-page dirty bits.
477 		 *
478 		 * note that we do not clear out the
479 		 * valid bits.  This would prevent
480 		 * bogus_page replacement from working
481 		 * properly.
482 		 */
483 		vm_page_clear_dirty(m, base, end - base);
484 	}
485 
486 }
487 
488 /*
489  * Lets the VM system know about a change in size for a file.
490  * We adjust our own internal size and flush any cached pages in
491  * the associated object that are affected by the size change.
492  *
493  * Note: this routine may be invoked as a result of a pager put
494  * operation (possibly at object termination time), so we must be careful.
495  */
496 void
vnode_pager_setsize(struct vnode * vp,vm_ooffset_t nsize)497 vnode_pager_setsize(struct vnode *vp, vm_ooffset_t nsize)
498 {
499 	vm_object_t object;
500 	vm_page_t m;
501 	vm_pindex_t nobjsize;
502 
503 	if ((object = vp->v_object) == NULL)
504 		return;
505 #ifdef DEBUG_VFS_LOCKS
506 	{
507 		struct mount *mp;
508 
509 		mp = vp->v_mount;
510 		if (mp != NULL && (mp->mnt_kern_flag & MNTK_VMSETSIZE_BUG) == 0)
511 			assert_vop_elocked(vp,
512 			    "vnode_pager_setsize and not locked vnode");
513 	}
514 #endif
515 	VM_OBJECT_WLOCK(object);
516 	if (object->type == OBJT_DEAD) {
517 		VM_OBJECT_WUNLOCK(object);
518 		return;
519 	}
520 	KASSERT(object->type == OBJT_VNODE,
521 	    ("not vnode-backed object %p", object));
522 	if (nsize == object->un_pager.vnp.vnp_size) {
523 		/*
524 		 * Hasn't changed size
525 		 */
526 		VM_OBJECT_WUNLOCK(object);
527 		return;
528 	}
529 	nobjsize = OFF_TO_IDX(nsize + PAGE_MASK);
530 	if (nsize < object->un_pager.vnp.vnp_size) {
531 		/*
532 		 * File has shrunk. Toss any cached pages beyond the new EOF.
533 		 */
534 		if (nobjsize < object->size)
535 			vm_object_page_remove(object, nobjsize, object->size,
536 			    0);
537 		/*
538 		 * this gets rid of garbage at the end of a page that is now
539 		 * only partially backed by the vnode.
540 		 *
541 		 * XXX for some reason (I don't know yet), if we take a
542 		 * completely invalid page and mark it partially valid
543 		 * it can screw up NFS reads, so we don't allow the case.
544 		 */
545 		if (!(nsize & PAGE_MASK))
546 			goto out;
547 		m = vm_page_grab(object, OFF_TO_IDX(nsize), VM_ALLOC_NOCREAT);
548 		if (m == NULL)
549 			goto out;
550 		if (!vm_page_none_valid(m))
551 			vnode_pager_subpage_purge(m, (int)nsize & PAGE_MASK,
552 			    PAGE_SIZE);
553 		vm_page_xunbusy(m);
554 	}
555 out:
556 #if defined(__powerpc__) && !defined(__powerpc64__)
557 	object->un_pager.vnp.vnp_size = nsize;
558 #else
559 	atomic_store_64(&object->un_pager.vnp.vnp_size, nsize);
560 #endif
561 	object->size = nobjsize;
562 	VM_OBJECT_WUNLOCK(object);
563 }
564 
565 /*
566  * Lets the VM system know about the purged range for a file. We toss away any
567  * cached pages in the associated object that are affected by the purge
568  * operation. Partial-page area not aligned to page boundaries will be zeroed
569  * and the dirty blocks in DEV_BSIZE unit within a page will not be flushed.
570  */
571 void
vnode_pager_purge_range(struct vnode * vp,vm_ooffset_t start,vm_ooffset_t end)572 vnode_pager_purge_range(struct vnode *vp, vm_ooffset_t start, vm_ooffset_t end)
573 {
574 	struct vm_page *m;
575 	struct vm_object *object;
576 	vm_pindex_t pi, pistart, piend;
577 	bool same_page;
578 	int base, pend;
579 
580 	ASSERT_VOP_LOCKED(vp, "vnode_pager_purge_range");
581 
582 	object = vp->v_object;
583 	pi = start + PAGE_MASK < start ? OBJ_MAX_SIZE :
584 	    OFF_TO_IDX(start + PAGE_MASK);
585 	pistart = OFF_TO_IDX(start);
586 	piend = end == 0 ? OBJ_MAX_SIZE : OFF_TO_IDX(end);
587 	same_page = pistart == piend;
588 	if ((end != 0 && end <= start) || object == NULL)
589 		return;
590 
591 	VM_OBJECT_WLOCK(object);
592 
593 	if (pi < piend)
594 		vm_object_page_remove(object, pi, piend, 0);
595 
596 	if ((start & PAGE_MASK) != 0) {
597 		base = (int)start & PAGE_MASK;
598 		pend = same_page ? (int)end & PAGE_MASK : PAGE_SIZE;
599 		m = vm_page_grab(object, pistart, VM_ALLOC_NOCREAT);
600 		if (m != NULL) {
601 			if (!vm_page_none_valid(m))
602 				vnode_pager_subpage_purge(m, base, pend);
603 			vm_page_xunbusy(m);
604 		}
605 		if (same_page)
606 			goto out;
607 	}
608 	if ((end & PAGE_MASK) != 0) {
609 		base = same_page ? (int)start & PAGE_MASK : 0 ;
610 		pend = (int)end & PAGE_MASK;
611 		m = vm_page_grab(object, piend, VM_ALLOC_NOCREAT);
612 		if (m != NULL) {
613 			if (!vm_page_none_valid(m))
614 				vnode_pager_subpage_purge(m, base, pend);
615 			vm_page_xunbusy(m);
616 		}
617 	}
618 out:
619 	VM_OBJECT_WUNLOCK(object);
620 }
621 
622 /*
623  * calculate the linear (byte) disk address of specified virtual
624  * file address
625  */
626 static int
vnode_pager_addr(struct vnode * vp,vm_ooffset_t address,daddr_t * rtaddress,int * run)627 vnode_pager_addr(struct vnode *vp, vm_ooffset_t address, daddr_t *rtaddress,
628     int *run)
629 {
630 	int bsize;
631 	int err;
632 	daddr_t vblock;
633 	daddr_t voffset;
634 
635 	if (VN_IS_DOOMED(vp))
636 		return -1;
637 
638 	bsize = vp->v_mount->mnt_stat.f_iosize;
639 	vblock = address / bsize;
640 	voffset = address % bsize;
641 
642 	err = VOP_BMAP(vp, vblock, NULL, rtaddress, run, NULL);
643 	if (err == 0) {
644 		if (*rtaddress != -1)
645 			*rtaddress += voffset / DEV_BSIZE;
646 		if (run) {
647 			*run += 1;
648 			*run *= bsize / PAGE_SIZE;
649 			*run -= voffset / PAGE_SIZE;
650 		}
651 	}
652 
653 	return (err);
654 }
655 
656 static void
vnode_pager_input_bdone(struct buf * bp)657 vnode_pager_input_bdone(struct buf *bp)
658 {
659 	runningbufwakeup(bp);
660 	bdone(bp);
661 }
662 
663 /*
664  * small block filesystem vnode pager input
665  */
666 static int
vnode_pager_input_smlfs(vm_object_t object,vm_page_t m)667 vnode_pager_input_smlfs(vm_object_t object, vm_page_t m)
668 {
669 	struct vnode *vp;
670 	struct bufobj *bo;
671 	struct buf *bp;
672 	struct sf_buf *sf;
673 	daddr_t fileaddr;
674 	vm_offset_t bsize;
675 	vm_page_bits_t bits;
676 	int error, i;
677 
678 	error = 0;
679 	vp = object->handle;
680 	if (VN_IS_DOOMED(vp))
681 		return VM_PAGER_BAD;
682 
683 	bsize = vp->v_mount->mnt_stat.f_iosize;
684 
685 	VOP_BMAP(vp, 0, &bo, 0, NULL, NULL);
686 
687 	sf = sf_buf_alloc(m, 0);
688 
689 	for (i = 0; i < PAGE_SIZE / bsize; i++) {
690 		vm_ooffset_t address;
691 
692 		bits = vm_page_bits(i * bsize, bsize);
693 		if (m->valid & bits)
694 			continue;
695 
696 		address = IDX_TO_OFF(m->pindex) + i * bsize;
697 		if (address >= object->un_pager.vnp.vnp_size) {
698 			fileaddr = -1;
699 		} else {
700 			error = vnode_pager_addr(vp, address, &fileaddr, NULL);
701 			if (error)
702 				break;
703 		}
704 		if (fileaddr != -1) {
705 			bp = uma_zalloc(vnode_pbuf_zone, M_WAITOK);
706 
707 			/* build a minimal buffer header */
708 			bp->b_iocmd = BIO_READ;
709 			bp->b_iodone = vnode_pager_input_bdone;
710 			KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
711 			KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
712 			bp->b_rcred = crhold(curthread->td_ucred);
713 			bp->b_wcred = crhold(curthread->td_ucred);
714 			bp->b_data = (caddr_t)sf_buf_kva(sf) + i * bsize;
715 			bp->b_blkno = fileaddr;
716 			pbgetbo(bo, bp);
717 			bp->b_vp = vp;
718 			bp->b_bcount = bsize;
719 			bp->b_bufsize = bsize;
720 			(void)runningbufclaim(bp, bp->b_bufsize);
721 
722 			/* do the input */
723 			bp->b_iooffset = dbtob(bp->b_blkno);
724 			bstrategy(bp);
725 
726 			bwait(bp, PVM, "vnsrd");
727 
728 			if ((bp->b_ioflags & BIO_ERROR) != 0) {
729 				KASSERT(bp->b_error != 0,
730 				    ("%s: buf error but b_error == 0\n", __func__));
731 				error = bp->b_error;
732 			}
733 
734 			/*
735 			 * free the buffer header back to the swap buffer pool
736 			 */
737 			bp->b_vp = NULL;
738 			pbrelbo(bp);
739 			uma_zfree(vnode_pbuf_zone, bp);
740 			if (error)
741 				break;
742 		} else
743 			bzero((caddr_t)sf_buf_kva(sf) + i * bsize, bsize);
744 		KASSERT((m->dirty & bits) == 0,
745 		    ("vnode_pager_input_smlfs: page %p is dirty", m));
746 		vm_page_bits_set(m, &m->valid, bits);
747 	}
748 	sf_buf_free(sf);
749 	if (error) {
750 		return VM_PAGER_ERROR;
751 	}
752 	return VM_PAGER_OK;
753 }
754 
755 /*
756  * old style vnode pager input routine
757  */
758 static int
vnode_pager_input_old(vm_object_t object,vm_page_t m)759 vnode_pager_input_old(vm_object_t object, vm_page_t m)
760 {
761 	struct uio auio;
762 	struct iovec aiov;
763 	int error;
764 	int size;
765 	struct sf_buf *sf;
766 	struct vnode *vp;
767 
768 	VM_OBJECT_ASSERT_WLOCKED(object);
769 	error = 0;
770 
771 	/*
772 	 * Return failure if beyond current EOF
773 	 */
774 	if (IDX_TO_OFF(m->pindex) >= object->un_pager.vnp.vnp_size) {
775 		return VM_PAGER_BAD;
776 	} else {
777 		size = PAGE_SIZE;
778 		if (IDX_TO_OFF(m->pindex) + size > object->un_pager.vnp.vnp_size)
779 			size = object->un_pager.vnp.vnp_size - IDX_TO_OFF(m->pindex);
780 		vp = object->handle;
781 		VM_OBJECT_WUNLOCK(object);
782 
783 		/*
784 		 * Allocate a kernel virtual address and initialize so that
785 		 * we can use VOP_READ/WRITE routines.
786 		 */
787 		sf = sf_buf_alloc(m, 0);
788 
789 		aiov.iov_base = (caddr_t)sf_buf_kva(sf);
790 		aiov.iov_len = size;
791 		auio.uio_iov = &aiov;
792 		auio.uio_iovcnt = 1;
793 		auio.uio_offset = IDX_TO_OFF(m->pindex);
794 		auio.uio_segflg = UIO_SYSSPACE;
795 		auio.uio_rw = UIO_READ;
796 		auio.uio_resid = size;
797 		auio.uio_td = curthread;
798 
799 		error = VOP_READ(vp, &auio, 0, curthread->td_ucred);
800 		if (!error) {
801 			int count = size - auio.uio_resid;
802 
803 			if (count == 0)
804 				error = EINVAL;
805 			else if (count != PAGE_SIZE)
806 				bzero((caddr_t)sf_buf_kva(sf) + count,
807 				    PAGE_SIZE - count);
808 		}
809 		sf_buf_free(sf);
810 
811 		VM_OBJECT_WLOCK(object);
812 	}
813 	KASSERT(m->dirty == 0, ("vnode_pager_input_old: page %p is dirty", m));
814 	if (!error)
815 		vm_page_valid(m);
816 	return error ? VM_PAGER_ERROR : VM_PAGER_OK;
817 }
818 
819 /*
820  * generic vnode pager input routine
821  */
822 
823 /*
824  * Local media VFS's that do not implement their own VOP_GETPAGES
825  * should have their VOP_GETPAGES call to vnode_pager_generic_getpages()
826  * to implement the previous behaviour.
827  *
828  * All other FS's should use the bypass to get to the local media
829  * backing vp's VOP_GETPAGES.
830  */
831 static int
vnode_pager_getpages(vm_object_t object,vm_page_t * m,int count,int * rbehind,int * rahead)832 vnode_pager_getpages(vm_object_t object, vm_page_t *m, int count, int *rbehind,
833     int *rahead)
834 {
835 	struct vnode *vp;
836 	int rtval;
837 
838 	/* Handle is stable with paging in progress. */
839 	vp = object->handle;
840 	rtval = VOP_GETPAGES(vp, m, count, rbehind, rahead);
841 	KASSERT(rtval != EOPNOTSUPP,
842 	    ("vnode_pager: FS getpages not implemented\n"));
843 	return rtval;
844 }
845 
846 static int
vnode_pager_getpages_async(vm_object_t object,vm_page_t * m,int count,int * rbehind,int * rahead,vop_getpages_iodone_t iodone,void * arg)847 vnode_pager_getpages_async(vm_object_t object, vm_page_t *m, int count,
848     int *rbehind, int *rahead, vop_getpages_iodone_t iodone, void *arg)
849 {
850 	struct vnode *vp;
851 	int rtval;
852 
853 	vp = object->handle;
854 	rtval = VOP_GETPAGES_ASYNC(vp, m, count, rbehind, rahead, iodone, arg);
855 	KASSERT(rtval != EOPNOTSUPP,
856 	    ("vnode_pager: FS getpages_async not implemented\n"));
857 	return (rtval);
858 }
859 
860 /*
861  * The implementation of VOP_GETPAGES() and VOP_GETPAGES_ASYNC() for
862  * local filesystems, where partially valid pages can only occur at
863  * the end of file.
864  */
865 int
vnode_pager_local_getpages(struct vop_getpages_args * ap)866 vnode_pager_local_getpages(struct vop_getpages_args *ap)
867 {
868 
869 	return (vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
870 	    ap->a_rbehind, ap->a_rahead, NULL, NULL));
871 }
872 
873 int
vnode_pager_local_getpages_async(struct vop_getpages_async_args * ap)874 vnode_pager_local_getpages_async(struct vop_getpages_async_args *ap)
875 {
876 	int error;
877 
878 	error = vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
879 	    ap->a_rbehind, ap->a_rahead, ap->a_iodone, ap->a_arg);
880 	if (error != 0 && ap->a_iodone != NULL)
881 		ap->a_iodone(ap->a_arg, ap->a_m, ap->a_count, error);
882 	return (error);
883 }
884 
885 /*
886  * This is now called from local media FS's to operate against their
887  * own vnodes if they fail to implement VOP_GETPAGES.
888  */
889 int
vnode_pager_generic_getpages(struct vnode * vp,vm_page_t * m,int count,int * a_rbehind,int * a_rahead,vop_getpages_iodone_t iodone,void * arg)890 vnode_pager_generic_getpages(struct vnode *vp, vm_page_t *m, int count,
891     int *a_rbehind, int *a_rahead, vop_getpages_iodone_t iodone, void *arg)
892 {
893 	vm_object_t object;
894 	struct bufobj *bo;
895 	struct buf *bp;
896 	off_t foff;
897 #ifdef INVARIANTS
898 	off_t blkno0;
899 #endif
900 	int bsize, pagesperblock;
901 	int error, before, after, rbehind, rahead, poff, i;
902 	int bytecount, secmask;
903 
904 	KASSERT(vp->v_type != VCHR && vp->v_type != VBLK,
905 	    ("%s does not support devices", __func__));
906 
907 	if (VN_IS_DOOMED(vp))
908 		return (VM_PAGER_BAD);
909 
910 	object = vp->v_object;
911 	foff = IDX_TO_OFF(m[0]->pindex);
912 	bsize = vp->v_mount->mnt_stat.f_iosize;
913 	pagesperblock = bsize / PAGE_SIZE;
914 
915 	KASSERT(foff < object->un_pager.vnp.vnp_size,
916 	    ("%s: page %p offset beyond vp %p size", __func__, m[0], vp));
917 	KASSERT(count <= atop(maxphys),
918 	    ("%s: requested %d pages", __func__, count));
919 
920 	/*
921 	 * The last page has valid blocks.  Invalid part can only
922 	 * exist at the end of file, and the page is made fully valid
923 	 * by zeroing in vm_pager_get_pages().
924 	 */
925 	if (!vm_page_none_valid(m[count - 1]) && --count == 0) {
926 		if (iodone != NULL)
927 			iodone(arg, m, 1, 0);
928 		return (VM_PAGER_OK);
929 	}
930 
931 	bp = uma_zalloc(vnode_pbuf_zone, M_WAITOK);
932 	MPASS((bp->b_flags & B_MAXPHYS) != 0);
933 
934 	/*
935 	 * Get the underlying device blocks for the file with VOP_BMAP().
936 	 * If the file system doesn't support VOP_BMAP, use old way of
937 	 * getting pages via VOP_READ.
938 	 */
939 	error = VOP_BMAP(vp, foff / bsize, &bo, &bp->b_blkno, &after, &before);
940 	if (error == EOPNOTSUPP) {
941 		uma_zfree(vnode_pbuf_zone, bp);
942 		VM_OBJECT_WLOCK(object);
943 		for (i = 0; i < count; i++) {
944 			VM_CNT_INC(v_vnodein);
945 			VM_CNT_INC(v_vnodepgsin);
946 			error = vnode_pager_input_old(object, m[i]);
947 			if (error)
948 				break;
949 		}
950 		VM_OBJECT_WUNLOCK(object);
951 		return (error);
952 	} else if (error != 0) {
953 		uma_zfree(vnode_pbuf_zone, bp);
954 		return (VM_PAGER_ERROR);
955 	}
956 
957 	/*
958 	 * If the file system supports BMAP, but blocksize is smaller
959 	 * than a page size, then use special small filesystem code.
960 	 */
961 	if (pagesperblock == 0) {
962 		uma_zfree(vnode_pbuf_zone, bp);
963 		for (i = 0; i < count; i++) {
964 			VM_CNT_INC(v_vnodein);
965 			VM_CNT_INC(v_vnodepgsin);
966 			error = vnode_pager_input_smlfs(object, m[i]);
967 			if (error)
968 				break;
969 		}
970 		return (error);
971 	}
972 
973 	/*
974 	 * A sparse file can be encountered only for a single page request,
975 	 * which may not be preceded by call to vm_pager_haspage().
976 	 */
977 	if (bp->b_blkno == -1) {
978 		KASSERT(count == 1,
979 		    ("%s: array[%d] request to a sparse file %p", __func__,
980 		    count, vp));
981 		uma_zfree(vnode_pbuf_zone, bp);
982 		pmap_zero_page(m[0]);
983 		KASSERT(m[0]->dirty == 0, ("%s: page %p is dirty",
984 		    __func__, m[0]));
985 		vm_page_valid(m[0]);
986 		return (VM_PAGER_OK);
987 	}
988 
989 #ifdef INVARIANTS
990 	blkno0 = bp->b_blkno;
991 #endif
992 	bp->b_blkno += (foff % bsize) / DEV_BSIZE;
993 
994 	/* Recalculate blocks available after/before to pages. */
995 	poff = (foff % bsize) / PAGE_SIZE;
996 	before *= pagesperblock;
997 	before += poff;
998 	after *= pagesperblock;
999 	after += pagesperblock - (poff + 1);
1000 	if (m[0]->pindex + after >= object->size)
1001 		after = object->size - 1 - m[0]->pindex;
1002 	KASSERT(count <= after + 1, ("%s: %d pages asked, can do only %d",
1003 	    __func__, count, after + 1));
1004 	after -= count - 1;
1005 
1006 	/* Trim requested rbehind/rahead to possible values. */
1007 	rbehind = a_rbehind ? *a_rbehind : 0;
1008 	rahead = a_rahead ? *a_rahead : 0;
1009 	rbehind = min(rbehind, before);
1010 	rahead = min(rahead, after);
1011 
1012 	/*
1013 	 * Check that total amount of pages fit into buf.  Trim rbehind and
1014 	 * rahead evenly if not.
1015 	 */
1016 	if (rbehind + rahead + count > atop(maxphys)) {
1017 		int trim, sum;
1018 
1019 		trim = rbehind + rahead + count - atop(maxphys) + 1;
1020 		sum = rbehind + rahead;
1021 		if (rbehind == before) {
1022 			/* Roundup rbehind trim to block size. */
1023 			rbehind -= roundup(trim * rbehind / sum, pagesperblock);
1024 			if (rbehind < 0)
1025 				rbehind = 0;
1026 		} else
1027 			rbehind -= trim * rbehind / sum;
1028 		rahead -= trim * rahead / sum;
1029 	}
1030 	KASSERT(rbehind + rahead + count <= atop(maxphys),
1031 	    ("%s: behind %d ahead %d count %d maxphys %lu", __func__,
1032 	    rbehind, rahead, count, maxphys));
1033 
1034 	/*
1035 	 * Fill in the bp->b_pages[] array with requested and optional
1036 	 * read behind or read ahead pages.  Read behind pages are looked
1037 	 * up in a backward direction, down to a first cached page.  Same
1038 	 * for read ahead pages, but there is no need to shift the array
1039 	 * in case of encountering a cached page.
1040 	 */
1041 	if (rbehind != 0 || rahead != 0) {
1042 		VM_OBJECT_WLOCK(object);
1043 		vm_object_prepare_buf_pages(object, bp->b_pages, count,
1044 		    &rbehind, &rahead, m);
1045 		VM_OBJECT_WUNLOCK(object);
1046 	} else {
1047 		for (int j = 0; j < count; j++)
1048 			bp->b_pages[j] = m[j];
1049 	}
1050 	bp->b_blkno -= IDX_TO_OFF(rbehind) / DEV_BSIZE;
1051 	bp->b_pgbefore = rbehind;
1052 	bp->b_pgafter = rahead;
1053 	bp->b_npages = rbehind + count + rahead;
1054 
1055 	/* Report back actual behind/ahead read. */
1056 	if (a_rbehind)
1057 		*a_rbehind = bp->b_pgbefore;
1058 	if (a_rahead)
1059 		*a_rahead = bp->b_pgafter;
1060 
1061 #ifdef INVARIANTS
1062 	KASSERT(bp->b_npages <= atop(maxphys),
1063 	    ("%s: buf %p overflowed", __func__, bp));
1064 	for (int j = 1, prev = 0; j < bp->b_npages; j++) {
1065 		if (bp->b_pages[j] == bogus_page)
1066 			continue;
1067 		KASSERT(bp->b_pages[j]->pindex - bp->b_pages[prev]->pindex ==
1068 		    j - prev, ("%s: pages array not consecutive, bp %p",
1069 		     __func__, bp));
1070 		prev = j;
1071 	}
1072 #endif
1073 
1074 	/*
1075 	 * Recalculate first offset and bytecount with regards to read behind.
1076 	 * Truncate bytecount to vnode real size and round up physical size
1077 	 * for real devices.
1078 	 */
1079 	foff = IDX_TO_OFF(bp->b_pages[0]->pindex);
1080 	bytecount = ptoa(bp->b_npages);
1081 	if ((foff + bytecount) > object->un_pager.vnp.vnp_size)
1082 		bytecount = object->un_pager.vnp.vnp_size - foff;
1083 	secmask = bo->bo_bsize - 1;
1084 	KASSERT(secmask < PAGE_SIZE && secmask > 0,
1085 	    ("%s: sector size %d too large", __func__, secmask + 1));
1086 	bytecount = (bytecount + secmask) & ~secmask;
1087 
1088 	/*
1089 	 * And map the pages to be read into the kva, if the filesystem
1090 	 * requires mapped buffers.
1091 	 */
1092 	if ((vp->v_mount->mnt_kern_flag & MNTK_UNMAPPED_BUFS) != 0 &&
1093 	    unmapped_buf_allowed) {
1094 		bp->b_data = unmapped_buf;
1095 		bp->b_offset = 0;
1096 	} else {
1097 		bp->b_data = bp->b_kvabase;
1098 		pmap_qenter((vm_offset_t)bp->b_data, bp->b_pages, bp->b_npages);
1099 	}
1100 
1101 	/* Build a minimal buffer header. */
1102 	bp->b_iocmd = BIO_READ;
1103 	KASSERT(bp->b_rcred == NOCRED, ("leaking read ucred"));
1104 	KASSERT(bp->b_wcred == NOCRED, ("leaking write ucred"));
1105 	bp->b_rcred = crhold(curthread->td_ucred);
1106 	bp->b_wcred = crhold(curthread->td_ucred);
1107 	pbgetbo(bo, bp);
1108 	bp->b_vp = vp;
1109 	bp->b_bcount = bp->b_bufsize = bytecount;
1110 	bp->b_iooffset = dbtob(bp->b_blkno);
1111 	KASSERT(IDX_TO_OFF(m[0]->pindex - bp->b_pages[0]->pindex) ==
1112 	    (blkno0 - bp->b_blkno) * DEV_BSIZE +
1113 	    IDX_TO_OFF(m[0]->pindex) % bsize,
1114 	    ("wrong offsets bsize %d m[0] %ju b_pages[0] %ju "
1115 	    "blkno0 %ju b_blkno %ju", bsize,
1116 	    (uintmax_t)m[0]->pindex, (uintmax_t)bp->b_pages[0]->pindex,
1117 	    (uintmax_t)blkno0, (uintmax_t)bp->b_blkno));
1118 
1119 	(void)runningbufclaim(bp, bp->b_bufsize);
1120 
1121 	VM_CNT_INC(v_vnodein);
1122 	VM_CNT_ADD(v_vnodepgsin, bp->b_npages);
1123 
1124 	if (iodone != NULL) { /* async */
1125 		bp->b_pgiodone = iodone;
1126 		bp->b_caller1 = arg;
1127 		bp->b_iodone = vnode_pager_generic_getpages_done_async;
1128 		bp->b_flags |= B_ASYNC;
1129 		BUF_KERNPROC(bp);
1130 		bstrategy(bp);
1131 		return (VM_PAGER_OK);
1132 	} else {
1133 		bp->b_iodone = bdone;
1134 		bstrategy(bp);
1135 		bwait(bp, PVM, "vnread");
1136 		error = vnode_pager_generic_getpages_done(bp);
1137 		for (i = 0; i < bp->b_npages; i++)
1138 			bp->b_pages[i] = NULL;
1139 		bp->b_vp = NULL;
1140 		pbrelbo(bp);
1141 		uma_zfree(vnode_pbuf_zone, bp);
1142 		return (error != 0 ? VM_PAGER_ERROR : VM_PAGER_OK);
1143 	}
1144 }
1145 
1146 static void
vnode_pager_generic_getpages_done_async(struct buf * bp)1147 vnode_pager_generic_getpages_done_async(struct buf *bp)
1148 {
1149 	int error;
1150 
1151 	error = vnode_pager_generic_getpages_done(bp);
1152 	/* Run the iodone upon the requested range. */
1153 	bp->b_pgiodone(bp->b_caller1, bp->b_pages + bp->b_pgbefore,
1154 	    bp->b_npages - bp->b_pgbefore - bp->b_pgafter, error);
1155 	for (int i = 0; i < bp->b_npages; i++)
1156 		bp->b_pages[i] = NULL;
1157 	bp->b_vp = NULL;
1158 	pbrelbo(bp);
1159 	uma_zfree(vnode_pbuf_zone, bp);
1160 }
1161 
1162 static int
vnode_pager_generic_getpages_done(struct buf * bp)1163 vnode_pager_generic_getpages_done(struct buf *bp)
1164 {
1165 	vm_object_t object;
1166 	off_t tfoff, nextoff;
1167 	int i, error;
1168 
1169 	KASSERT((bp->b_ioflags & BIO_ERROR) == 0 || bp->b_error != 0,
1170 	    ("%s: buf error but b_error == 0\n", __func__));
1171 	error = (bp->b_ioflags & BIO_ERROR) != 0 ? bp->b_error : 0;
1172 	object = bp->b_vp->v_object;
1173 
1174 	runningbufwakeup(bp);
1175 
1176 	if (error == 0 && bp->b_bcount != bp->b_npages * PAGE_SIZE) {
1177 		if (!buf_mapped(bp)) {
1178 			bp->b_data = bp->b_kvabase;
1179 			pmap_qenter((vm_offset_t)bp->b_data, bp->b_pages,
1180 			    bp->b_npages);
1181 		}
1182 		bzero(bp->b_data + bp->b_bcount,
1183 		    PAGE_SIZE * bp->b_npages - bp->b_bcount);
1184 	}
1185 	if (buf_mapped(bp)) {
1186 		pmap_qremove((vm_offset_t)bp->b_data, bp->b_npages);
1187 		bp->b_data = unmapped_buf;
1188 	}
1189 
1190 	/*
1191 	 * If the read failed, we must free any read ahead/behind pages here.
1192 	 * The requested pages are freed by the caller (for sync requests)
1193 	 * or by the bp->b_pgiodone callback (for async requests).
1194 	 */
1195 	if (error != 0) {
1196 		VM_OBJECT_WLOCK(object);
1197 		for (i = 0; i < bp->b_pgbefore; i++)
1198 			vm_page_free_invalid(bp->b_pages[i]);
1199 		for (i = bp->b_npages - bp->b_pgafter; i < bp->b_npages; i++)
1200 			vm_page_free_invalid(bp->b_pages[i]);
1201 		VM_OBJECT_WUNLOCK(object);
1202 		return (error);
1203 	}
1204 
1205 	/* Read lock to protect size. */
1206 	VM_OBJECT_RLOCK(object);
1207 	for (i = 0, tfoff = IDX_TO_OFF(bp->b_pages[0]->pindex);
1208 	    i < bp->b_npages; i++, tfoff = nextoff) {
1209 		vm_page_t mt;
1210 
1211 		nextoff = tfoff + PAGE_SIZE;
1212 		mt = bp->b_pages[i];
1213 		if (mt == bogus_page)
1214 			continue;
1215 
1216 		if (nextoff <= object->un_pager.vnp.vnp_size) {
1217 			/*
1218 			 * Read filled up entire page.
1219 			 */
1220 			vm_page_valid(mt);
1221 			KASSERT(mt->dirty == 0,
1222 			    ("%s: page %p is dirty", __func__, mt));
1223 			KASSERT(!pmap_page_is_mapped(mt),
1224 			    ("%s: page %p is mapped", __func__, mt));
1225 		} else {
1226 			/*
1227 			 * Read did not fill up entire page.
1228 			 *
1229 			 * Currently we do not set the entire page valid,
1230 			 * we just try to clear the piece that we couldn't
1231 			 * read.
1232 			 */
1233 			vm_page_set_valid_range(mt, 0,
1234 			    object->un_pager.vnp.vnp_size - tfoff);
1235 			KASSERT((mt->dirty & vm_page_bits(0,
1236 			    object->un_pager.vnp.vnp_size - tfoff)) == 0,
1237 			    ("%s: page %p is dirty", __func__, mt));
1238 		}
1239 
1240 		if (i < bp->b_pgbefore || i >= bp->b_npages - bp->b_pgafter)
1241 			vm_page_readahead_finish(mt);
1242 	}
1243 	VM_OBJECT_RUNLOCK(object);
1244 
1245 	return (error);
1246 }
1247 
1248 /*
1249  * EOPNOTSUPP is no longer legal.  For local media VFS's that do not
1250  * implement their own VOP_PUTPAGES, their VOP_PUTPAGES should call to
1251  * vnode_pager_generic_putpages() to implement the previous behaviour.
1252  *
1253  * All other FS's should use the bypass to get to the local media
1254  * backing vp's VOP_PUTPAGES.
1255  */
1256 static void
vnode_pager_putpages(vm_object_t object,vm_page_t * m,int count,int flags,int * rtvals)1257 vnode_pager_putpages(vm_object_t object, vm_page_t *m, int count,
1258     int flags, int *rtvals)
1259 {
1260 	int rtval __diagused;
1261 	struct vnode *vp;
1262 	int bytes = count * PAGE_SIZE;
1263 
1264 	/*
1265 	 * Force synchronous operation if we are extremely low on memory
1266 	 * to prevent a low-memory deadlock.  VOP operations often need to
1267 	 * allocate more memory to initiate the I/O ( i.e. do a BMAP
1268 	 * operation ).  The swapper handles the case by limiting the amount
1269 	 * of asynchronous I/O, but that sort of solution doesn't scale well
1270 	 * for the vnode pager without a lot of work.
1271 	 *
1272 	 * Also, the backing vnode's iodone routine may not wake the pageout
1273 	 * daemon up.  This should be probably be addressed XXX.
1274 	 */
1275 
1276 	if (vm_page_count_min())
1277 		flags |= VM_PAGER_PUT_SYNC;
1278 
1279 	/*
1280 	 * Call device-specific putpages function
1281 	 */
1282 	vp = object->handle;
1283 	VM_OBJECT_WUNLOCK(object);
1284 	rtval = VOP_PUTPAGES(vp, m, bytes, flags, rtvals);
1285 	KASSERT(rtval != EOPNOTSUPP,
1286 	    ("vnode_pager: stale FS putpages\n"));
1287 	VM_OBJECT_WLOCK(object);
1288 }
1289 
1290 static int
vn_off2bidx(vm_ooffset_t offset)1291 vn_off2bidx(vm_ooffset_t offset)
1292 {
1293 
1294 	return ((offset & PAGE_MASK) / DEV_BSIZE);
1295 }
1296 
1297 static bool
vn_dirty_blk(vm_page_t m,vm_ooffset_t offset)1298 vn_dirty_blk(vm_page_t m, vm_ooffset_t offset)
1299 {
1300 
1301 	KASSERT(IDX_TO_OFF(m->pindex) <= offset &&
1302 	    offset < IDX_TO_OFF(m->pindex + 1),
1303 	    ("page %p pidx %ju offset %ju", m, (uintmax_t)m->pindex,
1304 	    (uintmax_t)offset));
1305 	return ((m->dirty & ((vm_page_bits_t)1 << vn_off2bidx(offset))) != 0);
1306 }
1307 
1308 /*
1309  * This is now called from local media FS's to operate against their
1310  * own vnodes if they fail to implement VOP_PUTPAGES.
1311  *
1312  * This is typically called indirectly via the pageout daemon and
1313  * clustering has already typically occurred, so in general we ask the
1314  * underlying filesystem to write the data out asynchronously rather
1315  * then delayed.
1316  */
1317 int
vnode_pager_generic_putpages(struct vnode * vp,vm_page_t * ma,int bytecount,int flags,int * rtvals)1318 vnode_pager_generic_putpages(struct vnode *vp, vm_page_t *ma, int bytecount,
1319     int flags, int *rtvals)
1320 {
1321 	vm_object_t object;
1322 	vm_page_t m;
1323 	vm_ooffset_t max_offset, next_offset, poffset, prev_offset;
1324 	struct uio auio;
1325 	struct iovec aiov;
1326 	off_t prev_resid, wrsz;
1327 	int count, error, i, maxsize, ncount, pgoff, ppscheck;
1328 	bool in_hole;
1329 	static struct timeval lastfail;
1330 	static int curfail;
1331 
1332 	object = vp->v_object;
1333 	count = bytecount / PAGE_SIZE;
1334 
1335 	for (i = 0; i < count; i++)
1336 		rtvals[i] = VM_PAGER_ERROR;
1337 
1338 	if ((int64_t)ma[0]->pindex < 0) {
1339 		printf("vnode_pager_generic_putpages: "
1340 		    "attempt to write meta-data 0x%jx(%lx)\n",
1341 		    (uintmax_t)ma[0]->pindex, (u_long)ma[0]->dirty);
1342 		rtvals[0] = VM_PAGER_BAD;
1343 		return (VM_PAGER_BAD);
1344 	}
1345 
1346 	maxsize = count * PAGE_SIZE;
1347 	ncount = count;
1348 
1349 	poffset = IDX_TO_OFF(ma[0]->pindex);
1350 
1351 	/*
1352 	 * If the page-aligned write is larger then the actual file we
1353 	 * have to invalidate pages occurring beyond the file EOF.  However,
1354 	 * there is an edge case where a file may not be page-aligned where
1355 	 * the last page is partially invalid.  In this case the filesystem
1356 	 * may not properly clear the dirty bits for the entire page (which
1357 	 * could be VM_PAGE_BITS_ALL due to the page having been mmap()d).
1358 	 * With the page busied we are free to fix up the dirty bits here.
1359 	 *
1360 	 * We do not under any circumstances truncate the valid bits, as
1361 	 * this will screw up bogus page replacement.
1362 	 */
1363 	VM_OBJECT_RLOCK(object);
1364 	if (maxsize + poffset > object->un_pager.vnp.vnp_size) {
1365 		if (object->un_pager.vnp.vnp_size > poffset) {
1366 			maxsize = object->un_pager.vnp.vnp_size - poffset;
1367 			ncount = btoc(maxsize);
1368 			if ((pgoff = (int)maxsize & PAGE_MASK) != 0) {
1369 				pgoff = roundup2(pgoff, DEV_BSIZE);
1370 
1371 				/*
1372 				 * If the page is busy and the following
1373 				 * conditions hold, then the page's dirty
1374 				 * field cannot be concurrently changed by a
1375 				 * pmap operation.
1376 				 */
1377 				m = ma[ncount - 1];
1378 				vm_page_assert_sbusied(m);
1379 				KASSERT(!pmap_page_is_write_mapped(m),
1380 		("vnode_pager_generic_putpages: page %p is not read-only", m));
1381 				MPASS(m->dirty != 0);
1382 				vm_page_clear_dirty(m, pgoff, PAGE_SIZE -
1383 				    pgoff);
1384 			}
1385 		} else {
1386 			maxsize = 0;
1387 			ncount = 0;
1388 		}
1389 		for (i = ncount; i < count; i++)
1390 			rtvals[i] = VM_PAGER_BAD;
1391 	}
1392 	VM_OBJECT_RUNLOCK(object);
1393 
1394 	auio.uio_iov = &aiov;
1395 	auio.uio_segflg = UIO_NOCOPY;
1396 	auio.uio_rw = UIO_WRITE;
1397 	auio.uio_td = NULL;
1398 	max_offset = roundup2(poffset + maxsize, DEV_BSIZE);
1399 
1400 	for (prev_offset = poffset; prev_offset < max_offset;) {
1401 		/* Skip clean blocks. */
1402 		for (in_hole = true; in_hole && prev_offset < max_offset;) {
1403 			m = ma[OFF_TO_IDX(prev_offset - poffset)];
1404 			for (i = vn_off2bidx(prev_offset);
1405 			    i < sizeof(vm_page_bits_t) * NBBY &&
1406 			    prev_offset < max_offset; i++) {
1407 				if (vn_dirty_blk(m, prev_offset)) {
1408 					in_hole = false;
1409 					break;
1410 				}
1411 				prev_offset += DEV_BSIZE;
1412 			}
1413 		}
1414 		if (in_hole)
1415 			goto write_done;
1416 
1417 		/* Find longest run of dirty blocks. */
1418 		for (next_offset = prev_offset; next_offset < max_offset;) {
1419 			m = ma[OFF_TO_IDX(next_offset - poffset)];
1420 			for (i = vn_off2bidx(next_offset);
1421 			    i < sizeof(vm_page_bits_t) * NBBY &&
1422 			    next_offset < max_offset; i++) {
1423 				if (!vn_dirty_blk(m, next_offset))
1424 					goto start_write;
1425 				next_offset += DEV_BSIZE;
1426 			}
1427 		}
1428 start_write:
1429 		if (next_offset > poffset + maxsize)
1430 			next_offset = poffset + maxsize;
1431 		if (prev_offset == next_offset)
1432 			goto write_done;
1433 
1434 		/*
1435 		 * Getting here requires finding a dirty block in the
1436 		 * 'skip clean blocks' loop.
1437 		 */
1438 
1439 		aiov.iov_base = NULL;
1440 		auio.uio_iovcnt = 1;
1441 		auio.uio_offset = prev_offset;
1442 		prev_resid = auio.uio_resid = aiov.iov_len = next_offset -
1443 		    prev_offset;
1444 		error = VOP_WRITE(vp, &auio,
1445 		    vnode_pager_putpages_ioflags(flags), curthread->td_ucred);
1446 
1447 		wrsz = prev_resid - auio.uio_resid;
1448 		if (wrsz == 0) {
1449 			if (ppsratecheck(&lastfail, &curfail, 1) != 0) {
1450 				vn_printf(vp, "vnode_pager_putpages: "
1451 				    "zero-length write at %ju resid %zd\n",
1452 				    auio.uio_offset, auio.uio_resid);
1453 			}
1454 			break;
1455 		}
1456 
1457 		/* Adjust the starting offset for next iteration. */
1458 		prev_offset += wrsz;
1459 		MPASS(auio.uio_offset == prev_offset);
1460 
1461 		ppscheck = 0;
1462 		if (error != 0 && (ppscheck = ppsratecheck(&lastfail,
1463 		    &curfail, 1)) != 0)
1464 			vn_printf(vp, "vnode_pager_putpages: I/O error %d\n",
1465 			    error);
1466 		if (auio.uio_resid != 0 && (ppscheck != 0 ||
1467 		    ppsratecheck(&lastfail, &curfail, 1) != 0))
1468 			vn_printf(vp, "vnode_pager_putpages: residual I/O %zd "
1469 			    "at %ju\n", auio.uio_resid,
1470 			    (uintmax_t)ma[0]->pindex);
1471 		if (error != 0 || auio.uio_resid != 0)
1472 			break;
1473 	}
1474 write_done:
1475 	/* Mark completely processed pages. */
1476 	for (i = 0; i < OFF_TO_IDX(prev_offset - poffset); i++)
1477 		rtvals[i] = VM_PAGER_OK;
1478 	/* Mark partial EOF page. */
1479 	if (prev_offset == poffset + maxsize && (prev_offset & PAGE_MASK) != 0)
1480 		rtvals[i++] = VM_PAGER_OK;
1481 	/* Unwritten pages in range, free bonus if the page is clean. */
1482 	for (; i < ncount; i++)
1483 		rtvals[i] = ma[i]->dirty == 0 ? VM_PAGER_OK : VM_PAGER_ERROR;
1484 	VM_CNT_ADD(v_vnodepgsout, i);
1485 	VM_CNT_INC(v_vnodeout);
1486 	return (rtvals[0]);
1487 }
1488 
1489 int
vnode_pager_putpages_ioflags(int pager_flags)1490 vnode_pager_putpages_ioflags(int pager_flags)
1491 {
1492 	int ioflags;
1493 
1494 	/*
1495 	 * Pageouts are already clustered, use IO_ASYNC to force a
1496 	 * bawrite() rather then a bdwrite() to prevent paging I/O
1497 	 * from saturating the buffer cache.  Dummy-up the sequential
1498 	 * heuristic to cause large ranges to cluster.  If neither
1499 	 * IO_SYNC or IO_ASYNC is set, the system decides how to
1500 	 * cluster.
1501 	 */
1502 	ioflags = IO_VMIO;
1503 	if ((pager_flags & (VM_PAGER_PUT_SYNC | VM_PAGER_PUT_INVAL)) != 0)
1504 		ioflags |= IO_SYNC;
1505 	else if ((pager_flags & VM_PAGER_CLUSTER_OK) == 0)
1506 		ioflags |= IO_ASYNC;
1507 	ioflags |= (pager_flags & VM_PAGER_PUT_INVAL) != 0 ? IO_INVAL: 0;
1508 	ioflags |= (pager_flags & VM_PAGER_PUT_NOREUSE) != 0 ? IO_NOREUSE : 0;
1509 	ioflags |= IO_SEQMAX << IO_SEQSHIFT;
1510 	return (ioflags);
1511 }
1512 
1513 /*
1514  * vnode_pager_undirty_pages().
1515  *
1516  * A helper to mark pages as clean after pageout that was possibly
1517  * done with a short write.  The lpos argument specifies the page run
1518  * length in bytes, and the written argument specifies how many bytes
1519  * were actually written.  eof is the offset past the last valid byte
1520  * in the vnode using the absolute file position of the first byte in
1521  * the run as the base from which it is computed.
1522  */
1523 void
vnode_pager_undirty_pages(vm_page_t * ma,int * rtvals,int written,off_t eof,int lpos)1524 vnode_pager_undirty_pages(vm_page_t *ma, int *rtvals, int written, off_t eof,
1525     int lpos)
1526 {
1527 	int i, pos, pos_devb;
1528 
1529 	if (written == 0 && eof >= lpos)
1530 		return;
1531 	for (i = 0, pos = 0; pos < written; i++, pos += PAGE_SIZE) {
1532 		if (pos < trunc_page(written)) {
1533 			rtvals[i] = VM_PAGER_OK;
1534 			vm_page_undirty(ma[i]);
1535 		} else {
1536 			/* Partially written page. */
1537 			rtvals[i] = VM_PAGER_AGAIN;
1538 			vm_page_clear_dirty(ma[i], 0, written & PAGE_MASK);
1539 		}
1540 	}
1541 	if (eof >= lpos) /* avoid truncation */
1542 		return;
1543 	for (pos = eof, i = OFF_TO_IDX(trunc_page(pos)); pos < lpos; i++) {
1544 		if (pos != trunc_page(pos)) {
1545 			/*
1546 			 * The page contains the last valid byte in
1547 			 * the vnode, mark the rest of the page as
1548 			 * clean, potentially making the whole page
1549 			 * clean.
1550 			 */
1551 			pos_devb = roundup2(pos & PAGE_MASK, DEV_BSIZE);
1552 			vm_page_clear_dirty(ma[i], pos_devb, PAGE_SIZE -
1553 			    pos_devb);
1554 
1555 			/*
1556 			 * If the page was cleaned, report the pageout
1557 			 * on it as successful.  msync() no longer
1558 			 * needs to write out the page, endlessly
1559 			 * creating write requests and dirty buffers.
1560 			 */
1561 			if (ma[i]->dirty == 0)
1562 				rtvals[i] = VM_PAGER_OK;
1563 
1564 			pos = round_page(pos);
1565 		} else {
1566 			/* vm_pageout_flush() clears dirty */
1567 			rtvals[i] = VM_PAGER_BAD;
1568 			pos += PAGE_SIZE;
1569 		}
1570 	}
1571 }
1572 
1573 static void
vnode_pager_update_writecount(vm_object_t object,vm_offset_t start,vm_offset_t end)1574 vnode_pager_update_writecount(vm_object_t object, vm_offset_t start,
1575     vm_offset_t end)
1576 {
1577 	struct vnode *vp;
1578 	vm_ooffset_t old_wm;
1579 
1580 	VM_OBJECT_WLOCK(object);
1581 	if (object->type != OBJT_VNODE) {
1582 		VM_OBJECT_WUNLOCK(object);
1583 		return;
1584 	}
1585 	old_wm = object->un_pager.vnp.writemappings;
1586 	object->un_pager.vnp.writemappings += (vm_ooffset_t)end - start;
1587 	vp = object->handle;
1588 	if (old_wm == 0 && object->un_pager.vnp.writemappings != 0) {
1589 		ASSERT_VOP_LOCKED(vp, "v_writecount inc");
1590 		VOP_ADD_WRITECOUNT_CHECKED(vp, 1);
1591 		CTR3(KTR_VFS, "%s: vp %p v_writecount increased to %d",
1592 		    __func__, vp, vp->v_writecount);
1593 	} else if (old_wm != 0 && object->un_pager.vnp.writemappings == 0) {
1594 		ASSERT_VOP_LOCKED(vp, "v_writecount dec");
1595 		VOP_ADD_WRITECOUNT_CHECKED(vp, -1);
1596 		CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d",
1597 		    __func__, vp, vp->v_writecount);
1598 	}
1599 	VM_OBJECT_WUNLOCK(object);
1600 }
1601 
1602 static void
vnode_pager_release_writecount(vm_object_t object,vm_offset_t start,vm_offset_t end)1603 vnode_pager_release_writecount(vm_object_t object, vm_offset_t start,
1604     vm_offset_t end)
1605 {
1606 	struct vnode *vp;
1607 	struct mount *mp;
1608 	vm_offset_t inc;
1609 
1610 	VM_OBJECT_WLOCK(object);
1611 
1612 	/*
1613 	 * First, recheck the object type to account for the race when
1614 	 * the vnode is reclaimed.
1615 	 */
1616 	if (object->type != OBJT_VNODE) {
1617 		VM_OBJECT_WUNLOCK(object);
1618 		return;
1619 	}
1620 
1621 	/*
1622 	 * Optimize for the case when writemappings is not going to
1623 	 * zero.
1624 	 */
1625 	inc = end - start;
1626 	if (object->un_pager.vnp.writemappings != inc) {
1627 		object->un_pager.vnp.writemappings -= inc;
1628 		VM_OBJECT_WUNLOCK(object);
1629 		return;
1630 	}
1631 
1632 	vp = object->handle;
1633 	vhold(vp);
1634 	VM_OBJECT_WUNLOCK(object);
1635 	mp = NULL;
1636 	vn_start_write(vp, &mp, V_WAIT);
1637 	vn_lock(vp, LK_SHARED | LK_RETRY);
1638 
1639 	/*
1640 	 * Decrement the object's writemappings, by swapping the start
1641 	 * and end arguments for vnode_pager_update_writecount().  If
1642 	 * there was not a race with vnode reclaimation, then the
1643 	 * vnode's v_writecount is decremented.
1644 	 */
1645 	vnode_pager_update_writecount(object, end, start);
1646 	VOP_UNLOCK(vp);
1647 	vdrop(vp);
1648 	if (mp != NULL)
1649 		vn_finished_write(mp);
1650 }
1651 
1652 static void
vnode_pager_getvp(vm_object_t object,struct vnode ** vpp,bool * vp_heldp)1653 vnode_pager_getvp(vm_object_t object, struct vnode **vpp, bool *vp_heldp)
1654 {
1655 	*vpp = object->handle;
1656 }
1657 
1658 static void
vnode_pager_clean1(struct vnode * vp,int sync_flags)1659 vnode_pager_clean1(struct vnode *vp, int sync_flags)
1660 {
1661 	struct vm_object *obj;
1662 
1663 	ASSERT_VOP_LOCKED(vp, "needs lock for writes");
1664 	obj = vp->v_object;
1665 	if (obj == NULL)
1666 		return;
1667 
1668 	VM_OBJECT_WLOCK(obj);
1669 	vm_object_page_clean(obj, 0, 0, sync_flags);
1670 	VM_OBJECT_WUNLOCK(obj);
1671 }
1672 
1673 void
vnode_pager_clean_sync(struct vnode * vp)1674 vnode_pager_clean_sync(struct vnode *vp)
1675 {
1676 	vnode_pager_clean1(vp, OBJPC_SYNC);
1677 }
1678 
1679 void
vnode_pager_clean_async(struct vnode * vp)1680 vnode_pager_clean_async(struct vnode *vp)
1681 {
1682 	vnode_pager_clean1(vp, 0);
1683 }
1684