]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/vm/vm_map.c
MFC r315272, r315370
[FreeBSD/stable/10.git] / sys / vm / vm_map.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_map.c      8.3 (Berkeley) 1/12/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 mapping module.
63  */
64
65 #include <sys/cdefs.h>
66 __FBSDID("$FreeBSD$");
67
68 #include <sys/param.h>
69 #include <sys/systm.h>
70 #include <sys/kernel.h>
71 #include <sys/ktr.h>
72 #include <sys/lock.h>
73 #include <sys/mutex.h>
74 #include <sys/proc.h>
75 #include <sys/vmmeter.h>
76 #include <sys/mman.h>
77 #include <sys/vnode.h>
78 #include <sys/racct.h>
79 #include <sys/resourcevar.h>
80 #include <sys/rwlock.h>
81 #include <sys/file.h>
82 #include <sys/sysctl.h>
83 #include <sys/sysent.h>
84 #include <sys/shm.h>
85
86 #include <vm/vm.h>
87 #include <vm/vm_param.h>
88 #include <vm/pmap.h>
89 #include <vm/vm_map.h>
90 #include <vm/vm_page.h>
91 #include <vm/vm_object.h>
92 #include <vm/vm_pager.h>
93 #include <vm/vm_kern.h>
94 #include <vm/vm_extern.h>
95 #include <vm/vnode_pager.h>
96 #include <vm/swap_pager.h>
97 #include <vm/uma.h>
98
99 /*
100  *      Virtual memory maps provide for the mapping, protection,
101  *      and sharing of virtual memory objects.  In addition,
102  *      this module provides for an efficient virtual copy of
103  *      memory from one map to another.
104  *
105  *      Synchronization is required prior to most operations.
106  *
107  *      Maps consist of an ordered doubly-linked list of simple
108  *      entries; a self-adjusting binary search tree of these
109  *      entries is used to speed up lookups.
110  *
111  *      Since portions of maps are specified by start/end addresses,
112  *      which may not align with existing map entries, all
113  *      routines merely "clip" entries to these start/end values.
114  *      [That is, an entry is split into two, bordering at a
115  *      start or end value.]  Note that these clippings may not
116  *      always be necessary (as the two resulting entries are then
117  *      not changed); however, the clipping is done for convenience.
118  *
119  *      As mentioned above, virtual copy operations are performed
120  *      by copying VM object references from one map to
121  *      another, and then marking both regions as copy-on-write.
122  */
123
124 static struct mtx map_sleep_mtx;
125 static uma_zone_t mapentzone;
126 static uma_zone_t kmapentzone;
127 static uma_zone_t mapzone;
128 static uma_zone_t vmspace_zone;
129 static int vmspace_zinit(void *mem, int size, int flags);
130 static int vm_map_zinit(void *mem, int ize, int flags);
131 static void _vm_map_init(vm_map_t map, pmap_t pmap, vm_offset_t min,
132     vm_offset_t max);
133 static void vm_map_entry_deallocate(vm_map_entry_t entry, boolean_t system_map);
134 static void vm_map_entry_dispose(vm_map_t map, vm_map_entry_t entry);
135 static void vm_map_entry_unwire(vm_map_t map, vm_map_entry_t entry);
136 #ifdef INVARIANTS
137 static void vm_map_zdtor(void *mem, int size, void *arg);
138 static void vmspace_zdtor(void *mem, int size, void *arg);
139 #endif
140 static int vm_map_stack_locked(vm_map_t map, vm_offset_t addrbos,
141     vm_size_t max_ssize, vm_size_t growsize, vm_prot_t prot, vm_prot_t max,
142     int cow);
143 static void vm_map_wire_entry_failure(vm_map_t map, vm_map_entry_t entry,
144     vm_offset_t failed_addr);
145
146 #define ENTRY_CHARGED(e) ((e)->cred != NULL || \
147     ((e)->object.vm_object != NULL && (e)->object.vm_object->cred != NULL && \
148      !((e)->eflags & MAP_ENTRY_NEEDS_COPY)))
149
150 /* 
151  * PROC_VMSPACE_{UN,}LOCK() can be a noop as long as vmspaces are type
152  * stable.
153  */
154 #define PROC_VMSPACE_LOCK(p) do { } while (0)
155 #define PROC_VMSPACE_UNLOCK(p) do { } while (0)
156
157 /*
158  *      VM_MAP_RANGE_CHECK:     [ internal use only ]
159  *
160  *      Asserts that the starting and ending region
161  *      addresses fall within the valid range of the map.
162  */
163 #define VM_MAP_RANGE_CHECK(map, start, end)             \
164                 {                                       \
165                 if (start < vm_map_min(map))            \
166                         start = vm_map_min(map);        \
167                 if (end > vm_map_max(map))              \
168                         end = vm_map_max(map);          \
169                 if (start > end)                        \
170                         start = end;                    \
171                 }
172
173 /*
174  *      vm_map_startup:
175  *
176  *      Initialize the vm_map module.  Must be called before
177  *      any other vm_map routines.
178  *
179  *      Map and entry structures are allocated from the general
180  *      purpose memory pool with some exceptions:
181  *
182  *      - The kernel map and kmem submap are allocated statically.
183  *      - Kernel map entries are allocated out of a static pool.
184  *
185  *      These restrictions are necessary since malloc() uses the
186  *      maps and requires map entries.
187  */
188
189 void
190 vm_map_startup(void)
191 {
192         mtx_init(&map_sleep_mtx, "vm map sleep mutex", NULL, MTX_DEF);
193         mapzone = uma_zcreate("MAP", sizeof(struct vm_map), NULL,
194 #ifdef INVARIANTS
195             vm_map_zdtor,
196 #else
197             NULL,
198 #endif
199             vm_map_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
200         uma_prealloc(mapzone, MAX_KMAP);
201         kmapentzone = uma_zcreate("KMAP ENTRY", sizeof(struct vm_map_entry),
202             NULL, NULL, NULL, NULL, UMA_ALIGN_PTR,
203             UMA_ZONE_MTXCLASS | UMA_ZONE_VM);
204         mapentzone = uma_zcreate("MAP ENTRY", sizeof(struct vm_map_entry),
205             NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
206         vmspace_zone = uma_zcreate("VMSPACE", sizeof(struct vmspace), NULL,
207 #ifdef INVARIANTS
208             vmspace_zdtor,
209 #else
210             NULL,
211 #endif
212             vmspace_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
213 }
214
215 static int
216 vmspace_zinit(void *mem, int size, int flags)
217 {
218         struct vmspace *vm;
219
220         vm = (struct vmspace *)mem;
221
222         vm->vm_map.pmap = NULL;
223         (void)vm_map_zinit(&vm->vm_map, sizeof(vm->vm_map), flags);
224         PMAP_LOCK_INIT(vmspace_pmap(vm));
225         return (0);
226 }
227
228 static int
229 vm_map_zinit(void *mem, int size, int flags)
230 {
231         vm_map_t map;
232
233         map = (vm_map_t)mem;
234         memset(map, 0, sizeof(*map));
235         mtx_init(&map->system_mtx, "vm map (system)", NULL, MTX_DEF | MTX_DUPOK);
236         sx_init(&map->lock, "vm map (user)");
237         return (0);
238 }
239
240 #ifdef INVARIANTS
241 static void
242 vmspace_zdtor(void *mem, int size, void *arg)
243 {
244         struct vmspace *vm;
245
246         vm = (struct vmspace *)mem;
247
248         vm_map_zdtor(&vm->vm_map, sizeof(vm->vm_map), arg);
249 }
250 static void
251 vm_map_zdtor(void *mem, int size, void *arg)
252 {
253         vm_map_t map;
254
255         map = (vm_map_t)mem;
256         KASSERT(map->nentries == 0,
257             ("map %p nentries == %d on free.",
258             map, map->nentries));
259         KASSERT(map->size == 0,
260             ("map %p size == %lu on free.",
261             map, (unsigned long)map->size));
262 }
263 #endif  /* INVARIANTS */
264
265 /*
266  * Allocate a vmspace structure, including a vm_map and pmap,
267  * and initialize those structures.  The refcnt is set to 1.
268  *
269  * If 'pinit' is NULL then the embedded pmap is initialized via pmap_pinit().
270  */
271 struct vmspace *
272 vmspace_alloc(vm_offset_t min, vm_offset_t max, pmap_pinit_t pinit)
273 {
274         struct vmspace *vm;
275
276         vm = uma_zalloc(vmspace_zone, M_WAITOK);
277
278         KASSERT(vm->vm_map.pmap == NULL, ("vm_map.pmap must be NULL"));
279
280         if (pinit == NULL)
281                 pinit = &pmap_pinit;
282
283         if (!pinit(vmspace_pmap(vm))) {
284                 uma_zfree(vmspace_zone, vm);
285                 return (NULL);
286         }
287         CTR1(KTR_VM, "vmspace_alloc: %p", vm);
288         _vm_map_init(&vm->vm_map, vmspace_pmap(vm), min, max);
289         vm->vm_refcnt = 1;
290         vm->vm_shm = NULL;
291         vm->vm_swrss = 0;
292         vm->vm_tsize = 0;
293         vm->vm_dsize = 0;
294         vm->vm_ssize = 0;
295         vm->vm_taddr = 0;
296         vm->vm_daddr = 0;
297         vm->vm_maxsaddr = 0;
298         return (vm);
299 }
300
301 #ifdef RACCT
302 static void
303 vmspace_container_reset(struct proc *p)
304 {
305
306         PROC_LOCK(p);
307         racct_set(p, RACCT_DATA, 0);
308         racct_set(p, RACCT_STACK, 0);
309         racct_set(p, RACCT_RSS, 0);
310         racct_set(p, RACCT_MEMLOCK, 0);
311         racct_set(p, RACCT_VMEM, 0);
312         PROC_UNLOCK(p);
313 }
314 #endif
315
316 static inline void
317 vmspace_dofree(struct vmspace *vm)
318 {
319
320         CTR1(KTR_VM, "vmspace_free: %p", vm);
321
322         /*
323          * Make sure any SysV shm is freed, it might not have been in
324          * exit1().
325          */
326         shmexit(vm);
327
328         /*
329          * Lock the map, to wait out all other references to it.
330          * Delete all of the mappings and pages they hold, then call
331          * the pmap module to reclaim anything left.
332          */
333         (void)vm_map_remove(&vm->vm_map, vm->vm_map.min_offset,
334             vm->vm_map.max_offset);
335
336         pmap_release(vmspace_pmap(vm));
337         vm->vm_map.pmap = NULL;
338         uma_zfree(vmspace_zone, vm);
339 }
340
341 void
342 vmspace_free(struct vmspace *vm)
343 {
344
345         WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
346             "vmspace_free() called with non-sleepable lock held");
347
348         if (vm->vm_refcnt == 0)
349                 panic("vmspace_free: attempt to free already freed vmspace");
350
351         if (atomic_fetchadd_int(&vm->vm_refcnt, -1) == 1)
352                 vmspace_dofree(vm);
353 }
354
355 void
356 vmspace_exitfree(struct proc *p)
357 {
358         struct vmspace *vm;
359
360         PROC_VMSPACE_LOCK(p);
361         vm = p->p_vmspace;
362         p->p_vmspace = NULL;
363         PROC_VMSPACE_UNLOCK(p);
364         KASSERT(vm == &vmspace0, ("vmspace_exitfree: wrong vmspace"));
365         vmspace_free(vm);
366 }
367
368 void
369 vmspace_exit(struct thread *td)
370 {
371         int refcnt;
372         struct vmspace *vm;
373         struct proc *p;
374
375         /*
376          * Release user portion of address space.
377          * This releases references to vnodes,
378          * which could cause I/O if the file has been unlinked.
379          * Need to do this early enough that we can still sleep.
380          *
381          * The last exiting process to reach this point releases as
382          * much of the environment as it can. vmspace_dofree() is the
383          * slower fallback in case another process had a temporary
384          * reference to the vmspace.
385          */
386
387         p = td->td_proc;
388         vm = p->p_vmspace;
389         atomic_add_int(&vmspace0.vm_refcnt, 1);
390         do {
391                 refcnt = vm->vm_refcnt;
392                 if (refcnt > 1 && p->p_vmspace != &vmspace0) {
393                         /* Switch now since other proc might free vmspace */
394                         PROC_VMSPACE_LOCK(p);
395                         p->p_vmspace = &vmspace0;
396                         PROC_VMSPACE_UNLOCK(p);
397                         pmap_activate(td);
398                 }
399         } while (!atomic_cmpset_int(&vm->vm_refcnt, refcnt, refcnt - 1));
400         if (refcnt == 1) {
401                 if (p->p_vmspace != vm) {
402                         /* vmspace not yet freed, switch back */
403                         PROC_VMSPACE_LOCK(p);
404                         p->p_vmspace = vm;
405                         PROC_VMSPACE_UNLOCK(p);
406                         pmap_activate(td);
407                 }
408                 pmap_remove_pages(vmspace_pmap(vm));
409                 /* Switch now since this proc will free vmspace */
410                 PROC_VMSPACE_LOCK(p);
411                 p->p_vmspace = &vmspace0;
412                 PROC_VMSPACE_UNLOCK(p);
413                 pmap_activate(td);
414                 vmspace_dofree(vm);
415         }
416 #ifdef RACCT
417         if (racct_enable)
418                 vmspace_container_reset(p);
419 #endif
420 }
421
422 /* Acquire reference to vmspace owned by another process. */
423
424 struct vmspace *
425 vmspace_acquire_ref(struct proc *p)
426 {
427         struct vmspace *vm;
428         int refcnt;
429
430         PROC_VMSPACE_LOCK(p);
431         vm = p->p_vmspace;
432         if (vm == NULL) {
433                 PROC_VMSPACE_UNLOCK(p);
434                 return (NULL);
435         }
436         do {
437                 refcnt = vm->vm_refcnt;
438                 if (refcnt <= 0) {      /* Avoid 0->1 transition */
439                         PROC_VMSPACE_UNLOCK(p);
440                         return (NULL);
441                 }
442         } while (!atomic_cmpset_int(&vm->vm_refcnt, refcnt, refcnt + 1));
443         if (vm != p->p_vmspace) {
444                 PROC_VMSPACE_UNLOCK(p);
445                 vmspace_free(vm);
446                 return (NULL);
447         }
448         PROC_VMSPACE_UNLOCK(p);
449         return (vm);
450 }
451
452 void
453 _vm_map_lock(vm_map_t map, const char *file, int line)
454 {
455
456         if (map->system_map)
457                 mtx_lock_flags_(&map->system_mtx, 0, file, line);
458         else
459                 sx_xlock_(&map->lock, file, line);
460         map->timestamp++;
461 }
462
463 static void
464 vm_map_process_deferred(void)
465 {
466         struct thread *td;
467         vm_map_entry_t entry, next;
468         vm_object_t object;
469
470         td = curthread;
471         entry = td->td_map_def_user;
472         td->td_map_def_user = NULL;
473         while (entry != NULL) {
474                 next = entry->next;
475                 if ((entry->eflags & MAP_ENTRY_VN_WRITECNT) != 0) {
476                         /*
477                          * Decrement the object's writemappings and
478                          * possibly the vnode's v_writecount.
479                          */
480                         KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0,
481                             ("Submap with writecount"));
482                         object = entry->object.vm_object;
483                         KASSERT(object != NULL, ("No object for writecount"));
484                         vnode_pager_release_writecount(object, entry->start,
485                             entry->end);
486                 }
487                 vm_map_entry_deallocate(entry, FALSE);
488                 entry = next;
489         }
490 }
491
492 void
493 _vm_map_unlock(vm_map_t map, const char *file, int line)
494 {
495
496         if (map->system_map)
497                 mtx_unlock_flags_(&map->system_mtx, 0, file, line);
498         else {
499                 sx_xunlock_(&map->lock, file, line);
500                 vm_map_process_deferred();
501         }
502 }
503
504 void
505 _vm_map_lock_read(vm_map_t map, const char *file, int line)
506 {
507
508         if (map->system_map)
509                 mtx_lock_flags_(&map->system_mtx, 0, file, line);
510         else
511                 sx_slock_(&map->lock, file, line);
512 }
513
514 void
515 _vm_map_unlock_read(vm_map_t map, const char *file, int line)
516 {
517
518         if (map->system_map)
519                 mtx_unlock_flags_(&map->system_mtx, 0, file, line);
520         else {
521                 sx_sunlock_(&map->lock, file, line);
522                 vm_map_process_deferred();
523         }
524 }
525
526 int
527 _vm_map_trylock(vm_map_t map, const char *file, int line)
528 {
529         int error;
530
531         error = map->system_map ?
532             !mtx_trylock_flags_(&map->system_mtx, 0, file, line) :
533             !sx_try_xlock_(&map->lock, file, line);
534         if (error == 0)
535                 map->timestamp++;
536         return (error == 0);
537 }
538
539 int
540 _vm_map_trylock_read(vm_map_t map, const char *file, int line)
541 {
542         int error;
543
544         error = map->system_map ?
545             !mtx_trylock_flags_(&map->system_mtx, 0, file, line) :
546             !sx_try_slock_(&map->lock, file, line);
547         return (error == 0);
548 }
549
550 /*
551  *      _vm_map_lock_upgrade:   [ internal use only ]
552  *
553  *      Tries to upgrade a read (shared) lock on the specified map to a write
554  *      (exclusive) lock.  Returns the value "0" if the upgrade succeeds and a
555  *      non-zero value if the upgrade fails.  If the upgrade fails, the map is
556  *      returned without a read or write lock held.
557  *
558  *      Requires that the map be read locked.
559  */
560 int
561 _vm_map_lock_upgrade(vm_map_t map, const char *file, int line)
562 {
563         unsigned int last_timestamp;
564
565         if (map->system_map) {
566                 mtx_assert_(&map->system_mtx, MA_OWNED, file, line);
567         } else {
568                 if (!sx_try_upgrade_(&map->lock, file, line)) {
569                         last_timestamp = map->timestamp;
570                         sx_sunlock_(&map->lock, file, line);
571                         vm_map_process_deferred();
572                         /*
573                          * If the map's timestamp does not change while the
574                          * map is unlocked, then the upgrade succeeds.
575                          */
576                         sx_xlock_(&map->lock, file, line);
577                         if (last_timestamp != map->timestamp) {
578                                 sx_xunlock_(&map->lock, file, line);
579                                 return (1);
580                         }
581                 }
582         }
583         map->timestamp++;
584         return (0);
585 }
586
587 void
588 _vm_map_lock_downgrade(vm_map_t map, const char *file, int line)
589 {
590
591         if (map->system_map) {
592                 mtx_assert_(&map->system_mtx, MA_OWNED, file, line);
593         } else
594                 sx_downgrade_(&map->lock, file, line);
595 }
596
597 /*
598  *      vm_map_locked:
599  *
600  *      Returns a non-zero value if the caller holds a write (exclusive) lock
601  *      on the specified map and the value "0" otherwise.
602  */
603 int
604 vm_map_locked(vm_map_t map)
605 {
606
607         if (map->system_map)
608                 return (mtx_owned(&map->system_mtx));
609         else
610                 return (sx_xlocked(&map->lock));
611 }
612
613 #ifdef INVARIANTS
614 static void
615 _vm_map_assert_locked(vm_map_t map, const char *file, int line)
616 {
617
618         if (map->system_map)
619                 mtx_assert_(&map->system_mtx, MA_OWNED, file, line);
620         else
621                 sx_assert_(&map->lock, SA_XLOCKED, file, line);
622 }
623
624 #define VM_MAP_ASSERT_LOCKED(map) \
625     _vm_map_assert_locked(map, LOCK_FILE, LOCK_LINE)
626 #else
627 #define VM_MAP_ASSERT_LOCKED(map)
628 #endif
629
630 /*
631  *      _vm_map_unlock_and_wait:
632  *
633  *      Atomically releases the lock on the specified map and puts the calling
634  *      thread to sleep.  The calling thread will remain asleep until either
635  *      vm_map_wakeup() is performed on the map or the specified timeout is
636  *      exceeded.
637  *
638  *      WARNING!  This function does not perform deferred deallocations of
639  *      objects and map entries.  Therefore, the calling thread is expected to
640  *      reacquire the map lock after reawakening and later perform an ordinary
641  *      unlock operation, such as vm_map_unlock(), before completing its
642  *      operation on the map.
643  */
644 int
645 _vm_map_unlock_and_wait(vm_map_t map, int timo, const char *file, int line)
646 {
647
648         mtx_lock(&map_sleep_mtx);
649         if (map->system_map)
650                 mtx_unlock_flags_(&map->system_mtx, 0, file, line);
651         else
652                 sx_xunlock_(&map->lock, file, line);
653         return (msleep(&map->root, &map_sleep_mtx, PDROP | PVM, "vmmaps",
654             timo));
655 }
656
657 /*
658  *      vm_map_wakeup:
659  *
660  *      Awaken any threads that have slept on the map using
661  *      vm_map_unlock_and_wait().
662  */
663 void
664 vm_map_wakeup(vm_map_t map)
665 {
666
667         /*
668          * Acquire and release map_sleep_mtx to prevent a wakeup()
669          * from being performed (and lost) between the map unlock
670          * and the msleep() in _vm_map_unlock_and_wait().
671          */
672         mtx_lock(&map_sleep_mtx);
673         mtx_unlock(&map_sleep_mtx);
674         wakeup(&map->root);
675 }
676
677 void
678 vm_map_busy(vm_map_t map)
679 {
680
681         VM_MAP_ASSERT_LOCKED(map);
682         map->busy++;
683 }
684
685 void
686 vm_map_unbusy(vm_map_t map)
687 {
688
689         VM_MAP_ASSERT_LOCKED(map);
690         KASSERT(map->busy, ("vm_map_unbusy: not busy"));
691         if (--map->busy == 0 && (map->flags & MAP_BUSY_WAKEUP)) {
692                 vm_map_modflags(map, 0, MAP_BUSY_WAKEUP);
693                 wakeup(&map->busy);
694         }
695 }
696
697 void 
698 vm_map_wait_busy(vm_map_t map)
699 {
700
701         VM_MAP_ASSERT_LOCKED(map);
702         while (map->busy) {
703                 vm_map_modflags(map, MAP_BUSY_WAKEUP, 0);
704                 if (map->system_map)
705                         msleep(&map->busy, &map->system_mtx, 0, "mbusy", 0);
706                 else
707                         sx_sleep(&map->busy, &map->lock, 0, "mbusy", 0);
708         }
709         map->timestamp++;
710 }
711
712 long
713 vmspace_resident_count(struct vmspace *vmspace)
714 {
715         return pmap_resident_count(vmspace_pmap(vmspace));
716 }
717
718 /*
719  *      vm_map_create:
720  *
721  *      Creates and returns a new empty VM map with
722  *      the given physical map structure, and having
723  *      the given lower and upper address bounds.
724  */
725 vm_map_t
726 vm_map_create(pmap_t pmap, vm_offset_t min, vm_offset_t max)
727 {
728         vm_map_t result;
729
730         result = uma_zalloc(mapzone, M_WAITOK);
731         CTR1(KTR_VM, "vm_map_create: %p", result);
732         _vm_map_init(result, pmap, min, max);
733         return (result);
734 }
735
736 /*
737  * Initialize an existing vm_map structure
738  * such as that in the vmspace structure.
739  */
740 static void
741 _vm_map_init(vm_map_t map, pmap_t pmap, vm_offset_t min, vm_offset_t max)
742 {
743
744         map->header.next = map->header.prev = &map->header;
745         map->needs_wakeup = FALSE;
746         map->system_map = 0;
747         map->pmap = pmap;
748         map->min_offset = min;
749         map->max_offset = max;
750         map->flags = 0;
751         map->root = NULL;
752         map->timestamp = 0;
753         map->busy = 0;
754 }
755
756 void
757 vm_map_init(vm_map_t map, pmap_t pmap, vm_offset_t min, vm_offset_t max)
758 {
759
760         _vm_map_init(map, pmap, min, max);
761         mtx_init(&map->system_mtx, "system map", NULL, MTX_DEF | MTX_DUPOK);
762         sx_init(&map->lock, "user map");
763 }
764
765 /*
766  *      vm_map_entry_dispose:   [ internal use only ]
767  *
768  *      Inverse of vm_map_entry_create.
769  */
770 static void
771 vm_map_entry_dispose(vm_map_t map, vm_map_entry_t entry)
772 {
773         uma_zfree(map->system_map ? kmapentzone : mapentzone, entry);
774 }
775
776 /*
777  *      vm_map_entry_create:    [ internal use only ]
778  *
779  *      Allocates a VM map entry for insertion.
780  *      No entry fields are filled in.
781  */
782 static vm_map_entry_t
783 vm_map_entry_create(vm_map_t map)
784 {
785         vm_map_entry_t new_entry;
786
787         if (map->system_map)
788                 new_entry = uma_zalloc(kmapentzone, M_NOWAIT);
789         else
790                 new_entry = uma_zalloc(mapentzone, M_WAITOK);
791         if (new_entry == NULL)
792                 panic("vm_map_entry_create: kernel resources exhausted");
793         return (new_entry);
794 }
795
796 /*
797  *      vm_map_entry_set_behavior:
798  *
799  *      Set the expected access behavior, either normal, random, or
800  *      sequential.
801  */
802 static inline void
803 vm_map_entry_set_behavior(vm_map_entry_t entry, u_char behavior)
804 {
805         entry->eflags = (entry->eflags & ~MAP_ENTRY_BEHAV_MASK) |
806             (behavior & MAP_ENTRY_BEHAV_MASK);
807 }
808
809 /*
810  *      vm_map_entry_set_max_free:
811  *
812  *      Set the max_free field in a vm_map_entry.
813  */
814 static inline void
815 vm_map_entry_set_max_free(vm_map_entry_t entry)
816 {
817
818         entry->max_free = entry->adj_free;
819         if (entry->left != NULL && entry->left->max_free > entry->max_free)
820                 entry->max_free = entry->left->max_free;
821         if (entry->right != NULL && entry->right->max_free > entry->max_free)
822                 entry->max_free = entry->right->max_free;
823 }
824
825 /*
826  *      vm_map_entry_splay:
827  *
828  *      The Sleator and Tarjan top-down splay algorithm with the
829  *      following variation.  Max_free must be computed bottom-up, so
830  *      on the downward pass, maintain the left and right spines in
831  *      reverse order.  Then, make a second pass up each side to fix
832  *      the pointers and compute max_free.  The time bound is O(log n)
833  *      amortized.
834  *
835  *      The new root is the vm_map_entry containing "addr", or else an
836  *      adjacent entry (lower or higher) if addr is not in the tree.
837  *
838  *      The map must be locked, and leaves it so.
839  *
840  *      Returns: the new root.
841  */
842 static vm_map_entry_t
843 vm_map_entry_splay(vm_offset_t addr, vm_map_entry_t root)
844 {
845         vm_map_entry_t llist, rlist;
846         vm_map_entry_t ltree, rtree;
847         vm_map_entry_t y;
848
849         /* Special case of empty tree. */
850         if (root == NULL)
851                 return (root);
852
853         /*
854          * Pass One: Splay down the tree until we find addr or a NULL
855          * pointer where addr would go.  llist and rlist are the two
856          * sides in reverse order (bottom-up), with llist linked by
857          * the right pointer and rlist linked by the left pointer in
858          * the vm_map_entry.  Wait until Pass Two to set max_free on
859          * the two spines.
860          */
861         llist = NULL;
862         rlist = NULL;
863         for (;;) {
864                 /* root is never NULL in here. */
865                 if (addr < root->start) {
866                         y = root->left;
867                         if (y == NULL)
868                                 break;
869                         if (addr < y->start && y->left != NULL) {
870                                 /* Rotate right and put y on rlist. */
871                                 root->left = y->right;
872                                 y->right = root;
873                                 vm_map_entry_set_max_free(root);
874                                 root = y->left;
875                                 y->left = rlist;
876                                 rlist = y;
877                         } else {
878                                 /* Put root on rlist. */
879                                 root->left = rlist;
880                                 rlist = root;
881                                 root = y;
882                         }
883                 } else if (addr >= root->end) {
884                         y = root->right;
885                         if (y == NULL)
886                                 break;
887                         if (addr >= y->end && y->right != NULL) {
888                                 /* Rotate left and put y on llist. */
889                                 root->right = y->left;
890                                 y->left = root;
891                                 vm_map_entry_set_max_free(root);
892                                 root = y->right;
893                                 y->right = llist;
894                                 llist = y;
895                         } else {
896                                 /* Put root on llist. */
897                                 root->right = llist;
898                                 llist = root;
899                                 root = y;
900                         }
901                 } else
902                         break;
903         }
904
905         /*
906          * Pass Two: Walk back up the two spines, flip the pointers
907          * and set max_free.  The subtrees of the root go at the
908          * bottom of llist and rlist.
909          */
910         ltree = root->left;
911         while (llist != NULL) {
912                 y = llist->right;
913                 llist->right = ltree;
914                 vm_map_entry_set_max_free(llist);
915                 ltree = llist;
916                 llist = y;
917         }
918         rtree = root->right;
919         while (rlist != NULL) {
920                 y = rlist->left;
921                 rlist->left = rtree;
922                 vm_map_entry_set_max_free(rlist);
923                 rtree = rlist;
924                 rlist = y;
925         }
926
927         /*
928          * Final assembly: add ltree and rtree as subtrees of root.
929          */
930         root->left = ltree;
931         root->right = rtree;
932         vm_map_entry_set_max_free(root);
933
934         return (root);
935 }
936
937 /*
938  *      vm_map_entry_{un,}link:
939  *
940  *      Insert/remove entries from maps.
941  */
942 static void
943 vm_map_entry_link(vm_map_t map,
944                   vm_map_entry_t after_where,
945                   vm_map_entry_t entry)
946 {
947
948         CTR4(KTR_VM,
949             "vm_map_entry_link: map %p, nentries %d, entry %p, after %p", map,
950             map->nentries, entry, after_where);
951         VM_MAP_ASSERT_LOCKED(map);
952         KASSERT(after_where == &map->header ||
953             after_where->end <= entry->start,
954             ("vm_map_entry_link: prev end %jx new start %jx overlap",
955             (uintmax_t)after_where->end, (uintmax_t)entry->start));
956         KASSERT(after_where->next == &map->header ||
957             entry->end <= after_where->next->start,
958             ("vm_map_entry_link: new end %jx next start %jx overlap",
959             (uintmax_t)entry->end, (uintmax_t)after_where->next->start));
960
961         map->nentries++;
962         entry->prev = after_where;
963         entry->next = after_where->next;
964         entry->next->prev = entry;
965         after_where->next = entry;
966
967         if (after_where != &map->header) {
968                 if (after_where != map->root)
969                         vm_map_entry_splay(after_where->start, map->root);
970                 entry->right = after_where->right;
971                 entry->left = after_where;
972                 after_where->right = NULL;
973                 after_where->adj_free = entry->start - after_where->end;
974                 vm_map_entry_set_max_free(after_where);
975         } else {
976                 entry->right = map->root;
977                 entry->left = NULL;
978         }
979         entry->adj_free = (entry->next == &map->header ? map->max_offset :
980             entry->next->start) - entry->end;
981         vm_map_entry_set_max_free(entry);
982         map->root = entry;
983 }
984
985 static void
986 vm_map_entry_unlink(vm_map_t map,
987                     vm_map_entry_t entry)
988 {
989         vm_map_entry_t next, prev, root;
990
991         VM_MAP_ASSERT_LOCKED(map);
992         if (entry != map->root)
993                 vm_map_entry_splay(entry->start, map->root);
994         if (entry->left == NULL)
995                 root = entry->right;
996         else {
997                 root = vm_map_entry_splay(entry->start, entry->left);
998                 root->right = entry->right;
999                 root->adj_free = (entry->next == &map->header ? map->max_offset :
1000                     entry->next->start) - root->end;
1001                 vm_map_entry_set_max_free(root);
1002         }
1003         map->root = root;
1004
1005         prev = entry->prev;
1006         next = entry->next;
1007         next->prev = prev;
1008         prev->next = next;
1009         map->nentries--;
1010         CTR3(KTR_VM, "vm_map_entry_unlink: map %p, nentries %d, entry %p", map,
1011             map->nentries, entry);
1012 }
1013
1014 /*
1015  *      vm_map_entry_resize_free:
1016  *
1017  *      Recompute the amount of free space following a vm_map_entry
1018  *      and propagate that value up the tree.  Call this function after
1019  *      resizing a map entry in-place, that is, without a call to
1020  *      vm_map_entry_link() or _unlink().
1021  *
1022  *      The map must be locked, and leaves it so.
1023  */
1024 static void
1025 vm_map_entry_resize_free(vm_map_t map, vm_map_entry_t entry)
1026 {
1027
1028         /*
1029          * Using splay trees without parent pointers, propagating
1030          * max_free up the tree is done by moving the entry to the
1031          * root and making the change there.
1032          */
1033         if (entry != map->root)
1034                 map->root = vm_map_entry_splay(entry->start, map->root);
1035
1036         entry->adj_free = (entry->next == &map->header ? map->max_offset :
1037             entry->next->start) - entry->end;
1038         vm_map_entry_set_max_free(entry);
1039 }
1040
1041 /*
1042  *      vm_map_lookup_entry:    [ internal use only ]
1043  *
1044  *      Finds the map entry containing (or
1045  *      immediately preceding) the specified address
1046  *      in the given map; the entry is returned
1047  *      in the "entry" parameter.  The boolean
1048  *      result indicates whether the address is
1049  *      actually contained in the map.
1050  */
1051 boolean_t
1052 vm_map_lookup_entry(
1053         vm_map_t map,
1054         vm_offset_t address,
1055         vm_map_entry_t *entry)  /* OUT */
1056 {
1057         vm_map_entry_t cur;
1058         boolean_t locked;
1059
1060         /*
1061          * If the map is empty, then the map entry immediately preceding
1062          * "address" is the map's header.
1063          */
1064         cur = map->root;
1065         if (cur == NULL)
1066                 *entry = &map->header;
1067         else if (address >= cur->start && cur->end > address) {
1068                 *entry = cur;
1069                 return (TRUE);
1070         } else if ((locked = vm_map_locked(map)) ||
1071             sx_try_upgrade(&map->lock)) {
1072                 /*
1073                  * Splay requires a write lock on the map.  However, it only
1074                  * restructures the binary search tree; it does not otherwise
1075                  * change the map.  Thus, the map's timestamp need not change
1076                  * on a temporary upgrade.
1077                  */
1078                 map->root = cur = vm_map_entry_splay(address, cur);
1079                 if (!locked)
1080                         sx_downgrade(&map->lock);
1081
1082                 /*
1083                  * If "address" is contained within a map entry, the new root
1084                  * is that map entry.  Otherwise, the new root is a map entry
1085                  * immediately before or after "address".
1086                  */
1087                 if (address >= cur->start) {
1088                         *entry = cur;
1089                         if (cur->end > address)
1090                                 return (TRUE);
1091                 } else
1092                         *entry = cur->prev;
1093         } else
1094                 /*
1095                  * Since the map is only locked for read access, perform a
1096                  * standard binary search tree lookup for "address".
1097                  */
1098                 for (;;) {
1099                         if (address < cur->start) {
1100                                 if (cur->left == NULL) {
1101                                         *entry = cur->prev;
1102                                         break;
1103                                 }
1104                                 cur = cur->left;
1105                         } else if (cur->end > address) {
1106                                 *entry = cur;
1107                                 return (TRUE);
1108                         } else {
1109                                 if (cur->right == NULL) {
1110                                         *entry = cur;
1111                                         break;
1112                                 }
1113                                 cur = cur->right;
1114                         }
1115                 }
1116         return (FALSE);
1117 }
1118
1119 /*
1120  *      vm_map_insert:
1121  *
1122  *      Inserts the given whole VM object into the target
1123  *      map at the specified address range.  The object's
1124  *      size should match that of the address range.
1125  *
1126  *      Requires that the map be locked, and leaves it so.
1127  *
1128  *      If object is non-NULL, ref count must be bumped by caller
1129  *      prior to making call to account for the new entry.
1130  */
1131 int
1132 vm_map_insert(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
1133     vm_offset_t start, vm_offset_t end, vm_prot_t prot, vm_prot_t max, int cow)
1134 {
1135         vm_map_entry_t new_entry, prev_entry, temp_entry;
1136         struct ucred *cred;
1137         vm_eflags_t protoeflags;
1138         vm_inherit_t inheritance;
1139
1140         VM_MAP_ASSERT_LOCKED(map);
1141         KASSERT((object != kmem_object && object != kernel_object) ||
1142             (cow & MAP_COPY_ON_WRITE) == 0,
1143             ("vm_map_insert: kmem or kernel object and COW"));
1144         KASSERT(object == NULL || (cow & MAP_NOFAULT) == 0,
1145             ("vm_map_insert: paradoxical MAP_NOFAULT request"));
1146
1147         /*
1148          * Check that the start and end points are not bogus.
1149          */
1150         if (start < map->min_offset || end > map->max_offset || start >= end)
1151                 return (KERN_INVALID_ADDRESS);
1152
1153         /*
1154          * Find the entry prior to the proposed starting address; if it's part
1155          * of an existing entry, this range is bogus.
1156          */
1157         if (vm_map_lookup_entry(map, start, &temp_entry))
1158                 return (KERN_NO_SPACE);
1159
1160         prev_entry = temp_entry;
1161
1162         /*
1163          * Assert that the next entry doesn't overlap the end point.
1164          */
1165         if (prev_entry->next != &map->header && prev_entry->next->start < end)
1166                 return (KERN_NO_SPACE);
1167
1168         protoeflags = 0;
1169         if (cow & MAP_COPY_ON_WRITE)
1170                 protoeflags |= MAP_ENTRY_COW | MAP_ENTRY_NEEDS_COPY;
1171         if (cow & MAP_NOFAULT)
1172                 protoeflags |= MAP_ENTRY_NOFAULT;
1173         if (cow & MAP_DISABLE_SYNCER)
1174                 protoeflags |= MAP_ENTRY_NOSYNC;
1175         if (cow & MAP_DISABLE_COREDUMP)
1176                 protoeflags |= MAP_ENTRY_NOCOREDUMP;
1177         if (cow & MAP_STACK_GROWS_DOWN)
1178                 protoeflags |= MAP_ENTRY_GROWS_DOWN;
1179         if (cow & MAP_STACK_GROWS_UP)
1180                 protoeflags |= MAP_ENTRY_GROWS_UP;
1181         if (cow & MAP_VN_WRITECOUNT)
1182                 protoeflags |= MAP_ENTRY_VN_WRITECNT;
1183         if (cow & MAP_INHERIT_SHARE)
1184                 inheritance = VM_INHERIT_SHARE;
1185         else
1186                 inheritance = VM_INHERIT_DEFAULT;
1187
1188         cred = NULL;
1189         if (cow & (MAP_ACC_NO_CHARGE | MAP_NOFAULT))
1190                 goto charged;
1191         if ((cow & MAP_ACC_CHARGED) || ((prot & VM_PROT_WRITE) &&
1192             ((protoeflags & MAP_ENTRY_NEEDS_COPY) || object == NULL))) {
1193                 if (!(cow & MAP_ACC_CHARGED) && !swap_reserve(end - start))
1194                         return (KERN_RESOURCE_SHORTAGE);
1195                 KASSERT(object == NULL ||
1196                     (protoeflags & MAP_ENTRY_NEEDS_COPY) != 0 ||
1197                     object->cred == NULL,
1198                     ("overcommit: vm_map_insert o %p", object));
1199                 cred = curthread->td_ucred;
1200         }
1201
1202 charged:
1203         /* Expand the kernel pmap, if necessary. */
1204         if (map == kernel_map && end > kernel_vm_end)
1205                 pmap_growkernel(end);
1206         if (object != NULL) {
1207                 /*
1208                  * OBJ_ONEMAPPING must be cleared unless this mapping
1209                  * is trivially proven to be the only mapping for any
1210                  * of the object's pages.  (Object granularity
1211                  * reference counting is insufficient to recognize
1212                  * aliases with precision.)
1213                  */
1214                 VM_OBJECT_WLOCK(object);
1215                 if (object->ref_count > 1 || object->shadow_count != 0)
1216                         vm_object_clear_flag(object, OBJ_ONEMAPPING);
1217                 VM_OBJECT_WUNLOCK(object);
1218         } else if (prev_entry != &map->header &&
1219             prev_entry->eflags == protoeflags &&
1220             (cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 &&
1221             prev_entry->end == start && prev_entry->wired_count == 0 &&
1222             (prev_entry->cred == cred ||
1223             (prev_entry->object.vm_object != NULL &&
1224             prev_entry->object.vm_object->cred == cred)) &&
1225             vm_object_coalesce(prev_entry->object.vm_object,
1226             prev_entry->offset,
1227             (vm_size_t)(prev_entry->end - prev_entry->start),
1228             (vm_size_t)(end - prev_entry->end), cred != NULL &&
1229             (protoeflags & MAP_ENTRY_NEEDS_COPY) == 0)) {
1230                 /*
1231                  * We were able to extend the object.  Determine if we
1232                  * can extend the previous map entry to include the
1233                  * new range as well.
1234                  */
1235                 if (prev_entry->inheritance == inheritance &&
1236                     prev_entry->protection == prot &&
1237                     prev_entry->max_protection == max) {
1238                         map->size += end - prev_entry->end;
1239                         prev_entry->end = end;
1240                         vm_map_entry_resize_free(map, prev_entry);
1241                         vm_map_simplify_entry(map, prev_entry);
1242                         return (KERN_SUCCESS);
1243                 }
1244
1245                 /*
1246                  * If we can extend the object but cannot extend the
1247                  * map entry, we have to create a new map entry.  We
1248                  * must bump the ref count on the extended object to
1249                  * account for it.  object may be NULL.
1250                  */
1251                 object = prev_entry->object.vm_object;
1252                 offset = prev_entry->offset +
1253                     (prev_entry->end - prev_entry->start);
1254                 vm_object_reference(object);
1255                 if (cred != NULL && object != NULL && object->cred != NULL &&
1256                     !(prev_entry->eflags & MAP_ENTRY_NEEDS_COPY)) {
1257                         /* Object already accounts for this uid. */
1258                         cred = NULL;
1259                 }
1260         }
1261         if (cred != NULL)
1262                 crhold(cred);
1263
1264         /*
1265          * Create a new entry
1266          */
1267         new_entry = vm_map_entry_create(map);
1268         new_entry->start = start;
1269         new_entry->end = end;
1270         new_entry->cred = NULL;
1271
1272         new_entry->eflags = protoeflags;
1273         new_entry->object.vm_object = object;
1274         new_entry->offset = offset;
1275         new_entry->avail_ssize = 0;
1276
1277         new_entry->inheritance = inheritance;
1278         new_entry->protection = prot;
1279         new_entry->max_protection = max;
1280         new_entry->wired_count = 0;
1281         new_entry->wiring_thread = NULL;
1282         new_entry->read_ahead = VM_FAULT_READ_AHEAD_INIT;
1283         new_entry->next_read = OFF_TO_IDX(offset);
1284
1285         KASSERT(cred == NULL || !ENTRY_CHARGED(new_entry),
1286             ("overcommit: vm_map_insert leaks vm_map %p", new_entry));
1287         new_entry->cred = cred;
1288
1289         /*
1290          * Insert the new entry into the list
1291          */
1292         vm_map_entry_link(map, prev_entry, new_entry);
1293         map->size += new_entry->end - new_entry->start;
1294
1295         /*
1296          * Try to coalesce the new entry with both the previous and next
1297          * entries in the list.  Previously, we only attempted to coalesce
1298          * with the previous entry when object is NULL.  Here, we handle the
1299          * other cases, which are less common.
1300          */
1301         vm_map_simplify_entry(map, new_entry);
1302
1303         if ((cow & (MAP_PREFAULT | MAP_PREFAULT_PARTIAL)) != 0) {
1304                 vm_map_pmap_enter(map, start, prot, object, OFF_TO_IDX(offset),
1305                     end - start, cow & MAP_PREFAULT_PARTIAL);
1306         }
1307
1308         return (KERN_SUCCESS);
1309 }
1310
1311 /*
1312  *      vm_map_findspace:
1313  *
1314  *      Find the first fit (lowest VM address) for "length" free bytes
1315  *      beginning at address >= start in the given map.
1316  *
1317  *      In a vm_map_entry, "adj_free" is the amount of free space
1318  *      adjacent (higher address) to this entry, and "max_free" is the
1319  *      maximum amount of contiguous free space in its subtree.  This
1320  *      allows finding a free region in one path down the tree, so
1321  *      O(log n) amortized with splay trees.
1322  *
1323  *      The map must be locked, and leaves it so.
1324  *
1325  *      Returns: 0 on success, and starting address in *addr,
1326  *               1 if insufficient space.
1327  */
1328 int
1329 vm_map_findspace(vm_map_t map, vm_offset_t start, vm_size_t length,
1330     vm_offset_t *addr)  /* OUT */
1331 {
1332         vm_map_entry_t entry;
1333         vm_offset_t st;
1334
1335         /*
1336          * Request must fit within min/max VM address and must avoid
1337          * address wrap.
1338          */
1339         if (start < map->min_offset)
1340                 start = map->min_offset;
1341         if (start + length > map->max_offset || start + length < start)
1342                 return (1);
1343
1344         /* Empty tree means wide open address space. */
1345         if (map->root == NULL) {
1346                 *addr = start;
1347                 return (0);
1348         }
1349
1350         /*
1351          * After splay, if start comes before root node, then there
1352          * must be a gap from start to the root.
1353          */
1354         map->root = vm_map_entry_splay(start, map->root);
1355         if (start + length <= map->root->start) {
1356                 *addr = start;
1357                 return (0);
1358         }
1359
1360         /*
1361          * Root is the last node that might begin its gap before
1362          * start, and this is the last comparison where address
1363          * wrap might be a problem.
1364          */
1365         st = (start > map->root->end) ? start : map->root->end;
1366         if (length <= map->root->end + map->root->adj_free - st) {
1367                 *addr = st;
1368                 return (0);
1369         }
1370
1371         /* With max_free, can immediately tell if no solution. */
1372         entry = map->root->right;
1373         if (entry == NULL || length > entry->max_free)
1374                 return (1);
1375
1376         /*
1377          * Search the right subtree in the order: left subtree, root,
1378          * right subtree (first fit).  The previous splay implies that
1379          * all regions in the right subtree have addresses > start.
1380          */
1381         while (entry != NULL) {
1382                 if (entry->left != NULL && entry->left->max_free >= length)
1383                         entry = entry->left;
1384                 else if (entry->adj_free >= length) {
1385                         *addr = entry->end;
1386                         return (0);
1387                 } else
1388                         entry = entry->right;
1389         }
1390
1391         /* Can't get here, so panic if we do. */
1392         panic("vm_map_findspace: max_free corrupt");
1393 }
1394
1395 int
1396 vm_map_fixed(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
1397     vm_offset_t start, vm_size_t length, vm_prot_t prot,
1398     vm_prot_t max, int cow)
1399 {
1400         vm_offset_t end;
1401         int result;
1402
1403         end = start + length;
1404         KASSERT((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 ||
1405             object == NULL,
1406             ("vm_map_fixed: non-NULL backing object for stack"));
1407         vm_map_lock(map);
1408         VM_MAP_RANGE_CHECK(map, start, end);
1409         if ((cow & MAP_CHECK_EXCL) == 0)
1410                 vm_map_delete(map, start, end);
1411         if ((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) != 0) {
1412                 result = vm_map_stack_locked(map, start, length, sgrowsiz,
1413                     prot, max, cow);
1414         } else {
1415                 result = vm_map_insert(map, object, offset, start, end,
1416                     prot, max, cow);
1417         }
1418         vm_map_unlock(map);
1419         return (result);
1420 }
1421
1422 /*
1423  *      vm_map_find finds an unallocated region in the target address
1424  *      map with the given length.  The search is defined to be
1425  *      first-fit from the specified address; the region found is
1426  *      returned in the same parameter.
1427  *
1428  *      If object is non-NULL, ref count must be bumped by caller
1429  *      prior to making call to account for the new entry.
1430  */
1431 int
1432 vm_map_find(vm_map_t map, vm_object_t object, vm_ooffset_t offset,
1433             vm_offset_t *addr,  /* IN/OUT */
1434             vm_size_t length, vm_offset_t max_addr, int find_space,
1435             vm_prot_t prot, vm_prot_t max, int cow)
1436 {
1437         vm_offset_t alignment, initial_addr, start;
1438         int result;
1439
1440         KASSERT((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 ||
1441             object == NULL,
1442             ("vm_map_find: non-NULL backing object for stack"));
1443         if (find_space == VMFS_OPTIMAL_SPACE && (object == NULL ||
1444             (object->flags & OBJ_COLORED) == 0))
1445                 find_space = VMFS_ANY_SPACE;
1446         if (find_space >> 8 != 0) {
1447                 KASSERT((find_space & 0xff) == 0, ("bad VMFS flags"));
1448                 alignment = (vm_offset_t)1 << (find_space >> 8);
1449         } else
1450                 alignment = 0;
1451         initial_addr = *addr;
1452 again:
1453         start = initial_addr;
1454         vm_map_lock(map);
1455         do {
1456                 if (find_space != VMFS_NO_SPACE) {
1457                         if (vm_map_findspace(map, start, length, addr) ||
1458                             (max_addr != 0 && *addr + length > max_addr)) {
1459                                 vm_map_unlock(map);
1460                                 if (find_space == VMFS_OPTIMAL_SPACE) {
1461                                         find_space = VMFS_ANY_SPACE;
1462                                         goto again;
1463                                 }
1464                                 return (KERN_NO_SPACE);
1465                         }
1466                         switch (find_space) {
1467                         case VMFS_SUPER_SPACE:
1468                         case VMFS_OPTIMAL_SPACE:
1469                                 pmap_align_superpage(object, offset, addr,
1470                                     length);
1471                                 break;
1472                         case VMFS_ANY_SPACE:
1473                                 break;
1474                         default:
1475                                 if ((*addr & (alignment - 1)) != 0) {
1476                                         *addr &= ~(alignment - 1);
1477                                         *addr += alignment;
1478                                 }
1479                                 break;
1480                         }
1481
1482                         start = *addr;
1483                 }
1484                 if ((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) != 0) {
1485                         result = vm_map_stack_locked(map, start, length,
1486                             sgrowsiz, prot, max, cow);
1487                 } else {
1488                         result = vm_map_insert(map, object, offset, start,
1489                             start + length, prot, max, cow);
1490                 }
1491         } while (result == KERN_NO_SPACE && find_space != VMFS_NO_SPACE &&
1492             find_space != VMFS_ANY_SPACE);
1493         vm_map_unlock(map);
1494         return (result);
1495 }
1496
1497 /*
1498  *      vm_map_simplify_entry:
1499  *
1500  *      Simplify the given map entry by merging with either neighbor.  This
1501  *      routine also has the ability to merge with both neighbors.
1502  *
1503  *      The map must be locked.
1504  *
1505  *      This routine guarentees that the passed entry remains valid (though
1506  *      possibly extended).  When merging, this routine may delete one or
1507  *      both neighbors.
1508  */
1509 void
1510 vm_map_simplify_entry(vm_map_t map, vm_map_entry_t entry)
1511 {
1512         vm_map_entry_t next, prev;
1513         vm_size_t prevsize, esize;
1514
1515         if ((entry->eflags & (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP |
1516             MAP_ENTRY_IN_TRANSITION | MAP_ENTRY_IS_SUB_MAP)) != 0)
1517                 return;
1518
1519         prev = entry->prev;
1520         if (prev != &map->header) {
1521                 prevsize = prev->end - prev->start;
1522                 if ( (prev->end == entry->start) &&
1523                      (prev->object.vm_object == entry->object.vm_object) &&
1524                      (!prev->object.vm_object ||
1525                         (prev->offset + prevsize == entry->offset)) &&
1526                      (prev->eflags == entry->eflags) &&
1527                      (prev->protection == entry->protection) &&
1528                      (prev->max_protection == entry->max_protection) &&
1529                      (prev->inheritance == entry->inheritance) &&
1530                      (prev->wired_count == entry->wired_count) &&
1531                      (prev->cred == entry->cred)) {
1532                         vm_map_entry_unlink(map, prev);
1533                         entry->start = prev->start;
1534                         entry->offset = prev->offset;
1535                         if (entry->prev != &map->header)
1536                                 vm_map_entry_resize_free(map, entry->prev);
1537
1538                         /*
1539                          * If the backing object is a vnode object,
1540                          * vm_object_deallocate() calls vrele().
1541                          * However, vrele() does not lock the vnode
1542                          * because the vnode has additional
1543                          * references.  Thus, the map lock can be kept
1544                          * without causing a lock-order reversal with
1545                          * the vnode lock.
1546                          *
1547                          * Since we count the number of virtual page
1548                          * mappings in object->un_pager.vnp.writemappings,
1549                          * the writemappings value should not be adjusted
1550                          * when the entry is disposed of.
1551                          */
1552                         if (prev->object.vm_object)
1553                                 vm_object_deallocate(prev->object.vm_object);
1554                         if (prev->cred != NULL)
1555                                 crfree(prev->cred);
1556                         vm_map_entry_dispose(map, prev);
1557                 }
1558         }
1559
1560         next = entry->next;
1561         if (next != &map->header) {
1562                 esize = entry->end - entry->start;
1563                 if ((entry->end == next->start) &&
1564                     (next->object.vm_object == entry->object.vm_object) &&
1565                      (!entry->object.vm_object ||
1566                         (entry->offset + esize == next->offset)) &&
1567                     (next->eflags == entry->eflags) &&
1568                     (next->protection == entry->protection) &&
1569                     (next->max_protection == entry->max_protection) &&
1570                     (next->inheritance == entry->inheritance) &&
1571                     (next->wired_count == entry->wired_count) &&
1572                     (next->cred == entry->cred)) {
1573                         vm_map_entry_unlink(map, next);
1574                         entry->end = next->end;
1575                         vm_map_entry_resize_free(map, entry);
1576
1577                         /*
1578                          * See comment above.
1579                          */
1580                         if (next->object.vm_object)
1581                                 vm_object_deallocate(next->object.vm_object);
1582                         if (next->cred != NULL)
1583                                 crfree(next->cred);
1584                         vm_map_entry_dispose(map, next);
1585                 }
1586         }
1587 }
1588 /*
1589  *      vm_map_clip_start:      [ internal use only ]
1590  *
1591  *      Asserts that the given entry begins at or after
1592  *      the specified address; if necessary,
1593  *      it splits the entry into two.
1594  */
1595 #define vm_map_clip_start(map, entry, startaddr) \
1596 { \
1597         if (startaddr > entry->start) \
1598                 _vm_map_clip_start(map, entry, startaddr); \
1599 }
1600
1601 /*
1602  *      This routine is called only when it is known that
1603  *      the entry must be split.
1604  */
1605 static void
1606 _vm_map_clip_start(vm_map_t map, vm_map_entry_t entry, vm_offset_t start)
1607 {
1608         vm_map_entry_t new_entry;
1609
1610         VM_MAP_ASSERT_LOCKED(map);
1611
1612         /*
1613          * Split off the front portion -- note that we must insert the new
1614          * entry BEFORE this one, so that this entry has the specified
1615          * starting address.
1616          */
1617         vm_map_simplify_entry(map, entry);
1618
1619         /*
1620          * If there is no object backing this entry, we might as well create
1621          * one now.  If we defer it, an object can get created after the map
1622          * is clipped, and individual objects will be created for the split-up
1623          * map.  This is a bit of a hack, but is also about the best place to
1624          * put this improvement.
1625          */
1626         if (entry->object.vm_object == NULL && !map->system_map) {
1627                 vm_object_t object;
1628                 object = vm_object_allocate(OBJT_DEFAULT,
1629                                 atop(entry->end - entry->start));
1630                 entry->object.vm_object = object;
1631                 entry->offset = 0;
1632                 if (entry->cred != NULL) {
1633                         object->cred = entry->cred;
1634                         object->charge = entry->end - entry->start;
1635                         entry->cred = NULL;
1636                 }
1637         } else if (entry->object.vm_object != NULL &&
1638                    ((entry->eflags & MAP_ENTRY_NEEDS_COPY) == 0) &&
1639                    entry->cred != NULL) {
1640                 VM_OBJECT_WLOCK(entry->object.vm_object);
1641                 KASSERT(entry->object.vm_object->cred == NULL,
1642                     ("OVERCOMMIT: vm_entry_clip_start: both cred e %p", entry));
1643                 entry->object.vm_object->cred = entry->cred;
1644                 entry->object.vm_object->charge = entry->end - entry->start;
1645                 VM_OBJECT_WUNLOCK(entry->object.vm_object);
1646                 entry->cred = NULL;
1647         }
1648
1649         new_entry = vm_map_entry_create(map);
1650         *new_entry = *entry;
1651
1652         new_entry->end = start;
1653         entry->offset += (start - entry->start);
1654         entry->start = start;
1655         if (new_entry->cred != NULL)
1656                 crhold(entry->cred);
1657
1658         vm_map_entry_link(map, entry->prev, new_entry);
1659
1660         if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0) {
1661                 vm_object_reference(new_entry->object.vm_object);
1662                 /*
1663                  * The object->un_pager.vnp.writemappings for the
1664                  * object of MAP_ENTRY_VN_WRITECNT type entry shall be
1665                  * kept as is here.  The virtual pages are
1666                  * re-distributed among the clipped entries, so the sum is
1667                  * left the same.
1668                  */
1669         }
1670 }
1671
1672 /*
1673  *      vm_map_clip_end:        [ internal use only ]
1674  *
1675  *      Asserts that the given entry ends at or before
1676  *      the specified address; if necessary,
1677  *      it splits the entry into two.
1678  */
1679 #define vm_map_clip_end(map, entry, endaddr) \
1680 { \
1681         if ((endaddr) < (entry->end)) \
1682                 _vm_map_clip_end((map), (entry), (endaddr)); \
1683 }
1684
1685 /*
1686  *      This routine is called only when it is known that
1687  *      the entry must be split.
1688  */
1689 static void
1690 _vm_map_clip_end(vm_map_t map, vm_map_entry_t entry, vm_offset_t end)
1691 {
1692         vm_map_entry_t new_entry;
1693
1694         VM_MAP_ASSERT_LOCKED(map);
1695
1696         /*
1697          * If there is no object backing this entry, we might as well create
1698          * one now.  If we defer it, an object can get created after the map
1699          * is clipped, and individual objects will be created for the split-up
1700          * map.  This is a bit of a hack, but is also about the best place to
1701          * put this improvement.
1702          */
1703         if (entry->object.vm_object == NULL && !map->system_map) {
1704                 vm_object_t object;
1705                 object = vm_object_allocate(OBJT_DEFAULT,
1706                                 atop(entry->end - entry->start));
1707                 entry->object.vm_object = object;
1708                 entry->offset = 0;
1709                 if (entry->cred != NULL) {
1710                         object->cred = entry->cred;
1711                         object->charge = entry->end - entry->start;
1712                         entry->cred = NULL;
1713                 }
1714         } else if (entry->object.vm_object != NULL &&
1715                    ((entry->eflags & MAP_ENTRY_NEEDS_COPY) == 0) &&
1716                    entry->cred != NULL) {
1717                 VM_OBJECT_WLOCK(entry->object.vm_object);
1718                 KASSERT(entry->object.vm_object->cred == NULL,
1719                     ("OVERCOMMIT: vm_entry_clip_end: both cred e %p", entry));
1720                 entry->object.vm_object->cred = entry->cred;
1721                 entry->object.vm_object->charge = entry->end - entry->start;
1722                 VM_OBJECT_WUNLOCK(entry->object.vm_object);
1723                 entry->cred = NULL;
1724         }
1725
1726         /*
1727          * Create a new entry and insert it AFTER the specified entry
1728          */
1729         new_entry = vm_map_entry_create(map);
1730         *new_entry = *entry;
1731
1732         new_entry->start = entry->end = end;
1733         new_entry->offset += (end - entry->start);
1734         if (new_entry->cred != NULL)
1735                 crhold(entry->cred);
1736
1737         vm_map_entry_link(map, entry, new_entry);
1738
1739         if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0) {
1740                 vm_object_reference(new_entry->object.vm_object);
1741         }
1742 }
1743
1744 /*
1745  *      vm_map_submap:          [ kernel use only ]
1746  *
1747  *      Mark the given range as handled by a subordinate map.
1748  *
1749  *      This range must have been created with vm_map_find,
1750  *      and no other operations may have been performed on this
1751  *      range prior to calling vm_map_submap.
1752  *
1753  *      Only a limited number of operations can be performed
1754  *      within this rage after calling vm_map_submap:
1755  *              vm_fault
1756  *      [Don't try vm_map_copy!]
1757  *
1758  *      To remove a submapping, one must first remove the
1759  *      range from the superior map, and then destroy the
1760  *      submap (if desired).  [Better yet, don't try it.]
1761  */
1762 int
1763 vm_map_submap(
1764         vm_map_t map,
1765         vm_offset_t start,
1766         vm_offset_t end,
1767         vm_map_t submap)
1768 {
1769         vm_map_entry_t entry;
1770         int result = KERN_INVALID_ARGUMENT;
1771
1772         vm_map_lock(map);
1773
1774         VM_MAP_RANGE_CHECK(map, start, end);
1775
1776         if (vm_map_lookup_entry(map, start, &entry)) {
1777                 vm_map_clip_start(map, entry, start);
1778         } else
1779                 entry = entry->next;
1780
1781         vm_map_clip_end(map, entry, end);
1782
1783         if ((entry->start == start) && (entry->end == end) &&
1784             ((entry->eflags & MAP_ENTRY_COW) == 0) &&
1785             (entry->object.vm_object == NULL)) {
1786                 entry->object.sub_map = submap;
1787                 entry->eflags |= MAP_ENTRY_IS_SUB_MAP;
1788                 result = KERN_SUCCESS;
1789         }
1790         vm_map_unlock(map);
1791
1792         return (result);
1793 }
1794
1795 /*
1796  * The maximum number of pages to map if MAP_PREFAULT_PARTIAL is specified
1797  */
1798 #define MAX_INIT_PT     96
1799
1800 /*
1801  *      vm_map_pmap_enter:
1802  *
1803  *      Preload the specified map's pmap with mappings to the specified
1804  *      object's memory-resident pages.  No further physical pages are
1805  *      allocated, and no further virtual pages are retrieved from secondary
1806  *      storage.  If the specified flags include MAP_PREFAULT_PARTIAL, then a
1807  *      limited number of page mappings are created at the low-end of the
1808  *      specified address range.  (For this purpose, a superpage mapping
1809  *      counts as one page mapping.)  Otherwise, all resident pages within
1810  *      the specified address range are mapped.  Because these mappings are
1811  *      being created speculatively, cached pages are not reactivated and
1812  *      mapped.
1813  */
1814 void
1815 vm_map_pmap_enter(vm_map_t map, vm_offset_t addr, vm_prot_t prot,
1816     vm_object_t object, vm_pindex_t pindex, vm_size_t size, int flags)
1817 {
1818         vm_offset_t start;
1819         vm_page_t p, p_start;
1820         vm_pindex_t mask, psize, threshold, tmpidx;
1821
1822         if ((prot & (VM_PROT_READ | VM_PROT_EXECUTE)) == 0 || object == NULL)
1823                 return;
1824         VM_OBJECT_RLOCK(object);
1825         if (object->type == OBJT_DEVICE || object->type == OBJT_SG) {
1826                 VM_OBJECT_RUNLOCK(object);
1827                 VM_OBJECT_WLOCK(object);
1828                 if (object->type == OBJT_DEVICE || object->type == OBJT_SG) {
1829                         pmap_object_init_pt(map->pmap, addr, object, pindex,
1830                             size);
1831                         VM_OBJECT_WUNLOCK(object);
1832                         return;
1833                 }
1834                 VM_OBJECT_LOCK_DOWNGRADE(object);
1835         }
1836
1837         psize = atop(size);
1838         if (psize + pindex > object->size) {
1839                 if (object->size < pindex) {
1840                         VM_OBJECT_RUNLOCK(object);
1841                         return;
1842                 }
1843                 psize = object->size - pindex;
1844         }
1845
1846         start = 0;
1847         p_start = NULL;
1848         threshold = MAX_INIT_PT;
1849
1850         p = vm_page_find_least(object, pindex);
1851         /*
1852          * Assert: the variable p is either (1) the page with the
1853          * least pindex greater than or equal to the parameter pindex
1854          * or (2) NULL.
1855          */
1856         for (;
1857              p != NULL && (tmpidx = p->pindex - pindex) < psize;
1858              p = TAILQ_NEXT(p, listq)) {
1859                 /*
1860                  * don't allow an madvise to blow away our really
1861                  * free pages allocating pv entries.
1862                  */
1863                 if (((flags & MAP_PREFAULT_MADVISE) != 0 &&
1864                     cnt.v_free_count < cnt.v_free_reserved) ||
1865                     ((flags & MAP_PREFAULT_PARTIAL) != 0 &&
1866                     tmpidx >= threshold)) {
1867                         psize = tmpidx;
1868                         break;
1869                 }
1870                 if (p->valid == VM_PAGE_BITS_ALL) {
1871                         if (p_start == NULL) {
1872                                 start = addr + ptoa(tmpidx);
1873                                 p_start = p;
1874                         }
1875                         /* Jump ahead if a superpage mapping is possible. */
1876                         if (p->psind > 0 && ((addr + ptoa(tmpidx)) &
1877                             (pagesizes[p->psind] - 1)) == 0) {
1878                                 mask = atop(pagesizes[p->psind]) - 1;
1879                                 if (tmpidx + mask < psize &&
1880                                     vm_page_ps_is_valid(p)) {
1881                                         p += mask;
1882                                         threshold += mask;
1883                                 }
1884                         }
1885                 } else if (p_start != NULL) {
1886                         pmap_enter_object(map->pmap, start, addr +
1887                             ptoa(tmpidx), p_start, prot);
1888                         p_start = NULL;
1889                 }
1890         }
1891         if (p_start != NULL)
1892                 pmap_enter_object(map->pmap, start, addr + ptoa(psize),
1893                     p_start, prot);
1894         VM_OBJECT_RUNLOCK(object);
1895 }
1896
1897 /*
1898  *      vm_map_protect:
1899  *
1900  *      Sets the protection of the specified address
1901  *      region in the target map.  If "set_max" is
1902  *      specified, the maximum protection is to be set;
1903  *      otherwise, only the current protection is affected.
1904  */
1905 int
1906 vm_map_protect(vm_map_t map, vm_offset_t start, vm_offset_t end,
1907                vm_prot_t new_prot, boolean_t set_max)
1908 {
1909         vm_map_entry_t current, entry;
1910         vm_object_t obj;
1911         struct ucred *cred;
1912         vm_prot_t old_prot;
1913
1914         if (start == end)
1915                 return (KERN_SUCCESS);
1916
1917         vm_map_lock(map);
1918
1919         VM_MAP_RANGE_CHECK(map, start, end);
1920
1921         if (vm_map_lookup_entry(map, start, &entry)) {
1922                 vm_map_clip_start(map, entry, start);
1923         } else {
1924                 entry = entry->next;
1925         }
1926
1927         /*
1928          * Make a first pass to check for protection violations.
1929          */
1930         current = entry;
1931         while ((current != &map->header) && (current->start < end)) {
1932                 if (current->eflags & MAP_ENTRY_IS_SUB_MAP) {
1933                         vm_map_unlock(map);
1934                         return (KERN_INVALID_ARGUMENT);
1935                 }
1936                 if ((new_prot & current->max_protection) != new_prot) {
1937                         vm_map_unlock(map);
1938                         return (KERN_PROTECTION_FAILURE);
1939                 }
1940                 current = current->next;
1941         }
1942
1943
1944         /*
1945          * Do an accounting pass for private read-only mappings that
1946          * now will do cow due to allowed write (e.g. debugger sets
1947          * breakpoint on text segment)
1948          */
1949         for (current = entry; (current != &map->header) &&
1950              (current->start < end); current = current->next) {
1951
1952                 vm_map_clip_end(map, current, end);
1953
1954                 if (set_max ||
1955                     ((new_prot & ~(current->protection)) & VM_PROT_WRITE) == 0 ||
1956                     ENTRY_CHARGED(current)) {
1957                         continue;
1958                 }
1959
1960                 cred = curthread->td_ucred;
1961                 obj = current->object.vm_object;
1962
1963                 if (obj == NULL || (current->eflags & MAP_ENTRY_NEEDS_COPY)) {
1964                         if (!swap_reserve(current->end - current->start)) {
1965                                 vm_map_unlock(map);
1966                                 return (KERN_RESOURCE_SHORTAGE);
1967                         }
1968                         crhold(cred);
1969                         current->cred = cred;
1970                         continue;
1971                 }
1972
1973                 VM_OBJECT_WLOCK(obj);
1974                 if (obj->type != OBJT_DEFAULT && obj->type != OBJT_SWAP) {
1975                         VM_OBJECT_WUNLOCK(obj);
1976                         continue;
1977                 }
1978
1979                 /*
1980                  * Charge for the whole object allocation now, since
1981                  * we cannot distinguish between non-charged and
1982                  * charged clipped mapping of the same object later.
1983                  */
1984                 KASSERT(obj->charge == 0,
1985                     ("vm_map_protect: object %p overcharged (entry %p)",
1986                     obj, current));
1987                 if (!swap_reserve(ptoa(obj->size))) {
1988                         VM_OBJECT_WUNLOCK(obj);
1989                         vm_map_unlock(map);
1990                         return (KERN_RESOURCE_SHORTAGE);
1991                 }
1992
1993                 crhold(cred);
1994                 obj->cred = cred;
1995                 obj->charge = ptoa(obj->size);
1996                 VM_OBJECT_WUNLOCK(obj);
1997         }
1998
1999         /*
2000          * Go back and fix up protections. [Note that clipping is not
2001          * necessary the second time.]
2002          */
2003         current = entry;
2004         while ((current != &map->header) && (current->start < end)) {
2005                 old_prot = current->protection;
2006
2007                 if (set_max)
2008                         current->protection =
2009                             (current->max_protection = new_prot) &
2010                             old_prot;
2011                 else
2012                         current->protection = new_prot;
2013
2014                 /*
2015                  * For user wired map entries, the normal lazy evaluation of
2016                  * write access upgrades through soft page faults is
2017                  * undesirable.  Instead, immediately copy any pages that are
2018                  * copy-on-write and enable write access in the physical map.
2019                  */
2020                 if ((current->eflags & MAP_ENTRY_USER_WIRED) != 0 &&
2021                     (current->protection & VM_PROT_WRITE) != 0 &&
2022                     (old_prot & VM_PROT_WRITE) == 0)
2023                         vm_fault_copy_entry(map, map, current, current, NULL);
2024
2025                 /*
2026                  * When restricting access, update the physical map.  Worry
2027                  * about copy-on-write here.
2028                  */
2029                 if ((old_prot & ~current->protection) != 0) {
2030 #define MASK(entry)     (((entry)->eflags & MAP_ENTRY_COW) ? ~VM_PROT_WRITE : \
2031                                                         VM_PROT_ALL)
2032                         pmap_protect(map->pmap, current->start,
2033                             current->end,
2034                             current->protection & MASK(current));
2035 #undef  MASK
2036                 }
2037                 vm_map_simplify_entry(map, current);
2038                 current = current->next;
2039         }
2040         vm_map_unlock(map);
2041         return (KERN_SUCCESS);
2042 }
2043
2044 /*
2045  *      vm_map_madvise:
2046  *
2047  *      This routine traverses a processes map handling the madvise
2048  *      system call.  Advisories are classified as either those effecting
2049  *      the vm_map_entry structure, or those effecting the underlying
2050  *      objects.
2051  */
2052 int
2053 vm_map_madvise(
2054         vm_map_t map,
2055         vm_offset_t start,
2056         vm_offset_t end,
2057         int behav)
2058 {
2059         vm_map_entry_t current, entry;
2060         int modify_map = 0;
2061
2062         /*
2063          * Some madvise calls directly modify the vm_map_entry, in which case
2064          * we need to use an exclusive lock on the map and we need to perform
2065          * various clipping operations.  Otherwise we only need a read-lock
2066          * on the map.
2067          */
2068         switch(behav) {
2069         case MADV_NORMAL:
2070         case MADV_SEQUENTIAL:
2071         case MADV_RANDOM:
2072         case MADV_NOSYNC:
2073         case MADV_AUTOSYNC:
2074         case MADV_NOCORE:
2075         case MADV_CORE:
2076                 if (start == end)
2077                         return (KERN_SUCCESS);
2078                 modify_map = 1;
2079                 vm_map_lock(map);
2080                 break;
2081         case MADV_WILLNEED:
2082         case MADV_DONTNEED:
2083         case MADV_FREE:
2084                 if (start == end)
2085                         return (KERN_SUCCESS);
2086                 vm_map_lock_read(map);
2087                 break;
2088         default:
2089                 return (KERN_INVALID_ARGUMENT);
2090         }
2091
2092         /*
2093          * Locate starting entry and clip if necessary.
2094          */
2095         VM_MAP_RANGE_CHECK(map, start, end);
2096
2097         if (vm_map_lookup_entry(map, start, &entry)) {
2098                 if (modify_map)
2099                         vm_map_clip_start(map, entry, start);
2100         } else {
2101                 entry = entry->next;
2102         }
2103
2104         if (modify_map) {
2105                 /*
2106                  * madvise behaviors that are implemented in the vm_map_entry.
2107                  *
2108                  * We clip the vm_map_entry so that behavioral changes are
2109                  * limited to the specified address range.
2110                  */
2111                 for (current = entry;
2112                      (current != &map->header) && (current->start < end);
2113                      current = current->next
2114                 ) {
2115                         if (current->eflags & MAP_ENTRY_IS_SUB_MAP)
2116                                 continue;
2117
2118                         vm_map_clip_end(map, current, end);
2119
2120                         switch (behav) {
2121                         case MADV_NORMAL:
2122                                 vm_map_entry_set_behavior(current, MAP_ENTRY_BEHAV_NORMAL);
2123                                 break;
2124                         case MADV_SEQUENTIAL:
2125                                 vm_map_entry_set_behavior(current, MAP_ENTRY_BEHAV_SEQUENTIAL);
2126                                 break;
2127                         case MADV_RANDOM:
2128                                 vm_map_entry_set_behavior(current, MAP_ENTRY_BEHAV_RANDOM);
2129                                 break;
2130                         case MADV_NOSYNC:
2131                                 current->eflags |= MAP_ENTRY_NOSYNC;
2132                                 break;
2133                         case MADV_AUTOSYNC:
2134                                 current->eflags &= ~MAP_ENTRY_NOSYNC;
2135                                 break;
2136                         case MADV_NOCORE:
2137                                 current->eflags |= MAP_ENTRY_NOCOREDUMP;
2138                                 break;
2139                         case MADV_CORE:
2140                                 current->eflags &= ~MAP_ENTRY_NOCOREDUMP;
2141                                 break;
2142                         default:
2143                                 break;
2144                         }
2145                         vm_map_simplify_entry(map, current);
2146                 }
2147                 vm_map_unlock(map);
2148         } else {
2149                 vm_pindex_t pstart, pend;
2150
2151                 /*
2152                  * madvise behaviors that are implemented in the underlying
2153                  * vm_object.
2154                  *
2155                  * Since we don't clip the vm_map_entry, we have to clip
2156                  * the vm_object pindex and count.
2157                  */
2158                 for (current = entry;
2159                      (current != &map->header) && (current->start < end);
2160                      current = current->next
2161                 ) {
2162                         vm_offset_t useEnd, useStart;
2163
2164                         if (current->eflags & MAP_ENTRY_IS_SUB_MAP)
2165                                 continue;
2166
2167                         pstart = OFF_TO_IDX(current->offset);
2168                         pend = pstart + atop(current->end - current->start);
2169                         useStart = current->start;
2170                         useEnd = current->end;
2171
2172                         if (current->start < start) {
2173                                 pstart += atop(start - current->start);
2174                                 useStart = start;
2175                         }
2176                         if (current->end > end) {
2177                                 pend -= atop(current->end - end);
2178                                 useEnd = end;
2179                         }
2180
2181                         if (pstart >= pend)
2182                                 continue;
2183
2184                         /*
2185                          * Perform the pmap_advise() before clearing
2186                          * PGA_REFERENCED in vm_page_advise().  Otherwise, a
2187                          * concurrent pmap operation, such as pmap_remove(),
2188                          * could clear a reference in the pmap and set
2189                          * PGA_REFERENCED on the page before the pmap_advise()
2190                          * had completed.  Consequently, the page would appear
2191                          * referenced based upon an old reference that
2192                          * occurred before this pmap_advise() ran.
2193                          */
2194                         if (behav == MADV_DONTNEED || behav == MADV_FREE)
2195                                 pmap_advise(map->pmap, useStart, useEnd,
2196                                     behav);
2197
2198                         vm_object_madvise(current->object.vm_object, pstart,
2199                             pend, behav);
2200
2201                         /*
2202                          * Pre-populate paging structures in the
2203                          * WILLNEED case.  For wired entries, the
2204                          * paging structures are already populated.
2205                          */
2206                         if (behav == MADV_WILLNEED &&
2207                             current->wired_count == 0) {
2208                                 vm_map_pmap_enter(map,
2209                                     useStart,
2210                                     current->protection,
2211                                     current->object.vm_object,
2212                                     pstart,
2213                                     ptoa(pend - pstart),
2214                                     MAP_PREFAULT_MADVISE
2215                                 );
2216                         }
2217                 }
2218                 vm_map_unlock_read(map);
2219         }
2220         return (0);
2221 }
2222
2223
2224 /*
2225  *      vm_map_inherit:
2226  *
2227  *      Sets the inheritance of the specified address
2228  *      range in the target map.  Inheritance
2229  *      affects how the map will be shared with
2230  *      child maps at the time of vmspace_fork.
2231  */
2232 int
2233 vm_map_inherit(vm_map_t map, vm_offset_t start, vm_offset_t end,
2234                vm_inherit_t new_inheritance)
2235 {
2236         vm_map_entry_t entry;
2237         vm_map_entry_t temp_entry;
2238
2239         switch (new_inheritance) {
2240         case VM_INHERIT_NONE:
2241         case VM_INHERIT_COPY:
2242         case VM_INHERIT_SHARE:
2243         case VM_INHERIT_ZERO:
2244                 break;
2245         default:
2246                 return (KERN_INVALID_ARGUMENT);
2247         }
2248         if (start == end)
2249                 return (KERN_SUCCESS);
2250         vm_map_lock(map);
2251         VM_MAP_RANGE_CHECK(map, start, end);
2252         if (vm_map_lookup_entry(map, start, &temp_entry)) {
2253                 entry = temp_entry;
2254                 vm_map_clip_start(map, entry, start);
2255         } else
2256                 entry = temp_entry->next;
2257         while ((entry != &map->header) && (entry->start < end)) {
2258                 vm_map_clip_end(map, entry, end);
2259                 entry->inheritance = new_inheritance;
2260                 vm_map_simplify_entry(map, entry);
2261                 entry = entry->next;
2262         }
2263         vm_map_unlock(map);
2264         return (KERN_SUCCESS);
2265 }
2266
2267 /*
2268  *      vm_map_unwire:
2269  *
2270  *      Implements both kernel and user unwiring.
2271  */
2272 int
2273 vm_map_unwire(vm_map_t map, vm_offset_t start, vm_offset_t end,
2274     int flags)
2275 {
2276         vm_map_entry_t entry, first_entry, tmp_entry;
2277         vm_offset_t saved_start;
2278         unsigned int last_timestamp;
2279         int rv;
2280         boolean_t need_wakeup, result, user_unwire;
2281
2282         if (start == end)
2283                 return (KERN_SUCCESS);
2284         user_unwire = (flags & VM_MAP_WIRE_USER) ? TRUE : FALSE;
2285         vm_map_lock(map);
2286         VM_MAP_RANGE_CHECK(map, start, end);
2287         if (!vm_map_lookup_entry(map, start, &first_entry)) {
2288                 if (flags & VM_MAP_WIRE_HOLESOK)
2289                         first_entry = first_entry->next;
2290                 else {
2291                         vm_map_unlock(map);
2292                         return (KERN_INVALID_ADDRESS);
2293                 }
2294         }
2295         last_timestamp = map->timestamp;
2296         entry = first_entry;
2297         while (entry != &map->header && entry->start < end) {
2298                 if (entry->eflags & MAP_ENTRY_IN_TRANSITION) {
2299                         /*
2300                          * We have not yet clipped the entry.
2301                          */
2302                         saved_start = (start >= entry->start) ? start :
2303                             entry->start;
2304                         entry->eflags |= MAP_ENTRY_NEEDS_WAKEUP;
2305                         if (vm_map_unlock_and_wait(map, 0)) {
2306                                 /*
2307                                  * Allow interruption of user unwiring?
2308                                  */
2309                         }
2310                         vm_map_lock(map);
2311                         if (last_timestamp+1 != map->timestamp) {
2312                                 /*
2313                                  * Look again for the entry because the map was
2314                                  * modified while it was unlocked.
2315                                  * Specifically, the entry may have been
2316                                  * clipped, merged, or deleted.
2317                                  */
2318                                 if (!vm_map_lookup_entry(map, saved_start,
2319                                     &tmp_entry)) {
2320                                         if (flags & VM_MAP_WIRE_HOLESOK)
2321                                                 tmp_entry = tmp_entry->next;
2322                                         else {
2323                                                 if (saved_start == start) {
2324                                                         /*
2325                                                          * First_entry has been deleted.
2326                                                          */
2327                                                         vm_map_unlock(map);
2328                                                         return (KERN_INVALID_ADDRESS);
2329                                                 }
2330                                                 end = saved_start;
2331                                                 rv = KERN_INVALID_ADDRESS;
2332                                                 goto done;
2333                                         }
2334                                 }
2335                                 if (entry == first_entry)
2336                                         first_entry = tmp_entry;
2337                                 else
2338                                         first_entry = NULL;
2339                                 entry = tmp_entry;
2340                         }
2341                         last_timestamp = map->timestamp;
2342                         continue;
2343                 }
2344                 vm_map_clip_start(map, entry, start);
2345                 vm_map_clip_end(map, entry, end);
2346                 /*
2347                  * Mark the entry in case the map lock is released.  (See
2348                  * above.)
2349                  */
2350                 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 &&
2351                     entry->wiring_thread == NULL,
2352                     ("owned map entry %p", entry));
2353                 entry->eflags |= MAP_ENTRY_IN_TRANSITION;
2354                 entry->wiring_thread = curthread;
2355                 /*
2356                  * Check the map for holes in the specified region.
2357                  * If VM_MAP_WIRE_HOLESOK was specified, skip this check.
2358                  */
2359                 if (((flags & VM_MAP_WIRE_HOLESOK) == 0) &&
2360                     (entry->end < end && (entry->next == &map->header ||
2361                     entry->next->start > entry->end))) {
2362                         end = entry->end;
2363                         rv = KERN_INVALID_ADDRESS;
2364                         goto done;
2365                 }
2366                 /*
2367                  * If system unwiring, require that the entry is system wired.
2368                  */
2369                 if (!user_unwire &&
2370                     vm_map_entry_system_wired_count(entry) == 0) {
2371                         end = entry->end;
2372                         rv = KERN_INVALID_ARGUMENT;
2373                         goto done;
2374                 }
2375                 entry = entry->next;
2376         }
2377         rv = KERN_SUCCESS;
2378 done:
2379         need_wakeup = FALSE;
2380         if (first_entry == NULL) {
2381                 result = vm_map_lookup_entry(map, start, &first_entry);
2382                 if (!result && (flags & VM_MAP_WIRE_HOLESOK))
2383                         first_entry = first_entry->next;
2384                 else
2385                         KASSERT(result, ("vm_map_unwire: lookup failed"));
2386         }
2387         for (entry = first_entry; entry != &map->header && entry->start < end;
2388             entry = entry->next) {
2389                 /*
2390                  * If VM_MAP_WIRE_HOLESOK was specified, an empty
2391                  * space in the unwired region could have been mapped
2392                  * while the map lock was dropped for draining
2393                  * MAP_ENTRY_IN_TRANSITION.  Moreover, another thread
2394                  * could be simultaneously wiring this new mapping
2395                  * entry.  Detect these cases and skip any entries
2396                  * marked as in transition by us.
2397                  */
2398                 if ((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 ||
2399                     entry->wiring_thread != curthread) {
2400                         KASSERT((flags & VM_MAP_WIRE_HOLESOK) != 0,
2401                             ("vm_map_unwire: !HOLESOK and new/changed entry"));
2402                         continue;
2403                 }
2404
2405                 if (rv == KERN_SUCCESS && (!user_unwire ||
2406                     (entry->eflags & MAP_ENTRY_USER_WIRED))) {
2407                         if (user_unwire)
2408                                 entry->eflags &= ~MAP_ENTRY_USER_WIRED;
2409                         if (entry->wired_count == 1)
2410                                 vm_map_entry_unwire(map, entry);
2411                         else
2412                                 entry->wired_count--;
2413                 }
2414                 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0,
2415                     ("vm_map_unwire: in-transition flag missing %p", entry));
2416                 KASSERT(entry->wiring_thread == curthread,
2417                     ("vm_map_unwire: alien wire %p", entry));
2418                 entry->eflags &= ~MAP_ENTRY_IN_TRANSITION;
2419                 entry->wiring_thread = NULL;
2420                 if (entry->eflags & MAP_ENTRY_NEEDS_WAKEUP) {
2421                         entry->eflags &= ~MAP_ENTRY_NEEDS_WAKEUP;
2422                         need_wakeup = TRUE;
2423                 }
2424                 vm_map_simplify_entry(map, entry);
2425         }
2426         vm_map_unlock(map);
2427         if (need_wakeup)
2428                 vm_map_wakeup(map);
2429         return (rv);
2430 }
2431
2432 /*
2433  *      vm_map_wire_entry_failure:
2434  *
2435  *      Handle a wiring failure on the given entry.
2436  *
2437  *      The map should be locked.
2438  */
2439 static void
2440 vm_map_wire_entry_failure(vm_map_t map, vm_map_entry_t entry,
2441     vm_offset_t failed_addr)
2442 {
2443
2444         VM_MAP_ASSERT_LOCKED(map);
2445         KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0 &&
2446             entry->wired_count == 1,
2447             ("vm_map_wire_entry_failure: entry %p isn't being wired", entry));
2448         KASSERT(failed_addr < entry->end,
2449             ("vm_map_wire_entry_failure: entry %p was fully wired", entry));
2450
2451         /*
2452          * If any pages at the start of this entry were successfully wired,
2453          * then unwire them.
2454          */
2455         if (failed_addr > entry->start) {
2456                 pmap_unwire(map->pmap, entry->start, failed_addr);
2457                 vm_object_unwire(entry->object.vm_object, entry->offset,
2458                     failed_addr - entry->start, PQ_ACTIVE);
2459         }
2460
2461         /*
2462          * Assign an out-of-range value to represent the failure to wire this
2463          * entry.
2464          */
2465         entry->wired_count = -1;
2466 }
2467
2468 /*
2469  *      vm_map_wire:
2470  *
2471  *      Implements both kernel and user wiring.
2472  */
2473 int
2474 vm_map_wire(vm_map_t map, vm_offset_t start, vm_offset_t end,
2475     int flags)
2476 {
2477         vm_map_entry_t entry, first_entry, tmp_entry;
2478         vm_offset_t faddr, saved_end, saved_start;
2479         unsigned int last_timestamp;
2480         int rv;
2481         boolean_t need_wakeup, result, user_wire;
2482         vm_prot_t prot;
2483
2484         if (start == end)
2485                 return (KERN_SUCCESS);
2486         prot = 0;
2487         if (flags & VM_MAP_WIRE_WRITE)
2488                 prot |= VM_PROT_WRITE;
2489         user_wire = (flags & VM_MAP_WIRE_USER) ? TRUE : FALSE;
2490         vm_map_lock(map);
2491         VM_MAP_RANGE_CHECK(map, start, end);
2492         if (!vm_map_lookup_entry(map, start, &first_entry)) {
2493                 if (flags & VM_MAP_WIRE_HOLESOK)
2494                         first_entry = first_entry->next;
2495                 else {
2496                         vm_map_unlock(map);
2497                         return (KERN_INVALID_ADDRESS);
2498                 }
2499         }
2500         last_timestamp = map->timestamp;
2501         entry = first_entry;
2502         while (entry != &map->header && entry->start < end) {
2503                 if (entry->eflags & MAP_ENTRY_IN_TRANSITION) {
2504                         /*
2505                          * We have not yet clipped the entry.
2506                          */
2507                         saved_start = (start >= entry->start) ? start :
2508                             entry->start;
2509                         entry->eflags |= MAP_ENTRY_NEEDS_WAKEUP;
2510                         if (vm_map_unlock_and_wait(map, 0)) {
2511                                 /*
2512                                  * Allow interruption of user wiring?
2513                                  */
2514                         }
2515                         vm_map_lock(map);
2516                         if (last_timestamp + 1 != map->timestamp) {
2517                                 /*
2518                                  * Look again for the entry because the map was
2519                                  * modified while it was unlocked.
2520                                  * Specifically, the entry may have been
2521                                  * clipped, merged, or deleted.
2522                                  */
2523                                 if (!vm_map_lookup_entry(map, saved_start,
2524                                     &tmp_entry)) {
2525                                         if (flags & VM_MAP_WIRE_HOLESOK)
2526                                                 tmp_entry = tmp_entry->next;
2527                                         else {
2528                                                 if (saved_start == start) {
2529                                                         /*
2530                                                          * first_entry has been deleted.
2531                                                          */
2532                                                         vm_map_unlock(map);
2533                                                         return (KERN_INVALID_ADDRESS);
2534                                                 }
2535                                                 end = saved_start;
2536                                                 rv = KERN_INVALID_ADDRESS;
2537                                                 goto done;
2538                                         }
2539                                 }
2540                                 if (entry == first_entry)
2541                                         first_entry = tmp_entry;
2542                                 else
2543                                         first_entry = NULL;
2544                                 entry = tmp_entry;
2545                         }
2546                         last_timestamp = map->timestamp;
2547                         continue;
2548                 }
2549                 vm_map_clip_start(map, entry, start);
2550                 vm_map_clip_end(map, entry, end);
2551                 /*
2552                  * Mark the entry in case the map lock is released.  (See
2553                  * above.)
2554                  */
2555                 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 &&
2556                     entry->wiring_thread == NULL,
2557                     ("owned map entry %p", entry));
2558                 entry->eflags |= MAP_ENTRY_IN_TRANSITION;
2559                 entry->wiring_thread = curthread;
2560                 if ((entry->protection & (VM_PROT_READ | VM_PROT_EXECUTE)) == 0
2561                     || (entry->protection & prot) != prot) {
2562                         entry->eflags |= MAP_ENTRY_WIRE_SKIPPED;
2563                         if ((flags & VM_MAP_WIRE_HOLESOK) == 0) {
2564                                 end = entry->end;
2565                                 rv = KERN_INVALID_ADDRESS;
2566                                 goto done;
2567                         }
2568                         goto next_entry;
2569                 }
2570                 if (entry->wired_count == 0) {
2571                         entry->wired_count++;
2572                         saved_start = entry->start;
2573                         saved_end = entry->end;
2574
2575                         /*
2576                          * Release the map lock, relying on the in-transition
2577                          * mark.  Mark the map busy for fork.
2578                          */
2579                         vm_map_busy(map);
2580                         vm_map_unlock(map);
2581
2582                         faddr = saved_start;
2583                         do {
2584                                 /*
2585                                  * Simulate a fault to get the page and enter
2586                                  * it into the physical map.
2587                                  */
2588                                 if ((rv = vm_fault(map, faddr, VM_PROT_NONE,
2589                                     VM_FAULT_WIRE)) != KERN_SUCCESS)
2590                                         break;
2591                         } while ((faddr += PAGE_SIZE) < saved_end);
2592                         vm_map_lock(map);
2593                         vm_map_unbusy(map);
2594                         if (last_timestamp + 1 != map->timestamp) {
2595                                 /*
2596                                  * Look again for the entry because the map was
2597                                  * modified while it was unlocked.  The entry
2598                                  * may have been clipped, but NOT merged or
2599                                  * deleted.
2600                                  */
2601                                 result = vm_map_lookup_entry(map, saved_start,
2602                                     &tmp_entry);
2603                                 KASSERT(result, ("vm_map_wire: lookup failed"));
2604                                 if (entry == first_entry)
2605                                         first_entry = tmp_entry;
2606                                 else
2607                                         first_entry = NULL;
2608                                 entry = tmp_entry;
2609                                 while (entry->end < saved_end) {
2610                                         /*
2611                                          * In case of failure, handle entries
2612                                          * that were not fully wired here;
2613                                          * fully wired entries are handled
2614                                          * later.
2615                                          */
2616                                         if (rv != KERN_SUCCESS &&
2617                                             faddr < entry->end)
2618                                                 vm_map_wire_entry_failure(map,
2619                                                     entry, faddr);
2620                                         entry = entry->next;
2621                                 }
2622                         }
2623                         last_timestamp = map->timestamp;
2624                         if (rv != KERN_SUCCESS) {
2625                                 vm_map_wire_entry_failure(map, entry, faddr);
2626                                 end = entry->end;
2627                                 goto done;
2628                         }
2629                 } else if (!user_wire ||
2630                            (entry->eflags & MAP_ENTRY_USER_WIRED) == 0) {
2631                         entry->wired_count++;
2632                 }
2633                 /*
2634                  * Check the map for holes in the specified region.
2635                  * If VM_MAP_WIRE_HOLESOK was specified, skip this check.
2636                  */
2637         next_entry:
2638                 if (((flags & VM_MAP_WIRE_HOLESOK) == 0) &&
2639                     (entry->end < end && (entry->next == &map->header ||
2640                     entry->next->start > entry->end))) {
2641                         end = entry->end;
2642                         rv = KERN_INVALID_ADDRESS;
2643                         goto done;
2644                 }
2645                 entry = entry->next;
2646         }
2647         rv = KERN_SUCCESS;
2648 done:
2649         need_wakeup = FALSE;
2650         if (first_entry == NULL) {
2651                 result = vm_map_lookup_entry(map, start, &first_entry);
2652                 if (!result && (flags & VM_MAP_WIRE_HOLESOK))
2653                         first_entry = first_entry->next;
2654                 else
2655                         KASSERT(result, ("vm_map_wire: lookup failed"));
2656         }
2657         for (entry = first_entry; entry != &map->header && entry->start < end;
2658             entry = entry->next) {
2659                 if ((entry->eflags & MAP_ENTRY_WIRE_SKIPPED) != 0)
2660                         goto next_entry_done;
2661
2662                 /*
2663                  * If VM_MAP_WIRE_HOLESOK was specified, an empty
2664                  * space in the unwired region could have been mapped
2665                  * while the map lock was dropped for faulting in the
2666                  * pages or draining MAP_ENTRY_IN_TRANSITION.
2667                  * Moreover, another thread could be simultaneously
2668                  * wiring this new mapping entry.  Detect these cases
2669                  * and skip any entries marked as in transition by us.
2670                  */
2671                 if ((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 ||
2672                     entry->wiring_thread != curthread) {
2673                         KASSERT((flags & VM_MAP_WIRE_HOLESOK) != 0,
2674                             ("vm_map_wire: !HOLESOK and new/changed entry"));
2675                         continue;
2676                 }
2677
2678                 if (rv == KERN_SUCCESS) {
2679                         if (user_wire)
2680                                 entry->eflags |= MAP_ENTRY_USER_WIRED;
2681                 } else if (entry->wired_count == -1) {
2682                         /*
2683                          * Wiring failed on this entry.  Thus, unwiring is
2684                          * unnecessary.
2685                          */
2686                         entry->wired_count = 0;
2687                 } else if (!user_wire ||
2688                     (entry->eflags & MAP_ENTRY_USER_WIRED) == 0) {
2689                         /*
2690                          * Undo the wiring.  Wiring succeeded on this entry
2691                          * but failed on a later entry.  
2692                          */
2693                         if (entry->wired_count == 1)
2694                                 vm_map_entry_unwire(map, entry);
2695                         else
2696                                 entry->wired_count--;
2697                 }
2698         next_entry_done:
2699                 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0,
2700                     ("vm_map_wire: in-transition flag missing %p", entry));
2701                 KASSERT(entry->wiring_thread == curthread,
2702                     ("vm_map_wire: alien wire %p", entry));
2703                 entry->eflags &= ~(MAP_ENTRY_IN_TRANSITION |
2704                     MAP_ENTRY_WIRE_SKIPPED);
2705                 entry->wiring_thread = NULL;
2706                 if (entry->eflags & MAP_ENTRY_NEEDS_WAKEUP) {
2707                         entry->eflags &= ~MAP_ENTRY_NEEDS_WAKEUP;
2708                         need_wakeup = TRUE;
2709                 }
2710                 vm_map_simplify_entry(map, entry);
2711         }
2712         vm_map_unlock(map);
2713         if (need_wakeup)
2714                 vm_map_wakeup(map);
2715         return (rv);
2716 }
2717
2718 /*
2719  * vm_map_sync
2720  *
2721  * Push any dirty cached pages in the address range to their pager.
2722  * If syncio is TRUE, dirty pages are written synchronously.
2723  * If invalidate is TRUE, any cached pages are freed as well.
2724  *
2725  * If the size of the region from start to end is zero, we are
2726  * supposed to flush all modified pages within the region containing
2727  * start.  Unfortunately, a region can be split or coalesced with
2728  * neighboring regions, making it difficult to determine what the
2729  * original region was.  Therefore, we approximate this requirement by
2730  * flushing the current region containing start.
2731  *
2732  * Returns an error if any part of the specified range is not mapped.
2733  */
2734 int
2735 vm_map_sync(
2736         vm_map_t map,
2737         vm_offset_t start,
2738         vm_offset_t end,
2739         boolean_t syncio,
2740         boolean_t invalidate)
2741 {
2742         vm_map_entry_t current;
2743         vm_map_entry_t entry;
2744         vm_size_t size;
2745         vm_object_t object;
2746         vm_ooffset_t offset;
2747         unsigned int last_timestamp;
2748         boolean_t failed;
2749
2750         vm_map_lock_read(map);
2751         VM_MAP_RANGE_CHECK(map, start, end);
2752         if (!vm_map_lookup_entry(map, start, &entry)) {
2753                 vm_map_unlock_read(map);
2754                 return (KERN_INVALID_ADDRESS);
2755         } else if (start == end) {
2756                 start = entry->start;
2757                 end = entry->end;
2758         }
2759         /*
2760          * Make a first pass to check for user-wired memory and holes.
2761          */
2762         for (current = entry; current != &map->header && current->start < end;
2763             current = current->next) {
2764                 if (invalidate && (current->eflags & MAP_ENTRY_USER_WIRED)) {
2765                         vm_map_unlock_read(map);
2766                         return (KERN_INVALID_ARGUMENT);
2767                 }
2768                 if (end > current->end &&
2769                     (current->next == &map->header ||
2770                         current->end != current->next->start)) {
2771                         vm_map_unlock_read(map);
2772                         return (KERN_INVALID_ADDRESS);
2773                 }
2774         }
2775
2776         if (invalidate)
2777                 pmap_remove(map->pmap, start, end);
2778         failed = FALSE;
2779
2780         /*
2781          * Make a second pass, cleaning/uncaching pages from the indicated
2782          * objects as we go.
2783          */
2784         for (current = entry; current != &map->header && current->start < end;) {
2785                 offset = current->offset + (start - current->start);
2786                 size = (end <= current->end ? end : current->end) - start;
2787                 if (current->eflags & MAP_ENTRY_IS_SUB_MAP) {
2788                         vm_map_t smap;
2789                         vm_map_entry_t tentry;
2790                         vm_size_t tsize;
2791
2792                         smap = current->object.sub_map;
2793                         vm_map_lock_read(smap);
2794                         (void) vm_map_lookup_entry(smap, offset, &tentry);
2795                         tsize = tentry->end - offset;
2796                         if (tsize < size)
2797                                 size = tsize;
2798                         object = tentry->object.vm_object;
2799                         offset = tentry->offset + (offset - tentry->start);
2800                         vm_map_unlock_read(smap);
2801                 } else {
2802                         object = current->object.vm_object;
2803                 }
2804                 vm_object_reference(object);
2805                 last_timestamp = map->timestamp;
2806                 vm_map_unlock_read(map);
2807                 if (!vm_object_sync(object, offset, size, syncio, invalidate))
2808                         failed = TRUE;
2809                 start += size;
2810                 vm_object_deallocate(object);
2811                 vm_map_lock_read(map);
2812                 if (last_timestamp == map->timestamp ||
2813                     !vm_map_lookup_entry(map, start, &current))
2814                         current = current->next;
2815         }
2816
2817         vm_map_unlock_read(map);
2818         return (failed ? KERN_FAILURE : KERN_SUCCESS);
2819 }
2820
2821 /*
2822  *      vm_map_entry_unwire:    [ internal use only ]
2823  *
2824  *      Make the region specified by this entry pageable.
2825  *
2826  *      The map in question should be locked.
2827  *      [This is the reason for this routine's existence.]
2828  */
2829 static void
2830 vm_map_entry_unwire(vm_map_t map, vm_map_entry_t entry)
2831 {
2832
2833         VM_MAP_ASSERT_LOCKED(map);
2834         KASSERT(entry->wired_count > 0,
2835             ("vm_map_entry_unwire: entry %p isn't wired", entry));
2836         pmap_unwire(map->pmap, entry->start, entry->end);
2837         vm_object_unwire(entry->object.vm_object, entry->offset, entry->end -
2838             entry->start, PQ_ACTIVE);
2839         entry->wired_count = 0;
2840 }
2841
2842 static void
2843 vm_map_entry_deallocate(vm_map_entry_t entry, boolean_t system_map)
2844 {
2845
2846         if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0)
2847                 vm_object_deallocate(entry->object.vm_object);
2848         uma_zfree(system_map ? kmapentzone : mapentzone, entry);
2849 }
2850
2851 /*
2852  *      vm_map_entry_delete:    [ internal use only ]
2853  *
2854  *      Deallocate the given entry from the target map.
2855  */
2856 static void
2857 vm_map_entry_delete(vm_map_t map, vm_map_entry_t entry)
2858 {
2859         vm_object_t object;
2860         vm_pindex_t offidxstart, offidxend, count, size1;
2861         vm_ooffset_t size;
2862
2863         vm_map_entry_unlink(map, entry);
2864         object = entry->object.vm_object;
2865         size = entry->end - entry->start;
2866         map->size -= size;
2867
2868         if (entry->cred != NULL) {
2869                 swap_release_by_cred(size, entry->cred);
2870                 crfree(entry->cred);
2871         }
2872
2873         if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0 &&
2874             (object != NULL)) {
2875                 KASSERT(entry->cred == NULL || object->cred == NULL ||
2876                     (entry->eflags & MAP_ENTRY_NEEDS_COPY),
2877                     ("OVERCOMMIT vm_map_entry_delete: both cred %p", entry));
2878                 count = OFF_TO_IDX(size);
2879                 offidxstart = OFF_TO_IDX(entry->offset);
2880                 offidxend = offidxstart + count;
2881                 VM_OBJECT_WLOCK(object);
2882                 if (object->ref_count != 1 && ((object->flags & (OBJ_NOSPLIT |
2883                     OBJ_ONEMAPPING)) == OBJ_ONEMAPPING ||
2884                     object == kernel_object || object == kmem_object)) {
2885                         vm_object_collapse(object);
2886
2887                         /*
2888                          * The option OBJPR_NOTMAPPED can be passed here
2889                          * because vm_map_delete() already performed
2890                          * pmap_remove() on the only mapping to this range
2891                          * of pages. 
2892                          */
2893                         vm_object_page_remove(object, offidxstart, offidxend,
2894                             OBJPR_NOTMAPPED);
2895                         if (object->type == OBJT_SWAP)
2896                                 swap_pager_freespace(object, offidxstart,
2897                                     count);
2898                         if (offidxend >= object->size &&
2899                             offidxstart < object->size) {
2900                                 size1 = object->size;
2901                                 object->size = offidxstart;
2902                                 if (object->cred != NULL) {
2903                                         size1 -= object->size;
2904                                         KASSERT(object->charge >= ptoa(size1),
2905                                             ("object %p charge < 0", object));
2906                                         swap_release_by_cred(ptoa(size1),
2907                                             object->cred);
2908                                         object->charge -= ptoa(size1);
2909                                 }
2910                         }
2911                 }
2912                 VM_OBJECT_WUNLOCK(object);
2913         } else
2914                 entry->object.vm_object = NULL;
2915         if (map->system_map)
2916                 vm_map_entry_deallocate(entry, TRUE);
2917         else {
2918                 entry->next = curthread->td_map_def_user;
2919                 curthread->td_map_def_user = entry;
2920         }
2921 }
2922
2923 /*
2924  *      vm_map_delete:  [ internal use only ]
2925  *
2926  *      Deallocates the given address range from the target
2927  *      map.
2928  */
2929 int
2930 vm_map_delete(vm_map_t map, vm_offset_t start, vm_offset_t end)
2931 {
2932         vm_map_entry_t entry;
2933         vm_map_entry_t first_entry;
2934
2935         VM_MAP_ASSERT_LOCKED(map);
2936         if (start == end)
2937                 return (KERN_SUCCESS);
2938
2939         /*
2940          * Find the start of the region, and clip it
2941          */
2942         if (!vm_map_lookup_entry(map, start, &first_entry))
2943                 entry = first_entry->next;
2944         else {
2945                 entry = first_entry;
2946                 vm_map_clip_start(map, entry, start);
2947         }
2948
2949         /*
2950          * Step through all entries in this region
2951          */
2952         while ((entry != &map->header) && (entry->start < end)) {
2953                 vm_map_entry_t next;
2954
2955                 /*
2956                  * Wait for wiring or unwiring of an entry to complete.
2957                  * Also wait for any system wirings to disappear on
2958                  * user maps.
2959                  */
2960                 if ((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0 ||
2961                     (vm_map_pmap(map) != kernel_pmap &&
2962                     vm_map_entry_system_wired_count(entry) != 0)) {
2963                         unsigned int last_timestamp;
2964                         vm_offset_t saved_start;
2965                         vm_map_entry_t tmp_entry;
2966
2967                         saved_start = entry->start;
2968                         entry->eflags |= MAP_ENTRY_NEEDS_WAKEUP;
2969                         last_timestamp = map->timestamp;
2970                         (void) vm_map_unlock_and_wait(map, 0);
2971                         vm_map_lock(map);
2972                         if (last_timestamp + 1 != map->timestamp) {
2973                                 /*
2974                                  * Look again for the entry because the map was
2975                                  * modified while it was unlocked.
2976                                  * Specifically, the entry may have been
2977                                  * clipped, merged, or deleted.
2978                                  */
2979                                 if (!vm_map_lookup_entry(map, saved_start,
2980                                                          &tmp_entry))
2981                                         entry = tmp_entry->next;
2982                                 else {
2983                                         entry = tmp_entry;
2984                                         vm_map_clip_start(map, entry,
2985                                                           saved_start);
2986                                 }
2987                         }
2988                         continue;
2989                 }
2990                 vm_map_clip_end(map, entry, end);
2991
2992                 next = entry->next;
2993
2994                 /*
2995                  * Unwire before removing addresses from the pmap; otherwise,
2996                  * unwiring will put the entries back in the pmap.
2997                  */
2998                 if (entry->wired_count != 0) {
2999                         vm_map_entry_unwire(map, entry);
3000                 }
3001
3002                 pmap_remove(map->pmap, entry->start, entry->end);
3003
3004                 /*
3005                  * Delete the entry only after removing all pmap
3006                  * entries pointing to its pages.  (Otherwise, its
3007                  * page frames may be reallocated, and any modify bits
3008                  * will be set in the wrong object!)
3009                  */
3010                 vm_map_entry_delete(map, entry);
3011                 entry = next;
3012         }
3013         return (KERN_SUCCESS);
3014 }
3015
3016 /*
3017  *      vm_map_remove:
3018  *
3019  *      Remove the given address range from the target map.
3020  *      This is the exported form of vm_map_delete.
3021  */
3022 int
3023 vm_map_remove(vm_map_t map, vm_offset_t start, vm_offset_t end)
3024 {
3025         int result;
3026
3027         vm_map_lock(map);
3028         VM_MAP_RANGE_CHECK(map, start, end);
3029         result = vm_map_delete(map, start, end);
3030         vm_map_unlock(map);
3031         return (result);
3032 }
3033
3034 /*
3035  *      vm_map_check_protection:
3036  *
3037  *      Assert that the target map allows the specified privilege on the
3038  *      entire address region given.  The entire region must be allocated.
3039  *
3040  *      WARNING!  This code does not and should not check whether the
3041  *      contents of the region is accessible.  For example a smaller file
3042  *      might be mapped into a larger address space.
3043  *
3044  *      NOTE!  This code is also called by munmap().
3045  *
3046  *      The map must be locked.  A read lock is sufficient.
3047  */
3048 boolean_t
3049 vm_map_check_protection(vm_map_t map, vm_offset_t start, vm_offset_t end,
3050                         vm_prot_t protection)
3051 {
3052         vm_map_entry_t entry;
3053         vm_map_entry_t tmp_entry;
3054
3055         if (!vm_map_lookup_entry(map, start, &tmp_entry))
3056                 return (FALSE);
3057         entry = tmp_entry;
3058
3059         while (start < end) {
3060                 if (entry == &map->header)
3061                         return (FALSE);
3062                 /*
3063                  * No holes allowed!
3064                  */
3065                 if (start < entry->start)
3066                         return (FALSE);
3067                 /*
3068                  * Check protection associated with entry.
3069                  */
3070                 if ((entry->protection & protection) != protection)
3071                         return (FALSE);
3072                 /* go to next entry */
3073                 start = entry->end;
3074                 entry = entry->next;
3075         }
3076         return (TRUE);
3077 }
3078
3079 /*
3080  *      vm_map_copy_entry:
3081  *
3082  *      Copies the contents of the source entry to the destination
3083  *      entry.  The entries *must* be aligned properly.
3084  */
3085 static void
3086 vm_map_copy_entry(
3087         vm_map_t src_map,
3088         vm_map_t dst_map,
3089         vm_map_entry_t src_entry,
3090         vm_map_entry_t dst_entry,
3091         vm_ooffset_t *fork_charge)
3092 {
3093         vm_object_t src_object;
3094         vm_map_entry_t fake_entry;
3095         vm_offset_t size;
3096         struct ucred *cred;
3097         int charged;
3098
3099         VM_MAP_ASSERT_LOCKED(dst_map);
3100
3101         if ((dst_entry->eflags|src_entry->eflags) & MAP_ENTRY_IS_SUB_MAP)
3102                 return;
3103
3104         if (src_entry->wired_count == 0 ||
3105             (src_entry->protection & VM_PROT_WRITE) == 0) {
3106                 /*
3107                  * If the source entry is marked needs_copy, it is already
3108                  * write-protected.
3109                  */
3110                 if ((src_entry->eflags & MAP_ENTRY_NEEDS_COPY) == 0 &&
3111                     (src_entry->protection & VM_PROT_WRITE) != 0) {
3112                         pmap_protect(src_map->pmap,
3113                             src_entry->start,
3114                             src_entry->end,
3115                             src_entry->protection & ~VM_PROT_WRITE);
3116                 }
3117
3118                 /*
3119                  * Make a copy of the object.
3120                  */
3121                 size = src_entry->end - src_entry->start;
3122                 if ((src_object = src_entry->object.vm_object) != NULL) {
3123                         VM_OBJECT_WLOCK(src_object);
3124                         charged = ENTRY_CHARGED(src_entry);
3125                         if (src_object->handle == NULL &&
3126                             (src_object->type == OBJT_DEFAULT ||
3127                             src_object->type == OBJT_SWAP)) {
3128                                 vm_object_collapse(src_object);
3129                                 if ((src_object->flags & (OBJ_NOSPLIT |
3130                                     OBJ_ONEMAPPING)) == OBJ_ONEMAPPING) {
3131                                         vm_object_split(src_entry);
3132                                         src_object =
3133                                             src_entry->object.vm_object;
3134                                 }
3135                         }
3136                         vm_object_reference_locked(src_object);
3137                         vm_object_clear_flag(src_object, OBJ_ONEMAPPING);
3138                         if (src_entry->cred != NULL &&
3139                             !(src_entry->eflags & MAP_ENTRY_NEEDS_COPY)) {
3140                                 KASSERT(src_object->cred == NULL,
3141                                     ("OVERCOMMIT: vm_map_copy_entry: cred %p",
3142                                      src_object));
3143                                 src_object->cred = src_entry->cred;
3144                                 src_object->charge = size;
3145                         }
3146                         VM_OBJECT_WUNLOCK(src_object);
3147                         dst_entry->object.vm_object = src_object;
3148                         if (charged) {
3149                                 cred = curthread->td_ucred;
3150                                 crhold(cred);
3151                                 dst_entry->cred = cred;
3152                                 *fork_charge += size;
3153                                 if (!(src_entry->eflags &
3154                                       MAP_ENTRY_NEEDS_COPY)) {
3155                                         crhold(cred);
3156                                         src_entry->cred = cred;
3157                                         *fork_charge += size;
3158                                 }
3159                         }
3160                         src_entry->eflags |= MAP_ENTRY_COW |
3161                             MAP_ENTRY_NEEDS_COPY;
3162                         dst_entry->eflags |= MAP_ENTRY_COW |
3163                             MAP_ENTRY_NEEDS_COPY;
3164                         dst_entry->offset = src_entry->offset;
3165                         if (src_entry->eflags & MAP_ENTRY_VN_WRITECNT) {
3166                                 /*
3167                                  * MAP_ENTRY_VN_WRITECNT cannot
3168                                  * indicate write reference from
3169                                  * src_entry, since the entry is
3170                                  * marked as needs copy.  Allocate a
3171                                  * fake entry that is used to
3172                                  * decrement object->un_pager.vnp.writecount
3173                                  * at the appropriate time.  Attach
3174                                  * fake_entry to the deferred list.
3175                                  */
3176                                 fake_entry = vm_map_entry_create(dst_map);
3177                                 fake_entry->eflags = MAP_ENTRY_VN_WRITECNT;
3178                                 src_entry->eflags &= ~MAP_ENTRY_VN_WRITECNT;
3179                                 vm_object_reference(src_object);
3180                                 fake_entry->object.vm_object = src_object;
3181                                 fake_entry->start = src_entry->start;
3182                                 fake_entry->end = src_entry->end;
3183                                 fake_entry->next = curthread->td_map_def_user;
3184                                 curthread->td_map_def_user = fake_entry;
3185                         }
3186                 } else {
3187                         dst_entry->object.vm_object = NULL;
3188                         dst_entry->offset = 0;
3189                         if (src_entry->cred != NULL) {
3190                                 dst_entry->cred = curthread->td_ucred;
3191                                 crhold(dst_entry->cred);
3192                                 *fork_charge += size;
3193                         }
3194                 }
3195
3196                 pmap_copy(dst_map->pmap, src_map->pmap, dst_entry->start,
3197                     dst_entry->end - dst_entry->start, src_entry->start);
3198         } else {
3199                 /*
3200                  * We don't want to make writeable wired pages copy-on-write.
3201                  * Immediately copy these pages into the new map by simulating
3202                  * page faults.  The new pages are pageable.
3203                  */
3204                 vm_fault_copy_entry(dst_map, src_map, dst_entry, src_entry,
3205                     fork_charge);
3206         }
3207 }
3208
3209 /*
3210  * vmspace_map_entry_forked:
3211  * Update the newly-forked vmspace each time a map entry is inherited
3212  * or copied.  The values for vm_dsize and vm_tsize are approximate
3213  * (and mostly-obsolete ideas in the face of mmap(2) et al.)
3214  */
3215 static void
3216 vmspace_map_entry_forked(const struct vmspace *vm1, struct vmspace *vm2,
3217     vm_map_entry_t entry)
3218 {
3219         vm_size_t entrysize;
3220         vm_offset_t newend;
3221
3222         entrysize = entry->end - entry->start;
3223         vm2->vm_map.size += entrysize;
3224         if (entry->eflags & (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP)) {
3225                 vm2->vm_ssize += btoc(entrysize);
3226         } else if (entry->start >= (vm_offset_t)vm1->vm_daddr &&
3227             entry->start < (vm_offset_t)vm1->vm_daddr + ctob(vm1->vm_dsize)) {
3228                 newend = MIN(entry->end,
3229                     (vm_offset_t)vm1->vm_daddr + ctob(vm1->vm_dsize));
3230                 vm2->vm_dsize += btoc(newend - entry->start);
3231         } else if (entry->start >= (vm_offset_t)vm1->vm_taddr &&
3232             entry->start < (vm_offset_t)vm1->vm_taddr + ctob(vm1->vm_tsize)) {
3233                 newend = MIN(entry->end,
3234                     (vm_offset_t)vm1->vm_taddr + ctob(vm1->vm_tsize));
3235                 vm2->vm_tsize += btoc(newend - entry->start);
3236         }
3237 }
3238
3239 /*
3240  * vmspace_fork:
3241  * Create a new process vmspace structure and vm_map
3242  * based on those of an existing process.  The new map
3243  * is based on the old map, according to the inheritance
3244  * values on the regions in that map.
3245  *
3246  * XXX It might be worth coalescing the entries added to the new vmspace.
3247  *
3248  * The source map must not be locked.
3249  */
3250 struct vmspace *
3251 vmspace_fork(struct vmspace *vm1, vm_ooffset_t *fork_charge)
3252 {
3253         struct vmspace *vm2;
3254         vm_map_t new_map, old_map;
3255         vm_map_entry_t new_entry, old_entry;
3256         vm_object_t object;
3257         int locked;
3258
3259         old_map = &vm1->vm_map;
3260         /* Copy immutable fields of vm1 to vm2. */
3261         vm2 = vmspace_alloc(old_map->min_offset, old_map->max_offset, NULL);
3262         if (vm2 == NULL)
3263                 return (NULL);
3264         vm2->vm_taddr = vm1->vm_taddr;
3265         vm2->vm_daddr = vm1->vm_daddr;
3266         vm2->vm_maxsaddr = vm1->vm_maxsaddr;
3267         vm_map_lock(old_map);
3268         if (old_map->busy)
3269                 vm_map_wait_busy(old_map);
3270         new_map = &vm2->vm_map;
3271         locked = vm_map_trylock(new_map); /* trylock to silence WITNESS */
3272         KASSERT(locked, ("vmspace_fork: lock failed"));
3273
3274         old_entry = old_map->header.next;
3275
3276         while (old_entry != &old_map->header) {
3277                 if (old_entry->eflags & MAP_ENTRY_IS_SUB_MAP)
3278                         panic("vm_map_fork: encountered a submap");
3279
3280                 switch (old_entry->inheritance) {
3281                 case VM_INHERIT_NONE:
3282                         break;
3283
3284                 case VM_INHERIT_SHARE:
3285                         /*
3286                          * Clone the entry, creating the shared object if necessary.
3287                          */
3288                         object = old_entry->object.vm_object;
3289                         if (object == NULL) {
3290                                 object = vm_object_allocate(OBJT_DEFAULT,
3291                                         atop(old_entry->end - old_entry->start));
3292                                 old_entry->object.vm_object = object;
3293                                 old_entry->offset = 0;
3294                                 if (old_entry->cred != NULL) {
3295                                         object->cred = old_entry->cred;
3296                                         object->charge = old_entry->end -
3297                                             old_entry->start;
3298                                         old_entry->cred = NULL;
3299                                 }
3300                         }
3301
3302                         /*
3303                          * Add the reference before calling vm_object_shadow
3304                          * to insure that a shadow object is created.
3305                          */
3306                         vm_object_reference(object);
3307                         if (old_entry->eflags & MAP_ENTRY_NEEDS_COPY) {
3308                                 vm_object_shadow(&old_entry->object.vm_object,
3309                                     &old_entry->offset,
3310                                     old_entry->end - old_entry->start);
3311                                 old_entry->eflags &= ~MAP_ENTRY_NEEDS_COPY;
3312                                 /* Transfer the second reference too. */
3313                                 vm_object_reference(
3314                                     old_entry->object.vm_object);
3315
3316                                 /*
3317                                  * As in vm_map_simplify_entry(), the
3318                                  * vnode lock will not be acquired in
3319                                  * this call to vm_object_deallocate().
3320                                  */
3321                                 vm_object_deallocate(object);
3322                                 object = old_entry->object.vm_object;
3323                         }
3324                         VM_OBJECT_WLOCK(object);
3325                         vm_object_clear_flag(object, OBJ_ONEMAPPING);
3326                         if (old_entry->cred != NULL) {
3327                                 KASSERT(object->cred == NULL, ("vmspace_fork both cred"));
3328                                 object->cred = old_entry->cred;
3329                                 object->charge = old_entry->end - old_entry->start;
3330                                 old_entry->cred = NULL;
3331                         }
3332
3333                         /*
3334                          * Assert the correct state of the vnode
3335                          * v_writecount while the object is locked, to
3336                          * not relock it later for the assertion
3337                          * correctness.
3338                          */
3339                         if (old_entry->eflags & MAP_ENTRY_VN_WRITECNT &&
3340                             object->type == OBJT_VNODE) {
3341                                 KASSERT(((struct vnode *)object->handle)->
3342                                     v_writecount > 0,
3343                                     ("vmspace_fork: v_writecount %p", object));
3344                                 KASSERT(object->un_pager.vnp.writemappings > 0,
3345                                     ("vmspace_fork: vnp.writecount %p",
3346                                     object));
3347                         }
3348                         VM_OBJECT_WUNLOCK(object);
3349
3350                         /*
3351                          * Clone the entry, referencing the shared object.
3352                          */
3353                         new_entry = vm_map_entry_create(new_map);
3354                         *new_entry = *old_entry;
3355                         new_entry->eflags &= ~(MAP_ENTRY_USER_WIRED |
3356                             MAP_ENTRY_IN_TRANSITION);
3357                         new_entry->wiring_thread = NULL;
3358                         new_entry->wired_count = 0;
3359                         if (new_entry->eflags & MAP_ENTRY_VN_WRITECNT) {
3360                                 vnode_pager_update_writecount(object,
3361                                     new_entry->start, new_entry->end);
3362                         }
3363
3364                         /*
3365                          * Insert the entry into the new map -- we know we're
3366                          * inserting at the end of the new map.
3367                          */
3368                         vm_map_entry_link(new_map, new_map->header.prev,
3369                             new_entry);
3370                         vmspace_map_entry_forked(vm1, vm2, new_entry);
3371
3372                         /*
3373                          * Update the physical map
3374                          */
3375                         pmap_copy(new_map->pmap, old_map->pmap,
3376                             new_entry->start,
3377                             (old_entry->end - old_entry->start),
3378                             old_entry->start);
3379                         break;
3380
3381                 case VM_INHERIT_COPY:
3382                         /*
3383                          * Clone the entry and link into the map.
3384                          */
3385                         new_entry = vm_map_entry_create(new_map);
3386                         *new_entry = *old_entry;
3387                         /*
3388                          * Copied entry is COW over the old object.
3389                          */
3390                         new_entry->eflags &= ~(MAP_ENTRY_USER_WIRED |
3391                             MAP_ENTRY_IN_TRANSITION | MAP_ENTRY_VN_WRITECNT);
3392                         new_entry->wiring_thread = NULL;
3393                         new_entry->wired_count = 0;
3394                         new_entry->object.vm_object = NULL;
3395                         new_entry->cred = NULL;
3396                         vm_map_entry_link(new_map, new_map->header.prev,
3397                             new_entry);
3398                         vmspace_map_entry_forked(vm1, vm2, new_entry);
3399                         vm_map_copy_entry(old_map, new_map, old_entry,
3400                             new_entry, fork_charge);
3401                         break;
3402
3403                 case VM_INHERIT_ZERO:
3404                         /*
3405                          * Create a new anonymous mapping entry modelled from
3406                          * the old one.
3407                          */
3408                         new_entry = vm_map_entry_create(new_map);
3409                         memset(new_entry, 0, sizeof(*new_entry));
3410
3411                         new_entry->start = old_entry->start;
3412                         new_entry->end = old_entry->end;
3413                         new_entry->avail_ssize = old_entry->avail_ssize;
3414                         new_entry->eflags = old_entry->eflags &
3415                             ~(MAP_ENTRY_USER_WIRED | MAP_ENTRY_IN_TRANSITION |
3416                             MAP_ENTRY_VN_WRITECNT);
3417                         new_entry->protection = old_entry->protection;
3418                         new_entry->max_protection = old_entry->max_protection;
3419                         new_entry->inheritance = VM_INHERIT_ZERO;
3420
3421                         vm_map_entry_link(new_map, new_map->header.prev,
3422                             new_entry);
3423                         vmspace_map_entry_forked(vm1, vm2, new_entry);
3424
3425                         new_entry->cred = curthread->td_ucred;
3426                         crhold(new_entry->cred);
3427                         *fork_charge += (new_entry->end - new_entry->start);
3428
3429                         break;
3430                 }
3431                 old_entry = old_entry->next;
3432         }
3433         /*
3434          * Use inlined vm_map_unlock() to postpone handling the deferred
3435          * map entries, which cannot be done until both old_map and
3436          * new_map locks are released.
3437          */
3438         sx_xunlock(&old_map->lock);
3439         sx_xunlock(&new_map->lock);
3440         vm_map_process_deferred();
3441
3442         return (vm2);
3443 }
3444
3445 int
3446 vm_map_stack(vm_map_t map, vm_offset_t addrbos, vm_size_t max_ssize,
3447     vm_prot_t prot, vm_prot_t max, int cow)
3448 {
3449         vm_size_t growsize, init_ssize;
3450         rlim_t lmemlim, vmemlim;
3451         int rv;
3452
3453         growsize = sgrowsiz;
3454         init_ssize = (max_ssize < growsize) ? max_ssize : growsize;
3455         vm_map_lock(map);
3456         PROC_LOCK(curproc);
3457         lmemlim = lim_cur(curproc, RLIMIT_MEMLOCK);
3458         vmemlim = lim_cur(curproc, RLIMIT_VMEM);
3459         PROC_UNLOCK(curproc);
3460         if (!old_mlock && map->flags & MAP_WIREFUTURE) {
3461                 if (ptoa(pmap_wired_count(map->pmap)) + init_ssize > lmemlim) {
3462                         rv = KERN_NO_SPACE;
3463                         goto out;
3464                 }
3465         }
3466         /* If we would blow our VMEM resource limit, no go */
3467         if (map->size + init_ssize > vmemlim) {
3468                 rv = KERN_NO_SPACE;
3469                 goto out;
3470         }
3471         rv = vm_map_stack_locked(map, addrbos, max_ssize, growsize, prot,
3472             max, cow);
3473 out:
3474         vm_map_unlock(map);
3475         return (rv);
3476 }
3477
3478 static int
3479 vm_map_stack_locked(vm_map_t map, vm_offset_t addrbos, vm_size_t max_ssize,
3480     vm_size_t growsize, vm_prot_t prot, vm_prot_t max, int cow)
3481 {
3482         vm_map_entry_t new_entry, prev_entry;
3483         vm_offset_t bot, top;
3484         vm_size_t init_ssize;
3485         int orient, rv;
3486
3487         /*
3488          * The stack orientation is piggybacked with the cow argument.
3489          * Extract it into orient and mask the cow argument so that we
3490          * don't pass it around further.
3491          * NOTE: We explicitly allow bi-directional stacks.
3492          */
3493         orient = cow & (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
3494         KASSERT(orient != 0, ("No stack grow direction"));
3495
3496         if (addrbos < vm_map_min(map) ||
3497             addrbos > vm_map_max(map) ||
3498             addrbos + max_ssize < addrbos)
3499                 return (KERN_NO_SPACE);
3500
3501         init_ssize = (max_ssize < growsize) ? max_ssize : growsize;
3502
3503         /* If addr is already mapped, no go */
3504         if (vm_map_lookup_entry(map, addrbos, &prev_entry))
3505                 return (KERN_NO_SPACE);
3506
3507         /*
3508          * If we can't accomodate max_ssize in the current mapping, no go.
3509          * However, we need to be aware that subsequent user mappings might
3510          * map into the space we have reserved for stack, and currently this
3511          * space is not protected.
3512          *
3513          * Hopefully we will at least detect this condition when we try to
3514          * grow the stack.
3515          */
3516         if ((prev_entry->next != &map->header) &&
3517             (prev_entry->next->start < addrbos + max_ssize))
3518                 return (KERN_NO_SPACE);
3519
3520         /*
3521          * We initially map a stack of only init_ssize.  We will grow as
3522          * needed later.  Depending on the orientation of the stack (i.e.
3523          * the grow direction) we either map at the top of the range, the
3524          * bottom of the range or in the middle.
3525          *
3526          * Note: we would normally expect prot and max to be VM_PROT_ALL,
3527          * and cow to be 0.  Possibly we should eliminate these as input
3528          * parameters, and just pass these values here in the insert call.
3529          */
3530         if (orient == MAP_STACK_GROWS_DOWN)
3531                 bot = addrbos + max_ssize - init_ssize;
3532         else if (orient == MAP_STACK_GROWS_UP)
3533                 bot = addrbos;
3534         else
3535                 bot = round_page(addrbos + max_ssize/2 - init_ssize/2);
3536         top = bot + init_ssize;
3537         rv = vm_map_insert(map, NULL, 0, bot, top, prot, max, cow);
3538
3539         /* Now set the avail_ssize amount. */
3540         if (rv == KERN_SUCCESS) {
3541                 new_entry = prev_entry->next;
3542                 if (new_entry->end != top || new_entry->start != bot)
3543                         panic("Bad entry start/end for new stack entry");
3544
3545                 new_entry->avail_ssize = max_ssize - init_ssize;
3546                 KASSERT((orient & MAP_STACK_GROWS_DOWN) == 0 ||
3547                     (new_entry->eflags & MAP_ENTRY_GROWS_DOWN) != 0,
3548                     ("new entry lacks MAP_ENTRY_GROWS_DOWN"));
3549                 KASSERT((orient & MAP_STACK_GROWS_UP) == 0 ||
3550                     (new_entry->eflags & MAP_ENTRY_GROWS_UP) != 0,
3551                     ("new entry lacks MAP_ENTRY_GROWS_UP"));
3552         }
3553
3554         return (rv);
3555 }
3556
3557 static int stack_guard_page = 0;
3558 TUNABLE_INT("security.bsd.stack_guard_page", &stack_guard_page);
3559 SYSCTL_INT(_security_bsd, OID_AUTO, stack_guard_page, CTLFLAG_RW,
3560     &stack_guard_page, 0,
3561     "Insert stack guard page ahead of the growable segments.");
3562
3563 /* Attempts to grow a vm stack entry.  Returns KERN_SUCCESS if the
3564  * desired address is already mapped, or if we successfully grow
3565  * the stack.  Also returns KERN_SUCCESS if addr is outside the
3566  * stack range (this is strange, but preserves compatibility with
3567  * the grow function in vm_machdep.c).
3568  */
3569 int
3570 vm_map_growstack(struct proc *p, vm_offset_t addr)
3571 {
3572         vm_map_entry_t next_entry, prev_entry;
3573         vm_map_entry_t new_entry, stack_entry;
3574         struct vmspace *vm = p->p_vmspace;
3575         vm_map_t map = &vm->vm_map;
3576         vm_offset_t end;
3577         vm_size_t growsize;
3578         size_t grow_amount, max_grow;
3579         rlim_t lmemlim, stacklim, vmemlim;
3580         int is_procstack, rv;
3581         struct ucred *cred;
3582 #ifdef notyet
3583         uint64_t limit;
3584 #endif
3585 #ifdef RACCT
3586         int error;
3587 #endif
3588
3589 Retry:
3590         PROC_LOCK(p);
3591         lmemlim = lim_cur(p, RLIMIT_MEMLOCK);
3592         stacklim = lim_cur(p, RLIMIT_STACK);
3593         vmemlim = lim_cur(p, RLIMIT_VMEM);
3594         PROC_UNLOCK(p);
3595
3596         vm_map_lock_read(map);
3597
3598         /* If addr is already in the entry range, no need to grow.*/
3599         if (vm_map_lookup_entry(map, addr, &prev_entry)) {
3600                 vm_map_unlock_read(map);
3601                 return (KERN_SUCCESS);
3602         }
3603
3604         next_entry = prev_entry->next;
3605         if (!(prev_entry->eflags & MAP_ENTRY_GROWS_UP)) {
3606                 /*
3607                  * This entry does not grow upwards. Since the address lies
3608                  * beyond this entry, the next entry (if one exists) has to
3609                  * be a downward growable entry. The entry list header is
3610                  * never a growable entry, so it suffices to check the flags.
3611                  */
3612                 if (!(next_entry->eflags & MAP_ENTRY_GROWS_DOWN)) {
3613                         vm_map_unlock_read(map);
3614                         return (KERN_SUCCESS);
3615                 }
3616                 stack_entry = next_entry;
3617         } else {
3618                 /*
3619                  * This entry grows upward. If the next entry does not at
3620                  * least grow downwards, this is the entry we need to grow.
3621                  * otherwise we have two possible choices and we have to
3622                  * select one.
3623                  */
3624                 if (next_entry->eflags & MAP_ENTRY_GROWS_DOWN) {
3625                         /*
3626                          * We have two choices; grow the entry closest to
3627                          * the address to minimize the amount of growth.
3628                          */
3629                         if (addr - prev_entry->end <= next_entry->start - addr)
3630                                 stack_entry = prev_entry;
3631                         else
3632                                 stack_entry = next_entry;
3633                 } else
3634                         stack_entry = prev_entry;
3635         }
3636
3637         if (stack_entry == next_entry) {
3638                 KASSERT(stack_entry->eflags & MAP_ENTRY_GROWS_DOWN, ("foo"));
3639                 KASSERT(addr < stack_entry->start, ("foo"));
3640                 end = (prev_entry != &map->header) ? prev_entry->end :
3641                     stack_entry->start - stack_entry->avail_ssize;
3642                 grow_amount = roundup(stack_entry->start - addr, PAGE_SIZE);
3643                 max_grow = stack_entry->start - end;
3644         } else {
3645                 KASSERT(stack_entry->eflags & MAP_ENTRY_GROWS_UP, ("foo"));
3646                 KASSERT(addr >= stack_entry->end, ("foo"));
3647                 end = (next_entry != &map->header) ? next_entry->start :
3648                     stack_entry->end + stack_entry->avail_ssize;
3649                 grow_amount = roundup(addr + 1 - stack_entry->end, PAGE_SIZE);
3650                 max_grow = end - stack_entry->end;
3651         }
3652
3653         if (grow_amount > stack_entry->avail_ssize) {
3654                 vm_map_unlock_read(map);
3655                 return (KERN_NO_SPACE);
3656         }
3657
3658         /*
3659          * If there is no longer enough space between the entries nogo, and
3660          * adjust the available space.  Note: this  should only happen if the
3661          * user has mapped into the stack area after the stack was created,
3662          * and is probably an error.
3663          *
3664          * This also effectively destroys any guard page the user might have
3665          * intended by limiting the stack size.
3666          */
3667         if (grow_amount + (stack_guard_page ? PAGE_SIZE : 0) > max_grow) {
3668                 if (vm_map_lock_upgrade(map))
3669                         goto Retry;
3670
3671                 stack_entry->avail_ssize = max_grow;
3672
3673                 vm_map_unlock(map);
3674                 return (KERN_NO_SPACE);
3675         }
3676
3677         is_procstack = (addr >= (vm_offset_t)vm->vm_maxsaddr &&
3678             addr < (vm_offset_t)p->p_sysent->sv_usrstack) ? 1 : 0;
3679
3680         /*
3681          * If this is the main process stack, see if we're over the stack
3682          * limit.
3683          */
3684         if (is_procstack && (ctob(vm->vm_ssize) + grow_amount > stacklim)) {
3685                 vm_map_unlock_read(map);
3686                 return (KERN_NO_SPACE);
3687         }
3688 #ifdef RACCT
3689         if (racct_enable) {
3690                 PROC_LOCK(p);
3691                 if (is_procstack && racct_set(p, RACCT_STACK,
3692                     ctob(vm->vm_ssize) + grow_amount)) {
3693                         PROC_UNLOCK(p);
3694                         vm_map_unlock_read(map);
3695                         return (KERN_NO_SPACE);
3696                 }
3697                 PROC_UNLOCK(p);
3698         }
3699 #endif
3700
3701         /* Round up the grow amount modulo sgrowsiz */
3702         growsize = sgrowsiz;
3703         grow_amount = roundup(grow_amount, growsize);
3704         if (grow_amount > stack_entry->avail_ssize)
3705                 grow_amount = stack_entry->avail_ssize;
3706         if (is_procstack && (ctob(vm->vm_ssize) + grow_amount > stacklim)) {
3707                 grow_amount = trunc_page((vm_size_t)stacklim) -
3708                     ctob(vm->vm_ssize);
3709         }
3710 #ifdef notyet
3711         PROC_LOCK(p);
3712         limit = racct_get_available(p, RACCT_STACK);
3713         PROC_UNLOCK(p);
3714         if (is_procstack && (ctob(vm->vm_ssize) + grow_amount > limit))
3715                 grow_amount = limit - ctob(vm->vm_ssize);
3716 #endif
3717         if (!old_mlock && map->flags & MAP_WIREFUTURE) {
3718                 if (ptoa(pmap_wired_count(map->pmap)) + grow_amount > lmemlim) {
3719                         vm_map_unlock_read(map);
3720                         rv = KERN_NO_SPACE;
3721                         goto out;
3722                 }
3723 #ifdef RACCT
3724                 if (racct_enable) {
3725                         PROC_LOCK(p);
3726                         if (racct_set(p, RACCT_MEMLOCK,
3727                             ptoa(pmap_wired_count(map->pmap)) + grow_amount)) {
3728                                 PROC_UNLOCK(p);
3729                                 vm_map_unlock_read(map);
3730                                 rv = KERN_NO_SPACE;
3731                                 goto out;
3732                         }
3733                         PROC_UNLOCK(p);
3734                 }
3735 #endif
3736         }
3737         /* If we would blow our VMEM resource limit, no go */
3738         if (map->size + grow_amount > vmemlim) {
3739                 vm_map_unlock_read(map);
3740                 rv = KERN_NO_SPACE;
3741                 goto out;
3742         }
3743 #ifdef RACCT
3744         if (racct_enable) {
3745                 PROC_LOCK(p);
3746                 if (racct_set(p, RACCT_VMEM, map->size + grow_amount)) {
3747                         PROC_UNLOCK(p);
3748                         vm_map_unlock_read(map);
3749                         rv = KERN_NO_SPACE;
3750                         goto out;
3751                 }
3752                 PROC_UNLOCK(p);
3753         }
3754 #endif
3755
3756         if (vm_map_lock_upgrade(map))
3757                 goto Retry;
3758
3759         if (stack_entry == next_entry) {
3760                 /*
3761                  * Growing downward.
3762                  */
3763                 /* Get the preliminary new entry start value */
3764                 addr = stack_entry->start - grow_amount;
3765
3766                 /*
3767                  * If this puts us into the previous entry, cut back our
3768                  * growth to the available space. Also, see the note above.
3769                  */
3770                 if (addr < end) {
3771                         stack_entry->avail_ssize = max_grow;
3772                         addr = end;
3773                         if (stack_guard_page)
3774                                 addr += PAGE_SIZE;
3775                 }
3776
3777                 rv = vm_map_insert(map, NULL, 0, addr, stack_entry->start,
3778                     next_entry->protection, next_entry->max_protection,
3779                     MAP_STACK_GROWS_DOWN);
3780
3781                 /* Adjust the available stack space by the amount we grew. */
3782                 if (rv == KERN_SUCCESS) {
3783                         new_entry = prev_entry->next;
3784                         KASSERT(new_entry == stack_entry->prev, ("foo"));
3785                         KASSERT(new_entry->end == stack_entry->start, ("foo"));
3786                         KASSERT(new_entry->start == addr, ("foo"));
3787                         KASSERT((new_entry->eflags & MAP_ENTRY_GROWS_DOWN) !=
3788                             0, ("new entry lacks MAP_ENTRY_GROWS_DOWN"));
3789                         grow_amount = new_entry->end - new_entry->start;
3790                         new_entry->avail_ssize = stack_entry->avail_ssize -
3791                             grow_amount;
3792                         stack_entry->eflags &= ~MAP_ENTRY_GROWS_DOWN;
3793                 }
3794         } else {
3795                 /*
3796                  * Growing upward.
3797                  */
3798                 addr = stack_entry->end + grow_amount;
3799
3800                 /*
3801                  * If this puts us into the next entry, cut back our growth
3802                  * to the available space. Also, see the note above.
3803                  */
3804                 if (addr > end) {
3805                         stack_entry->avail_ssize = end - stack_entry->end;
3806                         addr = end;
3807                         if (stack_guard_page)
3808                                 addr -= PAGE_SIZE;
3809                 }
3810
3811                 grow_amount = addr - stack_entry->end;
3812                 cred = stack_entry->cred;
3813                 if (cred == NULL && stack_entry->object.vm_object != NULL)
3814                         cred = stack_entry->object.vm_object->cred;
3815                 if (cred != NULL && !swap_reserve_by_cred(grow_amount, cred))
3816                         rv = KERN_NO_SPACE;
3817                 /* Grow the underlying object if applicable. */
3818                 else if (stack_entry->object.vm_object == NULL ||
3819                     vm_object_coalesce(stack_entry->object.vm_object,
3820                     stack_entry->offset,
3821                     (vm_size_t)(stack_entry->end - stack_entry->start),
3822                     (vm_size_t)grow_amount, cred != NULL)) {
3823                         map->size += (addr - stack_entry->end);
3824                         /* Update the current entry. */
3825                         stack_entry->end = addr;
3826                         stack_entry->avail_ssize -= grow_amount;
3827                         vm_map_entry_resize_free(map, stack_entry);
3828                         rv = KERN_SUCCESS;
3829
3830                         if (next_entry != &map->header)
3831                                 vm_map_clip_start(map, next_entry, addr);
3832                 } else
3833                         rv = KERN_FAILURE;
3834         }
3835
3836         if (rv == KERN_SUCCESS && is_procstack)
3837                 vm->vm_ssize += btoc(grow_amount);
3838
3839         vm_map_unlock(map);
3840
3841         /*
3842          * Heed the MAP_WIREFUTURE flag if it was set for this process.
3843          */
3844         if (rv == KERN_SUCCESS && (map->flags & MAP_WIREFUTURE)) {
3845                 vm_map_wire(map,
3846                     (stack_entry == next_entry) ? addr : addr - grow_amount,
3847                     (stack_entry == next_entry) ? stack_entry->start : addr,
3848                     (p->p_flag & P_SYSTEM)
3849                     ? VM_MAP_WIRE_SYSTEM|VM_MAP_WIRE_NOHOLES
3850                     : VM_MAP_WIRE_USER|VM_MAP_WIRE_NOHOLES);
3851         }
3852
3853 out:
3854 #ifdef RACCT
3855         if (racct_enable && rv != KERN_SUCCESS) {
3856                 PROC_LOCK(p);
3857                 error = racct_set(p, RACCT_VMEM, map->size);
3858                 KASSERT(error == 0, ("decreasing RACCT_VMEM failed"));
3859                 if (!old_mlock) {
3860                         error = racct_set(p, RACCT_MEMLOCK,
3861                             ptoa(pmap_wired_count(map->pmap)));
3862                         KASSERT(error == 0, ("decreasing RACCT_MEMLOCK failed"));
3863                 }
3864                 error = racct_set(p, RACCT_STACK, ctob(vm->vm_ssize));
3865                 KASSERT(error == 0, ("decreasing RACCT_STACK failed"));
3866                 PROC_UNLOCK(p);
3867         }
3868 #endif
3869
3870         return (rv);
3871 }
3872
3873 /*
3874  * Unshare the specified VM space for exec.  If other processes are
3875  * mapped to it, then create a new one.  The new vmspace is null.
3876  */
3877 int
3878 vmspace_exec(struct proc *p, vm_offset_t minuser, vm_offset_t maxuser)
3879 {
3880         struct vmspace *oldvmspace = p->p_vmspace;
3881         struct vmspace *newvmspace;
3882
3883         KASSERT((curthread->td_pflags & TDP_EXECVMSPC) == 0,
3884             ("vmspace_exec recursed"));
3885         newvmspace = vmspace_alloc(minuser, maxuser, NULL);
3886         if (newvmspace == NULL)
3887                 return (ENOMEM);
3888         newvmspace->vm_swrss = oldvmspace->vm_swrss;
3889         /*
3890          * This code is written like this for prototype purposes.  The
3891          * goal is to avoid running down the vmspace here, but let the
3892          * other process's that are still using the vmspace to finally
3893          * run it down.  Even though there is little or no chance of blocking
3894          * here, it is a good idea to keep this form for future mods.
3895          */
3896         PROC_VMSPACE_LOCK(p);
3897         p->p_vmspace = newvmspace;
3898         PROC_VMSPACE_UNLOCK(p);
3899         if (p == curthread->td_proc)
3900                 pmap_activate(curthread);
3901         curthread->td_pflags |= TDP_EXECVMSPC;
3902         return (0);
3903 }
3904
3905 /*
3906  * Unshare the specified VM space for forcing COW.  This
3907  * is called by rfork, for the (RFMEM|RFPROC) == 0 case.
3908  */
3909 int
3910 vmspace_unshare(struct proc *p)
3911 {
3912         struct vmspace *oldvmspace = p->p_vmspace;
3913         struct vmspace *newvmspace;
3914         vm_ooffset_t fork_charge;
3915
3916         if (oldvmspace->vm_refcnt == 1)
3917                 return (0);
3918         fork_charge = 0;
3919         newvmspace = vmspace_fork(oldvmspace, &fork_charge);
3920         if (newvmspace == NULL)
3921                 return (ENOMEM);
3922         if (!swap_reserve_by_cred(fork_charge, p->p_ucred)) {
3923                 vmspace_free(newvmspace);
3924                 return (ENOMEM);
3925         }
3926         PROC_VMSPACE_LOCK(p);
3927         p->p_vmspace = newvmspace;
3928         PROC_VMSPACE_UNLOCK(p);
3929         if (p == curthread->td_proc)
3930                 pmap_activate(curthread);
3931         vmspace_free(oldvmspace);
3932         return (0);
3933 }
3934
3935 /*
3936  *      vm_map_lookup:
3937  *
3938  *      Finds the VM object, offset, and
3939  *      protection for a given virtual address in the
3940  *      specified map, assuming a page fault of the
3941  *      type specified.
3942  *
3943  *      Leaves the map in question locked for read; return
3944  *      values are guaranteed until a vm_map_lookup_done
3945  *      call is performed.  Note that the map argument
3946  *      is in/out; the returned map must be used in
3947  *      the call to vm_map_lookup_done.
3948  *
3949  *      A handle (out_entry) is returned for use in
3950  *      vm_map_lookup_done, to make that fast.
3951  *
3952  *      If a lookup is requested with "write protection"
3953  *      specified, the map may be changed to perform virtual
3954  *      copying operations, although the data referenced will
3955  *      remain the same.
3956  */
3957 int
3958 vm_map_lookup(vm_map_t *var_map,                /* IN/OUT */
3959               vm_offset_t vaddr,
3960               vm_prot_t fault_typea,
3961               vm_map_entry_t *out_entry,        /* OUT */
3962               vm_object_t *object,              /* OUT */
3963               vm_pindex_t *pindex,              /* OUT */
3964               vm_prot_t *out_prot,              /* OUT */
3965               boolean_t *wired)                 /* OUT */
3966 {
3967         vm_map_entry_t entry;
3968         vm_map_t map = *var_map;
3969         vm_prot_t prot;
3970         vm_prot_t fault_type = fault_typea;
3971         vm_object_t eobject;
3972         vm_size_t size;
3973         struct ucred *cred;
3974
3975 RetryLookup:;
3976
3977         vm_map_lock_read(map);
3978
3979         /*
3980          * Lookup the faulting address.
3981          */
3982         if (!vm_map_lookup_entry(map, vaddr, out_entry)) {
3983                 vm_map_unlock_read(map);
3984                 return (KERN_INVALID_ADDRESS);
3985         }
3986
3987         entry = *out_entry;
3988
3989         /*
3990          * Handle submaps.
3991          */
3992         if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) {
3993                 vm_map_t old_map = map;
3994
3995                 *var_map = map = entry->object.sub_map;
3996                 vm_map_unlock_read(old_map);
3997                 goto RetryLookup;
3998         }
3999
4000         /*
4001          * Check whether this task is allowed to have this page.
4002          */
4003         prot = entry->protection;
4004         fault_type &= (VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
4005         if ((fault_type & prot) != fault_type || prot == VM_PROT_NONE) {
4006                 vm_map_unlock_read(map);
4007                 return (KERN_PROTECTION_FAILURE);
4008         }
4009         KASSERT((prot & VM_PROT_WRITE) == 0 || (entry->eflags &
4010             (MAP_ENTRY_USER_WIRED | MAP_ENTRY_NEEDS_COPY)) !=
4011             (MAP_ENTRY_USER_WIRED | MAP_ENTRY_NEEDS_COPY),
4012             ("entry %p flags %x", entry, entry->eflags));
4013         if ((fault_typea & VM_PROT_COPY) != 0 &&
4014             (entry->max_protection & VM_PROT_WRITE) == 0 &&
4015             (entry->eflags & MAP_ENTRY_COW) == 0) {
4016                 vm_map_unlock_read(map);
4017                 return (KERN_PROTECTION_FAILURE);
4018         }
4019
4020         /*
4021          * If this page is not pageable, we have to get it for all possible
4022          * accesses.
4023          */
4024         *wired = (entry->wired_count != 0);
4025         if (*wired)
4026                 fault_type = entry->protection;
4027         size = entry->end - entry->start;
4028         /*
4029          * If the entry was copy-on-write, we either ...
4030          */
4031         if (entry->eflags & MAP_ENTRY_NEEDS_COPY) {
4032                 /*
4033                  * If we want to write the page, we may as well handle that
4034                  * now since we've got the map locked.
4035                  *
4036                  * If we don't need to write the page, we just demote the
4037                  * permissions allowed.
4038                  */
4039                 if ((fault_type & VM_PROT_WRITE) != 0 ||
4040                     (fault_typea & VM_PROT_COPY) != 0) {
4041                         /*
4042                          * Make a new object, and place it in the object
4043                          * chain.  Note that no new references have appeared
4044                          * -- one just moved from the map to the new
4045                          * object.
4046                          */
4047                         if (vm_map_lock_upgrade(map))
4048                                 goto RetryLookup;
4049
4050                         if (entry->cred == NULL) {
4051                                 /*
4052                                  * The debugger owner is charged for
4053                                  * the memory.
4054                                  */
4055                                 cred = curthread->td_ucred;
4056                                 crhold(cred);
4057                                 if (!swap_reserve_by_cred(size, cred)) {
4058                                         crfree(cred);
4059                                         vm_map_unlock(map);
4060                                         return (KERN_RESOURCE_SHORTAGE);
4061                                 }
4062                                 entry->cred = cred;
4063                         }
4064                         vm_object_shadow(&entry->object.vm_object,
4065                             &entry->offset, size);
4066                         entry->eflags &= ~MAP_ENTRY_NEEDS_COPY;
4067                         eobject = entry->object.vm_object;
4068                         if (eobject->cred != NULL) {
4069                                 /*
4070                                  * The object was not shadowed.
4071                                  */
4072                                 swap_release_by_cred(size, entry->cred);
4073                                 crfree(entry->cred);
4074                                 entry->cred = NULL;
4075                         } else if (entry->cred != NULL) {
4076                                 VM_OBJECT_WLOCK(eobject);
4077                                 eobject->cred = entry->cred;
4078                                 eobject->charge = size;
4079                                 VM_OBJECT_WUNLOCK(eobject);
4080                                 entry->cred = NULL;
4081                         }
4082
4083                         vm_map_lock_downgrade(map);
4084                 } else {
4085                         /*
4086                          * We're attempting to read a copy-on-write page --
4087                          * don't allow writes.
4088                          */
4089                         prot &= ~VM_PROT_WRITE;
4090                 }
4091         }
4092
4093         /*
4094          * Create an object if necessary.
4095          */
4096         if (entry->object.vm_object == NULL &&
4097             !map->system_map) {
4098                 if (vm_map_lock_upgrade(map))
4099                         goto RetryLookup;
4100                 entry->object.vm_object = vm_object_allocate(OBJT_DEFAULT,
4101                     atop(size));
4102                 entry->offset = 0;
4103                 if (entry->cred != NULL) {
4104                         VM_OBJECT_WLOCK(entry->object.vm_object);
4105                         entry->object.vm_object->cred = entry->cred;
4106                         entry->object.vm_object->charge = size;
4107                         VM_OBJECT_WUNLOCK(entry->object.vm_object);
4108                         entry->cred = NULL;
4109                 }
4110                 vm_map_lock_downgrade(map);
4111         }
4112
4113         /*
4114          * Return the object/offset from this entry.  If the entry was
4115          * copy-on-write or empty, it has been fixed up.
4116          */
4117         *pindex = OFF_TO_IDX((vaddr - entry->start) + entry->offset);
4118         *object = entry->object.vm_object;
4119
4120         *out_prot = prot;
4121         return (KERN_SUCCESS);
4122 }
4123
4124 /*
4125  *      vm_map_lookup_locked:
4126  *
4127  *      Lookup the faulting address.  A version of vm_map_lookup that returns 
4128  *      KERN_FAILURE instead of blocking on map lock or memory allocation.
4129  */
4130 int
4131 vm_map_lookup_locked(vm_map_t *var_map,         /* IN/OUT */
4132                      vm_offset_t vaddr,
4133                      vm_prot_t fault_typea,
4134                      vm_map_entry_t *out_entry, /* OUT */
4135                      vm_object_t *object,       /* OUT */
4136                      vm_pindex_t *pindex,       /* OUT */
4137                      vm_prot_t *out_prot,       /* OUT */
4138                      boolean_t *wired)          /* OUT */
4139 {
4140         vm_map_entry_t entry;
4141         vm_map_t map = *var_map;
4142         vm_prot_t prot;
4143         vm_prot_t fault_type = fault_typea;
4144
4145         /*
4146          * Lookup the faulting address.
4147          */
4148         if (!vm_map_lookup_entry(map, vaddr, out_entry))
4149                 return (KERN_INVALID_ADDRESS);
4150
4151         entry = *out_entry;
4152
4153         /*
4154          * Fail if the entry refers to a submap.
4155          */
4156         if (entry->eflags & MAP_ENTRY_IS_SUB_MAP)
4157                 return (KERN_FAILURE);
4158
4159         /*
4160          * Check whether this task is allowed to have this page.
4161          */
4162         prot = entry->protection;
4163         fault_type &= VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE;
4164         if ((fault_type & prot) != fault_type)
4165                 return (KERN_PROTECTION_FAILURE);
4166
4167         /*
4168          * If this page is not pageable, we have to get it for all possible
4169          * accesses.
4170          */
4171         *wired = (entry->wired_count != 0);
4172         if (*wired)
4173                 fault_type = entry->protection;
4174
4175         if (entry->eflags & MAP_ENTRY_NEEDS_COPY) {
4176                 /*
4177                  * Fail if the entry was copy-on-write for a write fault.
4178                  */
4179                 if (fault_type & VM_PROT_WRITE)
4180                         return (KERN_FAILURE);
4181                 /*
4182                  * We're attempting to read a copy-on-write page --
4183                  * don't allow writes.
4184                  */
4185                 prot &= ~VM_PROT_WRITE;
4186         }
4187
4188         /*
4189          * Fail if an object should be created.
4190          */
4191         if (entry->object.vm_object == NULL && !map->system_map)
4192                 return (KERN_FAILURE);
4193
4194         /*
4195          * Return the object/offset from this entry.  If the entry was
4196          * copy-on-write or empty, it has been fixed up.
4197          */
4198         *pindex = OFF_TO_IDX((vaddr - entry->start) + entry->offset);
4199         *object = entry->object.vm_object;
4200
4201         *out_prot = prot;
4202         return (KERN_SUCCESS);
4203 }
4204
4205 /*
4206  *      vm_map_lookup_done:
4207  *
4208  *      Releases locks acquired by a vm_map_lookup
4209  *      (according to the handle returned by that lookup).
4210  */
4211 void
4212 vm_map_lookup_done(vm_map_t map, vm_map_entry_t entry)
4213 {
4214         /*
4215          * Unlock the main-level map
4216          */
4217         vm_map_unlock_read(map);
4218 }
4219
4220 #include "opt_ddb.h"
4221 #ifdef DDB
4222 #include <sys/kernel.h>
4223
4224 #include <ddb/ddb.h>
4225
4226 static void
4227 vm_map_print(vm_map_t map)
4228 {
4229         vm_map_entry_t entry;
4230
4231         db_iprintf("Task map %p: pmap=%p, nentries=%d, version=%u\n",
4232             (void *)map,
4233             (void *)map->pmap, map->nentries, map->timestamp);
4234
4235         db_indent += 2;
4236         for (entry = map->header.next; entry != &map->header;
4237             entry = entry->next) {
4238                 db_iprintf("map entry %p: start=%p, end=%p\n",
4239                     (void *)entry, (void *)entry->start, (void *)entry->end);
4240                 {
4241                         static char *inheritance_name[4] =
4242                         {"share", "copy", "none", "donate_copy"};
4243
4244                         db_iprintf(" prot=%x/%x/%s",
4245                             entry->protection,
4246                             entry->max_protection,
4247                             inheritance_name[(int)(unsigned char)entry->inheritance]);
4248                         if (entry->wired_count != 0)
4249                                 db_printf(", wired");
4250                 }
4251                 if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) {
4252                         db_printf(", share=%p, offset=0x%jx\n",
4253                             (void *)entry->object.sub_map,
4254                             (uintmax_t)entry->offset);
4255                         if ((entry->prev == &map->header) ||
4256                             (entry->prev->object.sub_map !=
4257                                 entry->object.sub_map)) {
4258                                 db_indent += 2;
4259                                 vm_map_print((vm_map_t)entry->object.sub_map);
4260                                 db_indent -= 2;
4261                         }
4262                 } else {
4263                         if (entry->cred != NULL)
4264                                 db_printf(", ruid %d", entry->cred->cr_ruid);
4265                         db_printf(", object=%p, offset=0x%jx",
4266                             (void *)entry->object.vm_object,
4267                             (uintmax_t)entry->offset);
4268                         if (entry->object.vm_object && entry->object.vm_object->cred)
4269                                 db_printf(", obj ruid %d charge %jx",
4270                                     entry->object.vm_object->cred->cr_ruid,
4271                                     (uintmax_t)entry->object.vm_object->charge);
4272                         if (entry->eflags & MAP_ENTRY_COW)
4273                                 db_printf(", copy (%s)",
4274                                     (entry->eflags & MAP_ENTRY_NEEDS_COPY) ? "needed" : "done");
4275                         db_printf("\n");
4276
4277                         if ((entry->prev == &map->header) ||
4278                             (entry->prev->object.vm_object !=
4279                                 entry->object.vm_object)) {
4280                                 db_indent += 2;
4281                                 vm_object_print((db_expr_t)(intptr_t)
4282                                                 entry->object.vm_object,
4283                                                 0, 0, (char *)0);
4284                                 db_indent -= 2;
4285                         }
4286                 }
4287         }
4288         db_indent -= 2;
4289 }
4290
4291 DB_SHOW_COMMAND(map, map)
4292 {
4293
4294         if (!have_addr) {
4295                 db_printf("usage: show map <addr>\n");
4296                 return;
4297         }
4298         vm_map_print((vm_map_t)addr);
4299 }
4300
4301 DB_SHOW_COMMAND(procvm, procvm)
4302 {
4303         struct proc *p;
4304
4305         if (have_addr) {
4306                 p = db_lookup_proc(addr);
4307         } else {
4308                 p = curproc;
4309         }
4310
4311         db_printf("p = %p, vmspace = %p, map = %p, pmap = %p\n",
4312             (void *)p, (void *)p->p_vmspace, (void *)&p->p_vmspace->vm_map,
4313             (void *)vmspace_pmap(p->p_vmspace));
4314
4315         vm_map_print((vm_map_t)&p->p_vmspace->vm_map);
4316 }
4317
4318 #endif /* DDB */