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