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".
20 #ifndef __VM_GUEST_H__
21 #define __VM_GUEST_H__
25 #include <palacios/vmm_types.h>
26 #include <palacios/vmm_mem.h>
27 #include <palacios/vmm_io.h>
28 #include <palacios/vmm_shadow_paging.h>
29 #include <palacios/vmm_intr.h>
30 #include <palacios/vmm_dev_mgr.h>
31 #include <palacios/vmm_time.h>
32 #include <palacios/vmm_emulator.h>
33 #include <palacios/vmm_host_events.h>
34 #include <palacios/vmm_msr.h>
82 uint_t granularity : 1;
93 struct v3_segment ldtr;
94 struct v3_segment gdtr;
95 struct v3_segment idtr;
99 struct shadow_page_state;
102 struct emulation_state;
103 struct v3_intr_state;
114 addr_t mem_size; // Probably in bytes for now....
115 struct shadow_map mem_map;
117 struct vm_time time_state;
120 v3_paging_mode_t shdw_pg_mode;
121 struct shadow_page_state shdw_pg_state;
122 addr_t direct_map_pt;
123 // nested_paging_t nested_page_state;
126 // This structure is how we get interrupts for the guest
127 struct v3_intr_state intr_state;
131 struct v3_msr_map msr_map;
134 struct vmm_dev_mgr dev_mgr;
136 struct v3_host_events host_event_hooks;
138 v3_vm_cpu_mode_t cpu_mode;
139 v3_vm_mem_mode_t mem_mode;
142 struct v3_gprs vm_regs;
143 struct v3_ctrl_regs ctrl_regs;
144 struct v3_dbg_regs dbg_regs;
145 struct v3_segments segments;
147 v3_vm_operating_mode_t run_state;
151 void * decoder_state;
153 struct v3_msr guest_efer;
161 v3_vm_cpu_mode_t v3_get_cpu_mode(struct guest_info * info);
162 v3_vm_mem_mode_t v3_get_mem_mode(struct guest_info * info);
165 const uchar_t * v3_cpu_mode_to_str(v3_vm_cpu_mode_t mode);
166 const uchar_t * v3_mem_mode_to_str(v3_vm_mem_mode_t mode);
169 void v3_print_segments(struct guest_info * info);
170 void v3_print_ctrl_regs(struct guest_info * info);
171 void v3_print_GPRs(struct guest_info * info);
173 #endif // ! __V3VEE__