1 /*- 2 * SPDX-License-Identifier: (BSD-3-Clause AND MIT-CMU) 3 * 4 * Copyright (c) 1991, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * This code is derived from software contributed to Berkeley by 8 * The Mach Operating System project at Carnegie-Mellon University. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 3. Neither the name of the University nor the names of its contributors 19 * may be used to endorse or promote products derived from this software 20 * without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 * 34 * from: @(#)vm_map.c 8.3 (Berkeley) 1/12/94 35 * 36 * 37 * Copyright (c) 1987, 1990 Carnegie-Mellon University. 38 * All rights reserved. 39 * 40 * Authors: Avadis Tevanian, Jr., Michael Wayne Young 41 * 42 * Permission to use, copy, modify and distribute this software and 43 * its documentation is hereby granted, provided that both the copyright 44 * notice and this permission notice appear in all copies of the 45 * software, derivative works or modified versions, and any portions 46 * thereof, and that both notices appear in supporting documentation. 47 * 48 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 49 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 50 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. 51 * 52 * Carnegie Mellon requests users of this software to return to 53 * 54 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU 55 * School of Computer Science 56 * Carnegie Mellon University 57 * Pittsburgh PA 15213-3890 58 * 59 * any improvements or extensions that they make and grant Carnegie the 60 * rights to redistribute these changes. 61 */ 62 63 /* 64 * Virtual memory mapping module. 65 */ 66 67 #include <sys/cdefs.h> 68 #include <sys/param.h> 69 #include <sys/systm.h> 70 #include <sys/elf.h> 71 #include <sys/kernel.h> 72 #include <sys/ktr.h> 73 #include <sys/lock.h> 74 #include <sys/mutex.h> 75 #include <sys/proc.h> 76 #include <sys/vmmeter.h> 77 #include <sys/mman.h> 78 #include <sys/vnode.h> 79 #include <sys/racct.h> 80 #include <sys/resourcevar.h> 81 #include <sys/rwlock.h> 82 #include <sys/file.h> 83 #include <sys/sysctl.h> 84 #include <sys/sysent.h> 85 #include <sys/shm.h> 86 87 #include <vm/vm.h> 88 #include <vm/vm_param.h> 89 #include <vm/pmap.h> 90 #include <vm/vm_map.h> 91 #include <vm/vm_page.h> 92 #include <vm/vm_pageout.h> 93 #include <vm/vm_object.h> 94 #include <vm/vm_pager.h> 95 #include <vm/vm_kern.h> 96 #include <vm/vm_extern.h> 97 #include <vm/vnode_pager.h> 98 #include <vm/swap_pager.h> 99 #include <vm/uma.h> 100 101 /* 102 * Virtual memory maps provide for the mapping, protection, 103 * and sharing of virtual memory objects. In addition, 104 * this module provides for an efficient virtual copy of 105 * memory from one map to another. 106 * 107 * Synchronization is required prior to most operations. 108 * 109 * Maps consist of an ordered doubly-linked list of simple 110 * entries; a self-adjusting binary search tree of these 111 * entries is used to speed up lookups. 112 * 113 * Since portions of maps are specified by start/end addresses, 114 * which may not align with existing map entries, all 115 * routines merely "clip" entries to these start/end values. 116 * [That is, an entry is split into two, bordering at a 117 * start or end value.] Note that these clippings may not 118 * always be necessary (as the two resulting entries are then 119 * not changed); however, the clipping is done for convenience. 120 * 121 * As mentioned above, virtual copy operations are performed 122 * by copying VM object references from one map to 123 * another, and then marking both regions as copy-on-write. 124 */ 125 126 static struct mtx map_sleep_mtx; 127 static uma_zone_t mapentzone; 128 static uma_zone_t kmapentzone; 129 static uma_zone_t vmspace_zone; 130 static int vmspace_zinit(void *mem, int size, 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 static int vm_map_growstack(vm_map_t map, vm_offset_t addr, 137 vm_map_entry_t gap_entry); 138 static void vm_map_pmap_enter(vm_map_t map, vm_offset_t addr, vm_prot_t prot, 139 vm_object_t object, vm_pindex_t pindex, vm_size_t size, int flags); 140 #ifdef INVARIANTS 141 static void vmspace_zdtor(void *mem, int size, void *arg); 142 #endif 143 static int vm_map_stack_locked(vm_map_t map, vm_offset_t addrbos, 144 vm_size_t max_ssize, vm_size_t growsize, vm_prot_t prot, vm_prot_t max, 145 int cow); 146 static void vm_map_wire_entry_failure(vm_map_t map, vm_map_entry_t entry, 147 vm_offset_t failed_addr); 148 149 #define CONTAINS_BITS(set, bits) ((~(set) & (bits)) == 0) 150 151 #define ENTRY_CHARGED(e) ((e)->cred != NULL || \ 152 ((e)->object.vm_object != NULL && (e)->object.vm_object->cred != NULL && \ 153 !((e)->eflags & MAP_ENTRY_NEEDS_COPY))) 154 155 /* 156 * PROC_VMSPACE_{UN,}LOCK() can be a noop as long as vmspaces are type 157 * stable. 158 */ 159 #define PROC_VMSPACE_LOCK(p) do { } while (0) 160 #define PROC_VMSPACE_UNLOCK(p) do { } while (0) 161 162 /* 163 * VM_MAP_RANGE_CHECK: [ internal use only ] 164 * 165 * Asserts that the starting and ending region 166 * addresses fall within the valid range of the map. 167 */ 168 #define VM_MAP_RANGE_CHECK(map, start, end) \ 169 { \ 170 if (start < vm_map_min(map)) \ 171 start = vm_map_min(map); \ 172 if (end > vm_map_max(map)) \ 173 end = vm_map_max(map); \ 174 if (start > end) \ 175 start = end; \ 176 } 177 178 #ifndef UMA_MD_SMALL_ALLOC 179 180 /* 181 * Allocate a new slab for kernel map entries. The kernel map may be locked or 182 * unlocked, depending on whether the request is coming from the kernel map or a 183 * submap. This function allocates a virtual address range directly from the 184 * kernel map instead of the kmem_* layer to avoid recursion on the kernel map 185 * lock and also to avoid triggering allocator recursion in the vmem boundary 186 * tag allocator. 187 */ 188 static void * 189 kmapent_alloc(uma_zone_t zone, vm_size_t bytes, int domain, uint8_t *pflag, 190 int wait) 191 { 192 vm_offset_t addr; 193 int error, locked; 194 195 *pflag = UMA_SLAB_PRIV; 196 197 if (!(locked = vm_map_locked(kernel_map))) 198 vm_map_lock(kernel_map); 199 addr = vm_map_findspace(kernel_map, vm_map_min(kernel_map), bytes); 200 if (addr + bytes < addr || addr + bytes > vm_map_max(kernel_map)) 201 panic("%s: kernel map is exhausted", __func__); 202 error = vm_map_insert(kernel_map, NULL, 0, addr, addr + bytes, 203 VM_PROT_RW, VM_PROT_RW, MAP_NOFAULT); 204 if (error != KERN_SUCCESS) 205 panic("%s: vm_map_insert() failed: %d", __func__, error); 206 if (!locked) 207 vm_map_unlock(kernel_map); 208 error = kmem_back_domain(domain, kernel_object, addr, bytes, M_NOWAIT | 209 M_USE_RESERVE | (wait & M_ZERO)); 210 if (error == KERN_SUCCESS) { 211 return ((void *)addr); 212 } else { 213 if (!locked) 214 vm_map_lock(kernel_map); 215 vm_map_delete(kernel_map, addr, bytes); 216 if (!locked) 217 vm_map_unlock(kernel_map); 218 return (NULL); 219 } 220 } 221 222 static void 223 kmapent_free(void *item, vm_size_t size, uint8_t pflag) 224 { 225 vm_offset_t addr; 226 int error __diagused; 227 228 if ((pflag & UMA_SLAB_PRIV) == 0) 229 /* XXX leaked */ 230 return; 231 232 addr = (vm_offset_t)item; 233 kmem_unback(kernel_object, addr, size); 234 error = vm_map_remove(kernel_map, addr, addr + size); 235 KASSERT(error == KERN_SUCCESS, 236 ("%s: vm_map_remove failed: %d", __func__, error)); 237 } 238 239 /* 240 * The worst-case upper bound on the number of kernel map entries that may be 241 * created before the zone must be replenished in _vm_map_unlock(). 242 */ 243 #define KMAPENT_RESERVE 1 244 245 #endif /* !UMD_MD_SMALL_ALLOC */ 246 247 /* 248 * vm_map_startup: 249 * 250 * Initialize the vm_map module. Must be called before any other vm_map 251 * routines. 252 * 253 * User map and entry structures are allocated from the general purpose 254 * memory pool. Kernel maps are statically defined. Kernel map entries 255 * require special handling to avoid recursion; see the comments above 256 * kmapent_alloc() and in vm_map_entry_create(). 257 */ 258 void 259 vm_map_startup(void) 260 { 261 mtx_init(&map_sleep_mtx, "vm map sleep mutex", NULL, MTX_DEF); 262 263 /* 264 * Disable the use of per-CPU buckets: map entry allocation is 265 * serialized by the kernel map lock. 266 */ 267 kmapentzone = uma_zcreate("KMAP ENTRY", sizeof(struct vm_map_entry), 268 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 269 UMA_ZONE_VM | UMA_ZONE_NOBUCKET); 270 #ifndef UMA_MD_SMALL_ALLOC 271 /* Reserve an extra map entry for use when replenishing the reserve. */ 272 uma_zone_reserve(kmapentzone, KMAPENT_RESERVE + 1); 273 uma_prealloc(kmapentzone, KMAPENT_RESERVE + 1); 274 uma_zone_set_allocf(kmapentzone, kmapent_alloc); 275 uma_zone_set_freef(kmapentzone, kmapent_free); 276 #endif 277 278 mapentzone = uma_zcreate("MAP ENTRY", sizeof(struct vm_map_entry), 279 NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0); 280 vmspace_zone = uma_zcreate("VMSPACE", sizeof(struct vmspace), NULL, 281 #ifdef INVARIANTS 282 vmspace_zdtor, 283 #else 284 NULL, 285 #endif 286 vmspace_zinit, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE); 287 } 288 289 static int 290 vmspace_zinit(void *mem, int size, int flags) 291 { 292 struct vmspace *vm; 293 vm_map_t map; 294 295 vm = (struct vmspace *)mem; 296 map = &vm->vm_map; 297 298 memset(map, 0, sizeof(*map)); 299 mtx_init(&map->system_mtx, "vm map (system)", NULL, 300 MTX_DEF | MTX_DUPOK); 301 sx_init(&map->lock, "vm map (user)"); 302 PMAP_LOCK_INIT(vmspace_pmap(vm)); 303 return (0); 304 } 305 306 #ifdef INVARIANTS 307 static void 308 vmspace_zdtor(void *mem, int size, void *arg) 309 { 310 struct vmspace *vm; 311 312 vm = (struct vmspace *)mem; 313 KASSERT(vm->vm_map.nentries == 0, 314 ("vmspace %p nentries == %d on free", vm, vm->vm_map.nentries)); 315 KASSERT(vm->vm_map.size == 0, 316 ("vmspace %p size == %ju on free", vm, (uintmax_t)vm->vm_map.size)); 317 } 318 #endif /* INVARIANTS */ 319 320 /* 321 * Allocate a vmspace structure, including a vm_map and pmap, 322 * and initialize those structures. The refcnt is set to 1. 323 */ 324 struct vmspace * 325 vmspace_alloc(vm_offset_t min, vm_offset_t max, pmap_pinit_t pinit) 326 { 327 struct vmspace *vm; 328 329 vm = uma_zalloc(vmspace_zone, M_WAITOK); 330 KASSERT(vm->vm_map.pmap == NULL, ("vm_map.pmap must be NULL")); 331 if (!pinit(vmspace_pmap(vm))) { 332 uma_zfree(vmspace_zone, vm); 333 return (NULL); 334 } 335 CTR1(KTR_VM, "vmspace_alloc: %p", vm); 336 _vm_map_init(&vm->vm_map, vmspace_pmap(vm), min, max); 337 refcount_init(&vm->vm_refcnt, 1); 338 vm->vm_shm = NULL; 339 vm->vm_swrss = 0; 340 vm->vm_tsize = 0; 341 vm->vm_dsize = 0; 342 vm->vm_ssize = 0; 343 vm->vm_taddr = 0; 344 vm->vm_daddr = 0; 345 vm->vm_maxsaddr = 0; 346 return (vm); 347 } 348 349 #ifdef RACCT 350 static void 351 vmspace_container_reset(struct proc *p) 352 { 353 354 PROC_LOCK(p); 355 racct_set(p, RACCT_DATA, 0); 356 racct_set(p, RACCT_STACK, 0); 357 racct_set(p, RACCT_RSS, 0); 358 racct_set(p, RACCT_MEMLOCK, 0); 359 racct_set(p, RACCT_VMEM, 0); 360 PROC_UNLOCK(p); 361 } 362 #endif 363 364 static inline void 365 vmspace_dofree(struct vmspace *vm) 366 { 367 368 CTR1(KTR_VM, "vmspace_free: %p", vm); 369 370 /* 371 * Make sure any SysV shm is freed, it might not have been in 372 * exit1(). 373 */ 374 shmexit(vm); 375 376 /* 377 * Lock the map, to wait out all other references to it. 378 * Delete all of the mappings and pages they hold, then call 379 * the pmap module to reclaim anything left. 380 */ 381 (void)vm_map_remove(&vm->vm_map, vm_map_min(&vm->vm_map), 382 vm_map_max(&vm->vm_map)); 383 384 pmap_release(vmspace_pmap(vm)); 385 vm->vm_map.pmap = NULL; 386 uma_zfree(vmspace_zone, vm); 387 } 388 389 void 390 vmspace_free(struct vmspace *vm) 391 { 392 393 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL, 394 "vmspace_free() called"); 395 396 if (refcount_release(&vm->vm_refcnt)) 397 vmspace_dofree(vm); 398 } 399 400 void 401 vmspace_exitfree(struct proc *p) 402 { 403 struct vmspace *vm; 404 405 PROC_VMSPACE_LOCK(p); 406 vm = p->p_vmspace; 407 p->p_vmspace = NULL; 408 PROC_VMSPACE_UNLOCK(p); 409 KASSERT(vm == &vmspace0, ("vmspace_exitfree: wrong vmspace")); 410 vmspace_free(vm); 411 } 412 413 void 414 vmspace_exit(struct thread *td) 415 { 416 struct vmspace *vm; 417 struct proc *p; 418 bool released; 419 420 p = td->td_proc; 421 vm = p->p_vmspace; 422 423 /* 424 * Prepare to release the vmspace reference. The thread that releases 425 * the last reference is responsible for tearing down the vmspace. 426 * However, threads not releasing the final reference must switch to the 427 * kernel's vmspace0 before the decrement so that the subsequent pmap 428 * deactivation does not modify a freed vmspace. 429 */ 430 refcount_acquire(&vmspace0.vm_refcnt); 431 if (!(released = refcount_release_if_last(&vm->vm_refcnt))) { 432 if (p->p_vmspace != &vmspace0) { 433 PROC_VMSPACE_LOCK(p); 434 p->p_vmspace = &vmspace0; 435 PROC_VMSPACE_UNLOCK(p); 436 pmap_activate(td); 437 } 438 released = refcount_release(&vm->vm_refcnt); 439 } 440 if (released) { 441 /* 442 * pmap_remove_pages() expects the pmap to be active, so switch 443 * back first if necessary. 444 */ 445 if (p->p_vmspace != vm) { 446 PROC_VMSPACE_LOCK(p); 447 p->p_vmspace = vm; 448 PROC_VMSPACE_UNLOCK(p); 449 pmap_activate(td); 450 } 451 pmap_remove_pages(vmspace_pmap(vm)); 452 PROC_VMSPACE_LOCK(p); 453 p->p_vmspace = &vmspace0; 454 PROC_VMSPACE_UNLOCK(p); 455 pmap_activate(td); 456 vmspace_dofree(vm); 457 } 458 #ifdef RACCT 459 if (racct_enable) 460 vmspace_container_reset(p); 461 #endif 462 } 463 464 /* Acquire reference to vmspace owned by another process. */ 465 466 struct vmspace * 467 vmspace_acquire_ref(struct proc *p) 468 { 469 struct vmspace *vm; 470 471 PROC_VMSPACE_LOCK(p); 472 vm = p->p_vmspace; 473 if (vm == NULL || !refcount_acquire_if_not_zero(&vm->vm_refcnt)) { 474 PROC_VMSPACE_UNLOCK(p); 475 return (NULL); 476 } 477 if (vm != p->p_vmspace) { 478 PROC_VMSPACE_UNLOCK(p); 479 vmspace_free(vm); 480 return (NULL); 481 } 482 PROC_VMSPACE_UNLOCK(p); 483 return (vm); 484 } 485 486 /* 487 * Switch between vmspaces in an AIO kernel process. 488 * 489 * The new vmspace is either the vmspace of a user process obtained 490 * from an active AIO request or the initial vmspace of the AIO kernel 491 * process (when it is idling). Because user processes will block to 492 * drain any active AIO requests before proceeding in exit() or 493 * execve(), the reference count for vmspaces from AIO requests can 494 * never be 0. Similarly, AIO kernel processes hold an extra 495 * reference on their initial vmspace for the life of the process. As 496 * a result, the 'newvm' vmspace always has a non-zero reference 497 * count. This permits an additional reference on 'newvm' to be 498 * acquired via a simple atomic increment rather than the loop in 499 * vmspace_acquire_ref() above. 500 */ 501 void 502 vmspace_switch_aio(struct vmspace *newvm) 503 { 504 struct vmspace *oldvm; 505 506 /* XXX: Need some way to assert that this is an aio daemon. */ 507 508 KASSERT(refcount_load(&newvm->vm_refcnt) > 0, 509 ("vmspace_switch_aio: newvm unreferenced")); 510 511 oldvm = curproc->p_vmspace; 512 if (oldvm == newvm) 513 return; 514 515 /* 516 * Point to the new address space and refer to it. 517 */ 518 curproc->p_vmspace = newvm; 519 refcount_acquire(&newvm->vm_refcnt); 520 521 /* Activate the new mapping. */ 522 pmap_activate(curthread); 523 524 vmspace_free(oldvm); 525 } 526 527 void 528 _vm_map_lock(vm_map_t map, const char *file, int line) 529 { 530 531 if (map->system_map) 532 mtx_lock_flags_(&map->system_mtx, 0, file, line); 533 else 534 sx_xlock_(&map->lock, file, line); 535 map->timestamp++; 536 } 537 538 void 539 vm_map_entry_set_vnode_text(vm_map_entry_t entry, bool add) 540 { 541 vm_object_t object; 542 struct vnode *vp; 543 bool vp_held; 544 545 if ((entry->eflags & MAP_ENTRY_VN_EXEC) == 0) 546 return; 547 KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0, 548 ("Submap with execs")); 549 object = entry->object.vm_object; 550 KASSERT(object != NULL, ("No object for text, entry %p", entry)); 551 if ((object->flags & OBJ_ANON) != 0) 552 object = object->handle; 553 else 554 KASSERT(object->backing_object == NULL, 555 ("non-anon object %p shadows", object)); 556 KASSERT(object != NULL, ("No content object for text, entry %p obj %p", 557 entry, entry->object.vm_object)); 558 559 /* 560 * Mostly, we do not lock the backing object. It is 561 * referenced by the entry we are processing, so it cannot go 562 * away. 563 */ 564 vm_pager_getvp(object, &vp, &vp_held); 565 if (vp != NULL) { 566 if (add) { 567 VOP_SET_TEXT_CHECKED(vp); 568 } else { 569 vn_lock(vp, LK_SHARED | LK_RETRY); 570 VOP_UNSET_TEXT_CHECKED(vp); 571 VOP_UNLOCK(vp); 572 } 573 if (vp_held) 574 vdrop(vp); 575 } 576 } 577 578 /* 579 * Use a different name for this vm_map_entry field when it's use 580 * is not consistent with its use as part of an ordered search tree. 581 */ 582 #define defer_next right 583 584 static void 585 vm_map_process_deferred(void) 586 { 587 struct thread *td; 588 vm_map_entry_t entry, next; 589 vm_object_t object; 590 591 td = curthread; 592 entry = td->td_map_def_user; 593 td->td_map_def_user = NULL; 594 while (entry != NULL) { 595 next = entry->defer_next; 596 MPASS((entry->eflags & (MAP_ENTRY_WRITECNT | 597 MAP_ENTRY_VN_EXEC)) != (MAP_ENTRY_WRITECNT | 598 MAP_ENTRY_VN_EXEC)); 599 if ((entry->eflags & MAP_ENTRY_WRITECNT) != 0) { 600 /* 601 * Decrement the object's writemappings and 602 * possibly the vnode's v_writecount. 603 */ 604 KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0, 605 ("Submap with writecount")); 606 object = entry->object.vm_object; 607 KASSERT(object != NULL, ("No object for writecount")); 608 vm_pager_release_writecount(object, entry->start, 609 entry->end); 610 } 611 vm_map_entry_set_vnode_text(entry, false); 612 vm_map_entry_deallocate(entry, FALSE); 613 entry = next; 614 } 615 } 616 617 #ifdef INVARIANTS 618 static void 619 _vm_map_assert_locked(vm_map_t map, const char *file, int line) 620 { 621 622 if (map->system_map) 623 mtx_assert_(&map->system_mtx, MA_OWNED, file, line); 624 else 625 sx_assert_(&map->lock, SA_XLOCKED, file, line); 626 } 627 628 #define VM_MAP_ASSERT_LOCKED(map) \ 629 _vm_map_assert_locked(map, LOCK_FILE, LOCK_LINE) 630 631 enum { VMMAP_CHECK_NONE, VMMAP_CHECK_UNLOCK, VMMAP_CHECK_ALL }; 632 #ifdef DIAGNOSTIC 633 static int enable_vmmap_check = VMMAP_CHECK_UNLOCK; 634 #else 635 static int enable_vmmap_check = VMMAP_CHECK_NONE; 636 #endif 637 SYSCTL_INT(_debug, OID_AUTO, vmmap_check, CTLFLAG_RWTUN, 638 &enable_vmmap_check, 0, "Enable vm map consistency checking"); 639 640 static void _vm_map_assert_consistent(vm_map_t map, int check); 641 642 #define VM_MAP_ASSERT_CONSISTENT(map) \ 643 _vm_map_assert_consistent(map, VMMAP_CHECK_ALL) 644 #ifdef DIAGNOSTIC 645 #define VM_MAP_UNLOCK_CONSISTENT(map) do { \ 646 if (map->nupdates > map->nentries) { \ 647 _vm_map_assert_consistent(map, VMMAP_CHECK_UNLOCK); \ 648 map->nupdates = 0; \ 649 } \ 650 } while (0) 651 #else 652 #define VM_MAP_UNLOCK_CONSISTENT(map) 653 #endif 654 #else 655 #define VM_MAP_ASSERT_LOCKED(map) 656 #define VM_MAP_ASSERT_CONSISTENT(map) 657 #define VM_MAP_UNLOCK_CONSISTENT(map) 658 #endif /* INVARIANTS */ 659 660 void 661 _vm_map_unlock(vm_map_t map, const char *file, int line) 662 { 663 664 VM_MAP_UNLOCK_CONSISTENT(map); 665 if (map->system_map) { 666 #ifndef UMA_MD_SMALL_ALLOC 667 if (map == kernel_map && (map->flags & MAP_REPLENISH) != 0) { 668 uma_prealloc(kmapentzone, 1); 669 map->flags &= ~MAP_REPLENISH; 670 } 671 #endif 672 mtx_unlock_flags_(&map->system_mtx, 0, file, line); 673 } else { 674 sx_xunlock_(&map->lock, file, line); 675 vm_map_process_deferred(); 676 } 677 } 678 679 void 680 _vm_map_lock_read(vm_map_t map, const char *file, int line) 681 { 682 683 if (map->system_map) 684 mtx_lock_flags_(&map->system_mtx, 0, file, line); 685 else 686 sx_slock_(&map->lock, file, line); 687 } 688 689 void 690 _vm_map_unlock_read(vm_map_t map, const char *file, int line) 691 { 692 693 if (map->system_map) { 694 KASSERT((map->flags & MAP_REPLENISH) == 0, 695 ("%s: MAP_REPLENISH leaked", __func__)); 696 mtx_unlock_flags_(&map->system_mtx, 0, file, line); 697 } else { 698 sx_sunlock_(&map->lock, file, line); 699 vm_map_process_deferred(); 700 } 701 } 702 703 int 704 _vm_map_trylock(vm_map_t map, const char *file, int line) 705 { 706 int error; 707 708 error = map->system_map ? 709 !mtx_trylock_flags_(&map->system_mtx, 0, file, line) : 710 !sx_try_xlock_(&map->lock, file, line); 711 if (error == 0) 712 map->timestamp++; 713 return (error == 0); 714 } 715 716 int 717 _vm_map_trylock_read(vm_map_t map, const char *file, int line) 718 { 719 int error; 720 721 error = map->system_map ? 722 !mtx_trylock_flags_(&map->system_mtx, 0, file, line) : 723 !sx_try_slock_(&map->lock, file, line); 724 return (error == 0); 725 } 726 727 /* 728 * _vm_map_lock_upgrade: [ internal use only ] 729 * 730 * Tries to upgrade a read (shared) lock on the specified map to a write 731 * (exclusive) lock. Returns the value "0" if the upgrade succeeds and a 732 * non-zero value if the upgrade fails. If the upgrade fails, the map is 733 * returned without a read or write lock held. 734 * 735 * Requires that the map be read locked. 736 */ 737 int 738 _vm_map_lock_upgrade(vm_map_t map, const char *file, int line) 739 { 740 unsigned int last_timestamp; 741 742 if (map->system_map) { 743 mtx_assert_(&map->system_mtx, MA_OWNED, file, line); 744 } else { 745 if (!sx_try_upgrade_(&map->lock, file, line)) { 746 last_timestamp = map->timestamp; 747 sx_sunlock_(&map->lock, file, line); 748 vm_map_process_deferred(); 749 /* 750 * If the map's timestamp does not change while the 751 * map is unlocked, then the upgrade succeeds. 752 */ 753 sx_xlock_(&map->lock, file, line); 754 if (last_timestamp != map->timestamp) { 755 sx_xunlock_(&map->lock, file, line); 756 return (1); 757 } 758 } 759 } 760 map->timestamp++; 761 return (0); 762 } 763 764 void 765 _vm_map_lock_downgrade(vm_map_t map, const char *file, int line) 766 { 767 768 if (map->system_map) { 769 KASSERT((map->flags & MAP_REPLENISH) == 0, 770 ("%s: MAP_REPLENISH leaked", __func__)); 771 mtx_assert_(&map->system_mtx, MA_OWNED, file, line); 772 } else { 773 VM_MAP_UNLOCK_CONSISTENT(map); 774 sx_downgrade_(&map->lock, file, line); 775 } 776 } 777 778 /* 779 * vm_map_locked: 780 * 781 * Returns a non-zero value if the caller holds a write (exclusive) lock 782 * on the specified map and the value "0" otherwise. 783 */ 784 int 785 vm_map_locked(vm_map_t map) 786 { 787 788 if (map->system_map) 789 return (mtx_owned(&map->system_mtx)); 790 else 791 return (sx_xlocked(&map->lock)); 792 } 793 794 /* 795 * _vm_map_unlock_and_wait: 796 * 797 * Atomically releases the lock on the specified map and puts the calling 798 * thread to sleep. The calling thread will remain asleep until either 799 * vm_map_wakeup() is performed on the map or the specified timeout is 800 * exceeded. 801 * 802 * WARNING! This function does not perform deferred deallocations of 803 * objects and map entries. Therefore, the calling thread is expected to 804 * reacquire the map lock after reawakening and later perform an ordinary 805 * unlock operation, such as vm_map_unlock(), before completing its 806 * operation on the map. 807 */ 808 int 809 _vm_map_unlock_and_wait(vm_map_t map, int timo, const char *file, int line) 810 { 811 812 VM_MAP_UNLOCK_CONSISTENT(map); 813 mtx_lock(&map_sleep_mtx); 814 if (map->system_map) { 815 KASSERT((map->flags & MAP_REPLENISH) == 0, 816 ("%s: MAP_REPLENISH leaked", __func__)); 817 mtx_unlock_flags_(&map->system_mtx, 0, file, line); 818 } else { 819 sx_xunlock_(&map->lock, file, line); 820 } 821 return (msleep(&map->root, &map_sleep_mtx, PDROP | PVM, "vmmaps", 822 timo)); 823 } 824 825 /* 826 * vm_map_wakeup: 827 * 828 * Awaken any threads that have slept on the map using 829 * vm_map_unlock_and_wait(). 830 */ 831 void 832 vm_map_wakeup(vm_map_t map) 833 { 834 835 /* 836 * Acquire and release map_sleep_mtx to prevent a wakeup() 837 * from being performed (and lost) between the map unlock 838 * and the msleep() in _vm_map_unlock_and_wait(). 839 */ 840 mtx_lock(&map_sleep_mtx); 841 mtx_unlock(&map_sleep_mtx); 842 wakeup(&map->root); 843 } 844 845 void 846 vm_map_busy(vm_map_t map) 847 { 848 849 VM_MAP_ASSERT_LOCKED(map); 850 map->busy++; 851 } 852 853 void 854 vm_map_unbusy(vm_map_t map) 855 { 856 857 VM_MAP_ASSERT_LOCKED(map); 858 KASSERT(map->busy, ("vm_map_unbusy: not busy")); 859 if (--map->busy == 0 && (map->flags & MAP_BUSY_WAKEUP)) { 860 vm_map_modflags(map, 0, MAP_BUSY_WAKEUP); 861 wakeup(&map->busy); 862 } 863 } 864 865 void 866 vm_map_wait_busy(vm_map_t map) 867 { 868 869 VM_MAP_ASSERT_LOCKED(map); 870 while (map->busy) { 871 vm_map_modflags(map, MAP_BUSY_WAKEUP, 0); 872 if (map->system_map) 873 msleep(&map->busy, &map->system_mtx, 0, "mbusy", 0); 874 else 875 sx_sleep(&map->busy, &map->lock, 0, "mbusy", 0); 876 } 877 map->timestamp++; 878 } 879 880 long 881 vmspace_resident_count(struct vmspace *vmspace) 882 { 883 return pmap_resident_count(vmspace_pmap(vmspace)); 884 } 885 886 /* 887 * Initialize an existing vm_map structure 888 * such as that in the vmspace structure. 889 */ 890 static void 891 _vm_map_init(vm_map_t map, pmap_t pmap, vm_offset_t min, vm_offset_t max) 892 { 893 894 map->header.eflags = MAP_ENTRY_HEADER; 895 map->needs_wakeup = FALSE; 896 map->system_map = 0; 897 map->pmap = pmap; 898 map->header.end = min; 899 map->header.start = max; 900 map->flags = 0; 901 map->header.left = map->header.right = &map->header; 902 map->root = NULL; 903 map->timestamp = 0; 904 map->busy = 0; 905 map->anon_loc = 0; 906 #ifdef DIAGNOSTIC 907 map->nupdates = 0; 908 #endif 909 } 910 911 void 912 vm_map_init(vm_map_t map, pmap_t pmap, vm_offset_t min, vm_offset_t max) 913 { 914 915 _vm_map_init(map, pmap, min, max); 916 mtx_init(&map->system_mtx, "vm map (system)", NULL, 917 MTX_DEF | MTX_DUPOK); 918 sx_init(&map->lock, "vm map (user)"); 919 } 920 921 /* 922 * vm_map_entry_dispose: [ internal use only ] 923 * 924 * Inverse of vm_map_entry_create. 925 */ 926 static void 927 vm_map_entry_dispose(vm_map_t map, vm_map_entry_t entry) 928 { 929 uma_zfree(map->system_map ? kmapentzone : mapentzone, entry); 930 } 931 932 /* 933 * vm_map_entry_create: [ internal use only ] 934 * 935 * Allocates a VM map entry for insertion. 936 * No entry fields are filled in. 937 */ 938 static vm_map_entry_t 939 vm_map_entry_create(vm_map_t map) 940 { 941 vm_map_entry_t new_entry; 942 943 #ifndef UMA_MD_SMALL_ALLOC 944 if (map == kernel_map) { 945 VM_MAP_ASSERT_LOCKED(map); 946 947 /* 948 * A new slab of kernel map entries cannot be allocated at this 949 * point because the kernel map has not yet been updated to 950 * reflect the caller's request. Therefore, we allocate a new 951 * map entry, dipping into the reserve if necessary, and set a 952 * flag indicating that the reserve must be replenished before 953 * the map is unlocked. 954 */ 955 new_entry = uma_zalloc(kmapentzone, M_NOWAIT | M_NOVM); 956 if (new_entry == NULL) { 957 new_entry = uma_zalloc(kmapentzone, 958 M_NOWAIT | M_NOVM | M_USE_RESERVE); 959 kernel_map->flags |= MAP_REPLENISH; 960 } 961 } else 962 #endif 963 if (map->system_map) { 964 new_entry = uma_zalloc(kmapentzone, M_NOWAIT); 965 } else { 966 new_entry = uma_zalloc(mapentzone, M_WAITOK); 967 } 968 KASSERT(new_entry != NULL, 969 ("vm_map_entry_create: kernel resources exhausted")); 970 return (new_entry); 971 } 972 973 /* 974 * vm_map_entry_set_behavior: 975 * 976 * Set the expected access behavior, either normal, random, or 977 * sequential. 978 */ 979 static inline void 980 vm_map_entry_set_behavior(vm_map_entry_t entry, u_char behavior) 981 { 982 entry->eflags = (entry->eflags & ~MAP_ENTRY_BEHAV_MASK) | 983 (behavior & MAP_ENTRY_BEHAV_MASK); 984 } 985 986 /* 987 * vm_map_entry_max_free_{left,right}: 988 * 989 * Compute the size of the largest free gap between two entries, 990 * one the root of a tree and the other the ancestor of that root 991 * that is the least or greatest ancestor found on the search path. 992 */ 993 static inline vm_size_t 994 vm_map_entry_max_free_left(vm_map_entry_t root, vm_map_entry_t left_ancestor) 995 { 996 997 return (root->left != left_ancestor ? 998 root->left->max_free : root->start - left_ancestor->end); 999 } 1000 1001 static inline vm_size_t 1002 vm_map_entry_max_free_right(vm_map_entry_t root, vm_map_entry_t right_ancestor) 1003 { 1004 1005 return (root->right != right_ancestor ? 1006 root->right->max_free : right_ancestor->start - root->end); 1007 } 1008 1009 /* 1010 * vm_map_entry_{pred,succ}: 1011 * 1012 * Find the {predecessor, successor} of the entry by taking one step 1013 * in the appropriate direction and backtracking as much as necessary. 1014 * vm_map_entry_succ is defined in vm_map.h. 1015 */ 1016 static inline vm_map_entry_t 1017 vm_map_entry_pred(vm_map_entry_t entry) 1018 { 1019 vm_map_entry_t prior; 1020 1021 prior = entry->left; 1022 if (prior->right->start < entry->start) { 1023 do 1024 prior = prior->right; 1025 while (prior->right != entry); 1026 } 1027 return (prior); 1028 } 1029 1030 static inline vm_size_t 1031 vm_size_max(vm_size_t a, vm_size_t b) 1032 { 1033 1034 return (a > b ? a : b); 1035 } 1036 1037 #define SPLAY_LEFT_STEP(root, y, llist, rlist, test) do { \ 1038 vm_map_entry_t z; \ 1039 vm_size_t max_free; \ 1040 \ 1041 /* \ 1042 * Infer root->right->max_free == root->max_free when \ 1043 * y->max_free < root->max_free || root->max_free == 0. \ 1044 * Otherwise, look right to find it. \ 1045 */ \ 1046 y = root->left; \ 1047 max_free = root->max_free; \ 1048 KASSERT(max_free == vm_size_max( \ 1049 vm_map_entry_max_free_left(root, llist), \ 1050 vm_map_entry_max_free_right(root, rlist)), \ 1051 ("%s: max_free invariant fails", __func__)); \ 1052 if (max_free - 1 < vm_map_entry_max_free_left(root, llist)) \ 1053 max_free = vm_map_entry_max_free_right(root, rlist); \ 1054 if (y != llist && (test)) { \ 1055 /* Rotate right and make y root. */ \ 1056 z = y->right; \ 1057 if (z != root) { \ 1058 root->left = z; \ 1059 y->right = root; \ 1060 if (max_free < y->max_free) \ 1061 root->max_free = max_free = \ 1062 vm_size_max(max_free, z->max_free); \ 1063 } else if (max_free < y->max_free) \ 1064 root->max_free = max_free = \ 1065 vm_size_max(max_free, root->start - y->end);\ 1066 root = y; \ 1067 y = root->left; \ 1068 } \ 1069 /* Copy right->max_free. Put root on rlist. */ \ 1070 root->max_free = max_free; \ 1071 KASSERT(max_free == vm_map_entry_max_free_right(root, rlist), \ 1072 ("%s: max_free not copied from right", __func__)); \ 1073 root->left = rlist; \ 1074 rlist = root; \ 1075 root = y != llist ? y : NULL; \ 1076 } while (0) 1077 1078 #define SPLAY_RIGHT_STEP(root, y, llist, rlist, test) do { \ 1079 vm_map_entry_t z; \ 1080 vm_size_t max_free; \ 1081 \ 1082 /* \ 1083 * Infer root->left->max_free == root->max_free when \ 1084 * y->max_free < root->max_free || root->max_free == 0. \ 1085 * Otherwise, look left to find it. \ 1086 */ \ 1087 y = root->right; \ 1088 max_free = root->max_free; \ 1089 KASSERT(max_free == vm_size_max( \ 1090 vm_map_entry_max_free_left(root, llist), \ 1091 vm_map_entry_max_free_right(root, rlist)), \ 1092 ("%s: max_free invariant fails", __func__)); \ 1093 if (max_free - 1 < vm_map_entry_max_free_right(root, rlist)) \ 1094 max_free = vm_map_entry_max_free_left(root, llist); \ 1095 if (y != rlist && (test)) { \ 1096 /* Rotate left and make y root. */ \ 1097 z = y->left; \ 1098 if (z != root) { \ 1099 root->right = z; \ 1100 y->left = root; \ 1101 if (max_free < y->max_free) \ 1102 root->max_free = max_free = \ 1103 vm_size_max(max_free, z->max_free); \ 1104 } else if (max_free < y->max_free) \ 1105 root->max_free = max_free = \ 1106 vm_size_max(max_free, y->start - root->end);\ 1107 root = y; \ 1108 y = root->right; \ 1109 } \ 1110 /* Copy left->max_free. Put root on llist. */ \ 1111 root->max_free = max_free; \ 1112 KASSERT(max_free == vm_map_entry_max_free_left(root, llist), \ 1113 ("%s: max_free not copied from left", __func__)); \ 1114 root->right = llist; \ 1115 llist = root; \ 1116 root = y != rlist ? y : NULL; \ 1117 } while (0) 1118 1119 /* 1120 * Walk down the tree until we find addr or a gap where addr would go, breaking 1121 * off left and right subtrees of nodes less than, or greater than addr. Treat 1122 * subtrees with root->max_free < length as empty trees. llist and rlist are 1123 * the two sides in reverse order (bottom-up), with llist linked by the right 1124 * pointer and rlist linked by the left pointer in the vm_map_entry, and both 1125 * lists terminated by &map->header. This function, and the subsequent call to 1126 * vm_map_splay_merge_{left,right,pred,succ}, rely on the start and end address 1127 * values in &map->header. 1128 */ 1129 static __always_inline vm_map_entry_t 1130 vm_map_splay_split(vm_map_t map, vm_offset_t addr, vm_size_t length, 1131 vm_map_entry_t *llist, vm_map_entry_t *rlist) 1132 { 1133 vm_map_entry_t left, right, root, y; 1134 1135 left = right = &map->header; 1136 root = map->root; 1137 while (root != NULL && root->max_free >= length) { 1138 KASSERT(left->end <= root->start && 1139 root->end <= right->start, 1140 ("%s: root not within tree bounds", __func__)); 1141 if (addr < root->start) { 1142 SPLAY_LEFT_STEP(root, y, left, right, 1143 y->max_free >= length && addr < y->start); 1144 } else if (addr >= root->end) { 1145 SPLAY_RIGHT_STEP(root, y, left, right, 1146 y->max_free >= length && addr >= y->end); 1147 } else 1148 break; 1149 } 1150 *llist = left; 1151 *rlist = right; 1152 return (root); 1153 } 1154 1155 static __always_inline void 1156 vm_map_splay_findnext(vm_map_entry_t root, vm_map_entry_t *rlist) 1157 { 1158 vm_map_entry_t hi, right, y; 1159 1160 right = *rlist; 1161 hi = root->right == right ? NULL : root->right; 1162 if (hi == NULL) 1163 return; 1164 do 1165 SPLAY_LEFT_STEP(hi, y, root, right, true); 1166 while (hi != NULL); 1167 *rlist = right; 1168 } 1169 1170 static __always_inline void 1171 vm_map_splay_findprev(vm_map_entry_t root, vm_map_entry_t *llist) 1172 { 1173 vm_map_entry_t left, lo, y; 1174 1175 left = *llist; 1176 lo = root->left == left ? NULL : root->left; 1177 if (lo == NULL) 1178 return; 1179 do 1180 SPLAY_RIGHT_STEP(lo, y, left, root, true); 1181 while (lo != NULL); 1182 *llist = left; 1183 } 1184 1185 static inline void 1186 vm_map_entry_swap(vm_map_entry_t *a, vm_map_entry_t *b) 1187 { 1188 vm_map_entry_t tmp; 1189 1190 tmp = *b; 1191 *b = *a; 1192 *a = tmp; 1193 } 1194 1195 /* 1196 * Walk back up the two spines, flip the pointers and set max_free. The 1197 * subtrees of the root go at the bottom of llist and rlist. 1198 */ 1199 static vm_size_t 1200 vm_map_splay_merge_left_walk(vm_map_entry_t header, vm_map_entry_t root, 1201 vm_map_entry_t tail, vm_size_t max_free, vm_map_entry_t llist) 1202 { 1203 do { 1204 /* 1205 * The max_free values of the children of llist are in 1206 * llist->max_free and max_free. Update with the 1207 * max value. 1208 */ 1209 llist->max_free = max_free = 1210 vm_size_max(llist->max_free, max_free); 1211 vm_map_entry_swap(&llist->right, &tail); 1212 vm_map_entry_swap(&tail, &llist); 1213 } while (llist != header); 1214 root->left = tail; 1215 return (max_free); 1216 } 1217 1218 /* 1219 * When llist is known to be the predecessor of root. 1220 */ 1221 static inline vm_size_t 1222 vm_map_splay_merge_pred(vm_map_entry_t header, vm_map_entry_t root, 1223 vm_map_entry_t llist) 1224 { 1225 vm_size_t max_free; 1226 1227 max_free = root->start - llist->end; 1228 if (llist != header) { 1229 max_free = vm_map_splay_merge_left_walk(header, root, 1230 root, max_free, llist); 1231 } else { 1232 root->left = header; 1233 header->right = root; 1234 } 1235 return (max_free); 1236 } 1237 1238 /* 1239 * When llist may or may not be the predecessor of root. 1240 */ 1241 static inline vm_size_t 1242 vm_map_splay_merge_left(vm_map_entry_t header, vm_map_entry_t root, 1243 vm_map_entry_t llist) 1244 { 1245 vm_size_t max_free; 1246 1247 max_free = vm_map_entry_max_free_left(root, llist); 1248 if (llist != header) { 1249 max_free = vm_map_splay_merge_left_walk(header, root, 1250 root->left == llist ? root : root->left, 1251 max_free, llist); 1252 } 1253 return (max_free); 1254 } 1255 1256 static vm_size_t 1257 vm_map_splay_merge_right_walk(vm_map_entry_t header, vm_map_entry_t root, 1258 vm_map_entry_t tail, vm_size_t max_free, vm_map_entry_t rlist) 1259 { 1260 do { 1261 /* 1262 * The max_free values of the children of rlist are in 1263 * rlist->max_free and max_free. Update with the 1264 * max value. 1265 */ 1266 rlist->max_free = max_free = 1267 vm_size_max(rlist->max_free, max_free); 1268 vm_map_entry_swap(&rlist->left, &tail); 1269 vm_map_entry_swap(&tail, &rlist); 1270 } while (rlist != header); 1271 root->right = tail; 1272 return (max_free); 1273 } 1274 1275 /* 1276 * When rlist is known to be the succecessor of root. 1277 */ 1278 static inline vm_size_t 1279 vm_map_splay_merge_succ(vm_map_entry_t header, vm_map_entry_t root, 1280 vm_map_entry_t rlist) 1281 { 1282 vm_size_t max_free; 1283 1284 max_free = rlist->start - root->end; 1285 if (rlist != header) { 1286 max_free = vm_map_splay_merge_right_walk(header, root, 1287 root, max_free, rlist); 1288 } else { 1289 root->right = header; 1290 header->left = root; 1291 } 1292 return (max_free); 1293 } 1294 1295 /* 1296 * When rlist may or may not be the succecessor of root. 1297 */ 1298 static inline vm_size_t 1299 vm_map_splay_merge_right(vm_map_entry_t header, vm_map_entry_t root, 1300 vm_map_entry_t rlist) 1301 { 1302 vm_size_t max_free; 1303 1304 max_free = vm_map_entry_max_free_right(root, rlist); 1305 if (rlist != header) { 1306 max_free = vm_map_splay_merge_right_walk(header, root, 1307 root->right == rlist ? root : root->right, 1308 max_free, rlist); 1309 } 1310 return (max_free); 1311 } 1312 1313 /* 1314 * vm_map_splay: 1315 * 1316 * The Sleator and Tarjan top-down splay algorithm with the 1317 * following variation. Max_free must be computed bottom-up, so 1318 * on the downward pass, maintain the left and right spines in 1319 * reverse order. Then, make a second pass up each side to fix 1320 * the pointers and compute max_free. The time bound is O(log n) 1321 * amortized. 1322 * 1323 * The tree is threaded, which means that there are no null pointers. 1324 * When a node has no left child, its left pointer points to its 1325 * predecessor, which the last ancestor on the search path from the root 1326 * where the search branched right. Likewise, when a node has no right 1327 * child, its right pointer points to its successor. The map header node 1328 * is the predecessor of the first map entry, and the successor of the 1329 * last. 1330 * 1331 * The new root is the vm_map_entry containing "addr", or else an 1332 * adjacent entry (lower if possible) if addr is not in the tree. 1333 * 1334 * The map must be locked, and leaves it so. 1335 * 1336 * Returns: the new root. 1337 */ 1338 static vm_map_entry_t 1339 vm_map_splay(vm_map_t map, vm_offset_t addr) 1340 { 1341 vm_map_entry_t header, llist, rlist, root; 1342 vm_size_t max_free_left, max_free_right; 1343 1344 header = &map->header; 1345 root = vm_map_splay_split(map, addr, 0, &llist, &rlist); 1346 if (root != NULL) { 1347 max_free_left = vm_map_splay_merge_left(header, root, llist); 1348 max_free_right = vm_map_splay_merge_right(header, root, rlist); 1349 } else if (llist != header) { 1350 /* 1351 * Recover the greatest node in the left 1352 * subtree and make it the root. 1353 */ 1354 root = llist; 1355 llist = root->right; 1356 max_free_left = vm_map_splay_merge_left(header, root, llist); 1357 max_free_right = vm_map_splay_merge_succ(header, root, rlist); 1358 } else if (rlist != header) { 1359 /* 1360 * Recover the least node in the right 1361 * subtree and make it the root. 1362 */ 1363 root = rlist; 1364 rlist = root->left; 1365 max_free_left = vm_map_splay_merge_pred(header, root, llist); 1366 max_free_right = vm_map_splay_merge_right(header, root, rlist); 1367 } else { 1368 /* There is no root. */ 1369 return (NULL); 1370 } 1371 root->max_free = vm_size_max(max_free_left, max_free_right); 1372 map->root = root; 1373 VM_MAP_ASSERT_CONSISTENT(map); 1374 return (root); 1375 } 1376 1377 /* 1378 * vm_map_entry_{un,}link: 1379 * 1380 * Insert/remove entries from maps. On linking, if new entry clips 1381 * existing entry, trim existing entry to avoid overlap, and manage 1382 * offsets. On unlinking, merge disappearing entry with neighbor, if 1383 * called for, and manage offsets. Callers should not modify fields in 1384 * entries already mapped. 1385 */ 1386 static void 1387 vm_map_entry_link(vm_map_t map, vm_map_entry_t entry) 1388 { 1389 vm_map_entry_t header, llist, rlist, root; 1390 vm_size_t max_free_left, max_free_right; 1391 1392 CTR3(KTR_VM, 1393 "vm_map_entry_link: map %p, nentries %d, entry %p", map, 1394 map->nentries, entry); 1395 VM_MAP_ASSERT_LOCKED(map); 1396 map->nentries++; 1397 header = &map->header; 1398 root = vm_map_splay_split(map, entry->start, 0, &llist, &rlist); 1399 if (root == NULL) { 1400 /* 1401 * The new entry does not overlap any existing entry in the 1402 * map, so it becomes the new root of the map tree. 1403 */ 1404 max_free_left = vm_map_splay_merge_pred(header, entry, llist); 1405 max_free_right = vm_map_splay_merge_succ(header, entry, rlist); 1406 } else if (entry->start == root->start) { 1407 /* 1408 * The new entry is a clone of root, with only the end field 1409 * changed. The root entry will be shrunk to abut the new 1410 * entry, and will be the right child of the new root entry in 1411 * the modified map. 1412 */ 1413 KASSERT(entry->end < root->end, 1414 ("%s: clip_start not within entry", __func__)); 1415 vm_map_splay_findprev(root, &llist); 1416 root->offset += entry->end - root->start; 1417 root->start = entry->end; 1418 max_free_left = vm_map_splay_merge_pred(header, entry, llist); 1419 max_free_right = root->max_free = vm_size_max( 1420 vm_map_splay_merge_pred(entry, root, entry), 1421 vm_map_splay_merge_right(header, root, rlist)); 1422 } else { 1423 /* 1424 * The new entry is a clone of root, with only the start field 1425 * changed. The root entry will be shrunk to abut the new 1426 * entry, and will be the left child of the new root entry in 1427 * the modified map. 1428 */ 1429 KASSERT(entry->end == root->end, 1430 ("%s: clip_start not within entry", __func__)); 1431 vm_map_splay_findnext(root, &rlist); 1432 entry->offset += entry->start - root->start; 1433 root->end = entry->start; 1434 max_free_left = root->max_free = vm_size_max( 1435 vm_map_splay_merge_left(header, root, llist), 1436 vm_map_splay_merge_succ(entry, root, entry)); 1437 max_free_right = vm_map_splay_merge_succ(header, entry, rlist); 1438 } 1439 entry->max_free = vm_size_max(max_free_left, max_free_right); 1440 map->root = entry; 1441 VM_MAP_ASSERT_CONSISTENT(map); 1442 } 1443 1444 enum unlink_merge_type { 1445 UNLINK_MERGE_NONE, 1446 UNLINK_MERGE_NEXT 1447 }; 1448 1449 static void 1450 vm_map_entry_unlink(vm_map_t map, vm_map_entry_t entry, 1451 enum unlink_merge_type op) 1452 { 1453 vm_map_entry_t header, llist, rlist, root; 1454 vm_size_t max_free_left, max_free_right; 1455 1456 VM_MAP_ASSERT_LOCKED(map); 1457 header = &map->header; 1458 root = vm_map_splay_split(map, entry->start, 0, &llist, &rlist); 1459 KASSERT(root != NULL, 1460 ("vm_map_entry_unlink: unlink object not mapped")); 1461 1462 vm_map_splay_findprev(root, &llist); 1463 vm_map_splay_findnext(root, &rlist); 1464 if (op == UNLINK_MERGE_NEXT) { 1465 rlist->start = root->start; 1466 rlist->offset = root->offset; 1467 } 1468 if (llist != header) { 1469 root = llist; 1470 llist = root->right; 1471 max_free_left = vm_map_splay_merge_left(header, root, llist); 1472 max_free_right = vm_map_splay_merge_succ(header, root, rlist); 1473 } else if (rlist != header) { 1474 root = rlist; 1475 rlist = root->left; 1476 max_free_left = vm_map_splay_merge_pred(header, root, llist); 1477 max_free_right = vm_map_splay_merge_right(header, root, rlist); 1478 } else { 1479 header->left = header->right = header; 1480 root = NULL; 1481 } 1482 if (root != NULL) 1483 root->max_free = vm_size_max(max_free_left, max_free_right); 1484 map->root = root; 1485 VM_MAP_ASSERT_CONSISTENT(map); 1486 map->nentries--; 1487 CTR3(KTR_VM, "vm_map_entry_unlink: map %p, nentries %d, entry %p", map, 1488 map->nentries, entry); 1489 } 1490 1491 /* 1492 * vm_map_entry_resize: 1493 * 1494 * Resize a vm_map_entry, recompute the amount of free space that 1495 * follows it and propagate that value up the tree. 1496 * 1497 * The map must be locked, and leaves it so. 1498 */ 1499 static void 1500 vm_map_entry_resize(vm_map_t map, vm_map_entry_t entry, vm_size_t grow_amount) 1501 { 1502 vm_map_entry_t header, llist, rlist, root; 1503 1504 VM_MAP_ASSERT_LOCKED(map); 1505 header = &map->header; 1506 root = vm_map_splay_split(map, entry->start, 0, &llist, &rlist); 1507 KASSERT(root != NULL, ("%s: resize object not mapped", __func__)); 1508 vm_map_splay_findnext(root, &rlist); 1509 entry->end += grow_amount; 1510 root->max_free = vm_size_max( 1511 vm_map_splay_merge_left(header, root, llist), 1512 vm_map_splay_merge_succ(header, root, rlist)); 1513 map->root = root; 1514 VM_MAP_ASSERT_CONSISTENT(map); 1515 CTR4(KTR_VM, "%s: map %p, nentries %d, entry %p", 1516 __func__, map, map->nentries, entry); 1517 } 1518 1519 /* 1520 * vm_map_lookup_entry: [ internal use only ] 1521 * 1522 * Finds the map entry containing (or 1523 * immediately preceding) the specified address 1524 * in the given map; the entry is returned 1525 * in the "entry" parameter. The boolean 1526 * result indicates whether the address is 1527 * actually contained in the map. 1528 */ 1529 boolean_t 1530 vm_map_lookup_entry( 1531 vm_map_t map, 1532 vm_offset_t address, 1533 vm_map_entry_t *entry) /* OUT */ 1534 { 1535 vm_map_entry_t cur, header, lbound, ubound; 1536 boolean_t locked; 1537 1538 /* 1539 * If the map is empty, then the map entry immediately preceding 1540 * "address" is the map's header. 1541 */ 1542 header = &map->header; 1543 cur = map->root; 1544 if (cur == NULL) { 1545 *entry = header; 1546 return (FALSE); 1547 } 1548 if (address >= cur->start && cur->end > address) { 1549 *entry = cur; 1550 return (TRUE); 1551 } 1552 if ((locked = vm_map_locked(map)) || 1553 sx_try_upgrade(&map->lock)) { 1554 /* 1555 * Splay requires a write lock on the map. However, it only 1556 * restructures the binary search tree; it does not otherwise 1557 * change the map. Thus, the map's timestamp need not change 1558 * on a temporary upgrade. 1559 */ 1560 cur = vm_map_splay(map, address); 1561 if (!locked) { 1562 VM_MAP_UNLOCK_CONSISTENT(map); 1563 sx_downgrade(&map->lock); 1564 } 1565 1566 /* 1567 * If "address" is contained within a map entry, the new root 1568 * is that map entry. Otherwise, the new root is a map entry 1569 * immediately before or after "address". 1570 */ 1571 if (address < cur->start) { 1572 *entry = header; 1573 return (FALSE); 1574 } 1575 *entry = cur; 1576 return (address < cur->end); 1577 } 1578 /* 1579 * Since the map is only locked for read access, perform a 1580 * standard binary search tree lookup for "address". 1581 */ 1582 lbound = ubound = header; 1583 for (;;) { 1584 if (address < cur->start) { 1585 ubound = cur; 1586 cur = cur->left; 1587 if (cur == lbound) 1588 break; 1589 } else if (cur->end <= address) { 1590 lbound = cur; 1591 cur = cur->right; 1592 if (cur == ubound) 1593 break; 1594 } else { 1595 *entry = cur; 1596 return (TRUE); 1597 } 1598 } 1599 *entry = lbound; 1600 return (FALSE); 1601 } 1602 1603 /* 1604 * vm_map_insert1() is identical to vm_map_insert() except that it 1605 * returns the newly inserted map entry in '*res'. In case the new 1606 * entry is coalesced with a neighbor or an existing entry was 1607 * resized, that entry is returned. In any case, the returned entry 1608 * covers the specified address range. 1609 */ 1610 static int 1611 vm_map_insert1(vm_map_t map, vm_object_t object, vm_ooffset_t offset, 1612 vm_offset_t start, vm_offset_t end, vm_prot_t prot, vm_prot_t max, int cow, 1613 vm_map_entry_t *res) 1614 { 1615 vm_map_entry_t new_entry, next_entry, prev_entry; 1616 struct ucred *cred; 1617 vm_eflags_t protoeflags; 1618 vm_inherit_t inheritance; 1619 u_long bdry; 1620 u_int bidx; 1621 1622 VM_MAP_ASSERT_LOCKED(map); 1623 KASSERT(object != kernel_object || 1624 (cow & MAP_COPY_ON_WRITE) == 0, 1625 ("vm_map_insert: kernel object and COW")); 1626 KASSERT(object == NULL || (cow & MAP_NOFAULT) == 0 || 1627 (cow & MAP_SPLIT_BOUNDARY_MASK) != 0, 1628 ("vm_map_insert: paradoxical MAP_NOFAULT request, obj %p cow %#x", 1629 object, cow)); 1630 KASSERT((prot & ~max) == 0, 1631 ("prot %#x is not subset of max_prot %#x", prot, max)); 1632 1633 /* 1634 * Check that the start and end points are not bogus. 1635 */ 1636 if (start == end || !vm_map_range_valid(map, start, end)) 1637 return (KERN_INVALID_ADDRESS); 1638 1639 if ((map->flags & MAP_WXORX) != 0 && (prot & (VM_PROT_WRITE | 1640 VM_PROT_EXECUTE)) == (VM_PROT_WRITE | VM_PROT_EXECUTE)) 1641 return (KERN_PROTECTION_FAILURE); 1642 1643 /* 1644 * Find the entry prior to the proposed starting address; if it's part 1645 * of an existing entry, this range is bogus. 1646 */ 1647 if (vm_map_lookup_entry(map, start, &prev_entry)) 1648 return (KERN_NO_SPACE); 1649 1650 /* 1651 * Assert that the next entry doesn't overlap the end point. 1652 */ 1653 next_entry = vm_map_entry_succ(prev_entry); 1654 if (next_entry->start < end) 1655 return (KERN_NO_SPACE); 1656 1657 if ((cow & MAP_CREATE_GUARD) != 0 && (object != NULL || 1658 max != VM_PROT_NONE)) 1659 return (KERN_INVALID_ARGUMENT); 1660 1661 protoeflags = 0; 1662 if (cow & MAP_COPY_ON_WRITE) 1663 protoeflags |= MAP_ENTRY_COW | MAP_ENTRY_NEEDS_COPY; 1664 if (cow & MAP_NOFAULT) 1665 protoeflags |= MAP_ENTRY_NOFAULT; 1666 if (cow & MAP_DISABLE_SYNCER) 1667 protoeflags |= MAP_ENTRY_NOSYNC; 1668 if (cow & MAP_DISABLE_COREDUMP) 1669 protoeflags |= MAP_ENTRY_NOCOREDUMP; 1670 if (cow & MAP_STACK_GROWS_DOWN) 1671 protoeflags |= MAP_ENTRY_GROWS_DOWN; 1672 if (cow & MAP_STACK_GROWS_UP) 1673 protoeflags |= MAP_ENTRY_GROWS_UP; 1674 if (cow & MAP_WRITECOUNT) 1675 protoeflags |= MAP_ENTRY_WRITECNT; 1676 if (cow & MAP_VN_EXEC) 1677 protoeflags |= MAP_ENTRY_VN_EXEC; 1678 if ((cow & MAP_CREATE_GUARD) != 0) 1679 protoeflags |= MAP_ENTRY_GUARD; 1680 if ((cow & MAP_CREATE_STACK_GAP_DN) != 0) 1681 protoeflags |= MAP_ENTRY_STACK_GAP_DN; 1682 if ((cow & MAP_CREATE_STACK_GAP_UP) != 0) 1683 protoeflags |= MAP_ENTRY_STACK_GAP_UP; 1684 if (cow & MAP_INHERIT_SHARE) 1685 inheritance = VM_INHERIT_SHARE; 1686 else 1687 inheritance = VM_INHERIT_DEFAULT; 1688 if ((cow & MAP_SPLIT_BOUNDARY_MASK) != 0) { 1689 /* This magically ignores index 0, for usual page size. */ 1690 bidx = (cow & MAP_SPLIT_BOUNDARY_MASK) >> 1691 MAP_SPLIT_BOUNDARY_SHIFT; 1692 if (bidx >= MAXPAGESIZES) 1693 return (KERN_INVALID_ARGUMENT); 1694 bdry = pagesizes[bidx] - 1; 1695 if ((start & bdry) != 0 || (end & bdry) != 0) 1696 return (KERN_INVALID_ARGUMENT); 1697 protoeflags |= bidx << MAP_ENTRY_SPLIT_BOUNDARY_SHIFT; 1698 } 1699 1700 cred = NULL; 1701 if ((cow & (MAP_ACC_NO_CHARGE | MAP_NOFAULT | MAP_CREATE_GUARD)) != 0) 1702 goto charged; 1703 if ((cow & MAP_ACC_CHARGED) || ((prot & VM_PROT_WRITE) && 1704 ((protoeflags & MAP_ENTRY_NEEDS_COPY) || object == NULL))) { 1705 if (!(cow & MAP_ACC_CHARGED) && !swap_reserve(end - start)) 1706 return (KERN_RESOURCE_SHORTAGE); 1707 KASSERT(object == NULL || 1708 (protoeflags & MAP_ENTRY_NEEDS_COPY) != 0 || 1709 object->cred == NULL, 1710 ("overcommit: vm_map_insert o %p", object)); 1711 cred = curthread->td_ucred; 1712 } 1713 1714 charged: 1715 /* Expand the kernel pmap, if necessary. */ 1716 if (map == kernel_map && end > kernel_vm_end) 1717 pmap_growkernel(end); 1718 if (object != NULL) { 1719 /* 1720 * OBJ_ONEMAPPING must be cleared unless this mapping 1721 * is trivially proven to be the only mapping for any 1722 * of the object's pages. (Object granularity 1723 * reference counting is insufficient to recognize 1724 * aliases with precision.) 1725 */ 1726 if ((object->flags & OBJ_ANON) != 0) { 1727 VM_OBJECT_WLOCK(object); 1728 if (object->ref_count > 1 || object->shadow_count != 0) 1729 vm_object_clear_flag(object, OBJ_ONEMAPPING); 1730 VM_OBJECT_WUNLOCK(object); 1731 } 1732 } else if ((prev_entry->eflags & ~MAP_ENTRY_USER_WIRED) == 1733 protoeflags && 1734 (cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP | 1735 MAP_VN_EXEC)) == 0 && 1736 prev_entry->end == start && (prev_entry->cred == cred || 1737 (prev_entry->object.vm_object != NULL && 1738 prev_entry->object.vm_object->cred == cred)) && 1739 vm_object_coalesce(prev_entry->object.vm_object, 1740 prev_entry->offset, 1741 (vm_size_t)(prev_entry->end - prev_entry->start), 1742 (vm_size_t)(end - prev_entry->end), cred != NULL && 1743 (protoeflags & MAP_ENTRY_NEEDS_COPY) == 0)) { 1744 /* 1745 * We were able to extend the object. Determine if we 1746 * can extend the previous map entry to include the 1747 * new range as well. 1748 */ 1749 if (prev_entry->inheritance == inheritance && 1750 prev_entry->protection == prot && 1751 prev_entry->max_protection == max && 1752 prev_entry->wired_count == 0) { 1753 KASSERT((prev_entry->eflags & MAP_ENTRY_USER_WIRED) == 1754 0, ("prev_entry %p has incoherent wiring", 1755 prev_entry)); 1756 if ((prev_entry->eflags & MAP_ENTRY_GUARD) == 0) 1757 map->size += end - prev_entry->end; 1758 vm_map_entry_resize(map, prev_entry, 1759 end - prev_entry->end); 1760 *res = vm_map_try_merge_entries(map, prev_entry, 1761 next_entry); 1762 return (KERN_SUCCESS); 1763 } 1764 1765 /* 1766 * If we can extend the object but cannot extend the 1767 * map entry, we have to create a new map entry. We 1768 * must bump the ref count on the extended object to 1769 * account for it. object may be NULL. 1770 */ 1771 object = prev_entry->object.vm_object; 1772 offset = prev_entry->offset + 1773 (prev_entry->end - prev_entry->start); 1774 vm_object_reference(object); 1775 if (cred != NULL && object != NULL && object->cred != NULL && 1776 !(prev_entry->eflags & MAP_ENTRY_NEEDS_COPY)) { 1777 /* Object already accounts for this uid. */ 1778 cred = NULL; 1779 } 1780 } 1781 if (cred != NULL) 1782 crhold(cred); 1783 1784 /* 1785 * Create a new entry 1786 */ 1787 new_entry = vm_map_entry_create(map); 1788 new_entry->start = start; 1789 new_entry->end = end; 1790 new_entry->cred = NULL; 1791 1792 new_entry->eflags = protoeflags; 1793 new_entry->object.vm_object = object; 1794 new_entry->offset = offset; 1795 1796 new_entry->inheritance = inheritance; 1797 new_entry->protection = prot; 1798 new_entry->max_protection = max; 1799 new_entry->wired_count = 0; 1800 new_entry->wiring_thread = NULL; 1801 new_entry->read_ahead = VM_FAULT_READ_AHEAD_INIT; 1802 new_entry->next_read = start; 1803 1804 KASSERT(cred == NULL || !ENTRY_CHARGED(new_entry), 1805 ("overcommit: vm_map_insert leaks vm_map %p", new_entry)); 1806 new_entry->cred = cred; 1807 1808 /* 1809 * Insert the new entry into the list 1810 */ 1811 vm_map_entry_link(map, new_entry); 1812 if ((new_entry->eflags & MAP_ENTRY_GUARD) == 0) 1813 map->size += new_entry->end - new_entry->start; 1814 1815 /* 1816 * Try to coalesce the new entry with both the previous and next 1817 * entries in the list. Previously, we only attempted to coalesce 1818 * with the previous entry when object is NULL. Here, we handle the 1819 * other cases, which are less common. 1820 */ 1821 vm_map_try_merge_entries(map, prev_entry, new_entry); 1822 *res = vm_map_try_merge_entries(map, new_entry, next_entry); 1823 1824 if ((cow & (MAP_PREFAULT | MAP_PREFAULT_PARTIAL)) != 0) { 1825 vm_map_pmap_enter(map, start, prot, object, OFF_TO_IDX(offset), 1826 end - start, cow & MAP_PREFAULT_PARTIAL); 1827 } 1828 1829 return (KERN_SUCCESS); 1830 } 1831 1832 /* 1833 * vm_map_insert: 1834 * 1835 * Inserts the given VM object into the target map at the 1836 * specified address range. 1837 * 1838 * Requires that the map be locked, and leaves it so. 1839 * 1840 * If object is non-NULL, ref count must be bumped by caller 1841 * prior to making call to account for the new entry. 1842 */ 1843 int 1844 vm_map_insert(vm_map_t map, vm_object_t object, vm_ooffset_t offset, 1845 vm_offset_t start, vm_offset_t end, vm_prot_t prot, vm_prot_t max, int cow) 1846 { 1847 vm_map_entry_t res; 1848 1849 return (vm_map_insert1(map, object, offset, start, end, prot, max, 1850 cow, &res)); 1851 } 1852 1853 /* 1854 * vm_map_findspace: 1855 * 1856 * Find the first fit (lowest VM address) for "length" free bytes 1857 * beginning at address >= start in the given map. 1858 * 1859 * In a vm_map_entry, "max_free" is the maximum amount of 1860 * contiguous free space between an entry in its subtree and a 1861 * neighbor of that entry. This allows finding a free region in 1862 * one path down the tree, so O(log n) amortized with splay 1863 * trees. 1864 * 1865 * The map must be locked, and leaves it so. 1866 * 1867 * Returns: starting address if sufficient space, 1868 * vm_map_max(map)-length+1 if insufficient space. 1869 */ 1870 vm_offset_t 1871 vm_map_findspace(vm_map_t map, vm_offset_t start, vm_size_t length) 1872 { 1873 vm_map_entry_t header, llist, rlist, root, y; 1874 vm_size_t left_length, max_free_left, max_free_right; 1875 vm_offset_t gap_end; 1876 1877 VM_MAP_ASSERT_LOCKED(map); 1878 1879 /* 1880 * Request must fit within min/max VM address and must avoid 1881 * address wrap. 1882 */ 1883 start = MAX(start, vm_map_min(map)); 1884 if (start >= vm_map_max(map) || length > vm_map_max(map) - start) 1885 return (vm_map_max(map) - length + 1); 1886 1887 /* Empty tree means wide open address space. */ 1888 if (map->root == NULL) 1889 return (start); 1890 1891 /* 1892 * After splay_split, if start is within an entry, push it to the start 1893 * of the following gap. If rlist is at the end of the gap containing 1894 * start, save the end of that gap in gap_end to see if the gap is big 1895 * enough; otherwise set gap_end to start skip gap-checking and move 1896 * directly to a search of the right subtree. 1897 */ 1898 header = &map->header; 1899 root = vm_map_splay_split(map, start, length, &llist, &rlist); 1900 gap_end = rlist->start; 1901 if (root != NULL) { 1902 start = root->end; 1903 if (root->right != rlist) 1904 gap_end = start; 1905 max_free_left = vm_map_splay_merge_left(header, root, llist); 1906 max_free_right = vm_map_splay_merge_right(header, root, rlist); 1907 } else if (rlist != header) { 1908 root = rlist; 1909 rlist = root->left; 1910 max_free_left = vm_map_splay_merge_pred(header, root, llist); 1911 max_free_right = vm_map_splay_merge_right(header, root, rlist); 1912 } else { 1913 root = llist; 1914 llist = root->right; 1915 max_free_left = vm_map_splay_merge_left(header, root, llist); 1916 max_free_right = vm_map_splay_merge_succ(header, root, rlist); 1917 } 1918 root->max_free = vm_size_max(max_free_left, max_free_right); 1919 map->root = root; 1920 VM_MAP_ASSERT_CONSISTENT(map); 1921 if (length <= gap_end - start) 1922 return (start); 1923 1924 /* With max_free, can immediately tell if no solution. */ 1925 if (root->right == header || length > root->right->max_free) 1926 return (vm_map_max(map) - length + 1); 1927 1928 /* 1929 * Splay for the least large-enough gap in the right subtree. 1930 */ 1931 llist = rlist = header; 1932 for (left_length = 0;; 1933 left_length = vm_map_entry_max_free_left(root, llist)) { 1934 if (length <= left_length) 1935 SPLAY_LEFT_STEP(root, y, llist, rlist, 1936 length <= vm_map_entry_max_free_left(y, llist)); 1937 else 1938 SPLAY_RIGHT_STEP(root, y, llist, rlist, 1939 length > vm_map_entry_max_free_left(y, root)); 1940 if (root == NULL) 1941 break; 1942 } 1943 root = llist; 1944 llist = root->right; 1945 max_free_left = vm_map_splay_merge_left(header, root, llist); 1946 if (rlist == header) { 1947 root->max_free = vm_size_max(max_free_left, 1948 vm_map_splay_merge_succ(header, root, rlist)); 1949 } else { 1950 y = rlist; 1951 rlist = y->left; 1952 y->max_free = vm_size_max( 1953 vm_map_splay_merge_pred(root, y, root), 1954 vm_map_splay_merge_right(header, y, rlist)); 1955 root->max_free = vm_size_max(max_free_left, y->max_free); 1956 } 1957 map->root = root; 1958 VM_MAP_ASSERT_CONSISTENT(map); 1959 return (root->end); 1960 } 1961 1962 int 1963 vm_map_fixed(vm_map_t map, vm_object_t object, vm_ooffset_t offset, 1964 vm_offset_t start, vm_size_t length, vm_prot_t prot, 1965 vm_prot_t max, int cow) 1966 { 1967 vm_offset_t end; 1968 int result; 1969 1970 end = start + length; 1971 KASSERT((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 || 1972 object == NULL, 1973 ("vm_map_fixed: non-NULL backing object for stack")); 1974 vm_map_lock(map); 1975 VM_MAP_RANGE_CHECK(map, start, end); 1976 if ((cow & MAP_CHECK_EXCL) == 0) { 1977 result = vm_map_delete(map, start, end); 1978 if (result != KERN_SUCCESS) 1979 goto out; 1980 } 1981 if ((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) != 0) { 1982 result = vm_map_stack_locked(map, start, length, sgrowsiz, 1983 prot, max, cow); 1984 } else { 1985 result = vm_map_insert(map, object, offset, start, end, 1986 prot, max, cow); 1987 } 1988 out: 1989 vm_map_unlock(map); 1990 return (result); 1991 } 1992 1993 static const int aslr_pages_rnd_64[2] = {0x1000, 0x10}; 1994 static const int aslr_pages_rnd_32[2] = {0x100, 0x4}; 1995 1996 static int cluster_anon = 1; 1997 SYSCTL_INT(_vm, OID_AUTO, cluster_anon, CTLFLAG_RW, 1998 &cluster_anon, 0, 1999 "Cluster anonymous mappings: 0 = no, 1 = yes if no hint, 2 = always"); 2000 2001 static bool 2002 clustering_anon_allowed(vm_offset_t addr, int cow) 2003 { 2004 2005 switch (cluster_anon) { 2006 case 0: 2007 return (false); 2008 case 1: 2009 return (addr == 0 || (cow & MAP_NO_HINT) != 0); 2010 case 2: 2011 default: 2012 return (true); 2013 } 2014 } 2015 2016 static long aslr_restarts; 2017 SYSCTL_LONG(_vm, OID_AUTO, aslr_restarts, CTLFLAG_RD, 2018 &aslr_restarts, 0, 2019 "Number of aslr failures"); 2020 2021 /* 2022 * Searches for the specified amount of free space in the given map with the 2023 * specified alignment. Performs an address-ordered, first-fit search from 2024 * the given address "*addr", with an optional upper bound "max_addr". If the 2025 * parameter "alignment" is zero, then the alignment is computed from the 2026 * given (object, offset) pair so as to enable the greatest possible use of 2027 * superpage mappings. Returns KERN_SUCCESS and the address of the free space 2028 * in "*addr" if successful. Otherwise, returns KERN_NO_SPACE. 2029 * 2030 * The map must be locked. Initially, there must be at least "length" bytes 2031 * of free space at the given address. 2032 */ 2033 static int 2034 vm_map_alignspace(vm_map_t map, vm_object_t object, vm_ooffset_t offset, 2035 vm_offset_t *addr, vm_size_t length, vm_offset_t max_addr, 2036 vm_offset_t alignment) 2037 { 2038 vm_offset_t aligned_addr, free_addr; 2039 2040 VM_MAP_ASSERT_LOCKED(map); 2041 free_addr = *addr; 2042 KASSERT(free_addr == vm_map_findspace(map, free_addr, length), 2043 ("caller failed to provide space %#jx at address %p", 2044 (uintmax_t)length, (void *)free_addr)); 2045 for (;;) { 2046 /* 2047 * At the start of every iteration, the free space at address 2048 * "*addr" is at least "length" bytes. 2049 */ 2050 if (alignment == 0) 2051 pmap_align_superpage(object, offset, addr, length); 2052 else 2053 *addr = roundup2(*addr, alignment); 2054 aligned_addr = *addr; 2055 if (aligned_addr == free_addr) { 2056 /* 2057 * Alignment did not change "*addr", so "*addr" must 2058 * still provide sufficient free space. 2059 */ 2060 return (KERN_SUCCESS); 2061 } 2062 2063 /* 2064 * Test for address wrap on "*addr". A wrapped "*addr" could 2065 * be a valid address, in which case vm_map_findspace() cannot 2066 * be relied upon to fail. 2067 */ 2068 if (aligned_addr < free_addr) 2069 return (KERN_NO_SPACE); 2070 *addr = vm_map_findspace(map, aligned_addr, length); 2071 if (*addr + length > vm_map_max(map) || 2072 (max_addr != 0 && *addr + length > max_addr)) 2073 return (KERN_NO_SPACE); 2074 free_addr = *addr; 2075 if (free_addr == aligned_addr) { 2076 /* 2077 * If a successful call to vm_map_findspace() did not 2078 * change "*addr", then "*addr" must still be aligned 2079 * and provide sufficient free space. 2080 */ 2081 return (KERN_SUCCESS); 2082 } 2083 } 2084 } 2085 2086 int 2087 vm_map_find_aligned(vm_map_t map, vm_offset_t *addr, vm_size_t length, 2088 vm_offset_t max_addr, vm_offset_t alignment) 2089 { 2090 /* XXXKIB ASLR eh ? */ 2091 *addr = vm_map_findspace(map, *addr, length); 2092 if (*addr + length > vm_map_max(map) || 2093 (max_addr != 0 && *addr + length > max_addr)) 2094 return (KERN_NO_SPACE); 2095 return (vm_map_alignspace(map, NULL, 0, addr, length, max_addr, 2096 alignment)); 2097 } 2098 2099 /* 2100 * vm_map_find finds an unallocated region in the target address 2101 * map with the given length. The search is defined to be 2102 * first-fit from the specified address; the region found is 2103 * returned in the same parameter. 2104 * 2105 * If object is non-NULL, ref count must be bumped by caller 2106 * prior to making call to account for the new entry. 2107 */ 2108 int 2109 vm_map_find(vm_map_t map, vm_object_t object, vm_ooffset_t offset, 2110 vm_offset_t *addr, /* IN/OUT */ 2111 vm_size_t length, vm_offset_t max_addr, int find_space, 2112 vm_prot_t prot, vm_prot_t max, int cow) 2113 { 2114 vm_offset_t alignment, curr_min_addr, min_addr; 2115 int gap, pidx, rv, try; 2116 bool cluster, en_aslr, update_anon; 2117 2118 KASSERT((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 || 2119 object == NULL, 2120 ("vm_map_find: non-NULL backing object for stack")); 2121 MPASS((cow & MAP_REMAP) == 0 || (find_space == VMFS_NO_SPACE && 2122 (cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0)); 2123 if (find_space == VMFS_OPTIMAL_SPACE && (object == NULL || 2124 (object->flags & OBJ_COLORED) == 0)) 2125 find_space = VMFS_ANY_SPACE; 2126 if (find_space >> 8 != 0) { 2127 KASSERT((find_space & 0xff) == 0, ("bad VMFS flags")); 2128 alignment = (vm_offset_t)1 << (find_space >> 8); 2129 } else 2130 alignment = 0; 2131 en_aslr = (map->flags & MAP_ASLR) != 0; 2132 update_anon = cluster = clustering_anon_allowed(*addr, cow) && 2133 (map->flags & MAP_IS_SUB_MAP) == 0 && max_addr == 0 && 2134 find_space != VMFS_NO_SPACE && object == NULL && 2135 (cow & (MAP_INHERIT_SHARE | MAP_STACK_GROWS_UP | 2136 MAP_STACK_GROWS_DOWN)) == 0 && prot != PROT_NONE; 2137 curr_min_addr = min_addr = *addr; 2138 if (en_aslr && min_addr == 0 && !cluster && 2139 find_space != VMFS_NO_SPACE && 2140 (map->flags & MAP_ASLR_IGNSTART) != 0) 2141 curr_min_addr = min_addr = vm_map_min(map); 2142 try = 0; 2143 vm_map_lock(map); 2144 if (cluster) { 2145 curr_min_addr = map->anon_loc; 2146 if (curr_min_addr == 0) 2147 cluster = false; 2148 } 2149 if (find_space != VMFS_NO_SPACE) { 2150 KASSERT(find_space == VMFS_ANY_SPACE || 2151 find_space == VMFS_OPTIMAL_SPACE || 2152 find_space == VMFS_SUPER_SPACE || 2153 alignment != 0, ("unexpected VMFS flag")); 2154 again: 2155 /* 2156 * When creating an anonymous mapping, try clustering 2157 * with an existing anonymous mapping first. 2158 * 2159 * We make up to two attempts to find address space 2160 * for a given find_space value. The first attempt may 2161 * apply randomization or may cluster with an existing 2162 * anonymous mapping. If this first attempt fails, 2163 * perform a first-fit search of the available address 2164 * space. 2165 * 2166 * If all tries failed, and find_space is 2167 * VMFS_OPTIMAL_SPACE, fallback to VMFS_ANY_SPACE. 2168 * Again enable clustering and randomization. 2169 */ 2170 try++; 2171 MPASS(try <= 2); 2172 2173 if (try == 2) { 2174 /* 2175 * Second try: we failed either to find a 2176 * suitable region for randomizing the 2177 * allocation, or to cluster with an existing 2178 * mapping. Retry with free run. 2179 */ 2180 curr_min_addr = (map->flags & MAP_ASLR_IGNSTART) != 0 ? 2181 vm_map_min(map) : min_addr; 2182 atomic_add_long(&aslr_restarts, 1); 2183 } 2184 2185 if (try == 1 && en_aslr && !cluster) { 2186 /* 2187 * Find space for allocation, including 2188 * gap needed for later randomization. 2189 */ 2190 pidx = MAXPAGESIZES > 1 && pagesizes[1] != 0 && 2191 (find_space == VMFS_SUPER_SPACE || find_space == 2192 VMFS_OPTIMAL_SPACE) ? 1 : 0; 2193 gap = vm_map_max(map) > MAP_32BIT_MAX_ADDR && 2194 (max_addr == 0 || max_addr > MAP_32BIT_MAX_ADDR) ? 2195 aslr_pages_rnd_64[pidx] : aslr_pages_rnd_32[pidx]; 2196 *addr = vm_map_findspace(map, curr_min_addr, 2197 length + gap * pagesizes[pidx]); 2198 if (*addr + length + gap * pagesizes[pidx] > 2199 vm_map_max(map)) 2200 goto again; 2201 /* And randomize the start address. */ 2202 *addr += (arc4random() % gap) * pagesizes[pidx]; 2203 if (max_addr != 0 && *addr + length > max_addr) 2204 goto again; 2205 } else { 2206 *addr = vm_map_findspace(map, curr_min_addr, length); 2207 if (*addr + length > vm_map_max(map) || 2208 (max_addr != 0 && *addr + length > max_addr)) { 2209 if (cluster) { 2210 cluster = false; 2211 MPASS(try == 1); 2212 goto again; 2213 } 2214 rv = KERN_NO_SPACE; 2215 goto done; 2216 } 2217 } 2218 2219 if (find_space != VMFS_ANY_SPACE && 2220 (rv = vm_map_alignspace(map, object, offset, addr, length, 2221 max_addr, alignment)) != KERN_SUCCESS) { 2222 if (find_space == VMFS_OPTIMAL_SPACE) { 2223 find_space = VMFS_ANY_SPACE; 2224 curr_min_addr = min_addr; 2225 cluster = update_anon; 2226 try = 0; 2227 goto again; 2228 } 2229 goto done; 2230 } 2231 } else if ((cow & MAP_REMAP) != 0) { 2232 if (!vm_map_range_valid(map, *addr, *addr + length)) { 2233 rv = KERN_INVALID_ADDRESS; 2234 goto done; 2235 } 2236 rv = vm_map_delete(map, *addr, *addr + length); 2237 if (rv != KERN_SUCCESS) 2238 goto done; 2239 } 2240 if ((cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) != 0) { 2241 rv = vm_map_stack_locked(map, *addr, length, sgrowsiz, prot, 2242 max, cow); 2243 } else { 2244 rv = vm_map_insert(map, object, offset, *addr, *addr + length, 2245 prot, max, cow); 2246 } 2247 if (rv == KERN_SUCCESS && update_anon) 2248 map->anon_loc = *addr + length; 2249 done: 2250 vm_map_unlock(map); 2251 return (rv); 2252 } 2253 2254 /* 2255 * vm_map_find_min() is a variant of vm_map_find() that takes an 2256 * additional parameter ("default_addr") and treats the given address 2257 * ("*addr") differently. Specifically, it treats "*addr" as a hint 2258 * and not as the minimum address where the mapping is created. 2259 * 2260 * This function works in two phases. First, it tries to 2261 * allocate above the hint. If that fails and the hint is 2262 * greater than "default_addr", it performs a second pass, replacing 2263 * the hint with "default_addr" as the minimum address for the 2264 * allocation. 2265 */ 2266 int 2267 vm_map_find_min(vm_map_t map, vm_object_t object, vm_ooffset_t offset, 2268 vm_offset_t *addr, vm_size_t length, vm_offset_t default_addr, 2269 vm_offset_t max_addr, int find_space, vm_prot_t prot, vm_prot_t max, 2270 int cow) 2271 { 2272 vm_offset_t hint; 2273 int rv; 2274 2275 hint = *addr; 2276 if (hint == 0) { 2277 cow |= MAP_NO_HINT; 2278 *addr = hint = default_addr; 2279 } 2280 for (;;) { 2281 rv = vm_map_find(map, object, offset, addr, length, max_addr, 2282 find_space, prot, max, cow); 2283 if (rv == KERN_SUCCESS || default_addr >= hint) 2284 return (rv); 2285 *addr = hint = default_addr; 2286 } 2287 } 2288 2289 /* 2290 * A map entry with any of the following flags set must not be merged with 2291 * another entry. 2292 */ 2293 #define MAP_ENTRY_NOMERGE_MASK (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP | \ 2294 MAP_ENTRY_IN_TRANSITION | MAP_ENTRY_IS_SUB_MAP | MAP_ENTRY_VN_EXEC | \ 2295 MAP_ENTRY_STACK_GAP_UP | MAP_ENTRY_STACK_GAP_DN) 2296 2297 static bool 2298 vm_map_mergeable_neighbors(vm_map_entry_t prev, vm_map_entry_t entry) 2299 { 2300 2301 KASSERT((prev->eflags & MAP_ENTRY_NOMERGE_MASK) == 0 || 2302 (entry->eflags & MAP_ENTRY_NOMERGE_MASK) == 0, 2303 ("vm_map_mergeable_neighbors: neither %p nor %p are mergeable", 2304 prev, entry)); 2305 return (prev->end == entry->start && 2306 prev->object.vm_object == entry->object.vm_object && 2307 (prev->object.vm_object == NULL || 2308 prev->offset + (prev->end - prev->start) == entry->offset) && 2309 prev->eflags == entry->eflags && 2310 prev->protection == entry->protection && 2311 prev->max_protection == entry->max_protection && 2312 prev->inheritance == entry->inheritance && 2313 prev->wired_count == entry->wired_count && 2314 prev->cred == entry->cred); 2315 } 2316 2317 static void 2318 vm_map_merged_neighbor_dispose(vm_map_t map, vm_map_entry_t entry) 2319 { 2320 2321 /* 2322 * If the backing object is a vnode object, vm_object_deallocate() 2323 * calls vrele(). However, vrele() does not lock the vnode because 2324 * the vnode has additional references. Thus, the map lock can be 2325 * kept without causing a lock-order reversal with the vnode lock. 2326 * 2327 * Since we count the number of virtual page mappings in 2328 * object->un_pager.vnp.writemappings, the writemappings value 2329 * should not be adjusted when the entry is disposed of. 2330 */ 2331 if (entry->object.vm_object != NULL) 2332 vm_object_deallocate(entry->object.vm_object); 2333 if (entry->cred != NULL) 2334 crfree(entry->cred); 2335 vm_map_entry_dispose(map, entry); 2336 } 2337 2338 /* 2339 * vm_map_try_merge_entries: 2340 * 2341 * Compare two map entries that represent consecutive ranges. If 2342 * the entries can be merged, expand the range of the second to 2343 * cover the range of the first and delete the first. Then return 2344 * the map entry that includes the first range. 2345 * 2346 * The map must be locked. 2347 */ 2348 vm_map_entry_t 2349 vm_map_try_merge_entries(vm_map_t map, vm_map_entry_t prev_entry, 2350 vm_map_entry_t entry) 2351 { 2352 2353 VM_MAP_ASSERT_LOCKED(map); 2354 if ((entry->eflags & MAP_ENTRY_NOMERGE_MASK) == 0 && 2355 vm_map_mergeable_neighbors(prev_entry, entry)) { 2356 vm_map_entry_unlink(map, prev_entry, UNLINK_MERGE_NEXT); 2357 vm_map_merged_neighbor_dispose(map, prev_entry); 2358 return (entry); 2359 } 2360 return (prev_entry); 2361 } 2362 2363 /* 2364 * vm_map_entry_back: 2365 * 2366 * Allocate an object to back a map entry. 2367 */ 2368 static inline void 2369 vm_map_entry_back(vm_map_entry_t entry) 2370 { 2371 vm_object_t object; 2372 2373 KASSERT(entry->object.vm_object == NULL, 2374 ("map entry %p has backing object", entry)); 2375 KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0, 2376 ("map entry %p is a submap", entry)); 2377 object = vm_object_allocate_anon(atop(entry->end - entry->start), NULL, 2378 entry->cred, entry->end - entry->start); 2379 entry->object.vm_object = object; 2380 entry->offset = 0; 2381 entry->cred = NULL; 2382 } 2383 2384 /* 2385 * vm_map_entry_charge_object 2386 * 2387 * If there is no object backing this entry, create one. Otherwise, if 2388 * the entry has cred, give it to the backing object. 2389 */ 2390 static inline void 2391 vm_map_entry_charge_object(vm_map_t map, vm_map_entry_t entry) 2392 { 2393 2394 VM_MAP_ASSERT_LOCKED(map); 2395 KASSERT((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0, 2396 ("map entry %p is a submap", entry)); 2397 if (entry->object.vm_object == NULL && !map->system_map && 2398 (entry->eflags & MAP_ENTRY_GUARD) == 0) 2399 vm_map_entry_back(entry); 2400 else if (entry->object.vm_object != NULL && 2401 ((entry->eflags & MAP_ENTRY_NEEDS_COPY) == 0) && 2402 entry->cred != NULL) { 2403 VM_OBJECT_WLOCK(entry->object.vm_object); 2404 KASSERT(entry->object.vm_object->cred == NULL, 2405 ("OVERCOMMIT: %s: both cred e %p", __func__, entry)); 2406 entry->object.vm_object->cred = entry->cred; 2407 entry->object.vm_object->charge = entry->end - entry->start; 2408 VM_OBJECT_WUNLOCK(entry->object.vm_object); 2409 entry->cred = NULL; 2410 } 2411 } 2412 2413 /* 2414 * vm_map_entry_clone 2415 * 2416 * Create a duplicate map entry for clipping. 2417 */ 2418 static vm_map_entry_t 2419 vm_map_entry_clone(vm_map_t map, vm_map_entry_t entry) 2420 { 2421 vm_map_entry_t new_entry; 2422 2423 VM_MAP_ASSERT_LOCKED(map); 2424 2425 /* 2426 * Create a backing object now, if none exists, so that more individual 2427 * objects won't be created after the map entry is split. 2428 */ 2429 vm_map_entry_charge_object(map, entry); 2430 2431 /* Clone the entry. */ 2432 new_entry = vm_map_entry_create(map); 2433 *new_entry = *entry; 2434 if (new_entry->cred != NULL) 2435 crhold(entry->cred); 2436 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0) { 2437 vm_object_reference(new_entry->object.vm_object); 2438 vm_map_entry_set_vnode_text(new_entry, true); 2439 /* 2440 * The object->un_pager.vnp.writemappings for the object of 2441 * MAP_ENTRY_WRITECNT type entry shall be kept as is here. The 2442 * virtual pages are re-distributed among the clipped entries, 2443 * so the sum is left the same. 2444 */ 2445 } 2446 return (new_entry); 2447 } 2448 2449 /* 2450 * vm_map_clip_start: [ internal use only ] 2451 * 2452 * Asserts that the given entry begins at or after 2453 * the specified address; if necessary, 2454 * it splits the entry into two. 2455 */ 2456 static int 2457 vm_map_clip_start(vm_map_t map, vm_map_entry_t entry, vm_offset_t startaddr) 2458 { 2459 vm_map_entry_t new_entry; 2460 int bdry_idx; 2461 2462 if (!map->system_map) 2463 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL, 2464 "%s: map %p entry %p start 0x%jx", __func__, map, entry, 2465 (uintmax_t)startaddr); 2466 2467 if (startaddr <= entry->start) 2468 return (KERN_SUCCESS); 2469 2470 VM_MAP_ASSERT_LOCKED(map); 2471 KASSERT(entry->end > startaddr && entry->start < startaddr, 2472 ("%s: invalid clip of entry %p", __func__, entry)); 2473 2474 bdry_idx = MAP_ENTRY_SPLIT_BOUNDARY_INDEX(entry); 2475 if (bdry_idx != 0) { 2476 if ((startaddr & (pagesizes[bdry_idx] - 1)) != 0) 2477 return (KERN_INVALID_ARGUMENT); 2478 } 2479 2480 new_entry = vm_map_entry_clone(map, entry); 2481 2482 /* 2483 * Split off the front portion. Insert the new entry BEFORE this one, 2484 * so that this entry has the specified starting address. 2485 */ 2486 new_entry->end = startaddr; 2487 vm_map_entry_link(map, new_entry); 2488 return (KERN_SUCCESS); 2489 } 2490 2491 /* 2492 * vm_map_lookup_clip_start: 2493 * 2494 * Find the entry at or just after 'start', and clip it if 'start' is in 2495 * the interior of the entry. Return entry after 'start', and in 2496 * prev_entry set the entry before 'start'. 2497 */ 2498 static int 2499 vm_map_lookup_clip_start(vm_map_t map, vm_offset_t start, 2500 vm_map_entry_t *res_entry, vm_map_entry_t *prev_entry) 2501 { 2502 vm_map_entry_t entry; 2503 int rv; 2504 2505 if (!map->system_map) 2506 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL, 2507 "%s: map %p start 0x%jx prev %p", __func__, map, 2508 (uintmax_t)start, prev_entry); 2509 2510 if (vm_map_lookup_entry(map, start, prev_entry)) { 2511 entry = *prev_entry; 2512 rv = vm_map_clip_start(map, entry, start); 2513 if (rv != KERN_SUCCESS) 2514 return (rv); 2515 *prev_entry = vm_map_entry_pred(entry); 2516 } else 2517 entry = vm_map_entry_succ(*prev_entry); 2518 *res_entry = entry; 2519 return (KERN_SUCCESS); 2520 } 2521 2522 /* 2523 * vm_map_clip_end: [ internal use only ] 2524 * 2525 * Asserts that the given entry ends at or before 2526 * the specified address; if necessary, 2527 * it splits the entry into two. 2528 */ 2529 static int 2530 vm_map_clip_end(vm_map_t map, vm_map_entry_t entry, vm_offset_t endaddr) 2531 { 2532 vm_map_entry_t new_entry; 2533 int bdry_idx; 2534 2535 if (!map->system_map) 2536 WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL, 2537 "%s: map %p entry %p end 0x%jx", __func__, map, entry, 2538 (uintmax_t)endaddr); 2539 2540 if (endaddr >= entry->end) 2541 return (KERN_SUCCESS); 2542 2543 VM_MAP_ASSERT_LOCKED(map); 2544 KASSERT(entry->start < endaddr && entry->end > endaddr, 2545 ("%s: invalid clip of entry %p", __func__, entry)); 2546 2547 bdry_idx = MAP_ENTRY_SPLIT_BOUNDARY_INDEX(entry); 2548 if (bdry_idx != 0) { 2549 if ((endaddr & (pagesizes[bdry_idx] - 1)) != 0) 2550 return (KERN_INVALID_ARGUMENT); 2551 } 2552 2553 new_entry = vm_map_entry_clone(map, entry); 2554 2555 /* 2556 * Split off the back portion. Insert the new entry AFTER this one, 2557 * so that this entry has the specified ending address. 2558 */ 2559 new_entry->start = endaddr; 2560 vm_map_entry_link(map, new_entry); 2561 2562 return (KERN_SUCCESS); 2563 } 2564 2565 /* 2566 * vm_map_submap: [ kernel use only ] 2567 * 2568 * Mark the given range as handled by a subordinate map. 2569 * 2570 * This range must have been created with vm_map_find, 2571 * and no other operations may have been performed on this 2572 * range prior to calling vm_map_submap. 2573 * 2574 * Only a limited number of operations can be performed 2575 * within this rage after calling vm_map_submap: 2576 * vm_fault 2577 * [Don't try vm_map_copy!] 2578 * 2579 * To remove a submapping, one must first remove the 2580 * range from the superior map, and then destroy the 2581 * submap (if desired). [Better yet, don't try it.] 2582 */ 2583 int 2584 vm_map_submap( 2585 vm_map_t map, 2586 vm_offset_t start, 2587 vm_offset_t end, 2588 vm_map_t submap) 2589 { 2590 vm_map_entry_t entry; 2591 int result; 2592 2593 result = KERN_INVALID_ARGUMENT; 2594 2595 vm_map_lock(submap); 2596 submap->flags |= MAP_IS_SUB_MAP; 2597 vm_map_unlock(submap); 2598 2599 vm_map_lock(map); 2600 VM_MAP_RANGE_CHECK(map, start, end); 2601 if (vm_map_lookup_entry(map, start, &entry) && entry->end >= end && 2602 (entry->eflags & MAP_ENTRY_COW) == 0 && 2603 entry->object.vm_object == NULL) { 2604 result = vm_map_clip_start(map, entry, start); 2605 if (result != KERN_SUCCESS) 2606 goto unlock; 2607 result = vm_map_clip_end(map, entry, end); 2608 if (result != KERN_SUCCESS) 2609 goto unlock; 2610 entry->object.sub_map = submap; 2611 entry->eflags |= MAP_ENTRY_IS_SUB_MAP; 2612 result = KERN_SUCCESS; 2613 } 2614 unlock: 2615 vm_map_unlock(map); 2616 2617 if (result != KERN_SUCCESS) { 2618 vm_map_lock(submap); 2619 submap->flags &= ~MAP_IS_SUB_MAP; 2620 vm_map_unlock(submap); 2621 } 2622 return (result); 2623 } 2624 2625 /* 2626 * The maximum number of pages to map if MAP_PREFAULT_PARTIAL is specified 2627 */ 2628 #define MAX_INIT_PT 96 2629 2630 /* 2631 * vm_map_pmap_enter: 2632 * 2633 * Preload the specified map's pmap with mappings to the specified 2634 * object's memory-resident pages. No further physical pages are 2635 * allocated, and no further virtual pages are retrieved from secondary 2636 * storage. If the specified flags include MAP_PREFAULT_PARTIAL, then a 2637 * limited number of page mappings are created at the low-end of the 2638 * specified address range. (For this purpose, a superpage mapping 2639 * counts as one page mapping.) Otherwise, all resident pages within 2640 * the specified address range are mapped. 2641 */ 2642 static void 2643 vm_map_pmap_enter(vm_map_t map, vm_offset_t addr, vm_prot_t prot, 2644 vm_object_t object, vm_pindex_t pindex, vm_size_t size, int flags) 2645 { 2646 vm_offset_t start; 2647 vm_page_t p, p_start; 2648 vm_pindex_t mask, psize, threshold, tmpidx; 2649 2650 if ((prot & (VM_PROT_READ | VM_PROT_EXECUTE)) == 0 || object == NULL) 2651 return; 2652 if (object->type == OBJT_DEVICE || object->type == OBJT_SG) { 2653 VM_OBJECT_WLOCK(object); 2654 if (object->type == OBJT_DEVICE || object->type == OBJT_SG) { 2655 pmap_object_init_pt(map->pmap, addr, object, pindex, 2656 size); 2657 VM_OBJECT_WUNLOCK(object); 2658 return; 2659 } 2660 VM_OBJECT_LOCK_DOWNGRADE(object); 2661 } else 2662 VM_OBJECT_RLOCK(object); 2663 2664 psize = atop(size); 2665 if (psize + pindex > object->size) { 2666 if (pindex >= object->size) { 2667 VM_OBJECT_RUNLOCK(object); 2668 return; 2669 } 2670 psize = object->size - pindex; 2671 } 2672 2673 start = 0; 2674 p_start = NULL; 2675 threshold = MAX_INIT_PT; 2676 2677 p = vm_page_find_least(object, pindex); 2678 /* 2679 * Assert: the variable p is either (1) the page with the 2680 * least pindex greater than or equal to the parameter pindex 2681 * or (2) NULL. 2682 */ 2683 for (; 2684 p != NULL && (tmpidx = p->pindex - pindex) < psize; 2685 p = TAILQ_NEXT(p, listq)) { 2686 /* 2687 * don't allow an madvise to blow away our really 2688 * free pages allocating pv entries. 2689 */ 2690 if (((flags & MAP_PREFAULT_MADVISE) != 0 && 2691 vm_page_count_severe()) || 2692 ((flags & MAP_PREFAULT_PARTIAL) != 0 && 2693 tmpidx >= threshold)) { 2694 psize = tmpidx; 2695 break; 2696 } 2697 if (vm_page_all_valid(p)) { 2698 if (p_start == NULL) { 2699 start = addr + ptoa(tmpidx); 2700 p_start = p; 2701 } 2702 /* Jump ahead if a superpage mapping is possible. */ 2703 if (p->psind > 0 && ((addr + ptoa(tmpidx)) & 2704 (pagesizes[p->psind] - 1)) == 0) { 2705 mask = atop(pagesizes[p->psind]) - 1; 2706 if (tmpidx + mask < psize && 2707 vm_page_ps_test(p, PS_ALL_VALID, NULL)) { 2708 p += mask; 2709 threshold += mask; 2710 } 2711 } 2712 } else if (p_start != NULL) { 2713 pmap_enter_object(map->pmap, start, addr + 2714 ptoa(tmpidx), p_start, prot); 2715 p_start = NULL; 2716 } 2717 } 2718 if (p_start != NULL) 2719 pmap_enter_object(map->pmap, start, addr + ptoa(psize), 2720 p_start, prot); 2721 VM_OBJECT_RUNLOCK(object); 2722 } 2723 2724 static void 2725 vm_map_protect_guard(vm_map_entry_t entry, vm_prot_t new_prot, 2726 vm_prot_t new_maxprot, int flags) 2727 { 2728 vm_prot_t old_prot; 2729 2730 MPASS((entry->eflags & MAP_ENTRY_GUARD) != 0); 2731 if ((entry->eflags & (MAP_ENTRY_STACK_GAP_UP | 2732 MAP_ENTRY_STACK_GAP_DN)) == 0) 2733 return; 2734 2735 old_prot = PROT_EXTRACT(entry->offset); 2736 if ((flags & VM_MAP_PROTECT_SET_MAXPROT) != 0) { 2737 entry->offset = PROT_MAX(new_maxprot) | 2738 (new_maxprot & old_prot); 2739 } 2740 if ((flags & VM_MAP_PROTECT_SET_PROT) != 0) { 2741 entry->offset = new_prot | PROT_MAX( 2742 PROT_MAX_EXTRACT(entry->offset)); 2743 } 2744 } 2745 2746 /* 2747 * vm_map_protect: 2748 * 2749 * Sets the protection and/or the maximum protection of the 2750 * specified address region in the target map. 2751 */ 2752 int 2753 vm_map_protect(vm_map_t map, vm_offset_t start, vm_offset_t end, 2754 vm_prot_t new_prot, vm_prot_t new_maxprot, int flags) 2755 { 2756 vm_map_entry_t entry, first_entry, in_tran, prev_entry; 2757 vm_object_t obj; 2758 struct ucred *cred; 2759 vm_offset_t orig_start; 2760 vm_prot_t check_prot, max_prot, old_prot; 2761 int rv; 2762 2763 if (start == end) 2764 return (KERN_SUCCESS); 2765 2766 if (CONTAINS_BITS(flags, VM_MAP_PROTECT_SET_PROT | 2767 VM_MAP_PROTECT_SET_MAXPROT) && 2768 !CONTAINS_BITS(new_maxprot, new_prot)) 2769 return (KERN_OUT_OF_BOUNDS); 2770 2771 orig_start = start; 2772 again: 2773 in_tran = NULL; 2774 start = orig_start; 2775 vm_map_lock(map); 2776 2777 if ((map->flags & MAP_WXORX) != 0 && 2778 (flags & VM_MAP_PROTECT_SET_PROT) != 0 && 2779 CONTAINS_BITS(new_prot, VM_PROT_WRITE | VM_PROT_EXECUTE)) { 2780 vm_map_unlock(map); 2781 return (KERN_PROTECTION_FAILURE); 2782 } 2783 2784 /* 2785 * Ensure that we are not concurrently wiring pages. vm_map_wire() may 2786 * need to fault pages into the map and will drop the map lock while 2787 * doing so, and the VM object may end up in an inconsistent state if we 2788 * update the protection on the map entry in between faults. 2789 */ 2790 vm_map_wait_busy(map); 2791 2792 VM_MAP_RANGE_CHECK(map, start, end); 2793 2794 if (!vm_map_lookup_entry(map, start, &first_entry)) 2795 first_entry = vm_map_entry_succ(first_entry); 2796 2797 if ((flags & VM_MAP_PROTECT_GROWSDOWN) != 0 && 2798 (first_entry->eflags & MAP_ENTRY_GROWS_DOWN) != 0) { 2799 /* 2800 * Handle Linux's PROT_GROWSDOWN flag. 2801 * It means that protection is applied down to the 2802 * whole stack, including the specified range of the 2803 * mapped region, and the grow down region (AKA 2804 * guard). 2805 */ 2806 while (!CONTAINS_BITS(first_entry->eflags, 2807 MAP_ENTRY_GUARD | MAP_ENTRY_STACK_GAP_DN) && 2808 first_entry != vm_map_entry_first(map)) 2809 first_entry = vm_map_entry_pred(first_entry); 2810 start = first_entry->start; 2811 } 2812 2813 /* 2814 * Make a first pass to check for protection violations. 2815 */ 2816 check_prot = 0; 2817 if ((flags & VM_MAP_PROTECT_SET_PROT) != 0) 2818 check_prot |= new_prot; 2819 if ((flags & VM_MAP_PROTECT_SET_MAXPROT) != 0) 2820 check_prot |= new_maxprot; 2821 for (entry = first_entry; entry->start < end; 2822 entry = vm_map_entry_succ(entry)) { 2823 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0) { 2824 vm_map_unlock(map); 2825 return (KERN_INVALID_ARGUMENT); 2826 } 2827 if ((entry->eflags & (MAP_ENTRY_GUARD | 2828 MAP_ENTRY_STACK_GAP_DN | MAP_ENTRY_STACK_GAP_UP)) == 2829 MAP_ENTRY_GUARD) 2830 continue; 2831 max_prot = (entry->eflags & (MAP_ENTRY_STACK_GAP_DN | 2832 MAP_ENTRY_STACK_GAP_UP)) != 0 ? 2833 PROT_MAX_EXTRACT(entry->offset) : entry->max_protection; 2834 if (!CONTAINS_BITS(max_prot, check_prot)) { 2835 vm_map_unlock(map); 2836 return (KERN_PROTECTION_FAILURE); 2837 } 2838 if ((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0) 2839 in_tran = entry; 2840 } 2841 2842 /* 2843 * Postpone the operation until all in-transition map entries have 2844 * stabilized. An in-transition entry might already have its pages 2845 * wired and wired_count incremented, but not yet have its 2846 * MAP_ENTRY_USER_WIRED flag set. In which case, we would fail to call 2847 * vm_fault_copy_entry() in the final loop below. 2848 */ 2849 if (in_tran != NULL) { 2850 in_tran->eflags |= MAP_ENTRY_NEEDS_WAKEUP; 2851 vm_map_unlock_and_wait(map, 0); 2852 goto again; 2853 } 2854 2855 /* 2856 * Before changing the protections, try to reserve swap space for any 2857 * private (i.e., copy-on-write) mappings that are transitioning from 2858 * read-only to read/write access. If a reservation fails, break out 2859 * of this loop early and let the next loop simplify the entries, since 2860 * some may now be mergeable. 2861 */ 2862 rv = vm_map_clip_start(map, first_entry, start); 2863 if (rv != KERN_SUCCESS) { 2864 vm_map_unlock(map); 2865 return (rv); 2866 } 2867 for (entry = first_entry; entry->start < end; 2868 entry = vm_map_entry_succ(entry)) { 2869 rv = vm_map_clip_end(map, entry, end); 2870 if (rv != KERN_SUCCESS) { 2871 vm_map_unlock(map); 2872 return (rv); 2873 } 2874 2875 if ((flags & VM_MAP_PROTECT_SET_PROT) == 0 || 2876 ((new_prot & ~entry->protection) & VM_PROT_WRITE) == 0 || 2877 ENTRY_CHARGED(entry) || 2878 (entry->eflags & MAP_ENTRY_GUARD) != 0) 2879 continue; 2880 2881 cred = curthread->td_ucred; 2882 obj = entry->object.vm_object; 2883 2884 if (obj == NULL || 2885 (entry->eflags & MAP_ENTRY_NEEDS_COPY) != 0) { 2886 if (!swap_reserve(entry->end - entry->start)) { 2887 rv = KERN_RESOURCE_SHORTAGE; 2888 end = entry->end; 2889 break; 2890 } 2891 crhold(cred); 2892 entry->cred = cred; 2893 continue; 2894 } 2895 2896 VM_OBJECT_WLOCK(obj); 2897 if ((obj->flags & OBJ_SWAP) == 0) { 2898 VM_OBJECT_WUNLOCK(obj); 2899 continue; 2900 } 2901 2902 /* 2903 * Charge for the whole object allocation now, since 2904 * we cannot distinguish between non-charged and 2905 * charged clipped mapping of the same object later. 2906 */ 2907 KASSERT(obj->charge == 0, 2908 ("vm_map_protect: object %p overcharged (entry %p)", 2909 obj, entry)); 2910 if (!swap_reserve(ptoa(obj->size))) { 2911 VM_OBJECT_WUNLOCK(obj); 2912 rv = KERN_RESOURCE_SHORTAGE; 2913 end = entry->end; 2914 break; 2915 } 2916 2917 crhold(cred); 2918 obj->cred = cred; 2919 obj->charge = ptoa(obj->size); 2920 VM_OBJECT_WUNLOCK(obj); 2921 } 2922 2923 /* 2924 * If enough swap space was available, go back and fix up protections. 2925 * Otherwise, just simplify entries, since some may have been modified. 2926 * [Note that clipping is not necessary the second time.] 2927 */ 2928 for (prev_entry = vm_map_entry_pred(first_entry), entry = first_entry; 2929 entry->start < end; 2930 vm_map_try_merge_entries(map, prev_entry, entry), 2931 prev_entry = entry, entry = vm_map_entry_succ(entry)) { 2932 if (rv != KERN_SUCCESS) 2933 continue; 2934 2935 if ((entry->eflags & MAP_ENTRY_GUARD) != 0) { 2936 vm_map_protect_guard(entry, new_prot, new_maxprot, 2937 flags); 2938 continue; 2939 } 2940 2941 old_prot = entry->protection; 2942 2943 if ((flags & VM_MAP_PROTECT_SET_MAXPROT) != 0) { 2944 entry->max_protection = new_maxprot; 2945 entry->protection = new_maxprot & old_prot; 2946 } 2947 if ((flags & VM_MAP_PROTECT_SET_PROT) != 0) 2948 entry->protection = new_prot; 2949 2950 /* 2951 * For user wired map entries, the normal lazy evaluation of 2952 * write access upgrades through soft page faults is 2953 * undesirable. Instead, immediately copy any pages that are 2954 * copy-on-write and enable write access in the physical map. 2955 */ 2956 if ((entry->eflags & MAP_ENTRY_USER_WIRED) != 0 && 2957 (entry->protection & VM_PROT_WRITE) != 0 && 2958 (old_prot & VM_PROT_WRITE) == 0) 2959 vm_fault_copy_entry(map, map, entry, entry, NULL); 2960 2961 /* 2962 * When restricting access, update the physical map. Worry 2963 * about copy-on-write here. 2964 */ 2965 if ((old_prot & ~entry->protection) != 0) { 2966 #define MASK(entry) (((entry)->eflags & MAP_ENTRY_COW) ? ~VM_PROT_WRITE : \ 2967 VM_PROT_ALL) 2968 pmap_protect(map->pmap, entry->start, 2969 entry->end, 2970 entry->protection & MASK(entry)); 2971 #undef MASK 2972 } 2973 } 2974 vm_map_try_merge_entries(map, prev_entry, entry); 2975 vm_map_unlock(map); 2976 return (rv); 2977 } 2978 2979 /* 2980 * vm_map_madvise: 2981 * 2982 * This routine traverses a processes map handling the madvise 2983 * system call. Advisories are classified as either those effecting 2984 * the vm_map_entry structure, or those effecting the underlying 2985 * objects. 2986 */ 2987 int 2988 vm_map_madvise( 2989 vm_map_t map, 2990 vm_offset_t start, 2991 vm_offset_t end, 2992 int behav) 2993 { 2994 vm_map_entry_t entry, prev_entry; 2995 int rv; 2996 bool modify_map; 2997 2998 /* 2999 * Some madvise calls directly modify the vm_map_entry, in which case 3000 * we need to use an exclusive lock on the map and we need to perform 3001 * various clipping operations. Otherwise we only need a read-lock 3002 * on the map. 3003 */ 3004 switch(behav) { 3005 case MADV_NORMAL: 3006 case MADV_SEQUENTIAL: 3007 case MADV_RANDOM: 3008 case MADV_NOSYNC: 3009 case MADV_AUTOSYNC: 3010 case MADV_NOCORE: 3011 case MADV_CORE: 3012 if (start == end) 3013 return (0); 3014 modify_map = true; 3015 vm_map_lock(map); 3016 break; 3017 case MADV_WILLNEED: 3018 case MADV_DONTNEED: 3019 case MADV_FREE: 3020 if (start == end) 3021 return (0); 3022 modify_map = false; 3023 vm_map_lock_read(map); 3024 break; 3025 default: 3026 return (EINVAL); 3027 } 3028 3029 /* 3030 * Locate starting entry and clip if necessary. 3031 */ 3032 VM_MAP_RANGE_CHECK(map, start, end); 3033 3034 if (modify_map) { 3035 /* 3036 * madvise behaviors that are implemented in the vm_map_entry. 3037 * 3038 * We clip the vm_map_entry so that behavioral changes are 3039 * limited to the specified address range. 3040 */ 3041 rv = vm_map_lookup_clip_start(map, start, &entry, &prev_entry); 3042 if (rv != KERN_SUCCESS) { 3043 vm_map_unlock(map); 3044 return (vm_mmap_to_errno(rv)); 3045 } 3046 3047 for (; entry->start < end; prev_entry = entry, 3048 entry = vm_map_entry_succ(entry)) { 3049 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0) 3050 continue; 3051 3052 rv = vm_map_clip_end(map, entry, end); 3053 if (rv != KERN_SUCCESS) { 3054 vm_map_unlock(map); 3055 return (vm_mmap_to_errno(rv)); 3056 } 3057 3058 switch (behav) { 3059 case MADV_NORMAL: 3060 vm_map_entry_set_behavior(entry, 3061 MAP_ENTRY_BEHAV_NORMAL); 3062 break; 3063 case MADV_SEQUENTIAL: 3064 vm_map_entry_set_behavior(entry, 3065 MAP_ENTRY_BEHAV_SEQUENTIAL); 3066 break; 3067 case MADV_RANDOM: 3068 vm_map_entry_set_behavior(entry, 3069 MAP_ENTRY_BEHAV_RANDOM); 3070 break; 3071 case MADV_NOSYNC: 3072 entry->eflags |= MAP_ENTRY_NOSYNC; 3073 break; 3074 case MADV_AUTOSYNC: 3075 entry->eflags &= ~MAP_ENTRY_NOSYNC; 3076 break; 3077 case MADV_NOCORE: 3078 entry->eflags |= MAP_ENTRY_NOCOREDUMP; 3079 break; 3080 case MADV_CORE: 3081 entry->eflags &= ~MAP_ENTRY_NOCOREDUMP; 3082 break; 3083 default: 3084 break; 3085 } 3086 vm_map_try_merge_entries(map, prev_entry, entry); 3087 } 3088 vm_map_try_merge_entries(map, prev_entry, entry); 3089 vm_map_unlock(map); 3090 } else { 3091 vm_pindex_t pstart, pend; 3092 3093 /* 3094 * madvise behaviors that are implemented in the underlying 3095 * vm_object. 3096 * 3097 * Since we don't clip the vm_map_entry, we have to clip 3098 * the vm_object pindex and count. 3099 */ 3100 if (!vm_map_lookup_entry(map, start, &entry)) 3101 entry = vm_map_entry_succ(entry); 3102 for (; entry->start < end; 3103 entry = vm_map_entry_succ(entry)) { 3104 vm_offset_t useEnd, useStart; 3105 3106 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0) 3107 continue; 3108 3109 /* 3110 * MADV_FREE would otherwise rewind time to 3111 * the creation of the shadow object. Because 3112 * we hold the VM map read-locked, neither the 3113 * entry's object nor the presence of a 3114 * backing object can change. 3115 */ 3116 if (behav == MADV_FREE && 3117 entry->object.vm_object != NULL && 3118 entry->object.vm_object->backing_object != NULL) 3119 continue; 3120 3121 pstart = OFF_TO_IDX(entry->offset); 3122 pend = pstart + atop(entry->end - entry->start); 3123 useStart = entry->start; 3124 useEnd = entry->end; 3125 3126 if (entry->start < start) { 3127 pstart += atop(start - entry->start); 3128 useStart = start; 3129 } 3130 if (entry->end > end) { 3131 pend -= atop(entry->end - end); 3132 useEnd = end; 3133 } 3134 3135 if (pstart >= pend) 3136 continue; 3137 3138 /* 3139 * Perform the pmap_advise() before clearing 3140 * PGA_REFERENCED in vm_page_advise(). Otherwise, a 3141 * concurrent pmap operation, such as pmap_remove(), 3142 * could clear a reference in the pmap and set 3143 * PGA_REFERENCED on the page before the pmap_advise() 3144 * had completed. Consequently, the page would appear 3145 * referenced based upon an old reference that 3146 * occurred before this pmap_advise() ran. 3147 */ 3148 if (behav == MADV_DONTNEED || behav == MADV_FREE) 3149 pmap_advise(map->pmap, useStart, useEnd, 3150 behav); 3151 3152 vm_object_madvise(entry->object.vm_object, pstart, 3153 pend, behav); 3154 3155 /* 3156 * Pre-populate paging structures in the 3157 * WILLNEED case. For wired entries, the 3158 * paging structures are already populated. 3159 */ 3160 if (behav == MADV_WILLNEED && 3161 entry->wired_count == 0) { 3162 vm_map_pmap_enter(map, 3163 useStart, 3164 entry->protection, 3165 entry->object.vm_object, 3166 pstart, 3167 ptoa(pend - pstart), 3168 MAP_PREFAULT_MADVISE 3169 ); 3170 } 3171 } 3172 vm_map_unlock_read(map); 3173 } 3174 return (0); 3175 } 3176 3177 /* 3178 * vm_map_inherit: 3179 * 3180 * Sets the inheritance of the specified address 3181 * range in the target map. Inheritance 3182 * affects how the map will be shared with 3183 * child maps at the time of vmspace_fork. 3184 */ 3185 int 3186 vm_map_inherit(vm_map_t map, vm_offset_t start, vm_offset_t end, 3187 vm_inherit_t new_inheritance) 3188 { 3189 vm_map_entry_t entry, lentry, prev_entry, start_entry; 3190 int rv; 3191 3192 switch (new_inheritance) { 3193 case VM_INHERIT_NONE: 3194 case VM_INHERIT_COPY: 3195 case VM_INHERIT_SHARE: 3196 case VM_INHERIT_ZERO: 3197 break; 3198 default: 3199 return (KERN_INVALID_ARGUMENT); 3200 } 3201 if (start == end) 3202 return (KERN_SUCCESS); 3203 vm_map_lock(map); 3204 VM_MAP_RANGE_CHECK(map, start, end); 3205 rv = vm_map_lookup_clip_start(map, start, &start_entry, &prev_entry); 3206 if (rv != KERN_SUCCESS) 3207 goto unlock; 3208 if (vm_map_lookup_entry(map, end - 1, &lentry)) { 3209 rv = vm_map_clip_end(map, lentry, end); 3210 if (rv != KERN_SUCCESS) 3211 goto unlock; 3212 } 3213 if (new_inheritance == VM_INHERIT_COPY) { 3214 for (entry = start_entry; entry->start < end; 3215 prev_entry = entry, entry = vm_map_entry_succ(entry)) { 3216 if ((entry->eflags & MAP_ENTRY_SPLIT_BOUNDARY_MASK) 3217 != 0) { 3218 rv = KERN_INVALID_ARGUMENT; 3219 goto unlock; 3220 } 3221 } 3222 } 3223 for (entry = start_entry; entry->start < end; prev_entry = entry, 3224 entry = vm_map_entry_succ(entry)) { 3225 KASSERT(entry->end <= end, ("non-clipped entry %p end %jx %jx", 3226 entry, (uintmax_t)entry->end, (uintmax_t)end)); 3227 if ((entry->eflags & MAP_ENTRY_GUARD) == 0 || 3228 new_inheritance != VM_INHERIT_ZERO) 3229 entry->inheritance = new_inheritance; 3230 vm_map_try_merge_entries(map, prev_entry, entry); 3231 } 3232 vm_map_try_merge_entries(map, prev_entry, entry); 3233 unlock: 3234 vm_map_unlock(map); 3235 return (rv); 3236 } 3237 3238 /* 3239 * vm_map_entry_in_transition: 3240 * 3241 * Release the map lock, and sleep until the entry is no longer in 3242 * transition. Awake and acquire the map lock. If the map changed while 3243 * another held the lock, lookup a possibly-changed entry at or after the 3244 * 'start' position of the old entry. 3245 */ 3246 static vm_map_entry_t 3247 vm_map_entry_in_transition(vm_map_t map, vm_offset_t in_start, 3248 vm_offset_t *io_end, bool holes_ok, vm_map_entry_t in_entry) 3249 { 3250 vm_map_entry_t entry; 3251 vm_offset_t start; 3252 u_int last_timestamp; 3253 3254 VM_MAP_ASSERT_LOCKED(map); 3255 KASSERT((in_entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0, 3256 ("not in-tranition map entry %p", in_entry)); 3257 /* 3258 * We have not yet clipped the entry. 3259 */ 3260 start = MAX(in_start, in_entry->start); 3261 in_entry->eflags |= MAP_ENTRY_NEEDS_WAKEUP; 3262 last_timestamp = map->timestamp; 3263 if (vm_map_unlock_and_wait(map, 0)) { 3264 /* 3265 * Allow interruption of user wiring/unwiring? 3266 */ 3267 } 3268 vm_map_lock(map); 3269 if (last_timestamp + 1 == map->timestamp) 3270 return (in_entry); 3271 3272 /* 3273 * Look again for the entry because the map was modified while it was 3274 * unlocked. Specifically, the entry may have been clipped, merged, or 3275 * deleted. 3276 */ 3277 if (!vm_map_lookup_entry(map, start, &entry)) { 3278 if (!holes_ok) { 3279 *io_end = start; 3280 return (NULL); 3281 } 3282 entry = vm_map_entry_succ(entry); 3283 } 3284 return (entry); 3285 } 3286 3287 /* 3288 * vm_map_unwire: 3289 * 3290 * Implements both kernel and user unwiring. 3291 */ 3292 int 3293 vm_map_unwire(vm_map_t map, vm_offset_t start, vm_offset_t end, 3294 int flags) 3295 { 3296 vm_map_entry_t entry, first_entry, next_entry, prev_entry; 3297 int rv; 3298 bool holes_ok, need_wakeup, user_unwire; 3299 3300 if (start == end) 3301 return (KERN_SUCCESS); 3302 holes_ok = (flags & VM_MAP_WIRE_HOLESOK) != 0; 3303 user_unwire = (flags & VM_MAP_WIRE_USER) != 0; 3304 vm_map_lock(map); 3305 VM_MAP_RANGE_CHECK(map, start, end); 3306 if (!vm_map_lookup_entry(map, start, &first_entry)) { 3307 if (holes_ok) 3308 first_entry = vm_map_entry_succ(first_entry); 3309 else { 3310 vm_map_unlock(map); 3311 return (KERN_INVALID_ADDRESS); 3312 } 3313 } 3314 rv = KERN_SUCCESS; 3315 for (entry = first_entry; entry->start < end; entry = next_entry) { 3316 if (entry->eflags & MAP_ENTRY_IN_TRANSITION) { 3317 /* 3318 * We have not yet clipped the entry. 3319 */ 3320 next_entry = vm_map_entry_in_transition(map, start, 3321 &end, holes_ok, entry); 3322 if (next_entry == NULL) { 3323 if (entry == first_entry) { 3324 vm_map_unlock(map); 3325 return (KERN_INVALID_ADDRESS); 3326 } 3327 rv = KERN_INVALID_ADDRESS; 3328 break; 3329 } 3330 first_entry = (entry == first_entry) ? 3331 next_entry : NULL; 3332 continue; 3333 } 3334 rv = vm_map_clip_start(map, entry, start); 3335 if (rv != KERN_SUCCESS) 3336 break; 3337 rv = vm_map_clip_end(map, entry, end); 3338 if (rv != KERN_SUCCESS) 3339 break; 3340 3341 /* 3342 * Mark the entry in case the map lock is released. (See 3343 * above.) 3344 */ 3345 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 && 3346 entry->wiring_thread == NULL, 3347 ("owned map entry %p", entry)); 3348 entry->eflags |= MAP_ENTRY_IN_TRANSITION; 3349 entry->wiring_thread = curthread; 3350 next_entry = vm_map_entry_succ(entry); 3351 /* 3352 * Check the map for holes in the specified region. 3353 * If holes_ok, skip this check. 3354 */ 3355 if (!holes_ok && 3356 entry->end < end && next_entry->start > entry->end) { 3357 end = entry->end; 3358 rv = KERN_INVALID_ADDRESS; 3359 break; 3360 } 3361 /* 3362 * If system unwiring, require that the entry is system wired. 3363 */ 3364 if (!user_unwire && 3365 vm_map_entry_system_wired_count(entry) == 0) { 3366 end = entry->end; 3367 rv = KERN_INVALID_ARGUMENT; 3368 break; 3369 } 3370 } 3371 need_wakeup = false; 3372 if (first_entry == NULL && 3373 !vm_map_lookup_entry(map, start, &first_entry)) { 3374 KASSERT(holes_ok, ("vm_map_unwire: lookup failed")); 3375 prev_entry = first_entry; 3376 entry = vm_map_entry_succ(first_entry); 3377 } else { 3378 prev_entry = vm_map_entry_pred(first_entry); 3379 entry = first_entry; 3380 } 3381 for (; entry->start < end; 3382 prev_entry = entry, entry = vm_map_entry_succ(entry)) { 3383 /* 3384 * If holes_ok was specified, an empty 3385 * space in the unwired region could have been mapped 3386 * while the map lock was dropped for draining 3387 * MAP_ENTRY_IN_TRANSITION. Moreover, another thread 3388 * could be simultaneously wiring this new mapping 3389 * entry. Detect these cases and skip any entries 3390 * marked as in transition by us. 3391 */ 3392 if ((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 || 3393 entry->wiring_thread != curthread) { 3394 KASSERT(holes_ok, 3395 ("vm_map_unwire: !HOLESOK and new/changed entry")); 3396 continue; 3397 } 3398 3399 if (rv == KERN_SUCCESS && (!user_unwire || 3400 (entry->eflags & MAP_ENTRY_USER_WIRED))) { 3401 if (entry->wired_count == 1) 3402 vm_map_entry_unwire(map, entry); 3403 else 3404 entry->wired_count--; 3405 if (user_unwire) 3406 entry->eflags &= ~MAP_ENTRY_USER_WIRED; 3407 } 3408 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0, 3409 ("vm_map_unwire: in-transition flag missing %p", entry)); 3410 KASSERT(entry->wiring_thread == curthread, 3411 ("vm_map_unwire: alien wire %p", entry)); 3412 entry->eflags &= ~MAP_ENTRY_IN_TRANSITION; 3413 entry->wiring_thread = NULL; 3414 if (entry->eflags & MAP_ENTRY_NEEDS_WAKEUP) { 3415 entry->eflags &= ~MAP_ENTRY_NEEDS_WAKEUP; 3416 need_wakeup = true; 3417 } 3418 vm_map_try_merge_entries(map, prev_entry, entry); 3419 } 3420 vm_map_try_merge_entries(map, prev_entry, entry); 3421 vm_map_unlock(map); 3422 if (need_wakeup) 3423 vm_map_wakeup(map); 3424 return (rv); 3425 } 3426 3427 static void 3428 vm_map_wire_user_count_sub(u_long npages) 3429 { 3430 3431 atomic_subtract_long(&vm_user_wire_count, npages); 3432 } 3433 3434 static bool 3435 vm_map_wire_user_count_add(u_long npages) 3436 { 3437 u_long wired; 3438 3439 wired = vm_user_wire_count; 3440 do { 3441 if (npages + wired > vm_page_max_user_wired) 3442 return (false); 3443 } while (!atomic_fcmpset_long(&vm_user_wire_count, &wired, 3444 npages + wired)); 3445 3446 return (true); 3447 } 3448 3449 /* 3450 * vm_map_wire_entry_failure: 3451 * 3452 * Handle a wiring failure on the given entry. 3453 * 3454 * The map should be locked. 3455 */ 3456 static void 3457 vm_map_wire_entry_failure(vm_map_t map, vm_map_entry_t entry, 3458 vm_offset_t failed_addr) 3459 { 3460 3461 VM_MAP_ASSERT_LOCKED(map); 3462 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0 && 3463 entry->wired_count == 1, 3464 ("vm_map_wire_entry_failure: entry %p isn't being wired", entry)); 3465 KASSERT(failed_addr < entry->end, 3466 ("vm_map_wire_entry_failure: entry %p was fully wired", entry)); 3467 3468 /* 3469 * If any pages at the start of this entry were successfully wired, 3470 * then unwire them. 3471 */ 3472 if (failed_addr > entry->start) { 3473 pmap_unwire(map->pmap, entry->start, failed_addr); 3474 vm_object_unwire(entry->object.vm_object, entry->offset, 3475 failed_addr - entry->start, PQ_ACTIVE); 3476 } 3477 3478 /* 3479 * Assign an out-of-range value to represent the failure to wire this 3480 * entry. 3481 */ 3482 entry->wired_count = -1; 3483 } 3484 3485 int 3486 vm_map_wire(vm_map_t map, vm_offset_t start, vm_offset_t end, int flags) 3487 { 3488 int rv; 3489 3490 vm_map_lock(map); 3491 rv = vm_map_wire_locked(map, start, end, flags); 3492 vm_map_unlock(map); 3493 return (rv); 3494 } 3495 3496 /* 3497 * vm_map_wire_locked: 3498 * 3499 * Implements both kernel and user wiring. Returns with the map locked, 3500 * the map lock may be dropped. 3501 */ 3502 int 3503 vm_map_wire_locked(vm_map_t map, vm_offset_t start, vm_offset_t end, int flags) 3504 { 3505 vm_map_entry_t entry, first_entry, next_entry, prev_entry; 3506 vm_offset_t faddr, saved_end, saved_start; 3507 u_long incr, npages; 3508 u_int bidx, last_timestamp; 3509 int rv; 3510 bool holes_ok, need_wakeup, user_wire; 3511 vm_prot_t prot; 3512 3513 VM_MAP_ASSERT_LOCKED(map); 3514 3515 if (start == end) 3516 return (KERN_SUCCESS); 3517 prot = 0; 3518 if (flags & VM_MAP_WIRE_WRITE) 3519 prot |= VM_PROT_WRITE; 3520 holes_ok = (flags & VM_MAP_WIRE_HOLESOK) != 0; 3521 user_wire = (flags & VM_MAP_WIRE_USER) != 0; 3522 VM_MAP_RANGE_CHECK(map, start, end); 3523 if (!vm_map_lookup_entry(map, start, &first_entry)) { 3524 if (holes_ok) 3525 first_entry = vm_map_entry_succ(first_entry); 3526 else 3527 return (KERN_INVALID_ADDRESS); 3528 } 3529 for (entry = first_entry; entry->start < end; entry = next_entry) { 3530 if (entry->eflags & MAP_ENTRY_IN_TRANSITION) { 3531 /* 3532 * We have not yet clipped the entry. 3533 */ 3534 next_entry = vm_map_entry_in_transition(map, start, 3535 &end, holes_ok, entry); 3536 if (next_entry == NULL) { 3537 if (entry == first_entry) 3538 return (KERN_INVALID_ADDRESS); 3539 rv = KERN_INVALID_ADDRESS; 3540 goto done; 3541 } 3542 first_entry = (entry == first_entry) ? 3543 next_entry : NULL; 3544 continue; 3545 } 3546 rv = vm_map_clip_start(map, entry, start); 3547 if (rv != KERN_SUCCESS) 3548 goto done; 3549 rv = vm_map_clip_end(map, entry, end); 3550 if (rv != KERN_SUCCESS) 3551 goto done; 3552 3553 /* 3554 * Mark the entry in case the map lock is released. (See 3555 * above.) 3556 */ 3557 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 && 3558 entry->wiring_thread == NULL, 3559 ("owned map entry %p", entry)); 3560 entry->eflags |= MAP_ENTRY_IN_TRANSITION; 3561 entry->wiring_thread = curthread; 3562 if ((entry->protection & (VM_PROT_READ | VM_PROT_EXECUTE)) == 0 3563 || (entry->protection & prot) != prot) { 3564 entry->eflags |= MAP_ENTRY_WIRE_SKIPPED; 3565 if (!holes_ok) { 3566 end = entry->end; 3567 rv = KERN_INVALID_ADDRESS; 3568 goto done; 3569 } 3570 } else if (entry->wired_count == 0) { 3571 entry->wired_count++; 3572 3573 npages = atop(entry->end - entry->start); 3574 if (user_wire && !vm_map_wire_user_count_add(npages)) { 3575 vm_map_wire_entry_failure(map, entry, 3576 entry->start); 3577 end = entry->end; 3578 rv = KERN_RESOURCE_SHORTAGE; 3579 goto done; 3580 } 3581 3582 /* 3583 * Release the map lock, relying on the in-transition 3584 * mark. Mark the map busy for fork. 3585 */ 3586 saved_start = entry->start; 3587 saved_end = entry->end; 3588 last_timestamp = map->timestamp; 3589 bidx = MAP_ENTRY_SPLIT_BOUNDARY_INDEX(entry); 3590 incr = pagesizes[bidx]; 3591 vm_map_busy(map); 3592 vm_map_unlock(map); 3593 3594 for (faddr = saved_start; faddr < saved_end; 3595 faddr += incr) { 3596 /* 3597 * Simulate a fault to get the page and enter 3598 * it into the physical map. 3599 */ 3600 rv = vm_fault(map, faddr, VM_PROT_NONE, 3601 VM_FAULT_WIRE, NULL); 3602 if (rv != KERN_SUCCESS) 3603 break; 3604 } 3605 vm_map_lock(map); 3606 vm_map_unbusy(map); 3607 if (last_timestamp + 1 != map->timestamp) { 3608 /* 3609 * Look again for the entry because the map was 3610 * modified while it was unlocked. The entry 3611 * may have been clipped, but NOT merged or 3612 * deleted. 3613 */ 3614 if (!vm_map_lookup_entry(map, saved_start, 3615 &next_entry)) 3616 KASSERT(false, 3617 ("vm_map_wire: lookup failed")); 3618 first_entry = (entry == first_entry) ? 3619 next_entry : NULL; 3620 for (entry = next_entry; entry->end < saved_end; 3621 entry = vm_map_entry_succ(entry)) { 3622 /* 3623 * In case of failure, handle entries 3624 * that were not fully wired here; 3625 * fully wired entries are handled 3626 * later. 3627 */ 3628 if (rv != KERN_SUCCESS && 3629 faddr < entry->end) 3630 vm_map_wire_entry_failure(map, 3631 entry, faddr); 3632 } 3633 } 3634 if (rv != KERN_SUCCESS) { 3635 vm_map_wire_entry_failure(map, entry, faddr); 3636 if (user_wire) 3637 vm_map_wire_user_count_sub(npages); 3638 end = entry->end; 3639 goto done; 3640 } 3641 } else if (!user_wire || 3642 (entry->eflags & MAP_ENTRY_USER_WIRED) == 0) { 3643 entry->wired_count++; 3644 } 3645 /* 3646 * Check the map for holes in the specified region. 3647 * If holes_ok was specified, skip this check. 3648 */ 3649 next_entry = vm_map_entry_succ(entry); 3650 if (!holes_ok && 3651 entry->end < end && next_entry->start > entry->end) { 3652 end = entry->end; 3653 rv = KERN_INVALID_ADDRESS; 3654 goto done; 3655 } 3656 } 3657 rv = KERN_SUCCESS; 3658 done: 3659 need_wakeup = false; 3660 if (first_entry == NULL && 3661 !vm_map_lookup_entry(map, start, &first_entry)) { 3662 KASSERT(holes_ok, ("vm_map_wire: lookup failed")); 3663 prev_entry = first_entry; 3664 entry = vm_map_entry_succ(first_entry); 3665 } else { 3666 prev_entry = vm_map_entry_pred(first_entry); 3667 entry = first_entry; 3668 } 3669 for (; entry->start < end; 3670 prev_entry = entry, entry = vm_map_entry_succ(entry)) { 3671 /* 3672 * If holes_ok was specified, an empty 3673 * space in the unwired region could have been mapped 3674 * while the map lock was dropped for faulting in the 3675 * pages or draining MAP_ENTRY_IN_TRANSITION. 3676 * Moreover, another thread could be simultaneously 3677 * wiring this new mapping entry. Detect these cases 3678 * and skip any entries marked as in transition not by us. 3679 * 3680 * Another way to get an entry not marked with 3681 * MAP_ENTRY_IN_TRANSITION is after failed clipping, 3682 * which set rv to KERN_INVALID_ARGUMENT. 3683 */ 3684 if ((entry->eflags & MAP_ENTRY_IN_TRANSITION) == 0 || 3685 entry->wiring_thread != curthread) { 3686 KASSERT(holes_ok || rv == KERN_INVALID_ARGUMENT, 3687 ("vm_map_wire: !HOLESOK and new/changed entry")); 3688 continue; 3689 } 3690 3691 if ((entry->eflags & MAP_ENTRY_WIRE_SKIPPED) != 0) { 3692 /* do nothing */ 3693 } else if (rv == KERN_SUCCESS) { 3694 if (user_wire) 3695 entry->eflags |= MAP_ENTRY_USER_WIRED; 3696 } else if (entry->wired_count == -1) { 3697 /* 3698 * Wiring failed on this entry. Thus, unwiring is 3699 * unnecessary. 3700 */ 3701 entry->wired_count = 0; 3702 } else if (!user_wire || 3703 (entry->eflags & MAP_ENTRY_USER_WIRED) == 0) { 3704 /* 3705 * Undo the wiring. Wiring succeeded on this entry 3706 * but failed on a later entry. 3707 */ 3708 if (entry->wired_count == 1) { 3709 vm_map_entry_unwire(map, entry); 3710 if (user_wire) 3711 vm_map_wire_user_count_sub( 3712 atop(entry->end - entry->start)); 3713 } else 3714 entry->wired_count--; 3715 } 3716 KASSERT((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0, 3717 ("vm_map_wire: in-transition flag missing %p", entry)); 3718 KASSERT(entry->wiring_thread == curthread, 3719 ("vm_map_wire: alien wire %p", entry)); 3720 entry->eflags &= ~(MAP_ENTRY_IN_TRANSITION | 3721 MAP_ENTRY_WIRE_SKIPPED); 3722 entry->wiring_thread = NULL; 3723 if (entry->eflags & MAP_ENTRY_NEEDS_WAKEUP) { 3724 entry->eflags &= ~MAP_ENTRY_NEEDS_WAKEUP; 3725 need_wakeup = true; 3726 } 3727 vm_map_try_merge_entries(map, prev_entry, entry); 3728 } 3729 vm_map_try_merge_entries(map, prev_entry, entry); 3730 if (need_wakeup) 3731 vm_map_wakeup(map); 3732 return (rv); 3733 } 3734 3735 /* 3736 * vm_map_sync 3737 * 3738 * Push any dirty cached pages in the address range to their pager. 3739 * If syncio is TRUE, dirty pages are written synchronously. 3740 * If invalidate is TRUE, any cached pages are freed as well. 3741 * 3742 * If the size of the region from start to end is zero, we are 3743 * supposed to flush all modified pages within the region containing 3744 * start. Unfortunately, a region can be split or coalesced with 3745 * neighboring regions, making it difficult to determine what the 3746 * original region was. Therefore, we approximate this requirement by 3747 * flushing the current region containing start. 3748 * 3749 * Returns an error if any part of the specified range is not mapped. 3750 */ 3751 int 3752 vm_map_sync( 3753 vm_map_t map, 3754 vm_offset_t start, 3755 vm_offset_t end, 3756 boolean_t syncio, 3757 boolean_t invalidate) 3758 { 3759 vm_map_entry_t entry, first_entry, next_entry; 3760 vm_size_t size; 3761 vm_object_t object; 3762 vm_ooffset_t offset; 3763 unsigned int last_timestamp; 3764 int bdry_idx; 3765 boolean_t failed; 3766 3767 vm_map_lock_read(map); 3768 VM_MAP_RANGE_CHECK(map, start, end); 3769 if (!vm_map_lookup_entry(map, start, &first_entry)) { 3770 vm_map_unlock_read(map); 3771 return (KERN_INVALID_ADDRESS); 3772 } else if (start == end) { 3773 start = first_entry->start; 3774 end = first_entry->end; 3775 } 3776 3777 /* 3778 * Make a first pass to check for user-wired memory, holes, 3779 * and partial invalidation of largepage mappings. 3780 */ 3781 for (entry = first_entry; entry->start < end; entry = next_entry) { 3782 if (invalidate) { 3783 if ((entry->eflags & MAP_ENTRY_USER_WIRED) != 0) { 3784 vm_map_unlock_read(map); 3785 return (KERN_INVALID_ARGUMENT); 3786 } 3787 bdry_idx = MAP_ENTRY_SPLIT_BOUNDARY_INDEX(entry); 3788 if (bdry_idx != 0 && 3789 ((start & (pagesizes[bdry_idx] - 1)) != 0 || 3790 (end & (pagesizes[bdry_idx] - 1)) != 0)) { 3791 vm_map_unlock_read(map); 3792 return (KERN_INVALID_ARGUMENT); 3793 } 3794 } 3795 next_entry = vm_map_entry_succ(entry); 3796 if (end > entry->end && 3797 entry->end != next_entry->start) { 3798 vm_map_unlock_read(map); 3799 return (KERN_INVALID_ADDRESS); 3800 } 3801 } 3802 3803 if (invalidate) 3804 pmap_remove(map->pmap, start, end); 3805 failed = FALSE; 3806 3807 /* 3808 * Make a second pass, cleaning/uncaching pages from the indicated 3809 * objects as we go. 3810 */ 3811 for (entry = first_entry; entry->start < end;) { 3812 offset = entry->offset + (start - entry->start); 3813 size = (end <= entry->end ? end : entry->end) - start; 3814 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0) { 3815 vm_map_t smap; 3816 vm_map_entry_t tentry; 3817 vm_size_t tsize; 3818 3819 smap = entry->object.sub_map; 3820 vm_map_lock_read(smap); 3821 (void) vm_map_lookup_entry(smap, offset, &tentry); 3822 tsize = tentry->end - offset; 3823 if (tsize < size) 3824 size = tsize; 3825 object = tentry->object.vm_object; 3826 offset = tentry->offset + (offset - tentry->start); 3827 vm_map_unlock_read(smap); 3828 } else { 3829 object = entry->object.vm_object; 3830 } 3831 vm_object_reference(object); 3832 last_timestamp = map->timestamp; 3833 vm_map_unlock_read(map); 3834 if (!vm_object_sync(object, offset, size, syncio, invalidate)) 3835 failed = TRUE; 3836 start += size; 3837 vm_object_deallocate(object); 3838 vm_map_lock_read(map); 3839 if (last_timestamp == map->timestamp || 3840 !vm_map_lookup_entry(map, start, &entry)) 3841 entry = vm_map_entry_succ(entry); 3842 } 3843 3844 vm_map_unlock_read(map); 3845 return (failed ? KERN_FAILURE : KERN_SUCCESS); 3846 } 3847 3848 /* 3849 * vm_map_entry_unwire: [ internal use only ] 3850 * 3851 * Make the region specified by this entry pageable. 3852 * 3853 * The map in question should be locked. 3854 * [This is the reason for this routine's existence.] 3855 */ 3856 static void 3857 vm_map_entry_unwire(vm_map_t map, vm_map_entry_t entry) 3858 { 3859 vm_size_t size; 3860 3861 VM_MAP_ASSERT_LOCKED(map); 3862 KASSERT(entry->wired_count > 0, 3863 ("vm_map_entry_unwire: entry %p isn't wired", entry)); 3864 3865 size = entry->end - entry->start; 3866 if ((entry->eflags & MAP_ENTRY_USER_WIRED) != 0) 3867 vm_map_wire_user_count_sub(atop(size)); 3868 pmap_unwire(map->pmap, entry->start, entry->end); 3869 vm_object_unwire(entry->object.vm_object, entry->offset, size, 3870 PQ_ACTIVE); 3871 entry->wired_count = 0; 3872 } 3873 3874 static void 3875 vm_map_entry_deallocate(vm_map_entry_t entry, boolean_t system_map) 3876 { 3877 3878 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0) 3879 vm_object_deallocate(entry->object.vm_object); 3880 uma_zfree(system_map ? kmapentzone : mapentzone, entry); 3881 } 3882 3883 /* 3884 * vm_map_entry_delete: [ internal use only ] 3885 * 3886 * Deallocate the given entry from the target map. 3887 */ 3888 static void 3889 vm_map_entry_delete(vm_map_t map, vm_map_entry_t entry) 3890 { 3891 vm_object_t object; 3892 vm_pindex_t offidxstart, offidxend, size1; 3893 vm_size_t size; 3894 3895 vm_map_entry_unlink(map, entry, UNLINK_MERGE_NONE); 3896 object = entry->object.vm_object; 3897 3898 if ((entry->eflags & MAP_ENTRY_GUARD) != 0) { 3899 MPASS(entry->cred == NULL); 3900 MPASS((entry->eflags & MAP_ENTRY_IS_SUB_MAP) == 0); 3901 MPASS(object == NULL); 3902 vm_map_entry_deallocate(entry, map->system_map); 3903 return; 3904 } 3905 3906 size = entry->end - entry->start; 3907 map->size -= size; 3908 3909 if (entry->cred != NULL) { 3910 swap_release_by_cred(size, entry->cred); 3911 crfree(entry->cred); 3912 } 3913 3914 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0 || object == NULL) { 3915 entry->object.vm_object = NULL; 3916 } else if ((object->flags & OBJ_ANON) != 0 || 3917 object == kernel_object) { 3918 KASSERT(entry->cred == NULL || object->cred == NULL || 3919 (entry->eflags & MAP_ENTRY_NEEDS_COPY), 3920 ("OVERCOMMIT vm_map_entry_delete: both cred %p", entry)); 3921 offidxstart = OFF_TO_IDX(entry->offset); 3922 offidxend = offidxstart + atop(size); 3923 VM_OBJECT_WLOCK(object); 3924 if (object->ref_count != 1 && 3925 ((object->flags & OBJ_ONEMAPPING) != 0 || 3926 object == kernel_object)) { 3927 vm_object_collapse(object); 3928 3929 /* 3930 * The option OBJPR_NOTMAPPED can be passed here 3931 * because vm_map_delete() already performed 3932 * pmap_remove() on the only mapping to this range 3933 * of pages. 3934 */ 3935 vm_object_page_remove(object, offidxstart, offidxend, 3936 OBJPR_NOTMAPPED); 3937 if (offidxend >= object->size && 3938 offidxstart < object->size) { 3939 size1 = object->size; 3940 object->size = offidxstart; 3941 if (object->cred != NULL) { 3942 size1 -= object->size; 3943 KASSERT(object->charge >= ptoa(size1), 3944 ("object %p charge < 0", object)); 3945 swap_release_by_cred(ptoa(size1), 3946 object->cred); 3947 object->charge -= ptoa(size1); 3948 } 3949 } 3950 } 3951 VM_OBJECT_WUNLOCK(object); 3952 } 3953 if (map->system_map) 3954 vm_map_entry_deallocate(entry, TRUE); 3955 else { 3956 entry->defer_next = curthread->td_map_def_user; 3957 curthread->td_map_def_user = entry; 3958 } 3959 } 3960 3961 /* 3962 * vm_map_delete: [ internal use only ] 3963 * 3964 * Deallocates the given address range from the target 3965 * map. 3966 */ 3967 int 3968 vm_map_delete(vm_map_t map, vm_offset_t start, vm_offset_t end) 3969 { 3970 vm_map_entry_t entry, next_entry, scratch_entry; 3971 int rv; 3972 3973 VM_MAP_ASSERT_LOCKED(map); 3974 3975 if (start == end) 3976 return (KERN_SUCCESS); 3977 3978 /* 3979 * Find the start of the region, and clip it. 3980 * Step through all entries in this region. 3981 */ 3982 rv = vm_map_lookup_clip_start(map, start, &entry, &scratch_entry); 3983 if (rv != KERN_SUCCESS) 3984 return (rv); 3985 for (; entry->start < end; entry = next_entry) { 3986 /* 3987 * Wait for wiring or unwiring of an entry to complete. 3988 * Also wait for any system wirings to disappear on 3989 * user maps. 3990 */ 3991 if ((entry->eflags & MAP_ENTRY_IN_TRANSITION) != 0 || 3992 (vm_map_pmap(map) != kernel_pmap && 3993 vm_map_entry_system_wired_count(entry) != 0)) { 3994 unsigned int last_timestamp; 3995 vm_offset_t saved_start; 3996 3997 saved_start = entry->start; 3998 entry->eflags |= MAP_ENTRY_NEEDS_WAKEUP; 3999 last_timestamp = map->timestamp; 4000 (void) vm_map_unlock_and_wait(map, 0); 4001 vm_map_lock(map); 4002 if (last_timestamp + 1 != map->timestamp) { 4003 /* 4004 * Look again for the entry because the map was 4005 * modified while it was unlocked. 4006 * Specifically, the entry may have been 4007 * clipped, merged, or deleted. 4008 */ 4009 rv = vm_map_lookup_clip_start(map, saved_start, 4010 &next_entry, &scratch_entry); 4011 if (rv != KERN_SUCCESS) 4012 break; 4013 } else 4014 next_entry = entry; 4015 continue; 4016 } 4017 4018 /* XXXKIB or delete to the upper superpage boundary ? */ 4019 rv = vm_map_clip_end(map, entry, end); 4020 if (rv != KERN_SUCCESS) 4021 break; 4022 next_entry = vm_map_entry_succ(entry); 4023 4024 /* 4025 * Unwire before removing addresses from the pmap; otherwise, 4026 * unwiring will put the entries back in the pmap. 4027 */ 4028 if (entry->wired_count != 0) 4029 vm_map_entry_unwire(map, entry); 4030 4031 /* 4032 * Remove mappings for the pages, but only if the 4033 * mappings could exist. For instance, it does not 4034 * make sense to call pmap_remove() for guard entries. 4035 */ 4036 if ((entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0 || 4037 entry->object.vm_object != NULL) 4038 pmap_map_delete(map->pmap, entry->start, entry->end); 4039 4040 if (entry->end == map->anon_loc) 4041 map->anon_loc = entry->start; 4042 4043 /* 4044 * Delete the entry only after removing all pmap 4045 * entries pointing to its pages. (Otherwise, its 4046 * page frames may be reallocated, and any modify bits 4047 * will be set in the wrong object!) 4048 */ 4049 vm_map_entry_delete(map, entry); 4050 } 4051 return (rv); 4052 } 4053 4054 /* 4055 * vm_map_remove: 4056 * 4057 * Remove the given address range from the target map. 4058 * This is the exported form of vm_map_delete. 4059 */ 4060 int 4061 vm_map_remove(vm_map_t map, vm_offset_t start, vm_offset_t end) 4062 { 4063 int result; 4064 4065 vm_map_lock(map); 4066 VM_MAP_RANGE_CHECK(map, start, end); 4067 result = vm_map_delete(map, start, end); 4068 vm_map_unlock(map); 4069 return (result); 4070 } 4071 4072 /* 4073 * vm_map_check_protection: 4074 * 4075 * Assert that the target map allows the specified privilege on the 4076 * entire address region given. The entire region must be allocated. 4077 * 4078 * WARNING! This code does not and should not check whether the 4079 * contents of the region is accessible. For example a smaller file 4080 * might be mapped into a larger address space. 4081 * 4082 * NOTE! This code is also called by munmap(). 4083 * 4084 * The map must be locked. A read lock is sufficient. 4085 */ 4086 boolean_t 4087 vm_map_check_protection(vm_map_t map, vm_offset_t start, vm_offset_t end, 4088 vm_prot_t protection) 4089 { 4090 vm_map_entry_t entry; 4091 vm_map_entry_t tmp_entry; 4092 4093 if (!vm_map_lookup_entry(map, start, &tmp_entry)) 4094 return (FALSE); 4095 entry = tmp_entry; 4096 4097 while (start < end) { 4098 /* 4099 * No holes allowed! 4100 */ 4101 if (start < entry->start) 4102 return (FALSE); 4103 /* 4104 * Check protection associated with entry. 4105 */ 4106 if ((entry->protection & protection) != protection) 4107 return (FALSE); 4108 /* go to next entry */ 4109 start = entry->end; 4110 entry = vm_map_entry_succ(entry); 4111 } 4112 return (TRUE); 4113 } 4114 4115 /* 4116 * 4117 * vm_map_copy_swap_object: 4118 * 4119 * Copies a swap-backed object from an existing map entry to a 4120 * new one. Carries forward the swap charge. May change the 4121 * src object on return. 4122 */ 4123 static void 4124 vm_map_copy_swap_object(vm_map_entry_t src_entry, vm_map_entry_t dst_entry, 4125 vm_offset_t size, vm_ooffset_t *fork_charge) 4126 { 4127 vm_object_t src_object; 4128 struct ucred *cred; 4129 int charged; 4130 4131 src_object = src_entry->object.vm_object; 4132 charged = ENTRY_CHARGED(src_entry); 4133 if ((src_object->flags & OBJ_ANON) != 0) { 4134 VM_OBJECT_WLOCK(src_object); 4135 vm_object_collapse(src_object); 4136 if ((src_object->flags & OBJ_ONEMAPPING) != 0) { 4137 vm_object_split(src_entry); 4138 src_object = src_entry->object.vm_object; 4139 } 4140 vm_object_reference_locked(src_object); 4141 vm_object_clear_flag(src_object, OBJ_ONEMAPPING); 4142 VM_OBJECT_WUNLOCK(src_object); 4143 } else 4144 vm_object_reference(src_object); 4145 if (src_entry->cred != NULL && 4146 !(src_entry->eflags & MAP_ENTRY_NEEDS_COPY)) { 4147 KASSERT(src_object->cred == NULL, 4148 ("OVERCOMMIT: vm_map_copy_anon_entry: cred %p", 4149 src_object)); 4150 src_object->cred = src_entry->cred; 4151 src_object->charge = size; 4152 } 4153 dst_entry->object.vm_object = src_object; 4154 if (charged) { 4155 cred = curthread->td_ucred; 4156 crhold(cred); 4157 dst_entry->cred = cred; 4158 *fork_charge += size; 4159 if (!(src_entry->eflags & MAP_ENTRY_NEEDS_COPY)) { 4160 crhold(cred); 4161 src_entry->cred = cred; 4162 *fork_charge += size; 4163 } 4164 } 4165 } 4166 4167 /* 4168 * vm_map_copy_entry: 4169 * 4170 * Copies the contents of the source entry to the destination 4171 * entry. The entries *must* be aligned properly. 4172 */ 4173 static void 4174 vm_map_copy_entry( 4175 vm_map_t src_map, 4176 vm_map_t dst_map, 4177 vm_map_entry_t src_entry, 4178 vm_map_entry_t dst_entry, 4179 vm_ooffset_t *fork_charge) 4180 { 4181 vm_object_t src_object; 4182 vm_map_entry_t fake_entry; 4183 vm_offset_t size; 4184 4185 VM_MAP_ASSERT_LOCKED(dst_map); 4186 4187 if ((dst_entry->eflags|src_entry->eflags) & MAP_ENTRY_IS_SUB_MAP) 4188 return; 4189 4190 if (src_entry->wired_count == 0 || 4191 (src_entry->protection & VM_PROT_WRITE) == 0) { 4192 /* 4193 * If the source entry is marked needs_copy, it is already 4194 * write-protected. 4195 */ 4196 if ((src_entry->eflags & MAP_ENTRY_NEEDS_COPY) == 0 && 4197 (src_entry->protection & VM_PROT_WRITE) != 0) { 4198 pmap_protect(src_map->pmap, 4199 src_entry->start, 4200 src_entry->end, 4201 src_entry->protection & ~VM_PROT_WRITE); 4202 } 4203 4204 /* 4205 * Make a copy of the object. 4206 */ 4207 size = src_entry->end - src_entry->start; 4208 if ((src_object = src_entry->object.vm_object) != NULL) { 4209 if ((src_object->flags & OBJ_SWAP) != 0) { 4210 vm_map_copy_swap_object(src_entry, dst_entry, 4211 size, fork_charge); 4212 /* May have split/collapsed, reload obj. */ 4213 src_object = src_entry->object.vm_object; 4214 } else { 4215 vm_object_reference(src_object); 4216 dst_entry->object.vm_object = src_object; 4217 } 4218 src_entry->eflags |= MAP_ENTRY_COW | 4219 MAP_ENTRY_NEEDS_COPY; 4220 dst_entry->eflags |= MAP_ENTRY_COW | 4221 MAP_ENTRY_NEEDS_COPY; 4222 dst_entry->offset = src_entry->offset; 4223 if (src_entry->eflags & MAP_ENTRY_WRITECNT) { 4224 /* 4225 * MAP_ENTRY_WRITECNT cannot 4226 * indicate write reference from 4227 * src_entry, since the entry is 4228 * marked as needs copy. Allocate a 4229 * fake entry that is used to 4230 * decrement object->un_pager writecount 4231 * at the appropriate time. Attach 4232 * fake_entry to the deferred list. 4233 */ 4234 fake_entry = vm_map_entry_create(dst_map); 4235 fake_entry->eflags = MAP_ENTRY_WRITECNT; 4236 src_entry->eflags &= ~MAP_ENTRY_WRITECNT; 4237 vm_object_reference(src_object); 4238 fake_entry->object.vm_object = src_object; 4239 fake_entry->start = src_entry->start; 4240 fake_entry->end = src_entry->end; 4241 fake_entry->defer_next = 4242 curthread->td_map_def_user; 4243 curthread->td_map_def_user = fake_entry; 4244 } 4245 4246 pmap_copy(dst_map->pmap, src_map->pmap, 4247 dst_entry->start, dst_entry->end - dst_entry->start, 4248 src_entry->start); 4249 } else { 4250 dst_entry->object.vm_object = NULL; 4251 if ((dst_entry->eflags & MAP_ENTRY_GUARD) == 0) 4252 dst_entry->offset = 0; 4253 if (src_entry->cred != NULL) { 4254 dst_entry->cred = curthread->td_ucred; 4255 crhold(dst_entry->cred); 4256 *fork_charge += size; 4257 } 4258 } 4259 } else { 4260 /* 4261 * We don't want to make writeable wired pages copy-on-write. 4262 * Immediately copy these pages into the new map by simulating 4263 * page faults. The new pages are pageable. 4264 */ 4265 vm_fault_copy_entry(dst_map, src_map, dst_entry, src_entry, 4266 fork_charge); 4267 } 4268 } 4269 4270 /* 4271 * vmspace_map_entry_forked: 4272 * Update the newly-forked vmspace each time a map entry is inherited 4273 * or copied. The values for vm_dsize and vm_tsize are approximate 4274 * (and mostly-obsolete ideas in the face of mmap(2) et al.) 4275 */ 4276 static void 4277 vmspace_map_entry_forked(const struct vmspace *vm1, struct vmspace *vm2, 4278 vm_map_entry_t entry) 4279 { 4280 vm_size_t entrysize; 4281 vm_offset_t newend; 4282 4283 if ((entry->eflags & MAP_ENTRY_GUARD) != 0) 4284 return; 4285 entrysize = entry->end - entry->start; 4286 vm2->vm_map.size += entrysize; 4287 if (entry->eflags & (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP)) { 4288 vm2->vm_ssize += btoc(entrysize); 4289 } else if (entry->start >= (vm_offset_t)vm1->vm_daddr && 4290 entry->start < (vm_offset_t)vm1->vm_daddr + ctob(vm1->vm_dsize)) { 4291 newend = MIN(entry->end, 4292 (vm_offset_t)vm1->vm_daddr + ctob(vm1->vm_dsize)); 4293 vm2->vm_dsize += btoc(newend - entry->start); 4294 } else if (entry->start >= (vm_offset_t)vm1->vm_taddr && 4295 entry->start < (vm_offset_t)vm1->vm_taddr + ctob(vm1->vm_tsize)) { 4296 newend = MIN(entry->end, 4297 (vm_offset_t)vm1->vm_taddr + ctob(vm1->vm_tsize)); 4298 vm2->vm_tsize += btoc(newend - entry->start); 4299 } 4300 } 4301 4302 /* 4303 * vmspace_fork: 4304 * Create a new process vmspace structure and vm_map 4305 * based on those of an existing process. The new map 4306 * is based on the old map, according to the inheritance 4307 * values on the regions in that map. 4308 * 4309 * XXX It might be worth coalescing the entries added to the new vmspace. 4310 * 4311 * The source map must not be locked. 4312 */ 4313 struct vmspace * 4314 vmspace_fork(struct vmspace *vm1, vm_ooffset_t *fork_charge) 4315 { 4316 struct vmspace *vm2; 4317 vm_map_t new_map, old_map; 4318 vm_map_entry_t new_entry, old_entry; 4319 vm_object_t object; 4320 int error, locked __diagused; 4321 vm_inherit_t inh; 4322 4323 old_map = &vm1->vm_map; 4324 /* Copy immutable fields of vm1 to vm2. */ 4325 vm2 = vmspace_alloc(vm_map_min(old_map), vm_map_max(old_map), 4326 pmap_pinit); 4327 if (vm2 == NULL) 4328 return (NULL); 4329 4330 vm2->vm_taddr = vm1->vm_taddr; 4331 vm2->vm_daddr = vm1->vm_daddr; 4332 vm2->vm_maxsaddr = vm1->vm_maxsaddr; 4333 vm2->vm_stacktop = vm1->vm_stacktop; 4334 vm2->vm_shp_base = vm1->vm_shp_base; 4335 vm_map_lock(old_map); 4336 if (old_map->busy) 4337 vm_map_wait_busy(old_map); 4338 new_map = &vm2->vm_map; 4339 locked = vm_map_trylock(new_map); /* trylock to silence WITNESS */ 4340 KASSERT(locked, ("vmspace_fork: lock failed")); 4341 4342 error = pmap_vmspace_copy(new_map->pmap, old_map->pmap); 4343 if (error != 0) { 4344 sx_xunlock(&old_map->lock); 4345 sx_xunlock(&new_map->lock); 4346 vm_map_process_deferred(); 4347 vmspace_free(vm2); 4348 return (NULL); 4349 } 4350 4351 new_map->anon_loc = old_map->anon_loc; 4352 new_map->flags |= old_map->flags & (MAP_ASLR | MAP_ASLR_IGNSTART | 4353 MAP_ASLR_STACK | MAP_WXORX); 4354 4355 VM_MAP_ENTRY_FOREACH(old_entry, old_map) { 4356 if ((old_entry->eflags & MAP_ENTRY_IS_SUB_MAP) != 0) 4357 panic("vm_map_fork: encountered a submap"); 4358 4359 inh = old_entry->inheritance; 4360 if ((old_entry->eflags & MAP_ENTRY_GUARD) != 0 && 4361 inh != VM_INHERIT_NONE) 4362 inh = VM_INHERIT_COPY; 4363 4364 switch (inh) { 4365 case VM_INHERIT_NONE: 4366 break; 4367 4368 case VM_INHERIT_SHARE: 4369 /* 4370 * Clone the entry, creating the shared object if 4371 * necessary. 4372 */ 4373 object = old_entry->object.vm_object; 4374 if (object == NULL) { 4375 vm_map_entry_back(old_entry); 4376 object = old_entry->object.vm_object; 4377 } 4378 4379 /* 4380 * Add the reference before calling vm_object_shadow 4381 * to insure that a shadow object is created. 4382 */ 4383 vm_object_reference(object); 4384 if (old_entry->eflags & MAP_ENTRY_NEEDS_COPY) { 4385 vm_object_shadow(&old_entry->object.vm_object, 4386 &old_entry->offset, 4387 old_entry->end - old_entry->start, 4388 old_entry->cred, 4389 /* Transfer the second reference too. */ 4390 true); 4391 old_entry->eflags &= ~MAP_ENTRY_NEEDS_COPY; 4392 old_entry->cred = NULL; 4393 4394 /* 4395 * As in vm_map_merged_neighbor_dispose(), 4396 * the vnode lock will not be acquired in 4397 * this call to vm_object_deallocate(). 4398 */ 4399 vm_object_deallocate(object); 4400 object = old_entry->object.vm_object; 4401 } else { 4402 VM_OBJECT_WLOCK(object); 4403 vm_object_clear_flag(object, OBJ_ONEMAPPING); 4404 if (old_entry->cred != NULL) { 4405 KASSERT(object->cred == NULL, 4406 ("vmspace_fork both cred")); 4407 object->cred = old_entry->cred; 4408 object->charge = old_entry->end - 4409 old_entry->start; 4410 old_entry->cred = NULL; 4411 } 4412 4413 /* 4414 * Assert the correct state of the vnode 4415 * v_writecount while the object is locked, to 4416 * not relock it later for the assertion 4417 * correctness. 4418 */ 4419 if (old_entry->eflags & MAP_ENTRY_WRITECNT && 4420 object->type == OBJT_VNODE) { 4421 KASSERT(((struct vnode *)object-> 4422 handle)->v_writecount > 0, 4423 ("vmspace_fork: v_writecount %p", 4424 object)); 4425 KASSERT(object->un_pager.vnp. 4426 writemappings > 0, 4427 ("vmspace_fork: vnp.writecount %p", 4428 object)); 4429 } 4430 VM_OBJECT_WUNLOCK(object); 4431 } 4432 4433 /* 4434 * Clone the entry, referencing the shared object. 4435 */ 4436 new_entry = vm_map_entry_create(new_map); 4437 *new_entry = *old_entry; 4438 new_entry->eflags &= ~(MAP_ENTRY_USER_WIRED | 4439 MAP_ENTRY_IN_TRANSITION); 4440 new_entry->wiring_thread = NULL; 4441 new_entry->wired_count = 0; 4442 if (new_entry->eflags & MAP_ENTRY_WRITECNT) { 4443 vm_pager_update_writecount(object, 4444 new_entry->start, new_entry->end); 4445 } 4446 vm_map_entry_set_vnode_text(new_entry, true); 4447 4448 /* 4449 * Insert the entry into the new map -- we know we're 4450 * inserting at the end of the new map. 4451 */ 4452 vm_map_entry_link(new_map, new_entry); 4453 vmspace_map_entry_forked(vm1, vm2, new_entry); 4454 4455 /* 4456 * Update the physical map 4457 */ 4458 pmap_copy(new_map->pmap, old_map->pmap, 4459 new_entry->start, 4460 (old_entry->end - old_entry->start), 4461 old_entry->start); 4462 break; 4463 4464 case VM_INHERIT_COPY: 4465 /* 4466 * Clone the entry and link into the map. 4467 */ 4468 new_entry = vm_map_entry_create(new_map); 4469 *new_entry = *old_entry; 4470 /* 4471 * Copied entry is COW over the old object. 4472 */ 4473 new_entry->eflags &= ~(MAP_ENTRY_USER_WIRED | 4474 MAP_ENTRY_IN_TRANSITION | MAP_ENTRY_WRITECNT); 4475 new_entry->wiring_thread = NULL; 4476 new_entry->wired_count = 0; 4477 new_entry->object.vm_object = NULL; 4478 new_entry->cred = NULL; 4479 vm_map_entry_link(new_map, new_entry); 4480 vmspace_map_entry_forked(vm1, vm2, new_entry); 4481 vm_map_copy_entry(old_map, new_map, old_entry, 4482 new_entry, fork_charge); 4483 vm_map_entry_set_vnode_text(new_entry, true); 4484 break; 4485 4486 case VM_INHERIT_ZERO: 4487 /* 4488 * Create a new anonymous mapping entry modelled from 4489 * the old one. 4490 */ 4491 new_entry = vm_map_entry_create(new_map); 4492 memset(new_entry, 0, sizeof(*new_entry)); 4493 4494 new_entry->start = old_entry->start; 4495 new_entry->end = old_entry->end; 4496 new_entry->eflags = old_entry->eflags & 4497 ~(MAP_ENTRY_USER_WIRED | MAP_ENTRY_IN_TRANSITION | 4498 MAP_ENTRY_WRITECNT | MAP_ENTRY_VN_EXEC | 4499 MAP_ENTRY_SPLIT_BOUNDARY_MASK); 4500 new_entry->protection = old_entry->protection; 4501 new_entry->max_protection = old_entry->max_protection; 4502 new_entry->inheritance = VM_INHERIT_ZERO; 4503 4504 vm_map_entry_link(new_map, new_entry); 4505 vmspace_map_entry_forked(vm1, vm2, new_entry); 4506 4507 new_entry->cred = curthread->td_ucred; 4508 crhold(new_entry->cred); 4509 *fork_charge += (new_entry->end - new_entry->start); 4510 4511 break; 4512 } 4513 } 4514 /* 4515 * Use inlined vm_map_unlock() to postpone handling the deferred 4516 * map entries, which cannot be done until both old_map and 4517 * new_map locks are released. 4518 */ 4519 sx_xunlock(&old_map->lock); 4520 sx_xunlock(&new_map->lock); 4521 vm_map_process_deferred(); 4522 4523 return (vm2); 4524 } 4525 4526 /* 4527 * Create a process's stack for exec_new_vmspace(). This function is never 4528 * asked to wire the newly created stack. 4529 */ 4530 int 4531 vm_map_stack(vm_map_t map, vm_offset_t addrbos, vm_size_t max_ssize, 4532 vm_prot_t prot, vm_prot_t max, int cow) 4533 { 4534 vm_size_t growsize, init_ssize; 4535 rlim_t vmemlim; 4536 int rv; 4537 4538 MPASS((map->flags & MAP_WIREFUTURE) == 0); 4539 growsize = sgrowsiz; 4540 init_ssize = (max_ssize < growsize) ? max_ssize : growsize; 4541 vm_map_lock(map); 4542 vmemlim = lim_cur(curthread, RLIMIT_VMEM); 4543 /* If we would blow our VMEM resource limit, no go */ 4544 if (map->size + init_ssize > vmemlim) { 4545 rv = KERN_NO_SPACE; 4546 goto out; 4547 } 4548 rv = vm_map_stack_locked(map, addrbos, max_ssize, growsize, prot, 4549 max, cow); 4550 out: 4551 vm_map_unlock(map); 4552 return (rv); 4553 } 4554 4555 static int stack_guard_page = 1; 4556 SYSCTL_INT(_security_bsd, OID_AUTO, stack_guard_page, CTLFLAG_RWTUN, 4557 &stack_guard_page, 0, 4558 "Specifies the number of guard pages for a stack that grows"); 4559 4560 static int 4561 vm_map_stack_locked(vm_map_t map, vm_offset_t addrbos, vm_size_t max_ssize, 4562 vm_size_t growsize, vm_prot_t prot, vm_prot_t max, int cow) 4563 { 4564 vm_map_entry_t gap_entry, new_entry, prev_entry; 4565 vm_offset_t bot, gap_bot, gap_top, top; 4566 vm_size_t init_ssize, sgp; 4567 int orient, rv; 4568 4569 /* 4570 * The stack orientation is piggybacked with the cow argument. 4571 * Extract it into orient and mask the cow argument so that we 4572 * don't pass it around further. 4573 */ 4574 orient = cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP); 4575 KASSERT(orient != 0, ("No stack grow direction")); 4576 KASSERT(orient != (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP), 4577 ("bi-dir stack")); 4578 4579 if (max_ssize == 0 || 4580 !vm_map_range_valid(map, addrbos, addrbos + max_ssize)) 4581 return (KERN_INVALID_ADDRESS); 4582 sgp = ((curproc->p_flag2 & P2_STKGAP_DISABLE) != 0 || 4583 (curproc->p_fctl0 & NT_FREEBSD_FCTL_STKGAP_DISABLE) != 0) ? 0 : 4584 (vm_size_t)stack_guard_page * PAGE_SIZE; 4585 if (sgp >= max_ssize) 4586 return (KERN_INVALID_ARGUMENT); 4587 4588 init_ssize = growsize; 4589 if (max_ssize < init_ssize + sgp) 4590 init_ssize = max_ssize - sgp; 4591 4592 /* If addr is already mapped, no go */ 4593 if (vm_map_lookup_entry(map, addrbos, &prev_entry)) 4594 return (KERN_NO_SPACE); 4595 4596 /* 4597 * If we can't accommodate max_ssize in the current mapping, no go. 4598 */ 4599 if (vm_map_entry_succ(prev_entry)->start < addrbos + max_ssize) 4600 return (KERN_NO_SPACE); 4601 4602 /* 4603 * We initially map a stack of only init_ssize. We will grow as 4604 * needed later. Depending on the orientation of the stack (i.e. 4605 * the grow direction) we either map at the top of the range, the 4606 * bottom of the range or in the middle. 4607 * 4608 * Note: we would normally expect prot and max to be VM_PROT_ALL, 4609 * and cow to be 0. Possibly we should eliminate these as input 4610 * parameters, and just pass these values here in the insert call. 4611 */ 4612 if (orient == MAP_STACK_GROWS_DOWN) { 4613 bot = addrbos + max_ssize - init_ssize; 4614 top = bot + init_ssize; 4615 gap_bot = addrbos; 4616 gap_top = bot; 4617 } else /* if (orient == MAP_STACK_GROWS_UP) */ { 4618 bot = addrbos; 4619 top = bot + init_ssize; 4620 gap_bot = top; 4621 gap_top = addrbos + max_ssize; 4622 } 4623 rv = vm_map_insert1(map, NULL, 0, bot, top, prot, max, cow, 4624 &new_entry); 4625 if (rv != KERN_SUCCESS) 4626 return (rv); 4627 KASSERT(new_entry->end == top || new_entry->start == bot, 4628 ("Bad entry start/end for new stack entry")); 4629 KASSERT((orient & MAP_STACK_GROWS_DOWN) == 0 || 4630 (new_entry->eflags & MAP_ENTRY_GROWS_DOWN) != 0, 4631 ("new entry lacks MAP_ENTRY_GROWS_DOWN")); 4632 KASSERT((orient & MAP_STACK_GROWS_UP) == 0 || 4633 (new_entry->eflags & MAP_ENTRY_GROWS_UP) != 0, 4634 ("new entry lacks MAP_ENTRY_GROWS_UP")); 4635 if (gap_bot == gap_top) 4636 return (KERN_SUCCESS); 4637 rv = vm_map_insert1(map, NULL, 0, gap_bot, gap_top, VM_PROT_NONE, 4638 VM_PROT_NONE, MAP_CREATE_GUARD | (orient == MAP_STACK_GROWS_DOWN ? 4639 MAP_CREATE_STACK_GAP_DN : MAP_CREATE_STACK_GAP_UP), &gap_entry); 4640 if (rv == KERN_SUCCESS) { 4641 KASSERT((gap_entry->eflags & MAP_ENTRY_GUARD) != 0, 4642 ("entry %p not gap %#x", gap_entry, gap_entry->eflags)); 4643 KASSERT((gap_entry->eflags & (MAP_ENTRY_STACK_GAP_DN | 4644 MAP_ENTRY_STACK_GAP_UP)) != 0, 4645 ("entry %p not stack gap %#x", gap_entry, 4646 gap_entry->eflags)); 4647 4648 /* 4649 * Gap can never successfully handle a fault, so 4650 * read-ahead logic is never used for it. Re-use 4651 * next_read of the gap entry to store 4652 * stack_guard_page for vm_map_growstack(). 4653 * Similarly, since a gap cannot have a backing object, 4654 * store the original stack protections in the 4655 * object offset. 4656 */ 4657 gap_entry->next_read = sgp; 4658 gap_entry->offset = prot | PROT_MAX(max); 4659 } else { 4660 (void)vm_map_delete(map, bot, top); 4661 } 4662 return (rv); 4663 } 4664 4665 /* 4666 * Attempts to grow a vm stack entry. Returns KERN_SUCCESS if we 4667 * successfully grow the stack. 4668 */ 4669 static int 4670 vm_map_growstack(vm_map_t map, vm_offset_t addr, vm_map_entry_t gap_entry) 4671 { 4672 vm_map_entry_t stack_entry; 4673 struct proc *p; 4674 struct vmspace *vm; 4675 struct ucred *cred; 4676 vm_offset_t gap_end, gap_start, grow_start; 4677 vm_size_t grow_amount, guard, max_grow, sgp; 4678 vm_prot_t prot, max; 4679 rlim_t lmemlim, stacklim, vmemlim; 4680 int rv, rv1 __diagused; 4681 bool gap_deleted, grow_down, is_procstack; 4682 #ifdef notyet 4683 uint64_t limit; 4684 #endif 4685 #ifdef RACCT 4686 int error __diagused; 4687 #endif 4688 4689 p = curproc; 4690 vm = p->p_vmspace; 4691 4692 /* 4693 * Disallow stack growth when the access is performed by a 4694 * debugger or AIO daemon. The reason is that the wrong 4695 * resource limits are applied. 4696 */ 4697 if (p != initproc && (map != &p->p_vmspace->vm_map || 4698 p->p_textvp == NULL)) 4699 return (KERN_FAILURE); 4700 4701 MPASS(!map->system_map); 4702 4703 lmemlim = lim_cur(curthread, RLIMIT_MEMLOCK); 4704 stacklim = lim_cur(curthread, RLIMIT_STACK); 4705 vmemlim = lim_cur(curthread, RLIMIT_VMEM); 4706 retry: 4707 /* If addr is not in a hole for a stack grow area, no need to grow. */ 4708 if (gap_entry == NULL && !vm_map_lookup_entry(map, addr, &gap_entry)) 4709 return (KERN_FAILURE); 4710 if ((gap_entry->eflags & MAP_ENTRY_GUARD) == 0) 4711 return (KERN_SUCCESS); 4712 if ((gap_entry->eflags & MAP_ENTRY_STACK_GAP_DN) != 0) { 4713 stack_entry = vm_map_entry_succ(gap_entry); 4714 if ((stack_entry->eflags & MAP_ENTRY_GROWS_DOWN) == 0 || 4715 stack_entry->start != gap_entry->end) 4716 return (KERN_FAILURE); 4717 grow_amount = round_page(stack_entry->start - addr); 4718 grow_down = true; 4719 } else if ((gap_entry->eflags & MAP_ENTRY_STACK_GAP_UP) != 0) { 4720 stack_entry = vm_map_entry_pred(gap_entry); 4721 if ((stack_entry->eflags & MAP_ENTRY_GROWS_UP) == 0 || 4722 stack_entry->end != gap_entry->start) 4723 return (KERN_FAILURE); 4724 grow_amount = round_page(addr + 1 - stack_entry->end); 4725 grow_down = false; 4726 } else { 4727 return (KERN_FAILURE); 4728 } 4729 guard = ((curproc->p_flag2 & P2_STKGAP_DISABLE) != 0 || 4730 (curproc->p_fctl0 & NT_FREEBSD_FCTL_STKGAP_DISABLE) != 0) ? 0 : 4731 gap_entry->next_read; 4732 max_grow = gap_entry->end - gap_entry->start; 4733 if (guard > max_grow) 4734 return (KERN_NO_SPACE); 4735 max_grow -= guard; 4736 if (grow_amount > max_grow) 4737 return (KERN_NO_SPACE); 4738 4739 /* 4740 * If this is the main process stack, see if we're over the stack 4741 * limit. 4742 */ 4743 is_procstack = addr >= (vm_offset_t)vm->vm_maxsaddr && 4744 addr < (vm_offset_t)vm->vm_stacktop; 4745 if (is_procstack && (ctob(vm->vm_ssize) + grow_amount > stacklim)) 4746 return (KERN_NO_SPACE); 4747 4748 #ifdef RACCT 4749 if (racct_enable) { 4750 PROC_LOCK(p); 4751 if (is_procstack && racct_set(p, RACCT_STACK, 4752 ctob(vm->vm_ssize) + grow_amount)) { 4753 PROC_UNLOCK(p); 4754 return (KERN_NO_SPACE); 4755 } 4756 PROC_UNLOCK(p); 4757 } 4758 #endif 4759 4760 grow_amount = roundup(grow_amount, sgrowsiz); 4761 if (grow_amount > max_grow) 4762 grow_amount = max_grow; 4763 if (is_procstack && (ctob(vm->vm_ssize) + grow_amount > stacklim)) { 4764 grow_amount = trunc_page((vm_size_t)stacklim) - 4765 ctob(vm->vm_ssize); 4766 } 4767 4768 #ifdef notyet 4769 PROC_LOCK(p); 4770 limit = racct_get_available(p, RACCT_STACK); 4771 PROC_UNLOCK(p); 4772 if (is_procstack && (ctob(vm->vm_ssize) + grow_amount > limit)) 4773 grow_amount = limit - ctob(vm->vm_ssize); 4774 #endif 4775 4776 if (!old_mlock && (map->flags & MAP_WIREFUTURE) != 0) { 4777 if (ptoa(pmap_wired_count(map->pmap)) + grow_amount > lmemlim) { 4778 rv = KERN_NO_SPACE; 4779 goto out; 4780 } 4781 #ifdef RACCT 4782 if (racct_enable) { 4783 PROC_LOCK(p); 4784 if (racct_set(p, RACCT_MEMLOCK, 4785 ptoa(pmap_wired_count(map->pmap)) + grow_amount)) { 4786 PROC_UNLOCK(p); 4787 rv = KERN_NO_SPACE; 4788 goto out; 4789 } 4790 PROC_UNLOCK(p); 4791 } 4792 #endif 4793 } 4794 4795 /* If we would blow our VMEM resource limit, no go */ 4796 if (map->size + grow_amount > vmemlim) { 4797 rv = KERN_NO_SPACE; 4798 goto out; 4799 } 4800 #ifdef RACCT 4801 if (racct_enable) { 4802 PROC_LOCK(p); 4803 if (racct_set(p, RACCT_VMEM, map->size + grow_amount)) { 4804 PROC_UNLOCK(p); 4805 rv = KERN_NO_SPACE; 4806 goto out; 4807 } 4808 PROC_UNLOCK(p); 4809 } 4810 #endif 4811 4812 if (vm_map_lock_upgrade(map)) { 4813 gap_entry = NULL; 4814 vm_map_lock_read(map); 4815 goto retry; 4816 } 4817 4818 if (grow_down) { 4819 /* 4820 * The gap_entry "offset" field is overloaded. See 4821 * vm_map_stack_locked(). 4822 */ 4823 prot = PROT_EXTRACT(gap_entry->offset); 4824 max = PROT_MAX_EXTRACT(gap_entry->offset); 4825 sgp = gap_entry->next_read; 4826 4827 grow_start = gap_entry->end - grow_amount; 4828 if (gap_entry->start + grow_amount == gap_entry->end) { 4829 gap_start = gap_entry->start; 4830 gap_end = gap_entry->end; 4831 vm_map_entry_delete(map, gap_entry); 4832 gap_deleted = true; 4833 } else { 4834 MPASS(gap_entry->start < gap_entry->end - grow_amount); 4835 vm_map_entry_resize(map, gap_entry, -grow_amount); 4836 gap_deleted = false; 4837 } 4838 rv = vm_map_insert(map, NULL, 0, grow_start, 4839 grow_start + grow_amount, prot, max, MAP_STACK_GROWS_DOWN); 4840 if (rv != KERN_SUCCESS) { 4841 if (gap_deleted) { 4842 rv1 = vm_map_insert1(map, NULL, 0, gap_start, 4843 gap_end, VM_PROT_NONE, VM_PROT_NONE, 4844 MAP_CREATE_GUARD | MAP_CREATE_STACK_GAP_DN, 4845 &gap_entry); 4846 MPASS(rv1 == KERN_SUCCESS); 4847 gap_entry->next_read = sgp; 4848 gap_entry->offset = prot | PROT_MAX(max); 4849 } else 4850 vm_map_entry_resize(map, gap_entry, 4851 grow_amount); 4852 } 4853 } else { 4854 grow_start = stack_entry->end; 4855 cred = stack_entry->cred; 4856 if (cred == NULL && stack_entry->object.vm_object != NULL) 4857 cred = stack_entry->object.vm_object->cred; 4858 if (cred != NULL && !swap_reserve_by_cred(grow_amount, cred)) 4859 rv = KERN_NO_SPACE; 4860 /* Grow the underlying object if applicable. */ 4861 else if (stack_entry->object.vm_object == NULL || 4862 vm_object_coalesce(stack_entry->object.vm_object, 4863 stack_entry->offset, 4864 (vm_size_t)(stack_entry->end - stack_entry->start), 4865 grow_amount, cred != NULL)) { 4866 if (gap_entry->start + grow_amount == gap_entry->end) { 4867 vm_map_entry_delete(map, gap_entry); 4868 vm_map_entry_resize(map, stack_entry, 4869 grow_amount); 4870 } else { 4871 gap_entry->start += grow_amount; 4872 stack_entry->end += grow_amount; 4873 } 4874 map->size += grow_amount; 4875 rv = KERN_SUCCESS; 4876 } else 4877 rv = KERN_FAILURE; 4878 } 4879 if (rv == KERN_SUCCESS && is_procstack) 4880 vm->vm_ssize += btoc(grow_amount); 4881 4882 /* 4883 * Heed the MAP_WIREFUTURE flag if it was set for this process. 4884 */ 4885 if (rv == KERN_SUCCESS && (map->flags & MAP_WIREFUTURE) != 0) { 4886 rv = vm_map_wire_locked(map, grow_start, 4887 grow_start + grow_amount, 4888 VM_MAP_WIRE_USER | VM_MAP_WIRE_NOHOLES); 4889 } 4890 vm_map_lock_downgrade(map); 4891 4892 out: 4893 #ifdef RACCT 4894 if (racct_enable && rv != KERN_SUCCESS) { 4895 PROC_LOCK(p); 4896 error = racct_set(p, RACCT_VMEM, map->size); 4897 KASSERT(error == 0, ("decreasing RACCT_VMEM failed")); 4898 if (!old_mlock) { 4899 error = racct_set(p, RACCT_MEMLOCK, 4900 ptoa(pmap_wired_count(map->pmap))); 4901 KASSERT(error == 0, ("decreasing RACCT_MEMLOCK failed")); 4902 } 4903 error = racct_set(p, RACCT_STACK, ctob(vm->vm_ssize)); 4904 KASSERT(error == 0, ("decreasing RACCT_STACK failed")); 4905 PROC_UNLOCK(p); 4906 } 4907 #endif 4908 4909 return (rv); 4910 } 4911 4912 /* 4913 * Unshare the specified VM space for exec. If other processes are 4914 * mapped to it, then create a new one. The new vmspace is null. 4915 */ 4916 int 4917 vmspace_exec(struct proc *p, vm_offset_t minuser, vm_offset_t maxuser) 4918 { 4919 struct vmspace *oldvmspace = p->p_vmspace; 4920 struct vmspace *newvmspace; 4921 4922 KASSERT((curthread->td_pflags & TDP_EXECVMSPC) == 0, 4923 ("vmspace_exec recursed")); 4924 newvmspace = vmspace_alloc(minuser, maxuser, pmap_pinit); 4925 if (newvmspace == NULL) 4926 return (ENOMEM); 4927 newvmspace->vm_swrss = oldvmspace->vm_swrss; 4928 /* 4929 * This code is written like this for prototype purposes. The 4930 * goal is to avoid running down the vmspace here, but let the 4931 * other process's that are still using the vmspace to finally 4932 * run it down. Even though there is little or no chance of blocking 4933 * here, it is a good idea to keep this form for future mods. 4934 */ 4935 PROC_VMSPACE_LOCK(p); 4936 p->p_vmspace = newvmspace; 4937 PROC_VMSPACE_UNLOCK(p); 4938 if (p == curthread->td_proc) 4939 pmap_activate(curthread); 4940 curthread->td_pflags |= TDP_EXECVMSPC; 4941 return (0); 4942 } 4943 4944 /* 4945 * Unshare the specified VM space for forcing COW. This 4946 * is called by rfork, for the (RFMEM|RFPROC) == 0 case. 4947 */ 4948 int 4949 vmspace_unshare(struct proc *p) 4950 { 4951 struct vmspace *oldvmspace = p->p_vmspace; 4952 struct vmspace *newvmspace; 4953 vm_ooffset_t fork_charge; 4954 4955 /* 4956 * The caller is responsible for ensuring that the reference count 4957 * cannot concurrently transition 1 -> 2. 4958 */ 4959 if (refcount_load(&oldvmspace->vm_refcnt) == 1) 4960 return (0); 4961 fork_charge = 0; 4962 newvmspace = vmspace_fork(oldvmspace, &fork_charge); 4963 if (newvmspace == NULL) 4964 return (ENOMEM); 4965 if (!swap_reserve_by_cred(fork_charge, p->p_ucred)) { 4966 vmspace_free(newvmspace); 4967 return (ENOMEM); 4968 } 4969 PROC_VMSPACE_LOCK(p); 4970 p->p_vmspace = newvmspace; 4971 PROC_VMSPACE_UNLOCK(p); 4972 if (p == curthread->td_proc) 4973 pmap_activate(curthread); 4974 vmspace_free(oldvmspace); 4975 return (0); 4976 } 4977 4978 /* 4979 * vm_map_lookup: 4980 * 4981 * Finds the VM object, offset, and 4982 * protection for a given virtual address in the 4983 * specified map, assuming a page fault of the 4984 * type specified. 4985 * 4986 * Leaves the map in question locked for read; return 4987 * values are guaranteed until a vm_map_lookup_done 4988 * call is performed. Note that the map argument 4989 * is in/out; the returned map must be used in 4990 * the call to vm_map_lookup_done. 4991 * 4992 * A handle (out_entry) is returned for use in 4993 * vm_map_lookup_done, to make that fast. 4994 * 4995 * If a lookup is requested with "write protection" 4996 * specified, the map may be changed to perform virtual 4997 * copying operations, although the data referenced will 4998 * remain the same. 4999 */ 5000 int 5001 vm_map_lookup(vm_map_t *var_map, /* IN/OUT */ 5002 vm_offset_t vaddr, 5003 vm_prot_t fault_typea, 5004 vm_map_entry_t *out_entry, /* OUT */ 5005 vm_object_t *object, /* OUT */ 5006 vm_pindex_t *pindex, /* OUT */ 5007 vm_prot_t *out_prot, /* OUT */ 5008 boolean_t *wired) /* OUT */ 5009 { 5010 vm_map_entry_t entry; 5011 vm_map_t map = *var_map; 5012 vm_prot_t prot; 5013 vm_prot_t fault_type; 5014 vm_object_t eobject; 5015 vm_size_t size; 5016 struct ucred *cred; 5017 5018 RetryLookup: 5019 5020 vm_map_lock_read(map); 5021 5022 RetryLookupLocked: 5023 /* 5024 * Lookup the faulting address. 5025 */ 5026 if (!vm_map_lookup_entry(map, vaddr, out_entry)) { 5027 vm_map_unlock_read(map); 5028 return (KERN_INVALID_ADDRESS); 5029 } 5030 5031 entry = *out_entry; 5032 5033 /* 5034 * Handle submaps. 5035 */ 5036 if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) { 5037 vm_map_t old_map = map; 5038 5039 *var_map = map = entry->object.sub_map; 5040 vm_map_unlock_read(old_map); 5041 goto RetryLookup; 5042 } 5043 5044 /* 5045 * Check whether this task is allowed to have this page. 5046 */ 5047 prot = entry->protection; 5048 if ((fault_typea & VM_PROT_FAULT_LOOKUP) != 0) { 5049 fault_typea &= ~VM_PROT_FAULT_LOOKUP; 5050 if (prot == VM_PROT_NONE && map != kernel_map && 5051 (entry->eflags & MAP_ENTRY_GUARD) != 0 && 5052 (entry->eflags & (MAP_ENTRY_STACK_GAP_DN | 5053 MAP_ENTRY_STACK_GAP_UP)) != 0 && 5054 vm_map_growstack(map, vaddr, entry) == KERN_SUCCESS) 5055 goto RetryLookupLocked; 5056 } 5057 fault_type = fault_typea & VM_PROT_ALL; 5058 if ((fault_type & prot) != fault_type || prot == VM_PROT_NONE) { 5059 vm_map_unlock_read(map); 5060 return (KERN_PROTECTION_FAILURE); 5061 } 5062 KASSERT((prot & VM_PROT_WRITE) == 0 || (entry->eflags & 5063 (MAP_ENTRY_USER_WIRED | MAP_ENTRY_NEEDS_COPY)) != 5064 (MAP_ENTRY_USER_WIRED | MAP_ENTRY_NEEDS_COPY), 5065 ("entry %p flags %x", entry, entry->eflags)); 5066 if ((fault_typea & VM_PROT_COPY) != 0 && 5067 (entry->max_protection & VM_PROT_WRITE) == 0 && 5068 (entry->eflags & MAP_ENTRY_COW) == 0) { 5069 vm_map_unlock_read(map); 5070 return (KERN_PROTECTION_FAILURE); 5071 } 5072 5073 /* 5074 * If this page is not pageable, we have to get it for all possible 5075 * accesses. 5076 */ 5077 *wired = (entry->wired_count != 0); 5078 if (*wired) 5079 fault_type = entry->protection; 5080 size = entry->end - entry->start; 5081 5082 /* 5083 * If the entry was copy-on-write, we either ... 5084 */ 5085 if (entry->eflags & MAP_ENTRY_NEEDS_COPY) { 5086 /* 5087 * If we want to write the page, we may as well handle that 5088 * now since we've got the map locked. 5089 * 5090 * If we don't need to write the page, we just demote the 5091 * permissions allowed. 5092 */ 5093 if ((fault_type & VM_PROT_WRITE) != 0 || 5094 (fault_typea & VM_PROT_COPY) != 0) { 5095 /* 5096 * Make a new object, and place it in the object 5097 * chain. Note that no new references have appeared 5098 * -- one just moved from the map to the new 5099 * object. 5100 */ 5101 if (vm_map_lock_upgrade(map)) 5102 goto RetryLookup; 5103 5104 if (entry->cred == NULL) { 5105 /* 5106 * The debugger owner is charged for 5107 * the memory. 5108 */ 5109 cred = curthread->td_ucred; 5110 crhold(cred); 5111 if (!swap_reserve_by_cred(size, cred)) { 5112 crfree(cred); 5113 vm_map_unlock(map); 5114 return (KERN_RESOURCE_SHORTAGE); 5115 } 5116 entry->cred = cred; 5117 } 5118 eobject = entry->object.vm_object; 5119 vm_object_shadow(&entry->object.vm_object, 5120 &entry->offset, size, entry->cred, false); 5121 if (eobject == entry->object.vm_object) { 5122 /* 5123 * The object was not shadowed. 5124 */ 5125 swap_release_by_cred(size, entry->cred); 5126 crfree(entry->cred); 5127 } 5128 entry->cred = NULL; 5129 entry->eflags &= ~MAP_ENTRY_NEEDS_COPY; 5130 5131 vm_map_lock_downgrade(map); 5132 } else { 5133 /* 5134 * We're attempting to read a copy-on-write page -- 5135 * don't allow writes. 5136 */ 5137 prot &= ~VM_PROT_WRITE; 5138 } 5139 } 5140 5141 /* 5142 * Create an object if necessary. 5143 */ 5144 if (entry->object.vm_object == NULL && !map->system_map) { 5145 if (vm_map_lock_upgrade(map)) 5146 goto RetryLookup; 5147 entry->object.vm_object = vm_object_allocate_anon(atop(size), 5148 NULL, entry->cred, size); 5149 entry->offset = 0; 5150 entry->cred = NULL; 5151 vm_map_lock_downgrade(map); 5152 } 5153 5154 /* 5155 * Return the object/offset from this entry. If the entry was 5156 * copy-on-write or empty, it has been fixed up. 5157 */ 5158 *pindex = OFF_TO_IDX((vaddr - entry->start) + entry->offset); 5159 *object = entry->object.vm_object; 5160 5161 *out_prot = prot; 5162 return (KERN_SUCCESS); 5163 } 5164 5165 /* 5166 * vm_map_lookup_locked: 5167 * 5168 * Lookup the faulting address. A version of vm_map_lookup that returns 5169 * KERN_FAILURE instead of blocking on map lock or memory allocation. 5170 */ 5171 int 5172 vm_map_lookup_locked(vm_map_t *var_map, /* IN/OUT */ 5173 vm_offset_t vaddr, 5174 vm_prot_t fault_typea, 5175 vm_map_entry_t *out_entry, /* OUT */ 5176 vm_object_t *object, /* OUT */ 5177 vm_pindex_t *pindex, /* OUT */ 5178 vm_prot_t *out_prot, /* OUT */ 5179 boolean_t *wired) /* OUT */ 5180 { 5181 vm_map_entry_t entry; 5182 vm_map_t map = *var_map; 5183 vm_prot_t prot; 5184 vm_prot_t fault_type = fault_typea; 5185 5186 /* 5187 * Lookup the faulting address. 5188 */ 5189 if (!vm_map_lookup_entry(map, vaddr, out_entry)) 5190 return (KERN_INVALID_ADDRESS); 5191 5192 entry = *out_entry; 5193 5194 /* 5195 * Fail if the entry refers to a submap. 5196 */ 5197 if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) 5198 return (KERN_FAILURE); 5199 5200 /* 5201 * Check whether this task is allowed to have this page. 5202 */ 5203 prot = entry->protection; 5204 fault_type &= VM_PROT_READ | VM_PROT_WRITE | VM_PROT_EXECUTE; 5205 if ((fault_type & prot) != fault_type) 5206 return (KERN_PROTECTION_FAILURE); 5207 5208 /* 5209 * If this page is not pageable, we have to get it for all possible 5210 * accesses. 5211 */ 5212 *wired = (entry->wired_count != 0); 5213 if (*wired) 5214 fault_type = entry->protection; 5215 5216 if (entry->eflags & MAP_ENTRY_NEEDS_COPY) { 5217 /* 5218 * Fail if the entry was copy-on-write for a write fault. 5219 */ 5220 if (fault_type & VM_PROT_WRITE) 5221 return (KERN_FAILURE); 5222 /* 5223 * We're attempting to read a copy-on-write page -- 5224 * don't allow writes. 5225 */ 5226 prot &= ~VM_PROT_WRITE; 5227 } 5228 5229 /* 5230 * Fail if an object should be created. 5231 */ 5232 if (entry->object.vm_object == NULL && !map->system_map) 5233 return (KERN_FAILURE); 5234 5235 /* 5236 * Return the object/offset from this entry. If the entry was 5237 * copy-on-write or empty, it has been fixed up. 5238 */ 5239 *pindex = OFF_TO_IDX((vaddr - entry->start) + entry->offset); 5240 *object = entry->object.vm_object; 5241 5242 *out_prot = prot; 5243 return (KERN_SUCCESS); 5244 } 5245 5246 /* 5247 * vm_map_lookup_done: 5248 * 5249 * Releases locks acquired by a vm_map_lookup 5250 * (according to the handle returned by that lookup). 5251 */ 5252 void 5253 vm_map_lookup_done(vm_map_t map, vm_map_entry_t entry) 5254 { 5255 /* 5256 * Unlock the main-level map 5257 */ 5258 vm_map_unlock_read(map); 5259 } 5260 5261 vm_offset_t 5262 vm_map_max_KBI(const struct vm_map *map) 5263 { 5264 5265 return (vm_map_max(map)); 5266 } 5267 5268 vm_offset_t 5269 vm_map_min_KBI(const struct vm_map *map) 5270 { 5271 5272 return (vm_map_min(map)); 5273 } 5274 5275 pmap_t 5276 vm_map_pmap_KBI(vm_map_t map) 5277 { 5278 5279 return (map->pmap); 5280 } 5281 5282 bool 5283 vm_map_range_valid_KBI(vm_map_t map, vm_offset_t start, vm_offset_t end) 5284 { 5285 5286 return (vm_map_range_valid(map, start, end)); 5287 } 5288 5289 #ifdef INVARIANTS 5290 static void 5291 _vm_map_assert_consistent(vm_map_t map, int check) 5292 { 5293 vm_map_entry_t entry, prev; 5294 vm_map_entry_t cur, header, lbound, ubound; 5295 vm_size_t max_left, max_right; 5296 5297 #ifdef DIAGNOSTIC 5298 ++map->nupdates; 5299 #endif 5300 if (enable_vmmap_check != check) 5301 return; 5302 5303 header = prev = &map->header; 5304 VM_MAP_ENTRY_FOREACH(entry, map) { 5305 KASSERT(prev->end <= entry->start, 5306 ("map %p prev->end = %jx, start = %jx", map, 5307 (uintmax_t)prev->end, (uintmax_t)entry->start)); 5308 KASSERT(entry->start < entry->end, 5309 ("map %p start = %jx, end = %jx", map, 5310 (uintmax_t)entry->start, (uintmax_t)entry->end)); 5311 KASSERT(entry->left == header || 5312 entry->left->start < entry->start, 5313 ("map %p left->start = %jx, start = %jx", map, 5314 (uintmax_t)entry->left->start, (uintmax_t)entry->start)); 5315 KASSERT(entry->right == header || 5316 entry->start < entry->right->start, 5317 ("map %p start = %jx, right->start = %jx", map, 5318 (uintmax_t)entry->start, (uintmax_t)entry->right->start)); 5319 cur = map->root; 5320 lbound = ubound = header; 5321 for (;;) { 5322 if (entry->start < cur->start) { 5323 ubound = cur; 5324 cur = cur->left; 5325 KASSERT(cur != lbound, 5326 ("map %p cannot find %jx", 5327 map, (uintmax_t)entry->start)); 5328 } else if (cur->end <= entry->start) { 5329 lbound = cur; 5330 cur = cur->right; 5331 KASSERT(cur != ubound, 5332 ("map %p cannot find %jx", 5333 map, (uintmax_t)entry->start)); 5334 } else { 5335 KASSERT(cur == entry, 5336 ("map %p cannot find %jx", 5337 map, (uintmax_t)entry->start)); 5338 break; 5339 } 5340 } 5341 max_left = vm_map_entry_max_free_left(entry, lbound); 5342 max_right = vm_map_entry_max_free_right(entry, ubound); 5343 KASSERT(entry->max_free == vm_size_max(max_left, max_right), 5344 ("map %p max = %jx, max_left = %jx, max_right = %jx", map, 5345 (uintmax_t)entry->max_free, 5346 (uintmax_t)max_left, (uintmax_t)max_right)); 5347 prev = entry; 5348 } 5349 KASSERT(prev->end <= entry->start, 5350 ("map %p prev->end = %jx, start = %jx", map, 5351 (uintmax_t)prev->end, (uintmax_t)entry->start)); 5352 } 5353 #endif 5354 5355 #include "opt_ddb.h" 5356 #ifdef DDB 5357 #include <sys/kernel.h> 5358 5359 #include <ddb/ddb.h> 5360 5361 static void 5362 vm_map_print(vm_map_t map) 5363 { 5364 vm_map_entry_t entry, prev; 5365 5366 db_iprintf("Task map %p: pmap=%p, nentries=%d, version=%u\n", 5367 (void *)map, 5368 (void *)map->pmap, map->nentries, map->timestamp); 5369 5370 db_indent += 2; 5371 prev = &map->header; 5372 VM_MAP_ENTRY_FOREACH(entry, map) { 5373 db_iprintf("map entry %p: start=%p, end=%p, eflags=%#x, \n", 5374 (void *)entry, (void *)entry->start, (void *)entry->end, 5375 entry->eflags); 5376 { 5377 static const char * const inheritance_name[4] = 5378 {"share", "copy", "none", "donate_copy"}; 5379 5380 db_iprintf(" prot=%x/%x/%s", 5381 entry->protection, 5382 entry->max_protection, 5383 inheritance_name[(int)(unsigned char) 5384 entry->inheritance]); 5385 if (entry->wired_count != 0) 5386 db_printf(", wired"); 5387 } 5388 if (entry->eflags & MAP_ENTRY_IS_SUB_MAP) { 5389 db_printf(", share=%p, offset=0x%jx\n", 5390 (void *)entry->object.sub_map, 5391 (uintmax_t)entry->offset); 5392 if (prev == &map->header || 5393 prev->object.sub_map != 5394 entry->object.sub_map) { 5395 db_indent += 2; 5396 vm_map_print((vm_map_t)entry->object.sub_map); 5397 db_indent -= 2; 5398 } 5399 } else { 5400 if (entry->cred != NULL) 5401 db_printf(", ruid %d", entry->cred->cr_ruid); 5402 db_printf(", object=%p, offset=0x%jx", 5403 (void *)entry->object.vm_object, 5404 (uintmax_t)entry->offset); 5405 if (entry->object.vm_object && entry->object.vm_object->cred) 5406 db_printf(", obj ruid %d charge %jx", 5407 entry->object.vm_object->cred->cr_ruid, 5408 (uintmax_t)entry->object.vm_object->charge); 5409 if (entry->eflags & MAP_ENTRY_COW) 5410 db_printf(", copy (%s)", 5411 (entry->eflags & MAP_ENTRY_NEEDS_COPY) ? "needed" : "done"); 5412 db_printf("\n"); 5413 5414 if (prev == &map->header || 5415 prev->object.vm_object != 5416 entry->object.vm_object) { 5417 db_indent += 2; 5418 vm_object_print((db_expr_t)(intptr_t) 5419 entry->object.vm_object, 5420 0, 0, (char *)0); 5421 db_indent -= 2; 5422 } 5423 } 5424 prev = entry; 5425 } 5426 db_indent -= 2; 5427 } 5428 5429 DB_SHOW_COMMAND(map, map) 5430 { 5431 5432 if (!have_addr) { 5433 db_printf("usage: show map <addr>\n"); 5434 return; 5435 } 5436 vm_map_print((vm_map_t)addr); 5437 } 5438 5439 DB_SHOW_COMMAND(procvm, procvm) 5440 { 5441 struct proc *p; 5442 5443 if (have_addr) { 5444 p = db_lookup_proc(addr); 5445 } else { 5446 p = curproc; 5447 } 5448 5449 db_printf("p = %p, vmspace = %p, map = %p, pmap = %p\n", 5450 (void *)p, (void *)p->p_vmspace, (void *)&p->p_vmspace->vm_map, 5451 (void *)vmspace_pmap(p->p_vmspace)); 5452 5453 vm_map_print((vm_map_t)&p->p_vmspace->vm_map); 5454 } 5455 5456 #endif /* DDB */ 5457