]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/vm/vm_object.c
MFC r226642:
[FreeBSD/stable/8.git] / sys / vm / vm_object.c
1 /*-
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * The Mach Operating System project at Carnegie-Mellon University.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 4. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  *      from: @(#)vm_object.c   8.5 (Berkeley) 3/22/94
33  *
34  *
35  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
36  * All rights reserved.
37  *
38  * Authors: Avadis Tevanian, Jr., Michael Wayne Young
39  *
40  * Permission to use, copy, modify and distribute this software and
41  * its documentation is hereby granted, provided that both the copyright
42  * notice and this permission notice appear in all copies of the
43  * software, derivative works or modified versions, and any portions
44  * thereof, and that both notices appear in supporting documentation.
45  *
46  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
47  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
48  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
49  *
50  * Carnegie Mellon requests users of this software to return to
51  *
52  *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
53  *  School of Computer Science
54  *  Carnegie Mellon University
55  *  Pittsburgh PA 15213-3890
56  *
57  * any improvements or extensions that they make and grant Carnegie the
58  * rights to redistribute these changes.
59  */
60
61 /*
62  *      Virtual memory object module.
63  */
64
65 #include <sys/cdefs.h>
66 __FBSDID("$FreeBSD$");
67
68 #include "opt_vm.h"
69
70 #include <sys/param.h>
71 #include <sys/systm.h>
72 #include <sys/lock.h>
73 #include <sys/mman.h>
74 #include <sys/mount.h>
75 #include <sys/kernel.h>
76 #include <sys/sysctl.h>
77 #include <sys/mutex.h>
78 #include <sys/proc.h>           /* for curproc, pageproc */
79 #include <sys/socket.h>
80 #include <sys/resourcevar.h>
81 #include <sys/vnode.h>
82 #include <sys/vmmeter.h>
83 #include <sys/sx.h>
84
85 #include <vm/vm.h>
86 #include <vm/vm_param.h>
87 #include <vm/pmap.h>
88 #include <vm/vm_map.h>
89 #include <vm/vm_object.h>
90 #include <vm/vm_page.h>
91 #include <vm/vm_pageout.h>
92 #include <vm/vm_pager.h>
93 #include <vm/swap_pager.h>
94 #include <vm/vm_kern.h>
95 #include <vm/vm_extern.h>
96 #include <vm/vm_reserv.h>
97 #include <vm/uma.h>
98
99 static int msync_flush_flags = 0;
100 SYSCTL_INT(_vm, OID_AUTO, msync_flush_flags, CTLFLAG_RW, &msync_flush_flags, 0,
101     "Does nothing; kept for backward compatibility");
102
103 static int old_msync;
104 SYSCTL_INT(_vm, OID_AUTO, old_msync, CTLFLAG_RW, &old_msync, 0,
105     "Use old (insecure) msync behavior");
106
107 static int      vm_object_page_collect_flush(vm_object_t object, vm_page_t p,
108                     int pagerflags, int flags, int *clearobjflags);
109 static boolean_t vm_object_page_remove_write(vm_page_t p, int flags,
110                     int *clearobjflags);
111 static void     vm_object_qcollapse(vm_object_t object);
112 static void     vm_object_vndeallocate(vm_object_t object);
113
114 /*
115  *      Virtual memory objects maintain the actual data
116  *      associated with allocated virtual memory.  A given
117  *      page of memory exists within exactly one object.
118  *
119  *      An object is only deallocated when all "references"
120  *      are given up.  Only one "reference" to a given
121  *      region of an object should be writeable.
122  *
123  *      Associated with each object is a list of all resident
124  *      memory pages belonging to that object; this list is
125  *      maintained by the "vm_page" module, and locked by the object's
126  *      lock.
127  *
128  *      Each object also records a "pager" routine which is
129  *      used to retrieve (and store) pages to the proper backing
130  *      storage.  In addition, objects may be backed by other
131  *      objects from which they were virtual-copied.
132  *
133  *      The only items within the object structure which are
134  *      modified after time of creation are:
135  *              reference count         locked by object's lock
136  *              pager routine           locked by object's lock
137  *
138  */
139
140 struct object_q vm_object_list;
141 struct mtx vm_object_list_mtx;  /* lock for object list and count */
142
143 struct vm_object kernel_object_store;
144 struct vm_object kmem_object_store;
145
146 SYSCTL_NODE(_vm_stats, OID_AUTO, object, CTLFLAG_RD, 0, "VM object stats");
147
148 static long object_collapses;
149 SYSCTL_LONG(_vm_stats_object, OID_AUTO, collapses, CTLFLAG_RD,
150     &object_collapses, 0, "VM object collapses");
151
152 static long object_bypasses;
153 SYSCTL_LONG(_vm_stats_object, OID_AUTO, bypasses, CTLFLAG_RD,
154     &object_bypasses, 0, "VM object bypasses");
155
156 static uma_zone_t obj_zone;
157
158 static int vm_object_zinit(void *mem, int size, int flags);
159
160 #ifdef INVARIANTS
161 static void vm_object_zdtor(void *mem, int size, void *arg);
162
163 static void
164 vm_object_zdtor(void *mem, int size, void *arg)
165 {
166         vm_object_t object;
167
168         object = (vm_object_t)mem;
169         KASSERT(TAILQ_EMPTY(&object->memq),
170             ("object %p has resident pages",
171             object));
172 #if VM_NRESERVLEVEL > 0
173         KASSERT(LIST_EMPTY(&object->rvq),
174             ("object %p has reservations",
175             object));
176 #endif
177         KASSERT(object->cache == NULL,
178             ("object %p has cached pages",
179             object));
180         KASSERT(object->paging_in_progress == 0,
181             ("object %p paging_in_progress = %d",
182             object, object->paging_in_progress));
183         KASSERT(object->resident_page_count == 0,
184             ("object %p resident_page_count = %d",
185             object, object->resident_page_count));
186         KASSERT(object->shadow_count == 0,
187             ("object %p shadow_count = %d",
188             object, object->shadow_count));
189 }
190 #endif
191
192 static int
193 vm_object_zinit(void *mem, int size, int flags)
194 {
195         vm_object_t object;
196
197         object = (vm_object_t)mem;
198         bzero(&object->mtx, sizeof(object->mtx));
199         VM_OBJECT_LOCK_INIT(object, "standard object");
200
201         /* These are true for any object that has been freed */
202         object->paging_in_progress = 0;
203         object->resident_page_count = 0;
204         object->shadow_count = 0;
205         return (0);
206 }
207
208 void
209 _vm_object_allocate(objtype_t type, vm_pindex_t size, vm_object_t object)
210 {
211
212         TAILQ_INIT(&object->memq);
213         LIST_INIT(&object->shadow_head);
214
215         object->root = NULL;
216         object->type = type;
217         object->size = size;
218         object->generation = 1;
219         object->ref_count = 1;
220         object->memattr = VM_MEMATTR_DEFAULT;
221         object->flags = 0;
222         object->uip = NULL;
223         object->charge = 0;
224         if ((object->type == OBJT_DEFAULT) || (object->type == OBJT_SWAP))
225                 object->flags = OBJ_ONEMAPPING;
226         object->pg_color = 0;
227         object->handle = NULL;
228         object->backing_object = NULL;
229         object->backing_object_offset = (vm_ooffset_t) 0;
230 #if VM_NRESERVLEVEL > 0
231         LIST_INIT(&object->rvq);
232 #endif
233         object->cache = NULL;
234
235         mtx_lock(&vm_object_list_mtx);
236         TAILQ_INSERT_TAIL(&vm_object_list, object, object_list);
237         mtx_unlock(&vm_object_list_mtx);
238 }
239
240 /*
241  *      vm_object_init:
242  *
243  *      Initialize the VM objects module.
244  */
245 void
246 vm_object_init(void)
247 {
248         TAILQ_INIT(&vm_object_list);
249         mtx_init(&vm_object_list_mtx, "vm object_list", NULL, MTX_DEF);
250         
251         VM_OBJECT_LOCK_INIT(kernel_object, "kernel object");
252         _vm_object_allocate(OBJT_PHYS, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),
253             kernel_object);
254 #if VM_NRESERVLEVEL > 0
255         kernel_object->flags |= OBJ_COLORED;
256         kernel_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
257 #endif
258
259         VM_OBJECT_LOCK_INIT(kmem_object, "kmem object");
260         _vm_object_allocate(OBJT_PHYS, OFF_TO_IDX(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS),
261             kmem_object);
262 #if VM_NRESERVLEVEL > 0
263         kmem_object->flags |= OBJ_COLORED;
264         kmem_object->pg_color = (u_short)atop(VM_MIN_KERNEL_ADDRESS);
265 #endif
266
267         /*
268          * The lock portion of struct vm_object must be type stable due
269          * to vm_pageout_fallback_object_lock locking a vm object
270          * without holding any references to it.
271          */
272         obj_zone = uma_zcreate("VM OBJECT", sizeof (struct vm_object), NULL,
273 #ifdef INVARIANTS
274             vm_object_zdtor,
275 #else
276             NULL,
277 #endif
278             vm_object_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_VM|UMA_ZONE_NOFREE);
279 }
280
281 void
282 vm_object_clear_flag(vm_object_t object, u_short bits)
283 {
284
285         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
286         object->flags &= ~bits;
287 }
288
289 /*
290  *      Sets the default memory attribute for the specified object.  Pages
291  *      that are allocated to this object are by default assigned this memory
292  *      attribute.
293  *
294  *      Presently, this function must be called before any pages are allocated
295  *      to the object.  In the future, this requirement may be relaxed for
296  *      "default" and "swap" objects.
297  */
298 int
299 vm_object_set_memattr(vm_object_t object, vm_memattr_t memattr)
300 {
301
302         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
303         switch (object->type) {
304         case OBJT_DEFAULT:
305         case OBJT_DEVICE:
306         case OBJT_PHYS:
307         case OBJT_SG:
308         case OBJT_SWAP:
309         case OBJT_VNODE:
310                 if (!TAILQ_EMPTY(&object->memq))
311                         return (KERN_FAILURE);
312                 break;
313         case OBJT_DEAD:
314                 return (KERN_INVALID_ARGUMENT);
315         }
316         object->memattr = memattr;
317         return (KERN_SUCCESS);
318 }
319
320 void
321 vm_object_pip_add(vm_object_t object, short i)
322 {
323
324         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
325         object->paging_in_progress += i;
326 }
327
328 void
329 vm_object_pip_subtract(vm_object_t object, short i)
330 {
331
332         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
333         object->paging_in_progress -= i;
334 }
335
336 void
337 vm_object_pip_wakeup(vm_object_t object)
338 {
339
340         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
341         object->paging_in_progress--;
342         if ((object->flags & OBJ_PIPWNT) && object->paging_in_progress == 0) {
343                 vm_object_clear_flag(object, OBJ_PIPWNT);
344                 wakeup(object);
345         }
346 }
347
348 void
349 vm_object_pip_wakeupn(vm_object_t object, short i)
350 {
351
352         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
353         if (i)
354                 object->paging_in_progress -= i;
355         if ((object->flags & OBJ_PIPWNT) && object->paging_in_progress == 0) {
356                 vm_object_clear_flag(object, OBJ_PIPWNT);
357                 wakeup(object);
358         }
359 }
360
361 void
362 vm_object_pip_wait(vm_object_t object, char *waitid)
363 {
364
365         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
366         while (object->paging_in_progress) {
367                 object->flags |= OBJ_PIPWNT;
368                 msleep(object, VM_OBJECT_MTX(object), PVM, waitid, 0);
369         }
370 }
371
372 /*
373  *      vm_object_allocate:
374  *
375  *      Returns a new object with the given size.
376  */
377 vm_object_t
378 vm_object_allocate(objtype_t type, vm_pindex_t size)
379 {
380         vm_object_t object;
381
382         object = (vm_object_t)uma_zalloc(obj_zone, M_WAITOK);
383         _vm_object_allocate(type, size, object);
384         return (object);
385 }
386
387
388 /*
389  *      vm_object_reference:
390  *
391  *      Gets another reference to the given object.  Note: OBJ_DEAD
392  *      objects can be referenced during final cleaning.
393  */
394 void
395 vm_object_reference(vm_object_t object)
396 {
397         if (object == NULL)
398                 return;
399         VM_OBJECT_LOCK(object);
400         vm_object_reference_locked(object);
401         VM_OBJECT_UNLOCK(object);
402 }
403
404 /*
405  *      vm_object_reference_locked:
406  *
407  *      Gets another reference to the given object.
408  *
409  *      The object must be locked.
410  */
411 void
412 vm_object_reference_locked(vm_object_t object)
413 {
414         struct vnode *vp;
415
416         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
417         object->ref_count++;
418         if (object->type == OBJT_VNODE) {
419                 vp = object->handle;
420                 vref(vp);
421         }
422 }
423
424 /*
425  * Handle deallocating an object of type OBJT_VNODE.
426  */
427 static void
428 vm_object_vndeallocate(vm_object_t object)
429 {
430         struct vnode *vp = (struct vnode *) object->handle;
431
432         VFS_ASSERT_GIANT(vp->v_mount);
433         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
434         KASSERT(object->type == OBJT_VNODE,
435             ("vm_object_vndeallocate: not a vnode object"));
436         KASSERT(vp != NULL, ("vm_object_vndeallocate: missing vp"));
437 #ifdef INVARIANTS
438         if (object->ref_count == 0) {
439                 vprint("vm_object_vndeallocate", vp);
440                 panic("vm_object_vndeallocate: bad object reference count");
441         }
442 #endif
443
444         if (object->ref_count > 1) {
445                 object->ref_count--;
446                 VM_OBJECT_UNLOCK(object);
447                 /* vrele may need the vnode lock. */
448                 vrele(vp);
449         } else {
450                 vhold(vp);
451                 VM_OBJECT_UNLOCK(object);
452                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
453                 vdrop(vp);
454                 VM_OBJECT_LOCK(object);
455                 object->ref_count--;
456                 if (object->type == OBJT_DEAD) {
457                         VM_OBJECT_UNLOCK(object);
458                         VOP_UNLOCK(vp, 0);
459                 } else {
460                         if (object->ref_count == 0)
461                                 vp->v_vflag &= ~VV_TEXT;
462                         VM_OBJECT_UNLOCK(object);
463                         vput(vp);
464                 }
465         }
466 }
467
468 /*
469  *      vm_object_deallocate:
470  *
471  *      Release a reference to the specified object,
472  *      gained either through a vm_object_allocate
473  *      or a vm_object_reference call.  When all references
474  *      are gone, storage associated with this object
475  *      may be relinquished.
476  *
477  *      No object may be locked.
478  */
479 void
480 vm_object_deallocate(vm_object_t object)
481 {
482         vm_object_t temp;
483
484         while (object != NULL) {
485                 int vfslocked;
486
487                 vfslocked = 0;
488         restart:
489                 VM_OBJECT_LOCK(object);
490                 if (object->type == OBJT_VNODE) {
491                         struct vnode *vp = (struct vnode *) object->handle;
492
493                         /*
494                          * Conditionally acquire Giant for a vnode-backed
495                          * object.  We have to be careful since the type of
496                          * a vnode object can change while the object is
497                          * unlocked.
498                          */
499                         if (VFS_NEEDSGIANT(vp->v_mount) && !vfslocked) {
500                                 vfslocked = 1;
501                                 if (!mtx_trylock(&Giant)) {
502                                         VM_OBJECT_UNLOCK(object);
503                                         mtx_lock(&Giant);
504                                         goto restart;
505                                 }
506                         }
507                         vm_object_vndeallocate(object);
508                         VFS_UNLOCK_GIANT(vfslocked);
509                         return;
510                 } else
511                         /*
512                          * This is to handle the case that the object
513                          * changed type while we dropped its lock to
514                          * obtain Giant.
515                          */
516                         VFS_UNLOCK_GIANT(vfslocked);
517
518                 KASSERT(object->ref_count != 0,
519                         ("vm_object_deallocate: object deallocated too many times: %d", object->type));
520
521                 /*
522                  * If the reference count goes to 0 we start calling
523                  * vm_object_terminate() on the object chain.
524                  * A ref count of 1 may be a special case depending on the
525                  * shadow count being 0 or 1.
526                  */
527                 object->ref_count--;
528                 if (object->ref_count > 1) {
529                         VM_OBJECT_UNLOCK(object);
530                         return;
531                 } else if (object->ref_count == 1) {
532                         if (object->shadow_count == 0 &&
533                             object->handle == NULL &&
534                             (object->type == OBJT_DEFAULT ||
535                              object->type == OBJT_SWAP)) {
536                                 vm_object_set_flag(object, OBJ_ONEMAPPING);
537                         } else if ((object->shadow_count == 1) &&
538                             (object->handle == NULL) &&
539                             (object->type == OBJT_DEFAULT ||
540                              object->type == OBJT_SWAP)) {
541                                 vm_object_t robject;
542
543                                 robject = LIST_FIRST(&object->shadow_head);
544                                 KASSERT(robject != NULL,
545                                     ("vm_object_deallocate: ref_count: %d, shadow_count: %d",
546                                          object->ref_count,
547                                          object->shadow_count));
548                                 if (!VM_OBJECT_TRYLOCK(robject)) {
549                                         /*
550                                          * Avoid a potential deadlock.
551                                          */
552                                         object->ref_count++;
553                                         VM_OBJECT_UNLOCK(object);
554                                         /*
555                                          * More likely than not the thread
556                                          * holding robject's lock has lower
557                                          * priority than the current thread.
558                                          * Let the lower priority thread run.
559                                          */
560                                         pause("vmo_de", 1);
561                                         continue;
562                                 }
563                                 /*
564                                  * Collapse object into its shadow unless its
565                                  * shadow is dead.  In that case, object will
566                                  * be deallocated by the thread that is
567                                  * deallocating its shadow.
568                                  */
569                                 if ((robject->flags & OBJ_DEAD) == 0 &&
570                                     (robject->handle == NULL) &&
571                                     (robject->type == OBJT_DEFAULT ||
572                                      robject->type == OBJT_SWAP)) {
573
574                                         robject->ref_count++;
575 retry:
576                                         if (robject->paging_in_progress) {
577                                                 VM_OBJECT_UNLOCK(object);
578                                                 vm_object_pip_wait(robject,
579                                                     "objde1");
580                                                 temp = robject->backing_object;
581                                                 if (object == temp) {
582                                                         VM_OBJECT_LOCK(object);
583                                                         goto retry;
584                                                 }
585                                         } else if (object->paging_in_progress) {
586                                                 VM_OBJECT_UNLOCK(robject);
587                                                 object->flags |= OBJ_PIPWNT;
588                                                 msleep(object,
589                                                     VM_OBJECT_MTX(object),
590                                                     PDROP | PVM, "objde2", 0);
591                                                 VM_OBJECT_LOCK(robject);
592                                                 temp = robject->backing_object;
593                                                 if (object == temp) {
594                                                         VM_OBJECT_LOCK(object);
595                                                         goto retry;
596                                                 }
597                                         } else
598                                                 VM_OBJECT_UNLOCK(object);
599
600                                         if (robject->ref_count == 1) {
601                                                 robject->ref_count--;
602                                                 object = robject;
603                                                 goto doterm;
604                                         }
605                                         object = robject;
606                                         vm_object_collapse(object);
607                                         VM_OBJECT_UNLOCK(object);
608                                         continue;
609                                 }
610                                 VM_OBJECT_UNLOCK(robject);
611                         }
612                         VM_OBJECT_UNLOCK(object);
613                         return;
614                 }
615 doterm:
616                 temp = object->backing_object;
617                 if (temp != NULL) {
618                         VM_OBJECT_LOCK(temp);
619                         LIST_REMOVE(object, shadow_list);
620                         temp->shadow_count--;
621                         VM_OBJECT_UNLOCK(temp);
622                         object->backing_object = NULL;
623                 }
624                 /*
625                  * Don't double-terminate, we could be in a termination
626                  * recursion due to the terminate having to sync data
627                  * to disk.
628                  */
629                 if ((object->flags & OBJ_DEAD) == 0)
630                         vm_object_terminate(object);
631                 else
632                         VM_OBJECT_UNLOCK(object);
633                 object = temp;
634         }
635 }
636
637 /*
638  *      vm_object_destroy removes the object from the global object list
639  *      and frees the space for the object.
640  */
641 void
642 vm_object_destroy(vm_object_t object)
643 {
644
645         /*
646          * Remove the object from the global object list.
647          */
648         mtx_lock(&vm_object_list_mtx);
649         TAILQ_REMOVE(&vm_object_list, object, object_list);
650         mtx_unlock(&vm_object_list_mtx);
651
652         /*
653          * Release the allocation charge.
654          */
655         if (object->uip != NULL) {
656                 KASSERT(object->type == OBJT_DEFAULT ||
657                     object->type == OBJT_SWAP,
658                     ("vm_object_terminate: non-swap obj %p has uip",
659                      object));
660                 swap_release_by_uid(object->charge, object->uip);
661                 object->charge = 0;
662                 uifree(object->uip);
663                 object->uip = NULL;
664         }
665
666         /*
667          * Free the space for the object.
668          */
669         uma_zfree(obj_zone, object);
670 }
671
672 /*
673  *      vm_object_terminate actually destroys the specified object, freeing
674  *      up all previously used resources.
675  *
676  *      The object must be locked.
677  *      This routine may block.
678  */
679 void
680 vm_object_terminate(vm_object_t object)
681 {
682         vm_page_t p;
683
684         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
685
686         /*
687          * Make sure no one uses us.
688          */
689         vm_object_set_flag(object, OBJ_DEAD);
690
691         /*
692          * wait for the pageout daemon to be done with the object
693          */
694         vm_object_pip_wait(object, "objtrm");
695
696         KASSERT(!object->paging_in_progress,
697                 ("vm_object_terminate: pageout in progress"));
698
699         /*
700          * Clean and free the pages, as appropriate. All references to the
701          * object are gone, so we don't need to lock it.
702          */
703         if (object->type == OBJT_VNODE) {
704                 struct vnode *vp = (struct vnode *)object->handle;
705
706                 /*
707                  * Clean pages and flush buffers.
708                  */
709                 vm_object_page_clean(object, 0, 0, OBJPC_SYNC);
710                 VM_OBJECT_UNLOCK(object);
711
712                 vinvalbuf(vp, V_SAVE, 0, 0);
713
714                 VM_OBJECT_LOCK(object);
715         }
716
717         KASSERT(object->ref_count == 0, 
718                 ("vm_object_terminate: object with references, ref_count=%d",
719                 object->ref_count));
720
721         /*
722          * Now free any remaining pages. For internal objects, this also
723          * removes them from paging queues. Don't free wired pages, just
724          * remove them from the object. 
725          */
726         vm_page_lock_queues();
727         while ((p = TAILQ_FIRST(&object->memq)) != NULL) {
728                 KASSERT(!p->busy && (p->oflags & VPO_BUSY) == 0,
729                         ("vm_object_terminate: freeing busy page %p "
730                         "p->busy = %d, p->oflags %x\n", p, p->busy, p->oflags));
731                 if (p->wire_count == 0) {
732                         vm_page_free(p);
733                         cnt.v_pfree++;
734                 } else {
735                         vm_page_remove(p);
736                 }
737         }
738         vm_page_unlock_queues();
739
740 #if VM_NRESERVLEVEL > 0
741         if (__predict_false(!LIST_EMPTY(&object->rvq)))
742                 vm_reserv_break_all(object);
743 #endif
744         if (__predict_false(object->cache != NULL))
745                 vm_page_cache_free(object, 0, 0);
746
747         /*
748          * Let the pager know object is dead.
749          */
750         vm_pager_deallocate(object);
751         VM_OBJECT_UNLOCK(object);
752
753         vm_object_destroy(object);
754 }
755
756 static boolean_t
757 vm_object_page_remove_write(vm_page_t p, int flags, int *clearobjflags)
758 {
759
760         /*
761          * If we have been asked to skip nosync pages and this is a
762          * nosync page, skip it.  Note that the object flags were not
763          * cleared in this case so we do not have to set them.
764          */
765         if ((flags & OBJPC_NOSYNC) != 0 && (p->oflags & VPO_NOSYNC) != 0) {
766                 *clearobjflags = 0;
767                 return (FALSE);
768         } else {
769                 pmap_remove_write(p);
770                 return (p->dirty != 0);
771         }
772 }
773
774 /*
775  *      vm_object_page_clean
776  *
777  *      Clean all dirty pages in the specified range of object.  Leaves page 
778  *      on whatever queue it is currently on.   If NOSYNC is set then do not
779  *      write out pages with VPO_NOSYNC set (originally comes from MAP_NOSYNC),
780  *      leaving the object dirty.
781  *
782  *      When stuffing pages asynchronously, allow clustering.  XXX we need a
783  *      synchronous clustering mode implementation.
784  *
785  *      Odd semantics: if start == end, we clean everything.
786  *
787  *      The object must be locked.
788  */
789 void
790 vm_object_page_clean(vm_object_t object, vm_pindex_t start, vm_pindex_t end,
791     int flags)
792 {
793         vm_page_t np, p;
794         vm_pindex_t pi, tend;
795         int clearobjflags, curgeneration, n, pagerflags;
796
797         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
798         KASSERT(object->type == OBJT_VNODE, ("Not a vnode object"));
799         if ((object->flags & OBJ_MIGHTBEDIRTY) == 0 ||
800             object->resident_page_count == 0)
801                 return;
802
803         pagerflags = (flags & (OBJPC_SYNC | OBJPC_INVAL)) != 0 ?
804             VM_PAGER_PUT_SYNC : VM_PAGER_CLUSTER_OK;
805         pagerflags |= (flags & OBJPC_INVAL) != 0 ? VM_PAGER_PUT_INVAL : 0;
806
807         tend = (end == 0) ? object->size : end;
808
809         vm_object_set_flag(object, OBJ_CLEANING);
810
811         vm_page_lock_queues();
812
813         /*
814          * Make the page read-only so we can then clear the object flags.
815          *
816          * However, if this is a nosync mmap then the object is likely to 
817          * stay dirty so do not mess with the page and do not clear the
818          * object flags.
819          */
820         clearobjflags = 1;
821
822 rescan:
823         curgeneration = object->generation;
824
825         for (p = vm_page_find_least(object, start); p != NULL; p = np) {
826                 pi = p->pindex;
827                 if (pi >= tend)
828                         break;
829                 np = TAILQ_NEXT(p, listq);
830                 if (p->valid == 0)
831                         continue;
832                 if (vm_page_sleep_if_busy(p, TRUE, "vpcwai")) {
833                         vm_page_lock_queues();
834                         if (object->generation != curgeneration)
835                                 goto rescan;
836                         np = vm_page_find_least(object, pi);
837                         continue;
838                 }
839                 if (!vm_object_page_remove_write(p, flags, &clearobjflags))
840                         continue;
841
842                 n = vm_object_page_collect_flush(object, p, pagerflags,
843                     flags, &clearobjflags);
844                 if (object->generation != curgeneration)
845                         goto rescan;
846
847                 /*
848                  * If the VOP_PUTPAGES() did a truncated write, so
849                  * that even the first page of the run is not fully
850                  * written, vm_pageout_flush() returns 0 as the run
851                  * length.  Since the condition that caused truncated
852                  * write may be permanent, e.g. exhausted free space,
853                  * accepting n == 0 would cause an infinite loop.
854                  *
855                  * Forwarding the iterator leaves the unwritten page
856                  * behind, but there is not much we can do there if
857                  * filesystem refuses to write it.
858                  */
859                 if (n == 0)
860                         n = 1;
861                 np = vm_page_find_least(object, pi + n);
862         }
863         vm_page_unlock_queues();
864 #if 0
865         VOP_FSYNC(vp, (pagerflags & VM_PAGER_PUT_SYNC) ? MNT_WAIT : 0);
866 #endif
867
868         vm_object_clear_flag(object, OBJ_CLEANING);
869         if (clearobjflags && start == 0 && tend == object->size)
870                 vm_object_clear_flag(object, OBJ_MIGHTBEDIRTY);
871 }
872
873 static int
874 vm_object_page_collect_flush(vm_object_t object, vm_page_t p, int pagerflags,
875     int flags, int *clearobjflags)
876 {
877         vm_page_t ma[vm_pageout_page_count], p_first, tp;
878         int count, i, mreq, runlen;
879
880         mtx_assert(&vm_page_queue_mtx, MA_OWNED);
881
882         count = 1;
883         mreq = 0;
884
885         for (tp = p; count < vm_pageout_page_count; count++) {
886                 tp = vm_page_next(tp);
887                 if (tp == NULL || tp->busy != 0 || (tp->oflags & VPO_BUSY) != 0)
888                         break;
889                 if (!vm_object_page_remove_write(tp, flags, clearobjflags))
890                         break;
891         }
892
893         for (p_first = p; count < vm_pageout_page_count; count++) {
894                 tp = vm_page_prev(p_first);
895                 if (tp == NULL || tp->busy != 0 || (tp->oflags & VPO_BUSY) != 0)
896                         break;
897                 if (!vm_object_page_remove_write(tp, flags, clearobjflags))
898                         break;
899                 p_first = tp;
900                 mreq++;
901         }
902
903         for (tp = p_first, i = 0; i < count; tp = TAILQ_NEXT(tp, listq), i++)
904                 ma[i] = tp;
905
906         vm_pageout_flush(ma, count, pagerflags, mreq, &runlen);
907         return (runlen);
908 }
909
910 /*
911  * Note that there is absolutely no sense in writing out
912  * anonymous objects, so we track down the vnode object
913  * to write out.
914  * We invalidate (remove) all pages from the address space
915  * for semantic correctness.
916  *
917  * Note: certain anonymous maps, such as MAP_NOSYNC maps,
918  * may start out with a NULL object.
919  */
920 void
921 vm_object_sync(vm_object_t object, vm_ooffset_t offset, vm_size_t size,
922     boolean_t syncio, boolean_t invalidate)
923 {
924         vm_object_t backing_object;
925         struct vnode *vp;
926         struct mount *mp;
927         int flags;
928
929         if (object == NULL)
930                 return;
931         VM_OBJECT_LOCK(object);
932         while ((backing_object = object->backing_object) != NULL) {
933                 VM_OBJECT_LOCK(backing_object);
934                 offset += object->backing_object_offset;
935                 VM_OBJECT_UNLOCK(object);
936                 object = backing_object;
937                 if (object->size < OFF_TO_IDX(offset + size))
938                         size = IDX_TO_OFF(object->size) - offset;
939         }
940         /*
941          * Flush pages if writing is allowed, invalidate them
942          * if invalidation requested.  Pages undergoing I/O
943          * will be ignored by vm_object_page_remove().
944          *
945          * We cannot lock the vnode and then wait for paging
946          * to complete without deadlocking against vm_fault.
947          * Instead we simply call vm_object_page_remove() and
948          * allow it to block internally on a page-by-page
949          * basis when it encounters pages undergoing async
950          * I/O.
951          */
952         if (object->type == OBJT_VNODE &&
953             (object->flags & OBJ_MIGHTBEDIRTY) != 0) {
954                 int vfslocked;
955                 vp = object->handle;
956                 VM_OBJECT_UNLOCK(object);
957                 (void) vn_start_write(vp, &mp, V_WAIT);
958                 vfslocked = VFS_LOCK_GIANT(vp->v_mount);
959                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
960                 flags = (syncio || invalidate) ? OBJPC_SYNC : 0;
961                 flags |= invalidate ? OBJPC_INVAL : 0;
962                 VM_OBJECT_LOCK(object);
963                 vm_object_page_clean(object,
964                     OFF_TO_IDX(offset),
965                     OFF_TO_IDX(offset + size + PAGE_MASK),
966                     flags);
967                 VM_OBJECT_UNLOCK(object);
968                 VOP_UNLOCK(vp, 0);
969                 VFS_UNLOCK_GIANT(vfslocked);
970                 vn_finished_write(mp);
971                 VM_OBJECT_LOCK(object);
972         }
973         if ((object->type == OBJT_VNODE ||
974              object->type == OBJT_DEVICE) && invalidate) {
975                 boolean_t purge;
976                 purge = old_msync || (object->type == OBJT_DEVICE);
977                 vm_object_page_remove(object,
978                     OFF_TO_IDX(offset),
979                     OFF_TO_IDX(offset + size + PAGE_MASK),
980                     purge ? FALSE : TRUE);
981         }
982         VM_OBJECT_UNLOCK(object);
983 }
984
985 /*
986  *      vm_object_madvise:
987  *
988  *      Implements the madvise function at the object/page level.
989  *
990  *      MADV_WILLNEED   (any object)
991  *
992  *          Activate the specified pages if they are resident.
993  *
994  *      MADV_DONTNEED   (any object)
995  *
996  *          Deactivate the specified pages if they are resident.
997  *
998  *      MADV_FREE       (OBJT_DEFAULT/OBJT_SWAP objects,
999  *                       OBJ_ONEMAPPING only)
1000  *
1001  *          Deactivate and clean the specified pages if they are
1002  *          resident.  This permits the process to reuse the pages
1003  *          without faulting or the kernel to reclaim the pages
1004  *          without I/O.
1005  */
1006 void
1007 vm_object_madvise(vm_object_t object, vm_pindex_t pindex, int count, int advise)
1008 {
1009         vm_pindex_t end, tpindex;
1010         vm_object_t backing_object, tobject;
1011         vm_page_t m;
1012
1013         if (object == NULL)
1014                 return;
1015         VM_OBJECT_LOCK(object);
1016         end = pindex + count;
1017         /*
1018          * Locate and adjust resident pages
1019          */
1020         for (; pindex < end; pindex += 1) {
1021 relookup:
1022                 tobject = object;
1023                 tpindex = pindex;
1024 shadowlookup:
1025                 /*
1026                  * MADV_FREE only operates on OBJT_DEFAULT or OBJT_SWAP pages
1027                  * and those pages must be OBJ_ONEMAPPING.
1028                  */
1029                 if (advise == MADV_FREE) {
1030                         if ((tobject->type != OBJT_DEFAULT &&
1031                              tobject->type != OBJT_SWAP) ||
1032                             (tobject->flags & OBJ_ONEMAPPING) == 0) {
1033                                 goto unlock_tobject;
1034                         }
1035                 } else if (tobject->type == OBJT_PHYS)
1036                         goto unlock_tobject;
1037                 m = vm_page_lookup(tobject, tpindex);
1038                 if (m == NULL && advise == MADV_WILLNEED) {
1039                         /*
1040                          * If the page is cached, reactivate it.
1041                          */
1042                         m = vm_page_alloc(tobject, tpindex, VM_ALLOC_IFCACHED |
1043                             VM_ALLOC_NOBUSY);
1044                 }
1045                 if (m == NULL) {
1046                         /*
1047                          * There may be swap even if there is no backing page
1048                          */
1049                         if (advise == MADV_FREE && tobject->type == OBJT_SWAP)
1050                                 swap_pager_freespace(tobject, tpindex, 1);
1051                         /*
1052                          * next object
1053                          */
1054                         backing_object = tobject->backing_object;
1055                         if (backing_object == NULL)
1056                                 goto unlock_tobject;
1057                         VM_OBJECT_LOCK(backing_object);
1058                         tpindex += OFF_TO_IDX(tobject->backing_object_offset);
1059                         if (tobject != object)
1060                                 VM_OBJECT_UNLOCK(tobject);
1061                         tobject = backing_object;
1062                         goto shadowlookup;
1063                 } else if (m->valid != VM_PAGE_BITS_ALL)
1064                         goto unlock_tobject;
1065                 /*
1066                  * If the page is not in a normal state, skip it.
1067                  */
1068                 vm_page_lock_queues();
1069                 if (m->hold_count != 0 || m->wire_count != 0) {
1070                         vm_page_unlock_queues();
1071                         goto unlock_tobject;
1072                 }
1073                 if ((m->oflags & VPO_BUSY) || m->busy) {
1074                         if (advise == MADV_WILLNEED)
1075                                 /*
1076                                  * Reference the page before unlocking and
1077                                  * sleeping so that the page daemon is less
1078                                  * likely to reclaim it. 
1079                                  */
1080                                 vm_page_flag_set(m, PG_REFERENCED);
1081                         vm_page_unlock_queues();
1082                         if (object != tobject)
1083                                 VM_OBJECT_UNLOCK(object);
1084                         m->oflags |= VPO_WANTED;
1085                         msleep(m, VM_OBJECT_MTX(tobject), PDROP | PVM, "madvpo",
1086                             0);
1087                         VM_OBJECT_LOCK(object);
1088                         goto relookup;
1089                 }
1090                 if (advise == MADV_WILLNEED) {
1091                         vm_page_activate(m);
1092                 } else if (advise == MADV_DONTNEED) {
1093                         vm_page_dontneed(m);
1094                 } else if (advise == MADV_FREE) {
1095                         /*
1096                          * Mark the page clean.  This will allow the page
1097                          * to be freed up by the system.  However, such pages
1098                          * are often reused quickly by malloc()/free()
1099                          * so we do not do anything that would cause
1100                          * a page fault if we can help it.
1101                          *
1102                          * Specifically, we do not try to actually free
1103                          * the page now nor do we try to put it in the
1104                          * cache (which would cause a page fault on reuse).
1105                          *
1106                          * But we do make the page is freeable as we
1107                          * can without actually taking the step of unmapping
1108                          * it.
1109                          */
1110                         pmap_clear_modify(m);
1111                         m->dirty = 0;
1112                         m->act_count = 0;
1113                         vm_page_dontneed(m);
1114                 }
1115                 vm_page_unlock_queues();
1116                 if (advise == MADV_FREE && tobject->type == OBJT_SWAP)
1117                         swap_pager_freespace(tobject, tpindex, 1);
1118 unlock_tobject:
1119                 if (tobject != object)
1120                         VM_OBJECT_UNLOCK(tobject);
1121         }       
1122         VM_OBJECT_UNLOCK(object);
1123 }
1124
1125 /*
1126  *      vm_object_shadow:
1127  *
1128  *      Create a new object which is backed by the
1129  *      specified existing object range.  The source
1130  *      object reference is deallocated.
1131  *
1132  *      The new object and offset into that object
1133  *      are returned in the source parameters.
1134  */
1135 void
1136 vm_object_shadow(
1137         vm_object_t *object,    /* IN/OUT */
1138         vm_ooffset_t *offset,   /* IN/OUT */
1139         vm_size_t length)
1140 {
1141         vm_object_t source;
1142         vm_object_t result;
1143
1144         source = *object;
1145
1146         /*
1147          * Don't create the new object if the old object isn't shared.
1148          */
1149         if (source != NULL) {
1150                 VM_OBJECT_LOCK(source);
1151                 if (source->ref_count == 1 &&
1152                     source->handle == NULL &&
1153                     (source->type == OBJT_DEFAULT ||
1154                      source->type == OBJT_SWAP)) {
1155                         VM_OBJECT_UNLOCK(source);
1156                         return;
1157                 }
1158                 VM_OBJECT_UNLOCK(source);
1159         }
1160
1161         /*
1162          * Allocate a new object with the given length.
1163          */
1164         result = vm_object_allocate(OBJT_DEFAULT, length);
1165
1166         /*
1167          * The new object shadows the source object, adding a reference to it.
1168          * Our caller changes his reference to point to the new object,
1169          * removing a reference to the source object.  Net result: no change
1170          * of reference count.
1171          *
1172          * Try to optimize the result object's page color when shadowing
1173          * in order to maintain page coloring consistency in the combined 
1174          * shadowed object.
1175          */
1176         result->backing_object = source;
1177         /*
1178          * Store the offset into the source object, and fix up the offset into
1179          * the new object.
1180          */
1181         result->backing_object_offset = *offset;
1182         if (source != NULL) {
1183                 VM_OBJECT_LOCK(source);
1184                 LIST_INSERT_HEAD(&source->shadow_head, result, shadow_list);
1185                 source->shadow_count++;
1186 #if VM_NRESERVLEVEL > 0
1187                 result->flags |= source->flags & OBJ_COLORED;
1188                 result->pg_color = (source->pg_color + OFF_TO_IDX(*offset)) &
1189                     ((1 << (VM_NFREEORDER - 1)) - 1);
1190 #endif
1191                 VM_OBJECT_UNLOCK(source);
1192         }
1193
1194
1195         /*
1196          * Return the new things
1197          */
1198         *offset = 0;
1199         *object = result;
1200 }
1201
1202 /*
1203  *      vm_object_split:
1204  *
1205  * Split the pages in a map entry into a new object.  This affords
1206  * easier removal of unused pages, and keeps object inheritance from
1207  * being a negative impact on memory usage.
1208  */
1209 void
1210 vm_object_split(vm_map_entry_t entry)
1211 {
1212         vm_page_t m, m_next;
1213         vm_object_t orig_object, new_object, source;
1214         vm_pindex_t idx, offidxstart;
1215         vm_size_t size;
1216
1217         orig_object = entry->object.vm_object;
1218         if (orig_object->type != OBJT_DEFAULT && orig_object->type != OBJT_SWAP)
1219                 return;
1220         if (orig_object->ref_count <= 1)
1221                 return;
1222         VM_OBJECT_UNLOCK(orig_object);
1223
1224         offidxstart = OFF_TO_IDX(entry->offset);
1225         size = atop(entry->end - entry->start);
1226
1227         /*
1228          * If swap_pager_copy() is later called, it will convert new_object
1229          * into a swap object.
1230          */
1231         new_object = vm_object_allocate(OBJT_DEFAULT, size);
1232
1233         /*
1234          * At this point, the new object is still private, so the order in
1235          * which the original and new objects are locked does not matter.
1236          */
1237         VM_OBJECT_LOCK(new_object);
1238         VM_OBJECT_LOCK(orig_object);
1239         source = orig_object->backing_object;
1240         if (source != NULL) {
1241                 VM_OBJECT_LOCK(source);
1242                 if ((source->flags & OBJ_DEAD) != 0) {
1243                         VM_OBJECT_UNLOCK(source);
1244                         VM_OBJECT_UNLOCK(orig_object);
1245                         VM_OBJECT_UNLOCK(new_object);
1246                         vm_object_deallocate(new_object);
1247                         VM_OBJECT_LOCK(orig_object);
1248                         return;
1249                 }
1250                 LIST_INSERT_HEAD(&source->shadow_head,
1251                                   new_object, shadow_list);
1252                 source->shadow_count++;
1253                 vm_object_reference_locked(source);     /* for new_object */
1254                 vm_object_clear_flag(source, OBJ_ONEMAPPING);
1255                 VM_OBJECT_UNLOCK(source);
1256                 new_object->backing_object_offset = 
1257                         orig_object->backing_object_offset + entry->offset;
1258                 new_object->backing_object = source;
1259         }
1260         if (orig_object->uip != NULL) {
1261                 new_object->uip = orig_object->uip;
1262                 uihold(orig_object->uip);
1263                 new_object->charge = ptoa(size);
1264                 KASSERT(orig_object->charge >= ptoa(size),
1265                     ("orig_object->charge < 0"));
1266                 orig_object->charge -= ptoa(size);
1267         }
1268 retry:
1269         m = vm_page_find_least(orig_object, offidxstart);
1270         vm_page_lock_queues();
1271         for (; m != NULL && (idx = m->pindex - offidxstart) < size;
1272             m = m_next) {
1273                 m_next = TAILQ_NEXT(m, listq);
1274
1275                 /*
1276                  * We must wait for pending I/O to complete before we can
1277                  * rename the page.
1278                  *
1279                  * We do not have to VM_PROT_NONE the page as mappings should
1280                  * not be changed by this operation.
1281                  */
1282                 if ((m->oflags & VPO_BUSY) || m->busy) {
1283                         vm_page_unlock_queues();
1284                         VM_OBJECT_UNLOCK(new_object);
1285                         m->oflags |= VPO_WANTED;
1286                         msleep(m, VM_OBJECT_MTX(orig_object), PVM, "spltwt", 0);
1287                         VM_OBJECT_LOCK(new_object);
1288                         goto retry;
1289                 }
1290                 vm_page_rename(m, new_object, idx);
1291                 /* page automatically made dirty by rename and cache handled */
1292                 vm_page_busy(m);
1293         }
1294         vm_page_unlock_queues();
1295         if (orig_object->type == OBJT_SWAP) {
1296                 /*
1297                  * swap_pager_copy() can sleep, in which case the orig_object's
1298                  * and new_object's locks are released and reacquired. 
1299                  */
1300                 swap_pager_copy(orig_object, new_object, offidxstart, 0);
1301
1302                 /*
1303                  * Transfer any cached pages from orig_object to new_object.
1304                  */
1305                 if (__predict_false(orig_object->cache != NULL))
1306                         vm_page_cache_transfer(orig_object, offidxstart,
1307                             new_object);
1308         }
1309         VM_OBJECT_UNLOCK(orig_object);
1310         TAILQ_FOREACH(m, &new_object->memq, listq)
1311                 vm_page_wakeup(m);
1312         VM_OBJECT_UNLOCK(new_object);
1313         entry->object.vm_object = new_object;
1314         entry->offset = 0LL;
1315         vm_object_deallocate(orig_object);
1316         VM_OBJECT_LOCK(new_object);
1317 }
1318
1319 #define OBSC_TEST_ALL_SHADOWED  0x0001
1320 #define OBSC_COLLAPSE_NOWAIT    0x0002
1321 #define OBSC_COLLAPSE_WAIT      0x0004
1322
1323 static int
1324 vm_object_backing_scan(vm_object_t object, int op)
1325 {
1326         int r = 1;
1327         vm_page_t p;
1328         vm_object_t backing_object;
1329         vm_pindex_t backing_offset_index;
1330
1331         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1332         VM_OBJECT_LOCK_ASSERT(object->backing_object, MA_OWNED);
1333
1334         backing_object = object->backing_object;
1335         backing_offset_index = OFF_TO_IDX(object->backing_object_offset);
1336
1337         /*
1338          * Initial conditions
1339          */
1340         if (op & OBSC_TEST_ALL_SHADOWED) {
1341                 /*
1342                  * We do not want to have to test for the existence of cache
1343                  * or swap pages in the backing object.  XXX but with the
1344                  * new swapper this would be pretty easy to do.
1345                  *
1346                  * XXX what about anonymous MAP_SHARED memory that hasn't
1347                  * been ZFOD faulted yet?  If we do not test for this, the
1348                  * shadow test may succeed! XXX
1349                  */
1350                 if (backing_object->type != OBJT_DEFAULT) {
1351                         return (0);
1352                 }
1353         }
1354         if (op & OBSC_COLLAPSE_WAIT) {
1355                 vm_object_set_flag(backing_object, OBJ_DEAD);
1356         }
1357
1358         /*
1359          * Our scan
1360          */
1361         p = TAILQ_FIRST(&backing_object->memq);
1362         while (p) {
1363                 vm_page_t next = TAILQ_NEXT(p, listq);
1364                 vm_pindex_t new_pindex = p->pindex - backing_offset_index;
1365
1366                 if (op & OBSC_TEST_ALL_SHADOWED) {
1367                         vm_page_t pp;
1368
1369                         /*
1370                          * Ignore pages outside the parent object's range
1371                          * and outside the parent object's mapping of the 
1372                          * backing object.
1373                          *
1374                          * note that we do not busy the backing object's
1375                          * page.
1376                          */
1377                         if (
1378                             p->pindex < backing_offset_index ||
1379                             new_pindex >= object->size
1380                         ) {
1381                                 p = next;
1382                                 continue;
1383                         }
1384
1385                         /*
1386                          * See if the parent has the page or if the parent's
1387                          * object pager has the page.  If the parent has the
1388                          * page but the page is not valid, the parent's
1389                          * object pager must have the page.
1390                          *
1391                          * If this fails, the parent does not completely shadow
1392                          * the object and we might as well give up now.
1393                          */
1394
1395                         pp = vm_page_lookup(object, new_pindex);
1396                         if (
1397                             (pp == NULL || pp->valid == 0) &&
1398                             !vm_pager_has_page(object, new_pindex, NULL, NULL)
1399                         ) {
1400                                 r = 0;
1401                                 break;
1402                         }
1403                 }
1404
1405                 /*
1406                  * Check for busy page
1407                  */
1408                 if (op & (OBSC_COLLAPSE_WAIT | OBSC_COLLAPSE_NOWAIT)) {
1409                         vm_page_t pp;
1410
1411                         if (op & OBSC_COLLAPSE_NOWAIT) {
1412                                 if ((p->oflags & VPO_BUSY) ||
1413                                     !p->valid || 
1414                                     p->busy) {
1415                                         p = next;
1416                                         continue;
1417                                 }
1418                         } else if (op & OBSC_COLLAPSE_WAIT) {
1419                                 if ((p->oflags & VPO_BUSY) || p->busy) {
1420                                         VM_OBJECT_UNLOCK(object);
1421                                         p->oflags |= VPO_WANTED;
1422                                         msleep(p, VM_OBJECT_MTX(backing_object),
1423                                             PDROP | PVM, "vmocol", 0);
1424                                         VM_OBJECT_LOCK(object);
1425                                         VM_OBJECT_LOCK(backing_object);
1426                                         /*
1427                                          * If we slept, anything could have
1428                                          * happened.  Since the object is
1429                                          * marked dead, the backing offset
1430                                          * should not have changed so we
1431                                          * just restart our scan.
1432                                          */
1433                                         p = TAILQ_FIRST(&backing_object->memq);
1434                                         continue;
1435                                 }
1436                         }
1437
1438                         KASSERT(
1439                             p->object == backing_object,
1440                             ("vm_object_backing_scan: object mismatch")
1441                         );
1442
1443                         /*
1444                          * Destroy any associated swap
1445                          */
1446                         if (backing_object->type == OBJT_SWAP) {
1447                                 swap_pager_freespace(
1448                                     backing_object, 
1449                                     p->pindex,
1450                                     1
1451                                 );
1452                         }
1453
1454                         if (
1455                             p->pindex < backing_offset_index ||
1456                             new_pindex >= object->size
1457                         ) {
1458                                 /*
1459                                  * Page is out of the parent object's range, we 
1460                                  * can simply destroy it. 
1461                                  */
1462                                 vm_page_lock_queues();
1463                                 KASSERT(!pmap_page_is_mapped(p),
1464                                     ("freeing mapped page %p", p));
1465                                 if (p->wire_count == 0)
1466                                         vm_page_free(p);
1467                                 else
1468                                         vm_page_remove(p);
1469                                 vm_page_unlock_queues();
1470                                 p = next;
1471                                 continue;
1472                         }
1473
1474                         pp = vm_page_lookup(object, new_pindex);
1475                         if (
1476                             (op & OBSC_COLLAPSE_NOWAIT) != 0 &&
1477                             (pp != NULL && pp->valid == 0)
1478                         ) {
1479                                 /*
1480                                  * The page in the parent is not (yet) valid.
1481                                  * We don't know anything about the state of
1482                                  * the original page.  It might be mapped,
1483                                  * so we must avoid the next if here.
1484                                  *
1485                                  * This is due to a race in vm_fault() where
1486                                  * we must unbusy the original (backing_obj)
1487                                  * page before we can (re)lock the parent.
1488                                  * Hence we can get here.
1489                                  */
1490                                 p = next;
1491                                 continue;
1492                         }
1493                         if (
1494                             pp != NULL ||
1495                             vm_pager_has_page(object, new_pindex, NULL, NULL)
1496                         ) {
1497                                 /*
1498                                  * page already exists in parent OR swap exists
1499                                  * for this location in the parent.  Destroy 
1500                                  * the original page from the backing object.
1501                                  *
1502                                  * Leave the parent's page alone
1503                                  */
1504                                 vm_page_lock_queues();
1505                                 KASSERT(!pmap_page_is_mapped(p),
1506                                     ("freeing mapped page %p", p));
1507                                 if (p->wire_count == 0)
1508                                         vm_page_free(p);
1509                                 else
1510                                         vm_page_remove(p);
1511                                 vm_page_unlock_queues();
1512                                 p = next;
1513                                 continue;
1514                         }
1515
1516 #if VM_NRESERVLEVEL > 0
1517                         /*
1518                          * Rename the reservation.
1519                          */
1520                         vm_reserv_rename(p, object, backing_object,
1521                             backing_offset_index);
1522 #endif
1523
1524                         /*
1525                          * Page does not exist in parent, rename the
1526                          * page from the backing object to the main object. 
1527                          *
1528                          * If the page was mapped to a process, it can remain 
1529                          * mapped through the rename.
1530                          */
1531                         vm_page_lock_queues();
1532                         vm_page_rename(p, object, new_pindex);
1533                         vm_page_unlock_queues();
1534                         /* page automatically made dirty by rename */
1535                 }
1536                 p = next;
1537         }
1538         return (r);
1539 }
1540
1541
1542 /*
1543  * this version of collapse allows the operation to occur earlier and
1544  * when paging_in_progress is true for an object...  This is not a complete
1545  * operation, but should plug 99.9% of the rest of the leaks.
1546  */
1547 static void
1548 vm_object_qcollapse(vm_object_t object)
1549 {
1550         vm_object_t backing_object = object->backing_object;
1551
1552         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1553         VM_OBJECT_LOCK_ASSERT(backing_object, MA_OWNED);
1554
1555         if (backing_object->ref_count != 1)
1556                 return;
1557
1558         vm_object_backing_scan(object, OBSC_COLLAPSE_NOWAIT);
1559 }
1560
1561 /*
1562  *      vm_object_collapse:
1563  *
1564  *      Collapse an object with the object backing it.
1565  *      Pages in the backing object are moved into the
1566  *      parent, and the backing object is deallocated.
1567  */
1568 void
1569 vm_object_collapse(vm_object_t object)
1570 {
1571         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1572         
1573         while (TRUE) {
1574                 vm_object_t backing_object;
1575
1576                 /*
1577                  * Verify that the conditions are right for collapse:
1578                  *
1579                  * The object exists and the backing object exists.
1580                  */
1581                 if ((backing_object = object->backing_object) == NULL)
1582                         break;
1583
1584                 /*
1585                  * we check the backing object first, because it is most likely
1586                  * not collapsable.
1587                  */
1588                 VM_OBJECT_LOCK(backing_object);
1589                 if (backing_object->handle != NULL ||
1590                     (backing_object->type != OBJT_DEFAULT &&
1591                      backing_object->type != OBJT_SWAP) ||
1592                     (backing_object->flags & OBJ_DEAD) ||
1593                     object->handle != NULL ||
1594                     (object->type != OBJT_DEFAULT &&
1595                      object->type != OBJT_SWAP) ||
1596                     (object->flags & OBJ_DEAD)) {
1597                         VM_OBJECT_UNLOCK(backing_object);
1598                         break;
1599                 }
1600
1601                 if (
1602                     object->paging_in_progress != 0 ||
1603                     backing_object->paging_in_progress != 0
1604                 ) {
1605                         vm_object_qcollapse(object);
1606                         VM_OBJECT_UNLOCK(backing_object);
1607                         break;
1608                 }
1609                 /*
1610                  * We know that we can either collapse the backing object (if
1611                  * the parent is the only reference to it) or (perhaps) have
1612                  * the parent bypass the object if the parent happens to shadow
1613                  * all the resident pages in the entire backing object.
1614                  *
1615                  * This is ignoring pager-backed pages such as swap pages.
1616                  * vm_object_backing_scan fails the shadowing test in this
1617                  * case.
1618                  */
1619                 if (backing_object->ref_count == 1) {
1620                         /*
1621                          * If there is exactly one reference to the backing
1622                          * object, we can collapse it into the parent.  
1623                          */
1624                         vm_object_backing_scan(object, OBSC_COLLAPSE_WAIT);
1625
1626 #if VM_NRESERVLEVEL > 0
1627                         /*
1628                          * Break any reservations from backing_object.
1629                          */
1630                         if (__predict_false(!LIST_EMPTY(&backing_object->rvq)))
1631                                 vm_reserv_break_all(backing_object);
1632 #endif
1633
1634                         /*
1635                          * Move the pager from backing_object to object.
1636                          */
1637                         if (backing_object->type == OBJT_SWAP) {
1638                                 /*
1639                                  * swap_pager_copy() can sleep, in which case
1640                                  * the backing_object's and object's locks are
1641                                  * released and reacquired.
1642                                  */
1643                                 swap_pager_copy(
1644                                     backing_object,
1645                                     object,
1646                                     OFF_TO_IDX(object->backing_object_offset), TRUE);
1647
1648                                 /*
1649                                  * Free any cached pages from backing_object.
1650                                  */
1651                                 if (__predict_false(backing_object->cache != NULL))
1652                                         vm_page_cache_free(backing_object, 0, 0);
1653                         }
1654                         /*
1655                          * Object now shadows whatever backing_object did.
1656                          * Note that the reference to 
1657                          * backing_object->backing_object moves from within 
1658                          * backing_object to within object.
1659                          */
1660                         LIST_REMOVE(object, shadow_list);
1661                         backing_object->shadow_count--;
1662                         if (backing_object->backing_object) {
1663                                 VM_OBJECT_LOCK(backing_object->backing_object);
1664                                 LIST_REMOVE(backing_object, shadow_list);
1665                                 LIST_INSERT_HEAD(
1666                                     &backing_object->backing_object->shadow_head,
1667                                     object, shadow_list);
1668                                 /*
1669                                  * The shadow_count has not changed.
1670                                  */
1671                                 VM_OBJECT_UNLOCK(backing_object->backing_object);
1672                         }
1673                         object->backing_object = backing_object->backing_object;
1674                         object->backing_object_offset +=
1675                             backing_object->backing_object_offset;
1676
1677                         /*
1678                          * Discard backing_object.
1679                          *
1680                          * Since the backing object has no pages, no pager left,
1681                          * and no object references within it, all that is
1682                          * necessary is to dispose of it.
1683                          */
1684                         KASSERT(backing_object->ref_count == 1, (
1685 "backing_object %p was somehow re-referenced during collapse!",
1686                             backing_object));
1687                         VM_OBJECT_UNLOCK(backing_object);
1688                         vm_object_destroy(backing_object);
1689
1690                         object_collapses++;
1691                 } else {
1692                         vm_object_t new_backing_object;
1693
1694                         /*
1695                          * If we do not entirely shadow the backing object,
1696                          * there is nothing we can do so we give up.
1697                          */
1698                         if (object->resident_page_count != object->size &&
1699                             vm_object_backing_scan(object,
1700                             OBSC_TEST_ALL_SHADOWED) == 0) {
1701                                 VM_OBJECT_UNLOCK(backing_object);
1702                                 break;
1703                         }
1704
1705                         /*
1706                          * Make the parent shadow the next object in the
1707                          * chain.  Deallocating backing_object will not remove
1708                          * it, since its reference count is at least 2.
1709                          */
1710                         LIST_REMOVE(object, shadow_list);
1711                         backing_object->shadow_count--;
1712
1713                         new_backing_object = backing_object->backing_object;
1714                         if ((object->backing_object = new_backing_object) != NULL) {
1715                                 VM_OBJECT_LOCK(new_backing_object);
1716                                 LIST_INSERT_HEAD(
1717                                     &new_backing_object->shadow_head,
1718                                     object,
1719                                     shadow_list
1720                                 );
1721                                 new_backing_object->shadow_count++;
1722                                 vm_object_reference_locked(new_backing_object);
1723                                 VM_OBJECT_UNLOCK(new_backing_object);
1724                                 object->backing_object_offset +=
1725                                         backing_object->backing_object_offset;
1726                         }
1727
1728                         /*
1729                          * Drop the reference count on backing_object. Since
1730                          * its ref_count was at least 2, it will not vanish.
1731                          */
1732                         backing_object->ref_count--;
1733                         VM_OBJECT_UNLOCK(backing_object);
1734                         object_bypasses++;
1735                 }
1736
1737                 /*
1738                  * Try again with this object's new backing object.
1739                  */
1740         }
1741 }
1742
1743 /*
1744  *      vm_object_page_remove:
1745  *
1746  *      For the given object, either frees or invalidates each of the
1747  *      specified pages.  In general, a page is freed.  However, if a
1748  *      page is wired for any reason other than the existence of a
1749  *      managed, wired mapping, then it may be invalidated but not
1750  *      removed from the object.  Pages are specified by the given
1751  *      range ["start", "end") and Boolean "clean_only".  As a
1752  *      special case, if "end" is zero, then the range extends from
1753  *      "start" to the end of the object.  If "clean_only" is TRUE,
1754  *      then only the non-dirty pages within the specified range are
1755  *      affected.
1756  *
1757  *      In general, this operation should only be performed on objects
1758  *      that contain managed pages.  There are two exceptions.  First,
1759  *      it may be performed on the kernel and kmem objects.  Second,
1760  *      it may be used by msync(..., MS_INVALIDATE) to invalidate
1761  *      device-backed pages.  In both of these cases, "clean_only"
1762  *      must be FALSE.
1763  *
1764  *      The object must be locked.
1765  */
1766 void
1767 vm_object_page_remove(vm_object_t object, vm_pindex_t start, vm_pindex_t end,
1768     boolean_t clean_only)
1769 {
1770         vm_page_t p, next;
1771         int wirings;
1772
1773         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1774         if (object->resident_page_count == 0)
1775                 goto skipmemq;
1776
1777         /*
1778          * Since physically-backed objects do not use managed pages, we can't
1779          * remove pages from the object (we must instead remove the page
1780          * references, and then destroy the object).
1781          */
1782         KASSERT(object->type != OBJT_PHYS || object == kernel_object ||
1783             object == kmem_object,
1784             ("attempt to remove pages from a physical object"));
1785
1786         vm_object_pip_add(object, 1);
1787 again:
1788         p = vm_page_find_least(object, start);
1789         vm_page_lock_queues();
1790         /*
1791          * Assert: the variable p is either (1) the page with the
1792          * least pindex greater than or equal to the parameter pindex
1793          * or (2) NULL.
1794          */
1795         for (;
1796              p != NULL && (p->pindex < end || end == 0);
1797              p = next) {
1798                 next = TAILQ_NEXT(p, listq);
1799
1800                 /*
1801                  * If the page is wired for any reason besides the
1802                  * existence of managed, wired mappings, then it cannot
1803                  * be freed.  For example, fictitious pages, which
1804                  * represent device memory, are inherently wired and
1805                  * cannot be freed.  They can, however, be invalidated
1806                  * if "clean_only" is FALSE.
1807                  */
1808                 if ((wirings = p->wire_count) != 0 &&
1809                     (wirings = pmap_page_wired_mappings(p)) != p->wire_count) {
1810                         /* Fictitious pages do not have managed mappings. */
1811                         if ((p->flags & PG_FICTITIOUS) == 0)
1812                                 pmap_remove_all(p);
1813                         /* Account for removal of managed, wired mappings. */
1814                         p->wire_count -= wirings;
1815                         if (!clean_only) {
1816                                 p->valid = 0;
1817                                 vm_page_undirty(p);
1818                         }
1819                         continue;
1820                 }
1821                 if (vm_page_sleep_if_busy(p, TRUE, "vmopar"))
1822                         goto again;
1823                 KASSERT((p->flags & PG_FICTITIOUS) == 0,
1824                     ("vm_object_page_remove: page %p is fictitious", p));
1825                 if (clean_only && p->valid) {
1826                         pmap_remove_write(p);
1827                         if (p->dirty)
1828                                 continue;
1829                 }
1830                 pmap_remove_all(p);
1831                 /* Account for removal of managed, wired mappings. */
1832                 if (wirings != 0)
1833                         p->wire_count -= wirings;
1834                 vm_page_free(p);
1835         }
1836         vm_page_unlock_queues();
1837         vm_object_pip_wakeup(object);
1838 skipmemq:
1839         if (__predict_false(object->cache != NULL))
1840                 vm_page_cache_free(object, start, end);
1841 }
1842
1843 /*
1844  *      Populate the specified range of the object with valid pages.  Returns
1845  *      TRUE if the range is successfully populated and FALSE otherwise.
1846  *
1847  *      Note: This function should be optimized to pass a larger array of
1848  *      pages to vm_pager_get_pages() before it is applied to a non-
1849  *      OBJT_DEVICE object.
1850  *
1851  *      The object must be locked.
1852  */
1853 boolean_t
1854 vm_object_populate(vm_object_t object, vm_pindex_t start, vm_pindex_t end)
1855 {
1856         vm_page_t m, ma[1];
1857         vm_pindex_t pindex;
1858         int rv;
1859
1860         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
1861         for (pindex = start; pindex < end; pindex++) {
1862                 m = vm_page_grab(object, pindex, VM_ALLOC_NORMAL |
1863                     VM_ALLOC_RETRY);
1864                 if (m->valid != VM_PAGE_BITS_ALL) {
1865                         ma[0] = m;
1866                         rv = vm_pager_get_pages(object, ma, 1, 0);
1867                         m = vm_page_lookup(object, pindex);
1868                         if (m == NULL)
1869                                 break;
1870                         if (rv != VM_PAGER_OK) {
1871                                 vm_page_lock_queues();
1872                                 vm_page_free(m);
1873                                 vm_page_unlock_queues();
1874                                 break;
1875                         }
1876                 }
1877                 /*
1878                  * Keep "m" busy because a subsequent iteration may unlock
1879                  * the object.
1880                  */
1881         }
1882         if (pindex > start) {
1883                 m = vm_page_lookup(object, start);
1884                 while (m != NULL && m->pindex < pindex) {
1885                         vm_page_wakeup(m);
1886                         m = TAILQ_NEXT(m, listq);
1887                 }
1888         }
1889         return (pindex == end);
1890 }
1891
1892 /*
1893  *      Routine:        vm_object_coalesce
1894  *      Function:       Coalesces two objects backing up adjoining
1895  *                      regions of memory into a single object.
1896  *
1897  *      returns TRUE if objects were combined.
1898  *
1899  *      NOTE:   Only works at the moment if the second object is NULL -
1900  *              if it's not, which object do we lock first?
1901  *
1902  *      Parameters:
1903  *              prev_object     First object to coalesce
1904  *              prev_offset     Offset into prev_object
1905  *              prev_size       Size of reference to prev_object
1906  *              next_size       Size of reference to the second object
1907  *              reserved        Indicator that extension region has
1908  *                              swap accounted for
1909  *
1910  *      Conditions:
1911  *      The object must *not* be locked.
1912  */
1913 boolean_t
1914 vm_object_coalesce(vm_object_t prev_object, vm_ooffset_t prev_offset,
1915     vm_size_t prev_size, vm_size_t next_size, boolean_t reserved)
1916 {
1917         vm_pindex_t next_pindex;
1918
1919         if (prev_object == NULL)
1920                 return (TRUE);
1921         VM_OBJECT_LOCK(prev_object);
1922         if (prev_object->type != OBJT_DEFAULT &&
1923             prev_object->type != OBJT_SWAP) {
1924                 VM_OBJECT_UNLOCK(prev_object);
1925                 return (FALSE);
1926         }
1927
1928         /*
1929          * Try to collapse the object first
1930          */
1931         vm_object_collapse(prev_object);
1932
1933         /*
1934          * Can't coalesce if: . more than one reference . paged out . shadows
1935          * another object . has a copy elsewhere (any of which mean that the
1936          * pages not mapped to prev_entry may be in use anyway)
1937          */
1938         if (prev_object->backing_object != NULL) {
1939                 VM_OBJECT_UNLOCK(prev_object);
1940                 return (FALSE);
1941         }
1942
1943         prev_size >>= PAGE_SHIFT;
1944         next_size >>= PAGE_SHIFT;
1945         next_pindex = OFF_TO_IDX(prev_offset) + prev_size;
1946
1947         if ((prev_object->ref_count > 1) &&
1948             (prev_object->size != next_pindex)) {
1949                 VM_OBJECT_UNLOCK(prev_object);
1950                 return (FALSE);
1951         }
1952
1953         /*
1954          * Account for the charge.
1955          */
1956         if (prev_object->uip != NULL) {
1957
1958                 /*
1959                  * If prev_object was charged, then this mapping,
1960                  * althought not charged now, may become writable
1961                  * later. Non-NULL uip in the object would prevent
1962                  * swap reservation during enabling of the write
1963                  * access, so reserve swap now. Failed reservation
1964                  * cause allocation of the separate object for the map
1965                  * entry, and swap reservation for this entry is
1966                  * managed in appropriate time.
1967                  */
1968                 if (!reserved && !swap_reserve_by_uid(ptoa(next_size),
1969                     prev_object->uip)) {
1970                         return (FALSE);
1971                 }
1972                 prev_object->charge += ptoa(next_size);
1973         }
1974
1975         /*
1976          * Remove any pages that may still be in the object from a previous
1977          * deallocation.
1978          */
1979         if (next_pindex < prev_object->size) {
1980                 vm_object_page_remove(prev_object,
1981                                       next_pindex,
1982                                       next_pindex + next_size, FALSE);
1983                 if (prev_object->type == OBJT_SWAP)
1984                         swap_pager_freespace(prev_object,
1985                                              next_pindex, next_size);
1986 #if 0
1987                 if (prev_object->uip != NULL) {
1988                         KASSERT(prev_object->charge >=
1989                             ptoa(prev_object->size - next_pindex),
1990                             ("object %p overcharged 1 %jx %jx", prev_object,
1991                                 (uintmax_t)next_pindex, (uintmax_t)next_size));
1992                         prev_object->charge -= ptoa(prev_object->size -
1993                             next_pindex);
1994                 }
1995 #endif
1996         }
1997
1998         /*
1999          * Extend the object if necessary.
2000          */
2001         if (next_pindex + next_size > prev_object->size)
2002                 prev_object->size = next_pindex + next_size;
2003
2004         VM_OBJECT_UNLOCK(prev_object);
2005         return (TRUE);
2006 }
2007
2008 void
2009 vm_object_set_writeable_dirty(vm_object_t object)
2010 {
2011
2012         VM_OBJECT_LOCK_ASSERT(object, MA_OWNED);
2013         if (object->type != OBJT_VNODE)
2014                 return;
2015         object->generation++;
2016         if ((object->flags & OBJ_MIGHTBEDIRTY) != 0)
2017                 return;
2018         vm_object_set_flag(object, OBJ_MIGHTBEDIRTY);
2019 }
2020
2021 #include "opt_ddb.h"
2022 #ifdef DDB
2023 #include <sys/kernel.h>
2024
2025 #include <sys/cons.h>
2026
2027 #include <ddb/ddb.h>
2028
2029 static int
2030 _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry)
2031 {
2032         vm_map_t tmpm;
2033         vm_map_entry_t tmpe;
2034         vm_object_t obj;
2035         int entcount;
2036
2037         if (map == 0)
2038                 return 0;
2039
2040         if (entry == 0) {
2041                 tmpe = map->header.next;
2042                 entcount = map->nentries;
2043                 while (entcount-- && (tmpe != &map->header)) {
2044                         if (_vm_object_in_map(map, object, tmpe)) {
2045                                 return 1;
2046                         }
2047                         tmpe = tmpe->next;
2048                 }
2049         } else if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) {
2050                 tmpm = entry->object.sub_map;
2051                 tmpe = tmpm->header.next;
2052                 entcount = tmpm->nentries;
2053                 while (entcount-- && tmpe != &tmpm->header) {
2054                         if (_vm_object_in_map(tmpm, object, tmpe)) {
2055                                 return 1;
2056                         }
2057                         tmpe = tmpe->next;
2058                 }
2059         } else if ((obj = entry->object.vm_object) != NULL) {
2060                 for (; obj; obj = obj->backing_object)
2061                         if (obj == object) {
2062                                 return 1;
2063                         }
2064         }
2065         return 0;
2066 }
2067
2068 static int
2069 vm_object_in_map(vm_object_t object)
2070 {
2071         struct proc *p;
2072
2073         /* sx_slock(&allproc_lock); */
2074         FOREACH_PROC_IN_SYSTEM(p) {
2075                 if (!p->p_vmspace /* || (p->p_flag & (P_SYSTEM|P_WEXIT)) */)
2076                         continue;
2077                 if (_vm_object_in_map(&p->p_vmspace->vm_map, object, 0)) {
2078                         /* sx_sunlock(&allproc_lock); */
2079                         return 1;
2080                 }
2081         }
2082         /* sx_sunlock(&allproc_lock); */
2083         if (_vm_object_in_map(kernel_map, object, 0))
2084                 return 1;
2085         if (_vm_object_in_map(kmem_map, object, 0))
2086                 return 1;
2087         if (_vm_object_in_map(pager_map, object, 0))
2088                 return 1;
2089         if (_vm_object_in_map(buffer_map, object, 0))
2090                 return 1;
2091         return 0;
2092 }
2093
2094 DB_SHOW_COMMAND(vmochk, vm_object_check)
2095 {
2096         vm_object_t object;
2097
2098         /*
2099          * make sure that internal objs are in a map somewhere
2100          * and none have zero ref counts.
2101          */
2102         TAILQ_FOREACH(object, &vm_object_list, object_list) {
2103                 if (object->handle == NULL &&
2104                     (object->type == OBJT_DEFAULT || object->type == OBJT_SWAP)) {
2105                         if (object->ref_count == 0) {
2106                                 db_printf("vmochk: internal obj has zero ref count: %ld\n",
2107                                         (long)object->size);
2108                         }
2109                         if (!vm_object_in_map(object)) {
2110                                 db_printf(
2111                         "vmochk: internal obj is not in a map: "
2112                         "ref: %d, size: %lu: 0x%lx, backing_object: %p\n",
2113                                     object->ref_count, (u_long)object->size, 
2114                                     (u_long)object->size,
2115                                     (void *)object->backing_object);
2116                         }
2117                 }
2118         }
2119 }
2120
2121 /*
2122  *      vm_object_print:        [ debug ]
2123  */
2124 DB_SHOW_COMMAND(object, vm_object_print_static)
2125 {
2126         /* XXX convert args. */
2127         vm_object_t object = (vm_object_t)addr;
2128         boolean_t full = have_addr;
2129
2130         vm_page_t p;
2131
2132         /* XXX count is an (unused) arg.  Avoid shadowing it. */
2133 #define count   was_count
2134
2135         int count;
2136
2137         if (object == NULL)
2138                 return;
2139
2140         db_iprintf(
2141             "Object %p: type=%d, size=0x%jx, res=%d, ref=%d, flags=0x%x uip %d charge %jx\n",
2142             object, (int)object->type, (uintmax_t)object->size,
2143             object->resident_page_count, object->ref_count, object->flags,
2144             object->uip ? object->uip->ui_uid : -1, (uintmax_t)object->charge);
2145         db_iprintf(" sref=%d, backing_object(%d)=(%p)+0x%jx\n",
2146             object->shadow_count, 
2147             object->backing_object ? object->backing_object->ref_count : 0,
2148             object->backing_object, (uintmax_t)object->backing_object_offset);
2149
2150         if (!full)
2151                 return;
2152
2153         db_indent += 2;
2154         count = 0;
2155         TAILQ_FOREACH(p, &object->memq, listq) {
2156                 if (count == 0)
2157                         db_iprintf("memory:=");
2158                 else if (count == 6) {
2159                         db_printf("\n");
2160                         db_iprintf(" ...");
2161                         count = 0;
2162                 } else
2163                         db_printf(",");
2164                 count++;
2165
2166                 db_printf("(off=0x%jx,page=0x%jx)",
2167                     (uintmax_t)p->pindex, (uintmax_t)VM_PAGE_TO_PHYS(p));
2168         }
2169         if (count != 0)
2170                 db_printf("\n");
2171         db_indent -= 2;
2172 }
2173
2174 /* XXX. */
2175 #undef count
2176
2177 /* XXX need this non-static entry for calling from vm_map_print. */
2178 void
2179 vm_object_print(
2180         /* db_expr_t */ long addr,
2181         boolean_t have_addr,
2182         /* db_expr_t */ long count,
2183         char *modif)
2184 {
2185         vm_object_print_static(addr, have_addr, count, modif);
2186 }
2187
2188 DB_SHOW_COMMAND(vmopag, vm_object_print_pages)
2189 {
2190         vm_object_t object;
2191         vm_pindex_t fidx;
2192         vm_paddr_t pa;
2193         vm_page_t m, prev_m;
2194         int rcount, nl, c;
2195
2196         nl = 0;
2197         TAILQ_FOREACH(object, &vm_object_list, object_list) {
2198                 db_printf("new object: %p\n", (void *)object);
2199                 if (nl > 18) {
2200                         c = cngetc();
2201                         if (c != ' ')
2202                                 return;
2203                         nl = 0;
2204                 }
2205                 nl++;
2206                 rcount = 0;
2207                 fidx = 0;
2208                 pa = -1;
2209                 TAILQ_FOREACH(m, &object->memq, listq) {
2210                         if (m->pindex > 128)
2211                                 break;
2212                         if ((prev_m = TAILQ_PREV(m, pglist, listq)) != NULL &&
2213                             prev_m->pindex + 1 != m->pindex) {
2214                                 if (rcount) {
2215                                         db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2216                                                 (long)fidx, rcount, (long)pa);
2217                                         if (nl > 18) {
2218                                                 c = cngetc();
2219                                                 if (c != ' ')
2220                                                         return;
2221                                                 nl = 0;
2222                                         }
2223                                         nl++;
2224                                         rcount = 0;
2225                                 }
2226                         }                               
2227                         if (rcount &&
2228                                 (VM_PAGE_TO_PHYS(m) == pa + rcount * PAGE_SIZE)) {
2229                                 ++rcount;
2230                                 continue;
2231                         }
2232                         if (rcount) {
2233                                 db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2234                                         (long)fidx, rcount, (long)pa);
2235                                 if (nl > 18) {
2236                                         c = cngetc();
2237                                         if (c != ' ')
2238                                                 return;
2239                                         nl = 0;
2240                                 }
2241                                 nl++;
2242                         }
2243                         fidx = m->pindex;
2244                         pa = VM_PAGE_TO_PHYS(m);
2245                         rcount = 1;
2246                 }
2247                 if (rcount) {
2248                         db_printf(" index(%ld)run(%d)pa(0x%lx)\n",
2249                                 (long)fidx, rcount, (long)pa);
2250                         if (nl > 18) {
2251                                 c = cngetc();
2252                                 if (c != ' ')
2253                                         return;
2254                                 nl = 0;
2255                         }
2256                         nl++;
2257                 }
2258         }
2259 }
2260 #endif /* DDB */