1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2011 NetApp, Inc. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 * 28 * $FreeBSD$ 29 */ 30 31 #ifndef _VMM_H_ 32 #define _VMM_H_ 33 34 #include <sys/sdt.h> 35 #include <x86/segments.h> 36 37 #ifdef _KERNEL 38 SDT_PROVIDER_DECLARE(vmm); 39 #endif 40 41 enum vm_suspend_how { 42 VM_SUSPEND_NONE, 43 VM_SUSPEND_RESET, 44 VM_SUSPEND_POWEROFF, 45 VM_SUSPEND_HALT, 46 VM_SUSPEND_TRIPLEFAULT, 47 VM_SUSPEND_LAST 48 }; 49 50 /* 51 * Identifiers for architecturally defined registers. 52 */ 53 enum vm_reg_name { 54 VM_REG_GUEST_RAX, 55 VM_REG_GUEST_RBX, 56 VM_REG_GUEST_RCX, 57 VM_REG_GUEST_RDX, 58 VM_REG_GUEST_RSI, 59 VM_REG_GUEST_RDI, 60 VM_REG_GUEST_RBP, 61 VM_REG_GUEST_R8, 62 VM_REG_GUEST_R9, 63 VM_REG_GUEST_R10, 64 VM_REG_GUEST_R11, 65 VM_REG_GUEST_R12, 66 VM_REG_GUEST_R13, 67 VM_REG_GUEST_R14, 68 VM_REG_GUEST_R15, 69 VM_REG_GUEST_CR0, 70 VM_REG_GUEST_CR3, 71 VM_REG_GUEST_CR4, 72 VM_REG_GUEST_DR7, 73 VM_REG_GUEST_RSP, 74 VM_REG_GUEST_RIP, 75 VM_REG_GUEST_RFLAGS, 76 VM_REG_GUEST_ES, 77 VM_REG_GUEST_CS, 78 VM_REG_GUEST_SS, 79 VM_REG_GUEST_DS, 80 VM_REG_GUEST_FS, 81 VM_REG_GUEST_GS, 82 VM_REG_GUEST_LDTR, 83 VM_REG_GUEST_TR, 84 VM_REG_GUEST_IDTR, 85 VM_REG_GUEST_GDTR, 86 VM_REG_GUEST_EFER, 87 VM_REG_GUEST_CR2, 88 VM_REG_GUEST_PDPTE0, 89 VM_REG_GUEST_PDPTE1, 90 VM_REG_GUEST_PDPTE2, 91 VM_REG_GUEST_PDPTE3, 92 VM_REG_GUEST_INTR_SHADOW, 93 VM_REG_GUEST_DR0, 94 VM_REG_GUEST_DR1, 95 VM_REG_GUEST_DR2, 96 VM_REG_GUEST_DR3, 97 VM_REG_GUEST_DR6, 98 VM_REG_LAST 99 }; 100 101 enum x2apic_state { 102 X2APIC_DISABLED, 103 X2APIC_ENABLED, 104 X2APIC_STATE_LAST 105 }; 106 107 #define VM_INTINFO_VECTOR(info) ((info) & 0xff) 108 #define VM_INTINFO_DEL_ERRCODE 0x800 109 #define VM_INTINFO_RSVD 0x7ffff000 110 #define VM_INTINFO_VALID 0x80000000 111 #define VM_INTINFO_TYPE 0x700 112 #define VM_INTINFO_HWINTR (0 << 8) 113 #define VM_INTINFO_NMI (2 << 8) 114 #define VM_INTINFO_HWEXCEPTION (3 << 8) 115 #define VM_INTINFO_SWINTR (4 << 8) 116 117 #ifdef _KERNEL 118 119 #define VM_MAX_NAMELEN 32 120 121 struct vm; 122 struct vm_exception; 123 struct seg_desc; 124 struct vm_exit; 125 struct vm_run; 126 struct vhpet; 127 struct vioapic; 128 struct vlapic; 129 struct vmspace; 130 struct vm_object; 131 struct vm_guest_paging; 132 struct pmap; 133 134 struct vm_eventinfo { 135 void *rptr; /* rendezvous cookie */ 136 int *sptr; /* suspend cookie */ 137 int *iptr; /* reqidle cookie */ 138 }; 139 140 typedef int (*vmm_init_func_t)(int ipinum); 141 typedef int (*vmm_cleanup_func_t)(void); 142 typedef void (*vmm_resume_func_t)(void); 143 typedef void * (*vmi_init_func_t)(struct vm *vm, struct pmap *pmap); 144 typedef int (*vmi_run_func_t)(void *vmi, int vcpu, register_t rip, 145 struct pmap *pmap, struct vm_eventinfo *info); 146 typedef void (*vmi_cleanup_func_t)(void *vmi); 147 typedef int (*vmi_get_register_t)(void *vmi, int vcpu, int num, 148 uint64_t *retval); 149 typedef int (*vmi_set_register_t)(void *vmi, int vcpu, int num, 150 uint64_t val); 151 typedef int (*vmi_get_desc_t)(void *vmi, int vcpu, int num, 152 struct seg_desc *desc); 153 typedef int (*vmi_set_desc_t)(void *vmi, int vcpu, int num, 154 struct seg_desc *desc); 155 typedef int (*vmi_get_cap_t)(void *vmi, int vcpu, int num, int *retval); 156 typedef int (*vmi_set_cap_t)(void *vmi, int vcpu, int num, int val); 157 typedef struct vmspace * (*vmi_vmspace_alloc)(vm_offset_t min, vm_offset_t max); 158 typedef void (*vmi_vmspace_free)(struct vmspace *vmspace); 159 typedef struct vlapic * (*vmi_vlapic_init)(void *vmi, int vcpu); 160 typedef void (*vmi_vlapic_cleanup)(void *vmi, struct vlapic *vlapic); 161 162 struct vmm_ops { 163 vmm_init_func_t init; /* module wide initialization */ 164 vmm_cleanup_func_t cleanup; 165 vmm_resume_func_t resume; 166 167 vmi_init_func_t vminit; /* vm-specific initialization */ 168 vmi_run_func_t vmrun; 169 vmi_cleanup_func_t vmcleanup; 170 vmi_get_register_t vmgetreg; 171 vmi_set_register_t vmsetreg; 172 vmi_get_desc_t vmgetdesc; 173 vmi_set_desc_t vmsetdesc; 174 vmi_get_cap_t vmgetcap; 175 vmi_set_cap_t vmsetcap; 176 vmi_vmspace_alloc vmspace_alloc; 177 vmi_vmspace_free vmspace_free; 178 vmi_vlapic_init vlapic_init; 179 vmi_vlapic_cleanup vlapic_cleanup; 180 }; 181 182 extern struct vmm_ops vmm_ops_intel; 183 extern struct vmm_ops vmm_ops_amd; 184 185 int vm_create(const char *name, struct vm **retvm); 186 void vm_destroy(struct vm *vm); 187 int vm_reinit(struct vm *vm); 188 const char *vm_name(struct vm *vm); 189 void vm_get_topology(struct vm *vm, uint16_t *sockets, uint16_t *cores, 190 uint16_t *threads, uint16_t *maxcpus); 191 int vm_set_topology(struct vm *vm, uint16_t sockets, uint16_t cores, 192 uint16_t threads, uint16_t maxcpus); 193 194 /* 195 * APIs that modify the guest memory map require all vcpus to be frozen. 196 */ 197 int vm_mmap_memseg(struct vm *vm, vm_paddr_t gpa, int segid, vm_ooffset_t off, 198 size_t len, int prot, int flags); 199 int vm_alloc_memseg(struct vm *vm, int ident, size_t len, bool sysmem); 200 void vm_free_memseg(struct vm *vm, int ident); 201 int vm_map_mmio(struct vm *vm, vm_paddr_t gpa, size_t len, vm_paddr_t hpa); 202 int vm_unmap_mmio(struct vm *vm, vm_paddr_t gpa, size_t len); 203 int vm_assign_pptdev(struct vm *vm, int bus, int slot, int func); 204 int vm_unassign_pptdev(struct vm *vm, int bus, int slot, int func); 205 206 /* 207 * APIs that inspect the guest memory map require only a *single* vcpu to 208 * be frozen. This acts like a read lock on the guest memory map since any 209 * modification requires *all* vcpus to be frozen. 210 */ 211 int vm_mmap_getnext(struct vm *vm, vm_paddr_t *gpa, int *segid, 212 vm_ooffset_t *segoff, size_t *len, int *prot, int *flags); 213 int vm_get_memseg(struct vm *vm, int ident, size_t *len, bool *sysmem, 214 struct vm_object **objptr); 215 void *vm_gpa_hold(struct vm *, int vcpuid, vm_paddr_t gpa, size_t len, 216 int prot, void **cookie); 217 void vm_gpa_release(void *cookie); 218 bool vm_mem_allocated(struct vm *vm, int vcpuid, vm_paddr_t gpa); 219 220 int vm_get_register(struct vm *vm, int vcpu, int reg, uint64_t *retval); 221 int vm_set_register(struct vm *vm, int vcpu, int reg, uint64_t val); 222 int vm_get_seg_desc(struct vm *vm, int vcpu, int reg, 223 struct seg_desc *ret_desc); 224 int vm_set_seg_desc(struct vm *vm, int vcpu, int reg, 225 struct seg_desc *desc); 226 int vm_run(struct vm *vm, struct vm_run *vmrun); 227 int vm_suspend(struct vm *vm, enum vm_suspend_how how); 228 int vm_inject_nmi(struct vm *vm, int vcpu); 229 int vm_nmi_pending(struct vm *vm, int vcpuid); 230 void vm_nmi_clear(struct vm *vm, int vcpuid); 231 int vm_inject_extint(struct vm *vm, int vcpu); 232 int vm_extint_pending(struct vm *vm, int vcpuid); 233 void vm_extint_clear(struct vm *vm, int vcpuid); 234 struct vlapic *vm_lapic(struct vm *vm, int cpu); 235 struct vioapic *vm_ioapic(struct vm *vm); 236 struct vhpet *vm_hpet(struct vm *vm); 237 int vm_get_capability(struct vm *vm, int vcpu, int type, int *val); 238 int vm_set_capability(struct vm *vm, int vcpu, int type, int val); 239 int vm_get_x2apic_state(struct vm *vm, int vcpu, enum x2apic_state *state); 240 int vm_set_x2apic_state(struct vm *vm, int vcpu, enum x2apic_state state); 241 int vm_apicid2vcpuid(struct vm *vm, int apicid); 242 int vm_activate_cpu(struct vm *vm, int vcpu); 243 int vm_suspend_cpu(struct vm *vm, int vcpu); 244 int vm_resume_cpu(struct vm *vm, int vcpu); 245 struct vm_exit *vm_exitinfo(struct vm *vm, int vcpuid); 246 void vm_exit_suspended(struct vm *vm, int vcpuid, uint64_t rip); 247 void vm_exit_debug(struct vm *vm, int vcpuid, uint64_t rip); 248 void vm_exit_rendezvous(struct vm *vm, int vcpuid, uint64_t rip); 249 void vm_exit_astpending(struct vm *vm, int vcpuid, uint64_t rip); 250 void vm_exit_reqidle(struct vm *vm, int vcpuid, uint64_t rip); 251 252 #ifdef _SYS__CPUSET_H_ 253 /* 254 * Rendezvous all vcpus specified in 'dest' and execute 'func(arg)'. 255 * The rendezvous 'func(arg)' is not allowed to do anything that will 256 * cause the thread to be put to sleep. 257 * 258 * If the rendezvous is being initiated from a vcpu context then the 259 * 'vcpuid' must refer to that vcpu, otherwise it should be set to -1. 260 * 261 * The caller cannot hold any locks when initiating the rendezvous. 262 * 263 * The implementation of this API may cause vcpus other than those specified 264 * by 'dest' to be stalled. The caller should not rely on any vcpus making 265 * forward progress when the rendezvous is in progress. 266 */ 267 typedef void (*vm_rendezvous_func_t)(struct vm *vm, int vcpuid, void *arg); 268 void vm_smp_rendezvous(struct vm *vm, int vcpuid, cpuset_t dest, 269 vm_rendezvous_func_t func, void *arg); 270 cpuset_t vm_active_cpus(struct vm *vm); 271 cpuset_t vm_debug_cpus(struct vm *vm); 272 cpuset_t vm_suspended_cpus(struct vm *vm); 273 #endif /* _SYS__CPUSET_H_ */ 274 275 static __inline int 276 vcpu_rendezvous_pending(struct vm_eventinfo *info) 277 { 278 279 return (*((uintptr_t *)(info->rptr)) != 0); 280 } 281 282 static __inline int 283 vcpu_suspended(struct vm_eventinfo *info) 284 { 285 286 return (*info->sptr); 287 } 288 289 static __inline int 290 vcpu_reqidle(struct vm_eventinfo *info) 291 { 292 293 return (*info->iptr); 294 } 295 296 int vcpu_debugged(struct vm *vm, int vcpuid); 297 298 /* 299 * Return 1 if device indicated by bus/slot/func is supposed to be a 300 * pci passthrough device. 301 * 302 * Return 0 otherwise. 303 */ 304 int vmm_is_pptdev(int bus, int slot, int func); 305 306 void *vm_iommu_domain(struct vm *vm); 307 308 enum vcpu_state { 309 VCPU_IDLE, 310 VCPU_FROZEN, 311 VCPU_RUNNING, 312 VCPU_SLEEPING, 313 }; 314 315 int vcpu_set_state(struct vm *vm, int vcpu, enum vcpu_state state, 316 bool from_idle); 317 enum vcpu_state vcpu_get_state(struct vm *vm, int vcpu, int *hostcpu); 318 319 static int __inline 320 vcpu_is_running(struct vm *vm, int vcpu, int *hostcpu) 321 { 322 return (vcpu_get_state(vm, vcpu, hostcpu) == VCPU_RUNNING); 323 } 324 325 #ifdef _SYS_PROC_H_ 326 static int __inline 327 vcpu_should_yield(struct vm *vm, int vcpu) 328 { 329 330 if (curthread->td_flags & (TDF_ASTPENDING | TDF_NEEDRESCHED)) 331 return (1); 332 else if (curthread->td_owepreempt) 333 return (1); 334 else 335 return (0); 336 } 337 #endif 338 339 void *vcpu_stats(struct vm *vm, int vcpu); 340 void vcpu_notify_event(struct vm *vm, int vcpuid, bool lapic_intr); 341 struct vmspace *vm_get_vmspace(struct vm *vm); 342 struct vatpic *vm_atpic(struct vm *vm); 343 struct vatpit *vm_atpit(struct vm *vm); 344 struct vpmtmr *vm_pmtmr(struct vm *vm); 345 struct vrtc *vm_rtc(struct vm *vm); 346 347 /* 348 * Inject exception 'vector' into the guest vcpu. This function returns 0 on 349 * success and non-zero on failure. 350 * 351 * Wrapper functions like 'vm_inject_gp()' should be preferred to calling 352 * this function directly because they enforce the trap-like or fault-like 353 * behavior of an exception. 354 * 355 * This function should only be called in the context of the thread that is 356 * executing this vcpu. 357 */ 358 int vm_inject_exception(struct vm *vm, int vcpuid, int vector, int err_valid, 359 uint32_t errcode, int restart_instruction); 360 361 /* 362 * This function is called after a VM-exit that occurred during exception or 363 * interrupt delivery through the IDT. The format of 'intinfo' is described 364 * in Figure 15-1, "EXITINTINFO for All Intercepts", APM, Vol 2. 365 * 366 * If a VM-exit handler completes the event delivery successfully then it 367 * should call vm_exit_intinfo() to extinguish the pending event. For e.g., 368 * if the task switch emulation is triggered via a task gate then it should 369 * call this function with 'intinfo=0' to indicate that the external event 370 * is not pending anymore. 371 * 372 * Return value is 0 on success and non-zero on failure. 373 */ 374 int vm_exit_intinfo(struct vm *vm, int vcpuid, uint64_t intinfo); 375 376 /* 377 * This function is called before every VM-entry to retrieve a pending 378 * event that should be injected into the guest. This function combines 379 * nested events into a double or triple fault. 380 * 381 * Returns 0 if there are no events that need to be injected into the guest 382 * and non-zero otherwise. 383 */ 384 int vm_entry_intinfo(struct vm *vm, int vcpuid, uint64_t *info); 385 386 int vm_get_intinfo(struct vm *vm, int vcpuid, uint64_t *info1, uint64_t *info2); 387 388 enum vm_reg_name vm_segment_name(int seg_encoding); 389 390 struct vm_copyinfo { 391 uint64_t gpa; 392 size_t len; 393 void *hva; 394 void *cookie; 395 }; 396 397 /* 398 * Set up 'copyinfo[]' to copy to/from guest linear address space starting 399 * at 'gla' and 'len' bytes long. The 'prot' should be set to PROT_READ for 400 * a copyin or PROT_WRITE for a copyout. 401 * 402 * retval is_fault Interpretation 403 * 0 0 Success 404 * 0 1 An exception was injected into the guest 405 * EFAULT N/A Unrecoverable error 406 * 407 * The 'copyinfo[]' can be passed to 'vm_copyin()' or 'vm_copyout()' only if 408 * the return value is 0. The 'copyinfo[]' resources should be freed by calling 409 * 'vm_copy_teardown()' after the copy is done. 410 */ 411 int vm_copy_setup(struct vm *vm, int vcpuid, struct vm_guest_paging *paging, 412 uint64_t gla, size_t len, int prot, struct vm_copyinfo *copyinfo, 413 int num_copyinfo, int *is_fault); 414 void vm_copy_teardown(struct vm *vm, int vcpuid, struct vm_copyinfo *copyinfo, 415 int num_copyinfo); 416 void vm_copyin(struct vm *vm, int vcpuid, struct vm_copyinfo *copyinfo, 417 void *kaddr, size_t len); 418 void vm_copyout(struct vm *vm, int vcpuid, const void *kaddr, 419 struct vm_copyinfo *copyinfo, size_t len); 420 421 int vcpu_trace_exceptions(struct vm *vm, int vcpuid); 422 #endif /* KERNEL */ 423 424 #define VM_MAXCPU 16 /* maximum virtual cpus */ 425 426 /* 427 * Identifiers for optional vmm capabilities 428 */ 429 enum vm_cap_type { 430 VM_CAP_HALT_EXIT, 431 VM_CAP_MTRAP_EXIT, 432 VM_CAP_PAUSE_EXIT, 433 VM_CAP_UNRESTRICTED_GUEST, 434 VM_CAP_ENABLE_INVPCID, 435 VM_CAP_MAX 436 }; 437 438 enum vm_intr_trigger { 439 EDGE_TRIGGER, 440 LEVEL_TRIGGER 441 }; 442 443 /* 444 * The 'access' field has the format specified in Table 21-2 of the Intel 445 * Architecture Manual vol 3b. 446 * 447 * XXX The contents of the 'access' field are architecturally defined except 448 * bit 16 - Segment Unusable. 449 */ 450 struct seg_desc { 451 uint64_t base; 452 uint32_t limit; 453 uint32_t access; 454 }; 455 #define SEG_DESC_TYPE(access) ((access) & 0x001f) 456 #define SEG_DESC_DPL(access) (((access) >> 5) & 0x3) 457 #define SEG_DESC_PRESENT(access) (((access) & 0x0080) ? 1 : 0) 458 #define SEG_DESC_DEF32(access) (((access) & 0x4000) ? 1 : 0) 459 #define SEG_DESC_GRANULARITY(access) (((access) & 0x8000) ? 1 : 0) 460 #define SEG_DESC_UNUSABLE(access) (((access) & 0x10000) ? 1 : 0) 461 462 enum vm_cpu_mode { 463 CPU_MODE_REAL, 464 CPU_MODE_PROTECTED, 465 CPU_MODE_COMPATIBILITY, /* IA-32E mode (CS.L = 0) */ 466 CPU_MODE_64BIT, /* IA-32E mode (CS.L = 1) */ 467 }; 468 469 enum vm_paging_mode { 470 PAGING_MODE_FLAT, 471 PAGING_MODE_32, 472 PAGING_MODE_PAE, 473 PAGING_MODE_64, 474 }; 475 476 struct vm_guest_paging { 477 uint64_t cr3; 478 int cpl; 479 enum vm_cpu_mode cpu_mode; 480 enum vm_paging_mode paging_mode; 481 }; 482 483 /* 484 * The data structures 'vie' and 'vie_op' are meant to be opaque to the 485 * consumers of instruction decoding. The only reason why their contents 486 * need to be exposed is because they are part of the 'vm_exit' structure. 487 */ 488 struct vie_op { 489 uint8_t op_byte; /* actual opcode byte */ 490 uint8_t op_type; /* type of operation (e.g. MOV) */ 491 uint16_t op_flags; 492 }; 493 494 #define VIE_INST_SIZE 15 495 struct vie { 496 uint8_t inst[VIE_INST_SIZE]; /* instruction bytes */ 497 uint8_t num_valid; /* size of the instruction */ 498 uint8_t num_processed; 499 500 uint8_t addrsize:4, opsize:4; /* address and operand sizes */ 501 uint8_t rex_w:1, /* REX prefix */ 502 rex_r:1, 503 rex_x:1, 504 rex_b:1, 505 rex_present:1, 506 repz_present:1, /* REP/REPE/REPZ prefix */ 507 repnz_present:1, /* REPNE/REPNZ prefix */ 508 opsize_override:1, /* Operand size override */ 509 addrsize_override:1, /* Address size override */ 510 segment_override:1; /* Segment override */ 511 512 uint8_t mod:2, /* ModRM byte */ 513 reg:4, 514 rm:4; 515 516 uint8_t ss:2, /* SIB byte */ 517 index:4, 518 base:4; 519 520 uint8_t disp_bytes; 521 uint8_t imm_bytes; 522 523 uint8_t scale; 524 int base_register; /* VM_REG_GUEST_xyz */ 525 int index_register; /* VM_REG_GUEST_xyz */ 526 int segment_register; /* VM_REG_GUEST_xyz */ 527 528 int64_t displacement; /* optional addr displacement */ 529 int64_t immediate; /* optional immediate operand */ 530 531 uint8_t decoded; /* set to 1 if successfully decoded */ 532 533 struct vie_op op; /* opcode description */ 534 }; 535 536 enum vm_exitcode { 537 VM_EXITCODE_INOUT, 538 VM_EXITCODE_VMX, 539 VM_EXITCODE_BOGUS, 540 VM_EXITCODE_RDMSR, 541 VM_EXITCODE_WRMSR, 542 VM_EXITCODE_HLT, 543 VM_EXITCODE_MTRAP, 544 VM_EXITCODE_PAUSE, 545 VM_EXITCODE_PAGING, 546 VM_EXITCODE_INST_EMUL, 547 VM_EXITCODE_SPINUP_AP, 548 VM_EXITCODE_DEPRECATED1, /* used to be SPINDOWN_CPU */ 549 VM_EXITCODE_RENDEZVOUS, 550 VM_EXITCODE_IOAPIC_EOI, 551 VM_EXITCODE_SUSPENDED, 552 VM_EXITCODE_INOUT_STR, 553 VM_EXITCODE_TASK_SWITCH, 554 VM_EXITCODE_MONITOR, 555 VM_EXITCODE_MWAIT, 556 VM_EXITCODE_SVM, 557 VM_EXITCODE_REQIDLE, 558 VM_EXITCODE_DEBUG, 559 VM_EXITCODE_MAX 560 }; 561 562 struct vm_inout { 563 uint16_t bytes:3; /* 1 or 2 or 4 */ 564 uint16_t in:1; 565 uint16_t string:1; 566 uint16_t rep:1; 567 uint16_t port; 568 uint32_t eax; /* valid for out */ 569 }; 570 571 struct vm_inout_str { 572 struct vm_inout inout; /* must be the first element */ 573 struct vm_guest_paging paging; 574 uint64_t rflags; 575 uint64_t cr0; 576 uint64_t index; 577 uint64_t count; /* rep=1 (%rcx), rep=0 (1) */ 578 int addrsize; 579 enum vm_reg_name seg_name; 580 struct seg_desc seg_desc; 581 }; 582 583 enum task_switch_reason { 584 TSR_CALL, 585 TSR_IRET, 586 TSR_JMP, 587 TSR_IDT_GATE, /* task gate in IDT */ 588 }; 589 590 struct vm_task_switch { 591 uint16_t tsssel; /* new TSS selector */ 592 int ext; /* task switch due to external event */ 593 uint32_t errcode; 594 int errcode_valid; /* push 'errcode' on the new stack */ 595 enum task_switch_reason reason; 596 struct vm_guest_paging paging; 597 }; 598 599 struct vm_exit { 600 enum vm_exitcode exitcode; 601 int inst_length; /* 0 means unknown */ 602 uint64_t rip; 603 union { 604 struct vm_inout inout; 605 struct vm_inout_str inout_str; 606 struct { 607 uint64_t gpa; 608 int fault_type; 609 } paging; 610 struct { 611 uint64_t gpa; 612 uint64_t gla; 613 uint64_t cs_base; 614 int cs_d; /* CS.D */ 615 struct vm_guest_paging paging; 616 struct vie vie; 617 } inst_emul; 618 /* 619 * VMX specific payload. Used when there is no "better" 620 * exitcode to represent the VM-exit. 621 */ 622 struct { 623 int status; /* vmx inst status */ 624 /* 625 * 'exit_reason' and 'exit_qualification' are valid 626 * only if 'status' is zero. 627 */ 628 uint32_t exit_reason; 629 uint64_t exit_qualification; 630 /* 631 * 'inst_error' and 'inst_type' are valid 632 * only if 'status' is non-zero. 633 */ 634 int inst_type; 635 int inst_error; 636 } vmx; 637 /* 638 * SVM specific payload. 639 */ 640 struct { 641 uint64_t exitcode; 642 uint64_t exitinfo1; 643 uint64_t exitinfo2; 644 } svm; 645 struct { 646 uint32_t code; /* ecx value */ 647 uint64_t wval; 648 } msr; 649 struct { 650 int vcpu; 651 uint64_t rip; 652 } spinup_ap; 653 struct { 654 uint64_t rflags; 655 uint64_t intr_status; 656 } hlt; 657 struct { 658 int vector; 659 } ioapic_eoi; 660 struct { 661 enum vm_suspend_how how; 662 } suspended; 663 struct vm_task_switch task_switch; 664 } u; 665 }; 666 667 /* APIs to inject faults into the guest */ 668 void vm_inject_fault(void *vm, int vcpuid, int vector, int errcode_valid, 669 int errcode); 670 671 static __inline void 672 vm_inject_ud(void *vm, int vcpuid) 673 { 674 vm_inject_fault(vm, vcpuid, IDT_UD, 0, 0); 675 } 676 677 static __inline void 678 vm_inject_gp(void *vm, int vcpuid) 679 { 680 vm_inject_fault(vm, vcpuid, IDT_GP, 1, 0); 681 } 682 683 static __inline void 684 vm_inject_ac(void *vm, int vcpuid, int errcode) 685 { 686 vm_inject_fault(vm, vcpuid, IDT_AC, 1, errcode); 687 } 688 689 static __inline void 690 vm_inject_ss(void *vm, int vcpuid, int errcode) 691 { 692 vm_inject_fault(vm, vcpuid, IDT_SS, 1, errcode); 693 } 694 695 void vm_inject_pf(void *vm, int vcpuid, int error_code, uint64_t cr2); 696 697 int vm_restart_instruction(void *vm, int vcpuid); 698 699 #endif /* _VMM_H_ */ 700