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.


lots of changes...
[palacios.git] / palacios / include / palacios / vmm.h
1 #ifndef __VMM_H
2 #define __VMM_H
3
4
5 #include <palacios/vm_guest.h>
6 #include <palacios/vmm_mem.h>
7
8 #ifdef __V3VEE__
9
10 //#include <palacios/vmm_types.h>
11 #include <palacios/vmm_string.h>
12
13
14 //#include <palacios/vmm_paging.h>
15
16 /* utility definitions */
17 #define PrintDebug(fmt, args...)                        \
18   do {                                                  \
19     extern struct vmm_os_hooks * os_hooks;              \
20     if ((os_hooks) && (os_hooks)->print_debug) {        \
21       (os_hooks)->print_debug((fmt), ##args);           \
22     }                                                   \
23   } while (0)                                           \
24
25
26
27 #define PrintInfo(fmt, args...)                         \
28   do {                                                  \
29     extern struct vmm_os_hooks * os_hooks;              \
30     if ((os_hooks) && (os_hooks)->print_info) {         \
31       (os_hooks)->print_info((fmt), ##args);            \
32     }                                                   \
33   } while (0)                                           \
34
35
36 #define PrintTrace(fmt, args...)                        \
37   do {                                                  \
38     extern struct vmm_os_hooks * os_hooks;              \
39     if ((os_hooks) && (os_hooks)->print_trace) {        \
40       (os_hooks)->print_trace((fmt), ##args);           \
41     }                                                   \
42   } while (0)                                           \
43
44
45
46 #define V3_AllocPages(ptr, num_pages)                   \
47   do {                                                  \
48     extern struct vmm_os_hooks * os_hooks;              \
49     if ((os_hooks) && (os_hooks)->allocate_pages) {     \
50       ptr = (os_hooks)->allocate_pages(num_pages);      \
51     }                                                   \
52   } while (0)                                           \
53
54
55
56 #define V3_Malloc(type, var, size)                      \
57   do {                                                  \
58     extern struct vmm_os_hooks * os_hooks;              \
59     if ((os_hooks) && (os_hooks)->malloc) {             \
60       var = (type)(os_hooks)->malloc(size);             \
61     }                                                   \
62   } while (0)                                           \
63
64
65 // We need to check the hook structure at runtime to ensure its SAFE
66 #define V3_Free(addr)                                   \
67   do {                                                  \
68     extern struct vmm_os_hooks * os_hooks;              \
69     if ((os_hooks) && (os_hooks)->free) {               \
70       (os_hooks)->free(addr);                           \
71     }                                                   \
72   } while (0)                                           \
73
74
75 /* ** */
76
77 #define V3_ASSERT(x)                                                    \
78   do {                                                                  \
79     if (!(x)) {                                                         \
80       PrintDebug("Failed assertion in %s: %s at %s, line %d, RA=%lx\n", \
81                  __func__, #x, __FILE__, __LINE__,                      \
82                  (ulong_t) __builtin_return_address(0));                \
83       while(1);                                                         \
84     }                                                                   \
85   } while(0)                                                            \
86     
87
88 #define VMM_INVALID_CPU 0
89 #define VMM_VMX_CPU 1
90 #define VMM_SVM_CPU 2
91
92 #endif //!__V3VEE__
93
94
95 /* This will contain function pointers that provide OS services */
96 struct vmm_os_hooks {
97   void (*print_info)(const char * format, ...);
98   void (*print_debug)(const char * format, ...);
99   void (*print_trace)(const char * format, ...);
100   
101   void *(*allocate_pages)(int numPages);
102   void (*free_page)(void * page);
103
104   void *(*malloc)(unsigned int size);
105   void (*free)(void * addr);
106
107   void *(*paddr_to_vaddr)(void *addr);
108   void *(*vaddr_to_paddr)(void *addr);
109
110   int (*hook_interrupt)(struct guest_info * info, int irq);
111   int (*ack_irq)(int irq);
112
113   // Do we need this here?
114   void (*snprintf)(char * dst, char * format, int len, ...);
115
116   void (*start_kernel_thread)(); // include pointer to function
117 };
118
119
120
121 /* This will contain Function pointers that control the VMs */
122 struct vmm_ctrl_ops {
123   int (*init_guest)(struct guest_info* info);
124   int (*start_guest)(struct guest_info * info);
125   //  int (*stop_vm)(uint_t vm_id);
126
127
128
129 };
130
131
132
133
134 void Init_VMM(struct vmm_os_hooks * hooks, struct vmm_ctrl_ops * vmm_ops);
135
136
137
138
139
140 #endif