1 | /** @file
|
---|
2 | * VMM - The Virtual Machine Monitor.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | *
|
---|
25 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___VBox_vmm_h
|
---|
31 | #define ___VBox_vmm_h
|
---|
32 |
|
---|
33 | #include <VBox/cdefs.h>
|
---|
34 | #include <VBox/types.h>
|
---|
35 | #include <VBox/vmapi.h>
|
---|
36 | #include <VBox/sup.h>
|
---|
37 | #include <iprt/stdarg.h>
|
---|
38 |
|
---|
39 | __BEGIN_DECLS
|
---|
40 |
|
---|
41 | /** @defgroup grp_vmm The Virtual Machine Monitor API
|
---|
42 | * @{
|
---|
43 | */
|
---|
44 |
|
---|
45 | /**
|
---|
46 | * World switcher identifiers.
|
---|
47 | */
|
---|
48 | typedef enum VMMSWITCHER
|
---|
49 | {
|
---|
50 | /** The usual invalid 0. */
|
---|
51 | VMMSWITCHER_INVALID = 0,
|
---|
52 | /** Switcher for 32-bit host to 32-bit shadow paging. */
|
---|
53 | VMMSWITCHER_32_TO_32,
|
---|
54 | /** Switcher for 32-bit host paging to PAE shadow paging. */
|
---|
55 | VMMSWITCHER_32_TO_PAE,
|
---|
56 | /** Switcher for 32-bit host paging to AMD64 shadow paging. */
|
---|
57 | VMMSWITCHER_32_TO_AMD64,
|
---|
58 | /** Switcher for PAE host to 32-bit shadow paging. */
|
---|
59 | VMMSWITCHER_PAE_TO_32,
|
---|
60 | /** Switcher for PAE host to PAE shadow paging. */
|
---|
61 | VMMSWITCHER_PAE_TO_PAE,
|
---|
62 | /** Switcher for PAE host paging to AMD64 shadow paging. */
|
---|
63 | VMMSWITCHER_PAE_TO_AMD64,
|
---|
64 | /** Switcher for AMD64 host paging to PAE shadow paging. */
|
---|
65 | VMMSWITCHER_AMD64_TO_PAE,
|
---|
66 | /** Switcher for AMD64 host paging to AMD64 shadow paging. */
|
---|
67 | VMMSWITCHER_AMD64_TO_AMD64,
|
---|
68 | /** Used to make a count for array declarations and suchlike. */
|
---|
69 | VMMSWITCHER_MAX,
|
---|
70 | /** The usual 32-bit paranoia. */
|
---|
71 | VMMSWITCHER_32BIT_HACK = 0x7fffffff
|
---|
72 | } VMMSWITCHER;
|
---|
73 |
|
---|
74 |
|
---|
75 | /**
|
---|
76 | * VMMGCCallHost operations.
|
---|
77 | */
|
---|
78 | typedef enum VMMCALLHOST
|
---|
79 | {
|
---|
80 | /** Invalid operation. */
|
---|
81 | VMMCALLHOST_INVALID = 0,
|
---|
82 | /** Acquire the PDM lock. */
|
---|
83 | VMMCALLHOST_PDM_LOCK,
|
---|
84 | /** Call PDMR3QueueFlushWorker. */
|
---|
85 | VMMCALLHOST_PDM_QUEUE_FLUSH,
|
---|
86 | /** Acquire the PGM lock. */
|
---|
87 | VMMCALLHOST_PGM_LOCK,
|
---|
88 | /** Grow the PGM shadow page pool. */
|
---|
89 | VMMCALLHOST_PGM_POOL_GROW,
|
---|
90 | /** Maps a chunk into ring-3. */
|
---|
91 | VMMCALLHOST_PGM_MAP_CHUNK,
|
---|
92 | /** Allocates more handy pages. */
|
---|
93 | VMMCALLHOST_PGM_ALLOCATE_HANDY_PAGES,
|
---|
94 | #ifndef VBOX_WITH_NEW_PHYS_CODE
|
---|
95 | /** Dynamically allocate physical guest RAM. */
|
---|
96 | VMMCALLHOST_PGM_RAM_GROW_RANGE,
|
---|
97 | #endif
|
---|
98 | /** Replay the REM handler notifications. */
|
---|
99 | VMMCALLHOST_REM_REPLAY_HANDLER_NOTIFICATIONS,
|
---|
100 | /** Flush the GC/R0 logger. */
|
---|
101 | VMMCALLHOST_VMM_LOGGER_FLUSH,
|
---|
102 | /** Set the VM error message. */
|
---|
103 | VMMCALLHOST_VM_SET_ERROR,
|
---|
104 | /** Set the VM runtime error message. */
|
---|
105 | VMMCALLHOST_VM_SET_RUNTIME_ERROR,
|
---|
106 | /** Signal a ring 0 hypervisor assertion. */
|
---|
107 | VMMCALLHOST_VM_R0_HYPER_ASSERTION,
|
---|
108 | /** The usual 32-bit hack. */
|
---|
109 | VMMCALLHOST_32BIT_HACK = 0x7fffffff
|
---|
110 | } VMMCALLHOST;
|
---|
111 |
|
---|
112 | RTGCPTR VMMGetStackGC(PVM pVM);
|
---|
113 | RTHCPTR VMMGetHCStack(PVM pVM);
|
---|
114 | VMCPUID VMMGetCpuId(PVM pVM);
|
---|
115 | VMMDECL(uint32_t) VMMGetSvnRev(void);
|
---|
116 |
|
---|
117 |
|
---|
118 | #ifdef IN_RING3
|
---|
119 | /** @defgroup grp_vmm_r3 The VMM Host Context Ring 3 API
|
---|
120 | * @ingroup grp_vmm
|
---|
121 | * @{
|
---|
122 | */
|
---|
123 | VMMR3DECL(int) VMMR3Init(PVM pVM);
|
---|
124 | VMMR3DECL(int) VMMR3InitFinalize(PVM pVM);
|
---|
125 | VMMR3DECL(int) VMMR3InitR0(PVM pVM);
|
---|
126 | VMMR3DECL(int) VMMR3InitRC(PVM pVM);
|
---|
127 | VMMR3DECL(int) VMMR3Term(PVM pVM);
|
---|
128 | VMMR3DECL(void) VMMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
|
---|
129 | VMMR3DECL(int) VMMR3UpdateLoggers(PVM pVM);
|
---|
130 | VMMR3DECL(const char *) VMMR3GetGCAssertMsg1(PVM pVM);
|
---|
131 | VMMR3DECL(const char *) VMMR3GetGCAssertMsg2(PVM pVM);
|
---|
132 | VMMR3DECL(int) VMMR3GetImportGC(PVM pVM, const char *pszSymbol, PRTGCPTR pGCPtrValue);
|
---|
133 | VMMR3DECL(int) VMMR3SelectSwitcher(PVM pVM, VMMSWITCHER enmSwitcher);
|
---|
134 | VMMR3DECL(int) VMMR3DisableSwitcher(PVM pVM);
|
---|
135 | VMMR3DECL(int) VMMR3RawRunGC(PVM pVM);
|
---|
136 | VMMR3DECL(int) VMMR3HwAccRunGC(PVM pVM);
|
---|
137 | VMMR3DECL(int) VMMR3CallGC(PVM pVM, RTRCPTR GCPtrEntry, unsigned cArgs, ...);
|
---|
138 | VMMR3DECL(int) VMMR3CallGCV(PVM pVM, RTRCPTR GCPtrEntry, unsigned cArgs, va_list args);
|
---|
139 | VMMR3DECL(int) VMMR3ResumeHyper(PVM pVM);
|
---|
140 | VMMR3DECL(void) VMMR3FatalDump(PVM pVM, int rcErr);
|
---|
141 | VMMR3DECL(int) VMMR3Lock(PVM pVM);
|
---|
142 | VMMR3DECL(int) VMMR3Unlock(PVM pVM);
|
---|
143 | VMMR3DECL(RTNATIVETHREAD) VMMR3LockGetOwner(PVM pVM);
|
---|
144 | VMMR3DECL(bool) VMMR3LockIsOwner(PVM pVM);
|
---|
145 | VMMR3DECL(void) VMMR3YieldSuspend(PVM pVM);
|
---|
146 | VMMR3DECL(void) VMMR3YieldStop(PVM pVM);
|
---|
147 | VMMR3DECL(void) VMMR3YieldResume(PVM pVM);
|
---|
148 | /** @} */
|
---|
149 | #endif /* IN_RING3 */
|
---|
150 |
|
---|
151 |
|
---|
152 | /** @defgroup grp_vmm_r0 The VMM Host Context Ring 0 API
|
---|
153 | * @ingroup grp_vmm
|
---|
154 | * @{
|
---|
155 | */
|
---|
156 |
|
---|
157 | /**
|
---|
158 | * The VMMR0Entry() codes.
|
---|
159 | */
|
---|
160 | typedef enum VMMR0OPERATION
|
---|
161 | {
|
---|
162 | /** Run guest context. */
|
---|
163 | VMMR0_DO_RAW_RUN = SUP_VMMR0_DO_RAW_RUN,
|
---|
164 | /** Run guest code using the available hardware acceleration technology. */
|
---|
165 | VMMR0_DO_HWACC_RUN = SUP_VMMR0_DO_HWACC_RUN,
|
---|
166 | /** Official NOP that we use for profiling. */
|
---|
167 | VMMR0_DO_NOP = SUP_VMMR0_DO_NOP,
|
---|
168 | /** Official slow iocl NOP that we use for profiling. */
|
---|
169 | VMMR0_DO_SLOW_NOP,
|
---|
170 |
|
---|
171 | /** Ask the GVMM to create a new VM. */
|
---|
172 | VMMR0_DO_GVMM_CREATE_VM,
|
---|
173 | /** Ask the GVMM to destroy the VM. */
|
---|
174 | VMMR0_DO_GVMM_DESTROY_VM,
|
---|
175 | /** Call GVMMR0SchedHalt(). */
|
---|
176 | VMMR0_DO_GVMM_SCHED_HALT,
|
---|
177 | /** Call GVMMR0SchedWakeUp(). */
|
---|
178 | VMMR0_DO_GVMM_SCHED_WAKE_UP,
|
---|
179 | /** Call GVMMR0SchedPoll(). */
|
---|
180 | VMMR0_DO_GVMM_SCHED_POLL,
|
---|
181 | /** Call GVMMR0QueryStatistics(). */
|
---|
182 | VMMR0_DO_GVMM_QUERY_STATISTICS,
|
---|
183 | /** Call GVMMR0ResetStatistics(). */
|
---|
184 | VMMR0_DO_GVMM_RESET_STATISTICS,
|
---|
185 |
|
---|
186 | /** Call VMMR0 Per VM Init. */
|
---|
187 | VMMR0_DO_VMMR0_INIT,
|
---|
188 | /** Call VMMR0 Per VM Termination. */
|
---|
189 | VMMR0_DO_VMMR0_TERM,
|
---|
190 | /** Setup the hardware accelerated raw-mode session. */
|
---|
191 | VMMR0_DO_HWACC_SETUP_VM,
|
---|
192 | /** Attempt to enable or disable hardware accelerated raw-mode. */
|
---|
193 | VMMR0_DO_HWACC_ENABLE,
|
---|
194 | /** Calls function in the hypervisor.
|
---|
195 | * The caller must setup the hypervisor context so the call will be performed.
|
---|
196 | * The difference between VMMR0_DO_RUN_GC and this one is the handling of
|
---|
197 | * the return GC code. The return code will not be interpreted by this operation.
|
---|
198 | */
|
---|
199 | VMMR0_DO_CALL_HYPERVISOR,
|
---|
200 |
|
---|
201 | /** Call PGMR0PhysAllocateHandyPages(). */
|
---|
202 | VMMR0_DO_PGM_ALLOCATE_HANDY_PAGES,
|
---|
203 |
|
---|
204 | /** Call GMMR0InitialReservation(). */
|
---|
205 | VMMR0_DO_GMM_INITIAL_RESERVATION,
|
---|
206 | /** Call GMMR0UpdateReservation(). */
|
---|
207 | VMMR0_DO_GMM_UPDATE_RESERVATION,
|
---|
208 | /** Call GMMR0AllocatePages(). */
|
---|
209 | VMMR0_DO_GMM_ALLOCATE_PAGES,
|
---|
210 | /** Call GMMR0FreePages(). */
|
---|
211 | VMMR0_DO_GMM_FREE_PAGES,
|
---|
212 | /** Call GMMR0BalloonedPages(). */
|
---|
213 | VMMR0_DO_GMM_BALLOONED_PAGES,
|
---|
214 | /** Call GMMR0DeflatedBalloon(). */
|
---|
215 | VMMR0_DO_GMM_DEFLATED_BALLOON,
|
---|
216 | /** Call GMMR0MapUnmapChunk(). */
|
---|
217 | VMMR0_DO_GMM_MAP_UNMAP_CHUNK,
|
---|
218 | /** Call GMMR0SeedChunk(). */
|
---|
219 | VMMR0_DO_GMM_SEED_CHUNK,
|
---|
220 |
|
---|
221 | /** Set a GVMM or GMM configuration value. */
|
---|
222 | VMMR0_DO_GCFGM_SET_VALUE,
|
---|
223 | /** Query a GVMM or GMM configuration value. */
|
---|
224 | VMMR0_DO_GCFGM_QUERY_VALUE,
|
---|
225 |
|
---|
226 | /** The start of the R0 service operations. */
|
---|
227 | VMMR0_DO_SRV_START,
|
---|
228 | /** Call INTNETR0Open(). */
|
---|
229 | VMMR0_DO_INTNET_OPEN,
|
---|
230 | /** Call INTNETR0IfClose(). */
|
---|
231 | VMMR0_DO_INTNET_IF_CLOSE,
|
---|
232 | /** Call INTNETR0IfGetRing3Buffer(). */
|
---|
233 | VMMR0_DO_INTNET_IF_GET_RING3_BUFFER,
|
---|
234 | /** Call INTNETR0IfSetPromiscuousMode(). */
|
---|
235 | VMMR0_DO_INTNET_IF_SET_PROMISCUOUS_MODE,
|
---|
236 | /** Call INTNETR0IfSetMacAddress(). */
|
---|
237 | VMMR0_DO_INTNET_IF_SET_MAC_ADDRESS,
|
---|
238 | /** Call INTNETR0IfSetActive(). */
|
---|
239 | VMMR0_DO_INTNET_IF_SET_ACTIVE,
|
---|
240 | /** Call INTNETR0IfSend(). */
|
---|
241 | VMMR0_DO_INTNET_IF_SEND,
|
---|
242 | /** Call INTNETR0IfWait(). */
|
---|
243 | VMMR0_DO_INTNET_IF_WAIT,
|
---|
244 | /** The end of the R0 service operations. */
|
---|
245 | VMMR0_DO_SRV_END,
|
---|
246 |
|
---|
247 | /** Official call we use for testing Ring-0 APIs. */
|
---|
248 | VMMR0_DO_TESTS,
|
---|
249 |
|
---|
250 | /** The usual 32-bit type blow up. */
|
---|
251 | VMMR0_DO_32BIT_HACK = 0x7fffffff
|
---|
252 | } VMMR0OPERATION;
|
---|
253 |
|
---|
254 |
|
---|
255 | /**
|
---|
256 | * Request buffer for VMMR0_DO_GCFGM_SET_VALUE and VMMR0_DO_GCFGM_QUERY_VALUE.
|
---|
257 | * @todo Move got GCFGM.h when it's implemented.
|
---|
258 | */
|
---|
259 | typedef struct GCFGMVALUEREQ
|
---|
260 | {
|
---|
261 | /** The request header.*/
|
---|
262 | SUPVMMR0REQHDR Hdr;
|
---|
263 | /** The support driver session handle. */
|
---|
264 | PSUPDRVSESSION pSession;
|
---|
265 | /** The value.
|
---|
266 | * This is input for the set request and output for the query. */
|
---|
267 | uint64_t u64Value;
|
---|
268 | /** The variable name.
|
---|
269 | * This is fixed sized just to make things simple for the mock-up. */
|
---|
270 | char szName[48];
|
---|
271 | } GCFGMVALUEREQ;
|
---|
272 | /** Pointer to a VMMR0_DO_GCFGM_SET_VALUE and VMMR0_DO_GCFGM_QUERY_VALUE request buffer.
|
---|
273 | * @todo Move got GCFGM.h when it's implemented.
|
---|
274 | */
|
---|
275 | typedef GCFGMVALUEREQ *PGCFGMVALUEREQ;
|
---|
276 |
|
---|
277 | VMMR0DECL(int) VMMR0EntryInt(PVM pVM, VMMR0OPERATION enmOperation, void *pvArg);
|
---|
278 | VMMR0DECL(void) VMMR0EntryFast(PVM pVM, VMMR0OPERATION enmOperation);
|
---|
279 | VMMR0DECL(int) VMMR0EntryEx(PVM pVM, VMMR0OPERATION enmOperation, PSUPVMMR0REQHDR pReq, uint64_t u64Arg, PSUPDRVSESSION);
|
---|
280 | VMMR0DECL(int) VMMR0CallHost(PVM pVM, VMMCALLHOST enmOperation, uint64_t uArg);
|
---|
281 |
|
---|
282 | /** @} */
|
---|
283 |
|
---|
284 |
|
---|
285 | #ifdef IN_GC
|
---|
286 | /** @defgroup grp_vmm_rc The VMM Raw-Mode Context API
|
---|
287 | * @ingroup grp_vmm
|
---|
288 | * @{
|
---|
289 | */
|
---|
290 | VMMRCDECL(int) VMMGCEntry(PVM pVM, unsigned uOperation, unsigned uArg, ...);
|
---|
291 | VMMRCDECL(void) VMMGCGuestToHost(PVM pVM, int rc);
|
---|
292 | VMMRCDECL(int) VMMGCCallHost(PVM pVM, VMMCALLHOST enmOperation, uint64_t uArg);
|
---|
293 | /** @} */
|
---|
294 | #endif /* IN_RC */
|
---|
295 |
|
---|
296 |
|
---|
297 | /** @} */
|
---|
298 | __END_DECLS
|
---|
299 |
|
---|
300 | #endif
|
---|
301 |
|
---|