VirtualBox

source: vbox/trunk/include/VBox/vmm.h@ 25346

Last change on this file since 25346 was 23145, checked in by vboxsync, 15 years ago

VMM: Extended VMMR3EmtRendezvous with TYPE_ASCENDING, TYPE_DESCENDING and STOP_ON_ERROR for use with VM state changes. The return type of the callback was changed so that the callback can feed scheduling info to EM.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.8 KB
Line 
1/** @file
2 * VMM - The Virtual Machine Monitor. (VMM)
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 <VBox/log.h>
38#include <iprt/stdarg.h>
39
40RT_C_DECLS_BEGIN
41
42/** @defgroup grp_vmm The Virtual Machine Monitor API
43 * @{
44 */
45
46/**
47 * World switcher identifiers.
48 */
49typedef enum VMMSWITCHER
50{
51 /** The usual invalid 0. */
52 VMMSWITCHER_INVALID = 0,
53 /** Switcher for 32-bit host to 32-bit shadow paging. */
54 VMMSWITCHER_32_TO_32,
55 /** Switcher for 32-bit host paging to PAE shadow paging. */
56 VMMSWITCHER_32_TO_PAE,
57 /** Switcher for 32-bit host paging to AMD64 shadow paging. */
58 VMMSWITCHER_32_TO_AMD64,
59 /** Switcher for PAE host to 32-bit shadow paging. */
60 VMMSWITCHER_PAE_TO_32,
61 /** Switcher for PAE host to PAE shadow paging. */
62 VMMSWITCHER_PAE_TO_PAE,
63 /** Switcher for PAE host paging to AMD64 shadow paging. */
64 VMMSWITCHER_PAE_TO_AMD64,
65 /** Switcher for AMD64 host paging to 32-bit shadow paging. */
66 VMMSWITCHER_AMD64_TO_32,
67 /** Switcher for AMD64 host paging to PAE shadow paging. */
68 VMMSWITCHER_AMD64_TO_PAE,
69 /** Switcher for AMD64 host paging to AMD64 shadow paging. */
70 VMMSWITCHER_AMD64_TO_AMD64,
71 /** Used to make a count for array declarations and suchlike. */
72 VMMSWITCHER_MAX,
73 /** The usual 32-bit paranoia. */
74 VMMSWITCHER_32BIT_HACK = 0x7fffffff
75} VMMSWITCHER;
76
77
78/**
79 * VMMRZCallRing3 operations.
80 */
81typedef enum VMMCALLRING3
82{
83 /** Invalid operation. */
84 VMMCALLRING3_INVALID = 0,
85 /** Acquire the PDM lock. */
86 VMMCALLRING3_PDM_LOCK,
87 /** Call PDMR3QueueFlushWorker. */
88 VMMCALLRING3_PDM_QUEUE_FLUSH,
89 /** Acquire the PGM lock. */
90 VMMCALLRING3_PGM_LOCK,
91 /** Grow the PGM shadow page pool. */
92 VMMCALLRING3_PGM_POOL_GROW,
93 /** Maps a chunk into ring-3. */
94 VMMCALLRING3_PGM_MAP_CHUNK,
95 /** Allocates more handy pages. */
96 VMMCALLRING3_PGM_ALLOCATE_HANDY_PAGES,
97 /** Acquire the MM hypervisor heap lock. */
98 VMMCALLRING3_MMHYPER_LOCK,
99 /** Replay the REM handler notifications. */
100 VMMCALLRING3_REM_REPLAY_HANDLER_NOTIFICATIONS,
101 /** Flush the GC/R0 logger. */
102 VMMCALLRING3_VMM_LOGGER_FLUSH,
103 /** Set the VM error message. */
104 VMMCALLRING3_VM_SET_ERROR,
105 /** Set the VM runtime error message. */
106 VMMCALLRING3_VM_SET_RUNTIME_ERROR,
107 /** Signal a ring 0 assertion. */
108 VMMCALLRING3_VM_R0_ASSERTION,
109 /** Ring switch to force preemption. */
110 VMMCALLRING3_VM_R0_PREEMPT,
111 /** The usual 32-bit hack. */
112 VMMCALLRING3_32BIT_HACK = 0x7fffffff
113} VMMCALLRING3;
114
115/**
116 * VMMR3AtomicExecuteHandler callback function.
117 *
118 * @returns VBox status code.
119 * @param pVM Pointer to the shared VM structure.
120 * @param pvUser User specified argument
121 *
122 * @todo missing prefix.
123 */
124typedef DECLCALLBACK(int) FNATOMICHANDLER(PVM pVM, void *pvUser);
125/** Pointer to a FNMMATOMICHANDLER(). */
126typedef FNATOMICHANDLER *PFNATOMICHANDLER;
127
128/**
129 * Rendezvous callback.
130 *
131 * @returns VBox strict status code - EM scheduling. Do not return
132 * informational status code other than the ones used by EM for
133 * scheduling.
134 *
135 * @param pVM The VM handle.
136 * @param pVCpu The handle of the calling virtual CPU.
137 * @param pvUser The user argument.
138 */
139typedef DECLCALLBACK(VBOXSTRICTRC) FNVMMEMTRENDEZVOUS(PVM pVM, PVMCPU pVCpu, void *pvUser);
140/** Pointer to a rendezvous callback function. */
141typedef FNVMMEMTRENDEZVOUS *PFNVMMEMTRENDEZVOUS;
142
143
144VMMDECL(RTRCPTR) VMMGetStackRC(PVM pVM);
145VMMDECL(VMCPUID) VMMGetCpuId(PVM pVM);
146VMMDECL(PVMCPU) VMMGetCpu(PVM pVM);
147VMMDECL(PVMCPU) VMMGetCpu0(PVM pVM);
148VMMDECL(PVMCPU) VMMGetCpuById(PVM pVM, VMCPUID idCpu);
149VMMDECL(uint32_t) VMMGetSvnRev(void);
150VMMDECL(VMMSWITCHER) VMMGetSwitcher(PVM pVM);
151VMMDECL(void) VMMTrashVolatileXMMRegs(void);
152
153/** @def VMMIsHwVirtExtForced
154 * Checks if forced to use the hardware assisted virtualization extensions.
155 *
156 * This is intended for making setup decisions where we can save resources when
157 * using hardware assisted virtualization.
158 *
159 * @returns true / false.
160 * @param pVM Pointer to the shared VM structure.
161 */
162#define VMMIsHwVirtExtForced(pVM) ((pVM)->fHwVirtExtForced)
163
164
165#ifdef IN_RING3
166/** @defgroup grp_vmm_r3 The VMM Host Context Ring 3 API
167 * @ingroup grp_vmm
168 * @{
169 */
170VMMR3DECL(int) VMMR3Init(PVM pVM);
171VMMR3DECL(int) VMMR3InitCPU(PVM pVM);
172VMMR3DECL(int) VMMR3InitFinalize(PVM pVM);
173VMMR3DECL(int) VMMR3InitR0(PVM pVM);
174VMMR3DECL(int) VMMR3InitRC(PVM pVM);
175VMMR3DECL(int) VMMR3Term(PVM pVM);
176VMMR3DECL(int) VMMR3TermCPU(PVM pVM);
177VMMR3DECL(void) VMMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
178VMMR3DECL(int) VMMR3UpdateLoggers(PVM pVM);
179VMMR3DECL(const char *) VMMR3GetRZAssertMsg1(PVM pVM);
180VMMR3DECL(const char *) VMMR3GetRZAssertMsg2(PVM pVM);
181VMMR3DECL(int) VMMR3GetImportRC(PVM pVM, const char *pszSymbol, PRTRCPTR pRCPtrValue);
182VMMR3DECL(int) VMMR3SelectSwitcher(PVM pVM, VMMSWITCHER enmSwitcher);
183VMMR3DECL(int) VMMR3DisableSwitcher(PVM pVM);
184VMMR3DECL(RTR0PTR) VMMR3GetHostToGuestSwitcher(PVM pVM, VMMSWITCHER enmSwitcher);
185VMMR3DECL(int) VMMR3RawRunGC(PVM pVM, PVMCPU pVCpu);
186VMMR3DECL(int) VMMR3HwAccRunGC(PVM pVM, PVMCPU pVCpu);
187VMMR3DECL(int) VMMR3CallRC(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, ...);
188VMMR3DECL(int) VMMR3CallRCV(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, va_list args);
189VMMR3DECL(int) VMMR3CallR0(PVM pVM, uint32_t uOperation, uint64_t u64Arg, PSUPVMMR0REQHDR pReqHdr);
190VMMR3DECL(int) VMMR3ResumeHyper(PVM pVM, PVMCPU pVCpu);
191VMMR3DECL(void) VMMR3FatalDump(PVM pVM, PVMCPU pVCpu, int rcErr);
192VMMR3DECL(void) VMMR3YieldSuspend(PVM pVM);
193VMMR3DECL(void) VMMR3YieldStop(PVM pVM);
194VMMR3DECL(void) VMMR3YieldResume(PVM pVM);
195VMMR3DECL(void) VMMR3SendSipi(PVM pVM, VMCPUID idCpu, uint32_t uVector);
196VMMR3DECL(void) VMMR3SendInitIpi(PVM pVM, VMCPUID idCpu);
197VMMR3DECL(int) VMMR3RegisterPatchMemory(PVM pVM, RTGCPTR pPatchMem, unsigned cbPatchMem);
198VMMR3DECL(int) VMMR3DeregisterPatchMemory(PVM pVM, RTGCPTR pPatchMem, unsigned cbPatchMem);
199VMMR3DECL(int) VMMR3AtomicExecuteHandler(PVM pVM, PFNATOMICHANDLER pfnHandler, void *pvUser);
200VMMR3DECL(int) VMMR3EmtRendezvous(PVM pVM, uint32_t fFlags, PFNVMMEMTRENDEZVOUS pfnRendezvous, void *pvUser);
201/** @defgroup grp_VMMR3EmtRendezvous_fFlags VMMR3EmtRendezvous flags
202 * @{ */
203/** Execution type mask. */
204#define VMMEMTRENDEZVOUS_FLAGS_TYPE_MASK UINT32_C(0x00000007)
205/** Invalid execution type. */
206#define VMMEMTRENDEZVOUS_FLAGS_TYPE_INVALID UINT32_C(0)
207/** Let the EMTs execute the callback one by one (in no particular order). */
208#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ONE_BY_ONE UINT32_C(1)
209/** Let all the EMTs execute the callback at the same time. */
210#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ALL_AT_ONCE UINT32_C(2)
211/** Only execute the callback on one EMT (no particular one). */
212#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ONCE UINT32_C(3)
213/** Let the EMTs execute the callback one by one in ascending order. */
214#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ASCENDING UINT32_C(4)
215/** Let the EMTs execute the callback one by one in descending order. */
216#define VMMEMTRENDEZVOUS_FLAGS_TYPE_DESCENDING UINT32_C(5)
217/** Stop after the first error.
218 * This is not valid for any execution type where more than one EMT is active
219 * at a time. */
220#define VMMEMTRENDEZVOUS_FLAGS_STOP_ON_ERROR UINT32_C(0x00000008)
221/** The valid flags. */
222#define VMMEMTRENDEZVOUS_FLAGS_VALID_MASK UINT32_C(0x0000000f)
223/** @} */
224VMMR3DECL(int) VMMR3EmtRendezvousFF(PVM pVM, PVMCPU pVCpu);
225VMMR3DECL(int) VMMR3ReadR0Stack(PVM pVM, VMCPUID idCpu, RTHCUINTPTR pAddress, void *pvBuf, size_t cbRead);
226/** @} */
227#endif /* IN_RING3 */
228
229
230/** @defgroup grp_vmm_r0 The VMM Host Context Ring 0 API
231 * @ingroup grp_vmm
232 * @{
233 */
234
235/**
236 * The VMMR0Entry() codes.
237 */
238typedef enum VMMR0OPERATION
239{
240 /** Run guest context. */
241 VMMR0_DO_RAW_RUN = SUP_VMMR0_DO_RAW_RUN,
242 /** Run guest code using the available hardware acceleration technology. */
243 VMMR0_DO_HWACC_RUN = SUP_VMMR0_DO_HWACC_RUN,
244 /** Official NOP that we use for profiling. */
245 VMMR0_DO_NOP = SUP_VMMR0_DO_NOP,
246 /** Official slow iocl NOP that we use for profiling. */
247 VMMR0_DO_SLOW_NOP,
248
249 /** Ask the GVMM to create a new VM. */
250 VMMR0_DO_GVMM_CREATE_VM,
251 /** Ask the GVMM to destroy the VM. */
252 VMMR0_DO_GVMM_DESTROY_VM,
253 /** Call GVMMR0SchedHalt(). */
254 VMMR0_DO_GVMM_SCHED_HALT,
255 /** Call GVMMR0SchedWakeUp(). */
256 VMMR0_DO_GVMM_SCHED_WAKE_UP,
257 /** Call GVMMR0SchedPoke(). */
258 VMMR0_DO_GVMM_SCHED_POKE,
259 /** Call GVMMR0SchedWakeUpAndPokeCpus(). */
260 VMMR0_DO_GVMM_SCHED_WAKE_UP_AND_POKE_CPUS,
261 /** Call GVMMR0SchedPoll(). */
262 VMMR0_DO_GVMM_SCHED_POLL,
263 /** Call GVMMR0QueryStatistics(). */
264 VMMR0_DO_GVMM_QUERY_STATISTICS,
265 /** Call GVMMR0ResetStatistics(). */
266 VMMR0_DO_GVMM_RESET_STATISTICS,
267 /** Call GVMMR0RegisterVCpu(). */
268 VMMR0_DO_GVMM_REGISTER_VMCPU,
269
270 /** Call VMMR0 Per VM Init. */
271 VMMR0_DO_VMMR0_INIT,
272 /** Call VMMR0 Per VM Termination. */
273 VMMR0_DO_VMMR0_TERM,
274 /** Setup the hardware accelerated raw-mode session. */
275 VMMR0_DO_HWACC_SETUP_VM,
276 /** Attempt to enable or disable hardware accelerated raw-mode. */
277 VMMR0_DO_HWACC_ENABLE,
278 /** Calls function in the hypervisor.
279 * The caller must setup the hypervisor context so the call will be performed.
280 * The difference between VMMR0_DO_RUN_GC and this one is the handling of
281 * the return GC code. The return code will not be interpreted by this operation.
282 */
283 VMMR0_DO_CALL_HYPERVISOR,
284
285 /** Call PGMR0PhysAllocateHandyPages(). */
286 VMMR0_DO_PGM_ALLOCATE_HANDY_PAGES,
287
288 /** Call GMMR0InitialReservation(). */
289 VMMR0_DO_GMM_INITIAL_RESERVATION,
290 /** Call GMMR0UpdateReservation(). */
291 VMMR0_DO_GMM_UPDATE_RESERVATION,
292 /** Call GMMR0AllocatePages(). */
293 VMMR0_DO_GMM_ALLOCATE_PAGES,
294 /** Call GMMR0FreePages(). */
295 VMMR0_DO_GMM_FREE_PAGES,
296 /** Call GMMR0BalloonedPages(). */
297 VMMR0_DO_GMM_BALLOONED_PAGES,
298 /** Call GMMR0DeflatedBalloon(). */
299 VMMR0_DO_GMM_DEFLATED_BALLOON,
300 /** Call GMMR0MapUnmapChunk(). */
301 VMMR0_DO_GMM_MAP_UNMAP_CHUNK,
302 /** Call GMMR0SeedChunk(). */
303 VMMR0_DO_GMM_SEED_CHUNK,
304
305 /** Set a GVMM or GMM configuration value. */
306 VMMR0_DO_GCFGM_SET_VALUE,
307 /** Query a GVMM or GMM configuration value. */
308 VMMR0_DO_GCFGM_QUERY_VALUE,
309
310 /** The start of the R0 service operations. */
311 VMMR0_DO_SRV_START,
312 /** Call INTNETR0Open(). */
313 VMMR0_DO_INTNET_OPEN,
314 /** Call INTNETR0IfClose(). */
315 VMMR0_DO_INTNET_IF_CLOSE,
316 /** Call INTNETR0IfGetRing3Buffer(). */
317 VMMR0_DO_INTNET_IF_GET_RING3_BUFFER,
318 /** Call INTNETR0IfSetPromiscuousMode(). */
319 VMMR0_DO_INTNET_IF_SET_PROMISCUOUS_MODE,
320 /** Call INTNETR0IfSetMacAddress(). */
321 VMMR0_DO_INTNET_IF_SET_MAC_ADDRESS,
322 /** Call INTNETR0IfSetActive(). */
323 VMMR0_DO_INTNET_IF_SET_ACTIVE,
324 /** Call INTNETR0IfSend(). */
325 VMMR0_DO_INTNET_IF_SEND,
326 /** Call INTNETR0IfWait(). */
327 VMMR0_DO_INTNET_IF_WAIT,
328 /** The end of the R0 service operations. */
329 VMMR0_DO_SRV_END,
330
331 /** Official call we use for testing Ring-0 APIs. */
332 VMMR0_DO_TESTS,
333 /** Test the 32->64 bits switcher. */
334 VMMR0_DO_TEST_SWITCHER3264,
335
336 /** The usual 32-bit type blow up. */
337 VMMR0_DO_32BIT_HACK = 0x7fffffff
338} VMMR0OPERATION;
339
340
341/**
342 * Request buffer for VMMR0_DO_GCFGM_SET_VALUE and VMMR0_DO_GCFGM_QUERY_VALUE.
343 * @todo Move got GCFGM.h when it's implemented.
344 */
345typedef struct GCFGMVALUEREQ
346{
347 /** The request header.*/
348 SUPVMMR0REQHDR Hdr;
349 /** The support driver session handle. */
350 PSUPDRVSESSION pSession;
351 /** The value.
352 * This is input for the set request and output for the query. */
353 uint64_t u64Value;
354 /** The variable name.
355 * This is fixed sized just to make things simple for the mock-up. */
356 char szName[48];
357} GCFGMVALUEREQ;
358/** Pointer to a VMMR0_DO_GCFGM_SET_VALUE and VMMR0_DO_GCFGM_QUERY_VALUE request buffer.
359 * @todo Move got GCFGM.h when it's implemented.
360 */
361typedef GCFGMVALUEREQ *PGCFGMVALUEREQ;
362
363VMMR0DECL(int) VMMR0EntryInt(PVM pVM, VMMR0OPERATION enmOperation, void *pvArg);
364VMMR0DECL(void) VMMR0EntryFast(PVM pVM, VMCPUID idCpu, VMMR0OPERATION enmOperation);
365VMMR0DECL(int) VMMR0EntryEx(PVM pVM, VMCPUID idCpu, VMMR0OPERATION enmOperation, PSUPVMMR0REQHDR pReq, uint64_t u64Arg, PSUPDRVSESSION);
366VMMR0DECL(int) VMMR0TermVM(PVM pVM, PGVM pGVM);
367
368#ifdef LOG_ENABLED
369VMMR0DECL(void) VMMR0LogFlushDisable(PVMCPU pVCpu);
370VMMR0DECL(void) VMMR0LogFlushEnable(PVMCPU pVCpu);
371#else
372#define VMMR0LogFlushDisable(pVCpu) do { } while(0)
373#define VMMR0LogFlushEnable(pVCpu) do { } while(0)
374#endif
375
376/** @} */
377
378
379#ifdef IN_RC
380/** @defgroup grp_vmm_rc The VMM Raw-Mode Context API
381 * @ingroup grp_vmm
382 * @{
383 */
384VMMRCDECL(int) VMMGCEntry(PVM pVM, unsigned uOperation, unsigned uArg, ...);
385VMMRCDECL(void) VMMGCGuestToHost(PVM pVM, int rc);
386VMMRCDECL(void) VMMGCLogFlushIfFull(PVM pVM);
387/** @} */
388#endif /* IN_RC */
389
390#if defined(IN_RC) || defined(IN_RING0)
391/** @defgroup grp_vmm_rz The VMM Raw-Mode and Ring-0 Context API
392 * @ingroup grp_vmm
393 * @{
394 */
395VMMRZDECL(int) VMMRZCallRing3(PVM pVM, PVMCPU pVCpu, VMMCALLRING3 enmOperation, uint64_t uArg);
396VMMRZDECL(int) VMMRZCallRing3NoCpu(PVM pVM, VMMCALLRING3 enmOperation, uint64_t uArg);
397VMMRZDECL(void) VMMRZCallRing3Disable(PVMCPU pVCpu);
398VMMRZDECL(void) VMMRZCallRing3Enable(PVMCPU pVCpu);
399VMMRZDECL(bool) VMMRZCallRing3IsEnabled(PVMCPU pVCpu);
400/** @} */
401#endif
402
403
404/** @} */
405RT_C_DECLS_END
406
407#endif
408
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette