sys/dev/virtual/nvmm/nvmm.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 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 | /* * Copyright (c) 2018-2021 Maxime Villard, m00nbsd.net * All rights reserved. * * This code is part of the NVMM hypervisor. * * 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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/systm.h> #include <sys/kernel.h> #include <sys/mman.h> #include "nvmm.h" #include "nvmm_internal.h" #include "nvmm_ioctl.h" static struct nvmm_machine machines[NVMM_MAX_MACHINES]; volatile unsigned int nmachines __cacheline_aligned; static const struct nvmm_impl *nvmm_impl_list[] = { #if defined(__x86_64__) &nvmm_x86_svm, /* x86 AMD SVM */ &nvmm_x86_vmx /* x86 Intel VMX */ #endif }; const struct nvmm_impl *nvmm_impl __read_mostly = NULL; struct nvmm_owner nvmm_root_owner; /* -------------------------------------------------------------------------- */ static int nvmm_machine_alloc(struct nvmm_machine **ret) { struct nvmm_machine *mach; size_t i; for (i = 0; i < NVMM_MAX_MACHINES; i++) { mach = &machines[i]; os_rwl_wlock(&mach->lock); if (mach->present) { os_rwl_unlock(&mach->lock); continue; } mach->present = true; mach->time = time_second; *ret = mach; os_atomic_inc_uint(&nmachines); return 0; } return ENOBUFS; } static void nvmm_machine_free(struct nvmm_machine *mach) { OS_ASSERT(os_rwl_wheld(&mach->lock)); OS_ASSERT(mach->present); mach->present = false; os_atomic_dec_uint(&nmachines); } static int nvmm_machine_get(struct nvmm_owner *owner, nvmm_machid_t machid, struct nvmm_machine **ret, bool writer) { struct nvmm_machine *mach; if (__predict_false(machid >= NVMM_MAX_MACHINES)) { return EINVAL; } mach = &machines[machid]; if (__predict_false(writer)) { os_rwl_wlock(&mach->lock); } else { os_rwl_rlock(&mach->lock); } if (__predict_false(!mach->present)) { os_rwl_unlock(&mach->lock); return ENOENT; } if (__predict_false(mach->owner != owner && owner != &nvmm_root_owner)) { os_rwl_unlock(&mach->lock); return EPERM; } *ret = mach; return 0; } static void nvmm_machine_put(struct nvmm_machine *mach) { os_rwl_unlock(&mach->lock); } /* -------------------------------------------------------------------------- */ static int nvmm_vcpu_alloc(struct nvmm_machine *mach, nvmm_cpuid_t cpuid, struct nvmm_cpu **ret) { struct nvmm_cpu *vcpu; if (cpuid >= NVMM_MAX_VCPUS) { return EINVAL; } vcpu = &mach->cpus[cpuid]; os_mtx_lock(&vcpu->lock); if (vcpu->present) { os_mtx_unlock(&vcpu->lock); return EBUSY; } vcpu->present = true; vcpu->comm = NULL; vcpu->hcpu_last = -1; *ret = vcpu; return 0; } static void nvmm_vcpu_free(struct nvmm_machine *mach, struct nvmm_cpu *vcpu) { OS_ASSERT(os_mtx_owned(&vcpu->lock)); vcpu->present = false; if (vcpu->comm != NULL) { os_vmobj_unmap(os_kernel_map, (vaddr_t)vcpu->comm, (vaddr_t)vcpu->comm + NVMM_COMM_PAGE_SIZE, true); /* * Require userland to unmap the comm page from its address * space, because os_curproc_map at this point (fd close) * is not guaranteed to be the correct address space. */ } } static int nvmm_vcpu_get(struct nvmm_machine *mach, nvmm_cpuid_t cpuid, struct nvmm_cpu **ret) { struct nvmm_cpu *vcpu; if (__predict_false(cpuid >= NVMM_MAX_VCPUS)) { return EINVAL; } vcpu = &mach->cpus[cpuid]; os_mtx_lock(&vcpu->lock); if (__predict_false(!vcpu->present)) { os_mtx_unlock(&vcpu->lock); return ENOENT; } *ret = vcpu; return 0; } static void nvmm_vcpu_put(struct nvmm_cpu *vcpu) { os_mtx_unlock(&vcpu->lock); } /* -------------------------------------------------------------------------- */ void nvmm_kill_machines(struct nvmm_owner *owner) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; size_t i, j; int error; for (i = 0; i < NVMM_MAX_MACHINES; i++) { mach = &machines[i]; os_rwl_wlock(&mach->lock); if (!mach->present || mach->owner != owner) { os_rwl_unlock(&mach->lock); continue; } /* Kill it. */ for (j = 0; j < NVMM_MAX_VCPUS; j++) { error = nvmm_vcpu_get(mach, j, &vcpu); if (error) continue; (*nvmm_impl->vcpu_destroy)(mach, vcpu); nvmm_vcpu_free(mach, vcpu); nvmm_vcpu_put(vcpu); os_atomic_dec_uint(&mach->ncpus); } (*nvmm_impl->machine_destroy)(mach); os_vmspace_destroy(mach->vm); /* Drop the kernel vmobj refs. */ for (j = 0; j < NVMM_MAX_HMAPPINGS; j++) { if (!mach->hmap[j].present) continue; os_vmobj_rel(mach->hmap[j].vmobj); } nvmm_machine_free(mach); os_rwl_unlock(&mach->lock); } } /* -------------------------------------------------------------------------- */ static int nvmm_capability(struct nvmm_owner *owner, struct nvmm_ioc_capability *args) { args->cap.version = NVMM_KERN_VERSION; args->cap.state_size = nvmm_impl->state_size; args->cap.comm_size = NVMM_COMM_PAGE_SIZE; args->cap.max_machines = NVMM_MAX_MACHINES; args->cap.max_vcpus = NVMM_MAX_VCPUS; args->cap.max_ram = NVMM_MAX_RAM; (*nvmm_impl->capability)(&args->cap); return 0; } static int nvmm_machine_create(struct nvmm_owner *owner, struct nvmm_ioc_machine_create *args) { struct nvmm_machine *mach; int error; error = nvmm_machine_alloc(&mach); if (error) return error; /* Curproc owns the machine. */ mach->owner = owner; /* Zero out the host mappings. */ memset(&mach->hmap, 0, sizeof(mach->hmap)); /* Create the machine vmspace. */ mach->gpa_begin = 0; mach->gpa_end = NVMM_MAX_RAM; mach->vm = os_vmspace_create(mach->gpa_begin, mach->gpa_end); /* Create the comm vmobj. */ mach->commvmobj = os_vmobj_create( NVMM_MAX_VCPUS * NVMM_COMM_PAGE_SIZE); (*nvmm_impl->machine_create)(mach); args->machid = mach->machid; nvmm_machine_put(mach); return 0; } static int nvmm_machine_destroy(struct nvmm_owner *owner, struct nvmm_ioc_machine_destroy *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; int error; size_t i; error = nvmm_machine_get(owner, args->machid, &mach, true); if (error) return error; for (i = 0; i < NVMM_MAX_VCPUS; i++) { error = nvmm_vcpu_get(mach, i, &vcpu); if (error) continue; (*nvmm_impl->vcpu_destroy)(mach, vcpu); nvmm_vcpu_free(mach, vcpu); nvmm_vcpu_put(vcpu); os_atomic_dec_uint(&mach->ncpus); } (*nvmm_impl->machine_destroy)(mach); /* Free the machine vmspace. */ os_vmspace_destroy(mach->vm); /* Drop the kernel vmobj refs. */ for (i = 0; i < NVMM_MAX_HMAPPINGS; i++) { if (!mach->hmap[i].present) continue; os_vmobj_rel(mach->hmap[i].vmobj); } nvmm_machine_free(mach); nvmm_machine_put(mach); return 0; } static int nvmm_machine_configure(struct nvmm_owner *owner, struct nvmm_ioc_machine_configure *args) { struct nvmm_machine *mach; size_t allocsz; uint64_t op; void *data; int error; op = NVMM_MACH_CONF_MD(args->op); if (__predict_false(op >= nvmm_impl->mach_conf_max)) { return EINVAL; } allocsz = nvmm_impl->mach_conf_sizes[op]; data = os_mem_alloc(allocsz); error = nvmm_machine_get(owner, args->machid, &mach, true); if (error) { os_mem_free(data, allocsz); return error; } error = copyin(args->conf, data, allocsz); if (error) { goto out; } error = (*nvmm_impl->machine_configure)(mach, op, data); out: nvmm_machine_put(mach); os_mem_free(data, allocsz); return error; } static int nvmm_vcpu_create(struct nvmm_owner *owner, struct nvmm_ioc_vcpu_create *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; error = nvmm_vcpu_alloc(mach, args->cpuid, &vcpu); if (error) goto out; /* Map the comm page on the kernel side, as wired. */ error = os_vmobj_map(os_kernel_map, (vaddr_t *)&vcpu->comm, NVMM_COMM_PAGE_SIZE, mach->commvmobj, args->cpuid * NVMM_COMM_PAGE_SIZE, true /* wired */, false /* !fixed */, true /* shared */, PROT_READ | PROT_WRITE, PROT_READ | PROT_WRITE); if (error) { nvmm_vcpu_free(mach, vcpu); nvmm_vcpu_put(vcpu); goto out; } memset(vcpu->comm, 0, NVMM_COMM_PAGE_SIZE); /* Map the comm page on the user side, as pageable. */ error = os_vmobj_map(os_curproc_map, (vaddr_t *)&args->comm, NVMM_COMM_PAGE_SIZE, mach->commvmobj, args->cpuid * NVMM_COMM_PAGE_SIZE, false /* !wired */, false /* !fixed */, true /* shared */, PROT_READ | PROT_WRITE, PROT_READ | PROT_WRITE); if (error) { nvmm_vcpu_free(mach, vcpu); nvmm_vcpu_put(vcpu); goto out; } error = (*nvmm_impl->vcpu_create)(mach, vcpu); if (error) { nvmm_vcpu_free(mach, vcpu); nvmm_vcpu_put(vcpu); goto out; } nvmm_vcpu_put(vcpu); os_atomic_inc_uint(&mach->ncpus); out: nvmm_machine_put(mach); return error; } static int nvmm_vcpu_destroy(struct nvmm_owner *owner, struct nvmm_ioc_vcpu_destroy *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; error = nvmm_vcpu_get(mach, args->cpuid, &vcpu); if (error) goto out; (*nvmm_impl->vcpu_destroy)(mach, vcpu); nvmm_vcpu_free(mach, vcpu); nvmm_vcpu_put(vcpu); os_atomic_dec_uint(&mach->ncpus); out: nvmm_machine_put(mach); return error; } static int nvmm_vcpu_configure(struct nvmm_owner *owner, struct nvmm_ioc_vcpu_configure *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; size_t allocsz; uint64_t op; void *data; int error; op = NVMM_VCPU_CONF_MD(args->op); if (__predict_false(op >= nvmm_impl->vcpu_conf_max)) return EINVAL; allocsz = nvmm_impl->vcpu_conf_sizes[op]; data = os_mem_alloc(allocsz); error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) { os_mem_free(data, allocsz); return error; } error = nvmm_vcpu_get(mach, args->cpuid, &vcpu); if (error) { nvmm_machine_put(mach); os_mem_free(data, allocsz); return error; } error = copyin(args->conf, data, allocsz); if (error) { goto out; } error = (*nvmm_impl->vcpu_configure)(vcpu, op, data); out: nvmm_vcpu_put(vcpu); nvmm_machine_put(mach); os_mem_free(data, allocsz); return error; } static int nvmm_vcpu_setstate(struct nvmm_owner *owner, struct nvmm_ioc_vcpu_setstate *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; error = nvmm_vcpu_get(mach, args->cpuid, &vcpu); if (error) goto out; (*nvmm_impl->vcpu_setstate)(vcpu); nvmm_vcpu_put(vcpu); out: nvmm_machine_put(mach); return error; } static int nvmm_vcpu_getstate(struct nvmm_owner *owner, struct nvmm_ioc_vcpu_getstate *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; error = nvmm_vcpu_get(mach, args->cpuid, &vcpu); if (error) goto out; (*nvmm_impl->vcpu_getstate)(vcpu); nvmm_vcpu_put(vcpu); out: nvmm_machine_put(mach); return error; } static int nvmm_vcpu_inject(struct nvmm_owner *owner, struct nvmm_ioc_vcpu_inject *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; error = nvmm_vcpu_get(mach, args->cpuid, &vcpu); if (error) goto out; error = (*nvmm_impl->vcpu_inject)(vcpu); nvmm_vcpu_put(vcpu); out: nvmm_machine_put(mach); return error; } static int nvmm_do_vcpu_run(struct nvmm_machine *mach, struct nvmm_cpu *vcpu, struct nvmm_vcpu_exit *exit) { struct vmspace *vm = mach->vm; int ret; while (1) { /* Got a signal? Or pending resched? Leave. */ if (__predict_false(os_return_needed())) { exit->reason = NVMM_VCPU_EXIT_NONE; return 0; } /* Run the VCPU. */ ret = (*nvmm_impl->vcpu_run)(mach, vcpu, exit); if (__predict_false(ret != 0)) { return ret; } /* Process nested page faults. */ if (__predict_true(exit->reason != NVMM_VCPU_EXIT_MEMORY)) { break; } if (exit->u.mem.gpa >= mach->gpa_end) { break; } if (os_vmspace_fault(vm, exit->u.mem.gpa, exit->u.mem.prot)) { break; } } return 0; } static int nvmm_vcpu_run(struct nvmm_owner *owner, struct nvmm_ioc_vcpu_run *args) { struct nvmm_machine *mach; struct nvmm_cpu *vcpu; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; error = nvmm_vcpu_get(mach, args->cpuid, &vcpu); if (error) goto out; error = nvmm_do_vcpu_run(mach, vcpu, &args->exit); nvmm_vcpu_put(vcpu); out: nvmm_machine_put(mach); return error; } /* -------------------------------------------------------------------------- */ static os_vmobj_t * nvmm_hmapping_getvmobj(struct nvmm_machine *mach, uintptr_t hva, size_t size, size_t *off) { struct nvmm_hmapping *hmapping; size_t i; for (i = 0; i < NVMM_MAX_HMAPPINGS; i++) { hmapping = &mach->hmap[i]; if (!hmapping->present) { continue; } if (hva >= hmapping->hva && hva + size <= hmapping->hva + hmapping->size) { *off = hva - hmapping->hva; return hmapping->vmobj; } } return NULL; } static int nvmm_hmapping_validate(struct nvmm_machine *mach, uintptr_t hva, size_t size) { struct nvmm_hmapping *hmapping; size_t i; uintptr_t hva_end; uintptr_t hmap_end; if ((hva % PAGE_SIZE) != 0 || (size % PAGE_SIZE) != 0) { return EINVAL; } if (hva == 0) { return EINVAL; } /* * Overflow tests MUST be done very carefully to avoid compiler * optimizations from effectively deleting the test. */ hva_end = hva + size; if (hva_end <= hva) return EINVAL; /* * Overlap tests */ for (i = 0; i < NVMM_MAX_HMAPPINGS; i++) { hmapping = &mach->hmap[i]; if (!hmapping->present) { continue; } hmap_end = hmapping->hva + hmapping->size; if (hva >= hmapping->hva && hva_end <= hmap_end) break; if (hva >= hmapping->hva && hva < hmap_end) return EEXIST; if (hva_end > hmapping->hva && hva_end <= hmap_end) return EEXIST; if (hva <= hmapping->hva && hva_end >= hmap_end) return EEXIST; } return 0; } static struct nvmm_hmapping * nvmm_hmapping_alloc(struct nvmm_machine *mach) { struct nvmm_hmapping *hmapping; size_t i; for (i = 0; i < NVMM_MAX_HMAPPINGS; i++) { hmapping = &mach->hmap[i]; if (!hmapping->present) { hmapping->present = true; return hmapping; } } return NULL; } static int nvmm_hmapping_free(struct nvmm_machine *mach, uintptr_t hva, size_t size) { struct nvmm_hmapping *hmapping; size_t i; for (i = 0; i < NVMM_MAX_HMAPPINGS; i++) { hmapping = &mach->hmap[i]; if (!hmapping->present || hmapping->hva != hva || hmapping->size != size) { continue; } os_vmobj_unmap(os_curproc_map, hmapping->hva, hmapping->hva + hmapping->size, false); os_vmobj_rel(hmapping->vmobj); hmapping->vmobj = NULL; hmapping->present = false; return 0; } return ENOENT; } static int nvmm_hva_map(struct nvmm_owner *owner, struct nvmm_ioc_hva_map *args) { struct nvmm_machine *mach; struct nvmm_hmapping *hmapping; vaddr_t uva; int error; error = nvmm_machine_get(owner, args->machid, &mach, true); if (error) return error; error = nvmm_hmapping_validate(mach, args->hva, args->size); if (error) goto out; hmapping = nvmm_hmapping_alloc(mach); if (hmapping == NULL) { error = ENOBUFS; goto out; } hmapping->hva = args->hva; hmapping->size = args->size; hmapping->vmobj = os_vmobj_create(hmapping->size); uva = hmapping->hva; /* Map the vmobj into the user address space, as pageable. */ error = os_vmobj_map(os_curproc_map, &uva, hmapping->size, hmapping->vmobj, 0, false /* !wired */, true /* fixed */, true /* shared */, PROT_READ | PROT_WRITE, PROT_READ | PROT_WRITE); out: nvmm_machine_put(mach); return error; } static int nvmm_hva_unmap(struct nvmm_owner *owner, struct nvmm_ioc_hva_unmap *args) { struct nvmm_machine *mach; int error; error = nvmm_machine_get(owner, args->machid, &mach, true); if (error) return error; error = nvmm_hmapping_free(mach, args->hva, args->size); nvmm_machine_put(mach); return error; } /* -------------------------------------------------------------------------- */ static int nvmm_gpa_map(struct nvmm_owner *owner, struct nvmm_ioc_gpa_map *args) { struct nvmm_machine *mach; os_vmobj_t *vmobj; gpaddr_t gpa; gpaddr_t gpa_end; size_t off; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; if ((args->prot & ~(PROT_READ|PROT_WRITE|PROT_EXEC)) != 0) { error = EINVAL; goto out; } /* * Overflow tests MUST be done very carefully to avoid compiler * optimizations from effectively deleting the test. */ gpa = args->gpa; gpa_end = gpa + args->size; if (gpa_end <= gpa) { error = EINVAL; goto out; } if ((gpa % PAGE_SIZE) != 0 || (args->size % PAGE_SIZE) != 0 || (args->hva % PAGE_SIZE) != 0) { error = EINVAL; goto out; } if (args->hva == 0) { error = EINVAL; goto out; } if (gpa < mach->gpa_begin || gpa >= mach->gpa_end) { error = EINVAL; goto out; } if (gpa_end > mach->gpa_end) { error = EINVAL; goto out; } vmobj = nvmm_hmapping_getvmobj(mach, args->hva, args->size, &off); if (vmobj == NULL) { error = EINVAL; goto out; } /* Map the vmobj into the machine address space, as pageable. */ error = os_vmobj_map(&mach->vm->vm_map, &gpa, args->size, vmobj, off, false /* !wired */, true /* fixed */, false /* !shared */, args->prot, PROT_READ | PROT_WRITE | PROT_EXEC); out: nvmm_machine_put(mach); return error; } static int nvmm_gpa_unmap(struct nvmm_owner *owner, struct nvmm_ioc_gpa_unmap *args) { struct nvmm_machine *mach; gpaddr_t gpa; gpaddr_t gpa_end; int error; error = nvmm_machine_get(owner, args->machid, &mach, false); if (error) return error; /* * Overflow tests MUST be done very carefully to avoid compiler * optimizations from effectively deleting the test. */ gpa = args->gpa; gpa_end = gpa + args->size; if (gpa_end <= gpa) { error = EINVAL; goto out; } if ((gpa % PAGE_SIZE) != 0 || (args->size % PAGE_SIZE) != 0) { error = EINVAL; goto out; } if (gpa < mach->gpa_begin || gpa >= mach->gpa_end) { error = EINVAL; goto out; } if (gpa_end >= mach->gpa_end) { error = EINVAL; goto out; } /* Unmap the memory from the machine. */ os_vmobj_unmap(&mach->vm->vm_map, gpa, gpa + args->size, false); out: nvmm_machine_put(mach); return error; } /* -------------------------------------------------------------------------- */ static int nvmm_ctl_mach_info(struct nvmm_owner *owner, struct nvmm_ioc_ctl *args) { struct nvmm_ctl_mach_info ctl; struct nvmm_machine *mach; int error; size_t i; if (args->size != sizeof(ctl)) return EINVAL; error = copyin(args->data, &ctl, sizeof(ctl)); if (error) return error; error = nvmm_machine_get(owner, ctl.machid, &mach, true); if (error) return error; ctl.nvcpus = mach->ncpus; ctl.nram = 0; for (i = 0; i < NVMM_MAX_HMAPPINGS; i++) { if (!mach->hmap[i].present) continue; ctl.nram += mach->hmap[i].size; } ctl.pid = mach->owner->pid; ctl.time = mach->time; nvmm_machine_put(mach); error = copyout(&ctl, args->data, sizeof(ctl)); if (error) return error; return 0; } static int nvmm_ctl(struct nvmm_owner *owner, struct nvmm_ioc_ctl *args) { switch (args->op) { case NVMM_CTL_MACH_INFO: return nvmm_ctl_mach_info(owner, args); default: return EINVAL; } } /* -------------------------------------------------------------------------- */ const struct nvmm_impl * nvmm_ident(void) { size_t i; for (i = 0; i < __arraycount(nvmm_impl_list); i++) { if ((*nvmm_impl_list[i]->ident)()) return nvmm_impl_list[i]; } return NULL; } int nvmm_init(void) { size_t i, n; nvmm_impl = nvmm_ident(); if (nvmm_impl == NULL) return ENOTSUP; for (i = 0; i < NVMM_MAX_MACHINES; i++) { machines[i].machid = i; os_rwl_init(&machines[i].lock); for (n = 0; n < NVMM_MAX_VCPUS; n++) { machines[i].cpus[n].present = false; machines[i].cpus[n].cpuid = n; os_mtx_init(&machines[i].cpus[n].lock); } } (*nvmm_impl->init)(); return 0; } void nvmm_fini(void) { size_t i, n; for (i = 0; i < NVMM_MAX_MACHINES; i++) { os_rwl_destroy(&machines[i].lock); for (n = 0; n < NVMM_MAX_VCPUS; n++) { os_mtx_destroy(&machines[i].cpus[n].lock); } } (*nvmm_impl->fini)(); nvmm_impl = NULL; } /* -------------------------------------------------------------------------- */ int nvmm_ioctl(struct nvmm_owner *owner, unsigned long cmd, void *data) { switch (cmd) { case NVMM_IOC_CAPABILITY: return nvmm_capability(owner, data); case NVMM_IOC_MACHINE_CREATE: return nvmm_machine_create(owner, data); case NVMM_IOC_MACHINE_DESTROY: return nvmm_machine_destroy(owner, data); case NVMM_IOC_MACHINE_CONFIGURE: return nvmm_machine_configure(owner, data); case NVMM_IOC_VCPU_CREATE: return nvmm_vcpu_create(owner, data); case NVMM_IOC_VCPU_DESTROY: return nvmm_vcpu_destroy(owner, data); case NVMM_IOC_VCPU_CONFIGURE: return nvmm_vcpu_configure(owner, data); case NVMM_IOC_VCPU_SETSTATE: return nvmm_vcpu_setstate(owner, data); case NVMM_IOC_VCPU_GETSTATE: return nvmm_vcpu_getstate(owner, data); case NVMM_IOC_VCPU_INJECT: return nvmm_vcpu_inject(owner, data); case NVMM_IOC_VCPU_RUN: return nvmm_vcpu_run(owner, data); case NVMM_IOC_GPA_MAP: return nvmm_gpa_map(owner, data); case NVMM_IOC_GPA_UNMAP: return nvmm_gpa_unmap(owner, data); case NVMM_IOC_HVA_MAP: return nvmm_hva_map(owner, data); case NVMM_IOC_HVA_UNMAP: return nvmm_hva_unmap(owner, data); case NVMM_IOC_CTL: return nvmm_ctl(owner, data); default: return EINVAL; } } |