xref: /freebsd/sys/vm/vm_object.c (revision 1123986db5f0b0b3bfc68840a6d8e12f93d6ca3e)
160727d8bSWarner Losh /*-
2796df753SPedro F. Giffuni  * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU)
351369649SPedro F. Giffuni  *
4df8bae1dSRodney W. Grimes  * Copyright (c) 1991, 1993
5df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6df8bae1dSRodney W. Grimes  *
7df8bae1dSRodney W. Grimes  * This code is derived from software contributed to Berkeley by
8df8bae1dSRodney W. Grimes  * The Mach Operating System project at Carnegie-Mellon University.
9df8bae1dSRodney W. Grimes  *
10df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
11df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
12df8bae1dSRodney W. Grimes  * are met:
13df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
14df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
15df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
16df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
17df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
19df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
20df8bae1dSRodney W. Grimes  *    without specific prior written permission.
21df8bae1dSRodney W. Grimes  *
22df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
33df8bae1dSRodney W. Grimes  *
34df8bae1dSRodney W. Grimes  *
35df8bae1dSRodney W. Grimes  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
36df8bae1dSRodney W. Grimes  * All rights reserved.
37df8bae1dSRodney W. Grimes  *
38df8bae1dSRodney W. Grimes  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
39df8bae1dSRodney W. Grimes  *
40df8bae1dSRodney W. Grimes  * Permission to use, copy, modify and distribute this software and
41df8bae1dSRodney W. Grimes  * its documentation is hereby granted, provided that both the copyright
42df8bae1dSRodney W. Grimes  * notice and this permission notice appear in all copies of the
43df8bae1dSRodney W. Grimes  * software, derivative works or modified versions, and any portions
44df8bae1dSRodney W. Grimes  * thereof, and that both notices appear in supporting documentation.
45df8bae1dSRodney W. Grimes  *
46df8bae1dSRodney W. Grimes  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
47df8bae1dSRodney W. Grimes  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
48df8bae1dSRodney W. Grimes  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
49df8bae1dSRodney W. Grimes  *
50df8bae1dSRodney W. Grimes  * Carnegie Mellon requests users of this software to return to
51df8bae1dSRodney W. Grimes  *
52df8bae1dSRodney W. Grimes  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
53df8bae1dSRodney W. Grimes  *  School of Computer Science
54df8bae1dSRodney W. Grimes  *  Carnegie Mellon University
55df8bae1dSRodney W. Grimes  *  Pittsburgh PA 15213-3890
56df8bae1dSRodney W. Grimes  *
57df8bae1dSRodney W. Grimes  * any improvements or extensions that they make and grant Carnegie the
58df8bae1dSRodney W. Grimes  * rights to redistribute these changes.
59df8bae1dSRodney W. Grimes  */
60df8bae1dSRodney W. Grimes 
61df8bae1dSRodney W. Grimes /*
62df8bae1dSRodney W. Grimes  *	Virtual memory object module.
63df8bae1dSRodney W. Grimes  */
64df8bae1dSRodney W. Grimes 
65f8a47341SAlan Cox #include "opt_vm.h"
66f8a47341SAlan Cox 
67df8bae1dSRodney W. Grimes #include <sys/systm.h>
68c99d0c58SMark Johnston #include <sys/blockcount.h>
69d9daa28cSKonstantin Belousov #include <sys/conf.h>
703f289c3fSJeff Roberson #include <sys/cpuset.h>
716a3fbdc7SKonstantin Belousov #include <sys/ipc.h>
7238f5f2a4SKonstantin Belousov #include <sys/jail.h>
73ecfbddf0SKonstantin Belousov #include <sys/limits.h>
74fb919e4dSMark Murray #include <sys/lock.h>
75867a482dSJohn Dyson #include <sys/mman.h>
76cf2819ccSJohn Dyson #include <sys/mount.h>
77b9b7a4beSMatthew Dillon #include <sys/kernel.h>
781b367556SJason Evans #include <sys/mutex.h>
7969748e62SKonstantin Belousov #include <sys/pctrie.h>
8069748e62SKonstantin Belousov #include <sys/proc.h>
81cf27e0d1SJeff Roberson #include <sys/refcount.h>
826a3fbdc7SKonstantin Belousov #include <sys/shm.h>
8369748e62SKonstantin Belousov #include <sys/sx.h>
8469748e62SKonstantin Belousov #include <sys/sysctl.h>
853364c323SKonstantin Belousov #include <sys/resourcevar.h>
86205be21dSJeff Roberson #include <sys/refcount.h>
8789f6b863SAttilio Rao #include <sys/rwlock.h>
88ff87ae35SJohn Baldwin #include <sys/user.h>
89fb919e4dSMark Murray #include <sys/vnode.h>
90fb919e4dSMark Murray #include <sys/vmmeter.h>
91df8bae1dSRodney W. Grimes 
92df8bae1dSRodney W. Grimes #include <vm/vm.h>
93efeaf95aSDavid Greenman #include <vm/vm_param.h>
94efeaf95aSDavid Greenman #include <vm/pmap.h>
95efeaf95aSDavid Greenman #include <vm/vm_map.h>
96efeaf95aSDavid Greenman #include <vm/vm_object.h>
97df8bae1dSRodney W. Grimes #include <vm/vm_page.h>
9826f9a767SRodney W. Grimes #include <vm/vm_pageout.h>
990d94caffSDavid Greenman #include <vm/vm_pager.h>
100e2068d0bSJeff Roberson #include <vm/vm_phys.h>
101e2068d0bSJeff Roberson #include <vm/vm_pagequeue.h>
10205f0fdd2SPoul-Henning Kamp #include <vm/swap_pager.h>
103a1f6d91cSDavid Greenman #include <vm/vm_kern.h>
104efeaf95aSDavid Greenman #include <vm/vm_extern.h>
105774d251dSAttilio Rao #include <vm/vm_radix.h>
106f8a47341SAlan Cox #include <vm/vm_reserv.h>
107670d17b5SJeff Roberson #include <vm/uma.h>
10826f9a767SRodney W. Grimes 
109c53f7aceSDag-Erling Smørgrav static int old_msync;
110c53f7aceSDag-Erling Smørgrav SYSCTL_INT(_vm, OID_AUTO, old_msync, CTLFLAG_RW, &old_msync, 0,
111c53f7aceSDag-Erling Smørgrav     "Use old (insecure) msync behavior");
112c53f7aceSDag-Erling Smørgrav 
113757216f3SKonstantin Belousov static int	vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
11467d0e293SJeff Roberson 		    int pagerflags, int flags, boolean_t *allclean,
115126d6082SKonstantin Belousov 		    boolean_t *eio);
1163280870dSKonstantin Belousov static boolean_t vm_object_page_remove_write(vm_page_t p, int flags,
11767d0e293SJeff Roberson 		    boolean_t *allclean);
11851b867e5SJeff Roberson static void	vm_object_backing_remove(vm_object_t object);
119f6b04d2bSDavid Greenman 
120df8bae1dSRodney W. Grimes /*
121df8bae1dSRodney W. Grimes  *	Virtual memory objects maintain the actual data
122df8bae1dSRodney W. Grimes  *	associated with allocated virtual memory.  A given
123df8bae1dSRodney W. Grimes  *	page of memory exists within exactly one object.
124df8bae1dSRodney W. Grimes  *
125df8bae1dSRodney W. Grimes  *	An object is only deallocated when all "references"
126df8bae1dSRodney W. Grimes  *	are given up.  Only one "reference" to a given
127df8bae1dSRodney W. Grimes  *	region of an object should be writeable.
128df8bae1dSRodney W. Grimes  *
129df8bae1dSRodney W. Grimes  *	Associated with each object is a list of all resident
130df8bae1dSRodney W. Grimes  *	memory pages belonging to that object; this list is
131df8bae1dSRodney W. Grimes  *	maintained by the "vm_page" module, and locked by the object's
132df8bae1dSRodney W. Grimes  *	lock.
133df8bae1dSRodney W. Grimes  *
134df8bae1dSRodney W. Grimes  *	Each object also records a "pager" routine which is
135df8bae1dSRodney W. Grimes  *	used to retrieve (and store) pages to the proper backing
136df8bae1dSRodney W. Grimes  *	storage.  In addition, objects may be backed by other
137df8bae1dSRodney W. Grimes  *	objects from which they were virtual-copied.
138df8bae1dSRodney W. Grimes  *
139df8bae1dSRodney W. Grimes  *	The only items within the object structure which are
140df8bae1dSRodney W. Grimes  *	modified after time of creation are:
141df8bae1dSRodney W. Grimes  *		reference count		locked by object's lock
142df8bae1dSRodney W. Grimes  *		pager routine		locked by object's lock
143df8bae1dSRodney W. Grimes  *
144df8bae1dSRodney W. Grimes  */
145df8bae1dSRodney W. Grimes 
14628f8db14SBruce Evans struct object_q vm_object_list;
147a5698387SAlan Cox struct mtx vm_object_list_mtx;	/* lock for object list and count */
148cccf11b8SAlan Cox 
149cccf11b8SAlan Cox struct vm_object kernel_object_store;
150df8bae1dSRodney W. Grimes 
1517029da5cSPawel Biernacki static SYSCTL_NODE(_vm_stats, OID_AUTO, object, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
1526472ac3dSEd Schouten     "VM object stats");
153604c2bbcSAlan Cox 
154d869a17eSMark Johnston static COUNTER_U64_DEFINE_EARLY(object_collapses);
15511542376SAlan Cox SYSCTL_COUNTER_U64(_vm_stats_object, OID_AUTO, collapses, CTLFLAG_RD,
15611542376SAlan Cox     &object_collapses,
15711542376SAlan Cox     "VM object collapses");
158604c2bbcSAlan Cox 
159d869a17eSMark Johnston static COUNTER_U64_DEFINE_EARLY(object_bypasses);
16011542376SAlan Cox SYSCTL_COUNTER_U64(_vm_stats_object, OID_AUTO, bypasses, CTLFLAG_RD,
16111542376SAlan Cox     &object_bypasses,
16211542376SAlan Cox     "VM object bypasses");
16311542376SAlan Cox 
164d869a17eSMark Johnston static COUNTER_U64_DEFINE_EARLY(object_collapse_waits);
16598087a06SJeff Roberson SYSCTL_COUNTER_U64(_vm_stats_object, OID_AUTO, collapse_waits, CTLFLAG_RD,
16698087a06SJeff Roberson     &object_collapse_waits,
16798087a06SJeff Roberson     "Number of sleeps for collapse");
16898087a06SJeff Roberson 
169670d17b5SJeff Roberson static uma_zone_t obj_zone;
1708355f576SJeff Roberson 
171b23f72e9SBrian Feldman static int vm_object_zinit(void *mem, int size, int flags);
1728355f576SJeff Roberson 
1738355f576SJeff Roberson #ifdef INVARIANTS
1748355f576SJeff Roberson static void vm_object_zdtor(void *mem, int size, void *arg);
1758355f576SJeff Roberson 
1768355f576SJeff Roberson static void
vm_object_zdtor(void * mem,int size,void * arg)1778355f576SJeff Roberson vm_object_zdtor(void *mem, int size, void *arg)
1788355f576SJeff Roberson {
1798355f576SJeff Roberson 	vm_object_t object;
1808355f576SJeff Roberson 
1818355f576SJeff Roberson 	object = (vm_object_t)mem;
182e735691bSJohn Baldwin 	KASSERT(object->ref_count == 0,
183e735691bSJohn Baldwin 	    ("object %p ref_count = %d", object, object->ref_count));
18443186e53SAlan Cox 	KASSERT(TAILQ_EMPTY(&object->memq),
185198da1b2SAttilio Rao 	    ("object %p has resident pages in its memq", object));
186774d251dSAttilio Rao 	KASSERT(vm_radix_is_empty(&object->rtree),
187774d251dSAttilio Rao 	    ("object %p has resident pages in its trie", object));
188f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
189f8a47341SAlan Cox 	KASSERT(LIST_EMPTY(&object->rvq),
190f8a47341SAlan Cox 	    ("object %p has reservations",
191f8a47341SAlan Cox 	    object));
192f8a47341SAlan Cox #endif
193c99d0c58SMark Johnston 	KASSERT(!vm_object_busied(object),
194c99d0c58SMark Johnston 	    ("object %p busy = %d", object, blockcount_read(&object->busy)));
1958355f576SJeff Roberson 	KASSERT(object->resident_page_count == 0,
1968355f576SJeff Roberson 	    ("object %p resident_page_count = %d",
1978355f576SJeff Roberson 	    object, object->resident_page_count));
1984cf9f5d8SKonstantin Belousov 	KASSERT(atomic_load_int(&object->shadow_count) == 0,
1998355f576SJeff Roberson 	    ("object %p shadow_count = %d",
2004cf9f5d8SKonstantin Belousov 	    object, atomic_load_int(&object->shadow_count)));
201e735691bSJohn Baldwin 	KASSERT(object->type == OBJT_DEAD,
202e735691bSJohn Baldwin 	    ("object %p has non-dead type %d",
203e735691bSJohn Baldwin 	    object, object->type));
204e1979b45SMark Johnston 	KASSERT(object->charge == 0 && object->cred == NULL,
205e1979b45SMark Johnston 	    ("object %p has non-zero charge %ju (%p)",
206e1979b45SMark Johnston 	    object, (uintmax_t)object->charge, object->cred));
2078355f576SJeff Roberson }
2088355f576SJeff Roberson #endif
2098355f576SJeff Roberson 
210b23f72e9SBrian Feldman static int
vm_object_zinit(void * mem,int size,int flags)211b23f72e9SBrian Feldman vm_object_zinit(void *mem, int size, int flags)
2128355f576SJeff Roberson {
2138355f576SJeff Roberson 	vm_object_t object;
2148355f576SJeff Roberson 
2158355f576SJeff Roberson 	object = (vm_object_t)mem;
216777a36c5SAlan Cox 	rw_init_flags(&object->lock, "vmobject", RW_DUPOK | RW_NEW);
2178355f576SJeff Roberson 
2188355f576SJeff Roberson 	/* These are true for any object that has been freed */
219e735691bSJohn Baldwin 	object->type = OBJT_DEAD;
220cd1241fbSKonstantin Belousov 	vm_radix_init(&object->rtree);
22151df5321SJeff Roberson 	refcount_init(&object->ref_count, 0);
222c99d0c58SMark Johnston 	blockcount_init(&object->paging_in_progress);
223c99d0c58SMark Johnston 	blockcount_init(&object->busy);
2248355f576SJeff Roberson 	object->resident_page_count = 0;
2254cf9f5d8SKonstantin Belousov 	atomic_store_int(&object->shadow_count, 0);
226f425ab8eSKonstantin Belousov 	object->flags = OBJ_DEAD;
227e735691bSJohn Baldwin 
228e735691bSJohn Baldwin 	mtx_lock(&vm_object_list_mtx);
229e735691bSJohn Baldwin 	TAILQ_INSERT_TAIL(&vm_object_list, object, object_list);
230e735691bSJohn Baldwin 	mtx_unlock(&vm_object_list_mtx);
231b23f72e9SBrian Feldman 	return (0);
2328355f576SJeff Roberson }
233df8bae1dSRodney W. Grimes 
234a4915c21SAttilio Rao static void
_vm_object_allocate(objtype_t type,vm_pindex_t size,u_short flags,vm_object_t object,void * handle)23563967687SJeff Roberson _vm_object_allocate(objtype_t type, vm_pindex_t size, u_short flags,
23667388836SKonstantin Belousov     vm_object_t object, void *handle)
237df8bae1dSRodney W. Grimes {
2380cddd8f0SMatthew Dillon 
239df8bae1dSRodney W. Grimes 	TAILQ_INIT(&object->memq);
2401c500307SAlan Cox 	LIST_INIT(&object->shadow_head);
241a1f6d91cSDavid Greenman 
24224a1cce3SDavid Greenman 	object->type = type;
2434b8365d7SKonstantin Belousov 	object->flags = flags;
2445d32157dSMark Johnston 	if ((flags & OBJ_SWAP) != 0) {
245f425ab8eSKonstantin Belousov 		pctrie_init(&object->un_pager.swp.swp_blks);
2465d32157dSMark Johnston 		object->un_pager.swp.writemappings = 0;
2475d32157dSMark Johnston 	}
248f425ab8eSKonstantin Belousov 
249f425ab8eSKonstantin Belousov 	/*
250f425ab8eSKonstantin Belousov 	 * Ensure that swap_pager_swapoff() iteration over object_list
251f425ab8eSKonstantin Belousov 	 * sees up to date type and pctrie head if it observed
252f425ab8eSKonstantin Belousov 	 * non-dead object.
253f425ab8eSKonstantin Belousov 	 */
254f425ab8eSKonstantin Belousov 	atomic_thread_fence_rel();
255f425ab8eSKonstantin Belousov 
25663967687SJeff Roberson 	object->pg_color = 0;
257df8bae1dSRodney W. Grimes 	object->size = size;
2584c29d2deSMark Johnston 	object->domain.dr_policy = NULL;
259b881da26SAlan Cox 	object->generation = 1;
26067d0e293SJeff Roberson 	object->cleangeneration = 1;
26151df5321SJeff Roberson 	refcount_init(&object->ref_count, 1);
2623153e878SAlan Cox 	object->memattr = VM_MEMATTR_DEFAULT;
263ef694c1aSEdward Tomasz Napierala 	object->cred = NULL;
2643364c323SKonstantin Belousov 	object->charge = 0;
26567388836SKonstantin Belousov 	object->handle = handle;
26624a1cce3SDavid Greenman 	object->backing_object = NULL;
267a316d390SJohn Dyson 	object->backing_object_offset = (vm_ooffset_t) 0;
268f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
269f8a47341SAlan Cox 	LIST_INIT(&object->rvq);
270f8a47341SAlan Cox #endif
2711bdbd705SKonstantin Belousov 	umtx_shm_object_init(object);
272df8bae1dSRodney W. Grimes }
273df8bae1dSRodney W. Grimes 
274df8bae1dSRodney W. Grimes /*
27526f9a767SRodney W. Grimes  *	vm_object_init:
27626f9a767SRodney W. Grimes  *
27726f9a767SRodney W. Grimes  *	Initialize the VM objects module.
27826f9a767SRodney W. Grimes  */
27926f9a767SRodney W. Grimes void
vm_object_init(void)2801b40f8c0SMatthew Dillon vm_object_init(void)
28126f9a767SRodney W. Grimes {
28226f9a767SRodney W. Grimes 	TAILQ_INIT(&vm_object_list);
2836008862bSJohn Baldwin 	mtx_init(&vm_object_list_mtx, "vm object_list", NULL, MTX_DEF);
2840217125fSDavid Greenman 
28589f6b863SAttilio Rao 	rw_init(&kernel_object->lock, "kernel vm object");
2863e04ae43SDoug Moore 	vm_radix_init(&kernel_object->rtree);
287d1780e8dSKonstantin Belousov 	_vm_object_allocate(OBJT_PHYS, atop(VM_MAX_KERNEL_ADDRESS -
28867388836SKonstantin Belousov 	    VM_MIN_KERNEL_ADDRESS), OBJ_UNMANAGED, kernel_object, NULL);
289f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
290f8a47341SAlan Cox 	kernel_object->flags |= OBJ_COLORED;
291f8a47341SAlan Cox 	kernel_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
292f8a47341SAlan Cox #endif
293a720b31cSKonstantin Belousov 	kernel_object->un_pager.phys.ops = &default_phys_pg_ops;
29426f9a767SRodney W. Grimes 
2958dbca793STor Egge 	/*
2968dbca793STor Egge 	 * The lock portion of struct vm_object must be type stable due
2978dbca793STor Egge 	 * to vm_pageout_fallback_object_lock locking a vm object
2988dbca793STor Egge 	 * without holding any references to it.
299ffae7ea9SKonstantin Belousov 	 *
300ffae7ea9SKonstantin Belousov 	 * paging_in_progress is valid always.  Lockless references to
301ffae7ea9SKonstantin Belousov 	 * the objects may acquire pip and then check OBJ_DEAD.
3028dbca793STor Egge 	 */
3038355f576SJeff Roberson 	obj_zone = uma_zcreate("VM OBJECT", sizeof (struct vm_object), NULL,
3048355f576SJeff Roberson #ifdef INVARIANTS
3058355f576SJeff Roberson 	    vm_object_zdtor,
3068355f576SJeff Roberson #else
3078355f576SJeff Roberson 	    NULL,
3088355f576SJeff Roberson #endif
3095df87b21SJeff Roberson 	    vm_object_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
310774d251dSAttilio Rao 
311cd1241fbSKonstantin Belousov 	vm_radix_zinit();
31299448ed1SJohn Dyson }
31399448ed1SJohn Dyson 
31499448ed1SJohn Dyson void
vm_object_clear_flag(vm_object_t object,u_short bits)3151b40f8c0SMatthew Dillon vm_object_clear_flag(vm_object_t object, u_short bits)
3161b40f8c0SMatthew Dillon {
3175440b5a9SAlan Cox 
31889f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
319b06805adSJake Burkholder 	object->flags &= ~bits;
3201b40f8c0SMatthew Dillon }
3211b40f8c0SMatthew Dillon 
3223153e878SAlan Cox /*
3233153e878SAlan Cox  *	Sets the default memory attribute for the specified object.  Pages
3243153e878SAlan Cox  *	that are allocated to this object are by default assigned this memory
3253153e878SAlan Cox  *	attribute.
3263153e878SAlan Cox  *
3273153e878SAlan Cox  *	Presently, this function must be called before any pages are allocated
3283153e878SAlan Cox  *	to the object.  In the future, this requirement may be relaxed for
3293153e878SAlan Cox  *	"default" and "swap" objects.
3303153e878SAlan Cox  */
3313153e878SAlan Cox int
vm_object_set_memattr(vm_object_t object,vm_memattr_t memattr)3323153e878SAlan Cox vm_object_set_memattr(vm_object_t object, vm_memattr_t memattr)
3333153e878SAlan Cox {
3343153e878SAlan Cox 
33589f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
3363e7a11caSKonstantin Belousov 
3373e7a11caSKonstantin Belousov 	if (object->type == OBJT_DEAD)
3383e7a11caSKonstantin Belousov 		return (KERN_INVALID_ARGUMENT);
3393153e878SAlan Cox 	if (!TAILQ_EMPTY(&object->memq))
3403153e878SAlan Cox 		return (KERN_FAILURE);
3413e7a11caSKonstantin Belousov 
3423153e878SAlan Cox 	object->memattr = memattr;
3433153e878SAlan Cox 	return (KERN_SUCCESS);
3443153e878SAlan Cox }
3453153e878SAlan Cox 
3461b40f8c0SMatthew Dillon void
vm_object_pip_add(vm_object_t object,short i)3471b40f8c0SMatthew Dillon vm_object_pip_add(vm_object_t object, short i)
3481b40f8c0SMatthew Dillon {
349f279b88dSAlan Cox 
350c99d0c58SMark Johnston 	if (i > 0)
351c99d0c58SMark Johnston 		blockcount_acquire(&object->paging_in_progress, i);
3521b40f8c0SMatthew Dillon }
3531b40f8c0SMatthew Dillon 
3541b40f8c0SMatthew Dillon void
vm_object_pip_wakeup(vm_object_t object)3551b40f8c0SMatthew Dillon vm_object_pip_wakeup(vm_object_t object)
3561b40f8c0SMatthew Dillon {
357f279b88dSAlan Cox 
358c99d0c58SMark Johnston 	vm_object_pip_wakeupn(object, 1);
3591b40f8c0SMatthew Dillon }
3601b40f8c0SMatthew Dillon 
3611b40f8c0SMatthew Dillon void
vm_object_pip_wakeupn(vm_object_t object,short i)3621b40f8c0SMatthew Dillon vm_object_pip_wakeupn(vm_object_t object, short i)
3631b40f8c0SMatthew Dillon {
364d647a0edSAlan Cox 
365c99d0c58SMark Johnston 	if (i > 0)
366c99d0c58SMark Johnston 		blockcount_release(&object->paging_in_progress, i);
3671b40f8c0SMatthew Dillon }
3681b40f8c0SMatthew Dillon 
36998087a06SJeff Roberson /*
370c99d0c58SMark Johnston  * Atomically drop the object lock and wait for pip to drain.  This protects
371c99d0c58SMark Johnston  * from sleep/wakeup races due to identity changes.  The lock is not re-acquired
372c99d0c58SMark Johnston  * on return.
37398087a06SJeff Roberson  */
37498087a06SJeff Roberson static void
vm_object_pip_sleep(vm_object_t object,const char * waitid)375eaa17d42SRyan Libby vm_object_pip_sleep(vm_object_t object, const char *waitid)
37698087a06SJeff Roberson {
37798087a06SJeff Roberson 
378c99d0c58SMark Johnston 	(void)blockcount_sleep(&object->paging_in_progress, &object->lock,
379c99d0c58SMark Johnston 	    waitid, PVM | PDROP);
38098087a06SJeff Roberson }
38198087a06SJeff Roberson 
3821b40f8c0SMatthew Dillon void
vm_object_pip_wait(vm_object_t object,const char * waitid)383eaa17d42SRyan Libby vm_object_pip_wait(vm_object_t object, const char *waitid)
3841b40f8c0SMatthew Dillon {
3851ca58953SAlan Cox 
38689f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
387cf27e0d1SJeff Roberson 
388c99d0c58SMark Johnston 	blockcount_wait(&object->paging_in_progress, &object->lock, waitid,
389c99d0c58SMark Johnston 	    PVM);
3901b40f8c0SMatthew Dillon }
3911b40f8c0SMatthew Dillon 
392cf27e0d1SJeff Roberson void
vm_object_pip_wait_unlocked(vm_object_t object,const char * waitid)393eaa17d42SRyan Libby vm_object_pip_wait_unlocked(vm_object_t object, const char *waitid)
394cf27e0d1SJeff Roberson {
395cf27e0d1SJeff Roberson 
396cf27e0d1SJeff Roberson 	VM_OBJECT_ASSERT_UNLOCKED(object);
397cf27e0d1SJeff Roberson 
398c99d0c58SMark Johnston 	blockcount_wait(&object->paging_in_progress, NULL, waitid, PVM);
399cf27e0d1SJeff Roberson }
400cf27e0d1SJeff Roberson 
40126f9a767SRodney W. Grimes /*
40226f9a767SRodney W. Grimes  *	vm_object_allocate:
40326f9a767SRodney W. Grimes  *
40426f9a767SRodney W. Grimes  *	Returns a new object with the given size.
40526f9a767SRodney W. Grimes  */
40626f9a767SRodney W. Grimes vm_object_t
vm_object_allocate(objtype_t type,vm_pindex_t size)4076395da54SIan Dowse vm_object_allocate(objtype_t type, vm_pindex_t size)
40826f9a767SRodney W. Grimes {
40990688d13SAlan Cox 	vm_object_t object;
41063967687SJeff Roberson 	u_short flags;
41163967687SJeff Roberson 
41263967687SJeff Roberson 	switch (type) {
41363967687SJeff Roberson 	case OBJT_DEAD:
41463967687SJeff Roberson 		panic("vm_object_allocate: can't create OBJT_DEAD");
4154b8365d7SKonstantin Belousov 	case OBJT_SWAP:
4164b8365d7SKonstantin Belousov 		flags = OBJ_COLORED | OBJ_SWAP;
4174b8365d7SKonstantin Belousov 		break;
41863967687SJeff Roberson 	case OBJT_DEVICE:
41963967687SJeff Roberson 	case OBJT_SG:
42063967687SJeff Roberson 		flags = OBJ_FICTITIOUS | OBJ_UNMANAGED;
42163967687SJeff Roberson 		break;
42263967687SJeff Roberson 	case OBJT_MGTDEVICE:
42363967687SJeff Roberson 		flags = OBJ_FICTITIOUS;
42463967687SJeff Roberson 		break;
42563967687SJeff Roberson 	case OBJT_PHYS:
42663967687SJeff Roberson 		flags = OBJ_UNMANAGED;
42763967687SJeff Roberson 		break;
42863967687SJeff Roberson 	case OBJT_VNODE:
42963967687SJeff Roberson 		flags = 0;
43063967687SJeff Roberson 		break;
43163967687SJeff Roberson 	default:
432b730fd30SKonstantin Belousov 		panic("vm_object_allocate: type %d is undefined or dynamic",
433b730fd30SKonstantin Belousov 		    type);
43463967687SJeff Roberson 	}
43563967687SJeff Roberson 	object = (vm_object_t)uma_zalloc(obj_zone, M_WAITOK);
43667388836SKonstantin Belousov 	_vm_object_allocate(type, size, flags, object, NULL);
43763967687SJeff Roberson 
43863967687SJeff Roberson 	return (object);
43963967687SJeff Roberson }
44063967687SJeff Roberson 
441b730fd30SKonstantin Belousov vm_object_t
vm_object_allocate_dyn(objtype_t dyntype,vm_pindex_t size,u_short flags)442b730fd30SKonstantin Belousov vm_object_allocate_dyn(objtype_t dyntype, vm_pindex_t size, u_short flags)
443b730fd30SKonstantin Belousov {
444b730fd30SKonstantin Belousov 	vm_object_t object;
445b730fd30SKonstantin Belousov 
446b730fd30SKonstantin Belousov 	MPASS(dyntype >= OBJT_FIRST_DYN /* && dyntype < nitems(pagertab) */);
447b730fd30SKonstantin Belousov 	object = (vm_object_t)uma_zalloc(obj_zone, M_WAITOK);
448b730fd30SKonstantin Belousov 	_vm_object_allocate(dyntype, size, flags, object, NULL);
449b730fd30SKonstantin Belousov 
450b730fd30SKonstantin Belousov 	return (object);
451b730fd30SKonstantin Belousov }
452b730fd30SKonstantin Belousov 
45363967687SJeff Roberson /*
45463967687SJeff Roberson  *	vm_object_allocate_anon:
45563967687SJeff Roberson  *
45663967687SJeff Roberson  *	Returns a new default object of the given size and marked as
45763967687SJeff Roberson  *	anonymous memory for special split/collapse handling.  Color
45863967687SJeff Roberson  *	to be initialized by the caller.
45963967687SJeff Roberson  */
46063967687SJeff Roberson vm_object_t
vm_object_allocate_anon(vm_pindex_t size,vm_object_t backing_object,struct ucred * cred,vm_size_t charge)46167388836SKonstantin Belousov vm_object_allocate_anon(vm_pindex_t size, vm_object_t backing_object,
46267388836SKonstantin Belousov     struct ucred *cred, vm_size_t charge)
46363967687SJeff Roberson {
46467388836SKonstantin Belousov 	vm_object_t handle, object;
46590688d13SAlan Cox 
46667388836SKonstantin Belousov 	if (backing_object == NULL)
46767388836SKonstantin Belousov 		handle = NULL;
46867388836SKonstantin Belousov 	else if ((backing_object->flags & OBJ_ANON) != 0)
46967388836SKonstantin Belousov 		handle = backing_object->handle;
47067388836SKonstantin Belousov 	else
47167388836SKonstantin Belousov 		handle = backing_object;
47267388836SKonstantin Belousov 	object = uma_zalloc(obj_zone, M_WAITOK);
4735d32157dSMark Johnston 	_vm_object_allocate(OBJT_SWAP, size,
4745d32157dSMark Johnston 	    OBJ_ANON | OBJ_ONEMAPPING | OBJ_SWAP, object, handle);
47567388836SKonstantin Belousov 	object->cred = cred;
47667388836SKonstantin Belousov 	object->charge = cred != NULL ? charge : 0;
47790688d13SAlan Cox 	return (object);
47826f9a767SRodney W. Grimes }
47926f9a767SRodney W. Grimes 
48098087a06SJeff Roberson static void
vm_object_reference_vnode(vm_object_t object)48198087a06SJeff Roberson vm_object_reference_vnode(vm_object_t object)
482df8bae1dSRodney W. Grimes {
483a67d5408SJeff Roberson 	u_int old;
484a67d5408SJeff Roberson 
485a67d5408SJeff Roberson 	/*
48698087a06SJeff Roberson 	 * vnode objects need the lock for the first reference
48798087a06SJeff Roberson 	 * to serialize with vnode_object_deallocate().
488a67d5408SJeff Roberson 	 */
48998087a06SJeff Roberson 	if (!refcount_acquire_if_gt(&object->ref_count, 0)) {
49051df5321SJeff Roberson 		VM_OBJECT_RLOCK(object);
491a67d5408SJeff Roberson 		old = refcount_acquire(&object->ref_count);
4921a0c234eSJeff Roberson 		if (object->type == OBJT_VNODE && old == 0)
4931a0c234eSJeff Roberson 			vref(object->handle);
49451df5321SJeff Roberson 		VM_OBJECT_RUNLOCK(object);
49595e5e988SJohn Dyson 	}
496a67d5408SJeff Roberson }
49795e5e988SJohn Dyson 
49823955314SAlfred Perlstein /*
49998087a06SJeff Roberson  *	vm_object_reference:
50098087a06SJeff Roberson  *
50198087a06SJeff Roberson  *	Acquires a reference to the given object.
50298087a06SJeff Roberson  */
50398087a06SJeff Roberson void
vm_object_reference(vm_object_t object)50498087a06SJeff Roberson vm_object_reference(vm_object_t object)
50598087a06SJeff Roberson {
50698087a06SJeff Roberson 
50798087a06SJeff Roberson 	if (object == NULL)
50898087a06SJeff Roberson 		return;
50998087a06SJeff Roberson 
51098087a06SJeff Roberson 	if (object->type == OBJT_VNODE)
51198087a06SJeff Roberson 		vm_object_reference_vnode(object);
51298087a06SJeff Roberson 	else
51398087a06SJeff Roberson 		refcount_acquire(&object->ref_count);
51498087a06SJeff Roberson 	KASSERT((object->flags & OBJ_DEAD) == 0,
51598087a06SJeff Roberson 	    ("vm_object_reference: Referenced dead object."));
51698087a06SJeff Roberson }
51798087a06SJeff Roberson 
51898087a06SJeff Roberson /*
519b921a12bSAlan Cox  *	vm_object_reference_locked:
520b921a12bSAlan Cox  *
521b921a12bSAlan Cox  *	Gets another reference to the given object.
522b921a12bSAlan Cox  *
523b921a12bSAlan Cox  *	The object must be locked.
524b921a12bSAlan Cox  */
525b921a12bSAlan Cox void
vm_object_reference_locked(vm_object_t object)526b921a12bSAlan Cox vm_object_reference_locked(vm_object_t object)
527b921a12bSAlan Cox {
528a67d5408SJeff Roberson 	u_int old;
529b921a12bSAlan Cox 
53051df5321SJeff Roberson 	VM_OBJECT_ASSERT_LOCKED(object);
531a67d5408SJeff Roberson 	old = refcount_acquire(&object->ref_count);
5321a0c234eSJeff Roberson 	if (object->type == OBJT_VNODE && old == 0)
5331a0c234eSJeff Roberson 		vref(object->handle);
53498087a06SJeff Roberson 	KASSERT((object->flags & OBJ_DEAD) == 0,
53598087a06SJeff Roberson 	    ("vm_object_reference: Referenced dead object."));
536b921a12bSAlan Cox }
537b921a12bSAlan Cox 
538b921a12bSAlan Cox /*
5399d5abbddSJens Schweikhardt  * Handle deallocating an object of type OBJT_VNODE.
54023955314SAlfred Perlstein  */
54102dd8331SAlan Cox static void
vm_object_deallocate_vnode(vm_object_t object)54298087a06SJeff Roberson vm_object_deallocate_vnode(vm_object_t object)
54395e5e988SJohn Dyson {
54495e5e988SJohn Dyson 	struct vnode *vp = (struct vnode *) object->handle;
54526c4e983SJeff Roberson 	bool last;
546219cbf59SEivind Eklund 
5475526d2d9SEivind Eklund 	KASSERT(object->type == OBJT_VNODE,
54898087a06SJeff Roberson 	    ("vm_object_deallocate_vnode: not a vnode object"));
54998087a06SJeff Roberson 	KASSERT(vp != NULL, ("vm_object_deallocate_vnode: missing vp"));
55095e5e988SJohn Dyson 
55126c4e983SJeff Roberson 	/* Object lock to protect handle lookup. */
55226c4e983SJeff Roberson 	last = refcount_release(&object->ref_count);
55326c4e983SJeff Roberson 	VM_OBJECT_RUNLOCK(object);
55426c4e983SJeff Roberson 
55526c4e983SJeff Roberson 	if (!last)
55626c4e983SJeff Roberson 		return;
55726c4e983SJeff Roberson 
558a67d5408SJeff Roberson 	if (!umtx_shm_vnobj_persistent)
5591bdbd705SKonstantin Belousov 		umtx_shm_object_terminated(object);
5601bdbd705SKonstantin Belousov 
56103fa5b34SKonstantin Belousov 	/* vrele may need the vnode lock. */
56247221757SJohn Dyson 	vrele(vp);
56386769ac0SKonstantin Belousov }
564df8bae1dSRodney W. Grimes 
56598087a06SJeff Roberson /*
56698087a06SJeff Roberson  * We dropped a reference on an object and discovered that it had a
56798087a06SJeff Roberson  * single remaining shadow.  This is a sibling of the reference we
56898087a06SJeff Roberson  * dropped.  Attempt to collapse the sibling and backing object.
56998087a06SJeff Roberson  */
57098087a06SJeff Roberson static vm_object_t
vm_object_deallocate_anon(vm_object_t backing_object)57198087a06SJeff Roberson vm_object_deallocate_anon(vm_object_t backing_object)
57298087a06SJeff Roberson {
57398087a06SJeff Roberson 	vm_object_t object;
57498087a06SJeff Roberson 
57598087a06SJeff Roberson 	/* Fetch the final shadow.  */
57698087a06SJeff Roberson 	object = LIST_FIRST(&backing_object->shadow_head);
5774cf9f5d8SKonstantin Belousov 	KASSERT(object != NULL &&
5784cf9f5d8SKonstantin Belousov 	    atomic_load_int(&backing_object->shadow_count) == 1,
57998087a06SJeff Roberson 	    ("vm_object_anon_deallocate: ref_count: %d, shadow_count: %d",
5804cf9f5d8SKonstantin Belousov 	    backing_object->ref_count,
5814cf9f5d8SKonstantin Belousov 	    atomic_load_int(&backing_object->shadow_count)));
5824b8365d7SKonstantin Belousov 	KASSERT((object->flags & OBJ_ANON) != 0,
58398087a06SJeff Roberson 	    ("invalid shadow object %p", object));
58498087a06SJeff Roberson 
58598087a06SJeff Roberson 	if (!VM_OBJECT_TRYWLOCK(object)) {
58698087a06SJeff Roberson 		/*
58798087a06SJeff Roberson 		 * Prevent object from disappearing since we do not have a
58898087a06SJeff Roberson 		 * reference.
58998087a06SJeff Roberson 		 */
59098087a06SJeff Roberson 		vm_object_pip_add(object, 1);
59198087a06SJeff Roberson 		VM_OBJECT_WUNLOCK(backing_object);
59298087a06SJeff Roberson 		VM_OBJECT_WLOCK(object);
59398087a06SJeff Roberson 		vm_object_pip_wakeup(object);
59498087a06SJeff Roberson 	} else
59598087a06SJeff Roberson 		VM_OBJECT_WUNLOCK(backing_object);
59698087a06SJeff Roberson 
59798087a06SJeff Roberson 	/*
59898087a06SJeff Roberson 	 * Check for a collapse/terminate race with the last reference holder.
59998087a06SJeff Roberson 	 */
60098087a06SJeff Roberson 	if ((object->flags & (OBJ_DEAD | OBJ_COLLAPSING)) != 0 ||
60198087a06SJeff Roberson 	    !refcount_acquire_if_not_zero(&object->ref_count)) {
60298087a06SJeff Roberson 		VM_OBJECT_WUNLOCK(object);
60398087a06SJeff Roberson 		return (NULL);
60498087a06SJeff Roberson 	}
60598087a06SJeff Roberson 	backing_object = object->backing_object;
60698087a06SJeff Roberson 	if (backing_object != NULL && (backing_object->flags & OBJ_ANON) != 0)
60798087a06SJeff Roberson 		vm_object_collapse(object);
60898087a06SJeff Roberson 	VM_OBJECT_WUNLOCK(object);
60998087a06SJeff Roberson 
61098087a06SJeff Roberson 	return (object);
61198087a06SJeff Roberson }
61298087a06SJeff Roberson 
613df8bae1dSRodney W. Grimes /*
614df8bae1dSRodney W. Grimes  *	vm_object_deallocate:
615df8bae1dSRodney W. Grimes  *
616df8bae1dSRodney W. Grimes  *	Release a reference to the specified object,
617df8bae1dSRodney W. Grimes  *	gained either through a vm_object_allocate
618df8bae1dSRodney W. Grimes  *	or a vm_object_reference call.  When all references
619df8bae1dSRodney W. Grimes  *	are gone, storage associated with this object
620df8bae1dSRodney W. Grimes  *	may be relinquished.
621df8bae1dSRodney W. Grimes  *
622df8bae1dSRodney W. Grimes  *	No object may be locked.
623df8bae1dSRodney W. Grimes  */
62426f9a767SRodney W. Grimes void
vm_object_deallocate(vm_object_t object)6251b40f8c0SMatthew Dillon vm_object_deallocate(vm_object_t object)
626df8bae1dSRodney W. Grimes {
62798087a06SJeff Roberson 	vm_object_t temp;
62826c4e983SJeff Roberson 	bool released;
629df8bae1dSRodney W. Grimes 
630df8bae1dSRodney W. Grimes 	while (object != NULL) {
63151df5321SJeff Roberson 		/*
63251df5321SJeff Roberson 		 * If the reference count goes to 0 we start calling
63351df5321SJeff Roberson 		 * vm_object_terminate() on the object chain.  A ref count
63451df5321SJeff Roberson 		 * of 1 may be a special case depending on the shadow count
63551df5321SJeff Roberson 		 * being 0 or 1.  These cases require a write lock on the
63651df5321SJeff Roberson 		 * object.
63751df5321SJeff Roberson 		 */
63863967687SJeff Roberson 		if ((object->flags & OBJ_ANON) == 0)
63963967687SJeff Roberson 			released = refcount_release_if_gt(&object->ref_count, 1);
64063967687SJeff Roberson 		else
64151df5321SJeff Roberson 			released = refcount_release_if_gt(&object->ref_count, 2);
64251df5321SJeff Roberson 		if (released)
64351df5321SJeff Roberson 			return;
64451df5321SJeff Roberson 
645a67d5408SJeff Roberson 		if (object->type == OBJT_VNODE) {
64626c4e983SJeff Roberson 			VM_OBJECT_RLOCK(object);
64726c4e983SJeff Roberson 			if (object->type == OBJT_VNODE) {
64898087a06SJeff Roberson 				vm_object_deallocate_vnode(object);
649a67d5408SJeff Roberson 				return;
650a67d5408SJeff Roberson 			}
65126c4e983SJeff Roberson 			VM_OBJECT_RUNLOCK(object);
65226c4e983SJeff Roberson 		}
65326c4e983SJeff Roberson 
65426c4e983SJeff Roberson 		VM_OBJECT_WLOCK(object);
65526c4e983SJeff Roberson 		KASSERT(object->ref_count > 0,
65626c4e983SJeff Roberson 		    ("vm_object_deallocate: object deallocated too many times: %d",
65726c4e983SJeff Roberson 		    object->type));
65826c4e983SJeff Roberson 
659b72b0115SAlan Cox 		/*
66098087a06SJeff Roberson 		 * If this is not the final reference to an anonymous
66198087a06SJeff Roberson 		 * object we may need to collapse the shadow chain.
662b72b0115SAlan Cox 		 */
66398087a06SJeff Roberson 		if (!refcount_release(&object->ref_count)) {
66498087a06SJeff Roberson 			if (object->ref_count > 1 ||
6654cf9f5d8SKonstantin Belousov 			    atomic_load_int(&object->shadow_count) == 0) {
66698087a06SJeff Roberson 				if ((object->flags & OBJ_ANON) != 0 &&
66798087a06SJeff Roberson 				    object->ref_count == 1)
66898087a06SJeff Roberson 					vm_object_set_flag(object,
66998087a06SJeff Roberson 					    OBJ_ONEMAPPING);
67089f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(object);
67123b186d3SAlan Cox 				return;
67295e5e988SJohn Dyson 			}
67398087a06SJeff Roberson 
67498087a06SJeff Roberson 			/* Handle collapsing last ref on anonymous objects. */
67598087a06SJeff Roberson 			object = vm_object_deallocate_anon(object);
67698087a06SJeff Roberson 			continue;
67798087a06SJeff Roberson 		}
67898087a06SJeff Roberson 
67998087a06SJeff Roberson 		/*
68098087a06SJeff Roberson 		 * Handle the final reference to an object.  We restart
68198087a06SJeff Roberson 		 * the loop with the backing object to avoid recursion.
68298087a06SJeff Roberson 		 */
6831bdbd705SKonstantin Belousov 		umtx_shm_object_terminated(object);
68424a1cce3SDavid Greenman 		temp = object->backing_object;
685c9917419SAlan Cox 		if (temp != NULL) {
6860cb2610eSMark Johnston 			KASSERT(object->type == OBJT_SWAP,
6874bace8e7SKonstantin Belousov 			    ("shadowed tmpfs v_object 2 %p", object));
68851b867e5SJeff Roberson 			vm_object_backing_remove(object);
689de5f6a77SJohn Dyson 		}
69098087a06SJeff Roberson 
69198087a06SJeff Roberson 		KASSERT((object->flags & OBJ_DEAD) == 0,
69298087a06SJeff Roberson 		    ("vm_object_deallocate: Terminating dead object."));
693783a68aaSKonstantin Belousov 		vm_object_set_flag(object, OBJ_DEAD);
694df8bae1dSRodney W. Grimes 		vm_object_terminate(object);
695df8bae1dSRodney W. Grimes 		object = temp;
696df8bae1dSRodney W. Grimes 	}
697df8bae1dSRodney W. Grimes }
698df8bae1dSRodney W. Grimes 
6992ac78f0eSStephan Uphoff void
vm_object_destroy(vm_object_t object)7002ac78f0eSStephan Uphoff vm_object_destroy(vm_object_t object)
7012ac78f0eSStephan Uphoff {
7022ac78f0eSStephan Uphoff 	uma_zfree(obj_zone, object);
7032ac78f0eSStephan Uphoff }
7042ac78f0eSStephan Uphoff 
70551b867e5SJeff Roberson static void
vm_object_sub_shadow(vm_object_t object)7064cf9f5d8SKonstantin Belousov vm_object_sub_shadow(vm_object_t object)
7074cf9f5d8SKonstantin Belousov {
7084cf9f5d8SKonstantin Belousov 	KASSERT(object->shadow_count >= 1,
7094cf9f5d8SKonstantin Belousov 	    ("object %p sub_shadow count zero", object));
7104cf9f5d8SKonstantin Belousov 	atomic_subtract_int(&object->shadow_count, 1);
7114cf9f5d8SKonstantin Belousov }
7124cf9f5d8SKonstantin Belousov 
7134cf9f5d8SKonstantin Belousov static void
vm_object_backing_remove_locked(vm_object_t object)71451b867e5SJeff Roberson vm_object_backing_remove_locked(vm_object_t object)
71551b867e5SJeff Roberson {
71651b867e5SJeff Roberson 	vm_object_t backing_object;
71751b867e5SJeff Roberson 
71851b867e5SJeff Roberson 	backing_object = object->backing_object;
71951b867e5SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(object);
72051b867e5SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(backing_object);
72151b867e5SJeff Roberson 
72298087a06SJeff Roberson 	KASSERT((object->flags & OBJ_COLLAPSING) == 0,
72398087a06SJeff Roberson 	    ("vm_object_backing_remove: Removing collapsing object."));
72498087a06SJeff Roberson 
7254cf9f5d8SKonstantin Belousov 	vm_object_sub_shadow(backing_object);
72651b867e5SJeff Roberson 	if ((object->flags & OBJ_SHADOWLIST) != 0) {
72751b867e5SJeff Roberson 		LIST_REMOVE(object, shadow_list);
728630f633fSMark Johnston 		vm_object_clear_flag(object, OBJ_SHADOWLIST);
72951b867e5SJeff Roberson 	}
73051b867e5SJeff Roberson 	object->backing_object = NULL;
73151b867e5SJeff Roberson }
73251b867e5SJeff Roberson 
73351b867e5SJeff Roberson static void
vm_object_backing_remove(vm_object_t object)73451b867e5SJeff Roberson vm_object_backing_remove(vm_object_t object)
73551b867e5SJeff Roberson {
73651b867e5SJeff Roberson 	vm_object_t backing_object;
73751b867e5SJeff Roberson 
73851b867e5SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(object);
73951b867e5SJeff Roberson 
74051b867e5SJeff Roberson 	backing_object = object->backing_object;
7414cf9f5d8SKonstantin Belousov 	if ((object->flags & OBJ_SHADOWLIST) != 0) {
74251b867e5SJeff Roberson 		VM_OBJECT_WLOCK(backing_object);
74351b867e5SJeff Roberson 		vm_object_backing_remove_locked(object);
74451b867e5SJeff Roberson 		VM_OBJECT_WUNLOCK(backing_object);
7454cf9f5d8SKonstantin Belousov 	} else {
74651b867e5SJeff Roberson 		object->backing_object = NULL;
7474cf9f5d8SKonstantin Belousov 		vm_object_sub_shadow(backing_object);
7484cf9f5d8SKonstantin Belousov 	}
74951b867e5SJeff Roberson }
75051b867e5SJeff Roberson 
75151b867e5SJeff Roberson static void
vm_object_backing_insert_locked(vm_object_t object,vm_object_t backing_object)75251b867e5SJeff Roberson vm_object_backing_insert_locked(vm_object_t object, vm_object_t backing_object)
75351b867e5SJeff Roberson {
75451b867e5SJeff Roberson 
75551b867e5SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(object);
75651b867e5SJeff Roberson 
7574cf9f5d8SKonstantin Belousov 	atomic_add_int(&backing_object->shadow_count, 1);
75851b867e5SJeff Roberson 	if ((backing_object->flags & OBJ_ANON) != 0) {
75951b867e5SJeff Roberson 		VM_OBJECT_ASSERT_WLOCKED(backing_object);
76051b867e5SJeff Roberson 		LIST_INSERT_HEAD(&backing_object->shadow_head, object,
76151b867e5SJeff Roberson 		    shadow_list);
762630f633fSMark Johnston 		vm_object_set_flag(object, OBJ_SHADOWLIST);
76351b867e5SJeff Roberson 	}
76451b867e5SJeff Roberson 	object->backing_object = backing_object;
76551b867e5SJeff Roberson }
76651b867e5SJeff Roberson 
76751b867e5SJeff Roberson static void
vm_object_backing_insert(vm_object_t object,vm_object_t backing_object)76851b867e5SJeff Roberson vm_object_backing_insert(vm_object_t object, vm_object_t backing_object)
76951b867e5SJeff Roberson {
77051b867e5SJeff Roberson 
77151b867e5SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(object);
77251b867e5SJeff Roberson 
77351b867e5SJeff Roberson 	if ((backing_object->flags & OBJ_ANON) != 0) {
77451b867e5SJeff Roberson 		VM_OBJECT_WLOCK(backing_object);
77551b867e5SJeff Roberson 		vm_object_backing_insert_locked(object, backing_object);
77651b867e5SJeff Roberson 		VM_OBJECT_WUNLOCK(backing_object);
7774cf9f5d8SKonstantin Belousov 	} else {
77851b867e5SJeff Roberson 		object->backing_object = backing_object;
7794cf9f5d8SKonstantin Belousov 		atomic_add_int(&backing_object->shadow_count, 1);
7804cf9f5d8SKonstantin Belousov 	}
78151b867e5SJeff Roberson }
78251b867e5SJeff Roberson 
78398087a06SJeff Roberson /*
78498087a06SJeff Roberson  * Insert an object into a backing_object's shadow list with an additional
78598087a06SJeff Roberson  * reference to the backing_object added.
78698087a06SJeff Roberson  */
78798087a06SJeff Roberson static void
vm_object_backing_insert_ref(vm_object_t object,vm_object_t backing_object)78898087a06SJeff Roberson vm_object_backing_insert_ref(vm_object_t object, vm_object_t backing_object)
78998087a06SJeff Roberson {
79098087a06SJeff Roberson 
79198087a06SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(object);
79298087a06SJeff Roberson 
79398087a06SJeff Roberson 	if ((backing_object->flags & OBJ_ANON) != 0) {
79498087a06SJeff Roberson 		VM_OBJECT_WLOCK(backing_object);
79598087a06SJeff Roberson 		KASSERT((backing_object->flags & OBJ_DEAD) == 0,
79698087a06SJeff Roberson 		    ("shadowing dead anonymous object"));
79798087a06SJeff Roberson 		vm_object_reference_locked(backing_object);
79898087a06SJeff Roberson 		vm_object_backing_insert_locked(object, backing_object);
79998087a06SJeff Roberson 		vm_object_clear_flag(backing_object, OBJ_ONEMAPPING);
80098087a06SJeff Roberson 		VM_OBJECT_WUNLOCK(backing_object);
80198087a06SJeff Roberson 	} else {
80298087a06SJeff Roberson 		vm_object_reference(backing_object);
8034cf9f5d8SKonstantin Belousov 		atomic_add_int(&backing_object->shadow_count, 1);
80498087a06SJeff Roberson 		object->backing_object = backing_object;
80598087a06SJeff Roberson 	}
80698087a06SJeff Roberson }
80798087a06SJeff Roberson 
80898087a06SJeff Roberson /*
80998087a06SJeff Roberson  * Transfer a backing reference from backing_object to object.
81098087a06SJeff Roberson  */
81198087a06SJeff Roberson static void
vm_object_backing_transfer(vm_object_t object,vm_object_t backing_object)81298087a06SJeff Roberson vm_object_backing_transfer(vm_object_t object, vm_object_t backing_object)
81398087a06SJeff Roberson {
81498087a06SJeff Roberson 	vm_object_t new_backing_object;
81598087a06SJeff Roberson 
81698087a06SJeff Roberson 	/*
81798087a06SJeff Roberson 	 * Note that the reference to backing_object->backing_object
81898087a06SJeff Roberson 	 * moves from within backing_object to within object.
81998087a06SJeff Roberson 	 */
82098087a06SJeff Roberson 	vm_object_backing_remove_locked(object);
82198087a06SJeff Roberson 	new_backing_object = backing_object->backing_object;
82298087a06SJeff Roberson 	if (new_backing_object == NULL)
82398087a06SJeff Roberson 		return;
82498087a06SJeff Roberson 	if ((new_backing_object->flags & OBJ_ANON) != 0) {
82598087a06SJeff Roberson 		VM_OBJECT_WLOCK(new_backing_object);
82698087a06SJeff Roberson 		vm_object_backing_remove_locked(backing_object);
82798087a06SJeff Roberson 		vm_object_backing_insert_locked(object, new_backing_object);
82898087a06SJeff Roberson 		VM_OBJECT_WUNLOCK(new_backing_object);
82998087a06SJeff Roberson 	} else {
8304cf9f5d8SKonstantin Belousov 		/*
8314cf9f5d8SKonstantin Belousov 		 * shadow_count for new_backing_object is left
8324cf9f5d8SKonstantin Belousov 		 * unchanged, its reference provided by backing_object
8334cf9f5d8SKonstantin Belousov 		 * is replaced by object.
8344cf9f5d8SKonstantin Belousov 		 */
83598087a06SJeff Roberson 		object->backing_object = new_backing_object;
83698087a06SJeff Roberson 		backing_object->backing_object = NULL;
83798087a06SJeff Roberson 	}
83898087a06SJeff Roberson }
83998087a06SJeff Roberson 
84098087a06SJeff Roberson /*
84198087a06SJeff Roberson  * Wait for a concurrent collapse to settle.
84298087a06SJeff Roberson  */
84398087a06SJeff Roberson static void
vm_object_collapse_wait(vm_object_t object)84498087a06SJeff Roberson vm_object_collapse_wait(vm_object_t object)
84598087a06SJeff Roberson {
84698087a06SJeff Roberson 
84798087a06SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(object);
84898087a06SJeff Roberson 
84998087a06SJeff Roberson 	while ((object->flags & OBJ_COLLAPSING) != 0) {
85098087a06SJeff Roberson 		vm_object_pip_wait(object, "vmcolwait");
85198087a06SJeff Roberson 		counter_u64_add(object_collapse_waits, 1);
85298087a06SJeff Roberson 	}
85398087a06SJeff Roberson }
85498087a06SJeff Roberson 
85598087a06SJeff Roberson /*
85698087a06SJeff Roberson  * Waits for a backing object to clear a pending collapse and returns
85798087a06SJeff Roberson  * it locked if it is an ANON object.
85898087a06SJeff Roberson  */
85998087a06SJeff Roberson static vm_object_t
vm_object_backing_collapse_wait(vm_object_t object)86098087a06SJeff Roberson vm_object_backing_collapse_wait(vm_object_t object)
86198087a06SJeff Roberson {
86298087a06SJeff Roberson 	vm_object_t backing_object;
86398087a06SJeff Roberson 
86498087a06SJeff Roberson 	VM_OBJECT_ASSERT_WLOCKED(object);
86598087a06SJeff Roberson 
86698087a06SJeff Roberson 	for (;;) {
86798087a06SJeff Roberson 		backing_object = object->backing_object;
86898087a06SJeff Roberson 		if (backing_object == NULL ||
86998087a06SJeff Roberson 		    (backing_object->flags & OBJ_ANON) == 0)
87098087a06SJeff Roberson 			return (NULL);
87198087a06SJeff Roberson 		VM_OBJECT_WLOCK(backing_object);
87298087a06SJeff Roberson 		if ((backing_object->flags & (OBJ_DEAD | OBJ_COLLAPSING)) == 0)
87398087a06SJeff Roberson 			break;
874cdd02f43SMark Johnston 		VM_OBJECT_WUNLOCK(object);
87598087a06SJeff Roberson 		vm_object_pip_sleep(backing_object, "vmbckwait");
87698087a06SJeff Roberson 		counter_u64_add(object_collapse_waits, 1);
87798087a06SJeff Roberson 		VM_OBJECT_WLOCK(object);
87898087a06SJeff Roberson 	}
87998087a06SJeff Roberson 	return (backing_object);
88098087a06SJeff Roberson }
88151b867e5SJeff Roberson 
8822ac78f0eSStephan Uphoff /*
883c3d743a6SDoug Moore  *	vm_object_terminate_single_page removes a pageable page from the object,
884c3d743a6SDoug Moore  *	and removes it from the paging queues and frees it, if it is not wired.
885c3d743a6SDoug Moore  *	It is invoked via callback from vm_object_terminate_pages.
8867bbdb843SRuslan Bukin  */
8877bbdb843SRuslan Bukin static void
vm_object_terminate_single_page(vm_page_t p,void * objectv)888c3d743a6SDoug Moore vm_object_terminate_single_page(vm_page_t p, void *objectv)
8897bbdb843SRuslan Bukin {
890c3d743a6SDoug Moore 	vm_object_t object __diagused = objectv;
8917bbdb843SRuslan Bukin 
8927bbdb843SRuslan Bukin 	vm_page_assert_unbusied(p);
893fee2a2faSMark Johnston 	KASSERT(p->object == object &&
894fee2a2faSMark Johnston 	    (p->ref_count & VPRC_OBJREF) != 0,
895c3d743a6SDoug Moore 	    ("%s: page %p is inconsistent", __func__, p));
8967bbdb843SRuslan Bukin 	p->object = NULL;
897fee2a2faSMark Johnston 	if (vm_page_drop(p, VPRC_OBJREF) == VPRC_OBJREF) {
8985fc34379SMark Johnston 		KASSERT((object->flags & OBJ_UNMANAGED) != 0 ||
8995fc34379SMark Johnston 		    vm_page_astate_load(p).queue != PQ_NONE,
9005fc34379SMark Johnston 		    ("%s: page %p does not belong to a queue", __func__, p));
9015cd29d0fSMark Johnston 		VM_CNT_INC(v_pfree);
9025cd29d0fSMark Johnston 		vm_page_free(p);
9034074d642SAlan Cox 	}
904fee2a2faSMark Johnston }
9052fcd1ff6SKonstantin Belousov 
9067bbdb843SRuslan Bukin /*
907c3d743a6SDoug Moore  *	vm_object_terminate_pages removes any remaining pageable pages
908c3d743a6SDoug Moore  *	from the object and resets the object to an empty state.
9097bbdb843SRuslan Bukin  */
910c3d743a6SDoug Moore static void
vm_object_terminate_pages(vm_object_t object)911c3d743a6SDoug Moore vm_object_terminate_pages(vm_object_t object)
912c3d743a6SDoug Moore {
913c3d743a6SDoug Moore 	VM_OBJECT_ASSERT_WLOCKED(object);
914c3d743a6SDoug Moore 
915c3d743a6SDoug Moore 	/*
916c3d743a6SDoug Moore 	 * If the object contained any pages, then reset it to an empty state.
917c3d743a6SDoug Moore 	 * Rather than incrementally removing each page from the object, the
918c3d743a6SDoug Moore 	 * page and object are reset to any empty state.
919c3d743a6SDoug Moore 	 */
920c3d743a6SDoug Moore 	if (object->resident_page_count == 0)
921c3d743a6SDoug Moore 		return;
922c3d743a6SDoug Moore 
923c3d743a6SDoug Moore 	vm_radix_reclaim_callback(&object->rtree,
924c3d743a6SDoug Moore 	    vm_object_terminate_single_page, object);
9257bbdb843SRuslan Bukin 	TAILQ_INIT(&object->memq);
9267bbdb843SRuslan Bukin 	object->resident_page_count = 0;
9277bbdb843SRuslan Bukin 	if (object->type == OBJT_VNODE)
9287bbdb843SRuslan Bukin 		vdrop(object->handle);
9297bbdb843SRuslan Bukin }
9307bbdb843SRuslan Bukin 
9317bbdb843SRuslan Bukin /*
932df8bae1dSRodney W. Grimes  *	vm_object_terminate actually destroys the specified object, freeing
933df8bae1dSRodney W. Grimes  *	up all previously used resources.
934df8bae1dSRodney W. Grimes  *
935df8bae1dSRodney W. Grimes  *	The object must be locked.
9361c7c3c6aSMatthew Dillon  *	This routine may block.
937df8bae1dSRodney W. Grimes  */
93895e5e988SJohn Dyson void
vm_object_terminate(vm_object_t object)9391b40f8c0SMatthew Dillon vm_object_terminate(vm_object_t object)
940df8bae1dSRodney W. Grimes {
94198087a06SJeff Roberson 
94289f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
943783a68aaSKonstantin Belousov 	KASSERT((object->flags & OBJ_DEAD) != 0,
944783a68aaSKonstantin Belousov 	    ("terminating non-dead obj %p", object));
94598087a06SJeff Roberson 	KASSERT((object->flags & OBJ_COLLAPSING) == 0,
94698087a06SJeff Roberson 	    ("terminating collapsing obj %p", object));
94798087a06SJeff Roberson 	KASSERT(object->backing_object == NULL,
94898087a06SJeff Roberson 	    ("terminating shadow obj %p", object));
949bef608bdSJohn Dyson 
950cf27e0d1SJeff Roberson 	/*
951ffae7ea9SKonstantin Belousov 	 * Wait for the pageout daemon and other current users to be
952ffae7ea9SKonstantin Belousov 	 * done with the object.  Note that new paging_in_progress
953ffae7ea9SKonstantin Belousov 	 * users can come after this wait, but they must check
954ffae7ea9SKonstantin Belousov 	 * OBJ_DEAD flag set (without unlocking the object), and avoid
955ffae7ea9SKonstantin Belousov 	 * the object being terminated.
956cf27e0d1SJeff Roberson 	 */
957cf27e0d1SJeff Roberson 	vm_object_pip_wait(object, "objtrm");
958cf27e0d1SJeff Roberson 
959971dd342SAlfred Perlstein 	KASSERT(object->ref_count == 0,
960971dd342SAlfred Perlstein 	    ("vm_object_terminate: object with references, ref_count=%d",
961971dd342SAlfred Perlstein 	    object->ref_count));
962996c772fSJohn Dyson 
9637bbdb843SRuslan Bukin 	if ((object->flags & OBJ_PG_DTOR) == 0)
9647bbdb843SRuslan Bukin 		vm_object_terminate_pages(object);
965bef608bdSJohn Dyson 
966f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
967f8a47341SAlan Cox 	if (__predict_false(!LIST_EMPTY(&object->rvq)))
968f8a47341SAlan Cox 		vm_reserv_break_all(object);
969f8a47341SAlan Cox #endif
9707bfda801SAlan Cox 
9710cb2610eSMark Johnston 	KASSERT(object->cred == NULL || (object->flags & OBJ_SWAP) != 0,
972e735691bSJohn Baldwin 	    ("%s: non-swap obj %p has cred", __func__, object));
973e735691bSJohn Baldwin 
9742d8acc0fSJohn Dyson 	/*
9759fcfb650SDavid Greenman 	 * Let the pager know object is dead.
9769fcfb650SDavid Greenman 	 */
9779fcfb650SDavid Greenman 	vm_pager_deallocate(object);
97889f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
9799fcfb650SDavid Greenman 
9802ac78f0eSStephan Uphoff 	vm_object_destroy(object);
98147221757SJohn Dyson }
982df8bae1dSRodney W. Grimes 
983edf93b25SAlan Cox /*
984edf93b25SAlan Cox  * Make the page read-only so that we can clear the object flags.  However, if
985edf93b25SAlan Cox  * this is a nosync mmap then the object is likely to stay dirty so do not
986edf93b25SAlan Cox  * mess with the page and do not clear the object flags.  Returns TRUE if the
987edf93b25SAlan Cox  * page should be flushed, and FALSE otherwise.
988edf93b25SAlan Cox  */
9893280870dSKonstantin Belousov static boolean_t
vm_object_page_remove_write(vm_page_t p,int flags,boolean_t * allclean)99067d0e293SJeff Roberson vm_object_page_remove_write(vm_page_t p, int flags, boolean_t *allclean)
9913280870dSKonstantin Belousov {
9923280870dSKonstantin Belousov 
993fff5403fSJeff Roberson 	vm_page_assert_busied(p);
994fff5403fSJeff Roberson 
9953280870dSKonstantin Belousov 	/*
9963280870dSKonstantin Belousov 	 * If we have been asked to skip nosync pages and this is a
9973280870dSKonstantin Belousov 	 * nosync page, skip it.  Note that the object flags were not
9983280870dSKonstantin Belousov 	 * cleared in this case so we do not have to set them.
9993280870dSKonstantin Belousov 	 */
10005cff1f4dSMark Johnston 	if ((flags & OBJPC_NOSYNC) != 0 && (p->a.flags & PGA_NOSYNC) != 0) {
100167d0e293SJeff Roberson 		*allclean = FALSE;
10023280870dSKonstantin Belousov 		return (FALSE);
10033280870dSKonstantin Belousov 	} else {
10043280870dSKonstantin Belousov 		pmap_remove_write(p);
10053280870dSKonstantin Belousov 		return (p->dirty != 0);
10063280870dSKonstantin Belousov 	}
10073280870dSKonstantin Belousov }
10083280870dSKonstantin Belousov 
1009df8bae1dSRodney W. Grimes /*
1010df8bae1dSRodney W. Grimes  *	vm_object_page_clean
1011df8bae1dSRodney W. Grimes  *
10124f79d873SMatthew Dillon  *	Clean all dirty pages in the specified range of object.  Leaves page
10134f79d873SMatthew Dillon  * 	on whatever queue it is currently on.   If NOSYNC is set then do not
1014fff5403fSJeff Roberson  *	write out pages with PGA_NOSYNC set (originally comes from MAP_NOSYNC),
10154f79d873SMatthew Dillon  *	leaving the object dirty.
101626f9a767SRodney W. Grimes  *
10178d34a3bfSKonstantin Belousov  *	For swap objects backing tmpfs regular files, do not flush anything,
10188d34a3bfSKonstantin Belousov  *	but remove write protection on the mapped pages to update mtime through
10198d34a3bfSKonstantin Belousov  *	mmaped writes.
10208d34a3bfSKonstantin Belousov  *
102143b7990eSMatthew Dillon  *	When stuffing pages asynchronously, allow clustering.  XXX we need a
102243b7990eSMatthew Dillon  *	synchronous clustering mode implementation.
102343b7990eSMatthew Dillon  *
102426f9a767SRodney W. Grimes  *	Odd semantics: if start == end, we clean everything.
102526f9a767SRodney W. Grimes  *
102626f9a767SRodney W. Grimes  *	The object must be locked.
1027126d6082SKonstantin Belousov  *
1028126d6082SKonstantin Belousov  *	Returns FALSE if some page from the range was not written, as
1029126d6082SKonstantin Belousov  *	reported by the pager, and TRUE otherwise.
103026f9a767SRodney W. Grimes  */
1031126d6082SKonstantin Belousov boolean_t
vm_object_page_clean(vm_object_t object,vm_ooffset_t start,vm_ooffset_t end,int flags)103217f3095dSAlan Cox vm_object_page_clean(vm_object_t object, vm_ooffset_t start, vm_ooffset_t end,
1033e239bb97SKonstantin Belousov     int flags)
1034f6b04d2bSDavid Greenman {
1035e239bb97SKonstantin Belousov 	vm_page_t np, p;
103617f3095dSAlan Cox 	vm_pindex_t pi, tend, tstart;
1037126d6082SKonstantin Belousov 	int curgeneration, n, pagerflags;
103867d0e293SJeff Roberson 	boolean_t eio, res, allclean;
1039f6b04d2bSDavid Greenman 
104089f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
1041e5f299ffSKonstantin Belousov 
10428d34a3bfSKonstantin Belousov 	if (!vm_object_mightbedirty(object) || object->resident_page_count == 0)
1043126d6082SKonstantin Belousov 		return (TRUE);
1044f6b04d2bSDavid Greenman 
1045e239bb97SKonstantin Belousov 	pagerflags = (flags & (OBJPC_SYNC | OBJPC_INVAL)) != 0 ?
1046e239bb97SKonstantin Belousov 	    VM_PAGER_PUT_SYNC : VM_PAGER_CLUSTER_OK;
1047e239bb97SKonstantin Belousov 	pagerflags |= (flags & OBJPC_INVAL) != 0 ? VM_PAGER_PUT_INVAL : 0;
1048e239bb97SKonstantin Belousov 
104917f3095dSAlan Cox 	tstart = OFF_TO_IDX(start);
105017f3095dSAlan Cox 	tend = (end == 0) ? object->size : OFF_TO_IDX(end + PAGE_MASK);
105167d0e293SJeff Roberson 	allclean = tstart == 0 && tend >= object->size;
1052126d6082SKonstantin Belousov 	res = TRUE;
1053f6b04d2bSDavid Greenman 
1054bd7e5f99SJohn Dyson rescan:
10552d8acc0fSJohn Dyson 	curgeneration = object->generation;
10562d8acc0fSJohn Dyson 
105717f3095dSAlan Cox 	for (p = vm_page_find_least(object, tstart); p != NULL; p = np) {
1058bd7e5f99SJohn Dyson 		pi = p->pindex;
1059e239bb97SKonstantin Belousov 		if (pi >= tend)
1060e239bb97SKonstantin Belousov 			break;
1061e239bb97SKonstantin Belousov 		np = TAILQ_NEXT(p, listq);
10620012f373SJeff Roberson 		if (vm_page_none_valid(p))
1063aef922f5SJohn Dyson 			continue;
106463e97555SJeff Roberson 		if (vm_page_busy_acquire(p, VM_ALLOC_WAITFAIL) == 0) {
106567d0e293SJeff Roberson 			if (object->generation != curgeneration &&
106667d0e293SJeff Roberson 			    (flags & OBJPC_SYNC) != 0)
1067e239bb97SKonstantin Belousov 				goto rescan;
1068780636b7SKonstantin Belousov 			np = vm_page_find_least(object, pi);
1069780636b7SKonstantin Belousov 			continue;
1070f6b04d2bSDavid Greenman 		}
107167d0e293SJeff Roberson 		if (!vm_object_page_remove_write(p, flags, &allclean)) {
107263e97555SJeff Roberson 			vm_page_xunbusy(p);
1073bd7e5f99SJohn Dyson 			continue;
107463e97555SJeff Roberson 		}
10758d34a3bfSKonstantin Belousov 		if (object->type == OBJT_VNODE) {
10763280870dSKonstantin Belousov 			n = vm_object_page_collect_flush(object, p, pagerflags,
107767d0e293SJeff Roberson 			    flags, &allclean, &eio);
1078126d6082SKonstantin Belousov 			if (eio) {
1079126d6082SKonstantin Belousov 				res = FALSE;
108067d0e293SJeff Roberson 				allclean = FALSE;
1081126d6082SKonstantin Belousov 			}
108267d0e293SJeff Roberson 			if (object->generation != curgeneration &&
108367d0e293SJeff Roberson 			    (flags & OBJPC_SYNC) != 0)
1084b9b7a4beSMatthew Dillon 				goto rescan;
1085031ec8c1SKonstantin Belousov 
1086031ec8c1SKonstantin Belousov 			/*
1087031ec8c1SKonstantin Belousov 			 * If the VOP_PUTPAGES() did a truncated write, so
1088031ec8c1SKonstantin Belousov 			 * that even the first page of the run is not fully
1089031ec8c1SKonstantin Belousov 			 * written, vm_pageout_flush() returns 0 as the run
1090031ec8c1SKonstantin Belousov 			 * length.  Since the condition that caused truncated
1091031ec8c1SKonstantin Belousov 			 * write may be permanent, e.g. exhausted free space,
1092031ec8c1SKonstantin Belousov 			 * accepting n == 0 would cause an infinite loop.
1093031ec8c1SKonstantin Belousov 			 *
1094031ec8c1SKonstantin Belousov 			 * Forwarding the iterator leaves the unwritten page
1095031ec8c1SKonstantin Belousov 			 * behind, but there is not much we can do there if
1096031ec8c1SKonstantin Belousov 			 * filesystem refuses to write it.
1097031ec8c1SKonstantin Belousov 			 */
1098126d6082SKonstantin Belousov 			if (n == 0) {
1099031ec8c1SKonstantin Belousov 				n = 1;
110067d0e293SJeff Roberson 				allclean = FALSE;
1101126d6082SKonstantin Belousov 			}
11028d34a3bfSKonstantin Belousov 		} else {
11038d34a3bfSKonstantin Belousov 			n = 1;
11048d34a3bfSKonstantin Belousov 			vm_page_xunbusy(p);
11058d34a3bfSKonstantin Belousov 		}
1106e239bb97SKonstantin Belousov 		np = vm_page_find_least(object, pi + n);
1107b9b7a4beSMatthew Dillon 	}
1108b9b7a4beSMatthew Dillon #if 0
1109e239bb97SKonstantin Belousov 	VOP_FSYNC(vp, (pagerflags & VM_PAGER_PUT_SYNC) ? MNT_WAIT : 0);
1110b9b7a4beSMatthew Dillon #endif
1111b9b7a4beSMatthew Dillon 
11128d34a3bfSKonstantin Belousov 	/*
11138d34a3bfSKonstantin Belousov 	 * Leave updating cleangeneration for tmpfs objects to tmpfs
11148d34a3bfSKonstantin Belousov 	 * scan.  It needs to update mtime, which happens for other
11158d34a3bfSKonstantin Belousov 	 * filesystems during page writeouts.
11168d34a3bfSKonstantin Belousov 	 */
11178d34a3bfSKonstantin Belousov 	if (allclean && object->type == OBJT_VNODE)
111867d0e293SJeff Roberson 		object->cleangeneration = curgeneration;
1119126d6082SKonstantin Belousov 	return (res);
1120b9b7a4beSMatthew Dillon }
1121b9b7a4beSMatthew Dillon 
1122b9b7a4beSMatthew Dillon 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)11233280870dSKonstantin Belousov vm_object_page_collect_flush(vm_object_t object, vm_page_t p, int pagerflags,
112467d0e293SJeff Roberson     int flags, boolean_t *allclean, boolean_t *eio)
1125b9b7a4beSMatthew Dillon {
11266d86bdf1SDoug Moore 	vm_page_t ma[2 * vm_pageout_page_count - 1], tp;
11276d86bdf1SDoug Moore 	int base, count, runlen;
1128b9b7a4beSMatthew Dillon 
11297bec141bSKip Macy 	vm_page_lock_assert(p, MA_NOTOWNED);
113063e97555SJeff Roberson 	vm_page_assert_xbusied(p);
113189f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
11326d86bdf1SDoug Moore 	base = nitems(ma) / 2;
11336d86bdf1SDoug Moore 	ma[base] = p;
11344113ea34SDoug Moore 	for (count = 1, tp = p; count < vm_pageout_page_count; count++) {
11353157c503SKonstantin Belousov 		tp = vm_page_next(tp);
113663e97555SJeff Roberson 		if (tp == NULL || vm_page_tryxbusy(tp) == 0)
1137bd7e5f99SJohn Dyson 			break;
113867d0e293SJeff Roberson 		if (!vm_object_page_remove_write(tp, flags, allclean)) {
113963e97555SJeff Roberson 			vm_page_xunbusy(tp);
1140bd7e5f99SJohn Dyson 			break;
1141bd7e5f99SJohn Dyson 		}
11426d86bdf1SDoug Moore 		ma[base + count] = tp;
114363e97555SJeff Roberson 	}
1144aef922f5SJohn Dyson 
11456d86bdf1SDoug Moore 	for (tp = p; count < vm_pageout_page_count; count++) {
11464113ea34SDoug Moore 		tp = vm_page_prev(tp);
114763e97555SJeff Roberson 		if (tp == NULL || vm_page_tryxbusy(tp) == 0)
1148bd7e5f99SJohn Dyson 			break;
114967d0e293SJeff Roberson 		if (!vm_object_page_remove_write(tp, flags, allclean)) {
115063e97555SJeff Roberson 			vm_page_xunbusy(tp);
1151bd7e5f99SJohn Dyson 			break;
115263e97555SJeff Roberson 		}
11536d86bdf1SDoug Moore 		ma[--base] = tp;
1154bd7e5f99SJohn Dyson 	}
1155bd7e5f99SJohn Dyson 
11566d86bdf1SDoug Moore 	vm_pageout_flush(&ma[base], count, pagerflags, nitems(ma) / 2 - base,
11576d86bdf1SDoug Moore 	    &runlen, eio);
11581e8a675cSKonstantin Belousov 	return (runlen);
115926f9a767SRodney W. Grimes }
1160df8bae1dSRodney W. Grimes 
11611efb74fbSJohn Dyson /*
1162950f8459SAlan Cox  * Note that there is absolutely no sense in writing out
1163950f8459SAlan Cox  * anonymous objects, so we track down the vnode object
1164950f8459SAlan Cox  * to write out.
1165950f8459SAlan Cox  * We invalidate (remove) all pages from the address space
1166950f8459SAlan Cox  * for semantic correctness.
1167950f8459SAlan Cox  *
11686bbee8e2SAlan Cox  * If the backing object is a device object with unmanaged pages, then any
11696bbee8e2SAlan Cox  * mappings to the specified range of pages must be removed before this
11706bbee8e2SAlan Cox  * function is called.
11716bbee8e2SAlan Cox  *
1172950f8459SAlan Cox  * Note: certain anonymous maps, such as MAP_NOSYNC maps,
1173950f8459SAlan Cox  * may start out with a NULL object.
1174950f8459SAlan Cox  */
1175126d6082SKonstantin Belousov boolean_t
vm_object_sync(vm_object_t object,vm_ooffset_t offset,vm_size_t size,boolean_t syncio,boolean_t invalidate)1176950f8459SAlan Cox vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size,
1177950f8459SAlan Cox     boolean_t syncio, boolean_t invalidate)
1178950f8459SAlan Cox {
1179950f8459SAlan Cox 	vm_object_t backing_object;
1180950f8459SAlan Cox 	struct vnode *vp;
11813b582b4eSTor Egge 	struct mount *mp;
1182126d6082SKonstantin Belousov 	int error, flags, fsync_after;
1183126d6082SKonstantin Belousov 	boolean_t res;
1184950f8459SAlan Cox 
1185950f8459SAlan Cox 	if (object == NULL)
1186126d6082SKonstantin Belousov 		return (TRUE);
1187126d6082SKonstantin Belousov 	res = TRUE;
1188126d6082SKonstantin Belousov 	error = 0;
118989f6b863SAttilio Rao 	VM_OBJECT_WLOCK(object);
1190950f8459SAlan Cox 	while ((backing_object = object->backing_object) != NULL) {
119189f6b863SAttilio Rao 		VM_OBJECT_WLOCK(backing_object);
119256e0670fSAlan Cox 		offset += object->backing_object_offset;
119389f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
1194950f8459SAlan Cox 		object = backing_object;
1195950f8459SAlan Cox 		if (object->size < OFF_TO_IDX(offset + size))
1196950f8459SAlan Cox 			size = IDX_TO_OFF(object->size) - offset;
1197950f8459SAlan Cox 	}
1198950f8459SAlan Cox 	/*
1199950f8459SAlan Cox 	 * Flush pages if writing is allowed, invalidate them
1200950f8459SAlan Cox 	 * if invalidation requested.  Pages undergoing I/O
1201950f8459SAlan Cox 	 * will be ignored by vm_object_page_remove().
1202950f8459SAlan Cox 	 *
1203950f8459SAlan Cox 	 * We cannot lock the vnode and then wait for paging
1204950f8459SAlan Cox 	 * to complete without deadlocking against vm_fault.
1205950f8459SAlan Cox 	 * Instead we simply call vm_object_page_remove() and
1206950f8459SAlan Cox 	 * allow it to block internally on a page-by-page
1207950f8459SAlan Cox 	 * basis when it encounters pages undergoing async
1208950f8459SAlan Cox 	 * I/O.
1209950f8459SAlan Cox 	 */
1210950f8459SAlan Cox 	if (object->type == OBJT_VNODE &&
121167d0e293SJeff Roberson 	    vm_object_mightbedirty(object) != 0 &&
12125bf94937SKonstantin Belousov 	    ((vp = object->handle)->v_vflag & VV_NOSYNC) == 0) {
121389f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
12143b582b4eSTor Egge 		(void)vn_start_write(vp, &mp, V_WAIT);
1215cb05b60aSAttilio Rao 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
121675ff604aSKonstantin Belousov 		if (syncio && !invalidate && offset == 0 &&
1217d1780e8dSKonstantin Belousov 		    atop(size) == object->size) {
121875ff604aSKonstantin Belousov 			/*
121975ff604aSKonstantin Belousov 			 * If syncing the whole mapping of the file,
122075ff604aSKonstantin Belousov 			 * it is faster to schedule all the writes in
122175ff604aSKonstantin Belousov 			 * async mode, also allowing the clustering,
122275ff604aSKonstantin Belousov 			 * and then wait for i/o to complete.
122375ff604aSKonstantin Belousov 			 */
122475ff604aSKonstantin Belousov 			flags = 0;
122575ff604aSKonstantin Belousov 			fsync_after = TRUE;
122675ff604aSKonstantin Belousov 		} else {
1227950f8459SAlan Cox 			flags = (syncio || invalidate) ? OBJPC_SYNC : 0;
122875ff604aSKonstantin Belousov 			flags |= invalidate ? (OBJPC_SYNC | OBJPC_INVAL) : 0;
122975ff604aSKonstantin Belousov 			fsync_after = FALSE;
123075ff604aSKonstantin Belousov 		}
123189f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
1232126d6082SKonstantin Belousov 		res = vm_object_page_clean(object, offset, offset + size,
1233126d6082SKonstantin Belousov 		    flags);
123489f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(object);
12356189672eSKonstantin Belousov 		if (fsync_after) {
12366189672eSKonstantin Belousov 			for (;;) {
1237126d6082SKonstantin Belousov 				error = VOP_FSYNC(vp, MNT_WAIT, curthread);
12386189672eSKonstantin Belousov 				if (error != ERELOOKUP)
12396189672eSKonstantin Belousov 					break;
12406189672eSKonstantin Belousov 
12416189672eSKonstantin Belousov 				/*
12426189672eSKonstantin Belousov 				 * Allow SU/bufdaemon to handle more
12436189672eSKonstantin Belousov 				 * dependencies in the meantime.
12446189672eSKonstantin Belousov 				 */
12456189672eSKonstantin Belousov 				VOP_UNLOCK(vp);
12466189672eSKonstantin Belousov 				vn_finished_write(mp);
12476189672eSKonstantin Belousov 
12486189672eSKonstantin Belousov 				(void)vn_start_write(vp, &mp, V_WAIT);
12496189672eSKonstantin Belousov 				vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
12506189672eSKonstantin Belousov 			}
12516189672eSKonstantin Belousov 		}
1252b249ce48SMateusz Guzik 		VOP_UNLOCK(vp);
12533b582b4eSTor Egge 		vn_finished_write(mp);
1254126d6082SKonstantin Belousov 		if (error != 0)
1255126d6082SKonstantin Belousov 			res = FALSE;
125689f6b863SAttilio Rao 		VM_OBJECT_WLOCK(object);
1257950f8459SAlan Cox 	}
1258950f8459SAlan Cox 	if ((object->type == OBJT_VNODE ||
1259950f8459SAlan Cox 	     object->type == OBJT_DEVICE) && invalidate) {
12606bbee8e2SAlan Cox 		if (object->type == OBJT_DEVICE)
12616bbee8e2SAlan Cox 			/*
12626bbee8e2SAlan Cox 			 * The option OBJPR_NOTMAPPED must be passed here
12636bbee8e2SAlan Cox 			 * because vm_object_page_remove() cannot remove
12646bbee8e2SAlan Cox 			 * unmanaged mappings.
12656bbee8e2SAlan Cox 			 */
12666bbee8e2SAlan Cox 			flags = OBJPR_NOTMAPPED;
12676bbee8e2SAlan Cox 		else if (old_msync)
12686195b24aSKonstantin Belousov 			flags = 0;
12696bbee8e2SAlan Cox 		else
12706195b24aSKonstantin Belousov 			flags = OBJPR_CLEANONLY;
12716bbee8e2SAlan Cox 		vm_object_page_remove(object, OFF_TO_IDX(offset),
12726bbee8e2SAlan Cox 		    OFF_TO_IDX(offset + size + PAGE_MASK), flags);
1273950f8459SAlan Cox 	}
127489f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
1275126d6082SKonstantin Belousov 	return (res);
1276950f8459SAlan Cox }
1277950f8459SAlan Cox 
1278950f8459SAlan Cox /*
1279aa3650eaSMark Johnston  * Determine whether the given advice can be applied to the object.  Advice is
1280aa3650eaSMark Johnston  * not applied to unmanaged pages since they never belong to page queues, and
1281aa3650eaSMark Johnston  * since MADV_FREE is destructive, it can apply only to anonymous pages that
1282aa3650eaSMark Johnston  * have been mapped at most once.
1283aa3650eaSMark Johnston  */
1284aa3650eaSMark Johnston static bool
vm_object_advice_applies(vm_object_t object,int advice)1285aa3650eaSMark Johnston vm_object_advice_applies(vm_object_t object, int advice)
1286aa3650eaSMark Johnston {
1287aa3650eaSMark Johnston 
1288aa3650eaSMark Johnston 	if ((object->flags & OBJ_UNMANAGED) != 0)
1289aa3650eaSMark Johnston 		return (false);
1290aa3650eaSMark Johnston 	if (advice != MADV_FREE)
1291aa3650eaSMark Johnston 		return (true);
129263967687SJeff Roberson 	return ((object->flags & (OBJ_ONEMAPPING | OBJ_ANON)) ==
129363967687SJeff Roberson 	    (OBJ_ONEMAPPING | OBJ_ANON));
1294aa3650eaSMark Johnston }
1295aa3650eaSMark Johnston 
1296aa3650eaSMark Johnston static void
vm_object_madvise_freespace(vm_object_t object,int advice,vm_pindex_t pindex,vm_size_t size)1297aa3650eaSMark Johnston vm_object_madvise_freespace(vm_object_t object, int advice, vm_pindex_t pindex,
1298aa3650eaSMark Johnston     vm_size_t size)
1299aa3650eaSMark Johnston {
1300aa3650eaSMark Johnston 
13011390a5cbSKonstantin Belousov 	if (advice == MADV_FREE)
13021390a5cbSKonstantin Belousov 		vm_pager_freespace(object, pindex, size);
1303aa3650eaSMark Johnston }
1304aa3650eaSMark Johnston 
1305aa3650eaSMark Johnston /*
1306867a482dSJohn Dyson  *	vm_object_madvise:
1307867a482dSJohn Dyson  *
1308867a482dSJohn Dyson  *	Implements the madvise function at the object/page level.
13091c7c3c6aSMatthew Dillon  *
1310193b9358SAlan Cox  *	MADV_WILLNEED	(any object)
1311193b9358SAlan Cox  *
1312193b9358SAlan Cox  *	    Activate the specified pages if they are resident.
1313193b9358SAlan Cox  *
1314193b9358SAlan Cox  *	MADV_DONTNEED	(any object)
1315193b9358SAlan Cox  *
1316193b9358SAlan Cox  *	    Deactivate the specified pages if they are resident.
1317193b9358SAlan Cox  *
13180cb2610eSMark Johnston  *	MADV_FREE	(OBJT_SWAP objects, OBJ_ONEMAPPING only)
1319193b9358SAlan Cox  *
1320193b9358SAlan Cox  *	    Deactivate and clean the specified pages if they are
1321193b9358SAlan Cox  *	    resident.  This permits the process to reuse the pages
1322193b9358SAlan Cox  *	    without faulting or the kernel to reclaim the pages
1323193b9358SAlan Cox  *	    without I/O.
1324867a482dSJohn Dyson  */
1325867a482dSJohn Dyson void
vm_object_madvise(vm_object_t object,vm_pindex_t pindex,vm_pindex_t end,int advice)132692a59946SJohn Baldwin vm_object_madvise(vm_object_t object, vm_pindex_t pindex, vm_pindex_t end,
1327c2655a40SMark Johnston     int advice)
1328867a482dSJohn Dyson {
132992a59946SJohn Baldwin 	vm_pindex_t tpindex;
133034567de7SAlan Cox 	vm_object_t backing_object, tobject;
1331aa3650eaSMark Johnston 	vm_page_t m, tm;
1332867a482dSJohn Dyson 
1333867a482dSJohn Dyson 	if (object == NULL)
1334867a482dSJohn Dyson 		return;
1335c2655a40SMark Johnston 
13366e20a165SJohn Dyson relookup:
1337aa3650eaSMark Johnston 	VM_OBJECT_WLOCK(object);
1338aa3650eaSMark Johnston 	if (!vm_object_advice_applies(object, advice)) {
1339aa3650eaSMark Johnston 		VM_OBJECT_WUNLOCK(object);
1340aa3650eaSMark Johnston 		return;
13416e20a165SJohn Dyson 	}
1342aa3650eaSMark Johnston 	for (m = vm_page_find_least(object, pindex); pindex < end; pindex++) {
1343aa3650eaSMark Johnston 		tobject = object;
1344c2655a40SMark Johnston 
13451ce137beSMatthew Dillon 		/*
1346aa3650eaSMark Johnston 		 * If the next page isn't resident in the top-level object, we
1347aa3650eaSMark Johnston 		 * need to search the shadow chain.  When applying MADV_FREE, we
1348aa3650eaSMark Johnston 		 * take care to release any swap space used to store
1349aa3650eaSMark Johnston 		 * non-resident pages.
1350aa3650eaSMark Johnston 		 */
1351aa3650eaSMark Johnston 		if (m == NULL || pindex < m->pindex) {
1352aa3650eaSMark Johnston 			/*
1353aa3650eaSMark Johnston 			 * Optimize a common case: if the top-level object has
1354aa3650eaSMark Johnston 			 * no backing object, we can skip over the non-resident
1355aa3650eaSMark Johnston 			 * range in constant time.
13561ce137beSMatthew Dillon 			 */
1357c2655a40SMark Johnston 			if (object->backing_object == NULL) {
1358c2655a40SMark Johnston 				tpindex = (m != NULL && m->pindex < end) ?
1359c2655a40SMark Johnston 				    m->pindex : end;
1360aa3650eaSMark Johnston 				vm_object_madvise_freespace(object, advice,
1361aa3650eaSMark Johnston 				    pindex, tpindex - pindex);
1362c2655a40SMark Johnston 				if ((pindex = tpindex) == end)
1363c2655a40SMark Johnston 					break;
1364aa3650eaSMark Johnston 				goto next_page;
1365aa3650eaSMark Johnston 			}
1366aa3650eaSMark Johnston 
1367aa3650eaSMark Johnston 			tpindex = pindex;
1368aa3650eaSMark Johnston 			do {
1369aa3650eaSMark Johnston 				vm_object_madvise_freespace(tobject, advice,
1370aa3650eaSMark Johnston 				    tpindex, 1);
13711ce137beSMatthew Dillon 				/*
1372aa3650eaSMark Johnston 				 * Prepare to search the next object in the
1373aa3650eaSMark Johnston 				 * chain.
13741ce137beSMatthew Dillon 				 */
137534567de7SAlan Cox 				backing_object = tobject->backing_object;
137634567de7SAlan Cox 				if (backing_object == NULL)
1377aa3650eaSMark Johnston 					goto next_pindex;
137889f6b863SAttilio Rao 				VM_OBJECT_WLOCK(backing_object);
1379aa3650eaSMark Johnston 				tpindex +=
1380aa3650eaSMark Johnston 				    OFF_TO_IDX(tobject->backing_object_offset);
13819b98b796SAlan Cox 				if (tobject != object)
138289f6b863SAttilio Rao 					VM_OBJECT_WUNLOCK(tobject);
138334567de7SAlan Cox 				tobject = backing_object;
1384aa3650eaSMark Johnston 				if (!vm_object_advice_applies(tobject, advice))
1385aa3650eaSMark Johnston 					goto next_pindex;
1386aa3650eaSMark Johnston 			} while ((tm = vm_page_lookup(tobject, tpindex)) ==
1387aa3650eaSMark Johnston 			    NULL);
1388aa3650eaSMark Johnston 		} else {
1389aa3650eaSMark Johnston next_page:
1390aa3650eaSMark Johnston 			tm = m;
1391aa3650eaSMark Johnston 			m = TAILQ_NEXT(m, listq);
1392c2655a40SMark Johnston 		}
1393c2655a40SMark Johnston 
1394867a482dSJohn Dyson 		/*
13950012f373SJeff Roberson 		 * If the page is not in a normal state, skip it.  The page
13960012f373SJeff Roberson 		 * can not be invalidated while the object lock is held.
1397867a482dSJohn Dyson 		 */
13980012f373SJeff Roberson 		if (!vm_page_all_valid(tm) || vm_page_wired(tm))
1399aa3650eaSMark Johnston 			goto next_pindex;
1400aa3650eaSMark Johnston 		KASSERT((tm->flags & PG_FICTITIOUS) == 0,
1401aa3650eaSMark Johnston 		    ("vm_object_madvise: page %p is fictitious", tm));
1402aa3650eaSMark Johnston 		KASSERT((tm->oflags & VPO_UNMANAGED) == 0,
1403aa3650eaSMark Johnston 		    ("vm_object_madvise: page %p is not managed", tm));
140463e97555SJeff Roberson 		if (vm_page_tryxbusy(tm) == 0) {
1405aa3650eaSMark Johnston 			if (object != tobject)
1406aa3650eaSMark Johnston 				VM_OBJECT_WUNLOCK(object);
1407c2655a40SMark Johnston 			if (advice == MADV_WILLNEED) {
1408b11b56b5SAlan Cox 				/*
1409b11b56b5SAlan Cox 				 * Reference the page before unlocking and
1410b11b56b5SAlan Cox 				 * sleeping so that the page daemon is less
1411b11b56b5SAlan Cox 				 * likely to reclaim it.
1412b11b56b5SAlan Cox 				 */
1413aa3650eaSMark Johnston 				vm_page_aflag_set(tm, PGA_REFERENCED);
1414567e51e1SAlan Cox 			}
141587b64663SMark Johnston 			if (!vm_page_busy_sleep(tm, "madvpo", 0))
141687b64663SMark Johnston 				VM_OBJECT_WUNLOCK(tobject);
14176e20a165SJohn Dyson   			goto relookup;
141834567de7SAlan Cox 		}
1419aa3650eaSMark Johnston 		vm_page_advise(tm, advice);
142063e97555SJeff Roberson 		vm_page_xunbusy(tm);
1421aa3650eaSMark Johnston 		vm_object_madvise_freespace(tobject, advice, tm->pindex, 1);
1422aa3650eaSMark Johnston next_pindex:
14239b98b796SAlan Cox 		if (tobject != object)
142489f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(tobject);
1425867a482dSJohn Dyson 	}
142689f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(object);
1427867a482dSJohn Dyson }
1428867a482dSJohn Dyson 
1429867a482dSJohn Dyson /*
1430df8bae1dSRodney W. Grimes  *	vm_object_shadow:
1431df8bae1dSRodney W. Grimes  *
1432df8bae1dSRodney W. Grimes  *	Create a new object which is backed by the
1433df8bae1dSRodney W. Grimes  *	specified existing object range.  The source
1434df8bae1dSRodney W. Grimes  *	object reference is deallocated.
1435df8bae1dSRodney W. Grimes  *
1436df8bae1dSRodney W. Grimes  *	The new object and offset into that object
1437df8bae1dSRodney W. Grimes  *	are returned in the source parameters.
1438df8bae1dSRodney W. Grimes  */
143926f9a767SRodney W. Grimes void
vm_object_shadow(vm_object_t * object,vm_ooffset_t * offset,vm_size_t length,struct ucred * cred,bool shared)144067388836SKonstantin Belousov vm_object_shadow(vm_object_t *object, vm_ooffset_t *offset, vm_size_t length,
144167388836SKonstantin Belousov     struct ucred *cred, bool shared)
1442df8bae1dSRodney W. Grimes {
1443d031cff1SMatthew Dillon 	vm_object_t source;
1444d031cff1SMatthew Dillon 	vm_object_t result;
1445df8bae1dSRodney W. Grimes 
1446df8bae1dSRodney W. Grimes 	source = *object;
1447df8bae1dSRodney W. Grimes 
1448df8bae1dSRodney W. Grimes 	/*
14499a2f6362SAlan Cox 	 * Don't create the new object if the old object isn't shared.
145063967687SJeff Roberson 	 *
145163967687SJeff Roberson 	 * If we hold the only reference we can guarantee that it won't
145263967687SJeff Roberson 	 * increase while we have the map locked.  Otherwise the race is
145363967687SJeff Roberson 	 * harmless and we will end up with an extra shadow object that
145463967687SJeff Roberson 	 * will be collapsed later.
14559a2f6362SAlan Cox 	 */
145663967687SJeff Roberson 	if (source != NULL && source->ref_count == 1 &&
145732362449SKonstantin Belousov 	    (source->flags & OBJ_ANON) != 0)
14589a2f6362SAlan Cox 		return;
14599a2f6362SAlan Cox 
14609a2f6362SAlan Cox 	/*
1461570a2f4aSAlan Cox 	 * Allocate a new object with the given length.
1462df8bae1dSRodney W. Grimes 	 */
146367388836SKonstantin Belousov 	result = vm_object_allocate_anon(atop(length), source, cred, length);
1464df8bae1dSRodney W. Grimes 
1465df8bae1dSRodney W. Grimes 	/*
146651b867e5SJeff Roberson 	 * Store the offset into the source object, and fix up the offset into
146751b867e5SJeff Roberson 	 * the new object.
146851b867e5SJeff Roberson 	 */
146951b867e5SJeff Roberson 	result->backing_object_offset = *offset;
147051b867e5SJeff Roberson 
147167388836SKonstantin Belousov 	if (shared || source != NULL) {
147267388836SKonstantin Belousov 		VM_OBJECT_WLOCK(result);
147367388836SKonstantin Belousov 
147451b867e5SJeff Roberson 		/*
147567388836SKonstantin Belousov 		 * The new object shadows the source object, adding a
147667388836SKonstantin Belousov 		 * reference to it.  Our caller changes his reference
147767388836SKonstantin Belousov 		 * to point to the new object, removing a reference to
147867388836SKonstantin Belousov 		 * the source object.  Net result: no change of
147967388836SKonstantin Belousov 		 * reference count, unless the caller needs to add one
148067388836SKonstantin Belousov 		 * more reference due to forking a shared map entry.
148167388836SKonstantin Belousov 		 */
148267388836SKonstantin Belousov 		if (shared) {
148367388836SKonstantin Belousov 			vm_object_reference_locked(result);
148467388836SKonstantin Belousov 			vm_object_clear_flag(result, OBJ_ONEMAPPING);
148567388836SKonstantin Belousov 		}
148667388836SKonstantin Belousov 
148767388836SKonstantin Belousov 		/*
148867388836SKonstantin Belousov 		 * Try to optimize the result object's page color when
148967388836SKonstantin Belousov 		 * shadowing in order to maintain page coloring
149067388836SKonstantin Belousov 		 * consistency in the combined shadowed object.
1491df8bae1dSRodney W. Grimes 		 */
1492570a2f4aSAlan Cox 		if (source != NULL) {
149351b867e5SJeff Roberson 			vm_object_backing_insert(result, source);
14943f289c3fSJeff Roberson 			result->domain = source->domain;
1495f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
1496630f633fSMark Johnston 			vm_object_set_flag(result,
1497630f633fSMark Johnston 			    (source->flags & OBJ_COLORED));
149867388836SKonstantin Belousov 			result->pg_color = (source->pg_color +
149967388836SKonstantin Belousov 			    OFF_TO_IDX(*offset)) & ((1 << (VM_NFREEORDER -
150067388836SKonstantin Belousov 			    1)) - 1);
1501f8a47341SAlan Cox #endif
150267388836SKonstantin Belousov 		}
150351b867e5SJeff Roberson 		VM_OBJECT_WUNLOCK(result);
1504de5f6a77SJohn Dyson 	}
1505df8bae1dSRodney W. Grimes 
1506df8bae1dSRodney W. Grimes 	/*
1507df8bae1dSRodney W. Grimes 	 * Return the new things
1508df8bae1dSRodney W. Grimes 	 */
1509df8bae1dSRodney W. Grimes 	*offset = 0;
1510df8bae1dSRodney W. Grimes 	*object = result;
1511df8bae1dSRodney W. Grimes }
1512df8bae1dSRodney W. Grimes 
1513c5aaa06dSAlan Cox /*
1514c5aaa06dSAlan Cox  *	vm_object_split:
1515c5aaa06dSAlan Cox  *
1516c5aaa06dSAlan Cox  * Split the pages in a map entry into a new object.  This affords
1517c5aaa06dSAlan Cox  * easier removal of unused pages, and keeps object inheritance from
1518c5aaa06dSAlan Cox  * being a negative impact on memory usage.
1519c5aaa06dSAlan Cox  */
1520c5aaa06dSAlan Cox void
vm_object_split(vm_map_entry_t entry)1521c5aaa06dSAlan Cox vm_object_split(vm_map_entry_t entry)
1522c5aaa06dSAlan Cox {
15235b78ff83SDoug Moore 	struct pctrie_iter pages;
15245b78ff83SDoug Moore 	vm_page_t m;
152598087a06SJeff Roberson 	vm_object_t orig_object, new_object, backing_object;
15265b78ff83SDoug Moore 	vm_pindex_t offidxstart;
152773000556SAlan Cox 	vm_size_t size;
1528c5aaa06dSAlan Cox 
1529c5aaa06dSAlan Cox 	orig_object = entry->object.vm_object;
153098087a06SJeff Roberson 	KASSERT((orig_object->flags & OBJ_ONEMAPPING) != 0,
153198087a06SJeff Roberson 	    ("vm_object_split:  Splitting object with multiple mappings."));
153263967687SJeff Roberson 	if ((orig_object->flags & OBJ_ANON) == 0)
1533c5aaa06dSAlan Cox 		return;
1534c5aaa06dSAlan Cox 	if (orig_object->ref_count <= 1)
1535c5aaa06dSAlan Cox 		return;
153689f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(orig_object);
1537c5aaa06dSAlan Cox 
15384da9f125SAlan Cox 	offidxstart = OFF_TO_IDX(entry->offset);
153995442adfSAlan Cox 	size = atop(entry->end - entry->start);
1540c5aaa06dSAlan Cox 
154167388836SKonstantin Belousov 	new_object = vm_object_allocate_anon(size, orig_object,
154267388836SKonstantin Belousov 	    orig_object->cred, ptoa(size));
1543c5aaa06dSAlan Cox 
1544c5474b8fSAlan Cox 	/*
154598087a06SJeff Roberson 	 * We must wait for the orig_object to complete any in-progress
154698087a06SJeff Roberson 	 * collapse so that the swap blocks are stable below.  The
154798087a06SJeff Roberson 	 * additional reference on backing_object by new object will
154898087a06SJeff Roberson 	 * prevent further collapse operations until split completes.
154998087a06SJeff Roberson 	 */
155098087a06SJeff Roberson 	VM_OBJECT_WLOCK(orig_object);
155198087a06SJeff Roberson 	vm_object_collapse_wait(orig_object);
155298087a06SJeff Roberson 
155398087a06SJeff Roberson 	/*
1554c5474b8fSAlan Cox 	 * At this point, the new object is still private, so the order in
1555c5474b8fSAlan Cox 	 * which the original and new objects are locked does not matter.
1556c5474b8fSAlan Cox 	 */
155789f6b863SAttilio Rao 	VM_OBJECT_WLOCK(new_object);
15583f289c3fSJeff Roberson 	new_object->domain = orig_object->domain;
155998087a06SJeff Roberson 	backing_object = orig_object->backing_object;
156098087a06SJeff Roberson 	if (backing_object != NULL) {
156198087a06SJeff Roberson 		vm_object_backing_insert_ref(new_object, backing_object);
1562c5aaa06dSAlan Cox 		new_object->backing_object_offset =
15634da9f125SAlan Cox 		    orig_object->backing_object_offset + entry->offset;
1564c5aaa06dSAlan Cox 	}
1565ef694c1aSEdward Tomasz Napierala 	if (orig_object->cred != NULL) {
1566ef694c1aSEdward Tomasz Napierala 		crhold(orig_object->cred);
15673364c323SKonstantin Belousov 		KASSERT(orig_object->charge >= ptoa(size),
15683364c323SKonstantin Belousov 		    ("orig_object->charge < 0"));
15693364c323SKonstantin Belousov 		orig_object->charge -= ptoa(size);
15703364c323SKonstantin Belousov 	}
157198087a06SJeff Roberson 
157298087a06SJeff Roberson 	/*
157398087a06SJeff Roberson 	 * Mark the split operation so that swap_pager_getpages() knows
157498087a06SJeff Roberson 	 * that the object is in transition.
157598087a06SJeff Roberson 	 */
157698087a06SJeff Roberson 	vm_object_set_flag(orig_object, OBJ_SPLIT);
15775b78ff83SDoug Moore 	vm_page_iter_limit_init(&pages, orig_object, offidxstart + size);
1578c5aaa06dSAlan Cox retry:
1579c6c63b92SDoug Moore 	KASSERT(pctrie_iter_is_reset(&pages),
1580c6c63b92SDoug Moore 	    ("%s: pctrie_iter not reset for retry", __func__));
1581991dbf9fSDoug Moore 	for (m = vm_radix_iter_lookup_ge(&pages, offidxstart); m != NULL;
15825b78ff83SDoug Moore 	    m = vm_radix_iter_step(&pages)) {
1583c5aaa06dSAlan Cox 		/*
1584c5aaa06dSAlan Cox 		 * We must wait for pending I/O to complete before we can
1585c5aaa06dSAlan Cox 		 * rename the page.
1586c5aaa06dSAlan Cox 		 *
1587c5aaa06dSAlan Cox 		 * We do not have to VM_PROT_NONE the page as mappings should
1588c5aaa06dSAlan Cox 		 * not be changed by this operation.
1589c5aaa06dSAlan Cox 		 */
159063e97555SJeff Roberson 		if (vm_page_tryxbusy(m) == 0) {
159189f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(new_object);
159287b64663SMark Johnston 			if (vm_page_busy_sleep(m, "spltwt", 0))
159387b64663SMark Johnston 				VM_OBJECT_WLOCK(orig_object);
1594c6c63b92SDoug Moore 			pctrie_iter_reset(&pages);
159589f6b863SAttilio Rao 			VM_OBJECT_WLOCK(new_object);
1596c5aaa06dSAlan Cox 			goto retry;
1597de33beddSAlan Cox 		}
1598e946b949SAttilio Rao 
15994bf95d00SJeff Roberson 		/*
16004bf95d00SJeff Roberson 		 * The page was left invalid.  Likely placed there by
16014bf95d00SJeff Roberson 		 * an incomplete fault.  Just remove and ignore.
16024bf95d00SJeff Roberson 		 */
16034bf95d00SJeff Roberson 		if (vm_page_none_valid(m)) {
1604c1d12b92SDoug Moore 			if (vm_page_iter_remove(&pages, m))
16054bf95d00SJeff Roberson 				vm_page_free(m);
16064bf95d00SJeff Roberson 			continue;
16074bf95d00SJeff Roberson 		}
16084bf95d00SJeff Roberson 
1609c296ac7eSAlan Cox 		/* vm_page_iter_rename() will dirty the page. */
1610c296ac7eSAlan Cox 		if (!vm_page_iter_rename(&pages, m, new_object, m->pindex -
1611c296ac7eSAlan Cox 		    offidxstart)) {
161263e97555SJeff Roberson 			vm_page_xunbusy(m);
1613e946b949SAttilio Rao 			VM_OBJECT_WUNLOCK(new_object);
1614e946b949SAttilio Rao 			VM_OBJECT_WUNLOCK(orig_object);
16158d6fbbb8SJeff Roberson 			vm_radix_wait();
1616c6c63b92SDoug Moore 			pctrie_iter_reset(&pages);
1617e946b949SAttilio Rao 			VM_OBJECT_WLOCK(orig_object);
1618e946b949SAttilio Rao 			VM_OBJECT_WLOCK(new_object);
1619e946b949SAttilio Rao 			goto retry;
1620e946b949SAttilio Rao 		}
162163e97555SJeff Roberson 
1622b5f359b7SAlan Cox #if VM_NRESERVLEVEL > 0
1623b5f359b7SAlan Cox 		/*
1624b5f359b7SAlan Cox 		 * If some of the reservation's allocated pages remain with
1625b5f359b7SAlan Cox 		 * the original object, then transferring the reservation to
1626b5f359b7SAlan Cox 		 * the new object is neither particularly beneficial nor
1627b5f359b7SAlan Cox 		 * particularly harmful as compared to leaving the reservation
1628b5f359b7SAlan Cox 		 * with the original object.  If, however, all of the
1629b5f359b7SAlan Cox 		 * reservation's allocated pages are transferred to the new
1630b5f359b7SAlan Cox 		 * object, then transferring the reservation is typically
1631b5f359b7SAlan Cox 		 * beneficial.  Determining which of these two cases applies
1632b5f359b7SAlan Cox 		 * would be more costly than unconditionally renaming the
1633b5f359b7SAlan Cox 		 * reservation.
1634b5f359b7SAlan Cox 		 */
1635b5f359b7SAlan Cox 		vm_reserv_rename(m, new_object, orig_object, offidxstart);
1636b5f359b7SAlan Cox #endif
1637c5aaa06dSAlan Cox 	}
1638fff19e0eSMark Johnston 
1639c5aaa06dSAlan Cox 	/*
1640c7c8dd7eSAlan Cox 	 * swap_pager_copy() can sleep, in which case the orig_object's
1641c7c8dd7eSAlan Cox 	 * and new_object's locks are released and reacquired.
1642c5aaa06dSAlan Cox 	 */
1643c5aaa06dSAlan Cox 	swap_pager_copy(orig_object, new_object, offidxstart, 0);
1644fff19e0eSMark Johnston 
1645fff19e0eSMark Johnston 	TAILQ_FOREACH(m, &new_object->memq, listq)
1646fff19e0eSMark Johnston 		vm_page_xunbusy(m);
1647fff19e0eSMark Johnston 
164898087a06SJeff Roberson 	vm_object_clear_flag(orig_object, OBJ_SPLIT);
164989f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(orig_object);
165089f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(new_object);
1651c5aaa06dSAlan Cox 	entry->object.vm_object = new_object;
1652c5aaa06dSAlan Cox 	entry->offset = 0LL;
1653c5aaa06dSAlan Cox 	vm_object_deallocate(orig_object);
165489f6b863SAttilio Rao 	VM_OBJECT_WLOCK(new_object);
1655c5aaa06dSAlan Cox }
1656c5aaa06dSAlan Cox 
165799a1570aSKonstantin Belousov static vm_page_t
vm_object_collapse_scan_wait(struct pctrie_iter * pages,vm_object_t object,vm_page_t p)16585b78ff83SDoug Moore vm_object_collapse_scan_wait(struct pctrie_iter *pages, vm_object_t object,
16595b78ff83SDoug Moore     vm_page_t p)
166099a1570aSKonstantin Belousov {
166199a1570aSKonstantin Belousov 	vm_object_t backing_object;
166299a1570aSKonstantin Belousov 
166399a1570aSKonstantin Belousov 	VM_OBJECT_ASSERT_WLOCKED(object);
166499a1570aSKonstantin Belousov 	backing_object = object->backing_object;
166599a1570aSKonstantin Belousov 	VM_OBJECT_ASSERT_WLOCKED(backing_object);
166699a1570aSKonstantin Belousov 
166799a1570aSKonstantin Belousov 	KASSERT(p == NULL || p->object == object || p->object == backing_object,
166899a1570aSKonstantin Belousov 	    ("invalid ownership %p %p %p", p, object, backing_object));
16698d6fbbb8SJeff Roberson 	/* The page is only NULL when rename fails. */
16704cdea4a8SJeff Roberson 	if (p == NULL) {
16716a14746cSRyan Libby 		VM_OBJECT_WUNLOCK(object);
16726a14746cSRyan Libby 		VM_OBJECT_WUNLOCK(backing_object);
16738d6fbbb8SJeff Roberson 		vm_radix_wait();
167499a1570aSKonstantin Belousov 		VM_OBJECT_WLOCK(object);
167587b64663SMark Johnston 	} else if (p->object == object) {
167687b64663SMark Johnston 		VM_OBJECT_WUNLOCK(backing_object);
167787b64663SMark Johnston 		if (vm_page_busy_sleep(p, "vmocol", 0))
167887b64663SMark Johnston 			VM_OBJECT_WLOCK(object);
167987b64663SMark Johnston 	} else {
168087b64663SMark Johnston 		VM_OBJECT_WUNLOCK(object);
168187b64663SMark Johnston 		if (!vm_page_busy_sleep(p, "vmocol", 0))
168287b64663SMark Johnston 			VM_OBJECT_WUNLOCK(backing_object);
168387b64663SMark Johnston 		VM_OBJECT_WLOCK(object);
168487b64663SMark Johnston 	}
168599a1570aSKonstantin Belousov 	VM_OBJECT_WLOCK(backing_object);
16865b78ff83SDoug Moore 	vm_page_iter_init(pages, backing_object);
1687991dbf9fSDoug Moore 	return (vm_radix_iter_lookup_ge(pages, 0));
168899a1570aSKonstantin Belousov }
168999a1570aSKonstantin Belousov 
169098087a06SJeff Roberson static void
vm_object_collapse_scan(vm_object_t object)169198087a06SJeff Roberson vm_object_collapse_scan(vm_object_t object)
16922ad1a3f7SMatthew Dillon {
16935b78ff83SDoug Moore 	struct pctrie_iter pages;
16942ad1a3f7SMatthew Dillon 	vm_object_t backing_object;
169599a1570aSKonstantin Belousov 	vm_page_t next, p, pp;
169699a1570aSKonstantin Belousov 	vm_pindex_t backing_offset_index, new_pindex;
16972ad1a3f7SMatthew Dillon 
169889f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
169989f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object->backing_object);
17002ad1a3f7SMatthew Dillon 
17012ad1a3f7SMatthew Dillon 	backing_object = object->backing_object;
17022ad1a3f7SMatthew Dillon 	backing_offset_index = OFF_TO_IDX(object->backing_object_offset);
17032ad1a3f7SMatthew Dillon 
17042ad1a3f7SMatthew Dillon 	/*
17052ad1a3f7SMatthew Dillon 	 * Our scan
17062ad1a3f7SMatthew Dillon 	 */
17075b78ff83SDoug Moore 	vm_page_iter_init(&pages, backing_object);
1708991dbf9fSDoug Moore 	for (p = vm_radix_iter_lookup_ge(&pages, 0); p != NULL; p = next) {
17092ad1a3f7SMatthew Dillon 		/*
17102ad1a3f7SMatthew Dillon 		 * Check for busy page
17112ad1a3f7SMatthew Dillon 		 */
171263e97555SJeff Roberson 		if (vm_page_tryxbusy(p) == 0) {
17135b78ff83SDoug Moore 			next = vm_object_collapse_scan_wait(&pages, object, p);
17142ad1a3f7SMatthew Dillon 			continue;
17152ad1a3f7SMatthew Dillon 		}
17162ad1a3f7SMatthew Dillon 
171798087a06SJeff Roberson 		KASSERT(object->backing_object == backing_object,
171898087a06SJeff Roberson 		    ("vm_object_collapse_scan: backing object mismatch %p != %p",
171998087a06SJeff Roberson 		    object->backing_object, backing_object));
172099a1570aSKonstantin Belousov 		KASSERT(p->object == backing_object,
172198087a06SJeff Roberson 		    ("vm_object_collapse_scan: object mismatch %p != %p",
172298087a06SJeff Roberson 		    p->object, backing_object));
17232ad1a3f7SMatthew Dillon 
1724fa462b8bSDoug Moore 		if (p->pindex < backing_offset_index || object->size <=
1725fa462b8bSDoug Moore 		    (new_pindex = p->pindex - backing_offset_index)) {
17261390a5cbSKonstantin Belousov 			vm_pager_freespace(backing_object, p->pindex, 1);
1727e946b949SAttilio Rao 
1728f6d89838SAlan Cox 			KASSERT(!pmap_page_is_mapped(p),
1729f6d89838SAlan Cox 			    ("freeing mapped page %p", p));
1730c1d12b92SDoug Moore 			if (vm_page_iter_remove(&pages, p))
17312ad1a3f7SMatthew Dillon 				vm_page_free(p);
17325b78ff83SDoug Moore 			next = vm_radix_iter_step(&pages);
17332ad1a3f7SMatthew Dillon 			continue;
17342ad1a3f7SMatthew Dillon 		}
17352ad1a3f7SMatthew Dillon 
1736cd0047f3SKonstantin Belousov 		if (!vm_page_all_valid(p)) {
1737cd0047f3SKonstantin Belousov 			KASSERT(!pmap_page_is_mapped(p),
1738cd0047f3SKonstantin Belousov 			    ("freeing mapped page %p", p));
1739c1d12b92SDoug Moore 			if (vm_page_iter_remove(&pages, p))
1740cd0047f3SKonstantin Belousov 				vm_page_free(p);
17415b78ff83SDoug Moore 			next = vm_radix_iter_step(&pages);
1742cd0047f3SKonstantin Belousov 			continue;
1743cd0047f3SKonstantin Belousov 		}
1744cd0047f3SKonstantin Belousov 
17452ad1a3f7SMatthew Dillon 		pp = vm_page_lookup(object, new_pindex);
174663e97555SJeff Roberson 		if (pp != NULL && vm_page_tryxbusy(pp) == 0) {
174763e97555SJeff Roberson 			vm_page_xunbusy(p);
1748e18cc7bfSMax Laier 			/*
17494cc8daf7SConrad Meyer 			 * The page in the parent is busy and possibly not
17504cc8daf7SConrad Meyer 			 * (yet) valid.  Until its state is finalized by the
17514cc8daf7SConrad Meyer 			 * busy bit owner, we can't tell whether it shadows the
175298087a06SJeff Roberson 			 * original page.
1753e18cc7bfSMax Laier 			 */
17545b78ff83SDoug Moore 			next = vm_object_collapse_scan_wait(&pages, object, pp);
1755e18cc7bfSMax Laier 			continue;
1756e18cc7bfSMax Laier 		}
175799a1570aSKonstantin Belousov 
17584bf95d00SJeff Roberson 		if (pp != NULL && vm_page_none_valid(pp)) {
17594bf95d00SJeff Roberson 			/*
17604bf95d00SJeff Roberson 			 * The page was invalid in the parent.  Likely placed
17614bf95d00SJeff Roberson 			 * there by an incomplete fault.  Just remove and
17624bf95d00SJeff Roberson 			 * ignore.  p can replace it.
17634bf95d00SJeff Roberson 			 */
17644bf95d00SJeff Roberson 			if (vm_page_remove(pp))
17654bf95d00SJeff Roberson 				vm_page_free(pp);
17664bf95d00SJeff Roberson 			pp = NULL;
17674bf95d00SJeff Roberson 		}
176899a1570aSKonstantin Belousov 
17694cc8daf7SConrad Meyer 		if (pp != NULL || vm_pager_has_page(object, new_pindex, NULL,
17704cc8daf7SConrad Meyer 			NULL)) {
177199a1570aSKonstantin Belousov 			/*
17724cc8daf7SConrad Meyer 			 * The page already exists in the parent OR swap exists
17734cc8daf7SConrad Meyer 			 * for this location in the parent.  Leave the parent's
17744cc8daf7SConrad Meyer 			 * page alone.  Destroy the original page from the
17754cc8daf7SConrad Meyer 			 * backing object.
177699a1570aSKonstantin Belousov 			 */
17771390a5cbSKonstantin Belousov 			vm_pager_freespace(backing_object, p->pindex, 1);
1778f6d89838SAlan Cox 			KASSERT(!pmap_page_is_mapped(p),
1779f6d89838SAlan Cox 			    ("freeing mapped page %p", p));
178063e97555SJeff Roberson 			if (pp != NULL)
178163e97555SJeff Roberson 				vm_page_xunbusy(pp);
1782c1d12b92SDoug Moore 			if (vm_page_iter_remove(&pages, p))
17835b78ff83SDoug Moore 				vm_page_free(p);
17845b78ff83SDoug Moore 			next = vm_radix_iter_step(&pages);
17852ad1a3f7SMatthew Dillon 			continue;
17862ad1a3f7SMatthew Dillon 		}
17872ad1a3f7SMatthew Dillon 
1788e946b949SAttilio Rao 		/*
17894cc8daf7SConrad Meyer 		 * Page does not exist in parent, rename the page from the
17904cc8daf7SConrad Meyer 		 * backing object to the main object.
1791e946b949SAttilio Rao 		 *
17924cc8daf7SConrad Meyer 		 * If the page was mapped to a process, it can remain mapped
1793c296ac7eSAlan Cox 		 * through the rename.  vm_page_iter_rename() will dirty the
1794c296ac7eSAlan Cox 		 * page.
1795e946b949SAttilio Rao 		 */
1796c296ac7eSAlan Cox 		if (!vm_page_iter_rename(&pages, p, object, new_pindex)) {
179763e97555SJeff Roberson 			vm_page_xunbusy(p);
17985b78ff83SDoug Moore 			next = vm_object_collapse_scan_wait(&pages, object,
17995b78ff83SDoug Moore 			    NULL);
1800e946b949SAttilio Rao 			continue;
1801e946b949SAttilio Rao 		}
180214a5dc17SAttilio Rao 
180314a5dc17SAttilio Rao 		/* Use the old pindex to free the right page. */
18041390a5cbSKonstantin Belousov 		vm_pager_freespace(backing_object, new_pindex +
18051390a5cbSKonstantin Belousov 		    backing_offset_index, 1);
1806e946b949SAttilio Rao 
1807f8a47341SAlan Cox #if VM_NRESERVLEVEL > 0
1808f8a47341SAlan Cox 		/*
1809f8a47341SAlan Cox 		 * Rename the reservation.
1810f8a47341SAlan Cox 		 */
1811f8a47341SAlan Cox 		vm_reserv_rename(p, object, backing_object,
1812f8a47341SAlan Cox 		    backing_offset_index);
1813f8a47341SAlan Cox #endif
18148da1c098SJeff Roberson 		vm_page_xunbusy(p);
18155b78ff83SDoug Moore 		next = vm_radix_iter_step(&pages);
18162ad1a3f7SMatthew Dillon 	}
18172fe6e4d7SDavid Greenman 	return;
18182fe6e4d7SDavid Greenman }
18192fe6e4d7SDavid Greenman 
1820df8bae1dSRodney W. Grimes /*
1821df8bae1dSRodney W. Grimes  *	vm_object_collapse:
1822df8bae1dSRodney W. Grimes  *
1823df8bae1dSRodney W. Grimes  *	Collapse an object with the object backing it.
1824df8bae1dSRodney W. Grimes  *	Pages in the backing object are moved into the
1825df8bae1dSRodney W. Grimes  *	parent, and the backing object is deallocated.
1826df8bae1dSRodney W. Grimes  */
182726f9a767SRodney W. Grimes void
vm_object_collapse(vm_object_t object)18281b40f8c0SMatthew Dillon vm_object_collapse(vm_object_t object)
1829df8bae1dSRodney W. Grimes {
183098f139daSKonstantin Belousov 	vm_object_t backing_object, new_backing_object;
183198f139daSKonstantin Belousov 
183289f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
183323955314SAlfred Perlstein 
1834df8bae1dSRodney W. Grimes 	while (TRUE) {
183598087a06SJeff Roberson 		KASSERT((object->flags & (OBJ_DEAD | OBJ_ANON)) == OBJ_ANON,
183698087a06SJeff Roberson 		    ("collapsing invalid object"));
183798087a06SJeff Roberson 
1838df8bae1dSRodney W. Grimes 		/*
183998087a06SJeff Roberson 		 * Wait for the backing_object to finish any pending
184098087a06SJeff Roberson 		 * collapse so that the caller sees the shortest possible
184198087a06SJeff Roberson 		 * shadow chain.
1842df8bae1dSRodney W. Grimes 		 */
184398087a06SJeff Roberson 		backing_object = vm_object_backing_collapse_wait(object);
184498087a06SJeff Roberson 		if (backing_object == NULL)
184598087a06SJeff Roberson 			return;
184698087a06SJeff Roberson 
184798087a06SJeff Roberson 		KASSERT(object->ref_count > 0 &&
18484cf9f5d8SKonstantin Belousov 		    object->ref_count > atomic_load_int(&object->shadow_count),
184998087a06SJeff Roberson 		    ("collapse with invalid ref %d or shadow %d count.",
18504cf9f5d8SKonstantin Belousov 		    object->ref_count, atomic_load_int(&object->shadow_count)));
185198087a06SJeff Roberson 		KASSERT((backing_object->flags &
185298087a06SJeff Roberson 		    (OBJ_COLLAPSING | OBJ_DEAD)) == 0,
185398087a06SJeff Roberson 		    ("vm_object_collapse: Backing object already collapsing."));
185498087a06SJeff Roberson 		KASSERT((object->flags & (OBJ_COLLAPSING | OBJ_DEAD)) == 0,
185598087a06SJeff Roberson 		    ("vm_object_collapse: object is already collapsing."));
1856df8bae1dSRodney W. Grimes 
1857f919ebdeSDavid Greenman 		/*
185898087a06SJeff Roberson 		 * We know that we can either collapse the backing object if
185998087a06SJeff Roberson 		 * the parent is the only reference to it, or (perhaps) have
18602ad1a3f7SMatthew Dillon 		 * the parent bypass the object if the parent happens to shadow
18612ad1a3f7SMatthew Dillon 		 * all the resident pages in the entire backing object.
1862df8bae1dSRodney W. Grimes 		 */
1863df8bae1dSRodney W. Grimes 		if (backing_object->ref_count == 1) {
18644cf9f5d8SKonstantin Belousov 			KASSERT(atomic_load_int(&backing_object->shadow_count)
18654cf9f5d8SKonstantin Belousov 			    == 1,
186698087a06SJeff Roberson 			    ("vm_object_collapse: shadow_count: %d",
18674cf9f5d8SKonstantin Belousov 			    atomic_load_int(&backing_object->shadow_count)));
1868aa9bc3b1SKonstantin Belousov 			vm_object_pip_add(object, 1);
186998087a06SJeff Roberson 			vm_object_set_flag(object, OBJ_COLLAPSING);
1870aa9bc3b1SKonstantin Belousov 			vm_object_pip_add(backing_object, 1);
187198087a06SJeff Roberson 			vm_object_set_flag(backing_object, OBJ_DEAD);
1872aa9bc3b1SKonstantin Belousov 
1873df8bae1dSRodney W. Grimes 			/*
18742ad1a3f7SMatthew Dillon 			 * If there is exactly one reference to the backing
18752ad1a3f7SMatthew Dillon 			 * object, we can collapse it into the parent.
1876df8bae1dSRodney W. Grimes 			 */
187798087a06SJeff Roberson 			vm_object_collapse_scan(object);
1878df8bae1dSRodney W. Grimes 
1879df8bae1dSRodney W. Grimes 			/*
1880df8bae1dSRodney W. Grimes 			 * Move the pager from backing_object to object.
1881fff19e0eSMark Johnston 			 *
1882fff19e0eSMark Johnston 			 * swap_pager_copy() can sleep, in which case the
1883fff19e0eSMark Johnston 			 * backing_object's and object's locks are released and
1884fff19e0eSMark Johnston 			 * reacquired.
1885df8bae1dSRodney W. Grimes 			 */
1886fff19e0eSMark Johnston 			swap_pager_copy(backing_object, object,
18871c7c3c6aSMatthew Dillon 			    OFF_TO_IDX(object->backing_object_offset), TRUE);
188898087a06SJeff Roberson 
1889df8bae1dSRodney W. Grimes 			/*
1890df8bae1dSRodney W. Grimes 			 * Object now shadows whatever backing_object did.
1891df8bae1dSRodney W. Grimes 			 */
189298087a06SJeff Roberson 			vm_object_clear_flag(object, OBJ_COLLAPSING);
189398087a06SJeff Roberson 			vm_object_backing_transfer(object, backing_object);
18942ad1a3f7SMatthew Dillon 			object->backing_object_offset +=
18952ad1a3f7SMatthew Dillon 			    backing_object->backing_object_offset;
189698087a06SJeff Roberson 			VM_OBJECT_WUNLOCK(object);
189798087a06SJeff Roberson 			vm_object_pip_wakeup(object);
18982ad1a3f7SMatthew Dillon 
1899df8bae1dSRodney W. Grimes 			/*
1900df8bae1dSRodney W. Grimes 			 * Discard backing_object.
1901df8bae1dSRodney W. Grimes 			 *
19020d94caffSDavid Greenman 			 * Since the backing object has no pages, no pager left,
19030d94caffSDavid Greenman 			 * and no object references within it, all that is
19040d94caffSDavid Greenman 			 * necessary is to dispose of it.
1905df8bae1dSRodney W. Grimes 			 */
19069b4d473aSKonstantin Belousov 			KASSERT(backing_object->ref_count == 1, (
19079b4d473aSKonstantin Belousov "backing_object %p was somehow re-referenced during collapse!",
19089b4d473aSKonstantin Belousov 			    backing_object));
1909aa9bc3b1SKonstantin Belousov 			vm_object_pip_wakeup(backing_object);
191098087a06SJeff Roberson 			(void)refcount_release(&backing_object->ref_count);
19116f3e9bacSPawel Jakub Dawidek 			umtx_shm_object_terminated(backing_object);
191298087a06SJeff Roberson 			vm_object_terminate(backing_object);
191311542376SAlan Cox 			counter_u64_add(object_collapses, 1);
191498087a06SJeff Roberson 			VM_OBJECT_WLOCK(object);
19150d94caffSDavid Greenman 		} else {
1916df8bae1dSRodney W. Grimes 			/*
19172ad1a3f7SMatthew Dillon 			 * If we do not entirely shadow the backing object,
19182ad1a3f7SMatthew Dillon 			 * there is nothing we can do so we give up.
191998087a06SJeff Roberson 			 *
192098087a06SJeff Roberson 			 * The object lock and backing_object lock must not
192198087a06SJeff Roberson 			 * be dropped during this sequence.
1922df8bae1dSRodney W. Grimes 			 */
192334951b0bSDoug Moore 			if (!swap_pager_scan_all_shadowed(object)) {
192489f6b863SAttilio Rao 				VM_OBJECT_WUNLOCK(backing_object);
19252ad1a3f7SMatthew Dillon 				break;
192624a1cce3SDavid Greenman 			}
1927df8bae1dSRodney W. Grimes 
1928df8bae1dSRodney W. Grimes 			/*
19290d94caffSDavid Greenman 			 * Make the parent shadow the next object in the
19300d94caffSDavid Greenman 			 * chain.  Deallocating backing_object will not remove
19310d94caffSDavid Greenman 			 * it, since its reference count is at least 2.
1932df8bae1dSRodney W. Grimes 			 */
193351b867e5SJeff Roberson 			vm_object_backing_remove_locked(object);
193495e5e988SJohn Dyson 			new_backing_object = backing_object->backing_object;
193551b867e5SJeff Roberson 			if (new_backing_object != NULL) {
193698087a06SJeff Roberson 				vm_object_backing_insert_ref(object,
193751b867e5SJeff Roberson 				    new_backing_object);
193895e5e988SJohn Dyson 				object->backing_object_offset +=
193995e5e988SJohn Dyson 				    backing_object->backing_object_offset;
1940de5f6a77SJohn Dyson 			}
1941df8bae1dSRodney W. Grimes 
1942df8bae1dSRodney W. Grimes 			/*
19430d94caffSDavid Greenman 			 * Drop the reference count on backing_object. Since
194422ec553fSAlan Cox 			 * its ref_count was at least 2, it will not vanish.
1945df8bae1dSRodney W. Grimes 			 */
194698087a06SJeff Roberson 			(void)refcount_release(&backing_object->ref_count);
194798087a06SJeff Roberson 			KASSERT(backing_object->ref_count >= 1, (
194898087a06SJeff Roberson "backing_object %p was somehow dereferenced during collapse!",
194998087a06SJeff Roberson 			    backing_object));
195089f6b863SAttilio Rao 			VM_OBJECT_WUNLOCK(backing_object);
195111542376SAlan Cox 			counter_u64_add(object_bypasses, 1);
1952df8bae1dSRodney W. Grimes 		}
1953df8bae1dSRodney W. Grimes 
1954df8bae1dSRodney W. Grimes 		/*
1955df8bae1dSRodney W. Grimes 		 * Try again with this object's new backing object.
1956df8bae1dSRodney W. Grimes 		 */
1957df8bae1dSRodney W. Grimes 	}
1958df8bae1dSRodney W. Grimes }
1959df8bae1dSRodney W. Grimes 
1960df8bae1dSRodney W. Grimes /*
1961bff99f0dSAlan Cox  *	vm_object_page_remove:
1962df8bae1dSRodney W. Grimes  *
196368855966SAlan Cox  *	For the given object, either frees or invalidates each of the
19646bbee8e2SAlan Cox  *	specified pages.  In general, a page is freed.  However, if a page is
19656bbee8e2SAlan Cox  *	wired for any reason other than the existence of a managed, wired
19666bbee8e2SAlan Cox  *	mapping, then it may be invalidated but not removed from the object.
19676bbee8e2SAlan Cox  *	Pages are specified by the given range ["start", "end") and the option
19686bbee8e2SAlan Cox  *	OBJPR_CLEANONLY.  As a special case, if "end" is zero, then the range
19696bbee8e2SAlan Cox  *	extends from "start" to the end of the object.  If the option
19706bbee8e2SAlan Cox  *	OBJPR_CLEANONLY is specified, then only the non-dirty pages within the
19716bbee8e2SAlan Cox  *	specified range are affected.  If the option OBJPR_NOTMAPPED is
19726bbee8e2SAlan Cox  *	specified, then the pages within the specified range must have no
19736bbee8e2SAlan Cox  *	mappings.  Otherwise, if this option is not specified, any mappings to
19746bbee8e2SAlan Cox  *	the specified pages are removed before the pages are freed or
19756bbee8e2SAlan Cox  *	invalidated.
197668855966SAlan Cox  *
19776bbee8e2SAlan Cox  *	In general, this operation should only be performed on objects that
19786bbee8e2SAlan Cox  *	contain managed pages.  There are, however, two exceptions.  First, it
19796bbee8e2SAlan Cox  *	is performed on the kernel and kmem objects by vm_map_entry_delete().
19806bbee8e2SAlan Cox  *	Second, it is used by msync(..., MS_INVALIDATE) to invalidate device-
19816bbee8e2SAlan Cox  *	backed pages.  In both of these cases, the option OBJPR_CLEANONLY must
19826bbee8e2SAlan Cox  *	not be specified and the option OBJPR_NOTMAPPED must be specified.
1983df8bae1dSRodney W. Grimes  *
1984df8bae1dSRodney W. Grimes  *	The object must be locked.
1985df8bae1dSRodney W. Grimes  */
198626f9a767SRodney W. Grimes void
vm_object_page_remove(vm_object_t object,vm_pindex_t start,vm_pindex_t end,int options)1987ecde4b32SAlan Cox vm_object_page_remove(vm_object_t object, vm_pindex_t start, vm_pindex_t end,
19886bbee8e2SAlan Cox     int options)
1989df8bae1dSRodney W. Grimes {
19905b78ff83SDoug Moore 	struct pctrie_iter pages;
19915b78ff83SDoug Moore 	vm_page_t p;
1992df8bae1dSRodney W. Grimes 
199389f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
199428634820SAlan Cox 	KASSERT((object->flags & OBJ_UNMANAGED) == 0 ||
19956bbee8e2SAlan Cox 	    (options & (OBJPR_CLEANONLY | OBJPR_NOTMAPPED)) == OBJPR_NOTMAPPED,
19966bbee8e2SAlan Cox 	    ("vm_object_page_remove: illegal options for object %p", object));
1997ecde4b32SAlan Cox 	if (object->resident_page_count == 0)
19987667839aSAlan Cox 		return;
1999d474eaaaSDoug Rabson 	vm_object_pip_add(object, 1);
20005b78ff83SDoug Moore 	vm_page_iter_limit_init(&pages, object, end);
200126f9a767SRodney W. Grimes again:
2002c6c63b92SDoug Moore 	KASSERT(pctrie_iter_is_reset(&pages),
2003c6c63b92SDoug Moore 	    ("%s: pctrie_iter not reset for retry", __func__));
2004991dbf9fSDoug Moore 	for (p = vm_radix_iter_lookup_ge(&pages, start); p != NULL;
20055b78ff83SDoug Moore 	     p = vm_radix_iter_step(&pages)) {
200659677d3cSAlan Cox 		/*
2007d28af1abSMark Johnston 		 * Skip invalid pages if asked to do so.  Try to avoid acquiring
2008d28af1abSMark Johnston 		 * the busy lock, as some consumers rely on this to avoid
2009d28af1abSMark Johnston 		 * deadlocks.
2010d28af1abSMark Johnston 		 *
2011d28af1abSMark Johnston 		 * A thread may concurrently transition the page from invalid to
2012d28af1abSMark Johnston 		 * valid using only the busy lock, so the result of this check
2013d28af1abSMark Johnston 		 * is immediately stale.  It is up to consumers to handle this,
2014d28af1abSMark Johnston 		 * for instance by ensuring that all invalid->valid transitions
2015d28af1abSMark Johnston 		 * happen with a mutex held, as may be possible for a
2016d28af1abSMark Johnston 		 * filesystem.
2017d28af1abSMark Johnston 		 */
2018d28af1abSMark Johnston 		if ((options & OBJPR_VALIDONLY) != 0 && vm_page_none_valid(p))
2019d28af1abSMark Johnston 			continue;
2020d28af1abSMark Johnston 
2021d28af1abSMark Johnston 		/*
20226bbee8e2SAlan Cox 		 * If the page is wired for any reason besides the existence
20236bbee8e2SAlan Cox 		 * of managed, wired mappings, then it cannot be freed.  For
20246bbee8e2SAlan Cox 		 * example, fictitious pages, which represent device memory,
20256bbee8e2SAlan Cox 		 * are inherently wired and cannot be freed.  They can,
20266bbee8e2SAlan Cox 		 * however, be invalidated if the option OBJPR_CLEANONLY is
20276bbee8e2SAlan Cox 		 * not specified.
202859677d3cSAlan Cox 		 */
202963e97555SJeff Roberson 		if (vm_page_tryxbusy(p) == 0) {
203087b64663SMark Johnston 			if (vm_page_busy_sleep(p, "vmopar", 0))
203187b64663SMark Johnston 				VM_OBJECT_WLOCK(object);
2032c6c63b92SDoug Moore 			pctrie_iter_reset(&pages);
2033fee2a2faSMark Johnston 			goto again;
2034fee2a2faSMark Johnston 		}
2035d28af1abSMark Johnston 		if ((options & OBJPR_VALIDONLY) != 0 && vm_page_none_valid(p)) {
2036d28af1abSMark Johnston 			vm_page_xunbusy(p);
2037d28af1abSMark Johnston 			continue;
2038d28af1abSMark Johnston 		}
2039d842aa51SMark Johnston 		if (vm_page_wired(p)) {
2040fee2a2faSMark Johnston wired:
2041cf060942SAlan Cox 			if ((options & OBJPR_NOTMAPPED) == 0 &&
2042cf060942SAlan Cox 			    object->ref_count != 0)
20434fec79beSAlan Cox 				pmap_remove_all(p);
20446bbee8e2SAlan Cox 			if ((options & OBJPR_CLEANONLY) == 0) {
20450012f373SJeff Roberson 				vm_page_invalid(p);
2046a28042d1SAlan Cox 				vm_page_undirty(p);
2047a28042d1SAlan Cox 			}
204863e97555SJeff Roberson 			vm_page_xunbusy(p);
204993c5d3a4SKonstantin Belousov 			continue;
20500d94caffSDavid Greenman 		}
205168855966SAlan Cox 		KASSERT((p->flags & PG_FICTITIOUS) == 0,
205268855966SAlan Cox 		    ("vm_object_page_remove: page %p is fictitious", p));
20530012f373SJeff Roberson 		if ((options & OBJPR_CLEANONLY) != 0 &&
20540012f373SJeff Roberson 		    !vm_page_none_valid(p)) {
2055cf060942SAlan Cox 			if ((options & OBJPR_NOTMAPPED) == 0 &&
2056fee2a2faSMark Johnston 			    object->ref_count != 0 &&
2057fee2a2faSMark Johnston 			    !vm_page_try_remove_write(p))
2058fee2a2faSMark Johnston 				goto wired;
205963e97555SJeff Roberson 			if (p->dirty != 0) {
206063e97555SJeff Roberson 				vm_page_xunbusy(p);
206193c5d3a4SKonstantin Belousov 				continue;
20622965a453SKip Macy 			}
206363e97555SJeff Roberson 		}
2064fee2a2faSMark Johnston 		if ((options & OBJPR_NOTMAPPED) == 0 &&
2065fee2a2faSMark Johnston 		    object->ref_count != 0 && !vm_page_try_remove_all(p))
2066fee2a2faSMark Johnston 			goto wired;
2067ff4c19bbSDoug Moore 		vm_page_iter_free(&pages, p);
20682965a453SKip Macy 	}
2069f919ebdeSDavid Greenman 	vm_object_pip_wakeup(object);
207084242cf6SMark Johnston 
20711390a5cbSKonstantin Belousov 	vm_pager_freespace(object, start, (end == 0 ? object->size : end) -
20721390a5cbSKonstantin Belousov 	    start);
2073c0503609SDavid Greenman }
2074df8bae1dSRodney W. Grimes 
2075df8bae1dSRodney W. Grimes /*
20763138cd36SMark Johnston  *	vm_object_page_noreuse:
2077936c09acSJohn Baldwin  *
20783138cd36SMark Johnston  *	For the given object, attempt to move the specified pages to
20793138cd36SMark Johnston  *	the head of the inactive queue.  This bypasses regular LRU
20803138cd36SMark Johnston  *	operation and allows the pages to be reused quickly under memory
20813138cd36SMark Johnston  *	pressure.  If a page is wired for any reason, then it will not
20823138cd36SMark Johnston  *	be queued.  Pages are specified by the range ["start", "end").
20833138cd36SMark Johnston  *	As a special case, if "end" is zero, then the range extends from
20843138cd36SMark Johnston  *	"start" to the end of the object.
2085936c09acSJohn Baldwin  *
2086936c09acSJohn Baldwin  *	This operation should only be performed on objects that
208728634820SAlan Cox  *	contain non-fictitious, managed pages.
2088936c09acSJohn Baldwin  *
2089936c09acSJohn Baldwin  *	The object must be locked.
2090936c09acSJohn Baldwin  */
2091936c09acSJohn Baldwin void
vm_object_page_noreuse(vm_object_t object,vm_pindex_t start,vm_pindex_t end)20923138cd36SMark Johnston vm_object_page_noreuse(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
2093936c09acSJohn Baldwin {
2094936c09acSJohn Baldwin 	vm_page_t p, next;
2095936c09acSJohn Baldwin 
209652d1addaSAlan Cox 	VM_OBJECT_ASSERT_LOCKED(object);
209728634820SAlan Cox 	KASSERT((object->flags & (OBJ_FICTITIOUS | OBJ_UNMANAGED)) == 0,
20983138cd36SMark Johnston 	    ("vm_object_page_noreuse: illegal object %p", object));
2099936c09acSJohn Baldwin 	if (object->resident_page_count == 0)
2100936c09acSJohn Baldwin 		return;
2101936c09acSJohn Baldwin 	p = vm_page_find_least(object, start);
2102936c09acSJohn Baldwin 
2103936c09acSJohn Baldwin 	/*
2104936c09acSJohn Baldwin 	 * Here, the variable "p" is either (1) the page with the least pindex
2105936c09acSJohn Baldwin 	 * greater than or equal to the parameter "start" or (2) NULL.
2106936c09acSJohn Baldwin 	 */
2107936c09acSJohn Baldwin 	for (; p != NULL && (p->pindex < end || end == 0); p = next) {
2108936c09acSJohn Baldwin 		next = TAILQ_NEXT(p, listq);
21093138cd36SMark Johnston 		vm_page_deactivate_noreuse(p);
2110936c09acSJohn Baldwin 	}
2111936c09acSJohn Baldwin }
2112936c09acSJohn Baldwin 
2113936c09acSJohn Baldwin /*
2114387aabc5SAlan Cox  *	Populate the specified range of the object with valid pages.  Returns
2115387aabc5SAlan Cox  *	TRUE if the range is successfully populated and FALSE otherwise.
2116387aabc5SAlan Cox  *
2117387aabc5SAlan Cox  *	Note: This function should be optimized to pass a larger array of
2118387aabc5SAlan Cox  *	pages to vm_pager_get_pages() before it is applied to a non-
2119387aabc5SAlan Cox  *	OBJT_DEVICE object.
2120387aabc5SAlan Cox  *
2121387aabc5SAlan Cox  *	The object must be locked.
2122387aabc5SAlan Cox  */
2123387aabc5SAlan Cox boolean_t
vm_object_populate(vm_object_t object,vm_pindex_t start,vm_pindex_t end)2124387aabc5SAlan Cox vm_object_populate(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
2125387aabc5SAlan Cox {
2126093c7f39SGleb Smirnoff 	vm_page_t m;
2127387aabc5SAlan Cox 	vm_pindex_t pindex;
2128387aabc5SAlan Cox 	int rv;
2129387aabc5SAlan Cox 
213089f6b863SAttilio Rao 	VM_OBJECT_ASSERT_WLOCKED(object);
2131387aabc5SAlan Cox 	for (pindex = start; pindex < end; pindex++) {
2132c7575748SJeff Roberson 		rv = vm_page_grab_valid(&m, object, pindex, VM_ALLOC_NORMAL);
2133c7575748SJeff Roberson 		if (rv != VM_PAGER_OK)
2134387aabc5SAlan Cox 			break;
2135c7575748SJeff Roberson 
2136387aabc5SAlan Cox 		/*
2137387aabc5SAlan Cox 		 * Keep "m" busy because a subsequent iteration may unlock
2138387aabc5SAlan Cox 		 * the object.
2139387aabc5SAlan Cox 		 */
2140387aabc5SAlan Cox 	}
2141387aabc5SAlan Cox 	if (pindex > start) {
2142387aabc5SAlan Cox 		m = vm_page_lookup(object, start);
2143387aabc5SAlan Cox 		while (m != NULL && m->pindex < pindex) {
2144c7aebda8SAttilio Rao 			vm_page_xunbusy(m);
2145387aabc5SAlan Cox 			m = TAILQ_NEXT(m, listq);
2146387aabc5SAlan Cox 		}
2147387aabc5SAlan Cox 	}
2148387aabc5SAlan Cox 	return (pindex == end);
2149387aabc5SAlan Cox }
2150387aabc5SAlan Cox 
2151387aabc5SAlan Cox /*
2152df8bae1dSRodney W. Grimes  *	Routine:	vm_object_coalesce
2153df8bae1dSRodney W. Grimes  *	Function:	Coalesces two objects backing up adjoining
2154df8bae1dSRodney W. Grimes  *			regions of memory into a single object.
2155df8bae1dSRodney W. Grimes  *
2156df8bae1dSRodney W. Grimes  *	returns TRUE if objects were combined.
2157df8bae1dSRodney W. Grimes  *
2158df8bae1dSRodney W. Grimes  *	NOTE:	Only works at the moment if the second object is NULL -
2159df8bae1dSRodney W. Grimes  *		if it's not, which object do we lock first?
2160df8bae1dSRodney W. Grimes  *
2161df8bae1dSRodney W. Grimes  *	Parameters:
2162df8bae1dSRodney W. Grimes  *		prev_object	First object to coalesce
2163df8bae1dSRodney W. Grimes  *		prev_offset	Offset into prev_object
2164df8bae1dSRodney W. Grimes  *		prev_size	Size of reference to prev_object
216557a21abaSAlan Cox  *		next_size	Size of reference to the second object
21663364c323SKonstantin Belousov  *		reserved	Indicator that extension region has
21673364c323SKonstantin Belousov  *				swap accounted for
2168df8bae1dSRodney W. Grimes  *
2169df8bae1dSRodney W. Grimes  *	Conditions:
2170df8bae1dSRodney W. Grimes  *	The object must *not* be locked.
2171df8bae1dSRodney W. Grimes  */
21720d94caffSDavid Greenman 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)217357a21abaSAlan Cox vm_object_coalesce(vm_object_t prev_object, vm_ooffset_t prev_offset,
21743364c323SKonstantin Belousov     vm_size_t prev_size, vm_size_t next_size, boolean_t reserved)
2175df8bae1dSRodney W. Grimes {
2176ea41812fSAlan Cox 	vm_pindex_t next_pindex;
2177df8bae1dSRodney W. Grimes 
217800e1854aSAlan Cox 	if (prev_object == NULL)
2179df8bae1dSRodney W. Grimes 		return (TRUE);
218063967687SJeff Roberson 	if ((prev_object->flags & OBJ_ANON) == 0)
218130dcfc09SJohn Dyson 		return (FALSE);
218230dcfc09SJohn Dyson 
218363967687SJeff Roberson 	VM_OBJECT_WLOCK(prev_object);
2184df8bae1dSRodney W. Grimes 	/*
218598087a06SJeff Roberson 	 * Try to collapse the object first.
2186df8bae1dSRodney W. Grimes 	 */
2187df8bae1dSRodney W. Grimes 	vm_object_collapse(prev_object);
2188df8bae1dSRodney W. Grimes 
2189df8bae1dSRodney W. Grimes 	/*
21900d94caffSDavid Greenman 	 * Can't coalesce if: . more than one reference . paged out . shadows
21910d94caffSDavid Greenman 	 * another object . has a copy elsewhere (any of which mean that the
21920d94caffSDavid Greenman 	 * pages not mapped to prev_entry may be in use anyway)
2193df8bae1dSRodney W. Grimes 	 */
21948cc7e047SJohn Dyson 	if (prev_object->backing_object != NULL) {
219589f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(prev_object);
2196df8bae1dSRodney W. Grimes 		return (FALSE);
2197df8bae1dSRodney W. Grimes 	}
2198a316d390SJohn Dyson 
2199a316d390SJohn Dyson 	prev_size >>= PAGE_SHIFT;
2200a316d390SJohn Dyson 	next_size >>= PAGE_SHIFT;
220157a21abaSAlan Cox 	next_pindex = OFF_TO_IDX(prev_offset) + prev_size;
22028cc7e047SJohn Dyson 
22030e48e068SMark Johnston 	if (prev_object->ref_count > 1 &&
22040e48e068SMark Johnston 	    prev_object->size != next_pindex &&
22050e48e068SMark Johnston 	    (prev_object->flags & OBJ_ONEMAPPING) == 0) {
220689f6b863SAttilio Rao 		VM_OBJECT_WUNLOCK(prev_object);
22078cc7e047SJohn Dyson 		return (FALSE);
22088cc7e047SJohn Dyson 	}
22098cc7e047SJohn Dyson 
2210df8bae1dSRodney W. Grimes 	/*
22113364c323SKonstantin Belousov 	 * Account for the charge.
22123364c323SKonstantin Belousov 	 */
2213ef694c1aSEdward Tomasz Napierala 	if (prev_object->cred != NULL) {
22143364c323SKonstantin Belousov 		/*
22153364c323SKonstantin Belousov 		 * If prev_object was charged, then this mapping,
2216763df3ecSPedro F. Giffuni 		 * although not charged now, may become writable
2217ef694c1aSEdward Tomasz Napierala 		 * later. Non-NULL cred in the object would prevent
22183364c323SKonstantin Belousov 		 * swap reservation during enabling of the write
22193364c323SKonstantin Belousov 		 * access, so reserve swap now. Failed reservation
22203364c323SKonstantin Belousov 		 * cause allocation of the separate object for the map
22213364c323SKonstantin Belousov 		 * entry, and swap reservation for this entry is
22223364c323SKonstantin Belousov 		 * managed in appropriate time.
22233364c323SKonstantin Belousov 		 */
2224ef694c1aSEdward Tomasz Napierala 		if (!reserved && !swap_reserve_by_cred(ptoa(next_size),
2225ef694c1aSEdward Tomasz Napierala 		    prev_object->cred)) {
22269f790a17SKonstantin Belousov 			VM_OBJECT_WUNLOCK(prev_object);
22273364c323SKonstantin Belousov 			return (FALSE);
22283364c323SKonstantin Belousov 		}
22293364c323SKonstantin Belousov 		prev_object->charge += ptoa(next_size);
22303364c323SKonstantin Belousov 	}
22313364c323SKonstantin Belousov 
22323364c323SKonstantin Belousov 	/*
22330d94caffSDavid Greenman 	 * Remove any pages that may still be in the object from a previous
22340d94caffSDavid Greenman 	 * deallocation.
2235df8bae1dSRodney W. Grimes 	 */
2236ea41812fSAlan Cox 	if (next_pindex < prev_object->size) {
22376bbee8e2SAlan Cox 		vm_object_page_remove(prev_object, next_pindex, next_pindex +
22386bbee8e2SAlan Cox 		    next_size, 0);
22393364c323SKonstantin Belousov #if 0
2240ef694c1aSEdward Tomasz Napierala 		if (prev_object->cred != NULL) {
22413364c323SKonstantin Belousov 			KASSERT(prev_object->charge >=
22423364c323SKonstantin Belousov 			    ptoa(prev_object->size - next_pindex),
22433364c323SKonstantin Belousov 			    ("object %p overcharged 1 %jx %jx", prev_object,
22443364c323SKonstantin Belousov 				(uintmax_t)next_pindex, (uintmax_t)next_size));
22453364c323SKonstantin Belousov 			prev_object->charge -= ptoa(prev_object->size -
22463364c323SKonstantin Belousov 			    next_pindex);
22473364c323SKonstantin Belousov 		}
22483364c323SKonstantin Belousov #endif
2249ea41812fSAlan Cox 	}
2250df8bae1dSRodney W. Grimes 
2251df8bae1dSRodney W. Grimes 	/*
2252df8bae1dSRodney W. Grimes 	 * Extend the object if necessary.
2253df8bae1dSRodney W. Grimes 	 */
2254ea41812fSAlan Cox 	if (next_pindex + next_size > prev_object->size)
2255ea41812fSAlan Cox 		prev_object->size = next_pindex + next_size;
2256df8bae1dSRodney W. Grimes 
225789f6b863SAttilio Rao 	VM_OBJECT_WUNLOCK(prev_object);
2258df8bae1dSRodney W. Grimes 	return (TRUE);
2259df8bae1dSRodney W. Grimes }
2260df8bae1dSRodney W. Grimes 
2261b82d7897SDoug Moore /*
2262b82d7897SDoug Moore  * Fill in the m_dst array with up to *rbehind optional pages before m_src[0]
2263b82d7897SDoug Moore  * and up to *rahead optional pages after m_src[count - 1].  In both cases, stop
2264b82d7897SDoug Moore  * the filling-in short on encountering a cached page, an object boundary limit,
2265b82d7897SDoug Moore  * or an allocation error.  Update *rbehind and *rahead to indicate the number
2266b82d7897SDoug Moore  * of pages allocated.  Copy elements of m_src into array elements from
2267b82d7897SDoug Moore  * m_dst[*rbehind] to m_dst[*rbehind + count -1].
2268b82d7897SDoug Moore  */
2269b82d7897SDoug Moore void
vm_object_prepare_buf_pages(vm_object_t object,vm_page_t * ma_dst,int count,int * rbehind,int * rahead,vm_page_t * ma_src)2270b82d7897SDoug Moore vm_object_prepare_buf_pages(vm_object_t object, vm_page_t *ma_dst, int count,
2271b82d7897SDoug Moore     int *rbehind, int *rahead, vm_page_t *ma_src)
2272b82d7897SDoug Moore {
2273b82d7897SDoug Moore 	vm_pindex_t pindex;
2274b82d7897SDoug Moore 	vm_page_t m, mpred, msucc;
2275b82d7897SDoug Moore 
2276b82d7897SDoug Moore 	VM_OBJECT_ASSERT_LOCKED(object);
2277b82d7897SDoug Moore 	if (*rbehind != 0) {
2278b82d7897SDoug Moore 		m = ma_src[0];
2279b82d7897SDoug Moore 		pindex = m->pindex;
2280b82d7897SDoug Moore 		mpred = TAILQ_PREV(m, pglist, listq);
2281b82d7897SDoug Moore 		*rbehind = MIN(*rbehind,
2282b82d7897SDoug Moore 		    pindex - (mpred != NULL ? mpred->pindex + 1 : 0));
2283b82d7897SDoug Moore 		/* Stepping backward from pindex, mpred doesn't change. */
2284b82d7897SDoug Moore 		for (int i = 0; i < *rbehind; i++) {
2285b82d7897SDoug Moore 			m = vm_page_alloc_after(object, pindex - i - 1,
2286b82d7897SDoug Moore 			    VM_ALLOC_NORMAL, mpred);
2287b82d7897SDoug Moore 			if (m == NULL) {
2288b82d7897SDoug Moore 				/* Shift the array. */
2289b82d7897SDoug Moore 				for (int j = 0; j < i; j++)
2290b82d7897SDoug Moore 					ma_dst[j] = ma_dst[j + *rbehind - i];
2291b82d7897SDoug Moore 				*rbehind = i;
2292b82d7897SDoug Moore 				*rahead = 0;
2293b82d7897SDoug Moore 				break;
2294b82d7897SDoug Moore 			}
2295b82d7897SDoug Moore 			ma_dst[*rbehind - i - 1] = m;
2296b82d7897SDoug Moore 		}
2297b82d7897SDoug Moore 	}
2298b82d7897SDoug Moore 	for (int i = 0; i < count; i++)
2299b82d7897SDoug Moore 		ma_dst[*rbehind + i] = ma_src[i];
2300b82d7897SDoug Moore 	if (*rahead != 0) {
2301b82d7897SDoug Moore 		m = ma_src[count - 1];
2302b82d7897SDoug Moore 		pindex = m->pindex + 1;
2303b82d7897SDoug Moore 		msucc = TAILQ_NEXT(m, listq);
2304b82d7897SDoug Moore 		*rahead = MIN(*rahead,
2305b82d7897SDoug Moore 		    (msucc != NULL ? msucc->pindex : object->size) - pindex);
2306b82d7897SDoug Moore 		mpred = m;
2307b82d7897SDoug Moore 		for (int i = 0; i < *rahead; i++) {
2308b82d7897SDoug Moore 			m = vm_page_alloc_after(object, pindex + i,
2309b82d7897SDoug Moore 			    VM_ALLOC_NORMAL, mpred);
2310b82d7897SDoug Moore 			if (m == NULL) {
2311b82d7897SDoug Moore 				*rahead = i;
2312b82d7897SDoug Moore 				break;
2313b82d7897SDoug Moore 			}
2314b82d7897SDoug Moore 			ma_dst[*rbehind + count + i] = mpred = m;
2315b82d7897SDoug Moore 		}
2316b82d7897SDoug Moore 	}
2317b82d7897SDoug Moore }
2318b82d7897SDoug Moore 
23197a5a6352SMatthew Dillon void
vm_object_set_writeable_dirty_(vm_object_t object)2320180bcaa4SKonstantin Belousov vm_object_set_writeable_dirty_(vm_object_t object)
23217a5a6352SMatthew Dillon {
232267d0e293SJeff Roberson 	atomic_add_int(&object->generation, 1);
23237a5a6352SMatthew Dillon }
23247a5a6352SMatthew Dillon 
2325c23c555bSKonstantin Belousov bool
vm_object_mightbedirty_(vm_object_t object)2326c23c555bSKonstantin Belousov vm_object_mightbedirty_(vm_object_t object)
2327c23c555bSKonstantin Belousov {
2328c23c555bSKonstantin Belousov 	return (object->generation != object->cleangeneration);
2329c23c555bSKonstantin Belousov }
2330c23c555bSKonstantin Belousov 
233103462509SAlan Cox /*
233203462509SAlan Cox  *	vm_object_unwire:
233303462509SAlan Cox  *
233403462509SAlan Cox  *	For each page offset within the specified range of the given object,
233503462509SAlan Cox  *	find the highest-level page in the shadow chain and unwire it.  A page
233603462509SAlan Cox  *	must exist at every page offset, and the highest-level page must be
233703462509SAlan Cox  *	wired.
233803462509SAlan Cox  */
233903462509SAlan Cox void
vm_object_unwire(vm_object_t object,vm_ooffset_t offset,vm_size_t length,uint8_t queue)234003462509SAlan Cox vm_object_unwire(vm_object_t object, vm_ooffset_t offset, vm_size_t length,
234103462509SAlan Cox     uint8_t queue)
234203462509SAlan Cox {
234320e4afbfSKonstantin Belousov 	vm_object_t tobject, t1object;
234403462509SAlan Cox 	vm_page_t m, tm;
234503462509SAlan Cox 	vm_pindex_t end_pindex, pindex, tpindex;
234603462509SAlan Cox 	int depth, locked_depth;
234703462509SAlan Cox 
234803462509SAlan Cox 	KASSERT((offset & PAGE_MASK) == 0,
234903462509SAlan Cox 	    ("vm_object_unwire: offset is not page aligned"));
235003462509SAlan Cox 	KASSERT((length & PAGE_MASK) == 0,
235103462509SAlan Cox 	    ("vm_object_unwire: length is not a multiple of PAGE_SIZE"));
235203462509SAlan Cox 	/* The wired count of a fictitious page never changes. */
235303462509SAlan Cox 	if ((object->flags & OBJ_FICTITIOUS) != 0)
235403462509SAlan Cox 		return;
235503462509SAlan Cox 	pindex = OFF_TO_IDX(offset);
235603462509SAlan Cox 	end_pindex = pindex + atop(length);
235720e4afbfSKonstantin Belousov again:
235803462509SAlan Cox 	locked_depth = 1;
235903462509SAlan Cox 	VM_OBJECT_RLOCK(object);
236003462509SAlan Cox 	m = vm_page_find_least(object, pindex);
236103462509SAlan Cox 	while (pindex < end_pindex) {
236203462509SAlan Cox 		if (m == NULL || pindex < m->pindex) {
236303462509SAlan Cox 			/*
236403462509SAlan Cox 			 * The first object in the shadow chain doesn't
236503462509SAlan Cox 			 * contain a page at the current index.  Therefore,
236603462509SAlan Cox 			 * the page must exist in a backing object.
236703462509SAlan Cox 			 */
236803462509SAlan Cox 			tobject = object;
236903462509SAlan Cox 			tpindex = pindex;
237003462509SAlan Cox 			depth = 0;
237103462509SAlan Cox 			do {
237203462509SAlan Cox 				tpindex +=
237303462509SAlan Cox 				    OFF_TO_IDX(tobject->backing_object_offset);
237403462509SAlan Cox 				tobject = tobject->backing_object;
237503462509SAlan Cox 				KASSERT(tobject != NULL,
237603462509SAlan Cox 				    ("vm_object_unwire: missing page"));
237703462509SAlan Cox 				if ((tobject->flags & OBJ_FICTITIOUS) != 0)
237803462509SAlan Cox 					goto next_page;
237903462509SAlan Cox 				depth++;
238003462509SAlan Cox 				if (depth == locked_depth) {
238103462509SAlan Cox 					locked_depth++;
238203462509SAlan Cox 					VM_OBJECT_RLOCK(tobject);
238303462509SAlan Cox 				}
238403462509SAlan Cox 			} while ((tm = vm_page_lookup(tobject, tpindex)) ==
238503462509SAlan Cox 			    NULL);
238603462509SAlan Cox 		} else {
238703462509SAlan Cox 			tm = m;
238803462509SAlan Cox 			m = TAILQ_NEXT(m, listq);
238903462509SAlan Cox 		}
239063e97555SJeff Roberson 		if (vm_page_trysbusy(tm) == 0) {
239187e93ea6SMark Johnston 			for (tobject = object; locked_depth >= 1;
239220e4afbfSKonstantin Belousov 			    locked_depth--) {
239320e4afbfSKonstantin Belousov 				t1object = tobject->backing_object;
239487e93ea6SMark Johnston 				if (tm->object != tobject)
239520e4afbfSKonstantin Belousov 					VM_OBJECT_RUNLOCK(tobject);
239620e4afbfSKonstantin Belousov 				tobject = t1object;
239720e4afbfSKonstantin Belousov 			}
239887b64663SMark Johnston 			tobject = tm->object;
239987b64663SMark Johnston 			if (!vm_page_busy_sleep(tm, "unwbo",
240087b64663SMark Johnston 			    VM_ALLOC_IGN_SBUSY))
240187b64663SMark Johnston 				VM_OBJECT_RUNLOCK(tobject);
240220e4afbfSKonstantin Belousov 			goto again;
240320e4afbfSKonstantin Belousov 		}
240403462509SAlan Cox 		vm_page_unwire(tm, queue);
240563e97555SJeff Roberson 		vm_page_sunbusy(tm);
240603462509SAlan Cox next_page:
240703462509SAlan Cox 		pindex++;
240803462509SAlan Cox 	}
240903462509SAlan Cox 	/* Release the accumulated object locks. */
241020e4afbfSKonstantin Belousov 	for (tobject = object; locked_depth >= 1; locked_depth--) {
241120e4afbfSKonstantin Belousov 		t1object = tobject->backing_object;
241220e4afbfSKonstantin Belousov 		VM_OBJECT_RUNLOCK(tobject);
241320e4afbfSKonstantin Belousov 		tobject = t1object;
241403462509SAlan Cox 	}
241503462509SAlan Cox }
241603462509SAlan Cox 
24170951bd36SEric van Gyzen /*
24180951bd36SEric van Gyzen  * Return the vnode for the given object, or NULL if none exists.
24190951bd36SEric van Gyzen  * For tmpfs objects, the function may return NULL if there is
24200951bd36SEric van Gyzen  * no vnode allocated at the time of the call.
24210951bd36SEric van Gyzen  */
242263e4c6cdSEric van Gyzen struct vnode *
vm_object_vnode(vm_object_t object)242363e4c6cdSEric van Gyzen vm_object_vnode(vm_object_t object)
242463e4c6cdSEric van Gyzen {
24250951bd36SEric van Gyzen 	struct vnode *vp;
242663e4c6cdSEric van Gyzen 
242763e4c6cdSEric van Gyzen 	VM_OBJECT_ASSERT_LOCKED(object);
2428a7c198a2SKonstantin Belousov 	vm_pager_getvp(object, &vp, NULL);
24290951bd36SEric van Gyzen 	return (vp);
243063e4c6cdSEric van Gyzen }
243163e4c6cdSEric van Gyzen 
2432205be21dSJeff Roberson /*
2433205be21dSJeff Roberson  * Busy the vm object.  This prevents new pages belonging to the object from
2434205be21dSJeff Roberson  * becoming busy.  Existing pages persist as busy.  Callers are responsible
2435205be21dSJeff Roberson  * for checking page state before proceeding.
2436205be21dSJeff Roberson  */
2437205be21dSJeff Roberson void
vm_object_busy(vm_object_t obj)2438205be21dSJeff Roberson vm_object_busy(vm_object_t obj)
2439205be21dSJeff Roberson {
2440205be21dSJeff Roberson 
2441205be21dSJeff Roberson 	VM_OBJECT_ASSERT_LOCKED(obj);
2442205be21dSJeff Roberson 
2443c99d0c58SMark Johnston 	blockcount_acquire(&obj->busy, 1);
2444205be21dSJeff Roberson 	/* The fence is required to order loads of page busy. */
2445205be21dSJeff Roberson 	atomic_thread_fence_acq_rel();
2446205be21dSJeff Roberson }
2447205be21dSJeff Roberson 
2448205be21dSJeff Roberson void
vm_object_unbusy(vm_object_t obj)2449205be21dSJeff Roberson vm_object_unbusy(vm_object_t obj)
2450205be21dSJeff Roberson {
2451205be21dSJeff Roberson 
2452c99d0c58SMark Johnston 	blockcount_release(&obj->busy, 1);
2453205be21dSJeff Roberson }
2454205be21dSJeff Roberson 
2455205be21dSJeff Roberson void
vm_object_busy_wait(vm_object_t obj,const char * wmesg)2456205be21dSJeff Roberson vm_object_busy_wait(vm_object_t obj, const char *wmesg)
2457205be21dSJeff Roberson {
2458205be21dSJeff Roberson 
2459205be21dSJeff Roberson 	VM_OBJECT_ASSERT_UNLOCKED(obj);
2460205be21dSJeff Roberson 
2461c99d0c58SMark Johnston 	(void)blockcount_sleep(&obj->busy, NULL, wmesg, PVM);
2462205be21dSJeff Roberson }
2463205be21dSJeff Roberson 
2464cd37afd8SRick Macklem /*
2465cd37afd8SRick Macklem  * This function aims to determine if the object is mapped,
2466cd37afd8SRick Macklem  * specifically, if it is referenced by a vm_map_entry.  Because
2467cd37afd8SRick Macklem  * objects occasionally acquire transient references that do not
2468cd37afd8SRick Macklem  * represent a mapping, the method used here is inexact.  However, it
2469cd37afd8SRick Macklem  * has very low overhead and is good enough for the advisory
2470cd37afd8SRick Macklem  * vm.vmtotal sysctl.
2471cd37afd8SRick Macklem  */
2472cd37afd8SRick Macklem bool
vm_object_is_active(vm_object_t obj)2473cd37afd8SRick Macklem vm_object_is_active(vm_object_t obj)
2474cd37afd8SRick Macklem {
2475cd37afd8SRick Macklem 
24764cf9f5d8SKonstantin Belousov 	return (obj->ref_count > atomic_load_int(&obj->shadow_count));
2477cd37afd8SRick Macklem }
2478cd37afd8SRick Macklem 
2479ff87ae35SJohn Baldwin static int
vm_object_list_handler(struct sysctl_req * req,bool swap_only)248042812cccSKonstantin Belousov vm_object_list_handler(struct sysctl_req *req, bool swap_only)
2481ff87ae35SJohn Baldwin {
24820ecee546SKonstantin Belousov 	struct kinfo_vmobject *kvo;
2483ff87ae35SJohn Baldwin 	char *fullpath, *freepath;
2484ff87ae35SJohn Baldwin 	struct vnode *vp;
2485ff87ae35SJohn Baldwin 	struct vattr va;
2486ff87ae35SJohn Baldwin 	vm_object_t obj;
2487ff87ae35SJohn Baldwin 	vm_page_t m;
2488ecfbddf0SKonstantin Belousov 	u_long sp;
2489*1123986dSJohn Baldwin 	int count, error;
24906a3fbdc7SKonstantin Belousov 	key_t key;
24916a3fbdc7SKonstantin Belousov 	unsigned short seq;
249238f5f2a4SKonstantin Belousov 	bool want_path;
2493ff87ae35SJohn Baldwin 
2494ff87ae35SJohn Baldwin 	if (req->oldptr == NULL) {
2495ff87ae35SJohn Baldwin 		/*
2496ff87ae35SJohn Baldwin 		 * If an old buffer has not been provided, generate an
2497ff87ae35SJohn Baldwin 		 * estimate of the space needed for a subsequent call.
2498ff87ae35SJohn Baldwin 		 */
2499ff87ae35SJohn Baldwin 		mtx_lock(&vm_object_list_mtx);
2500ff87ae35SJohn Baldwin 		count = 0;
2501ff87ae35SJohn Baldwin 		TAILQ_FOREACH(obj, &vm_object_list, object_list) {
2502ff87ae35SJohn Baldwin 			if (obj->type == OBJT_DEAD)
2503ff87ae35SJohn Baldwin 				continue;
2504ff87ae35SJohn Baldwin 			count++;
2505ff87ae35SJohn Baldwin 		}
2506ff87ae35SJohn Baldwin 		mtx_unlock(&vm_object_list_mtx);
2507ff87ae35SJohn Baldwin 		return (SYSCTL_OUT(req, NULL, sizeof(struct kinfo_vmobject) *
2508ff87ae35SJohn Baldwin 		    count * 11 / 10));
2509ff87ae35SJohn Baldwin 	}
2510ff87ae35SJohn Baldwin 
251138f5f2a4SKonstantin Belousov 	want_path = !(swap_only || jailed(curthread->td_ucred));
2512b050ee6cSMark Johnston 	kvo = malloc(sizeof(*kvo), M_TEMP, M_WAITOK | M_ZERO);
2513ff87ae35SJohn Baldwin 	error = 0;
2514ff87ae35SJohn Baldwin 
2515ff87ae35SJohn Baldwin 	/*
2516ff87ae35SJohn Baldwin 	 * VM objects are type stable and are never removed from the
2517ff87ae35SJohn Baldwin 	 * list once added.  This allows us to safely read obj->object_list
2518ff87ae35SJohn Baldwin 	 * after reacquiring the VM object lock.
2519ff87ae35SJohn Baldwin 	 */
2520ff87ae35SJohn Baldwin 	mtx_lock(&vm_object_list_mtx);
2521ff87ae35SJohn Baldwin 	TAILQ_FOREACH(obj, &vm_object_list, object_list) {
252242812cccSKonstantin Belousov 		if (obj->type == OBJT_DEAD ||
252342812cccSKonstantin Belousov 		    (swap_only && (obj->flags & (OBJ_ANON | OBJ_SWAP)) == 0))
2524ff87ae35SJohn Baldwin 			continue;
2525ff87ae35SJohn Baldwin 		VM_OBJECT_RLOCK(obj);
252642812cccSKonstantin Belousov 		if (obj->type == OBJT_DEAD ||
252742812cccSKonstantin Belousov 		    (swap_only && (obj->flags & (OBJ_ANON | OBJ_SWAP)) == 0)) {
2528ff87ae35SJohn Baldwin 			VM_OBJECT_RUNLOCK(obj);
2529ff87ae35SJohn Baldwin 			continue;
2530ff87ae35SJohn Baldwin 		}
2531ff87ae35SJohn Baldwin 		mtx_unlock(&vm_object_list_mtx);
25320ecee546SKonstantin Belousov 		kvo->kvo_size = ptoa(obj->size);
25330ecee546SKonstantin Belousov 		kvo->kvo_resident = obj->resident_page_count;
25340ecee546SKonstantin Belousov 		kvo->kvo_ref_count = obj->ref_count;
25354cf9f5d8SKonstantin Belousov 		kvo->kvo_shadow_count = atomic_load_int(&obj->shadow_count);
25360ecee546SKonstantin Belousov 		kvo->kvo_memattr = obj->memattr;
25370ecee546SKonstantin Belousov 		kvo->kvo_active = 0;
25380ecee546SKonstantin Belousov 		kvo->kvo_inactive = 0;
25396a3fbdc7SKonstantin Belousov 		kvo->kvo_flags = 0;
25407738118eSKonstantin Belousov 		if (!swap_only) {
2541ff87ae35SJohn Baldwin 			TAILQ_FOREACH(m, &obj->memq, listq) {
2542ff87ae35SJohn Baldwin 				/*
2543ff87ae35SJohn Baldwin 				 * A page may belong to the object but be
2544ff87ae35SJohn Baldwin 				 * dequeued and set to PQ_NONE while the
2545ff87ae35SJohn Baldwin 				 * object lock is not held.  This makes the
2546ff87ae35SJohn Baldwin 				 * reads of m->queue below racy, and we do not
2547ff87ae35SJohn Baldwin 				 * count pages set to PQ_NONE.  However, this
2548ff87ae35SJohn Baldwin 				 * sysctl is only meant to give an
2549ff87ae35SJohn Baldwin 				 * approximation of the system anyway.
2550ff87ae35SJohn Baldwin 				 */
2551a86373bcSMark Johnston 				if (vm_page_active(m))
25520ecee546SKonstantin Belousov 					kvo->kvo_active++;
2553a86373bcSMark Johnston 				else if (vm_page_inactive(m))
25540ecee546SKonstantin Belousov 					kvo->kvo_inactive++;
2555a86373bcSMark Johnston 				else if (vm_page_in_laundry(m))
2556a86373bcSMark Johnston 					kvo->kvo_laundry++;
2557ff87ae35SJohn Baldwin 			}
25587738118eSKonstantin Belousov 		}
2559ff87ae35SJohn Baldwin 
25600ecee546SKonstantin Belousov 		kvo->kvo_vn_fileid = 0;
25610ecee546SKonstantin Belousov 		kvo->kvo_vn_fsid = 0;
25620ecee546SKonstantin Belousov 		kvo->kvo_vn_fsid_freebsd11 = 0;
2563ff87ae35SJohn Baldwin 		freepath = NULL;
2564ff87ae35SJohn Baldwin 		fullpath = "";
25657738118eSKonstantin Belousov 		vp = NULL;
256638f5f2a4SKonstantin Belousov 		kvo->kvo_type = vm_object_kvme_type(obj, want_path ? &vp :
256738f5f2a4SKonstantin Belousov 		    NULL);
2568ecfbddf0SKonstantin Belousov 		if (vp != NULL) {
2569ff87ae35SJohn Baldwin 			vref(vp);
2570ecfbddf0SKonstantin Belousov 		} else if ((obj->flags & OBJ_ANON) != 0) {
25717f3c78fbSMark Johnston 			MPASS(kvo->kvo_type == KVME_TYPE_SWAP);
2572ecfbddf0SKonstantin Belousov 			kvo->kvo_me = (uintptr_t)obj;
2573ecfbddf0SKonstantin Belousov 			/* tmpfs objs are reported as vnodes */
2574ecfbddf0SKonstantin Belousov 			kvo->kvo_backing_obj = (uintptr_t)obj->backing_object;
2575ecfbddf0SKonstantin Belousov 			sp = swap_pager_swapped_pages(obj);
2576ecfbddf0SKonstantin Belousov 			kvo->kvo_swapped = sp > UINT32_MAX ? UINT32_MAX : sp;
2577ecfbddf0SKonstantin Belousov 		}
2578*1123986dSJohn Baldwin 		if (obj->type == OBJT_DEVICE || obj->type == OBJT_MGTDEVICE) {
2579*1123986dSJohn Baldwin 			cdev_pager_get_path(obj, kvo->kvo_path,
2580d9daa28cSKonstantin Belousov 			    sizeof(kvo->kvo_path));
2581d9daa28cSKonstantin Belousov 		}
2582ff87ae35SJohn Baldwin 		VM_OBJECT_RUNLOCK(obj);
25836a3fbdc7SKonstantin Belousov 		if ((obj->flags & OBJ_SYSVSHM) != 0) {
25846a3fbdc7SKonstantin Belousov 			kvo->kvo_flags |= KVMO_FLAG_SYSVSHM;
25856a3fbdc7SKonstantin Belousov 			shmobjinfo(obj, &key, &seq);
25866a3fbdc7SKonstantin Belousov 			kvo->kvo_vn_fileid = key;
25876a3fbdc7SKonstantin Belousov 			kvo->kvo_vn_fsid_freebsd11 = seq;
25886a3fbdc7SKonstantin Belousov 		}
2589b0b18b57SKonstantin Belousov 		if ((obj->flags & OBJ_POSIXSHM) != 0) {
2590b0b18b57SKonstantin Belousov 			kvo->kvo_flags |= KVMO_FLAG_POSIXSHM;
2591b0b18b57SKonstantin Belousov 			shm_get_path(obj, kvo->kvo_path,
2592b0b18b57SKonstantin Belousov 			    sizeof(kvo->kvo_path));
2593b0b18b57SKonstantin Belousov 		}
2594ff87ae35SJohn Baldwin 		if (vp != NULL) {
2595feabaaf9SMateusz Guzik 			vn_fullpath(vp, &fullpath, &freepath);
2596ff87ae35SJohn Baldwin 			vn_lock(vp, LK_SHARED | LK_RETRY);
2597ff87ae35SJohn Baldwin 			if (VOP_GETATTR(vp, &va, curthread->td_ucred) == 0) {
25980ecee546SKonstantin Belousov 				kvo->kvo_vn_fileid = va.va_fileid;
25990ecee546SKonstantin Belousov 				kvo->kvo_vn_fsid = va.va_fsid;
26000ecee546SKonstantin Belousov 				kvo->kvo_vn_fsid_freebsd11 = va.va_fsid;
260169921123SKonstantin Belousov 								/* truncate */
2602ff87ae35SJohn Baldwin 			}
2603ff87ae35SJohn Baldwin 			vput(vp);
26040ecee546SKonstantin Belousov 			strlcpy(kvo->kvo_path, fullpath, sizeof(kvo->kvo_path));
2605ff87ae35SJohn Baldwin 			free(freepath, M_TEMP);
260671a66883SKonstantin Belousov 		}
2607ff87ae35SJohn Baldwin 
2608ff87ae35SJohn Baldwin 		/* Pack record size down */
26090ecee546SKonstantin Belousov 		kvo->kvo_structsize = offsetof(struct kinfo_vmobject, kvo_path)
26100ecee546SKonstantin Belousov 		    + strlen(kvo->kvo_path) + 1;
26110ecee546SKonstantin Belousov 		kvo->kvo_structsize = roundup(kvo->kvo_structsize,
2612ff87ae35SJohn Baldwin 		    sizeof(uint64_t));
26130ecee546SKonstantin Belousov 		error = SYSCTL_OUT(req, kvo, kvo->kvo_structsize);
2614350fc36bSKonstantin Belousov 		maybe_yield();
2615ff87ae35SJohn Baldwin 		mtx_lock(&vm_object_list_mtx);
2616ff87ae35SJohn Baldwin 		if (error)
2617ff87ae35SJohn Baldwin 			break;
2618ff87ae35SJohn Baldwin 	}
2619ff87ae35SJohn Baldwin 	mtx_unlock(&vm_object_list_mtx);
26200ecee546SKonstantin Belousov 	free(kvo, M_TEMP);
2621ff87ae35SJohn Baldwin 	return (error);
2622ff87ae35SJohn Baldwin }
26231b610624SKonstantin Belousov 
26241b610624SKonstantin Belousov static int
sysctl_vm_object_list(SYSCTL_HANDLER_ARGS)26251b610624SKonstantin Belousov sysctl_vm_object_list(SYSCTL_HANDLER_ARGS)
26261b610624SKonstantin Belousov {
262742812cccSKonstantin Belousov 	return (vm_object_list_handler(req, false));
26281b610624SKonstantin Belousov }
26291b610624SKonstantin Belousov 
2630ff87ae35SJohn Baldwin SYSCTL_PROC(_vm, OID_AUTO, objects, CTLTYPE_STRUCT | CTLFLAG_RW | CTLFLAG_SKIP |
2631ff87ae35SJohn Baldwin     CTLFLAG_MPSAFE, NULL, 0, sysctl_vm_object_list, "S,kinfo_vmobject",
2632ff87ae35SJohn Baldwin     "List of VM objects");
2633ff87ae35SJohn Baldwin 
263442812cccSKonstantin Belousov static int
sysctl_vm_object_list_swap(SYSCTL_HANDLER_ARGS)263542812cccSKonstantin Belousov sysctl_vm_object_list_swap(SYSCTL_HANDLER_ARGS)
263642812cccSKonstantin Belousov {
263742812cccSKonstantin Belousov 	return (vm_object_list_handler(req, true));
263842812cccSKonstantin Belousov }
263942812cccSKonstantin Belousov 
264042812cccSKonstantin Belousov /*
264142812cccSKonstantin Belousov  * This sysctl returns list of the anonymous or swap objects. Intent
264242812cccSKonstantin Belousov  * is to provide stripped optimized list useful to analyze swap use.
264342812cccSKonstantin Belousov  * Since technically non-swap (default) objects participate in the
264442812cccSKonstantin Belousov  * shadow chains, and are converted to swap type as needed by swap
264542812cccSKonstantin Belousov  * pager, we must report them.
264642812cccSKonstantin Belousov  */
264742812cccSKonstantin Belousov SYSCTL_PROC(_vm, OID_AUTO, swap_objects,
264842812cccSKonstantin Belousov     CTLTYPE_STRUCT | CTLFLAG_RW | CTLFLAG_SKIP | CTLFLAG_MPSAFE, NULL, 0,
264942812cccSKonstantin Belousov     sysctl_vm_object_list_swap, "S,kinfo_vmobject",
265042812cccSKonstantin Belousov     "List of swap VM objects");
265142812cccSKonstantin Belousov 
2652c7c34a24SBruce Evans #include "opt_ddb.h"
2653c3cb3e12SDavid Greenman #ifdef DDB
2654c7c34a24SBruce Evans #include <sys/kernel.h>
2655c7c34a24SBruce Evans 
2656ce9edcf5SPoul-Henning Kamp #include <sys/cons.h>
2657c7c34a24SBruce Evans 
2658c7c34a24SBruce Evans #include <ddb/ddb.h>
2659c7c34a24SBruce Evans 
2660cac597e4SBruce Evans static int
_vm_object_in_map(vm_map_t map,vm_object_t object,vm_map_entry_t entry)26611b40f8c0SMatthew Dillon _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry)
2662a1f6d91cSDavid Greenman {
2663a1f6d91cSDavid Greenman 	vm_map_t tmpm;
2664a1f6d91cSDavid Greenman 	vm_map_entry_t tmpe;
2665a1f6d91cSDavid Greenman 	vm_object_t obj;
2666a1f6d91cSDavid Greenman 
2667a1f6d91cSDavid Greenman 	if (map == 0)
2668a1f6d91cSDavid Greenman 		return 0;
2669a1f6d91cSDavid Greenman 
2670a1f6d91cSDavid Greenman 	if (entry == 0) {
26712288078cSDoug Moore 		VM_MAP_ENTRY_FOREACH(tmpe, map) {
2672a1f6d91cSDavid Greenman 			if (_vm_object_in_map(map, object, tmpe)) {
2673a1f6d91cSDavid Greenman 				return 1;
2674a1f6d91cSDavid Greenman 			}
2675a1f6d91cSDavid Greenman 		}
26769fdfe602SMatthew Dillon 	} else if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) {
26779fdfe602SMatthew Dillon 		tmpm = entry->object.sub_map;
26782288078cSDoug Moore 		VM_MAP_ENTRY_FOREACH(tmpe, tmpm) {
2679a1f6d91cSDavid Greenman 			if (_vm_object_in_map(tmpm, object, tmpe)) {
2680a1f6d91cSDavid Greenman 				return 1;
2681a1f6d91cSDavid Greenman 			}
2682a1f6d91cSDavid Greenman 		}
26838aef1712SMatthew Dillon 	} else if ((obj = entry->object.vm_object) != NULL) {
268424a1cce3SDavid Greenman 		for (; obj; obj = obj->backing_object)
2685a1f6d91cSDavid Greenman 			if (obj == object) {
2686a1f6d91cSDavid Greenman 				return 1;
2687a1f6d91cSDavid Greenman 			}
2688a1f6d91cSDavid Greenman 	}
2689a1f6d91cSDavid Greenman 	return 0;
2690a1f6d91cSDavid Greenman }
2691a1f6d91cSDavid Greenman 
2692cac597e4SBruce Evans static int
vm_object_in_map(vm_object_t object)26931b40f8c0SMatthew Dillon vm_object_in_map(vm_object_t object)
2694a1f6d91cSDavid Greenman {
2695a1f6d91cSDavid Greenman 	struct proc *p;
26961005a129SJohn Baldwin 
269760517fd1SJohn Baldwin 	/* sx_slock(&allproc_lock); */
2698f67af5c9SXin LI 	FOREACH_PROC_IN_SYSTEM(p) {
2699a1f6d91cSDavid Greenman 		if (!p->p_vmspace /* || (p->p_flag & (P_SYSTEM|P_WEXIT)) */)
2700a1f6d91cSDavid Greenman 			continue;
2701553629ebSJake Burkholder 		if (_vm_object_in_map(&p->p_vmspace->vm_map, object, 0)) {
270260517fd1SJohn Baldwin 			/* sx_sunlock(&allproc_lock); */
2703a1f6d91cSDavid Greenman 			return 1;
2704a1f6d91cSDavid Greenman 		}
2705553629ebSJake Burkholder 	}
270660517fd1SJohn Baldwin 	/* sx_sunlock(&allproc_lock); */
2707a1f6d91cSDavid Greenman 	if (_vm_object_in_map(kernel_map, object, 0))
2708a1f6d91cSDavid Greenman 		return 1;
2709a1f6d91cSDavid Greenman 	return 0;
2710a1f6d91cSDavid Greenman }
2711a1f6d91cSDavid Greenman 
DB_SHOW_COMMAND_FLAGS(vmochk,vm_object_check,DB_CMD_MEMSAFE)2712c84c5e00SMitchell Horne DB_SHOW_COMMAND_FLAGS(vmochk, vm_object_check, DB_CMD_MEMSAFE)
2713f708ef1bSPoul-Henning Kamp {
2714a1f6d91cSDavid Greenman 	vm_object_t object;
2715a1f6d91cSDavid Greenman 
2716a1f6d91cSDavid Greenman 	/*
2717a1f6d91cSDavid Greenman 	 * make sure that internal objs are in a map somewhere
2718a1f6d91cSDavid Greenman 	 * and none have zero ref counts.
2719a1f6d91cSDavid Greenman 	 */
2720cc64b484SAlfred Perlstein 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
272132362449SKonstantin Belousov 		if ((object->flags & OBJ_ANON) != 0) {
2722a1f6d91cSDavid Greenman 			if (object->ref_count == 0) {
27233efc015bSPeter Wemm 				db_printf("vmochk: internal obj has zero ref count: %ld\n",
27243efc015bSPeter Wemm 					(long)object->size);
2725a1f6d91cSDavid Greenman 			}
2726a1f6d91cSDavid Greenman 			if (!vm_object_in_map(object)) {
2727fc62ef1fSBruce Evans 				db_printf(
2728fc62ef1fSBruce Evans 			"vmochk: internal obj is not in a map: "
2729fc62ef1fSBruce Evans 			"ref: %d, size: %lu: 0x%lx, backing_object: %p\n",
2730fc62ef1fSBruce Evans 				    object->ref_count, (u_long)object->size,
2731fc62ef1fSBruce Evans 				    (u_long)object->size,
2732fc62ef1fSBruce Evans 				    (void *)object->backing_object);
2733a1f6d91cSDavid Greenman 			}
2734a1f6d91cSDavid Greenman 		}
27358cc8c586SEric van Gyzen 		if (db_pager_quit)
27368cc8c586SEric van Gyzen 			return;
2737a1f6d91cSDavid Greenman 	}
2738a1f6d91cSDavid Greenman }
2739a1f6d91cSDavid Greenman 
274026f9a767SRodney W. Grimes /*
2741df8bae1dSRodney W. Grimes  *	vm_object_print:	[ debug ]
2742df8bae1dSRodney W. Grimes  */
DB_SHOW_COMMAND(object,vm_object_print_static)2743c7c34a24SBruce Evans DB_SHOW_COMMAND(object, vm_object_print_static)
2744df8bae1dSRodney W. Grimes {
2745c7c34a24SBruce Evans 	/* XXX convert args. */
2746c7c34a24SBruce Evans 	vm_object_t object = (vm_object_t)addr;
2747c7c34a24SBruce Evans 	boolean_t full = have_addr;
2748c7c34a24SBruce Evans 
2749d031cff1SMatthew Dillon 	vm_page_t p;
2750df8bae1dSRodney W. Grimes 
2751c7c34a24SBruce Evans 	/* XXX count is an (unused) arg.  Avoid shadowing it. */
2752c7c34a24SBruce Evans #define	count	was_count
2753c7c34a24SBruce Evans 
2754d031cff1SMatthew Dillon 	int count;
2755df8bae1dSRodney W. Grimes 
2756df8bae1dSRodney W. Grimes 	if (object == NULL)
2757df8bae1dSRodney W. Grimes 		return;
2758df8bae1dSRodney W. Grimes 
2759eb95adefSBruce Evans 	db_iprintf(
2760ef694c1aSEdward Tomasz Napierala 	    "Object %p: type=%d, size=0x%jx, res=%d, ref=%d, flags=0x%x ruid %d charge %jx\n",
2761e47cd172SMaxime Henrion 	    object, (int)object->type, (uintmax_t)object->size,
27623364c323SKonstantin Belousov 	    object->resident_page_count, object->ref_count, object->flags,
2763ef694c1aSEdward Tomasz Napierala 	    object->cred ? object->cred->cr_ruid : -1, (uintmax_t)object->charge);
2764e47cd172SMaxime Henrion 	db_iprintf(" sref=%d, backing_object(%d)=(%p)+0x%jx\n",
27654cf9f5d8SKonstantin Belousov 	    atomic_load_int(&object->shadow_count),
2766eb95adefSBruce Evans 	    object->backing_object ? object->backing_object->ref_count : 0,
2767e47cd172SMaxime Henrion 	    object->backing_object, (uintmax_t)object->backing_object_offset);
2768df8bae1dSRodney W. Grimes 
2769df8bae1dSRodney W. Grimes 	if (!full)
2770df8bae1dSRodney W. Grimes 		return;
2771df8bae1dSRodney W. Grimes 
2772c7c34a24SBruce Evans 	db_indent += 2;
2773df8bae1dSRodney W. Grimes 	count = 0;
2774fc2ffbe6SPoul-Henning Kamp 	TAILQ_FOREACH(p, &object->memq, listq) {
2775df8bae1dSRodney W. Grimes 		if (count == 0)
2776c7c34a24SBruce Evans 			db_iprintf("memory:=");
2777df8bae1dSRodney W. Grimes 		else if (count == 6) {
2778c7c34a24SBruce Evans 			db_printf("\n");
2779c7c34a24SBruce Evans 			db_iprintf(" ...");
2780df8bae1dSRodney W. Grimes 			count = 0;
2781df8bae1dSRodney W. Grimes 		} else
2782c7c34a24SBruce Evans 			db_printf(",");
2783df8bae1dSRodney W. Grimes 		count++;
2784df8bae1dSRodney W. Grimes 
2785e47cd172SMaxime Henrion 		db_printf("(off=0x%jx,page=0x%jx)",
2786e47cd172SMaxime Henrion 		    (uintmax_t)p->pindex, (uintmax_t)VM_PAGE_TO_PHYS(p));
27878cc8c586SEric van Gyzen 
27888cc8c586SEric van Gyzen 		if (db_pager_quit)
27898cc8c586SEric van Gyzen 			break;
2790df8bae1dSRodney W. Grimes 	}
2791df8bae1dSRodney W. Grimes 	if (count != 0)
2792c7c34a24SBruce Evans 		db_printf("\n");
2793c7c34a24SBruce Evans 	db_indent -= 2;
2794df8bae1dSRodney W. Grimes }
27955070c7f8SJohn Dyson 
2796c7c34a24SBruce Evans /* XXX. */
2797c7c34a24SBruce Evans #undef count
2798c7c34a24SBruce Evans 
2799c7c34a24SBruce Evans /* XXX need this non-static entry for calling from vm_map_print. */
28005070c7f8SJohn Dyson void
vm_object_print(long addr,boolean_t have_addr,long count,char * modif)28011b40f8c0SMatthew Dillon vm_object_print(
28021b40f8c0SMatthew Dillon         /* db_expr_t */ long addr,
28031b40f8c0SMatthew Dillon 	boolean_t have_addr,
28041b40f8c0SMatthew Dillon 	/* db_expr_t */ long count,
28051b40f8c0SMatthew Dillon 	char *modif)
2806c7c34a24SBruce Evans {
2807c7c34a24SBruce Evans 	vm_object_print_static(addr, have_addr, count, modif);
2808c7c34a24SBruce Evans }
2809c7c34a24SBruce Evans 
DB_SHOW_COMMAND_FLAGS(vmopag,vm_object_print_pages,DB_CMD_MEMSAFE)2810c84c5e00SMitchell Horne DB_SHOW_COMMAND_FLAGS(vmopag, vm_object_print_pages, DB_CMD_MEMSAFE)
28115070c7f8SJohn Dyson {
28125070c7f8SJohn Dyson 	vm_object_t object;
2813bb2ac86fSKonstantin Belousov 	vm_pindex_t fidx;
2814bb2ac86fSKonstantin Belousov 	vm_paddr_t pa;
2815bb2ac86fSKonstantin Belousov 	vm_page_t m, prev_m;
281618048b6eSStephen J. Kiernan 	int rcount;
2817cc64b484SAlfred Perlstein 
2818cc64b484SAlfred Perlstein 	TAILQ_FOREACH(object, &vm_object_list, object_list) {
2819fc62ef1fSBruce Evans 		db_printf("new object: %p\n", (void *)object);
282018048b6eSStephen J. Kiernan 		if (db_pager_quit)
28215070c7f8SJohn Dyson 			return;
282218048b6eSStephen J. Kiernan 
28235070c7f8SJohn Dyson 		rcount = 0;
28245070c7f8SJohn Dyson 		fidx = 0;
2825bb2ac86fSKonstantin Belousov 		pa = -1;
2826bb2ac86fSKonstantin Belousov 		TAILQ_FOREACH(m, &object->memq, listq) {
2827bb2ac86fSKonstantin Belousov 			if ((prev_m = TAILQ_PREV(m, pglist, listq)) != NULL &&
2828bb2ac86fSKonstantin Belousov 			    prev_m->pindex + 1 != m->pindex) {
28295070c7f8SJohn Dyson 				if (rcount) {
28303efc015bSPeter Wemm 					db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
28313efc015bSPeter Wemm 						(long)fidx, rcount, (long)pa);
283218048b6eSStephen J. Kiernan 					if (db_pager_quit)
28335070c7f8SJohn Dyson 						return;
28345070c7f8SJohn Dyson 					rcount = 0;
28355070c7f8SJohn Dyson 				}
28365070c7f8SJohn Dyson 			}
28375070c7f8SJohn Dyson 			if (rcount &&
28385070c7f8SJohn Dyson 				(VM_PAGE_TO_PHYS(m) == pa + rcount * PAGE_SIZE)) {
28395070c7f8SJohn Dyson 				++rcount;
28405070c7f8SJohn Dyson 				continue;
28415070c7f8SJohn Dyson 			}
28425070c7f8SJohn Dyson 			if (rcount) {
28432446e4f0SAlan Cox 				db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
28443efc015bSPeter Wemm 					(long)fidx, rcount, (long)pa);
284518048b6eSStephen J. Kiernan 				if (db_pager_quit)
28465070c7f8SJohn Dyson 					return;
28475070c7f8SJohn Dyson 			}
2848bb2ac86fSKonstantin Belousov 			fidx = m->pindex;
28495070c7f8SJohn Dyson 			pa = VM_PAGE_TO_PHYS(m);
28505070c7f8SJohn Dyson 			rcount = 1;
28515070c7f8SJohn Dyson 		}
28525070c7f8SJohn Dyson 		if (rcount) {
28533efc015bSPeter Wemm 			db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
28543efc015bSPeter Wemm 				(long)fidx, rcount, (long)pa);
285518048b6eSStephen J. Kiernan 			if (db_pager_quit)
28565070c7f8SJohn Dyson 				return;
28575070c7f8SJohn Dyson 		}
28585070c7f8SJohn Dyson 	}
28595070c7f8SJohn Dyson }
2860c3cb3e12SDavid Greenman #endif /* DDB */
2861