sys/vm/vm_vmspace.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 | /* * (MPSAFE) * * Copyright (c) 2006 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon <dillon@backplane.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include <sys/param.h> #include <sys/kernel.h> #include <sys/systm.h> #include <sys/sysmsg.h> #include <sys/kern_syscall.h> #include <sys/mman.h> #include <sys/thread.h> #include <sys/proc.h> #include <sys/malloc.h> #include <sys/sysctl.h> #include <sys/vkernel.h> #include <sys/vmspace.h> #include <vm/vm_extern.h> #include <vm/pmap.h> #include <machine/vmparam.h> static struct vmspace_entry *vkernel_find_vmspace(struct vkernel_proc *vkp, void *id, int havetoken); static int vmspace_entry_delete(struct vmspace_entry *ve, struct vkernel_proc *vkp, int refs); static void vmspace_entry_cache_ref(struct vmspace_entry *ve); static void vmspace_entry_cache_drop(struct vmspace_entry *ve); static void vmspace_entry_drop(struct vmspace_entry *ve); static void ve_cache_enter(struct vkernel_lwp *vklp, struct vmspace_entry *ve); static struct vmspace_entry *ve_cache_find(struct vkernel_lwp *vklp, void *id); static MALLOC_DEFINE(M_VKERNEL, "vkernel", "VKernel structures"); /* * Cache helper, enter ve into per-lwp cache (avoid vkp->token use) */ static void ve_cache_enter(struct vkernel_lwp *vklp, struct vmspace_entry *ve) { int i; ++vklp->ve_cache_rover; i = vklp->ve_cache_rover & (VE_CACHE_COUNT - 1); vmspace_entry_cache_ref(ve); if (vklp->ve_cache[i]) vmspace_entry_cache_drop(vklp->ve_cache[i]); vklp->ve_cache[i] = ve; } /* * Cache helper, locate ve in per-lwp cache (avoid vkp->token use) */ static struct vmspace_entry * ve_cache_find(struct vkernel_lwp *vklp, void *id) { struct vmspace_entry *ve; uint32_t n; int i; for (i = 0; i < VE_CACHE_COUNT; ++i) { ve = vklp->ve_cache[i]; if (ve == NULL) continue; if (ve->id == id) { /* * Bump active refs, check to see if the cache * entry is safe. If so, we are good. */ n = atomic_fetchadd_int(&ve->refs, 1); if ((n & VKE_REF_DELETED) == 0) { KKASSERT(ve->vmspace); return ve; } /* * Cache stale */ vklp->ve_cache[i] = NULL; vmspace_entry_drop(ve); vmspace_entry_cache_drop(ve); } else if (ve->refs & VKE_REF_DELETED) { /* * Remove stale entries on the fly */ n = atomic_fetchadd_int(&ve->refs, 1); if (n & VKE_REF_DELETED) { vklp->ve_cache[i] = NULL; vmspace_entry_drop(ve); vmspace_entry_cache_drop(ve); } else { vmspace_entry_drop(ve); } } } return NULL; } /* * vmspace_create (void *id, int type, void *data) * * Create a VMSPACE under the control of the caller with the specified id. * An id of NULL cannot be used. The type and data fields must currently * be 0. * * The vmspace starts out completely empty. Memory may be mapped into the * VMSPACE with vmspace_mmap(). * * No requirements. */ int sys_vmspace_create(struct sysmsg *sysmsg, const struct vmspace_create_args *uap) { struct vmspace_entry *ve; struct vkernel_proc *vkp; struct proc *p = curproc; int error; if (vkernel_enable == 0) return (EOPNOTSUPP); /* * Create a virtual kernel side-structure for the process if one * does not exist. * * Implement a simple resolution for SMP races. */ if ((vkp = p->p_vkernel) == NULL) { vkp = kmalloc(sizeof(*vkp), M_VKERNEL, M_WAITOK|M_ZERO); lwkt_gettoken(&p->p_token); if (p->p_vkernel == NULL) { vkp->refs = 1; lwkt_token_init(&vkp->token, "vkernel"); RB_INIT(&vkp->root); p->p_vkernel = vkp; } else { kfree(vkp, M_VKERNEL); vkp = p->p_vkernel; } lwkt_reltoken(&p->p_token); } /* * Create a new VMSPACE, disallow conflicting ids */ ve = kmalloc(sizeof(struct vmspace_entry), M_VKERNEL, M_WAITOK|M_ZERO); ve->vmspace = vmspace_alloc(VM_MIN_USER_ADDRESS, VM_MAX_USER_ADDRESS); ve->id = uap->id; ve->refs = 0; /* active refs (none) */ ve->cache_refs = 1; /* on-tree, not deleted (prevent kfree) */ pmap_pinit2(vmspace_pmap(ve->vmspace)); lwkt_gettoken(&vkp->token); if (RB_INSERT(vmspace_rb_tree, &vkp->root, ve)) { vmspace_rel(ve->vmspace); ve->vmspace = NULL; /* safety */ kfree(ve, M_VKERNEL); error = EEXIST; } else { error = 0; } lwkt_reltoken(&vkp->token); return (error); } /* * Destroy a VMSPACE given its identifier. * * No requirements. */ int sys_vmspace_destroy(struct sysmsg *sysmsg, const struct vmspace_destroy_args *uap) { struct vkernel_proc *vkp; struct vmspace_entry *ve; int error; if ((vkp = curproc->p_vkernel) == NULL) return EINVAL; /* * vkp->token protects the deletion against a new RB tree search. */ lwkt_gettoken(&vkp->token); error = ENOENT; if ((ve = vkernel_find_vmspace(vkp, uap->id, 1)) != NULL) { error = vmspace_entry_delete(ve, vkp, 1); if (error == 0) vmspace_entry_cache_drop(ve); } lwkt_reltoken(&vkp->token); return(error); } /* * vmspace_ctl (void *id, int cmd, struct trapframe *tframe, * struct vextframe *vframe); * * Transfer control to a VMSPACE. Control is returned after the specified * number of microseconds or if a page fault, signal, trap, or system call * occurs. The context is updated as appropriate. * * No requirements. */ int sys_vmspace_ctl(struct sysmsg *sysmsg, const struct vmspace_ctl_args *uap) { struct vmspace_ctl_args ua = *uap; struct vkernel_proc *vkp; struct vkernel_lwp *vklp; struct vmspace_entry *ve = NULL; struct lwp *lp; struct proc *p; int framesz; int error; lp = curthread->td_lwp; p = lp->lwp_proc; if ((vkp = p->p_vkernel) == NULL) return (EINVAL); /* * NOTE: We have to copy *uap into ua because uap is an aliased * pointer into the sysframe, which we are replacing. */ if ((ve = vkernel_find_vmspace(vkp, ua.id, 0)) == NULL) { error = ENOENT; goto done; } switch(ua.cmd) { case VMSPACE_CTL_RUN: /* * Save the caller's register context, swap VM spaces, and * install the passed register context. Return with * EJUSTRETURN so the syscall code doesn't adjust the context. */ framesz = sizeof(struct trapframe); if ((vklp = lp->lwp_vkernel) == NULL) { vklp = kmalloc(sizeof(*vklp), M_VKERNEL, M_WAITOK|M_ZERO); lp->lwp_vkernel = vklp; ve_cache_enter(vklp, ve); } vklp->user_trapframe = ua.tframe; vklp->user_vextframe = ua.vframe; bcopy(sysmsg->sysmsg_frame, &vklp->save_trapframe, framesz); bcopy(&curthread->td_tls, &vklp->save_vextframe.vx_tls, sizeof(vklp->save_vextframe.vx_tls)); error = copyin(ua.tframe, sysmsg->sysmsg_frame, framesz); if (error == 0) { error = copyin(&ua.vframe->vx_tls, &curthread->td_tls, sizeof(struct savetls)); } if (error == 0) error = cpu_sanitize_frame(sysmsg->sysmsg_frame); if (error == 0) error = cpu_sanitize_tls(&curthread->td_tls); if (error) { bcopy(&vklp->save_trapframe, sysmsg->sysmsg_frame, framesz); bcopy(&vklp->save_vextframe.vx_tls, &curthread->td_tls, sizeof(vklp->save_vextframe.vx_tls)); set_user_TLS(); } else { vklp->ve = ve; atomic_add_int(&ve->refs, 1); pmap_setlwpvm(lp, ve->vmspace); set_user_TLS(); set_vkernel_fp(sysmsg->sysmsg_frame); error = EJUSTRETURN; } break; default: error = EOPNOTSUPP; break; } done: if (ve) vmspace_entry_drop(ve); return(error); } /* * vmspace_mmap(id, addr, len, prot, flags, fd, offset) * * map memory within a VMSPACE. This function is just like a normal mmap() * but operates on the vmspace's memory map. * * No requirements. */ int sys_vmspace_mmap(struct sysmsg *sysmsg, const struct vmspace_mmap_args *uap) { struct vkernel_proc *vkp; struct vmspace_entry *ve; int error; if ((vkp = curproc->p_vkernel) == NULL) { error = EINVAL; goto done2; } if ((ve = vkernel_find_vmspace(vkp, uap->id, 0)) == NULL) { error = ENOENT; goto done2; } error = kern_mmap(ve->vmspace, uap->addr, uap->len, uap->prot, uap->flags, uap->fd, uap->offset, &sysmsg->sysmsg_resultp); vmspace_entry_drop(ve); done2: return (error); } /* * vmspace_munmap(id, addr, len) * * unmap memory within a VMSPACE. * * No requirements. */ int sys_vmspace_munmap(struct sysmsg *sysmsg, const struct vmspace_munmap_args *uap) { struct vkernel_proc *vkp; struct vmspace_entry *ve; vm_offset_t addr; vm_offset_t tmpaddr; vm_size_t size, pageoff; vm_map_t map; int error; if ((vkp = curproc->p_vkernel) == NULL) { error = EINVAL; goto done2; } if ((ve = vkernel_find_vmspace(vkp, uap->id, 0)) == NULL) { error = ENOENT; goto done2; } /* * NOTE: kern_munmap() can block so we need to temporarily * ref ve->refs. */ /* * Copied from sys_munmap() */ addr = (vm_offset_t)uap->addr; size = uap->len; pageoff = (addr & PAGE_MASK); addr -= pageoff; size += pageoff; size = (vm_size_t)round_page(size); if (size < uap->len) { /* wrap */ error = EINVAL; goto done1; } tmpaddr = addr + size; /* workaround gcc4 opt */ if (tmpaddr < addr) { /* wrap */ error = EINVAL; goto done1; } if (size == 0) { error = 0; goto done1; } if (VM_MAX_USER_ADDRESS > 0 && tmpaddr > VM_MAX_USER_ADDRESS) { error = EINVAL; goto done1; } if (VM_MIN_USER_ADDRESS > 0 && addr < VM_MIN_USER_ADDRESS) { error = EINVAL; goto done1; } map = &ve->vmspace->vm_map; if (!vm_map_check_protection(map, addr, tmpaddr, VM_PROT_NONE, FALSE)) { error = EINVAL; goto done1; } vm_map_remove(map, addr, addr + size); error = 0; done1: vmspace_entry_drop(ve); done2: return (error); } /* * vmspace_pread(id, buf, nbyte, flags, offset) * * Read data from a vmspace. The number of bytes read is returned or * -1 if an unrecoverable error occured. If the number of bytes read is * less then the request size, a page fault occured in the VMSPACE which * the caller must resolve in order to proceed. * * (not implemented yet) * No requirements. */ int sys_vmspace_pread(struct sysmsg *sysmsg, const struct vmspace_pread_args *uap) { struct vkernel_proc *vkp; struct vmspace_entry *ve; int error; if ((vkp = curproc->p_vkernel) == NULL) { error = EINVAL; goto done3; } if ((ve = vkernel_find_vmspace(vkp, uap->id, 0)) == NULL) { error = ENOENT; goto done3; } vmspace_entry_drop(ve); error = EINVAL; done3: return (error); } /* * vmspace_pwrite(id, buf, nbyte, flags, offset) * * Write data to a vmspace. The number of bytes written is returned or * -1 if an unrecoverable error occured. If the number of bytes written is * less then the request size, a page fault occured in the VMSPACE which * the caller must resolve in order to proceed. * * (not implemented yet) * No requirements. */ int sys_vmspace_pwrite(struct sysmsg *sysmsg, const struct vmspace_pwrite_args *uap) { struct vkernel_proc *vkp; struct vmspace_entry *ve; int error; if ((vkp = curproc->p_vkernel) == NULL) { error = EINVAL; goto done3; } if ((ve = vkernel_find_vmspace(vkp, uap->id, 0)) == NULL) { error = ENOENT; goto done3; } vmspace_entry_drop(ve); error = EINVAL; done3: return (error); } /* * vmspace_mcontrol(id, addr, len, behav, value) * * madvise/mcontrol support for a vmspace. * * No requirements. */ int sys_vmspace_mcontrol(struct sysmsg *sysmsg, const struct vmspace_mcontrol_args *uap) { struct vkernel_proc *vkp; struct vmspace_entry *ve; struct lwp *lp; vm_offset_t start, end; vm_offset_t tmpaddr = (vm_offset_t)uap->addr + uap->len; int error; lp = curthread->td_lwp; if ((vkp = curproc->p_vkernel) == NULL) { error = EINVAL; goto done3; } if ((ve = vkernel_find_vmspace(vkp, uap->id, 0)) == NULL) { error = ENOENT; goto done3; } /* * This code is basically copied from sys_mcontrol() */ if (uap->behav < 0 || uap->behav > MADV_CONTROL_END) { error = EINVAL; goto done1; } if (tmpaddr < (vm_offset_t)uap->addr) { error = EINVAL; goto done1; } if (VM_MAX_USER_ADDRESS > 0 && tmpaddr > VM_MAX_USER_ADDRESS) { error = EINVAL; goto done1; } if (VM_MIN_USER_ADDRESS > 0 && uap->addr < VM_MIN_USER_ADDRESS) { error = EINVAL; goto done1; } start = trunc_page((vm_offset_t) uap->addr); end = round_page(tmpaddr); error = vm_map_madvise(&ve->vmspace->vm_map, start, end, uap->behav, uap->value); done1: vmspace_entry_drop(ve); done3: return (error); } /* * Red black tree functions */ static int rb_vmspace_compare(struct vmspace_entry *, struct vmspace_entry *); RB_GENERATE(vmspace_rb_tree, vmspace_entry, rb_entry, rb_vmspace_compare); /* * a->start is address, and the only field has to be initialized. * The caller must hold vkp->token. * * The caller must hold vkp->token. */ static int rb_vmspace_compare(struct vmspace_entry *a, struct vmspace_entry *b) { if ((char *)a->id < (char *)b->id) return(-1); else if ((char *)a->id > (char *)b->id) return(1); return(0); } /* * The caller must hold vkp->token. */ static int rb_vmspace_delete(struct vmspace_entry *ve, void *data) { struct vkernel_proc *vkp = data; if (vmspace_entry_delete(ve, vkp, 0) == 0) vmspace_entry_cache_drop(ve); else panic("rb_vmspace_delete: invalid refs %d", ve->refs); return(0); } /* * Remove a vmspace_entry from the RB tree and destroy it. We have to clean * up the pmap, the vm_map, then destroy the vmspace. We gain control of * the associated cache_refs ref, which the caller will drop for us. * * The ve must not have any active references other than those from the * caller. If it does, EBUSY is returned. The ve may still maintain * any number of cache references which will drop as the related LWPs * execute vmspace operations or exit. * * 0 is returned on success, EBUSY on failure. On success the caller must * drop the last cache_refs. We have dropped the callers active refs. * * The caller must hold vkp->token. The token will be temporarily dropped * and then reacquired by this routine. */ static int vmspace_entry_delete(struct vmspace_entry *ve, struct vkernel_proc *vkp, int refs) { /* * Interlocked by vkp->token. * * Drop the callers refs and set VKE_REF_DELETED atomically, if * the remaining refs match exactly. Dropping refs and setting * the DELETED flag atomically protects other threads from trying * to use the ve. * * The caller now owns the final cache_ref that was previously * associated with the live state of the ve. */ if (atomic_cmpset_int(&ve->refs, refs, VKE_REF_DELETED) == 0) { KKASSERT(ve->refs >= refs); return EBUSY; } RB_REMOVE(vmspace_rb_tree, &vkp->root, ve); /* * Shouldn't be any other references so we can drop the token * to do the nasty work, reducing contension with operations on * other cores. */ lwkt_reltoken(&vkp->token); pmap_remove_pages(vmspace_pmap(ve->vmspace), VM_MIN_USER_ADDRESS, VM_MAX_USER_ADDRESS); vm_map_remove(&ve->vmspace->vm_map, VM_MIN_USER_ADDRESS, VM_MAX_USER_ADDRESS); vmspace_rel(ve->vmspace); ve->vmspace = NULL; /* safety */ lwkt_gettoken(&vkp->token); return 0; } /* * Ref a ve for cache purposes */ static void vmspace_entry_cache_ref(struct vmspace_entry *ve) { atomic_add_int(&ve->cache_refs, 1); } /* * The ve cache_drop is the final word for a ve. It gains an extra ref * representing it being on the RB tree and not being in a deleted state. * Removal from the RB tree and deletion manipulate this ref. The last * drop will thus include full deletion of the ve in addition to the last * cached user going away. */ static void vmspace_entry_cache_drop(struct vmspace_entry *ve) { if (atomic_fetchadd_int(&ve->cache_refs, -1) == 1) { KKASSERT(ve->refs & VKE_REF_DELETED); kfree(ve, M_VKERNEL); } } /* * Drop primary reference. The ve cannot be freed on the 1->0 transition. * Instead, ve deletion interlocks the final kfree() via cache_refs. */ static void vmspace_entry_drop(struct vmspace_entry *ve) { atomic_fetchadd_int(&ve->refs, -1); } /* * Locate the ve for (id), return the ve or NULL. If found this function * will bump ve->refs which prevents the ve from being immediately destroyed * (but it can still be removed). * * The cache can potentially contain a stale ve, check by testing ve->vmspace. * * The caller must hold vkp->token if excl is non-zero. */ static struct vmspace_entry * vkernel_find_vmspace(struct vkernel_proc *vkp, void *id, int excl) { struct vmspace_entry *ve; struct vmspace_entry key; struct vkernel_lwp *vklp; struct lwp *lp = curthread->td_lwp; /* * Cache check. Since we already hold a ref on the cache entry * the ve cannot be ripped out from under us while we cycle * ve->refs. */ if ((vklp = lp->lwp_vkernel) != NULL) { ve = ve_cache_find(vklp, id); if (ve) { KKASSERT(ve->vmspace); return ve; } } /* * Normal search protected by vkp->token. No new ve's can be marked * DELETED while we hold the token so we are safe. */ if (excl == 0) lwkt_gettoken_shared(&vkp->token); key.id = id; ve = RB_FIND(vmspace_rb_tree, &vkp->root, &key); if (ve) { if (atomic_fetchadd_int(&ve->refs, 1) & VKE_REF_DELETED) { vmspace_entry_drop(ve); ve = NULL; } } if (excl == 0) lwkt_reltoken(&vkp->token); if (vklp && ve) ve_cache_enter(vklp, ve); return (ve); } /* * Manage vkernel refs, used by the kernel when fork()ing or exit()ing * a vkernel process. * * No requirements. */ void vkernel_inherit(struct proc *p1, struct proc *p2) { struct vkernel_proc *vkp; vkp = p1->p_vkernel; KKASSERT(vkp->refs > 0); atomic_add_int(&vkp->refs, 1); p2->p_vkernel = vkp; } /* * No requirements. */ void vkernel_exit(struct proc *p) { struct vkernel_proc *vkp; struct lwp *lp; vkp = p->p_vkernel; /* * Restore the original VM context if we are killed while running * a different one. * * This isn't supposed to happen. What is supposed to happen is * that the process should enter vkernel_trap() before the handling * the signal. */ RB_FOREACH(lp, lwp_rb_tree, &p->p_lwp_tree) { vkernel_lwp_exit(lp); } /* * Dereference the common area */ p->p_vkernel = NULL; KKASSERT(vkp->refs > 0); if (atomic_fetchadd_int(&vkp->refs, -1) == 1) { lwkt_gettoken(&vkp->token); RB_SCAN(vmspace_rb_tree, &vkp->root, NULL, rb_vmspace_delete, vkp); lwkt_reltoken(&vkp->token); kfree(vkp, M_VKERNEL); } } /* * No requirements. */ void vkernel_lwp_exit(struct lwp *lp) { struct vkernel_lwp *vklp; struct vmspace_entry *ve; int i; if ((vklp = lp->lwp_vkernel) != NULL) { /* * vkernel thread */ if ((ve = vklp->ve) != NULL) { kprintf("Warning, pid %d killed with " "active VC!\n", lp->lwp_proc->p_pid); pmap_setlwpvm(lp, lp->lwp_proc->p_vmspace); vklp->ve = NULL; KKASSERT(ve->refs > 0); vmspace_entry_drop(ve); } for (i = 0; i < VE_CACHE_COUNT; ++i) { ve = vklp->ve_cache[i]; if (ve) { vklp->ve_cache[i] = NULL; vmspace_entry_cache_drop(ve); } } lp->lwp_vkernel = NULL; kfree(vklp, M_VKERNEL); } } /* * A VM space under virtual kernel control trapped out or made a system call * or otherwise needs to return control to the virtual kernel context. * * No requirements. */ void vkernel_trap(struct lwp *lp, struct trapframe *frame) { struct proc *p = lp->lwp_proc; struct vmspace_entry *ve; struct vkernel_lwp *vklp; int error; /* * Which vmspace entry was running? */ vklp = lp->lwp_vkernel; KKASSERT(vklp); ve = vklp->ve; KKASSERT(ve != NULL); /* * Switch the LWP vmspace back to the virtual kernel's VM space. */ vklp->ve = NULL; pmap_setlwpvm(lp, p->p_vmspace); KKASSERT(ve->refs > 0); vmspace_entry_drop(ve); /* ve is invalid once we kill our ref */ /* * Copy the emulated process frame to the virtual kernel process. * The emulated process cannot change TLS descriptors so don't * bother saving them, we already have a copy. * * Restore the virtual kernel's saved context so the virtual kernel * process can resume. */ error = copyout(frame, vklp->user_trapframe, sizeof(*frame)); bcopy(&vklp->save_trapframe, frame, sizeof(*frame)); bcopy(&vklp->save_vextframe.vx_tls, &curthread->td_tls, sizeof(vklp->save_vextframe.vx_tls)); set_user_TLS(); cpu_vkernel_trap(frame, error); } |