1 /*-
2 * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU)
3 *
4 * Copyright (c) 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * The Mach Operating System project at Carnegie-Mellon University.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * from: @(#)vm_object.c 8.5 (Berkeley) 3/22/94
35 *
36 *
37 * Copyright (c) 1987, 1990 Carnegie-Mellon University.
38 * All rights reserved.
39 *
40 * Authors: Avadis Tevanian, Jr., Michael Wayne Young
41 *
42 * Permission to use, copy, modify and distribute this software and
43 * its documentation is hereby granted, provided that both the copyright
44 * notice and this permission notice appear in all copies of the
45 * software, derivative works or modified versions, and any portions
46 * thereof, and that both notices appear in supporting documentation.
47 *
48 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
49 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
50 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
51 *
52 * Carnegie Mellon requests users of this software to return to
53 *
54 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
55 * School of Computer Science
56 * Carnegie Mellon University
57 * Pittsburgh PA 15213-3890
58 *
59 * any improvements or extensions that they make and grant Carnegie the
60 * rights to redistribute these changes.
61 */
62
63 /*
64 * Virtual memory object module.
65 */
66
67 #include "opt_vm.h"
68
69 #include <sys/systm.h>
70 #include <sys/blockcount.h>
71 #include <sys/cpuset.h>
72 #include <sys/jail.h>
73 #include <sys/limits.h>
74 #include <sys/lock.h>
75 #include <sys/mman.h>
76 #include <sys/mount.h>
77 #include <sys/kernel.h>
78 #include <sys/mutex.h>
79 #include <sys/pctrie.h>
80 #include <sys/proc.h>
81 #include <sys/refcount.h>
82 #include <sys/sx.h>
83 #include <sys/sysctl.h>
84 #include <sys/resourcevar.h>
85 #include <sys/refcount.h>
86 #include <sys/rwlock.h>
87 #include <sys/user.h>
88 #include <sys/vnode.h>
89 #include <sys/vmmeter.h>
90
91 #include <vm/vm.h>
92 #include <vm/vm_param.h>
93 #include <vm/pmap.h>
94 #include <vm/vm_map.h>
95 #include <vm/vm_object.h>
96 #include <vm/vm_page.h>
97 #include <vm/vm_pageout.h>
98 #include <vm/vm_pager.h>
99 #include <vm/vm_phys.h>
100 #include <vm/vm_pagequeue.h>
101 #include <vm/swap_pager.h>
102 #include <vm/vm_kern.h>
103 #include <vm/vm_extern.h>
104 #include <vm/vm_radix.h>
105 #include <vm/vm_reserv.h>
106 #include <vm/uma.h>
107
108 static int old_msync;
109 SYSCTL_INT(_vm, OID_AUTO, old_msync, CTLFLAG_RW, &old_msync, 0,
110 "Use old (insecure) msync behavior");
111
112 static int vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
113 int pagerflags, int flags, boolean_t *allclean,
114 boolean_t *eio);
115 static boolean_t vm_object_page_remove_write(vm_page_t p, int flags,
116 boolean_t *allclean);
117 static void vm_object_backing_remove(vm_object_t object);
118
119 /*
120 * Virtual memory objects maintain the actual data
121 * associated with allocated virtual memory. A given
122 * page of memory exists within exactly one object.
123 *
124 * An object is only deallocated when all "references"
125 * are given up. Only one "reference" to a given
126 * region of an object should be writeable.
127 *
128 * Associated with each object is a list of all resident
129 * memory pages belonging to that object; this list is
130 * maintained by the "vm_page" module, and locked by the object's
131 * lock.
132 *
133 * Each object also records a "pager" routine which is
134 * used to retrieve (and store) pages to the proper backing
135 * storage. In addition, objects may be backed by other
136 * objects from which they were virtual-copied.
137 *
138 * The only items within the object structure which are
139 * modified after time of creation are:
140 * reference count locked by object's lock
141 * pager routine locked by object's lock
142 *
143 */
144
145 struct object_q vm_object_list;
146 struct mtx vm_object_list_mtx; /* lock for object list and count */
147
148 struct vm_object kernel_object_store;
149
150 static SYSCTL_NODE(_vm_stats, OID_AUTO, object, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
151 "VM object stats");
152
153 static COUNTER_U64_DEFINE_EARLY(object_collapses);
154 SYSCTL_COUNTER_U64(_vm_stats_object, OID_AUTO, collapses, CTLFLAG_RD,
155 &object_collapses,
156 "VM object collapses");
157
158 static COUNTER_U64_DEFINE_EARLY(object_bypasses);
159 SYSCTL_COUNTER_U64(_vm_stats_object, OID_AUTO, bypasses, CTLFLAG_RD,
160 &object_bypasses,
161 "VM object bypasses");
162
163 static COUNTER_U64_DEFINE_EARLY(object_collapse_waits);
164 SYSCTL_COUNTER_U64(_vm_stats_object, OID_AUTO, collapse_waits, CTLFLAG_RD,
165 &object_collapse_waits,
166 "Number of sleeps for collapse");
167
168 static uma_zone_t obj_zone;
169
170 static int vm_object_zinit(void *mem, int size, int flags);
171
172 #ifdef INVARIANTS
173 static void vm_object_zdtor(void *mem, int size, void *arg);
174
175 static void
vm_object_zdtor(void * mem,int size,void * arg)176 vm_object_zdtor(void *mem, int size, void *arg)
177 {
178 vm_object_t object;
179
180 object = (vm_object_t)mem;
181 KASSERT(object->ref_count == 0,
182 ("object %p ref_count = %d", object, object->ref_count));
183 KASSERT(TAILQ_EMPTY(&object->memq),
184 ("object %p has resident pages in its memq", object));
185 KASSERT(vm_radix_is_empty(&object->rtree),
186 ("object %p has resident pages in its trie", object));
187 #if VM_NRESERVLEVEL > 0
188 KASSERT(LIST_EMPTY(&object->rvq),
189 ("object %p has reservations",
190 object));
191 #endif
192 KASSERT(!vm_object_busied(object),
193 ("object %p busy = %d", object, blockcount_read(&object->busy)));
194 KASSERT(object->resident_page_count == 0,
195 ("object %p resident_page_count = %d",
196 object, object->resident_page_count));
197 KASSERT(atomic_load_int(&object->shadow_count) == 0,
198 ("object %p shadow_count = %d",
199 object, atomic_load_int(&object->shadow_count)));
200 KASSERT(object->type == OBJT_DEAD,
201 ("object %p has non-dead type %d",
202 object, object->type));
203 KASSERT(object->charge == 0 && object->cred == NULL,
204 ("object %p has non-zero charge %ju (%p)",
205 object, (uintmax_t)object->charge, object->cred));
206 }
207 #endif
208
209 static int
vm_object_zinit(void * mem,int size,int flags)210 vm_object_zinit(void *mem, int size, int flags)
211 {
212 vm_object_t object;
213
214 object = (vm_object_t)mem;
215 rw_init_flags(&object->lock, "vm object", RW_DUPOK | RW_NEW);
216
217 /* These are true for any object that has been freed */
218 object->type = OBJT_DEAD;
219 vm_radix_init(&object->rtree);
220 refcount_init(&object->ref_count, 0);
221 blockcount_init(&object->paging_in_progress);
222 blockcount_init(&object->busy);
223 object->resident_page_count = 0;
224 atomic_store_int(&object->shadow_count, 0);
225 object->flags = OBJ_DEAD;
226
227 mtx_lock(&vm_object_list_mtx);
228 TAILQ_INSERT_TAIL(&vm_object_list, object, object_list);
229 mtx_unlock(&vm_object_list_mtx);
230 return (0);
231 }
232
233 static void
_vm_object_allocate(objtype_t type,vm_pindex_t size,u_short flags,vm_object_t object,void * handle)234 _vm_object_allocate(objtype_t type, vm_pindex_t size, u_short flags,
235 vm_object_t object, void *handle)
236 {
237
238 TAILQ_INIT(&object->memq);
239 LIST_INIT(&object->shadow_head);
240
241 object->type = type;
242 object->flags = flags;
243 if ((flags & OBJ_SWAP) != 0)
244 pctrie_init(&object->un_pager.swp.swp_blks);
245
246 /*
247 * Ensure that swap_pager_swapoff() iteration over object_list
248 * sees up to date type and pctrie head if it observed
249 * non-dead object.
250 */
251 atomic_thread_fence_rel();
252
253 object->pg_color = 0;
254 object->size = size;
255 object->domain.dr_policy = NULL;
256 object->generation = 1;
257 object->cleangeneration = 1;
258 refcount_init(&object->ref_count, 1);
259 object->memattr = VM_MEMATTR_DEFAULT;
260 object->cred = NULL;
261 object->charge = 0;
262 object->handle = handle;
263 object->backing_object = NULL;
264 object->backing_object_offset = (vm_ooffset_t) 0;
265 #if VM_NRESERVLEVEL > 0
266 LIST_INIT(&object->rvq);
267 #endif
268 umtx_shm_object_init(object);
269 }
270
271 /*
272 * vm_object_init:
273 *
274 * Initialize the VM objects module.
275 */
276 void
vm_object_init(void)277 vm_object_init(void)
278 {
279 TAILQ_INIT(&vm_object_list);
280 mtx_init(&vm_object_list_mtx, "vm object_list", NULL, MTX_DEF);
281
282 rw_init(&kernel_object->lock, "kernel vm object");
283 _vm_object_allocate(OBJT_PHYS, atop(VM_MAX_KERNEL_ADDRESS -
284 VM_MIN_KERNEL_ADDRESS), OBJ_UNMANAGED, kernel_object, NULL);
285 #if VM_NRESERVLEVEL > 0
286 kernel_object->flags |= OBJ_COLORED;
287 kernel_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
288 #endif
289 kernel_object->un_pager.phys.ops = &default_phys_pg_ops;
290
291 /*
292 * The lock portion of struct vm_object must be type stable due
293 * to vm_pageout_fallback_object_lock locking a vm object
294 * without holding any references to it.
295 *
296 * paging_in_progress is valid always. Lockless references to
297 * the objects may acquire pip and then check OBJ_DEAD.
298 */
299 obj_zone = uma_zcreate("VM OBJECT", sizeof (struct vm_object), NULL,
300 #ifdef INVARIANTS
301 vm_object_zdtor,
302 #else
303 NULL,
304 #endif
305 vm_object_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
306
307 vm_radix_zinit();
308 }
309
310 void
vm_object_clear_flag(vm_object_t object,u_short bits)311 vm_object_clear_flag(vm_object_t object, u_short bits)
312 {
313
314 VM_OBJECT_ASSERT_WLOCKED(object);
315 object->flags &= ~bits;
316 }
317
318 /*
319 * Sets the default memory attribute for the specified object. Pages
320 * that are allocated to this object are by default assigned this memory
321 * attribute.
322 *
323 * Presently, this function must be called before any pages are allocated
324 * to the object. In the future, this requirement may be relaxed for
325 * "default" and "swap" objects.
326 */
327 int
vm_object_set_memattr(vm_object_t object,vm_memattr_t memattr)328 vm_object_set_memattr(vm_object_t object, vm_memattr_t memattr)
329 {
330
331 VM_OBJECT_ASSERT_WLOCKED(object);
332
333 if (object->type == OBJT_DEAD)
334 return (KERN_INVALID_ARGUMENT);
335 if (!TAILQ_EMPTY(&object->memq))
336 return (KERN_FAILURE);
337
338 object->memattr = memattr;
339 return (KERN_SUCCESS);
340 }
341
342 void
vm_object_pip_add(vm_object_t object,short i)343 vm_object_pip_add(vm_object_t object, short i)
344 {
345
346 if (i > 0)
347 blockcount_acquire(&object->paging_in_progress, i);
348 }
349
350 void
vm_object_pip_wakeup(vm_object_t object)351 vm_object_pip_wakeup(vm_object_t object)
352 {
353
354 vm_object_pip_wakeupn(object, 1);
355 }
356
357 void
vm_object_pip_wakeupn(vm_object_t object,short i)358 vm_object_pip_wakeupn(vm_object_t object, short i)
359 {
360
361 if (i > 0)
362 blockcount_release(&object->paging_in_progress, i);
363 }
364
365 /*
366 * Atomically drop the object lock and wait for pip to drain. This protects
367 * from sleep/wakeup races due to identity changes. The lock is not re-acquired
368 * on return.
369 */
370 static void
vm_object_pip_sleep(vm_object_t object,const char * waitid)371 vm_object_pip_sleep(vm_object_t object, const char *waitid)
372 {
373
374 (void)blockcount_sleep(&object->paging_in_progress, &object->lock,
375 waitid, PVM | PDROP);
376 }
377
378 void
vm_object_pip_wait(vm_object_t object,const char * waitid)379 vm_object_pip_wait(vm_object_t object, const char *waitid)
380 {
381
382 VM_OBJECT_ASSERT_WLOCKED(object);
383
384 blockcount_wait(&object->paging_in_progress, &object->lock, waitid,
385 PVM);
386 }
387
388 void
vm_object_pip_wait_unlocked(vm_object_t object,const char * waitid)389 vm_object_pip_wait_unlocked(vm_object_t object, const char *waitid)
390 {
391
392 VM_OBJECT_ASSERT_UNLOCKED(object);
393
394 blockcount_wait(&object->paging_in_progress, NULL, waitid, PVM);
395 }
396
397 /*
398 * vm_object_allocate:
399 *
400 * Returns a new object with the given size.
401 */
402 vm_object_t
vm_object_allocate(objtype_t type,vm_pindex_t size)403 vm_object_allocate(objtype_t type, vm_pindex_t size)
404 {
405 vm_object_t object;
406 u_short flags;
407
408 switch (type) {
409 case OBJT_DEAD:
410 panic("vm_object_allocate: can't create OBJT_DEAD");
411 case OBJT_DEFAULT:
412 flags = OBJ_COLORED;
413 break;
414 case OBJT_SWAP:
415 flags = OBJ_COLORED | OBJ_SWAP;
416 break;
417 case OBJT_DEVICE:
418 case OBJT_SG:
419 flags = OBJ_FICTITIOUS | OBJ_UNMANAGED;
420 break;
421 case OBJT_MGTDEVICE:
422 flags = OBJ_FICTITIOUS;
423 break;
424 case OBJT_PHYS:
425 flags = OBJ_UNMANAGED;
426 break;
427 case OBJT_VNODE:
428 flags = 0;
429 break;
430 default:
431 panic("vm_object_allocate: type %d is undefined or dynamic",
432 type);
433 }
434 object = (vm_object_t)uma_zalloc(obj_zone, M_WAITOK);
435 _vm_object_allocate(type, size, flags, object, NULL);
436
437 return (object);
438 }
439
440 vm_object_t
vm_object_allocate_dyn(objtype_t dyntype,vm_pindex_t size,u_short flags)441 vm_object_allocate_dyn(objtype_t dyntype, vm_pindex_t size, u_short flags)
442 {
443 vm_object_t object;
444
445 MPASS(dyntype >= OBJT_FIRST_DYN /* && dyntype < nitems(pagertab) */);
446 object = (vm_object_t)uma_zalloc(obj_zone, M_WAITOK);
447 _vm_object_allocate(dyntype, size, flags, object, NULL);
448
449 return (object);
450 }
451
452 /*
453 * vm_object_allocate_anon:
454 *
455 * Returns a new default object of the given size and marked as
456 * anonymous memory for special split/collapse handling. Color
457 * to be initialized by the caller.
458 */
459 vm_object_t
vm_object_allocate_anon(vm_pindex_t size,vm_object_t backing_object,struct ucred * cred,vm_size_t charge)460 vm_object_allocate_anon(vm_pindex_t size, vm_object_t backing_object,
461 struct ucred *cred, vm_size_t charge)
462 {
463 vm_object_t handle, object;
464
465 if (backing_object == NULL)
466 handle = NULL;
467 else if ((backing_object->flags & OBJ_ANON) != 0)
468 handle = backing_object->handle;
469 else
470 handle = backing_object;
471 object = uma_zalloc(obj_zone, M_WAITOK);
472 _vm_object_allocate(OBJT_DEFAULT, size, OBJ_ANON | OBJ_ONEMAPPING,
473 object, handle);
474 object->cred = cred;
475 object->charge = cred != NULL ? charge : 0;
476 return (object);
477 }
478
479 static void
vm_object_reference_vnode(vm_object_t object)480 vm_object_reference_vnode(vm_object_t object)
481 {
482 u_int old;
483
484 /*
485 * vnode objects need the lock for the first reference
486 * to serialize with vnode_object_deallocate().
487 */
488 if (!refcount_acquire_if_gt(&object->ref_count, 0)) {
489 VM_OBJECT_RLOCK(object);
490 old = refcount_acquire(&object->ref_count);
491 if (object->type == OBJT_VNODE && old == 0)
492 vref(object->handle);
493 VM_OBJECT_RUNLOCK(object);
494 }
495 }
496
497 /*
498 * vm_object_reference:
499 *
500 * Acquires a reference to the given object.
501 */
502 void
vm_object_reference(vm_object_t object)503 vm_object_reference(vm_object_t object)
504 {
505
506 if (object == NULL)
507 return;
508
509 if (object->type == OBJT_VNODE)
510 vm_object_reference_vnode(object);
511 else
512 refcount_acquire(&object->ref_count);
513 KASSERT((object->flags & OBJ_DEAD) == 0,
514 ("vm_object_reference: Referenced dead object."));
515 }
516
517 /*
518 * vm_object_reference_locked:
519 *
520 * Gets another reference to the given object.
521 *
522 * The object must be locked.
523 */
524 void
vm_object_reference_locked(vm_object_t object)525 vm_object_reference_locked(vm_object_t object)
526 {
527 u_int old;
528
529 VM_OBJECT_ASSERT_LOCKED(object);
530 old = refcount_acquire(&object->ref_count);
531 if (object->type == OBJT_VNODE && old == 0)
532 vref(object->handle);
533 KASSERT((object->flags & OBJ_DEAD) == 0,
534 ("vm_object_reference: Referenced dead object."));
535 }
536
537 /*
538 * Handle deallocating an object of type OBJT_VNODE.
539 */
540 static void
vm_object_deallocate_vnode(vm_object_t object)541 vm_object_deallocate_vnode(vm_object_t object)
542 {
543 struct vnode *vp = (struct vnode *) object->handle;
544 bool last;
545
546 KASSERT(object->type == OBJT_VNODE,
547 ("vm_object_deallocate_vnode: not a vnode object"));
548 KASSERT(vp != NULL, ("vm_object_deallocate_vnode: missing vp"));
549
550 /* Object lock to protect handle lookup. */
551 last = refcount_release(&object->ref_count);
552 VM_OBJECT_RUNLOCK(object);
553
554 if (!last)
555 return;
556
557 if (!umtx_shm_vnobj_persistent)
558 umtx_shm_object_terminated(object);
559
560 /* vrele may need the vnode lock. */
561 vrele(vp);
562 }
563
564 /*
565 * We dropped a reference on an object and discovered that it had a
566 * single remaining shadow. This is a sibling of the reference we
567 * dropped. Attempt to collapse the sibling and backing object.
568 */
569 static vm_object_t
vm_object_deallocate_anon(vm_object_t backing_object)570 vm_object_deallocate_anon(vm_object_t backing_object)
571 {
572 vm_object_t object;
573
574 /* Fetch the final shadow. */
575 object = LIST_FIRST(&backing_object->shadow_head);
576 KASSERT(object != NULL &&
577 atomic_load_int(&backing_object->shadow_count) == 1,
578 ("vm_object_anon_deallocate: ref_count: %d, shadow_count: %d",
579 backing_object->ref_count,
580 atomic_load_int(&backing_object->shadow_count)));
581 KASSERT((object->flags & OBJ_ANON) != 0,
582 ("invalid shadow object %p", object));
583
584 if (!VM_OBJECT_TRYWLOCK(object)) {
585 /*
586 * Prevent object from disappearing since we do not have a
587 * reference.
588 */
589 vm_object_pip_add(object, 1);
590 VM_OBJECT_WUNLOCK(backing_object);
591 VM_OBJECT_WLOCK(object);
592 vm_object_pip_wakeup(object);
593 } else
594 VM_OBJECT_WUNLOCK(backing_object);
595
596 /*
597 * Check for a collapse/terminate race with the last reference holder.
598 */
599 if ((object->flags & (OBJ_DEAD | OBJ_COLLAPSING)) != 0 ||
600 !refcount_acquire_if_not_zero(&object->ref_count)) {
601 VM_OBJECT_WUNLOCK(object);
602 return (NULL);
603 }
604 backing_object = object->backing_object;
605 if (backing_object != NULL && (backing_object->flags & OBJ_ANON) != 0)
606 vm_object_collapse(object);
607 VM_OBJECT_WUNLOCK(object);
608
609 return (object);
610 }
611
612 /*
613 * vm_object_deallocate:
614 *
615 * Release a reference to the specified object,
616 * gained either through a vm_object_allocate
617 * or a vm_object_reference call. When all references
618 * are gone, storage associated with this object
619 * may be relinquished.
620 *
621 * No object may be locked.
622 */
623 void
vm_object_deallocate(vm_object_t object)624 vm_object_deallocate(vm_object_t object)
625 {
626 vm_object_t temp;
627 bool released;
628
629 while (object != NULL) {
630 /*
631 * If the reference count goes to 0 we start calling
632 * vm_object_terminate() on the object chain. A ref count
633 * of 1 may be a special case depending on the shadow count
634 * being 0 or 1. These cases require a write lock on the
635 * object.
636 */
637 if ((object->flags & OBJ_ANON) == 0)
638 released = refcount_release_if_gt(&object->ref_count, 1);
639 else
640 released = refcount_release_if_gt(&object->ref_count, 2);
641 if (released)
642 return;
643
644 if (object->type == OBJT_VNODE) {
645 VM_OBJECT_RLOCK(object);
646 if (object->type == OBJT_VNODE) {
647 vm_object_deallocate_vnode(object);
648 return;
649 }
650 VM_OBJECT_RUNLOCK(object);
651 }
652
653 VM_OBJECT_WLOCK(object);
654 KASSERT(object->ref_count > 0,
655 ("vm_object_deallocate: object deallocated too many times: %d",
656 object->type));
657
658 /*
659 * If this is not the final reference to an anonymous
660 * object we may need to collapse the shadow chain.
661 */
662 if (!refcount_release(&object->ref_count)) {
663 if (object->ref_count > 1 ||
664 atomic_load_int(&object->shadow_count) == 0) {
665 if ((object->flags & OBJ_ANON) != 0 &&
666 object->ref_count == 1)
667 vm_object_set_flag(object,
668 OBJ_ONEMAPPING);
669 VM_OBJECT_WUNLOCK(object);
670 return;
671 }
672
673 /* Handle collapsing last ref on anonymous objects. */
674 object = vm_object_deallocate_anon(object);
675 continue;
676 }
677
678 /*
679 * Handle the final reference to an object. We restart
680 * the loop with the backing object to avoid recursion.
681 */
682 umtx_shm_object_terminated(object);
683 temp = object->backing_object;
684 if (temp != NULL) {
685 KASSERT(object->type == OBJT_DEFAULT ||
686 object->type == OBJT_SWAP,
687 ("shadowed tmpfs v_object 2 %p", object));
688 vm_object_backing_remove(object);
689 }
690
691 KASSERT((object->flags & OBJ_DEAD) == 0,
692 ("vm_object_deallocate: Terminating dead object."));
693 vm_object_set_flag(object, OBJ_DEAD);
694 vm_object_terminate(object);
695 object = temp;
696 }
697 }
698
699 /*
700 * vm_object_destroy removes the object from the global object list
701 * and frees the space for the object.
702 */
703 void
vm_object_destroy(vm_object_t object)704 vm_object_destroy(vm_object_t object)
705 {
706
707 /*
708 * Release the allocation charge.
709 */
710 if (object->cred != NULL) {
711 swap_release_by_cred(object->charge, object->cred);
712 object->charge = 0;
713 crfree(object->cred);
714 object->cred = NULL;
715 }
716
717 /*
718 * Free the space for the object.
719 */
720 uma_zfree(obj_zone, object);
721 }
722
723 static void
vm_object_sub_shadow(vm_object_t object)724 vm_object_sub_shadow(vm_object_t object)
725 {
726 KASSERT(object->shadow_count >= 1,
727 ("object %p sub_shadow count zero", object));
728 atomic_subtract_int(&object->shadow_count, 1);
729 }
730
731 static void
vm_object_backing_remove_locked(vm_object_t object)732 vm_object_backing_remove_locked(vm_object_t object)
733 {
734 vm_object_t backing_object;
735
736 backing_object = object->backing_object;
737 VM_OBJECT_ASSERT_WLOCKED(object);
738 VM_OBJECT_ASSERT_WLOCKED(backing_object);
739
740 KASSERT((object->flags & OBJ_COLLAPSING) == 0,
741 ("vm_object_backing_remove: Removing collapsing object."));
742
743 vm_object_sub_shadow(backing_object);
744 if ((object->flags & OBJ_SHADOWLIST) != 0) {
745 LIST_REMOVE(object, shadow_list);
746 vm_object_clear_flag(object, OBJ_SHADOWLIST);
747 }
748 object->backing_object = NULL;
749 }
750
751 static void
vm_object_backing_remove(vm_object_t object)752 vm_object_backing_remove(vm_object_t object)
753 {
754 vm_object_t backing_object;
755
756 VM_OBJECT_ASSERT_WLOCKED(object);
757
758 backing_object = object->backing_object;
759 if ((object->flags & OBJ_SHADOWLIST) != 0) {
760 VM_OBJECT_WLOCK(backing_object);
761 vm_object_backing_remove_locked(object);
762 VM_OBJECT_WUNLOCK(backing_object);
763 } else {
764 object->backing_object = NULL;
765 vm_object_sub_shadow(backing_object);
766 }
767 }
768
769 static void
vm_object_backing_insert_locked(vm_object_t object,vm_object_t backing_object)770 vm_object_backing_insert_locked(vm_object_t object, vm_object_t backing_object)
771 {
772
773 VM_OBJECT_ASSERT_WLOCKED(object);
774
775 atomic_add_int(&backing_object->shadow_count, 1);
776 if ((backing_object->flags & OBJ_ANON) != 0) {
777 VM_OBJECT_ASSERT_WLOCKED(backing_object);
778 LIST_INSERT_HEAD(&backing_object->shadow_head, object,
779 shadow_list);
780 vm_object_set_flag(object, OBJ_SHADOWLIST);
781 }
782 object->backing_object = backing_object;
783 }
784
785 static void
vm_object_backing_insert(vm_object_t object,vm_object_t backing_object)786 vm_object_backing_insert(vm_object_t object, vm_object_t backing_object)
787 {
788
789 VM_OBJECT_ASSERT_WLOCKED(object);
790
791 if ((backing_object->flags & OBJ_ANON) != 0) {
792 VM_OBJECT_WLOCK(backing_object);
793 vm_object_backing_insert_locked(object, backing_object);
794 VM_OBJECT_WUNLOCK(backing_object);
795 } else {
796 object->backing_object = backing_object;
797 atomic_add_int(&backing_object->shadow_count, 1);
798 }
799 }
800
801 /*
802 * Insert an object into a backing_object's shadow list with an additional
803 * reference to the backing_object added.
804 */
805 static void
vm_object_backing_insert_ref(vm_object_t object,vm_object_t backing_object)806 vm_object_backing_insert_ref(vm_object_t object, vm_object_t backing_object)
807 {
808
809 VM_OBJECT_ASSERT_WLOCKED(object);
810
811 if ((backing_object->flags & OBJ_ANON) != 0) {
812 VM_OBJECT_WLOCK(backing_object);
813 KASSERT((backing_object->flags & OBJ_DEAD) == 0,
814 ("shadowing dead anonymous object"));
815 vm_object_reference_locked(backing_object);
816 vm_object_backing_insert_locked(object, backing_object);
817 vm_object_clear_flag(backing_object, OBJ_ONEMAPPING);
818 VM_OBJECT_WUNLOCK(backing_object);
819 } else {
820 vm_object_reference(backing_object);
821 atomic_add_int(&backing_object->shadow_count, 1);
822 object->backing_object = backing_object;
823 }
824 }
825
826 /*
827 * Transfer a backing reference from backing_object to object.
828 */
829 static void
vm_object_backing_transfer(vm_object_t object,vm_object_t backing_object)830 vm_object_backing_transfer(vm_object_t object, vm_object_t backing_object)
831 {
832 vm_object_t new_backing_object;
833
834 /*
835 * Note that the reference to backing_object->backing_object
836 * moves from within backing_object to within object.
837 */
838 vm_object_backing_remove_locked(object);
839 new_backing_object = backing_object->backing_object;
840 if (new_backing_object == NULL)
841 return;
842 if ((new_backing_object->flags & OBJ_ANON) != 0) {
843 VM_OBJECT_WLOCK(new_backing_object);
844 vm_object_backing_remove_locked(backing_object);
845 vm_object_backing_insert_locked(object, new_backing_object);
846 VM_OBJECT_WUNLOCK(new_backing_object);
847 } else {
848 /*
849 * shadow_count for new_backing_object is left
850 * unchanged, its reference provided by backing_object
851 * is replaced by object.
852 */
853 object->backing_object = new_backing_object;
854 backing_object->backing_object = NULL;
855 }
856 }
857
858 /*
859 * Wait for a concurrent collapse to settle.
860 */
861 static void
vm_object_collapse_wait(vm_object_t object)862 vm_object_collapse_wait(vm_object_t object)
863 {
864
865 VM_OBJECT_ASSERT_WLOCKED(object);
866
867 while ((object->flags & OBJ_COLLAPSING) != 0) {
868 vm_object_pip_wait(object, "vmcolwait");
869 counter_u64_add(object_collapse_waits, 1);
870 }
871 }
872
873 /*
874 * Waits for a backing object to clear a pending collapse and returns
875 * it locked if it is an ANON object.
876 */
877 static vm_object_t
vm_object_backing_collapse_wait(vm_object_t object)878 vm_object_backing_collapse_wait(vm_object_t object)
879 {
880 vm_object_t backing_object;
881
882 VM_OBJECT_ASSERT_WLOCKED(object);
883
884 for (;;) {
885 backing_object = object->backing_object;
886 if (backing_object == NULL ||
887 (backing_object->flags & OBJ_ANON) == 0)
888 return (NULL);
889 VM_OBJECT_WLOCK(backing_object);
890 if ((backing_object->flags & (OBJ_DEAD | OBJ_COLLAPSING)) == 0)
891 break;
892 VM_OBJECT_WUNLOCK(object);
893 vm_object_pip_sleep(backing_object, "vmbckwait");
894 counter_u64_add(object_collapse_waits, 1);
895 VM_OBJECT_WLOCK(object);
896 }
897 return (backing_object);
898 }
899
900 /*
901 * vm_object_terminate_pages removes any remaining pageable pages
902 * from the object and resets the object to an empty state.
903 */
904 static void
vm_object_terminate_pages(vm_object_t object)905 vm_object_terminate_pages(vm_object_t object)
906 {
907 vm_page_t p, p_next;
908
909 VM_OBJECT_ASSERT_WLOCKED(object);
910
911 /*
912 * Free any remaining pageable pages. This also removes them from the
913 * paging queues. However, don't free wired pages, just remove them
914 * from the object. Rather than incrementally removing each page from
915 * the object, the page and object are reset to any empty state.
916 */
917 TAILQ_FOREACH_SAFE(p, &object->memq, listq, p_next) {
918 vm_page_assert_unbusied(p);
919 KASSERT(p->object == object &&
920 (p->ref_count & VPRC_OBJREF) != 0,
921 ("vm_object_terminate_pages: page %p is inconsistent", p));
922
923 p->object = NULL;
924 if (vm_page_drop(p, VPRC_OBJREF) == VPRC_OBJREF) {
925 VM_CNT_INC(v_pfree);
926 vm_page_free(p);
927 }
928 }
929
930 /*
931 * If the object contained any pages, then reset it to an empty state.
932 * None of the object's fields, including "resident_page_count", were
933 * modified by the preceding loop.
934 */
935 if (object->resident_page_count != 0) {
936 vm_radix_reclaim_allnodes(&object->rtree);
937 TAILQ_INIT(&object->memq);
938 object->resident_page_count = 0;
939 if (object->type == OBJT_VNODE)
940 vdrop(object->handle);
941 }
942 }
943
944 /*
945 * vm_object_terminate actually destroys the specified object, freeing
946 * up all previously used resources.
947 *
948 * The object must be locked.
949 * This routine may block.
950 */
951 void
vm_object_terminate(vm_object_t object)952 vm_object_terminate(vm_object_t object)
953 {
954
955 VM_OBJECT_ASSERT_WLOCKED(object);
956 KASSERT((object->flags & OBJ_DEAD) != 0,
957 ("terminating non-dead obj %p", object));
958 KASSERT((object->flags & OBJ_COLLAPSING) == 0,
959 ("terminating collapsing obj %p", object));
960 KASSERT(object->backing_object == NULL,
961 ("terminating shadow obj %p", object));
962
963 /*
964 * Wait for the pageout daemon and other current users to be
965 * done with the object. Note that new paging_in_progress
966 * users can come after this wait, but they must check
967 * OBJ_DEAD flag set (without unlocking the object), and avoid
968 * the object being terminated.
969 */
970 vm_object_pip_wait(object, "objtrm");
971
972 KASSERT(object->ref_count == 0,
973 ("vm_object_terminate: object with references, ref_count=%d",
974 object->ref_count));
975
976 if ((object->flags & OBJ_PG_DTOR) == 0)
977 vm_object_terminate_pages(object);
978
979 #if VM_NRESERVLEVEL > 0
980 if (__predict_false(!LIST_EMPTY(&object->rvq)))
981 vm_reserv_break_all(object);
982 #endif
983
984 KASSERT(object->cred == NULL || object->type == OBJT_DEFAULT ||
985 (object->flags & OBJ_SWAP) != 0,
986 ("%s: non-swap obj %p has cred", __func__, object));
987
988 /*
989 * Let the pager know object is dead.
990 */
991 vm_pager_deallocate(object);
992 VM_OBJECT_WUNLOCK(object);
993
994 vm_object_destroy(object);
995 }
996
997 /*
998 * Make the page read-only so that we can clear the object flags. However, if
999 * this is a nosync mmap then the object is likely to stay dirty so do not
1000 * mess with the page and do not clear the object flags. Returns TRUE if the
1001 * page should be flushed, and FALSE otherwise.
1002 */
1003 static boolean_t
vm_object_page_remove_write(vm_page_t p,int flags,boolean_t * allclean)1004 vm_object_page_remove_write(vm_page_t p, int flags, boolean_t *allclean)
1005 {
1006
1007 vm_page_assert_busied(p);
1008
1009 /*
1010 * If we have been asked to skip nosync pages and this is a
1011 * nosync page, skip it. Note that the object flags were not
1012 * cleared in this case so we do not have to set them.
1013 */
1014 if ((flags & OBJPC_NOSYNC) != 0 && (p->a.flags & PGA_NOSYNC) != 0) {
1015 *allclean = FALSE;
1016 return (FALSE);
1017 } else {
1018 pmap_remove_write(p);
1019 return (p->dirty != 0);
1020 }
1021 }
1022
1023 /*
1024 * vm_object_page_clean
1025 *
1026 * Clean all dirty pages in the specified range of object. Leaves page
1027 * on whatever queue it is currently on. If NOSYNC is set then do not
1028 * write out pages with PGA_NOSYNC set (originally comes from MAP_NOSYNC),
1029 * leaving the object dirty.
1030 *
1031 * For swap objects backing tmpfs regular files, do not flush anything,
1032 * but remove write protection on the mapped pages to update mtime through
1033 * mmaped writes.
1034 *
1035 * When stuffing pages asynchronously, allow clustering. XXX we need a
1036 * synchronous clustering mode implementation.
1037 *
1038 * Odd semantics: if start == end, we clean everything.
1039 *
1040 * The object must be locked.
1041 *
1042 * Returns FALSE if some page from the range was not written, as
1043 * reported by the pager, and TRUE otherwise.
1044 */
1045 boolean_t
vm_object_page_clean(vm_object_t object,vm_ooffset_t start,vm_ooffset_t end,int flags)1046 vm_object_page_clean(vm_object_t object, vm_ooffset_t start, vm_ooffset_t end,
1047 int flags)
1048 {
1049 vm_page_t np, p;
1050 vm_pindex_t pi, tend, tstart;
1051 int curgeneration, n, pagerflags;
1052 boolean_t eio, res, allclean;
1053
1054 VM_OBJECT_ASSERT_WLOCKED(object);
1055
1056 if (!vm_object_mightbedirty(object) || object->resident_page_count == 0)
1057 return (TRUE);
1058
1059 pagerflags = (flags & (OBJPC_SYNC | OBJPC_INVAL)) != 0 ?
1060 VM_PAGER_PUT_SYNC : VM_PAGER_CLUSTER_OK;
1061 pagerflags |= (flags & OBJPC_INVAL) != 0 ? VM_PAGER_PUT_INVAL : 0;
1062
1063 tstart = OFF_TO_IDX(start);
1064 tend = (end == 0) ? object->size : OFF_TO_IDX(end + PAGE_MASK);
1065 allclean = tstart == 0 && tend >= object->size;
1066 res = TRUE;
1067
1068 rescan:
1069 curgeneration = object->generation;
1070
1071 for (p = vm_page_find_least(object, tstart); p != NULL; p = np) {
1072 pi = p->pindex;
1073 if (pi >= tend)
1074 break;
1075 np = TAILQ_NEXT(p, listq);
1076 if (vm_page_none_valid(p))
1077 continue;
1078 if (vm_page_busy_acquire(p, VM_ALLOC_WAITFAIL) == 0) {
1079 if (object->generation != curgeneration &&
1080 (flags & OBJPC_SYNC) != 0)
1081 goto rescan;
1082 np = vm_page_find_least(object, pi);
1083 continue;
1084 }
1085 if (!vm_object_page_remove_write(p, flags, &allclean)) {
1086 vm_page_xunbusy(p);
1087 continue;
1088 }
1089 if (object->type == OBJT_VNODE) {
1090 n = vm_object_page_collect_flush(object, p, pagerflags,
1091 flags, &allclean, &eio);
1092 if (eio) {
1093 res = FALSE;
1094 allclean = FALSE;
1095 }
1096 if (object->generation != curgeneration &&
1097 (flags & OBJPC_SYNC) != 0)
1098 goto rescan;
1099
1100 /*
1101 * If the VOP_PUTPAGES() did a truncated write, so
1102 * that even the first page of the run is not fully
1103 * written, vm_pageout_flush() returns 0 as the run
1104 * length. Since the condition that caused truncated
1105 * write may be permanent, e.g. exhausted free space,
1106 * accepting n == 0 would cause an infinite loop.
1107 *
1108 * Forwarding the iterator leaves the unwritten page
1109 * behind, but there is not much we can do there if
1110 * filesystem refuses to write it.
1111 */
1112 if (n == 0) {
1113 n = 1;
1114 allclean = FALSE;
1115 }
1116 } else {
1117 n = 1;
1118 vm_page_xunbusy(p);
1119 }
1120 np = vm_page_find_least(object, pi + n);
1121 }
1122 #if 0
1123 VOP_FSYNC(vp, (pagerflags & VM_PAGER_PUT_SYNC) ? MNT_WAIT : 0);
1124 #endif
1125
1126 /*
1127 * Leave updating cleangeneration for tmpfs objects to tmpfs
1128 * scan. It needs to update mtime, which happens for other
1129 * filesystems during page writeouts.
1130 */
1131 if (allclean && object->type == OBJT_VNODE)
1132 object->cleangeneration = curgeneration;
1133 return (res);
1134 }
1135
1136 static int
vm_object_page_collect_flush(vm_object_t object,vm_page_t p,int pagerflags,int flags,boolean_t * allclean,boolean_t * eio)1137 vm_object_page_collect_flush(vm_object_t object, vm_page_t p, int pagerflags,
1138 int flags, boolean_t *allclean, boolean_t *eio)
1139 {
1140 vm_page_t ma[vm_pageout_page_count], p_first, tp;
1141 int count, i, mreq, runlen;
1142
1143 vm_page_lock_assert(p, MA_NOTOWNED);
1144 vm_page_assert_xbusied(p);
1145 VM_OBJECT_ASSERT_WLOCKED(object);
1146
1147 count = 1;
1148 mreq = 0;
1149
1150 for (tp = p; count < vm_pageout_page_count; count++) {
1151 tp = vm_page_next(tp);
1152 if (tp == NULL || vm_page_tryxbusy(tp) == 0)
1153 break;
1154 if (!vm_object_page_remove_write(tp, flags, allclean)) {
1155 vm_page_xunbusy(tp);
1156 break;
1157 }
1158 }
1159
1160 for (p_first = p; count < vm_pageout_page_count; count++) {
1161 tp = vm_page_prev(p_first);
1162 if (tp == NULL || vm_page_tryxbusy(tp) == 0)
1163 break;
1164 if (!vm_object_page_remove_write(tp, flags, allclean)) {
1165 vm_page_xunbusy(tp);
1166 break;
1167 }
1168 p_first = tp;
1169 mreq++;
1170 }
1171
1172 for (tp = p_first, i = 0; i < count; tp = TAILQ_NEXT(tp, listq), i++)
1173 ma[i] = tp;
1174
1175 vm_pageout_flush(ma, count, pagerflags, mreq, &runlen, eio);
1176 return (runlen);
1177 }
1178
1179 /*
1180 * Note that there is absolutely no sense in writing out
1181 * anonymous objects, so we track down the vnode object
1182 * to write out.
1183 * We invalidate (remove) all pages from the address space
1184 * for semantic correctness.
1185 *
1186 * If the backing object is a device object with unmanaged pages, then any
1187 * mappings to the specified range of pages must be removed before this
1188 * function is called.
1189 *
1190 * Note: certain anonymous maps, such as MAP_NOSYNC maps,
1191 * may start out with a NULL object.
1192 */
1193 boolean_t
vm_object_sync(vm_object_t object,vm_ooffset_t offset,vm_size_t size,boolean_t syncio,boolean_t invalidate)1194 vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size,
1195 boolean_t syncio, boolean_t invalidate)
1196 {
1197 vm_object_t backing_object;
1198 struct vnode *vp;
1199 struct mount *mp;
1200 int error, flags, fsync_after;
1201 boolean_t res;
1202
1203 if (object == NULL)
1204 return (TRUE);
1205 res = TRUE;
1206 error = 0;
1207 VM_OBJECT_WLOCK(object);
1208 while ((backing_object = object->backing_object) != NULL) {
1209 VM_OBJECT_WLOCK(backing_object);
1210 offset += object->backing_object_offset;
1211 VM_OBJECT_WUNLOCK(object);
1212 object = backing_object;
1213 if (object->size < OFF_TO_IDX(offset + size))
1214 size = IDX_TO_OFF(object->size) - offset;
1215 }
1216 /*
1217 * Flush pages if writing is allowed, invalidate them
1218 * if invalidation requested. Pages undergoing I/O
1219 * will be ignored by vm_object_page_remove().
1220 *
1221 * We cannot lock the vnode and then wait for paging
1222 * to complete without deadlocking against vm_fault.
1223 * Instead we simply call vm_object_page_remove() and
1224 * allow it to block internally on a page-by-page
1225 * basis when it encounters pages undergoing async
1226 * I/O.
1227 */
1228 if (object->type == OBJT_VNODE &&
1229 vm_object_mightbedirty(object) != 0 &&
1230 ((vp = object->handle)->v_vflag & VV_NOSYNC) == 0) {
1231 VM_OBJECT_WUNLOCK(object);
1232 (void)vn_start_write(vp, &mp, V_WAIT);
1233 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1234 if (syncio && !invalidate && offset == 0 &&
1235 atop(size) == object->size) {
1236 /*
1237 * If syncing the whole mapping of the file,
1238 * it is faster to schedule all the writes in
1239 * async mode, also allowing the clustering,
1240 * and then wait for i/o to complete.
1241 */
1242 flags = 0;
1243 fsync_after = TRUE;
1244 } else {
1245 flags = (syncio || invalidate) ? OBJPC_SYNC : 0;
1246 flags |= invalidate ? (OBJPC_SYNC | OBJPC_INVAL) : 0;
1247 fsync_after = FALSE;
1248 }
1249 VM_OBJECT_WLOCK(object);
1250 res = vm_object_page_clean(object, offset, offset + size,
1251 flags);
1252 VM_OBJECT_WUNLOCK(object);
1253 if (fsync_after) {
1254 for (;;) {
1255 error = VOP_FSYNC(vp, MNT_WAIT, curthread);
1256 if (error != ERELOOKUP)
1257 break;
1258
1259 /*
1260 * Allow SU/bufdaemon to handle more
1261 * dependencies in the meantime.
1262 */
1263 VOP_UNLOCK(vp);
1264 vn_finished_write(mp);
1265
1266 (void)vn_start_write(vp, &mp, V_WAIT);
1267 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1268 }
1269 }
1270 VOP_UNLOCK(vp);
1271 vn_finished_write(mp);
1272 if (error != 0)
1273 res = FALSE;
1274 VM_OBJECT_WLOCK(object);
1275 }
1276 if ((object->type == OBJT_VNODE ||
1277 object->type == OBJT_DEVICE) && invalidate) {
1278 if (object->type == OBJT_DEVICE)
1279 /*
1280 * The option OBJPR_NOTMAPPED must be passed here
1281 * because vm_object_page_remove() cannot remove
1282 * unmanaged mappings.
1283 */
1284 flags = OBJPR_NOTMAPPED;
1285 else if (old_msync)
1286 flags = 0;
1287 else
1288 flags = OBJPR_CLEANONLY;
1289 vm_object_page_remove(object, OFF_TO_IDX(offset),
1290 OFF_TO_IDX(offset + size + PAGE_MASK), flags);
1291 }
1292 VM_OBJECT_WUNLOCK(object);
1293 return (res);
1294 }
1295
1296 /*
1297 * Determine whether the given advice can be applied to the object. Advice is
1298 * not applied to unmanaged pages since they never belong to page queues, and
1299 * since MADV_FREE is destructive, it can apply only to anonymous pages that
1300 * have been mapped at most once.
1301 */
1302 static bool
vm_object_advice_applies(vm_object_t object,int advice)1303 vm_object_advice_applies(vm_object_t object, int advice)
1304 {
1305
1306 if ((object->flags & OBJ_UNMANAGED) != 0)
1307 return (false);
1308 if (advice != MADV_FREE)
1309 return (true);
1310 return ((object->flags & (OBJ_ONEMAPPING | OBJ_ANON)) ==
1311 (OBJ_ONEMAPPING | OBJ_ANON));
1312 }
1313
1314 static void
vm_object_madvise_freespace(vm_object_t object,int advice,vm_pindex_t pindex,vm_size_t size)1315 vm_object_madvise_freespace(vm_object_t object, int advice, vm_pindex_t pindex,
1316 vm_size_t size)
1317 {
1318
1319 if (advice == MADV_FREE)
1320 vm_pager_freespace(object, pindex, size);
1321 }
1322
1323 /*
1324 * vm_object_madvise:
1325 *
1326 * Implements the madvise function at the object/page level.
1327 *
1328 * MADV_WILLNEED (any object)
1329 *
1330 * Activate the specified pages if they are resident.
1331 *
1332 * MADV_DONTNEED (any object)
1333 *
1334 * Deactivate the specified pages if they are resident.
1335 *
1336 * MADV_FREE (OBJT_DEFAULT/OBJT_SWAP objects,
1337 * OBJ_ONEMAPPING only)
1338 *
1339 * Deactivate and clean the specified pages if they are
1340 * resident. This permits the process to reuse the pages
1341 * without faulting or the kernel to reclaim the pages
1342 * without I/O.
1343 */
1344 void
vm_object_madvise(vm_object_t object,vm_pindex_t pindex,vm_pindex_t end,int advice)1345 vm_object_madvise(vm_object_t object, vm_pindex_t pindex, vm_pindex_t end,
1346 int advice)
1347 {
1348 vm_pindex_t tpindex;
1349 vm_object_t backing_object, tobject;
1350 vm_page_t m, tm;
1351
1352 if (object == NULL)
1353 return;
1354
1355 relookup:
1356 VM_OBJECT_WLOCK(object);
1357 if (!vm_object_advice_applies(object, advice)) {
1358 VM_OBJECT_WUNLOCK(object);
1359 return;
1360 }
1361 for (m = vm_page_find_least(object, pindex); pindex < end; pindex++) {
1362 tobject = object;
1363
1364 /*
1365 * If the next page isn't resident in the top-level object, we
1366 * need to search the shadow chain. When applying MADV_FREE, we
1367 * take care to release any swap space used to store
1368 * non-resident pages.
1369 */
1370 if (m == NULL || pindex < m->pindex) {
1371 /*
1372 * Optimize a common case: if the top-level object has
1373 * no backing object, we can skip over the non-resident
1374 * range in constant time.
1375 */
1376 if (object->backing_object == NULL) {
1377 tpindex = (m != NULL && m->pindex < end) ?
1378 m->pindex : end;
1379 vm_object_madvise_freespace(object, advice,
1380 pindex, tpindex - pindex);
1381 if ((pindex = tpindex) == end)
1382 break;
1383 goto next_page;
1384 }
1385
1386 tpindex = pindex;
1387 do {
1388 vm_object_madvise_freespace(tobject, advice,
1389 tpindex, 1);
1390 /*
1391 * Prepare to search the next object in the
1392 * chain.
1393 */
1394 backing_object = tobject->backing_object;
1395 if (backing_object == NULL)
1396 goto next_pindex;
1397 VM_OBJECT_WLOCK(backing_object);
1398 tpindex +=
1399 OFF_TO_IDX(tobject->backing_object_offset);
1400 if (tobject != object)
1401 VM_OBJECT_WUNLOCK(tobject);
1402 tobject = backing_object;
1403 if (!vm_object_advice_applies(tobject, advice))
1404 goto next_pindex;
1405 } while ((tm = vm_page_lookup(tobject, tpindex)) ==
1406 NULL);
1407 } else {
1408 next_page:
1409 tm = m;
1410 m = TAILQ_NEXT(m, listq);
1411 }
1412
1413 /*
1414 * If the page is not in a normal state, skip it. The page
1415 * can not be invalidated while the object lock is held.
1416 */
1417 if (!vm_page_all_valid(tm) || vm_page_wired(tm))
1418 goto next_pindex;
1419 KASSERT((tm->flags & PG_FICTITIOUS) == 0,
1420 ("vm_object_madvise: page %p is fictitious", tm));
1421 KASSERT((tm->oflags & VPO_UNMANAGED) == 0,
1422 ("vm_object_madvise: page %p is not managed", tm));
1423 if (vm_page_tryxbusy(tm) == 0) {
1424 if (object != tobject)
1425 VM_OBJECT_WUNLOCK(object);
1426 if (advice == MADV_WILLNEED) {
1427 /*
1428 * Reference the page before unlocking and
1429 * sleeping so that the page daemon is less
1430 * likely to reclaim it.
1431 */
1432 vm_page_aflag_set(tm, PGA_REFERENCED);
1433 }
1434 if (!vm_page_busy_sleep(tm, "madvpo", 0))
1435 VM_OBJECT_WUNLOCK(tobject);
1436 goto relookup;
1437 }
1438 vm_page_advise(tm, advice);
1439 vm_page_xunbusy(tm);
1440 vm_object_madvise_freespace(tobject, advice, tm->pindex, 1);
1441 next_pindex:
1442 if (tobject != object)
1443 VM_OBJECT_WUNLOCK(tobject);
1444 }
1445 VM_OBJECT_WUNLOCK(object);
1446 }
1447
1448 /*
1449 * vm_object_shadow:
1450 *
1451 * Create a new object which is backed by the
1452 * specified existing object range. The source
1453 * object reference is deallocated.
1454 *
1455 * The new object and offset into that object
1456 * are returned in the source parameters.
1457 */
1458 void
vm_object_shadow(vm_object_t * object,vm_ooffset_t * offset,vm_size_t length,struct ucred * cred,bool shared)1459 vm_object_shadow(vm_object_t *object, vm_ooffset_t *offset, vm_size_t length,
1460 struct ucred *cred, bool shared)
1461 {
1462 vm_object_t source;
1463 vm_object_t result;
1464
1465 source = *object;
1466
1467 /*
1468 * Don't create the new object if the old object isn't shared.
1469 *
1470 * If we hold the only reference we can guarantee that it won't
1471 * increase while we have the map locked. Otherwise the race is
1472 * harmless and we will end up with an extra shadow object that
1473 * will be collapsed later.
1474 */
1475 if (source != NULL && source->ref_count == 1 &&
1476 (source->flags & OBJ_ANON) != 0)
1477 return;
1478
1479 /*
1480 * Allocate a new object with the given length.
1481 */
1482 result = vm_object_allocate_anon(atop(length), source, cred, length);
1483
1484 /*
1485 * Store the offset into the source object, and fix up the offset into
1486 * the new object.
1487 */
1488 result->backing_object_offset = *offset;
1489
1490 if (shared || source != NULL) {
1491 VM_OBJECT_WLOCK(result);
1492
1493 /*
1494 * The new object shadows the source object, adding a
1495 * reference to it. Our caller changes his reference
1496 * to point to the new object, removing a reference to
1497 * the source object. Net result: no change of
1498 * reference count, unless the caller needs to add one
1499 * more reference due to forking a shared map entry.
1500 */
1501 if (shared) {
1502 vm_object_reference_locked(result);
1503 vm_object_clear_flag(result, OBJ_ONEMAPPING);
1504 }
1505
1506 /*
1507 * Try to optimize the result object's page color when
1508 * shadowing in order to maintain page coloring
1509 * consistency in the combined shadowed object.
1510 */
1511 if (source != NULL) {
1512 vm_object_backing_insert(result, source);
1513 result->domain = source->domain;
1514 #if VM_NRESERVLEVEL > 0
1515 vm_object_set_flag(result,
1516 (source->flags & OBJ_COLORED));
1517 result->pg_color = (source->pg_color +
1518 OFF_TO_IDX(*offset)) & ((1 << (VM_NFREEORDER -
1519 1)) - 1);
1520 #endif
1521 }
1522 VM_OBJECT_WUNLOCK(result);
1523 }
1524
1525 /*
1526 * Return the new things
1527 */
1528 *offset = 0;
1529 *object = result;
1530 }
1531
1532 /*
1533 * vm_object_split:
1534 *
1535 * Split the pages in a map entry into a new object. This affords
1536 * easier removal of unused pages, and keeps object inheritance from
1537 * being a negative impact on memory usage.
1538 */
1539 void
vm_object_split(vm_map_entry_t entry)1540 vm_object_split(vm_map_entry_t entry)
1541 {
1542 vm_page_t m, m_busy, m_next;
1543 vm_object_t orig_object, new_object, backing_object;
1544 vm_pindex_t idx, offidxstart;
1545 vm_size_t size;
1546
1547 orig_object = entry->object.vm_object;
1548 KASSERT((orig_object->flags & OBJ_ONEMAPPING) != 0,
1549 ("vm_object_split: Splitting object with multiple mappings."));
1550 if ((orig_object->flags & OBJ_ANON) == 0)
1551 return;
1552 if (orig_object->ref_count <= 1)
1553 return;
1554 VM_OBJECT_WUNLOCK(orig_object);
1555
1556 offidxstart = OFF_TO_IDX(entry->offset);
1557 size = atop(entry->end - entry->start);
1558
1559 /*
1560 * If swap_pager_copy() is later called, it will convert new_object
1561 * into a swap object.
1562 */
1563 new_object = vm_object_allocate_anon(size, orig_object,
1564 orig_object->cred, ptoa(size));
1565
1566 /*
1567 * We must wait for the orig_object to complete any in-progress
1568 * collapse so that the swap blocks are stable below. The
1569 * additional reference on backing_object by new object will
1570 * prevent further collapse operations until split completes.
1571 */
1572 VM_OBJECT_WLOCK(orig_object);
1573 vm_object_collapse_wait(orig_object);
1574
1575 /*
1576 * At this point, the new object is still private, so the order in
1577 * which the original and new objects are locked does not matter.
1578 */
1579 VM_OBJECT_WLOCK(new_object);
1580 new_object->domain = orig_object->domain;
1581 backing_object = orig_object->backing_object;
1582 if (backing_object != NULL) {
1583 vm_object_backing_insert_ref(new_object, backing_object);
1584 new_object->backing_object_offset =
1585 orig_object->backing_object_offset + entry->offset;
1586 }
1587 if (orig_object->cred != NULL) {
1588 crhold(orig_object->cred);
1589 KASSERT(orig_object->charge >= ptoa(size),
1590 ("orig_object->charge < 0"));
1591 orig_object->charge -= ptoa(size);
1592 }
1593
1594 /*
1595 * Mark the split operation so that swap_pager_getpages() knows
1596 * that the object is in transition.
1597 */
1598 vm_object_set_flag(orig_object, OBJ_SPLIT);
1599 m_busy = NULL;
1600 #ifdef INVARIANTS
1601 idx = 0;
1602 #endif
1603 retry:
1604 m = vm_page_find_least(orig_object, offidxstart);
1605 KASSERT(m == NULL || idx <= m->pindex - offidxstart,
1606 ("%s: object %p was repopulated", __func__, orig_object));
1607 for (; m != NULL && (idx = m->pindex - offidxstart) < size;
1608 m = m_next) {
1609 m_next = TAILQ_NEXT(m, listq);
1610
1611 /*
1612 * We must wait for pending I/O to complete before we can
1613 * rename the page.
1614 *
1615 * We do not have to VM_PROT_NONE the page as mappings should
1616 * not be changed by this operation.
1617 */
1618 if (vm_page_tryxbusy(m) == 0) {
1619 VM_OBJECT_WUNLOCK(new_object);
1620 if (vm_page_busy_sleep(m, "spltwt", 0))
1621 VM_OBJECT_WLOCK(orig_object);
1622 VM_OBJECT_WLOCK(new_object);
1623 goto retry;
1624 }
1625
1626 /*
1627 * The page was left invalid. Likely placed there by
1628 * an incomplete fault. Just remove and ignore.
1629 */
1630 if (vm_page_none_valid(m)) {
1631 if (vm_page_remove(m))
1632 vm_page_free(m);
1633 continue;
1634 }
1635
1636 /* vm_page_rename() will dirty the page. */
1637 if (vm_page_rename(m, new_object, idx)) {
1638 vm_page_xunbusy(m);
1639 VM_OBJECT_WUNLOCK(new_object);
1640 VM_OBJECT_WUNLOCK(orig_object);
1641 vm_radix_wait();
1642 VM_OBJECT_WLOCK(orig_object);
1643 VM_OBJECT_WLOCK(new_object);
1644 goto retry;
1645 }
1646
1647 #if VM_NRESERVLEVEL > 0
1648 /*
1649 * If some of the reservation's allocated pages remain with
1650 * the original object, then transferring the reservation to
1651 * the new object is neither particularly beneficial nor
1652 * particularly harmful as compared to leaving the reservation
1653 * with the original object. If, however, all of the
1654 * reservation's allocated pages are transferred to the new
1655 * object, then transferring the reservation is typically
1656 * beneficial. Determining which of these two cases applies
1657 * would be more costly than unconditionally renaming the
1658 * reservation.
1659 */
1660 vm_reserv_rename(m, new_object, orig_object, offidxstart);
1661 #endif
1662
1663 /*
1664 * orig_object's type may change while sleeping, so keep track
1665 * of the beginning of the busied range.
1666 */
1667 if (orig_object->type != OBJT_SWAP)
1668 vm_page_xunbusy(m);
1669 else if (m_busy == NULL)
1670 m_busy = m;
1671 }
1672 if ((orig_object->flags & OBJ_SWAP) != 0) {
1673 /*
1674 * swap_pager_copy() can sleep, in which case the orig_object's
1675 * and new_object's locks are released and reacquired.
1676 */
1677 swap_pager_copy(orig_object, new_object, offidxstart, 0);
1678 if (m_busy != NULL)
1679 TAILQ_FOREACH_FROM(m_busy, &new_object->memq, listq)
1680 vm_page_xunbusy(m_busy);
1681 }
1682 vm_object_clear_flag(orig_object, OBJ_SPLIT);
1683 VM_OBJECT_WUNLOCK(orig_object);
1684 VM_OBJECT_WUNLOCK(new_object);
1685 entry->object.vm_object = new_object;
1686 entry->offset = 0LL;
1687 vm_object_deallocate(orig_object);
1688 VM_OBJECT_WLOCK(new_object);
1689 }
1690
1691 static vm_page_t
vm_object_collapse_scan_wait(vm_object_t object,vm_page_t p)1692 vm_object_collapse_scan_wait(vm_object_t object, vm_page_t p)
1693 {
1694 vm_object_t backing_object;
1695
1696 VM_OBJECT_ASSERT_WLOCKED(object);
1697 backing_object = object->backing_object;
1698 VM_OBJECT_ASSERT_WLOCKED(backing_object);
1699
1700 KASSERT(p == NULL || p->object == object || p->object == backing_object,
1701 ("invalid ownership %p %p %p", p, object, backing_object));
1702 /* The page is only NULL when rename fails. */
1703 if (p == NULL) {
1704 VM_OBJECT_WUNLOCK(object);
1705 VM_OBJECT_WUNLOCK(backing_object);
1706 vm_radix_wait();
1707 VM_OBJECT_WLOCK(object);
1708 } else if (p->object == object) {
1709 VM_OBJECT_WUNLOCK(backing_object);
1710 if (vm_page_busy_sleep(p, "vmocol", 0))
1711 VM_OBJECT_WLOCK(object);
1712 } else {
1713 VM_OBJECT_WUNLOCK(object);
1714 if (!vm_page_busy_sleep(p, "vmocol", 0))
1715 VM_OBJECT_WUNLOCK(backing_object);
1716 VM_OBJECT_WLOCK(object);
1717 }
1718 VM_OBJECT_WLOCK(backing_object);
1719 return (TAILQ_FIRST(&backing_object->memq));
1720 }
1721
1722 static bool
vm_object_scan_all_shadowed(vm_object_t object)1723 vm_object_scan_all_shadowed(vm_object_t object)
1724 {
1725 vm_object_t backing_object;
1726 vm_page_t p, pp;
1727 vm_pindex_t backing_offset_index, new_pindex, pi, ps;
1728
1729 VM_OBJECT_ASSERT_WLOCKED(object);
1730 VM_OBJECT_ASSERT_WLOCKED(object->backing_object);
1731
1732 backing_object = object->backing_object;
1733
1734 if ((backing_object->flags & OBJ_ANON) == 0)
1735 return (false);
1736
1737 pi = backing_offset_index = OFF_TO_IDX(object->backing_object_offset);
1738 p = vm_page_find_least(backing_object, pi);
1739 ps = swap_pager_find_least(backing_object, pi);
1740
1741 /*
1742 * Only check pages inside the parent object's range and
1743 * inside the parent object's mapping of the backing object.
1744 */
1745 for (;; pi++) {
1746 if (p != NULL && p->pindex < pi)
1747 p = TAILQ_NEXT(p, listq);
1748 if (ps < pi)
1749 ps = swap_pager_find_least(backing_object, pi);
1750 if (p == NULL && ps >= backing_object->size)
1751 break;
1752 else if (p == NULL)
1753 pi = ps;
1754 else
1755 pi = MIN(p->pindex, ps);
1756
1757 new_pindex = pi - backing_offset_index;
1758 if (new_pindex >= object->size)
1759 break;
1760
1761 if (p != NULL) {
1762 /*
1763 * If the backing object page is busy a
1764 * grandparent or older page may still be
1765 * undergoing CoW. It is not safe to collapse
1766 * the backing object until it is quiesced.
1767 */
1768 if (vm_page_tryxbusy(p) == 0)
1769 return (false);
1770
1771 /*
1772 * We raced with the fault handler that left
1773 * newly allocated invalid page on the object
1774 * queue and retried.
1775 */
1776 if (!vm_page_all_valid(p))
1777 goto unbusy_ret;
1778 }
1779
1780 /*
1781 * See if the parent has the page or if the parent's object
1782 * pager has the page. If the parent has the page but the page
1783 * is not valid, the parent's object pager must have the page.
1784 *
1785 * If this fails, the parent does not completely shadow the
1786 * object and we might as well give up now.
1787 */
1788 pp = vm_page_lookup(object, new_pindex);
1789
1790 /*
1791 * The valid check here is stable due to object lock
1792 * being required to clear valid and initiate paging.
1793 * Busy of p disallows fault handler to validate pp.
1794 */
1795 if ((pp == NULL || vm_page_none_valid(pp)) &&
1796 !vm_pager_has_page(object, new_pindex, NULL, NULL))
1797 goto unbusy_ret;
1798 if (p != NULL)
1799 vm_page_xunbusy(p);
1800 }
1801 return (true);
1802
1803 unbusy_ret:
1804 if (p != NULL)
1805 vm_page_xunbusy(p);
1806 return (false);
1807 }
1808
1809 static void
vm_object_collapse_scan(vm_object_t object)1810 vm_object_collapse_scan(vm_object_t object)
1811 {
1812 vm_object_t backing_object;
1813 vm_page_t next, p, pp;
1814 vm_pindex_t backing_offset_index, new_pindex;
1815
1816 VM_OBJECT_ASSERT_WLOCKED(object);
1817 VM_OBJECT_ASSERT_WLOCKED(object->backing_object);
1818
1819 backing_object = object->backing_object;
1820 backing_offset_index = OFF_TO_IDX(object->backing_object_offset);
1821
1822 /*
1823 * Our scan
1824 */
1825 for (p = TAILQ_FIRST(&backing_object->memq); p != NULL; p = next) {
1826 next = TAILQ_NEXT(p, listq);
1827 new_pindex = p->pindex - backing_offset_index;
1828
1829 /*
1830 * Check for busy page
1831 */
1832 if (vm_page_tryxbusy(p) == 0) {
1833 next = vm_object_collapse_scan_wait(object, p);
1834 continue;
1835 }
1836
1837 KASSERT(object->backing_object == backing_object,
1838 ("vm_object_collapse_scan: backing object mismatch %p != %p",
1839 object->backing_object, backing_object));
1840 KASSERT(p->object == backing_object,
1841 ("vm_object_collapse_scan: object mismatch %p != %p",
1842 p->object, backing_object));
1843
1844 if (p->pindex < backing_offset_index ||
1845 new_pindex >= object->size) {
1846 vm_pager_freespace(backing_object, p->pindex, 1);
1847
1848 KASSERT(!pmap_page_is_mapped(p),
1849 ("freeing mapped page %p", p));
1850 if (vm_page_remove(p))
1851 vm_page_free(p);
1852 continue;
1853 }
1854
1855 if (!vm_page_all_valid(p)) {
1856 KASSERT(!pmap_page_is_mapped(p),
1857 ("freeing mapped page %p", p));
1858 if (vm_page_remove(p))
1859 vm_page_free(p);
1860 continue;
1861 }
1862
1863 pp = vm_page_lookup(object, new_pindex);
1864 if (pp != NULL && vm_page_tryxbusy(pp) == 0) {
1865 vm_page_xunbusy(p);
1866 /*
1867 * The page in the parent is busy and possibly not
1868 * (yet) valid. Until its state is finalized by the
1869 * busy bit owner, we can't tell whether it shadows the
1870 * original page.
1871 */
1872 next = vm_object_collapse_scan_wait(object, pp);
1873 continue;
1874 }
1875
1876 if (pp != NULL && vm_page_none_valid(pp)) {
1877 /*
1878 * The page was invalid in the parent. Likely placed
1879 * there by an incomplete fault. Just remove and
1880 * ignore. p can replace it.
1881 */
1882 if (vm_page_remove(pp))
1883 vm_page_free(pp);
1884 pp = NULL;
1885 }
1886
1887 if (pp != NULL || vm_pager_has_page(object, new_pindex, NULL,
1888 NULL)) {
1889 /*
1890 * The page already exists in the parent OR swap exists
1891 * for this location in the parent. Leave the parent's
1892 * page alone. Destroy the original page from the
1893 * backing object.
1894 */
1895 vm_pager_freespace(backing_object, p->pindex, 1);
1896 KASSERT(!pmap_page_is_mapped(p),
1897 ("freeing mapped page %p", p));
1898 if (vm_page_remove(p))
1899 vm_page_free(p);
1900 if (pp != NULL)
1901 vm_page_xunbusy(pp);
1902 continue;
1903 }
1904
1905 /*
1906 * Page does not exist in parent, rename the page from the
1907 * backing object to the main object.
1908 *
1909 * If the page was mapped to a process, it can remain mapped
1910 * through the rename. vm_page_rename() will dirty the page.
1911 */
1912 if (vm_page_rename(p, object, new_pindex)) {
1913 vm_page_xunbusy(p);
1914 next = vm_object_collapse_scan_wait(object, NULL);
1915 continue;
1916 }
1917
1918 /* Use the old pindex to free the right page. */
1919 vm_pager_freespace(backing_object, new_pindex +
1920 backing_offset_index, 1);
1921
1922 #if VM_NRESERVLEVEL > 0
1923 /*
1924 * Rename the reservation.
1925 */
1926 vm_reserv_rename(p, object, backing_object,
1927 backing_offset_index);
1928 #endif
1929 vm_page_xunbusy(p);
1930 }
1931 return;
1932 }
1933
1934 /*
1935 * vm_object_collapse:
1936 *
1937 * Collapse an object with the object backing it.
1938 * Pages in the backing object are moved into the
1939 * parent, and the backing object is deallocated.
1940 */
1941 void
vm_object_collapse(vm_object_t object)1942 vm_object_collapse(vm_object_t object)
1943 {
1944 vm_object_t backing_object, new_backing_object;
1945
1946 VM_OBJECT_ASSERT_WLOCKED(object);
1947
1948 while (TRUE) {
1949 KASSERT((object->flags & (OBJ_DEAD | OBJ_ANON)) == OBJ_ANON,
1950 ("collapsing invalid object"));
1951
1952 /*
1953 * Wait for the backing_object to finish any pending
1954 * collapse so that the caller sees the shortest possible
1955 * shadow chain.
1956 */
1957 backing_object = vm_object_backing_collapse_wait(object);
1958 if (backing_object == NULL)
1959 return;
1960
1961 KASSERT(object->ref_count > 0 &&
1962 object->ref_count > atomic_load_int(&object->shadow_count),
1963 ("collapse with invalid ref %d or shadow %d count.",
1964 object->ref_count, atomic_load_int(&object->shadow_count)));
1965 KASSERT((backing_object->flags &
1966 (OBJ_COLLAPSING | OBJ_DEAD)) == 0,
1967 ("vm_object_collapse: Backing object already collapsing."));
1968 KASSERT((object->flags & (OBJ_COLLAPSING | OBJ_DEAD)) == 0,
1969 ("vm_object_collapse: object is already collapsing."));
1970
1971 /*
1972 * We know that we can either collapse the backing object if
1973 * the parent is the only reference to it, or (perhaps) have
1974 * the parent bypass the object if the parent happens to shadow
1975 * all the resident pages in the entire backing object.
1976 */
1977 if (backing_object->ref_count == 1) {
1978 KASSERT(atomic_load_int(&backing_object->shadow_count)
1979 == 1,
1980 ("vm_object_collapse: shadow_count: %d",
1981 atomic_load_int(&backing_object->shadow_count)));
1982 vm_object_pip_add(object, 1);
1983 vm_object_set_flag(object, OBJ_COLLAPSING);
1984 vm_object_pip_add(backing_object, 1);
1985 vm_object_set_flag(backing_object, OBJ_DEAD);
1986
1987 /*
1988 * If there is exactly one reference to the backing
1989 * object, we can collapse it into the parent.
1990 */
1991 vm_object_collapse_scan(object);
1992
1993 #if VM_NRESERVLEVEL > 0
1994 /*
1995 * Break any reservations from backing_object.
1996 */
1997 if (__predict_false(!LIST_EMPTY(&backing_object->rvq)))
1998 vm_reserv_break_all(backing_object);
1999 #endif
2000
2001 /*
2002 * Move the pager from backing_object to object.
2003 */
2004 if ((backing_object->flags & OBJ_SWAP) != 0) {
2005 /*
2006 * swap_pager_copy() can sleep, in which case
2007 * the backing_object's and object's locks are
2008 * released and reacquired.
2009 * Since swap_pager_copy() is being asked to
2010 * destroy backing_object, it will change the
2011 * type to OBJT_DEFAULT.
2012 */
2013 swap_pager_copy(
2014 backing_object,
2015 object,
2016 OFF_TO_IDX(object->backing_object_offset), TRUE);
2017 }
2018
2019 /*
2020 * Object now shadows whatever backing_object did.
2021 */
2022 vm_object_clear_flag(object, OBJ_COLLAPSING);
2023 vm_object_backing_transfer(object, backing_object);
2024 object->backing_object_offset +=
2025 backing_object->backing_object_offset;
2026 VM_OBJECT_WUNLOCK(object);
2027 vm_object_pip_wakeup(object);
2028
2029 /*
2030 * Discard backing_object.
2031 *
2032 * Since the backing object has no pages, no pager left,
2033 * and no object references within it, all that is
2034 * necessary is to dispose of it.
2035 */
2036 KASSERT(backing_object->ref_count == 1, (
2037 "backing_object %p was somehow re-referenced during collapse!",
2038 backing_object));
2039 vm_object_pip_wakeup(backing_object);
2040 (void)refcount_release(&backing_object->ref_count);
2041 vm_object_terminate(backing_object);
2042 counter_u64_add(object_collapses, 1);
2043 VM_OBJECT_WLOCK(object);
2044 } else {
2045 /*
2046 * If we do not entirely shadow the backing object,
2047 * there is nothing we can do so we give up.
2048 *
2049 * The object lock and backing_object lock must not
2050 * be dropped during this sequence.
2051 */
2052 if (!vm_object_scan_all_shadowed(object)) {
2053 VM_OBJECT_WUNLOCK(backing_object);
2054 break;
2055 }
2056
2057 /*
2058 * Make the parent shadow the next object in the
2059 * chain. Deallocating backing_object will not remove
2060 * it, since its reference count is at least 2.
2061 */
2062 vm_object_backing_remove_locked(object);
2063 new_backing_object = backing_object->backing_object;
2064 if (new_backing_object != NULL) {
2065 vm_object_backing_insert_ref(object,
2066 new_backing_object);
2067 object->backing_object_offset +=
2068 backing_object->backing_object_offset;
2069 }
2070
2071 /*
2072 * Drop the reference count on backing_object. Since
2073 * its ref_count was at least 2, it will not vanish.
2074 */
2075 (void)refcount_release(&backing_object->ref_count);
2076 KASSERT(backing_object->ref_count >= 1, (
2077 "backing_object %p was somehow dereferenced during collapse!",
2078 backing_object));
2079 VM_OBJECT_WUNLOCK(backing_object);
2080 counter_u64_add(object_bypasses, 1);
2081 }
2082
2083 /*
2084 * Try again with this object's new backing object.
2085 */
2086 }
2087 }
2088
2089 /*
2090 * vm_object_page_remove:
2091 *
2092 * For the given object, either frees or invalidates each of the
2093 * specified pages. In general, a page is freed. However, if a page is
2094 * wired for any reason other than the existence of a managed, wired
2095 * mapping, then it may be invalidated but not removed from the object.
2096 * Pages are specified by the given range ["start", "end") and the option
2097 * OBJPR_CLEANONLY. As a special case, if "end" is zero, then the range
2098 * extends from "start" to the end of the object. If the option
2099 * OBJPR_CLEANONLY is specified, then only the non-dirty pages within the
2100 * specified range are affected. If the option OBJPR_NOTMAPPED is
2101 * specified, then the pages within the specified range must have no
2102 * mappings. Otherwise, if this option is not specified, any mappings to
2103 * the specified pages are removed before the pages are freed or
2104 * invalidated.
2105 *
2106 * In general, this operation should only be performed on objects that
2107 * contain managed pages. There are, however, two exceptions. First, it
2108 * is performed on the kernel and kmem objects by vm_map_entry_delete().
2109 * Second, it is used by msync(..., MS_INVALIDATE) to invalidate device-
2110 * backed pages. In both of these cases, the option OBJPR_CLEANONLY must
2111 * not be specified and the option OBJPR_NOTMAPPED must be specified.
2112 *
2113 * The object must be locked.
2114 */
2115 void
vm_object_page_remove(vm_object_t object,vm_pindex_t start,vm_pindex_t end,int options)2116 vm_object_page_remove(vm_object_t object, vm_pindex_t start, vm_pindex_t end,
2117 int options)
2118 {
2119 vm_page_t p, next;
2120
2121 VM_OBJECT_ASSERT_WLOCKED(object);
2122 KASSERT((object->flags & OBJ_UNMANAGED) == 0 ||
2123 (options & (OBJPR_CLEANONLY | OBJPR_NOTMAPPED)) == OBJPR_NOTMAPPED,
2124 ("vm_object_page_remove: illegal options for object %p", object));
2125 if (object->resident_page_count == 0)
2126 return;
2127 vm_object_pip_add(object, 1);
2128 again:
2129 p = vm_page_find_least(object, start);
2130
2131 /*
2132 * Here, the variable "p" is either (1) the page with the least pindex
2133 * greater than or equal to the parameter "start" or (2) NULL.
2134 */
2135 for (; p != NULL && (p->pindex < end || end == 0); p = next) {
2136 next = TAILQ_NEXT(p, listq);
2137
2138 /*
2139 * Skip invalid pages if asked to do so. Try to avoid acquiring
2140 * the busy lock, as some consumers rely on this to avoid
2141 * deadlocks.
2142 *
2143 * A thread may concurrently transition the page from invalid to
2144 * valid using only the busy lock, so the result of this check
2145 * is immediately stale. It is up to consumers to handle this,
2146 * for instance by ensuring that all invalid->valid transitions
2147 * happen with a mutex held, as may be possible for a
2148 * filesystem.
2149 */
2150 if ((options & OBJPR_VALIDONLY) != 0 && vm_page_none_valid(p))
2151 continue;
2152
2153 /*
2154 * If the page is wired for any reason besides the existence
2155 * of managed, wired mappings, then it cannot be freed. For
2156 * example, fictitious pages, which represent device memory,
2157 * are inherently wired and cannot be freed. They can,
2158 * however, be invalidated if the option OBJPR_CLEANONLY is
2159 * not specified.
2160 */
2161 if (vm_page_tryxbusy(p) == 0) {
2162 if (vm_page_busy_sleep(p, "vmopar", 0))
2163 VM_OBJECT_WLOCK(object);
2164 goto again;
2165 }
2166 if ((options & OBJPR_VALIDONLY) != 0 && vm_page_none_valid(p)) {
2167 vm_page_xunbusy(p);
2168 continue;
2169 }
2170 if (vm_page_wired(p)) {
2171 wired:
2172 if ((options & OBJPR_NOTMAPPED) == 0 &&
2173 object->ref_count != 0)
2174 pmap_remove_all(p);
2175 if ((options & OBJPR_CLEANONLY) == 0) {
2176 vm_page_invalid(p);
2177 vm_page_undirty(p);
2178 }
2179 vm_page_xunbusy(p);
2180 continue;
2181 }
2182 KASSERT((p->flags & PG_FICTITIOUS) == 0,
2183 ("vm_object_page_remove: page %p is fictitious", p));
2184 if ((options & OBJPR_CLEANONLY) != 0 &&
2185 !vm_page_none_valid(p)) {
2186 if ((options & OBJPR_NOTMAPPED) == 0 &&
2187 object->ref_count != 0 &&
2188 !vm_page_try_remove_write(p))
2189 goto wired;
2190 if (p->dirty != 0) {
2191 vm_page_xunbusy(p);
2192 continue;
2193 }
2194 }
2195 if ((options & OBJPR_NOTMAPPED) == 0 &&
2196 object->ref_count != 0 && !vm_page_try_remove_all(p))
2197 goto wired;
2198 vm_page_free(p);
2199 }
2200 vm_object_pip_wakeup(object);
2201
2202 vm_pager_freespace(object, start, (end == 0 ? object->size : end) -
2203 start);
2204 }
2205
2206 /*
2207 * vm_object_page_noreuse:
2208 *
2209 * For the given object, attempt to move the specified pages to
2210 * the head of the inactive queue. This bypasses regular LRU
2211 * operation and allows the pages to be reused quickly under memory
2212 * pressure. If a page is wired for any reason, then it will not
2213 * be queued. Pages are specified by the range ["start", "end").
2214 * As a special case, if "end" is zero, then the range extends from
2215 * "start" to the end of the object.
2216 *
2217 * This operation should only be performed on objects that
2218 * contain non-fictitious, managed pages.
2219 *
2220 * The object must be locked.
2221 */
2222 void
vm_object_page_noreuse(vm_object_t object,vm_pindex_t start,vm_pindex_t end)2223 vm_object_page_noreuse(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
2224 {
2225 vm_page_t p, next;
2226
2227 VM_OBJECT_ASSERT_LOCKED(object);
2228 KASSERT((object->flags & (OBJ_FICTITIOUS | OBJ_UNMANAGED)) == 0,
2229 ("vm_object_page_noreuse: illegal object %p", object));
2230 if (object->resident_page_count == 0)
2231 return;
2232 p = vm_page_find_least(object, start);
2233
2234 /*
2235 * Here, the variable "p" is either (1) the page with the least pindex
2236 * greater than or equal to the parameter "start" or (2) NULL.
2237 */
2238 for (; p != NULL && (p->pindex < end || end == 0); p = next) {
2239 next = TAILQ_NEXT(p, listq);
2240 vm_page_deactivate_noreuse(p);
2241 }
2242 }
2243
2244 /*
2245 * Populate the specified range of the object with valid pages. Returns
2246 * TRUE if the range is successfully populated and FALSE otherwise.
2247 *
2248 * Note: This function should be optimized to pass a larger array of
2249 * pages to vm_pager_get_pages() before it is applied to a non-
2250 * OBJT_DEVICE object.
2251 *
2252 * The object must be locked.
2253 */
2254 boolean_t
vm_object_populate(vm_object_t object,vm_pindex_t start,vm_pindex_t end)2255 vm_object_populate(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
2256 {
2257 vm_page_t m;
2258 vm_pindex_t pindex;
2259 int rv;
2260
2261 VM_OBJECT_ASSERT_WLOCKED(object);
2262 for (pindex = start; pindex < end; pindex++) {
2263 rv = vm_page_grab_valid(&m, object, pindex, VM_ALLOC_NORMAL);
2264 if (rv != VM_PAGER_OK)
2265 break;
2266
2267 /*
2268 * Keep "m" busy because a subsequent iteration may unlock
2269 * the object.
2270 */
2271 }
2272 if (pindex > start) {
2273 m = vm_page_lookup(object, start);
2274 while (m != NULL && m->pindex < pindex) {
2275 vm_page_xunbusy(m);
2276 m = TAILQ_NEXT(m, listq);
2277 }
2278 }
2279 return (pindex == end);
2280 }
2281
2282 /*
2283 * Routine: vm_object_coalesce
2284 * Function: Coalesces two objects backing up adjoining
2285 * regions of memory into a single object.
2286 *
2287 * returns TRUE if objects were combined.
2288 *
2289 * NOTE: Only works at the moment if the second object is NULL -
2290 * if it's not, which object do we lock first?
2291 *
2292 * Parameters:
2293 * prev_object First object to coalesce
2294 * prev_offset Offset into prev_object
2295 * prev_size Size of reference to prev_object
2296 * next_size Size of reference to the second object
2297 * reserved Indicator that extension region has
2298 * swap accounted for
2299 *
2300 * Conditions:
2301 * The object must *not* be locked.
2302 */
2303 boolean_t
vm_object_coalesce(vm_object_t prev_object,vm_ooffset_t prev_offset,vm_size_t prev_size,vm_size_t next_size,boolean_t reserved)2304 vm_object_coalesce(vm_object_t prev_object, vm_ooffset_t prev_offset,
2305 vm_size_t prev_size, vm_size_t next_size, boolean_t reserved)
2306 {
2307 vm_pindex_t next_pindex;
2308
2309 if (prev_object == NULL)
2310 return (TRUE);
2311 if ((prev_object->flags & OBJ_ANON) == 0)
2312 return (FALSE);
2313
2314 VM_OBJECT_WLOCK(prev_object);
2315 /*
2316 * Try to collapse the object first.
2317 */
2318 vm_object_collapse(prev_object);
2319
2320 /*
2321 * Can't coalesce if: . more than one reference . paged out . shadows
2322 * another object . has a copy elsewhere (any of which mean that the
2323 * pages not mapped to prev_entry may be in use anyway)
2324 */
2325 if (prev_object->backing_object != NULL) {
2326 VM_OBJECT_WUNLOCK(prev_object);
2327 return (FALSE);
2328 }
2329
2330 prev_size >>= PAGE_SHIFT;
2331 next_size >>= PAGE_SHIFT;
2332 next_pindex = OFF_TO_IDX(prev_offset) + prev_size;
2333
2334 if (prev_object->ref_count > 1 &&
2335 prev_object->size != next_pindex &&
2336 (prev_object->flags & OBJ_ONEMAPPING) == 0) {
2337 VM_OBJECT_WUNLOCK(prev_object);
2338 return (FALSE);
2339 }
2340
2341 /*
2342 * Account for the charge.
2343 */
2344 if (prev_object->cred != NULL) {
2345 /*
2346 * If prev_object was charged, then this mapping,
2347 * although not charged now, may become writable
2348 * later. Non-NULL cred in the object would prevent
2349 * swap reservation during enabling of the write
2350 * access, so reserve swap now. Failed reservation
2351 * cause allocation of the separate object for the map
2352 * entry, and swap reservation for this entry is
2353 * managed in appropriate time.
2354 */
2355 if (!reserved && !swap_reserve_by_cred(ptoa(next_size),
2356 prev_object->cred)) {
2357 VM_OBJECT_WUNLOCK(prev_object);
2358 return (FALSE);
2359 }
2360 prev_object->charge += ptoa(next_size);
2361 }
2362
2363 /*
2364 * Remove any pages that may still be in the object from a previous
2365 * deallocation.
2366 */
2367 if (next_pindex < prev_object->size) {
2368 vm_object_page_remove(prev_object, next_pindex, next_pindex +
2369 next_size, 0);
2370 #if 0
2371 if (prev_object->cred != NULL) {
2372 KASSERT(prev_object->charge >=
2373 ptoa(prev_object->size - next_pindex),
2374 ("object %p overcharged 1 %jx %jx", prev_object,
2375 (uintmax_t)next_pindex, (uintmax_t)next_size));
2376 prev_object->charge -= ptoa(prev_object->size -
2377 next_pindex);
2378 }
2379 #endif
2380 }
2381
2382 /*
2383 * Extend the object if necessary.
2384 */
2385 if (next_pindex + next_size > prev_object->size)
2386 prev_object->size = next_pindex + next_size;
2387
2388 VM_OBJECT_WUNLOCK(prev_object);
2389 return (TRUE);
2390 }
2391
2392 void
vm_object_set_writeable_dirty_(vm_object_t object)2393 vm_object_set_writeable_dirty_(vm_object_t object)
2394 {
2395 atomic_add_int(&object->generation, 1);
2396 }
2397
2398 bool
vm_object_mightbedirty_(vm_object_t object)2399 vm_object_mightbedirty_(vm_object_t object)
2400 {
2401 return (object->generation != object->cleangeneration);
2402 }
2403
2404 /*
2405 * vm_object_unwire:
2406 *
2407 * For each page offset within the specified range of the given object,
2408 * find the highest-level page in the shadow chain and unwire it. A page
2409 * must exist at every page offset, and the highest-level page must be
2410 * wired.
2411 */
2412 void
vm_object_unwire(vm_object_t object,vm_ooffset_t offset,vm_size_t length,uint8_t queue)2413 vm_object_unwire(vm_object_t object, vm_ooffset_t offset, vm_size_t length,
2414 uint8_t queue)
2415 {
2416 vm_object_t tobject, t1object;
2417 vm_page_t m, tm;
2418 vm_pindex_t end_pindex, pindex, tpindex;
2419 int depth, locked_depth;
2420
2421 KASSERT((offset & PAGE_MASK) == 0,
2422 ("vm_object_unwire: offset is not page aligned"));
2423 KASSERT((length & PAGE_MASK) == 0,
2424 ("vm_object_unwire: length is not a multiple of PAGE_SIZE"));
2425 /* The wired count of a fictitious page never changes. */
2426 if ((object->flags & OBJ_FICTITIOUS) != 0)
2427 return;
2428 pindex = OFF_TO_IDX(offset);
2429 end_pindex = pindex + atop(length);
2430 again:
2431 locked_depth = 1;
2432 VM_OBJECT_RLOCK(object);
2433 m = vm_page_find_least(object, pindex);
2434 while (pindex < end_pindex) {
2435 if (m == NULL || pindex < m->pindex) {
2436 /*
2437 * The first object in the shadow chain doesn't
2438 * contain a page at the current index. Therefore,
2439 * the page must exist in a backing object.
2440 */
2441 tobject = object;
2442 tpindex = pindex;
2443 depth = 0;
2444 do {
2445 tpindex +=
2446 OFF_TO_IDX(tobject->backing_object_offset);
2447 tobject = tobject->backing_object;
2448 KASSERT(tobject != NULL,
2449 ("vm_object_unwire: missing page"));
2450 if ((tobject->flags & OBJ_FICTITIOUS) != 0)
2451 goto next_page;
2452 depth++;
2453 if (depth == locked_depth) {
2454 locked_depth++;
2455 VM_OBJECT_RLOCK(tobject);
2456 }
2457 } while ((tm = vm_page_lookup(tobject, tpindex)) ==
2458 NULL);
2459 } else {
2460 tm = m;
2461 m = TAILQ_NEXT(m, listq);
2462 }
2463 if (vm_page_trysbusy(tm) == 0) {
2464 for (tobject = object; locked_depth >= 1;
2465 locked_depth--) {
2466 t1object = tobject->backing_object;
2467 if (tm->object != tobject)
2468 VM_OBJECT_RUNLOCK(tobject);
2469 tobject = t1object;
2470 }
2471 tobject = tm->object;
2472 if (!vm_page_busy_sleep(tm, "unwbo",
2473 VM_ALLOC_IGN_SBUSY))
2474 VM_OBJECT_RUNLOCK(tobject);
2475 goto again;
2476 }
2477 vm_page_unwire(tm, queue);
2478 vm_page_sunbusy(tm);
2479 next_page:
2480 pindex++;
2481 }
2482 /* Release the accumulated object locks. */
2483 for (tobject = object; locked_depth >= 1; locked_depth--) {
2484 t1object = tobject->backing_object;
2485 VM_OBJECT_RUNLOCK(tobject);
2486 tobject = t1object;
2487 }
2488 }
2489
2490 /*
2491 * Return the vnode for the given object, or NULL if none exists.
2492 * For tmpfs objects, the function may return NULL if there is
2493 * no vnode allocated at the time of the call.
2494 */
2495 struct vnode *
vm_object_vnode(vm_object_t object)2496 vm_object_vnode(vm_object_t object)
2497 {
2498 struct vnode *vp;
2499
2500 VM_OBJECT_ASSERT_LOCKED(object);
2501 vm_pager_getvp(object, &vp, NULL);
2502 return (vp);
2503 }
2504
2505 /*
2506 * Busy the vm object. This prevents new pages belonging to the object from
2507 * becoming busy. Existing pages persist as busy. Callers are responsible
2508 * for checking page state before proceeding.
2509 */
2510 void
vm_object_busy(vm_object_t obj)2511 vm_object_busy(vm_object_t obj)
2512 {
2513
2514 VM_OBJECT_ASSERT_LOCKED(obj);
2515
2516 blockcount_acquire(&obj->busy, 1);
2517 /* The fence is required to order loads of page busy. */
2518 atomic_thread_fence_acq_rel();
2519 }
2520
2521 void
vm_object_unbusy(vm_object_t obj)2522 vm_object_unbusy(vm_object_t obj)
2523 {
2524
2525 blockcount_release(&obj->busy, 1);
2526 }
2527
2528 void
vm_object_busy_wait(vm_object_t obj,const char * wmesg)2529 vm_object_busy_wait(vm_object_t obj, const char *wmesg)
2530 {
2531
2532 VM_OBJECT_ASSERT_UNLOCKED(obj);
2533
2534 (void)blockcount_sleep(&obj->busy, NULL, wmesg, PVM);
2535 }
2536
2537 /*
2538 * This function aims to determine if the object is mapped,
2539 * specifically, if it is referenced by a vm_map_entry. Because
2540 * objects occasionally acquire transient references that do not
2541 * represent a mapping, the method used here is inexact. However, it
2542 * has very low overhead and is good enough for the advisory
2543 * vm.vmtotal sysctl.
2544 */
2545 bool
vm_object_is_active(vm_object_t obj)2546 vm_object_is_active(vm_object_t obj)
2547 {
2548
2549 return (obj->ref_count > atomic_load_int(&obj->shadow_count));
2550 }
2551
2552 static int
vm_object_list_handler(struct sysctl_req * req,bool swap_only)2553 vm_object_list_handler(struct sysctl_req *req, bool swap_only)
2554 {
2555 struct kinfo_vmobject *kvo;
2556 char *fullpath, *freepath;
2557 struct vnode *vp;
2558 struct vattr va;
2559 vm_object_t obj;
2560 vm_page_t m;
2561 u_long sp;
2562 int count, error;
2563 bool want_path;
2564
2565 if (req->oldptr == NULL) {
2566 /*
2567 * If an old buffer has not been provided, generate an
2568 * estimate of the space needed for a subsequent call.
2569 */
2570 mtx_lock(&vm_object_list_mtx);
2571 count = 0;
2572 TAILQ_FOREACH(obj, &vm_object_list, object_list) {
2573 if (obj->type == OBJT_DEAD)
2574 continue;
2575 count++;
2576 }
2577 mtx_unlock(&vm_object_list_mtx);
2578 return (SYSCTL_OUT(req, NULL, sizeof(struct kinfo_vmobject) *
2579 count * 11 / 10));
2580 }
2581
2582 want_path = !(swap_only || jailed(curthread->td_ucred));
2583 kvo = malloc(sizeof(*kvo), M_TEMP, M_WAITOK | M_ZERO);
2584 error = 0;
2585
2586 /*
2587 * VM objects are type stable and are never removed from the
2588 * list once added. This allows us to safely read obj->object_list
2589 * after reacquiring the VM object lock.
2590 */
2591 mtx_lock(&vm_object_list_mtx);
2592 TAILQ_FOREACH(obj, &vm_object_list, object_list) {
2593 if (obj->type == OBJT_DEAD ||
2594 (swap_only && (obj->flags & (OBJ_ANON | OBJ_SWAP)) == 0))
2595 continue;
2596 VM_OBJECT_RLOCK(obj);
2597 if (obj->type == OBJT_DEAD ||
2598 (swap_only && (obj->flags & (OBJ_ANON | OBJ_SWAP)) == 0)) {
2599 VM_OBJECT_RUNLOCK(obj);
2600 continue;
2601 }
2602 mtx_unlock(&vm_object_list_mtx);
2603 kvo->kvo_size = ptoa(obj->size);
2604 kvo->kvo_resident = obj->resident_page_count;
2605 kvo->kvo_ref_count = obj->ref_count;
2606 kvo->kvo_shadow_count = atomic_load_int(&obj->shadow_count);
2607 kvo->kvo_memattr = obj->memattr;
2608 kvo->kvo_active = 0;
2609 kvo->kvo_inactive = 0;
2610 if (!swap_only) {
2611 TAILQ_FOREACH(m, &obj->memq, listq) {
2612 /*
2613 * A page may belong to the object but be
2614 * dequeued and set to PQ_NONE while the
2615 * object lock is not held. This makes the
2616 * reads of m->queue below racy, and we do not
2617 * count pages set to PQ_NONE. However, this
2618 * sysctl is only meant to give an
2619 * approximation of the system anyway.
2620 */
2621 if (vm_page_active(m))
2622 kvo->kvo_active++;
2623 else if (vm_page_inactive(m))
2624 kvo->kvo_inactive++;
2625 else if (vm_page_in_laundry(m))
2626 kvo->kvo_laundry++;
2627 }
2628 }
2629
2630 kvo->kvo_vn_fileid = 0;
2631 kvo->kvo_vn_fsid = 0;
2632 kvo->kvo_vn_fsid_freebsd11 = 0;
2633 freepath = NULL;
2634 fullpath = "";
2635 vp = NULL;
2636 kvo->kvo_type = vm_object_kvme_type(obj, want_path ? &vp :
2637 NULL);
2638 if (vp != NULL) {
2639 vref(vp);
2640 } else if ((obj->flags & OBJ_ANON) != 0) {
2641 MPASS(kvo->kvo_type == KVME_TYPE_DEFAULT ||
2642 kvo->kvo_type == KVME_TYPE_SWAP);
2643 kvo->kvo_me = (uintptr_t)obj;
2644 /* tmpfs objs are reported as vnodes */
2645 kvo->kvo_backing_obj = (uintptr_t)obj->backing_object;
2646 sp = swap_pager_swapped_pages(obj);
2647 kvo->kvo_swapped = sp > UINT32_MAX ? UINT32_MAX : sp;
2648 }
2649 VM_OBJECT_RUNLOCK(obj);
2650 if (vp != NULL) {
2651 vn_fullpath(vp, &fullpath, &freepath);
2652 vn_lock(vp, LK_SHARED | LK_RETRY);
2653 if (VOP_GETATTR(vp, &va, curthread->td_ucred) == 0) {
2654 kvo->kvo_vn_fileid = va.va_fileid;
2655 kvo->kvo_vn_fsid = va.va_fsid;
2656 kvo->kvo_vn_fsid_freebsd11 = va.va_fsid;
2657 /* truncate */
2658 }
2659 vput(vp);
2660 }
2661
2662 strlcpy(kvo->kvo_path, fullpath, sizeof(kvo->kvo_path));
2663 free(freepath, M_TEMP);
2664
2665 /* Pack record size down */
2666 kvo->kvo_structsize = offsetof(struct kinfo_vmobject, kvo_path)
2667 + strlen(kvo->kvo_path) + 1;
2668 kvo->kvo_structsize = roundup(kvo->kvo_structsize,
2669 sizeof(uint64_t));
2670 error = SYSCTL_OUT(req, kvo, kvo->kvo_structsize);
2671 maybe_yield();
2672 mtx_lock(&vm_object_list_mtx);
2673 if (error)
2674 break;
2675 }
2676 mtx_unlock(&vm_object_list_mtx);
2677 free(kvo, M_TEMP);
2678 return (error);
2679 }
2680
2681 static int
sysctl_vm_object_list(SYSCTL_HANDLER_ARGS)2682 sysctl_vm_object_list(SYSCTL_HANDLER_ARGS)
2683 {
2684 return (vm_object_list_handler(req, false));
2685 }
2686
2687 SYSCTL_PROC(_vm, OID_AUTO, objects, CTLTYPE_STRUCT | CTLFLAG_RW | CTLFLAG_SKIP |
2688 CTLFLAG_MPSAFE, NULL, 0, sysctl_vm_object_list, "S,kinfo_vmobject",
2689 "List of VM objects");
2690
2691 static int
sysctl_vm_object_list_swap(SYSCTL_HANDLER_ARGS)2692 sysctl_vm_object_list_swap(SYSCTL_HANDLER_ARGS)
2693 {
2694 return (vm_object_list_handler(req, true));
2695 }
2696
2697 /*
2698 * This sysctl returns list of the anonymous or swap objects. Intent
2699 * is to provide stripped optimized list useful to analyze swap use.
2700 * Since technically non-swap (default) objects participate in the
2701 * shadow chains, and are converted to swap type as needed by swap
2702 * pager, we must report them.
2703 */
2704 SYSCTL_PROC(_vm, OID_AUTO, swap_objects,
2705 CTLTYPE_STRUCT | CTLFLAG_RW | CTLFLAG_SKIP | CTLFLAG_MPSAFE, NULL, 0,
2706 sysctl_vm_object_list_swap, "S,kinfo_vmobject",
2707 "List of swap VM objects");
2708
2709 #include "opt_ddb.h"
2710 #ifdef DDB
2711 #include <sys/kernel.h>
2712
2713 #include <sys/cons.h>
2714
2715 #include <ddb/ddb.h>
2716
2717 static int
_vm_object_in_map(vm_map_t map,vm_object_t object,vm_map_entry_t entry)2718 _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry)
2719 {
2720 vm_map_t tmpm;
2721 vm_map_entry_t tmpe;
2722 vm_object_t obj;
2723
2724 if (map == 0)
2725 return 0;
2726
2727 if (entry == 0) {
2728 VM_MAP_ENTRY_FOREACH(tmpe, map) {
2729 if (_vm_object_in_map(map, object, tmpe)) {
2730 return 1;
2731 }
2732 }
2733 } else if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) {
2734 tmpm = entry->object.sub_map;
2735 VM_MAP_ENTRY_FOREACH(tmpe, tmpm) {
2736 if (_vm_object_in_map(tmpm, object, tmpe)) {
2737 return 1;
2738 }
2739 }
2740 } else if ((obj = entry->object.vm_object) != NULL) {
2741 for (; obj; obj = obj->backing_object)
2742 if (obj == object) {
2743 return 1;
2744 }
2745 }
2746 return 0;
2747 }
2748
2749 static int
vm_object_in_map(vm_object_t object)2750 vm_object_in_map(vm_object_t object)
2751 {
2752 struct proc *p;
2753
2754 /* sx_slock(&allproc_lock); */
2755 FOREACH_PROC_IN_SYSTEM(p) {
2756 if (!p->p_vmspace /* || (p->p_flag & (P_SYSTEM|P_WEXIT)) */)
2757 continue;
2758 if (_vm_object_in_map(&p->p_vmspace->vm_map, object, 0)) {
2759 /* sx_sunlock(&allproc_lock); */
2760 return 1;
2761 }
2762 }
2763 /* sx_sunlock(&allproc_lock); */
2764 if (_vm_object_in_map(kernel_map, object, 0))
2765 return 1;
2766 return 0;
2767 }
2768
DB_SHOW_COMMAND(vmochk,vm_object_check)2769 DB_SHOW_COMMAND(vmochk, vm_object_check)
2770 {
2771 vm_object_t object;
2772
2773 /*
2774 * make sure that internal objs are in a map somewhere
2775 * and none have zero ref counts.
2776 */
2777 TAILQ_FOREACH(object, &vm_object_list, object_list) {
2778 if ((object->flags & OBJ_ANON) != 0) {
2779 if (object->ref_count == 0) {
2780 db_printf("vmochk: internal obj has zero ref count: %ld\n",
2781 (long)object->size);
2782 }
2783 if (!vm_object_in_map(object)) {
2784 db_printf(
2785 "vmochk: internal obj is not in a map: "
2786 "ref: %d, size: %lu: 0x%lx, backing_object: %p\n",
2787 object->ref_count, (u_long)object->size,
2788 (u_long)object->size,
2789 (void *)object->backing_object);
2790 }
2791 }
2792 if (db_pager_quit)
2793 return;
2794 }
2795 }
2796
2797 /*
2798 * vm_object_print: [ debug ]
2799 */
DB_SHOW_COMMAND(object,vm_object_print_static)2800 DB_SHOW_COMMAND(object, vm_object_print_static)
2801 {
2802 /* XXX convert args. */
2803 vm_object_t object = (vm_object_t)addr;
2804 boolean_t full = have_addr;
2805
2806 vm_page_t p;
2807
2808 /* XXX count is an (unused) arg. Avoid shadowing it. */
2809 #define count was_count
2810
2811 int count;
2812
2813 if (object == NULL)
2814 return;
2815
2816 db_iprintf(
2817 "Object %p: type=%d, size=0x%jx, res=%d, ref=%d, flags=0x%x ruid %d charge %jx\n",
2818 object, (int)object->type, (uintmax_t)object->size,
2819 object->resident_page_count, object->ref_count, object->flags,
2820 object->cred ? object->cred->cr_ruid : -1, (uintmax_t)object->charge);
2821 db_iprintf(" sref=%d, backing_object(%d)=(%p)+0x%jx\n",
2822 atomic_load_int(&object->shadow_count),
2823 object->backing_object ? object->backing_object->ref_count : 0,
2824 object->backing_object, (uintmax_t)object->backing_object_offset);
2825
2826 if (!full)
2827 return;
2828
2829 db_indent += 2;
2830 count = 0;
2831 TAILQ_FOREACH(p, &object->memq, listq) {
2832 if (count == 0)
2833 db_iprintf("memory:=");
2834 else if (count == 6) {
2835 db_printf("\n");
2836 db_iprintf(" ...");
2837 count = 0;
2838 } else
2839 db_printf(",");
2840 count++;
2841
2842 db_printf("(off=0x%jx,page=0x%jx)",
2843 (uintmax_t)p->pindex, (uintmax_t)VM_PAGE_TO_PHYS(p));
2844
2845 if (db_pager_quit)
2846 break;
2847 }
2848 if (count != 0)
2849 db_printf("\n");
2850 db_indent -= 2;
2851 }
2852
2853 /* XXX. */
2854 #undef count
2855
2856 /* XXX need this non-static entry for calling from vm_map_print. */
2857 void
vm_object_print(long addr,boolean_t have_addr,long count,char * modif)2858 vm_object_print(
2859 /* db_expr_t */ long addr,
2860 boolean_t have_addr,
2861 /* db_expr_t */ long count,
2862 char *modif)
2863 {
2864 vm_object_print_static(addr, have_addr, count, modif);
2865 }
2866
DB_SHOW_COMMAND(vmopag,vm_object_print_pages)2867 DB_SHOW_COMMAND(vmopag, vm_object_print_pages)
2868 {
2869 vm_object_t object;
2870 vm_pindex_t fidx;
2871 vm_paddr_t pa;
2872 vm_page_t m, prev_m;
2873 int rcount;
2874
2875 TAILQ_FOREACH(object, &vm_object_list, object_list) {
2876 db_printf("new object: %p\n", (void *)object);
2877 if (db_pager_quit)
2878 return;
2879
2880 rcount = 0;
2881 fidx = 0;
2882 pa = -1;
2883 TAILQ_FOREACH(m, &object->memq, listq) {
2884 if ((prev_m = TAILQ_PREV(m, pglist, listq)) != NULL &&
2885 prev_m->pindex + 1 != m->pindex) {
2886 if (rcount) {
2887 db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2888 (long)fidx, rcount, (long)pa);
2889 if (db_pager_quit)
2890 return;
2891 rcount = 0;
2892 }
2893 }
2894 if (rcount &&
2895 (VM_PAGE_TO_PHYS(m) == pa + rcount * PAGE_SIZE)) {
2896 ++rcount;
2897 continue;
2898 }
2899 if (rcount) {
2900 db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2901 (long)fidx, rcount, (long)pa);
2902 if (db_pager_quit)
2903 return;
2904 }
2905 fidx = m->pindex;
2906 pa = VM_PAGE_TO_PHYS(m);
2907 rcount = 1;
2908 }
2909 if (rcount) {
2910 db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2911 (long)fidx, rcount, (long)pa);
2912 if (db_pager_quit)
2913 return;
2914 }
2915 }
2916 }
2917 #endif /* DDB */
2918