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.


added 32 bit support for geekos
[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/vmcb.h>
27
28
29 v3_vm_cpu_mode_t v3_get_cpu_mode(struct guest_info * info) {
30   struct cr0_32 * cr0;
31   struct cr4_32 * cr4 = (struct cr4_32 *)&(info->ctrl_regs.cr4);
32   struct efer_64 * efer = (struct efer_64 *)&(info->ctrl_regs.efer);
33   struct v3_segment * cs = &(info->segments.cs);
34
35   if (info->shdw_pg_mode == SHADOW_PAGING) {
36     cr0 = (struct cr0_32 *)&(info->shdw_pg_state.guest_cr0);
37   } else if (info->shdw_pg_mode == NESTED_PAGING) {
38     cr0 = (struct cr0_32 *)&(info->ctrl_regs.cr0);
39   } else {
40     PrintError("Invalid Paging Mode...\n");
41     V3_ASSERT(0);
42     return -1;
43   }
44
45   if (cr0->pe == 0) {
46     return REAL;
47   } else if ((cr4->pae == 0) && (efer->lma == 0)) {
48     return PROTECTED;
49   } else if (efer->lma == 0) {
50     return PROTECTED_PAE;
51   } else if ((efer->lma == 1) && (cs->long_mode == 1)) {
52     return LONG;
53   } else {
54     return LONG_32_COMPAT;
55   }
56 }
57
58 v3_vm_mem_mode_t v3_get_mem_mode(struct guest_info * info) {
59   struct cr0_32 * cr0;
60
61   if (info->shdw_pg_mode == SHADOW_PAGING) {
62     cr0 = (struct cr0_32 *)&(info->shdw_pg_state.guest_cr0);
63   } else if (info->shdw_pg_mode == NESTED_PAGING) {
64     cr0 = (struct cr0_32 *)&(info->ctrl_regs.cr0);
65   } else {
66     PrintError("Invalid Paging Mode...\n");
67     V3_ASSERT(0);
68     return -1;
69   }
70
71
72
73   if (cr0->pg == 0) {
74     return PHYSICAL_MEM;
75   } else {
76     return VIRTUAL_MEM;
77   }
78 }
79
80
81 void v3_print_segments(struct guest_info * info) {
82   struct v3_segments * segs = &(info->segments);
83   int i = 0;
84   struct v3_segment * seg_ptr;
85
86   seg_ptr=(struct v3_segment *)segs;
87   
88   char *seg_names[] = {"CS", "DS" , "ES", "FS", "GS", "SS" , "LDTR", "GDTR", "IDTR", "TR", NULL};
89   PrintDebug("Segments\n");
90
91   for (i = 0; seg_names[i] != NULL; i++) {
92
93     PrintDebug("\t%s: Sel=%x, base=%p, limit=%x\n", seg_names[i], seg_ptr[i].selector, 
94                (void *)(addr_t)seg_ptr[i].base, seg_ptr[i].limit);
95
96   }
97
98 }
99
100
101 void v3_print_ctrl_regs(struct guest_info * info) {
102   struct v3_ctrl_regs * regs = &(info->ctrl_regs);
103   int i = 0;
104   v3_reg_t * reg_ptr;
105   char * reg_names[] = {"CR0", "CR2", "CR3", "CR4", "CR8", "FLAGS", NULL};
106   vmcb_saved_state_t * guest_state = GET_VMCB_SAVE_STATE_AREA(info->vmm_data);
107
108   reg_ptr= (v3_reg_t *)regs;
109
110   PrintDebug("32 bit Ctrl Regs:\n");
111
112   for (i = 0; reg_names[i] != NULL; i++) {
113     PrintDebug("\t%s=0x%p\n", reg_names[i], (void *)(addr_t)reg_ptr[i]);  
114   }
115
116   PrintDebug("\tEFER=0x%p\n", (void*)(addr_t)(guest_state->efer));
117
118 }
119
120
121 void v3_print_GPRs(struct guest_info * info) {
122   struct v3_gprs * regs = &(info->vm_regs);
123   int i = 0;
124   v3_reg_t * reg_ptr;
125   char * reg_names[] = { "RDI", "RSI", "RBP", "RSP", "RBX", "RDX", "RCX", "RAX", NULL};
126
127   reg_ptr= (v3_reg_t *)regs;
128
129   PrintDebug("32 bit GPRs:\n");
130
131   for (i = 0; reg_names[i] != NULL; i++) {
132     PrintDebug("\t%s=0x%p\n", reg_names[i], (void *)(addr_t)reg_ptr[i]);  
133   }
134 }