2 * This file is part of the Palacios Virtual Machine Monitor developed
3 * by the V3VEE Project with funding from the United States National
4 * Science Foundation and the Department of Energy.
6 * The V3VEE Project is a joint project between Northwestern University
7 * and the University of New Mexico. You can find out more at
10 * Copyright (c) 2008, Jack Lange <jarusl@cs.northwestern.edu>
11 * Copyright (c) 2008, The V3VEE Project <http://www.v3vee.org>
12 * All rights reserved.
14 * Author: Jack Lange <jarusl@cs.northwestern.edu>
16 * This is free software. You are permitted to use,
17 * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
23 #include <palacios/vm_guest.h>
24 #include <palacios/vmm_ctrl_regs.h>
25 #include <palacios/vmm.h>
26 #include <palacios/vmm_decoder.h>
27 #include <palacios/vmcb.h>
28 #include <palacios/vm_guest_mem.h>
29 #include <palacios/vmm_lowlevel.h>
30 #include <palacios/vmm_sprintf.h>
31 #include <palacios/vmm_xed.h>
32 #include <palacios/vmm_direct_paging.h>
33 #include <palacios/vmm_barrier.h>
34 #include <palacios/vmm_debug.h>
37 v3_cpu_mode_t v3_get_vm_cpu_mode(struct guest_info * info) {
39 struct efer_64 * efer;
40 struct cr4_32 * cr4 = (struct cr4_32 *)&(info->ctrl_regs.cr4);
41 struct v3_segment * cs = &(info->segments.cs);
44 if (info->shdw_pg_mode == SHADOW_PAGING) {
45 cr0 = (struct cr0_32 *)&(info->shdw_pg_state.guest_cr0);
46 efer = (struct efer_64 *)&(info->shdw_pg_state.guest_efer);
47 } else if (info->shdw_pg_mode == NESTED_PAGING) {
48 cr0 = (struct cr0_32 *)&(info->ctrl_regs.cr0);
49 efer = (struct efer_64 *)&(info->ctrl_regs.efer);
51 PrintError(info->vm_info, info, "Invalid Paging Mode...\n");
52 V3_ASSERT(info->vm_info, info, 0);
58 } else if ((cr4->pae == 0) && (efer->lme == 0)) {
60 } else if (efer->lme == 0) {
62 } else if ((efer->lme == 1) && (cs->long_mode == 1)) {
65 // What about LONG_16_COMPAT???
66 return LONG_32_COMPAT;
70 // Get address width in bytes
71 uint_t v3_get_addr_width(struct guest_info * info) {
73 struct cr4_32 * cr4 = (struct cr4_32 *)&(info->ctrl_regs.cr4);
74 struct efer_64 * efer;
75 struct v3_segment * cs = &(info->segments.cs);
78 if (info->shdw_pg_mode == SHADOW_PAGING) {
79 cr0 = (struct cr0_32 *)&(info->shdw_pg_state.guest_cr0);
80 efer = (struct efer_64 *)&(info->shdw_pg_state.guest_efer);
81 } else if (info->shdw_pg_mode == NESTED_PAGING) {
82 cr0 = (struct cr0_32 *)&(info->ctrl_regs.cr0);
83 efer = (struct efer_64 *)&(info->ctrl_regs.efer);
85 PrintError(info->vm_info, info, "Invalid Paging Mode...\n");
86 V3_ASSERT(info->vm_info, info, 0);
92 } else if ((cr4->pae == 0) && (efer->lme == 0)) {
94 } else if (efer->lme == 0) {
96 } else if ((efer->lme == 1) && (cs->long_mode == 1)) {
99 // What about LONG_16_COMPAT???
105 static const uchar_t REAL_STR[] = "Real";
106 static const uchar_t PROTECTED_STR[] = "Protected";
107 static const uchar_t PROTECTED_PAE_STR[] = "Protected+PAE";
108 static const uchar_t LONG_STR[] = "Long";
109 static const uchar_t LONG_32_COMPAT_STR[] = "32bit Compat";
110 static const uchar_t LONG_16_COMPAT_STR[] = "16bit Compat";
112 const uchar_t * v3_cpu_mode_to_str(v3_cpu_mode_t mode) {
117 return PROTECTED_STR;
119 return PROTECTED_PAE_STR;
123 return LONG_32_COMPAT_STR;
125 return LONG_16_COMPAT_STR;
131 v3_mem_mode_t v3_get_vm_mem_mode(struct guest_info * info) {
134 if (info->shdw_pg_mode == SHADOW_PAGING) {
135 cr0 = (struct cr0_32 *)&(info->shdw_pg_state.guest_cr0);
136 } else if (info->shdw_pg_mode == NESTED_PAGING) {
137 cr0 = (struct cr0_32 *)&(info->ctrl_regs.cr0);
139 PrintError(info->vm_info, info, "Invalid Paging Mode...\n");
140 V3_ASSERT(info->vm_info, info, 0);
151 static const uchar_t PHYS_MEM_STR[] = "Physical Memory";
152 static const uchar_t VIRT_MEM_STR[] = "Virtual Memory";
154 const uchar_t * v3_mem_mode_to_str(v3_mem_mode_t mode) {
171 #include <palacios/vmcs.h>
172 #include <palacios/vmcb.h>
173 static int info_hcall(struct guest_info * core, uint_t hcall_id, void * priv_data) {
174 extern v3_cpu_arch_t v3_mach_type;
177 V3_Print(core->vm_info, core, "************** Guest State ************\n");
178 v3_print_guest_state(core);
182 if ((v3_mach_type == V3_SVM_CPU) || (v3_mach_type == V3_SVM_REV3_CPU)) {
184 PrintDebugVMCB((vmcb_t *)(core->vmm_data));
188 if ((v3_mach_type == V3_VMX_CPU) || (v3_mach_type == V3_VMX_EPT_CPU) || (v3_mach_type == V3_VMX_EPT_UG_CPU)) {
194 PrintError(core->vm_info, core, "Invalid CPU Type 0x%x\n", v3_mach_type);
204 #include <palacios/svm.h>
205 #include <palacios/svm_io.h>
206 #include <palacios/svm_msr.h>
207 #include <palacios/svm_exits.h>
211 #include <palacios/vmx.h>
212 #include <palacios/vmx_io.h>
213 #include <palacios/vmx_msr.h>
214 #include <palacios/vmx_exits.h>
218 int v3_init_vm(struct v3_vm_info * vm) {
219 extern v3_cpu_arch_t v3_mach_type;
223 #ifdef V3_CONFIG_TELEMETRY
224 v3_init_telemetry(vm);
227 v3_init_exit_hooks(vm);
228 v3_init_hypercall_map(vm);
231 v3_init_cpuid_map(vm);
232 v3_init_host_events(vm);
234 v3_init_intr_routers(vm);
235 v3_init_ext_manager(vm);
239 // Initialize the memory map
240 if (v3_init_mem_map(vm) == -1) {
241 PrintError(vm, VCORE_NONE, "Could not initialize shadow map\n");
245 v3_init_mem_hooks(vm);
247 if (v3_init_shdw_impl(vm) == -1) {
248 PrintError(vm, VCORE_NONE, "VM initialization error in shadow implementaion\n");
255 v3_init_vm_debugging(vm);
258 #ifdef V3_CONFIG_SYMBIOTIC
259 v3_init_symbiotic_vm(vm);
266 switch (v3_mach_type) {
269 case V3_SVM_REV3_CPU:
270 v3_init_svm_io_map(vm);
271 v3_init_svm_msr_map(vm);
272 v3_init_svm_exits(vm);
278 case V3_VMX_EPT_UG_CPU:
279 v3_init_vmx_io_map(vm);
280 v3_init_vmx_msr_map(vm);
281 v3_init_vmx_exits(vm);
285 PrintError(vm, VCORE_NONE, "Invalid CPU Type 0x%x\n", v3_mach_type);
289 v3_register_hypercall(vm, GUEST_INFO_HCALL, info_hcall, NULL);
291 V3_Print(vm, VCORE_NONE, "GUEST_INFO_HCALL=%x\n", GUEST_INFO_HCALL);
297 int v3_free_vm_internal(struct v3_vm_info * vm) {
298 extern v3_cpu_arch_t v3_mach_type;
300 v3_remove_hypercall(vm, GUEST_INFO_HCALL);
304 #ifdef V3_CONFIG_SYMBIOTIC
305 v3_deinit_symbiotic_vm(vm);
309 switch (v3_mach_type) {
312 case V3_SVM_REV3_CPU:
313 v3_deinit_svm_io_map(vm);
314 v3_deinit_svm_msr_map(vm);
320 case V3_VMX_EPT_UG_CPU:
321 v3_deinit_vmx_io_map(vm);
322 v3_deinit_vmx_msr_map(vm);
326 PrintError(vm, VCORE_NONE, "Invalid CPU Type 0x%x\n", v3_mach_type);
330 v3_deinit_dev_mgr(vm);
332 v3_deinit_time_vm(vm);
334 v3_deinit_mem_hooks(vm);
335 v3_delete_mem_map(vm);
336 v3_deinit_shdw_impl(vm);
338 v3_deinit_ext_manager(vm);
339 v3_deinit_intr_routers(vm);
340 v3_deinit_host_events(vm);
342 v3_deinit_barrier(vm);
344 v3_deinit_cpuid_map(vm);
345 v3_deinit_msr_map(vm);
346 v3_deinit_io_map(vm);
347 v3_deinit_hypercall_map(vm);
349 v3_deinit_exit_hooks(vm);
351 #ifdef V3_CONFIG_TELEMETRY
352 v3_deinit_telemetry(vm);
355 v3_deinit_events(vm);
362 int v3_init_core(struct guest_info * core) {
363 extern v3_cpu_arch_t v3_mach_type;
364 struct v3_vm_info * vm = core->vm_info;
369 * Initialize the subsystem data strutures
371 #ifdef V3_CONFIG_TELEMETRY
372 v3_init_core_telemetry(core);
375 if (core->shdw_pg_mode == SHADOW_PAGING) {
376 v3_init_shdw_pg_state(core);
379 v3_init_time_core(core);
380 v3_init_intr_controllers(core);
381 v3_init_exception_state(core);
383 v3_init_decoder(core);
386 #ifdef V3_CONFIG_SYMBIOTIC
387 v3_init_symbiotic_core(core);
393 switch (v3_mach_type) {
396 case V3_SVM_REV3_CPU:
397 if (v3_init_svm_vmcb(core, vm->vm_class) == -1) {
398 PrintError(vm, core, "Error in SVM initialization\n");
406 case V3_VMX_EPT_UG_CPU:
407 if (v3_init_vmx_vmcs(core, vm->vm_class) == -1) {
408 PrintError(vm, core, "Error in VMX initialization\n");
414 PrintError(vm, core, "Invalid CPU Type 0x%x\n", v3_mach_type);
418 v3_init_exit_hooks_core(core);
426 int v3_free_core(struct guest_info * core) {
427 extern v3_cpu_arch_t v3_mach_type;
430 #ifdef V3_CONFIG_SYMBIOTIC
431 v3_deinit_symbiotic_core(core);
434 v3_deinit_decoder(core);
436 v3_deinit_intr_controllers(core);
437 v3_deinit_time_core(core);
439 if (core->shdw_pg_mode == SHADOW_PAGING) {
440 v3_deinit_shdw_pg_state(core);
443 v3_free_passthrough_pts(core);
445 #ifdef V3_CONFIG_TELEMETRY
446 v3_deinit_core_telemetry(core);
449 switch (v3_mach_type) {
452 case V3_SVM_REV3_CPU:
453 if (v3_deinit_svm_vmcb(core) == -1) {
454 PrintError(VM_NONE,VCORE_NONE, "Error in SVM deinitialization\n");
462 case V3_VMX_EPT_UG_CPU:
463 if (v3_deinit_vmx_vmcs(core) == -1) {
464 PrintError(VM_NONE, VCORE_NONE, "Error in VMX initialization\n");
470 PrintError(core->vm_info, core, "Invalid CPU Type 0x%x\n", v3_mach_type);