Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


more decoder work
[palacios.git] / palacios / src / palacios / vm_guest.c
1 /* 
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.  
5  *
6  * The V3VEE Project is a joint project between Northwestern University
7  * and the University of New Mexico.  You can find out more at 
8  * http://www.v3vee.org
9  *
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.
13  *
14  * Author: Jack Lange <jarusl@cs.northwestern.edu>
15  *
16  * This is free software.  You are permitted to use,
17  * redistribute, and modify it as specified in the file "V3VEE_LICENSE".
18  */
19
20
21
22
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_muxer.h>
32 #include <palacios/vmm_xed.h>
33 #include <palacios/vmm_direct_paging.h>
34
35
36
37 v3_cpu_mode_t v3_get_vm_cpu_mode(struct guest_info * info) {
38     struct cr0_32 * cr0;
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);
42     vmcb_saved_state_t * guest_state = GET_VMCB_SAVE_STATE_AREA((vmcb_t*)(info->vmm_data));
43
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 *)&(guest_state->efer);
50     } else {
51         PrintError("Invalid Paging Mode...\n");
52         V3_ASSERT(0);
53         return -1;
54     }
55
56     if (cr0->pe == 0) {
57         return REAL;
58     } else if ((cr4->pae == 0) && (efer->lme == 0)) {
59         return PROTECTED;
60     } else if (efer->lme == 0) {
61         return PROTECTED_PAE;
62     } else if ((efer->lme == 1) && (cs->long_mode == 1)) {
63         return LONG;
64     } else {
65         // What about LONG_16_COMPAT???
66         return LONG_32_COMPAT;
67     }
68 }
69
70 // Get address width in bytes
71 uint_t v3_get_addr_width(struct guest_info * info) {
72     struct cr0_32 * cr0;
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);
76     vmcb_saved_state_t * guest_state = GET_VMCB_SAVE_STATE_AREA((vmcb_t*)(info->vmm_data));
77
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 *)&(guest_state->efer);
84     } else {
85         PrintError("Invalid Paging Mode...\n");
86         V3_ASSERT(0);
87         return -1;
88     }
89
90     if (cr0->pe == 0) {
91         return 2;
92     } else if ((cr4->pae == 0) && (efer->lme == 0)) {
93         return 4;
94     } else if (efer->lme == 0) {
95         return 4;
96     } else if ((efer->lme == 1) && (cs->long_mode == 1)) {
97         return 8;
98     } else {
99         // What about LONG_16_COMPAT???
100         return 4;
101     }
102 }
103
104
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";
111
112 const uchar_t * v3_cpu_mode_to_str(v3_cpu_mode_t mode) {
113     switch (mode) {
114         case REAL:
115             return REAL_STR;
116         case PROTECTED:
117             return PROTECTED_STR;
118         case PROTECTED_PAE:
119             return PROTECTED_PAE_STR;
120         case LONG:
121             return LONG_STR;
122         case LONG_32_COMPAT:
123             return LONG_32_COMPAT_STR;
124         case LONG_16_COMPAT:
125             return LONG_16_COMPAT_STR;
126         default:
127             return NULL;
128     }
129 }
130
131 v3_mem_mode_t v3_get_vm_mem_mode(struct guest_info * info) {
132     struct cr0_32 * cr0;
133
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);
138     } else {
139         PrintError("Invalid Paging Mode...\n");
140         V3_ASSERT(0);
141         return -1;
142     }
143
144     if (cr0->pg == 0) {
145         return PHYSICAL_MEM;
146     } else {
147         return VIRTUAL_MEM;
148     }
149 }
150
151 static const uchar_t PHYS_MEM_STR[] = "Physical Memory";
152 static const uchar_t VIRT_MEM_STR[] = "Virtual Memory";
153
154 const uchar_t * v3_mem_mode_to_str(v3_mem_mode_t mode) {
155     switch (mode) {
156         case PHYSICAL_MEM:
157             return PHYS_MEM_STR;
158         case VIRTUAL_MEM:
159             return VIRT_MEM_STR;
160         default:
161             return NULL;
162     }
163 }
164
165
166 void v3_print_segments(struct v3_segments * segs) {
167     int i = 0;
168     struct v3_segment * seg_ptr;
169
170     seg_ptr=(struct v3_segment *)segs;
171   
172     char *seg_names[] = {"CS", "DS" , "ES", "FS", "GS", "SS" , "LDTR", "GDTR", "IDTR", "TR", NULL};
173     V3_Print("Segments\n");
174
175     for (i = 0; seg_names[i] != NULL; i++) {
176
177         V3_Print("\t%s: Sel=%x, base=%p, limit=%x (long_mode=%d, db=%d)\n", seg_names[i], seg_ptr[i].selector, 
178                    (void *)(addr_t)seg_ptr[i].base, seg_ptr[i].limit,
179                    seg_ptr[i].long_mode, seg_ptr[i].db);
180
181     }
182 }
183
184 //
185 // We don't handle those fancy 64 bit system segments...
186 //
187 int v3_translate_segment(struct guest_info * info, uint16_t selector, struct v3_segment * seg) {
188     struct v3_segment * gdt = &(info->segments.gdtr);
189     addr_t gdt_addr = 0;
190     uint16_t seg_offset = (selector & ~0x7);
191     addr_t seg_addr = 0;
192     struct gen_segment * gen_seg = NULL;
193     struct seg_selector sel;
194
195     memset(seg, 0, sizeof(struct v3_segment));
196
197     sel.value = selector;
198
199     if (sel.ti == 1) {
200         PrintError("LDT translations not supported\n");
201         return -1;
202     }
203
204     if (v3_gva_to_hva(info, gdt->base, &gdt_addr) == -1) {
205         PrintError("Unable to translate GDT address\n");
206         return -1;
207     }
208
209     seg_addr = gdt_addr + seg_offset;
210     gen_seg = (struct gen_segment *)seg_addr;
211
212     //translate
213     seg->selector = selector;
214
215     seg->limit = gen_seg->limit_hi;
216     seg->limit <<= 16;
217     seg->limit += gen_seg->limit_lo;
218
219     seg->base = gen_seg->base_hi;
220     seg->base <<= 24;
221     seg->base += gen_seg->base_lo;
222
223     if (gen_seg->granularity == 1) {
224         seg->limit <<= 12;
225         seg->limit |= 0xfff;
226     }
227
228     seg->type = gen_seg->type;
229     seg->system = gen_seg->system;
230     seg->dpl = gen_seg->dpl;
231     seg->present = gen_seg->present;
232     seg->avail = gen_seg->avail;
233     seg->long_mode = gen_seg->long_mode;
234     seg->db = gen_seg->db;
235     seg->granularity = gen_seg->granularity;
236     
237     return 0;
238 }
239
240
241
242
243 void v3_print_ctrl_regs(struct guest_info * info) {
244     struct v3_ctrl_regs * regs = &(info->ctrl_regs);
245     int i = 0;
246     v3_reg_t * reg_ptr;
247     char * reg_names[] = {"CR0", "CR2", "CR3", "CR4", "CR8", "FLAGS", NULL};
248     vmcb_saved_state_t * guest_state = GET_VMCB_SAVE_STATE_AREA(info->vmm_data);
249
250     reg_ptr = (v3_reg_t *)regs;
251
252     V3_Print("32 bit Ctrl Regs:\n");
253
254     for (i = 0; reg_names[i] != NULL; i++) {
255         V3_Print("\t%s=0x%p (at %p)\n", reg_names[i], (void *)(addr_t)reg_ptr[i], &(reg_ptr[i]));  
256     }
257
258     V3_Print("\tEFER=0x%p\n", (void*)(addr_t)(guest_state->efer));
259
260 }
261
262 #if 0
263 static int safe_gva_to_hva(struct guest_info * info, addr_t linear_addr, addr_t * host_addr) {
264     /* select the proper translation based on guest mode */
265     if (info->mem_mode == PHYSICAL_MEM) {
266         if (v3_gpa_to_hva(info, linear_addr, host_addr) == -1) return -1;
267     } else if (info->mem_mode == VIRTUAL_MEM) {
268         if (v3_gva_to_hva(info, linear_addr, host_addr) == -1) return -1;
269     }
270     return 0;
271 }
272
273 static int v3_print_disassembly(struct guest_info * info) {
274     int passed_rip = 0;
275     addr_t rip, rip_linear, rip_host;
276
277     /* we don't know where the instructions preceding RIP start, so we just take
278      * a guess and hope the instruction stream synced up with our disassembly
279      * some time before RIP; if it has not we correct RIP at that point
280      */
281
282     /* start disassembly 64 bytes before current RIP, continue 32 bytes after */
283     rip = (addr_t) info->rip - 64;
284     while ((int) (rip - info->rip) < 32) {
285         V3_Print("disassembly step\n");
286
287         /* always print RIP, even if the instructions before were bad */
288         if (!passed_rip && rip >= info->rip) {
289             if (rip != info->rip) {
290                 V3_Print("***** bad disassembly up to this point *****\n");
291                 rip = info->rip;
292             }
293             passed_rip = 1;
294         }
295
296         /* look up host virtual address for this instruction */
297         rip_linear = get_addr_linear(info, rip, &(info->segments.cs));
298         if (safe_gva_to_hva(info, rip_linear, &rip_host) < 0) {
299             rip++;
300             continue;
301         }
302
303         /* print disassembled instrcution (updates rip) */
304         if (v3_disasm(info, (void *) rip_host, &rip, rip == info->rip) < 0) {
305             rip++;
306             continue;
307         }
308
309     }
310
311     return 0;
312 }
313
314 #endif
315
316 void v3_print_guest_state(struct guest_info * info) {
317     addr_t linear_addr = 0; 
318
319     V3_Print("RIP: %p\n", (void *)(addr_t)(info->rip));
320     linear_addr = get_addr_linear(info, info->rip, &(info->segments.cs));
321     V3_Print("RIP Linear: %p\n", (void *)linear_addr);
322
323     V3_Print("NumExits: %u\n", (uint32_t)info->num_exits);
324
325     v3_print_segments(&(info->segments));
326     v3_print_ctrl_regs(info);
327
328     if (info->shdw_pg_mode == SHADOW_PAGING) {
329         V3_Print("Shadow Paging Guest Registers:\n");
330         V3_Print("\tGuest CR0=%p\n", (void *)(addr_t)(info->shdw_pg_state.guest_cr0));
331         V3_Print("\tGuest CR3=%p\n", (void *)(addr_t)(info->shdw_pg_state.guest_cr3));
332         V3_Print("\tGuest EFER=%p\n", (void *)(addr_t)(info->shdw_pg_state.guest_efer.value));
333         // CR4
334     }
335     v3_print_GPRs(info);
336
337     v3_print_mem_map(info->vm_info);
338
339     v3_print_stack(info);
340
341     //  v3_print_disassembly(info);
342 }
343
344 void v3_print_guest_state_all(struct v3_vm_info * vm) {
345     int i = 0;
346
347     V3_Print("VM Core states for %s\n", vm->name);
348
349     for (i = 0; i < 80; i++) {
350         V3_Print("-");
351     }
352
353     for (i = 0; i < vm->num_cores; i++) {
354         v3_print_guest_state(&vm->cores[i]);  
355     }
356     
357     for (i = 0; i < 80; i++) {
358         V3_Print("-");
359     }
360
361     V3_Print("\n");    
362 }
363
364
365 void v3_print_stack(struct guest_info * info) {
366     addr_t linear_addr = 0;
367     addr_t host_addr = 0;
368     int i = 0;
369     v3_cpu_mode_t cpu_mode = v3_get_vm_cpu_mode(info);
370
371
372     linear_addr = get_addr_linear(info, info->vm_regs.rsp, &(info->segments.ss));
373  
374     V3_Print("Stack  at %p:\n", (void *)linear_addr);
375    
376     if (info->mem_mode == PHYSICAL_MEM) {
377         if (v3_gpa_to_hva(info, linear_addr, &host_addr) == -1) {
378             PrintError("Could not translate Stack address\n");
379             return;
380         }
381     } else if (info->mem_mode == VIRTUAL_MEM) {
382         if (v3_gva_to_hva(info, linear_addr, &host_addr) == -1) {
383             PrintError("Could not translate Virtual Stack address\n");
384             return;
385         }
386     }
387     
388     V3_Print("Host Address of rsp = 0x%p\n", (void *)host_addr);
389  
390     // We start i at one because the current stack pointer points to an unused stack element
391     for (i = 0; i <= 24; i++) {
392         if (cpu_mode == LONG) {
393             V3_Print("\t%p\n", (void *)*(addr_t *)(host_addr + (i * 8)));
394         } else if (cpu_mode == REAL) {
395             V3_Print("Don't currently handle 16 bit stacks... \n");
396         } else {
397             // 32 bit stacks...
398             V3_Print("\t%.8x\n", *(uint32_t *)(host_addr + (i * 4)));
399         }
400     }
401
402 }    
403
404 #ifdef __V3_32BIT__
405
406 void v3_print_GPRs(struct guest_info * info) {
407     struct v3_gprs * regs = &(info->vm_regs);
408     int i = 0;
409     v3_reg_t * reg_ptr;
410     char * reg_names[] = { "RDI", "RSI", "RBP", "RSP", "RBX", "RDX", "RCX", "RAX", NULL};
411
412     reg_ptr = (v3_reg_t *)regs;
413
414     V3_Print("32 bit GPRs:\n");
415
416     for (i = 0; reg_names[i] != NULL; i++) {
417         V3_Print("\t%s=0x%p (at %p)\n", reg_names[i], (void *)(addr_t)reg_ptr[i], &(reg_ptr[i]));  
418     }
419 }
420
421 #elif __V3_64BIT__
422
423 void v3_print_GPRs(struct guest_info * info) {
424     struct v3_gprs * regs = &(info->vm_regs);
425     int i = 0;
426     v3_reg_t * reg_ptr;
427     char * reg_names[] = { "RDI", "RSI", "RBP", "RSP", "RBX", "RDX", "RCX", "RAX", \
428                            "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15", NULL};
429
430     reg_ptr = (v3_reg_t *)regs;
431
432     V3_Print("64 bit GPRs:\n");
433
434     for (i = 0; reg_names[i] != NULL; i++) {
435         V3_Print("\t%s=0x%p (at %p)\n", reg_names[i], (void *)(addr_t)reg_ptr[i], &(reg_ptr[i]));  
436     }
437 }
438
439 #endif
440
441
442 #include <palacios/vmcs.h>
443 #include <palacios/vmcb.h>
444 static int info_hcall(struct guest_info * core, uint_t hcall_id, void * priv_data) {
445     v3_cpu_arch_t cpu_type = v3_get_cpu_type(V3_Get_CPU());
446     int cpu_valid = 0;
447
448     V3_Print("************** Guest State ************\n");
449     v3_print_guest_state(core);
450     
451     // init SVM/VMX
452 #ifdef CONFIG_SVM
453     if ((cpu_type == V3_SVM_CPU) || (cpu_type == V3_SVM_REV3_CPU)) {
454         cpu_valid = 1;
455         PrintDebugVMCB((vmcb_t *)(core->vmm_data));
456     }
457 #endif
458 #ifdef CONFIG_VMX
459     if ((cpu_type == V3_VMX_CPU) || (cpu_type == V3_VMX_EPT_CPU)) {
460         cpu_valid = 1;
461         v3_print_vmcs();
462     }
463 #endif
464     if (!cpu_valid) {
465         PrintError("Invalid CPU Type 0x%x\n", cpu_type);
466         return -1;
467     }
468     
469
470     return 0;
471 }
472
473
474 #ifdef CONFIG_SVM
475 #include <palacios/svm.h>
476 #include <palacios/svm_io.h>
477 #include <palacios/svm_msr.h>
478 #endif
479
480 #ifdef CONFIG_VMX
481 #include <palacios/vmx.h>
482 #include <palacios/vmx_io.h>
483 #include <palacios/vmx_msr.h>
484 #endif
485
486
487 int v3_init_vm(struct v3_vm_info * vm) {
488     v3_cpu_arch_t cpu_type = v3_get_cpu_type(V3_Get_CPU());
489
490     if (v3_get_foreground_vm() == NULL) {
491         v3_set_foreground_vm(vm);
492     }
493
494 #ifdef CONFIG_TELEMETRY
495     v3_init_telemetry(vm);
496 #endif
497
498     v3_init_hypercall_map(vm);
499     v3_init_io_map(vm);
500     v3_init_msr_map(vm);
501     v3_init_cpuid_map(vm);
502     v3_init_host_events(vm);
503     v3_init_intr_routers(vm);
504     v3_init_ext_manager(vm);
505
506     // Initialize the memory map
507     if (v3_init_mem_map(vm) == -1) {
508         PrintError("Could not initialize shadow map\n");
509         return -1;
510     }
511
512     v3_init_mem_hooks(vm);
513
514     if (v3_init_shdw_impl(vm) == -1) {
515         PrintError("VM initialization error in shadow implementaion\n");
516         return -1;
517     }
518
519
520     v3_init_time_vm(vm);
521
522
523 #ifdef CONFIG_SYMBIOTIC
524     v3_init_symbiotic_vm(vm);
525 #endif
526
527     v3_init_dev_mgr(vm);
528
529
530     // init SVM/VMX
531     switch (cpu_type) {
532 #ifdef CONFIG_SVM
533         case V3_SVM_CPU:
534         case V3_SVM_REV3_CPU:
535             v3_init_svm_io_map(vm);
536             v3_init_svm_msr_map(vm);
537             break;
538 #endif
539 #ifdef CONFIG_VMX
540         case V3_VMX_CPU:
541         case V3_VMX_EPT_CPU:
542             v3_init_vmx_io_map(vm);
543             v3_init_vmx_msr_map(vm);
544             break;
545 #endif
546         default:
547             PrintError("Invalid CPU Type 0x%x\n", cpu_type);
548             return -1;
549     }
550     
551     v3_register_hypercall(vm, GUEST_INFO_HCALL, info_hcall, NULL);
552
553     V3_Print("GUEST_INFO_HCALL=%x\n", GUEST_INFO_HCALL);
554
555     return 0;
556 }
557
558
559 int v3_free_vm_internal(struct v3_vm_info * vm) {
560     v3_cpu_arch_t cpu_type = v3_get_cpu_type(V3_Get_CPU());
561
562     v3_remove_hypercall(vm, GUEST_INFO_HCALL);
563
564
565
566 #ifdef CONFIG_SYMBIOTIC
567     v3_deinit_symbiotic_vm(vm);
568 #endif
569
570     // init SVM/VMX
571     switch (cpu_type) {
572 #ifdef CONFIG_SVM
573         case V3_SVM_CPU:
574         case V3_SVM_REV3_CPU:
575             v3_deinit_svm_io_map(vm);
576             v3_deinit_svm_msr_map(vm);
577             break;
578 #endif
579 #ifdef CONFIG_VMX
580         case V3_VMX_CPU:
581         case V3_VMX_EPT_CPU:
582             v3_deinit_vmx_io_map(vm);
583             v3_deinit_vmx_msr_map(vm);
584             break;
585 #endif
586         default:
587             PrintError("Invalid CPU Type 0x%x\n", cpu_type);
588             return -1;
589     }
590
591     v3_deinit_dev_mgr(vm);
592
593     v3_deinit_time_vm(vm);
594
595     v3_deinit_mem_hooks(vm);
596     v3_delete_mem_map(vm);
597     v3_deinit_shdw_impl(vm);
598
599     v3_deinit_intr_routers(vm);
600     v3_deinit_host_events(vm);
601
602     v3_deinit_cpuid_map(vm);
603     v3_deinit_msr_map(vm);
604     v3_deinit_io_map(vm);
605     v3_deinit_hypercall_map(vm);
606
607 #ifdef CONFIG_TELEMETRY
608     v3_deinit_telemetry(vm);
609 #endif
610
611
612
613     return 0;
614 }
615
616
617 int v3_init_core(struct guest_info * core) {
618     v3_cpu_arch_t cpu_type = v3_get_cpu_type(V3_Get_CPU());
619     struct v3_vm_info * vm = core->vm_info;
620
621     /*
622      * Initialize the subsystem data strutures
623      */
624 #ifdef CONFIG_TELEMETRY
625     v3_init_core_telemetry(core);
626 #endif
627
628     if (core->shdw_pg_mode == SHADOW_PAGING) {
629         v3_init_shdw_pg_state(core);
630     }
631
632     v3_init_time_core(core);
633     v3_init_intr_controllers(core);
634     v3_init_exception_state(core);
635
636     v3_init_decoder(core);
637
638
639 #ifdef CONFIG_SYMBIOTIC
640     v3_init_symbiotic_core(core);
641 #endif
642
643     // init SVM/VMX
644
645
646     switch (cpu_type) {
647 #ifdef CONFIG_SVM
648         case V3_SVM_CPU:
649         case V3_SVM_REV3_CPU:
650             if (v3_init_svm_vmcb(core, vm->vm_class) == -1) {
651                 PrintError("Error in SVM initialization\n");
652                 return -1;
653             }
654             break;
655 #endif
656 #ifdef CONFIG_VMX
657         case V3_VMX_CPU:
658         case V3_VMX_EPT_CPU:
659             if (v3_init_vmx_vmcs(core, vm->vm_class) == -1) {
660                 PrintError("Error in VMX initialization\n");
661                 return -1;
662             }
663             break;
664 #endif
665         default:
666             PrintError("Invalid CPU Type 0x%x\n", cpu_type);
667             return -1;
668     }
669
670     return 0;
671 }
672
673
674
675 int v3_free_core(struct guest_info * core) {
676     v3_cpu_arch_t cpu_type = v3_get_cpu_type(V3_Get_CPU());
677
678     
679 #ifdef CONFIG_SYMBIOTIC
680     v3_deinit_symbiotic_core(core);
681 #endif
682
683     v3_deinit_decoder(core);
684
685     v3_deinit_intr_controllers(core);
686     v3_deinit_time_core(core);
687
688     if (core->shdw_pg_mode == SHADOW_PAGING) {
689         v3_deinit_shdw_pg_state(core);
690     }
691
692     v3_free_passthrough_pts(core);
693
694 #ifdef CONFIG_TELEMETRY
695     v3_deinit_core_telemetry(core);
696 #endif
697
698     switch (cpu_type) {
699 #ifdef CONFIG_SVM
700         case V3_SVM_CPU:
701         case V3_SVM_REV3_CPU:
702             if (v3_deinit_svm_vmcb(core) == -1) {
703                 PrintError("Error in SVM initialization\n");
704                 return -1;
705             }
706             break;
707 #endif
708 #ifdef CONFIG_VMX
709         case V3_VMX_CPU:
710         case V3_VMX_EPT_CPU:
711             if (v3_deinit_vmx_vmcs(core) == -1) {
712                 PrintError("Error in VMX initialization\n");
713                 return -1;
714             }
715             break;
716 #endif
717         default:
718             PrintError("Invalid CPU Type 0x%x\n", cpu_type);
719             return -1;
720     }
721
722     return 0;
723 }
724
725
726