VirtualBox

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

Last change on this file since 91043 was 90999, checked in by vboxsync, 3 years ago

VMM: Removed VMMCALLRING3_PGM_LOCK (now unused). bugref:6695

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 23.6 KB
Line 
1/** @file
2 * VMM - The Virtual Machine Monitor.
3 */
4
5/*
6 * Copyright (C) 2006-2020 Oracle Corporation
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
26#ifndef VBOX_INCLUDED_vmm_vmm_h
27#define VBOX_INCLUDED_vmm_vmm_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <VBox/types.h>
33#include <VBox/vmm/vmapi.h>
34#include <VBox/sup.h>
35#include <VBox/log.h>
36#include <iprt/stdarg.h>
37#include <iprt/thread.h>
38
39RT_C_DECLS_BEGIN
40
41/** @defgroup grp_vmm The Virtual Machine Monitor
42 * @{
43 */
44
45/** @defgroup grp_vmm_api The Virtual Machine Monitor API
46 * @{
47 */
48
49
50/**
51 * VMMRZCallRing3 operations.
52 */
53typedef enum VMMCALLRING3
54{
55 /** Invalid operation. */
56 VMMCALLRING3_INVALID = 0,
57 /** Signal a ring 0 assertion. */
58 VMMCALLRING3_VM_R0_ASSERTION,
59
60 /** Grow the PGM shadow page pool. */
61 VMMCALLRING3_PGM_POOL_GROW,
62 /** Maps a chunk into ring-3. */
63 VMMCALLRING3_PGM_MAP_CHUNK,
64 /** Allocates more handy pages. */
65 VMMCALLRING3_PGM_ALLOCATE_HANDY_PAGES,
66 /** Allocates a large (2MB) page. */
67 VMMCALLRING3_PGM_ALLOCATE_LARGE_HANDY_PAGE,
68 /** The usual 32-bit hack. */
69 VMMCALLRING3_32BIT_HACK = 0x7fffffff
70} VMMCALLRING3;
71
72/**
73 * VMMRZCallRing3 notification callback.
74 *
75 * @returns VBox status code.
76 * @param pVCpu The cross context virtual CPU structure.
77 * @param enmOperation The operation causing the ring-3 jump.
78 * @param pvUser The user argument.
79 */
80typedef DECLCALLBACKTYPE(int, FNVMMR0CALLRING3NOTIFICATION,(PVMCPUCC pVCpu, VMMCALLRING3 enmOperation, void *pvUser));
81/** Pointer to a FNRTMPNOTIFICATION(). */
82typedef FNVMMR0CALLRING3NOTIFICATION *PFNVMMR0CALLRING3NOTIFICATION;
83
84/**
85 * Rendezvous callback.
86 *
87 * @returns VBox strict status code - EM scheduling. Do not return
88 * informational status code other than the ones used by EM for
89 * scheduling.
90 *
91 * @param pVM The cross context VM structure.
92 * @param pVCpu The cross context virtual CPU structure of the calling EMT.
93 * @param pvUser The user argument.
94 */
95typedef DECLCALLBACKTYPE(VBOXSTRICTRC, FNVMMEMTRENDEZVOUS,(PVM pVM, PVMCPU pVCpu, void *pvUser));
96/** Pointer to a rendezvous callback function. */
97typedef FNVMMEMTRENDEZVOUS *PFNVMMEMTRENDEZVOUS;
98
99/**
100 * Method table that the VMM uses to call back the user of the VMM.
101 */
102typedef struct VMM2USERMETHODS
103{
104 /** Magic value (VMM2USERMETHODS_MAGIC). */
105 uint32_t u32Magic;
106 /** Structure version (VMM2USERMETHODS_VERSION). */
107 uint32_t u32Version;
108
109 /**
110 * Save the VM state.
111 *
112 * @returns VBox status code.
113 * @param pThis Pointer to the callback method table.
114 * @param pUVM The user mode VM handle.
115 *
116 * @remarks This member shall be set to NULL if the operation is not
117 * supported.
118 */
119 DECLR3CALLBACKMEMBER(int, pfnSaveState,(PCVMM2USERMETHODS pThis, PUVM pUVM));
120 /** @todo Move pfnVMAtError and pfnCFGMConstructor here? */
121
122 /**
123 * EMT initialization notification callback.
124 *
125 * This is intended for doing per-thread initialization for EMTs (like COM
126 * init).
127 *
128 * @param pThis Pointer to the callback method table.
129 * @param pUVM The user mode VM handle.
130 * @param pUVCpu The user mode virtual CPU handle.
131 *
132 * @remarks This is optional and shall be set to NULL if not wanted.
133 */
134 DECLR3CALLBACKMEMBER(void, pfnNotifyEmtInit,(PCVMM2USERMETHODS pThis, PUVM pUVM, PUVMCPU pUVCpu));
135
136 /**
137 * EMT termination notification callback.
138 *
139 * This is intended for doing per-thread cleanups for EMTs (like COM).
140 *
141 * @param pThis Pointer to the callback method table.
142 * @param pUVM The user mode VM handle.
143 * @param pUVCpu The user mode virtual CPU handle.
144 *
145 * @remarks This is optional and shall be set to NULL if not wanted.
146 */
147 DECLR3CALLBACKMEMBER(void, pfnNotifyEmtTerm,(PCVMM2USERMETHODS pThis, PUVM pUVM, PUVMCPU pUVCpu));
148
149 /**
150 * PDM thread initialization notification callback.
151 *
152 * This is intended for doing per-thread initialization (like COM init).
153 *
154 * @param pThis Pointer to the callback method table.
155 * @param pUVM The user mode VM handle.
156 *
157 * @remarks This is optional and shall be set to NULL if not wanted.
158 */
159 DECLR3CALLBACKMEMBER(void, pfnNotifyPdmtInit,(PCVMM2USERMETHODS pThis, PUVM pUVM));
160
161 /**
162 * EMT termination notification callback.
163 *
164 * This is intended for doing per-thread cleanups for EMTs (like COM).
165 *
166 * @param pThis Pointer to the callback method table.
167 * @param pUVM The user mode VM handle.
168 *
169 * @remarks This is optional and shall be set to NULL if not wanted.
170 */
171 DECLR3CALLBACKMEMBER(void, pfnNotifyPdmtTerm,(PCVMM2USERMETHODS pThis, PUVM pUVM));
172
173 /**
174 * Notification callback that that a VM reset will be turned into a power off.
175 *
176 * @param pThis Pointer to the callback method table.
177 * @param pUVM The user mode VM handle.
178 *
179 * @remarks This is optional and shall be set to NULL if not wanted.
180 */
181 DECLR3CALLBACKMEMBER(void, pfnNotifyResetTurnedIntoPowerOff,(PCVMM2USERMETHODS pThis, PUVM pUVM));
182
183 /**
184 * Generic object query by UUID.
185 *
186 * @returns pointer to queried the object on success, NULL if not found.
187 *
188 * @param pThis Pointer to the callback method table.
189 * @param pUVM The user mode VM handle.
190 * @param pUuid The UUID of what's being queried. The UUIDs and the
191 * usage conventions are defined by the user.
192 *
193 * @remarks This is optional and shall be set to NULL if not wanted.
194 */
195 DECLR3CALLBACKMEMBER(void *, pfnQueryGenericObject,(PCVMM2USERMETHODS pThis, PUVM pUVM, PCRTUUID pUuid));
196
197 /** Magic value (VMM2USERMETHODS_MAGIC) marking the end of the structure. */
198 uint32_t u32EndMagic;
199} VMM2USERMETHODS;
200
201/** Magic value of the VMM2USERMETHODS (Franz Kafka). */
202#define VMM2USERMETHODS_MAGIC UINT32_C(0x18830703)
203/** The VMM2USERMETHODS structure version. */
204#define VMM2USERMETHODS_VERSION UINT32_C(0x00030000)
205
206
207/**
208 * Checks whether we've armed the ring-0 long jump machinery.
209 *
210 * @returns @c true / @c false
211 * @param a_pVCpu The caller's cross context virtual CPU structure.
212 * @thread EMT
213 * @sa VMMR0IsLongJumpArmed
214 */
215#ifdef IN_RING0
216# define VMMIsLongJumpArmed(a_pVCpu) VMMR0IsLongJumpArmed(a_pVCpu)
217#else
218# define VMMIsLongJumpArmed(a_pVCpu) (false)
219#endif
220
221
222VMMDECL(VMCPUID) VMMGetCpuId(PVMCC pVM);
223VMMDECL(PVMCPUCC) VMMGetCpu(PVMCC pVM);
224VMMDECL(PVMCPUCC) VMMGetCpu0(PVMCC pVM);
225VMMDECL(PVMCPUCC) VMMGetCpuById(PVMCC pVM, VMCPUID idCpu);
226VMMR3DECL(PVMCPUCC) VMMR3GetCpuByIdU(PUVM pVM, VMCPUID idCpu);
227VMM_INT_DECL(uint32_t) VMMGetSvnRev(void);
228VMM_INT_DECL(bool) VMMIsInRing3Call(PVMCPUCC pVCpu);
229VMM_INT_DECL(void) VMMTrashVolatileXMMRegs(void);
230
231
232/** @defgroup grp_vmm_api_r0 The VMM Host Context Ring 0 API
233 * @{
234 */
235
236/**
237 * The VMMR0Entry() codes.
238 */
239typedef enum VMMR0OPERATION
240{
241 /** Run guest code using the available hardware acceleration technology. */
242 VMMR0_DO_HM_RUN = SUP_VMMR0_DO_HM_RUN,
243 /** Official NOP that we use for profiling. */
244 VMMR0_DO_NEM_RUN = SUP_VMMR0_DO_NEM_RUN,
245 /** Official NOP that we use for profiling. */
246 VMMR0_DO_NOP = SUP_VMMR0_DO_NOP,
247 /** Official slow iocl NOP that we use for profiling. */
248 VMMR0_DO_SLOW_NOP,
249
250 /** Ask the GVMM to create a new VM. */
251 VMMR0_DO_GVMM_CREATE_VM = 32,
252 /** Ask the GVMM to destroy the VM. */
253 VMMR0_DO_GVMM_DESTROY_VM,
254 /** Call GVMMR0RegisterVCpu(). */
255 VMMR0_DO_GVMM_REGISTER_VMCPU,
256 /** Call GVMMR0DeregisterVCpu(). */
257 VMMR0_DO_GVMM_DEREGISTER_VMCPU,
258 /** Call GVMMR0SchedHalt(). */
259 VMMR0_DO_GVMM_SCHED_HALT,
260 /** Call GVMMR0SchedWakeUp(). */
261 VMMR0_DO_GVMM_SCHED_WAKE_UP,
262 /** Call GVMMR0SchedPoke(). */
263 VMMR0_DO_GVMM_SCHED_POKE,
264 /** Call GVMMR0SchedWakeUpAndPokeCpus(). */
265 VMMR0_DO_GVMM_SCHED_WAKE_UP_AND_POKE_CPUS,
266 /** Call GVMMR0SchedPoll(). */
267 VMMR0_DO_GVMM_SCHED_POLL,
268 /** Call GVMMR0QueryStatistics(). */
269 VMMR0_DO_GVMM_QUERY_STATISTICS,
270 /** Call GVMMR0ResetStatistics(). */
271 VMMR0_DO_GVMM_RESET_STATISTICS,
272
273 /** Call VMMR0 Per VM Init. */
274 VMMR0_DO_VMMR0_INIT = 64,
275 /** Call VMMR0 Per VM EMT Init */
276 VMMR0_DO_VMMR0_INIT_EMT,
277 /** Call VMMR0 Per VM Termination. */
278 VMMR0_DO_VMMR0_TERM,
279 /** Copy logger settings from userland, VMMR0UpdateLoggersReq(). */
280 VMMR0_DO_VMMR0_UPDATE_LOGGERS,
281 /** Used by the log flusher, VMMR0LogFlusher. */
282 VMMR0_DO_VMMR0_LOG_FLUSHER,
283 /** Used by EMTs to wait for the log flusher to finish, VMMR0LogWaitFlushed. */
284 VMMR0_DO_VMMR0_LOG_WAIT_FLUSHED,
285
286 /** Setup hardware-assisted VM session. */
287 VMMR0_DO_HM_SETUP_VM = 128,
288 /** Attempt to enable or disable hardware-assisted mode. */
289 VMMR0_DO_HM_ENABLE,
290
291 /** Call PGMR0PhysAllocateHandyPages(). */
292 VMMR0_DO_PGM_ALLOCATE_HANDY_PAGES = 192,
293 /** Call PGMR0PhysFlushHandyPages(). */
294 VMMR0_DO_PGM_FLUSH_HANDY_PAGES,
295 /** Call PGMR0AllocateLargePage(). */
296 VMMR0_DO_PGM_ALLOCATE_LARGE_HANDY_PAGE,
297 /** Call PGMR0PhysSetupIommu(). */
298 VMMR0_DO_PGM_PHYS_SETUP_IOMMU,
299 /** Call PGMR0PoolGrow(). */
300 VMMR0_DO_PGM_POOL_GROW,
301
302 /** Call GMMR0InitialReservation(). */
303 VMMR0_DO_GMM_INITIAL_RESERVATION = 256,
304 /** Call GMMR0UpdateReservation(). */
305 VMMR0_DO_GMM_UPDATE_RESERVATION,
306 /** Call GMMR0AllocatePages(). */
307 VMMR0_DO_GMM_ALLOCATE_PAGES,
308 /** Call GMMR0FreePages(). */
309 VMMR0_DO_GMM_FREE_PAGES,
310 /** Call GMMR0FreeLargePage(). */
311 VMMR0_DO_GMM_FREE_LARGE_PAGE,
312 /** Call GMMR0QueryHypervisorMemoryStatsReq(). */
313 VMMR0_DO_GMM_QUERY_HYPERVISOR_MEM_STATS,
314 /** Call GMMR0QueryMemoryStatsReq(). */
315 VMMR0_DO_GMM_QUERY_MEM_STATS,
316 /** Call GMMR0BalloonedPages(). */
317 VMMR0_DO_GMM_BALLOONED_PAGES,
318 /** Call GMMR0MapUnmapChunk(). */
319 VMMR0_DO_GMM_MAP_UNMAP_CHUNK,
320 /** Call GMMR0SeedChunk(). */
321 VMMR0_DO_GMM_SEED_CHUNK,
322 /** Call GMMR0RegisterSharedModule. */
323 VMMR0_DO_GMM_REGISTER_SHARED_MODULE,
324 /** Call GMMR0UnregisterSharedModule. */
325 VMMR0_DO_GMM_UNREGISTER_SHARED_MODULE,
326 /** Call GMMR0ResetSharedModules. */
327 VMMR0_DO_GMM_RESET_SHARED_MODULES,
328 /** Call GMMR0CheckSharedModules. */
329 VMMR0_DO_GMM_CHECK_SHARED_MODULES,
330 /** Call GMMR0FindDuplicatePage. */
331 VMMR0_DO_GMM_FIND_DUPLICATE_PAGE,
332 /** Call GMMR0QueryStatistics(). */
333 VMMR0_DO_GMM_QUERY_STATISTICS,
334 /** Call GMMR0ResetStatistics(). */
335 VMMR0_DO_GMM_RESET_STATISTICS,
336
337 /** Call PDMR0DriverCallReqHandler. */
338 VMMR0_DO_PDM_DRIVER_CALL_REQ_HANDLER = 320,
339 /** Call PDMR0DeviceCreateReqHandler. */
340 VMMR0_DO_PDM_DEVICE_CREATE,
341 /** Call PDMR0DeviceGenCallReqHandler. */
342 VMMR0_DO_PDM_DEVICE_GEN_CALL,
343 /** Old style device compat: Set ring-0 critical section. */
344 VMMR0_DO_PDM_DEVICE_COMPAT_SET_CRITSECT,
345
346 /** Set a GVMM or GMM configuration value. */
347 VMMR0_DO_GCFGM_SET_VALUE = 400,
348 /** Query a GVMM or GMM configuration value. */
349 VMMR0_DO_GCFGM_QUERY_VALUE,
350
351 /** The start of the R0 service operations. */
352 VMMR0_DO_SRV_START = 448,
353 /** Call IntNetR0Open(). */
354 VMMR0_DO_INTNET_OPEN,
355 /** Call IntNetR0IfClose(). */
356 VMMR0_DO_INTNET_IF_CLOSE,
357 /** Call IntNetR0IfGetBufferPtrs(). */
358 VMMR0_DO_INTNET_IF_GET_BUFFER_PTRS,
359 /** Call IntNetR0IfSetPromiscuousMode(). */
360 VMMR0_DO_INTNET_IF_SET_PROMISCUOUS_MODE,
361 /** Call IntNetR0IfSetMacAddress(). */
362 VMMR0_DO_INTNET_IF_SET_MAC_ADDRESS,
363 /** Call IntNetR0IfSetActive(). */
364 VMMR0_DO_INTNET_IF_SET_ACTIVE,
365 /** Call IntNetR0IfSend(). */
366 VMMR0_DO_INTNET_IF_SEND,
367 /** Call IntNetR0IfWait(). */
368 VMMR0_DO_INTNET_IF_WAIT,
369 /** Call IntNetR0IfAbortWait(). */
370 VMMR0_DO_INTNET_IF_ABORT_WAIT,
371
372#if 0
373 /** Forward call to the PCI driver */
374 VMMR0_DO_PCIRAW_REQ = 512,
375#endif
376
377 /** The end of the R0 service operations. */
378 VMMR0_DO_SRV_END,
379
380 /** Call NEMR0InitVM() (host specific). */
381 VMMR0_DO_NEM_INIT_VM = 576,
382 /** Call NEMR0InitVMPart2() (host specific). */
383 VMMR0_DO_NEM_INIT_VM_PART_2,
384 /** Call NEMR0MapPages() (host specific). */
385 VMMR0_DO_NEM_MAP_PAGES,
386 /** Call NEMR0UnmapPages() (host specific). */
387 VMMR0_DO_NEM_UNMAP_PAGES,
388 /** Call NEMR0ExportState() (host specific). */
389 VMMR0_DO_NEM_EXPORT_STATE,
390 /** Call NEMR0ImportState() (host specific). */
391 VMMR0_DO_NEM_IMPORT_STATE,
392 /** Call NEMR0QueryCpuTick() (host specific). */
393 VMMR0_DO_NEM_QUERY_CPU_TICK,
394 /** Call NEMR0ResumeCpuTickOnAll() (host specific). */
395 VMMR0_DO_NEM_RESUME_CPU_TICK_ON_ALL,
396 /** Call NEMR0UpdateStatistics() (host specific). */
397 VMMR0_DO_NEM_UPDATE_STATISTICS,
398 /** Call NEMR0DoExperiment() (host specific, experimental, debug only). */
399 VMMR0_DO_NEM_EXPERIMENT,
400
401 /** Grow the I/O port registration tables. */
402 VMMR0_DO_IOM_GROW_IO_PORTS = 640,
403 /** Grow the I/O port statistics tables. */
404 VMMR0_DO_IOM_GROW_IO_PORT_STATS,
405 /** Grow the MMIO registration tables. */
406 VMMR0_DO_IOM_GROW_MMIO_REGS,
407 /** Grow the MMIO statistics tables. */
408 VMMR0_DO_IOM_GROW_MMIO_STATS,
409 /** Synchronize statistics indices for I/O ports and MMIO regions. */
410 VMMR0_DO_IOM_SYNC_STATS_INDICES,
411
412 /** Call DBGFR0TraceCreateReqHandler. */
413 VMMR0_DO_DBGF_TRACER_CREATE = 704,
414 /** Call DBGFR0TraceCallReqHandler. */
415 VMMR0_DO_DBGF_TRACER_CALL_REQ_HANDLER,
416 /** Call DBGFR0BpInitReqHandler(). */
417 VMMR0_DO_DBGF_BP_INIT,
418 /** Call DBGFR0BpChunkAllocReqHandler(). */
419 VMMR0_DO_DBGF_BP_CHUNK_ALLOC,
420 /** Call DBGFR0BpL2TblChunkAllocReqHandler(). */
421 VMMR0_DO_DBGF_BP_L2_TBL_CHUNK_ALLOC,
422 /** Call DBGFR0BpOwnerInitReqHandler(). */
423 VMMR0_DO_DBGF_BP_OWNER_INIT,
424 /** Call DBGFR0BpPortIoInitReqHandler(). */
425 VMMR0_DO_DBGF_BP_PORTIO_INIT,
426
427 /** Grow a timer queue. */
428 VMMR0_DO_TM_GROW_TIMER_QUEUE = 768,
429
430 /** Official call we use for testing Ring-0 APIs. */
431 VMMR0_DO_TESTS = 2048,
432
433 /** The usual 32-bit type blow up. */
434 VMMR0_DO_32BIT_HACK = 0x7fffffff
435} VMMR0OPERATION;
436
437
438/**
439 * Request buffer for VMMR0_DO_GCFGM_SET_VALUE and VMMR0_DO_GCFGM_QUERY_VALUE.
440 * @todo Move got GCFGM.h when it's implemented.
441 */
442typedef struct GCFGMVALUEREQ
443{
444 /** The request header.*/
445 SUPVMMR0REQHDR Hdr;
446 /** The support driver session handle. */
447 PSUPDRVSESSION pSession;
448 /** The value.
449 * This is input for the set request and output for the query. */
450 uint64_t u64Value;
451 /** The variable name.
452 * This is fixed sized just to make things simple for the mock-up. */
453 char szName[48];
454} GCFGMVALUEREQ;
455/** Pointer to a VMMR0_DO_GCFGM_SET_VALUE and VMMR0_DO_GCFGM_QUERY_VALUE request buffer.
456 * @todo Move got GCFGM.h when it's implemented.
457 */
458typedef GCFGMVALUEREQ *PGCFGMVALUEREQ;
459
460
461/**
462 * Request package for VMMR0_DO_VMMR0_UPDATE_LOGGERS.
463 *
464 * In addition the u64Arg selects the logger sets: @c false for debug, @c true
465 * for release.
466 */
467typedef struct VMMR0UPDATELOGGERSREQ
468{
469 /** The request header. */
470 SUPVMMR0REQHDR Hdr;
471 /** The current logger flags (RTLOGFLAGS). */
472 uint64_t fFlags;
473 /** Groups, assuming same group layout as ring-3. */
474 uint32_t cGroups;
475 /** CRC32 of the group names. */
476 uint32_t uGroupCrc32;
477 /** Per-group settings, variable size. */
478 RT_FLEXIBLE_ARRAY_EXTENSION
479 uint32_t afGroups[RT_FLEXIBLE_ARRAY];
480} VMMR0UPDATELOGGERSREQ;
481/** Pointer to a VMMR0_DO_VMMR0_UPDATE_LOGGERS request. */
482typedef VMMR0UPDATELOGGERSREQ *PVMMR0UPDATELOGGERSREQ;
483
484#if defined(IN_RING0) || defined(DOXYGEN_RUNNING)
485
486/**
487 * Structure VMMR0EmtPrepareToBlock uses to pass info to
488 * VMMR0EmtResumeAfterBlocking.
489 */
490typedef struct VMMR0EMTBLOCKCTX
491{
492 /** Magic value (VMMR0EMTBLOCKCTX_MAGIC). */
493 uint32_t uMagic;
494 /** Set if we were in HM context, clear if not. */
495 bool fWasInHmContext;
496} VMMR0EMTBLOCKCTX;
497/** Pointer to a VMMR0EmtPrepareToBlock context structure. */
498typedef VMMR0EMTBLOCKCTX *PVMMR0EMTBLOCKCTX;
499/** Magic value for VMMR0EMTBLOCKCTX::uMagic (Paul Desmond). */
500#define VMMR0EMTBLOCKCTX_MAGIC UINT32_C(0x19261125)
501/** Magic value for VMMR0EMTBLOCKCTX::uMagic when its out of context. */
502#define VMMR0EMTBLOCKCTX_MAGIC_DEAD UINT32_C(0x19770530)
503
504VMMR0DECL(void) VMMR0EntryFast(PGVM pGVM, PVMCC pVM, VMCPUID idCpu, VMMR0OPERATION enmOperation);
505VMMR0DECL(int) VMMR0EntryEx(PGVM pGVM, PVMCC pVM, VMCPUID idCpu, VMMR0OPERATION enmOperation,
506 PSUPVMMR0REQHDR pReq, uint64_t u64Arg, PSUPDRVSESSION);
507VMMR0_INT_DECL(int) VMMR0InitPerVMData(PGVM pGVM);
508VMMR0_INT_DECL(int) VMMR0TermVM(PGVM pGVM, VMCPUID idCpu);
509VMMR0_INT_DECL(void) VMMR0CleanupVM(PGVM pGVM);
510VMMR0_INT_DECL(bool) VMMR0IsLongJumpArmed(PVMCPUCC pVCpu);
511VMMR0_INT_DECL(bool) VMMR0IsInRing3LongJump(PVMCPUCC pVCpu);
512VMMR0_INT_DECL(int) VMMR0ThreadCtxHookCreateForEmt(PVMCPUCC pVCpu);
513VMMR0_INT_DECL(void) VMMR0ThreadCtxHookDestroyForEmt(PVMCPUCC pVCpu);
514VMMR0_INT_DECL(void) VMMR0ThreadCtxHookDisable(PVMCPUCC pVCpu);
515VMMR0_INT_DECL(bool) VMMR0ThreadCtxHookIsEnabled(PVMCPUCC pVCpu);
516VMMR0_INT_DECL(int) VMMR0EmtPrepareToBlock(PVMCPUCC pVCpu, int rcBusy, const char *pszCaller, void *pvLock,
517 PVMMR0EMTBLOCKCTX pCtx);
518VMMR0_INT_DECL(void) VMMR0EmtResumeAfterBlocking(PVMCPUCC pVCpu, PVMMR0EMTBLOCKCTX pCtx);
519VMMR0_INT_DECL(PRTLOGGER) VMMR0GetReleaseLogger(PVMCPUCC pVCpu);
520#endif /* IN_RING0 */
521
522/** @} */
523
524
525#if defined(IN_RING3) || defined(DOXYGEN_RUNNING)
526/** @defgroup grp_vmm_api_r3 The VMM Host Context Ring 3 API
527 * @{
528 */
529VMMR3_INT_DECL(int) VMMR3Init(PVM pVM);
530VMMR3_INT_DECL(int) VMMR3InitR0(PVM pVM);
531VMMR3_INT_DECL(int) VMMR3InitCompleted(PVM pVM, VMINITCOMPLETED enmWhat);
532VMMR3_INT_DECL(int) VMMR3Term(PVM pVM);
533VMMR3_INT_DECL(void) VMMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
534VMMR3_INT_DECL(int) VMMR3UpdateLoggers(PVM pVM);
535VMMR3DECL(const char *) VMMR3GetRZAssertMsg1(PVM pVM);
536VMMR3DECL(const char *) VMMR3GetRZAssertMsg2(PVM pVM);
537VMMR3_INT_DECL(int) VMMR3HmRunGC(PVM pVM, PVMCPU pVCpu);
538VMMR3DECL(int) VMMR3CallR0(PVM pVM, uint32_t uOperation, uint64_t u64Arg, PSUPVMMR0REQHDR pReqHdr);
539VMMR3_INT_DECL(int) VMMR3CallR0Emt(PVM pVM, PVMCPU pVCpu, VMMR0OPERATION enmOperation, uint64_t u64Arg, PSUPVMMR0REQHDR pReqHdr);
540VMMR3_INT_DECL(VBOXSTRICTRC) VMMR3CallR0EmtFast(PVM pVM, PVMCPU pVCpu, VMMR0OPERATION enmOperation);
541VMMR3DECL(void) VMMR3FatalDump(PVM pVM, PVMCPU pVCpu, int rcErr);
542VMMR3_INT_DECL(void) VMMR3YieldSuspend(PVM pVM);
543VMMR3_INT_DECL(void) VMMR3YieldStop(PVM pVM);
544VMMR3_INT_DECL(void) VMMR3YieldResume(PVM pVM);
545VMMR3_INT_DECL(void) VMMR3SendStartupIpi(PVM pVM, VMCPUID idCpu, uint32_t uVector);
546VMMR3_INT_DECL(void) VMMR3SendInitIpi(PVM pVM, VMCPUID idCpu);
547VMMR3DECL(int) VMMR3RegisterPatchMemory(PVM pVM, RTGCPTR pPatchMem, unsigned cbPatchMem);
548VMMR3DECL(int) VMMR3DeregisterPatchMemory(PVM pVM, RTGCPTR pPatchMem, unsigned cbPatchMem);
549VMMR3DECL(int) VMMR3EmtRendezvous(PVM pVM, uint32_t fFlags, PFNVMMEMTRENDEZVOUS pfnRendezvous, void *pvUser);
550/** @defgroup grp_VMMR3EmtRendezvous_fFlags VMMR3EmtRendezvous flags
551 * @{ */
552/** Execution type mask. */
553#define VMMEMTRENDEZVOUS_FLAGS_TYPE_MASK UINT32_C(0x00000007)
554/** Invalid execution type. */
555#define VMMEMTRENDEZVOUS_FLAGS_TYPE_INVALID UINT32_C(0)
556/** Let the EMTs execute the callback one by one (in no particular order).
557 * Recursion from within the callback possible. */
558#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ONE_BY_ONE UINT32_C(1)
559/** Let all the EMTs execute the callback at the same time.
560 * Cannot recurse from the callback. */
561#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ALL_AT_ONCE UINT32_C(2)
562/** Only execute the callback on one EMT (no particular one).
563 * Recursion from within the callback possible. */
564#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ONCE UINT32_C(3)
565/** Let the EMTs execute the callback one by one in ascending order.
566 * Recursion from within the callback possible. */
567#define VMMEMTRENDEZVOUS_FLAGS_TYPE_ASCENDING UINT32_C(4)
568/** Let the EMTs execute the callback one by one in descending order.
569 * Recursion from within the callback possible. */
570#define VMMEMTRENDEZVOUS_FLAGS_TYPE_DESCENDING UINT32_C(5)
571/** Stop after the first error.
572 * This is not valid for any execution type where more than one EMT is active
573 * at a time. */
574#define VMMEMTRENDEZVOUS_FLAGS_STOP_ON_ERROR UINT32_C(0x00000008)
575/** Use VMREQFLAGS_PRIORITY when contacting the EMTs. */
576#define VMMEMTRENDEZVOUS_FLAGS_PRIORITY UINT32_C(0x00000010)
577/** The valid flags. */
578#define VMMEMTRENDEZVOUS_FLAGS_VALID_MASK UINT32_C(0x0000001f)
579/** @} */
580VMMR3_INT_DECL(int) VMMR3EmtRendezvousFF(PVM pVM, PVMCPU pVCpu);
581VMMR3_INT_DECL(void) VMMR3SetMayHaltInRing0(PVMCPU pVCpu, bool fMayHaltInRing0, uint32_t cNsSpinBlockThreshold);
582VMMR3_INT_DECL(int) VMMR3ReadR0Stack(PVM pVM, VMCPUID idCpu, RTHCUINTPTR R0Addr, void *pvBuf, size_t cbRead);
583VMMR3_INT_DECL(void) VMMR3InitR0StackUnwindState(PUVM pUVM, VMCPUID idCpu, PRTDBGUNWINDSTATE pState);
584/** @} */
585#endif /* IN_RING3 */
586
587
588#if defined(IN_RC) || defined(IN_RING0) || defined(DOXYGEN_RUNNING)
589/** @defgroup grp_vmm_api_rz The VMM Raw-Mode and Ring-0 Context API
590 * @{
591 */
592VMMRZDECL(int) VMMRZCallRing3(PVMCC pVMCC, PVMCPUCC pVCpu, VMMCALLRING3 enmOperation, uint64_t uArg);
593VMMRZDECL(int) VMMRZCallRing3NoCpu(PVMCC pVM, VMMCALLRING3 enmOperation, uint64_t uArg);
594VMMRZDECL(void) VMMRZCallRing3Disable(PVMCPUCC pVCpu);
595VMMRZDECL(void) VMMRZCallRing3Enable(PVMCPUCC pVCpu);
596VMMRZDECL(bool) VMMRZCallRing3IsEnabled(PVMCPUCC pVCpu);
597VMMRZDECL(int) VMMRZCallRing3SetNotification(PVMCPUCC pVCpu, R0PTRTYPE(PFNVMMR0CALLRING3NOTIFICATION) pfnCallback, RTR0PTR pvUser);
598VMMRZDECL(void) VMMRZCallRing3RemoveNotification(PVMCPUCC pVCpu);
599VMMRZDECL(bool) VMMRZCallRing3IsNotificationSet(PVMCPUCC pVCpu);
600/** @} */
601#endif
602
603
604/** Wrapper around AssertReleaseMsgReturn that avoid tripping up in the
605 * kernel when we don't have a setjmp in place. */
606#ifdef IN_RING0
607# define VMM_ASSERT_RELEASE_MSG_RETURN(a_pVM, a_Expr, a_Msg, a_rc) do { \
608 if (RT_LIKELY(a_Expr)) { /* likely */ } \
609 else \
610 { \
611 PVMCPUCC pVCpuAssert = VMMGetCpu(a_pVM); \
612 if (pVCpuAssert && VMMR0IsLongJumpArmed(pVCpuAssert)) \
613 AssertReleaseMsg(a_Expr, a_Msg); \
614 else \
615 AssertLogRelMsg(a_Expr, a_Msg); \
616 return (a_rc); \
617 } \
618 } while (0)
619#else
620# define VMM_ASSERT_RELEASE_MSG_RETURN(a_pVM, a_Expr, a_Msg, a_rc) AssertReleaseMsgReturn(a_Expr, a_Msg, a_rc)
621#endif
622
623/** @} */
624
625/** @} */
626RT_C_DECLS_END
627
628#endif /* !VBOX_INCLUDED_vmm_vmm_h */
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