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.


reworked the interrupt injection to be guest specific
[palacios.git] / palacios / include / palacios / vm_guest.h
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 #ifndef __VM_GUEST_H
21 #define __VM_GUEST_H
22
23 #ifdef __V3VEE__
24
25
26 #include <palacios/vmm_mem.h>
27 #include <palacios/vmm_types.h>
28 #include <palacios/vmm_io.h>
29 #include <palacios/vmm_shadow_paging.h>
30 #include <palacios/vmm_intr.h>
31 #include <palacios/vmm_dev_mgr.h>
32 #include <palacios/vmm_time.h>
33 #include <palacios/vmm_emulator.h>
34
35 typedef ullong_t v3_reg_t;
36
37
38
39 struct v3_gprs {
40   v3_reg_t rdi;
41   v3_reg_t rsi;
42   v3_reg_t rbp;
43   v3_reg_t rsp;
44   v3_reg_t rbx;
45   v3_reg_t rdx;
46   v3_reg_t rcx;
47   v3_reg_t rax;
48 };
49
50
51 struct v3_ctrl_regs {
52   v3_reg_t cr0;
53   v3_reg_t cr2;
54   v3_reg_t cr3;
55   v3_reg_t cr4;
56   v3_reg_t cr8;
57   v3_reg_t rflags;
58   v3_reg_t efer;
59 };
60
61
62
63 struct v3_dbg_regs {
64   v3_reg_t dr0;
65   v3_reg_t dr1;
66   v3_reg_t dr2;
67   v3_reg_t dr3;
68   v3_reg_t dr6;
69   v3_reg_t dr7;
70 };
71
72 struct v3_segment {
73   ushort_t selector;
74   uint_t limit;
75   ullong_t base;
76   uint_t type           : 4;
77   uint_t system         : 1;
78   uint_t dpl            : 2;
79   uint_t present        : 1;
80   uint_t avail          : 1;
81   uint_t long_mode      : 1;
82   uint_t db             : 1;
83   uint_t granularity    : 1;
84 };
85
86
87 struct v3_segments {
88   struct v3_segment cs;
89   struct v3_segment ds;
90   struct v3_segment es;
91   struct v3_segment fs;
92   struct v3_segment gs;
93   struct v3_segment ss;
94   struct v3_segment ldtr;
95   struct v3_segment gdtr;
96   struct v3_segment idtr;
97   struct v3_segment tr;
98 };
99
100 struct shadow_page_state;
101 struct shadow_map;
102 struct vmm_io_map;
103 struct emulation_state;
104 struct v3_intr_state;
105
106 struct vm_ctrl_ops {
107   int (*raise_irq)(struct guest_info * info, int irq);
108   int (*lower_irq)(struct guest_info * info, int irq);
109 };
110
111
112
113
114 typedef enum {SHADOW_PAGING, NESTED_PAGING} vmm_paging_mode_t;
115 typedef enum {VM_RUNNING, VM_STOPPED, VM_SUSPENDED, VM_ERROR, VM_EMULATING} vm_operating_mode_t;
116
117
118 typedef enum {REAL, /*UNREAL,*/ PROTECTED, PROTECTED_PAE, LONG, LONG_32_COMPAT, LONG_16_COMPAT} vm_cpu_mode_t;
119 typedef enum {PHYSICAL_MEM, VIRTUAL_MEM} vm_mem_mode_t;
120
121
122
123 struct guest_info {
124   ullong_t rip;
125
126   uint_t cpl;
127
128   struct shadow_map mem_map;
129
130   struct vm_time time_state;
131   
132   vmm_paging_mode_t shdw_pg_mode;
133   struct shadow_page_state shdw_pg_state;
134   addr_t direct_map_pt;
135   // nested_paging_t nested_page_state;
136
137
138   // This structure is how we get interrupts for the guest
139   struct v3_intr_state intr_state;
140
141   struct vmm_io_map io_map;
142   // device_map
143
144   struct vmm_dev_mgr  dev_mgr;
145
146   vm_cpu_mode_t cpu_mode;
147   vm_mem_mode_t mem_mode;
148
149
150   struct v3_gprs vm_regs;
151   struct v3_ctrl_regs ctrl_regs;
152   struct v3_dbg_regs dbg_regs;
153   struct v3_segments segments;
154
155   struct vm_ctrl_ops vm_ops;
156
157   struct emulation_state emulator;
158
159   vm_operating_mode_t run_state;
160   void * vmm_data;
161
162   /* TEMP */
163   //ullong_t exit_tsc;
164
165 };
166
167
168 vm_cpu_mode_t get_cpu_mode(struct guest_info * info);
169 vm_mem_mode_t get_mem_mode(struct guest_info * info);
170
171
172 void PrintV3Segments(struct guest_info * info);
173 void PrintV3CtrlRegs(struct guest_info * info);
174 void PrintV3GPRs(struct guest_info * info);
175
176 #endif // ! __V3VEE__
177
178
179
180 #endif