VirtualBox

source: vbox/trunk/include/VBox/vmm/gvmm.h@ 88534

Last change on this file since 88534 was 85121, checked in by vboxsync, 4 years ago

iprt/cdefs.h: Refactored the typedef use of DECLCALLBACK as well as DECLCALLBACKMEMBER to wrap the whole expression, similar to the DECLR?CALLBACKMEMBER macros. This allows adding a throw() at the end when compiling with the VC++ compiler to indicate that the callbacks won't throw anything, so we can stop supressing the C5039 warning about passing functions that can potential throw C++ exceptions to extern C code that can't necessarily cope with such (unwind,++). Introduced a few _EX variations that allows specifying different/no calling convention too, as that's handy when dynamically resolving host APIs. Fixed numerous places missing DECLCALLBACK and such. Left two angry @todos regarding use of CreateThread. bugref:9794

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 10.3 KB
Line 
1/* $Id: gvmm.h 85121 2020-07-08 19:33:26Z vboxsync $ */
2/** @file
3 * GVMM - The Global VM Manager.
4 */
5
6/*
7 * Copyright (C) 2007-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef VBOX_INCLUDED_vmm_gvmm_h
28#define VBOX_INCLUDED_vmm_gvmm_h
29#ifndef RT_WITHOUT_PRAGMA_ONCE
30# pragma once
31#endif
32
33#include <VBox/types.h>
34#include <VBox/sup.h>
35#include <iprt/cpuset.h> /* RTCPUSET_MAX_CPUS */
36
37
38RT_C_DECLS_BEGIN
39
40/** @defgroup grp_gvmm GVMM - The Global VM Manager.
41 * @ingroup grp_vmm
42 * @{
43 */
44
45/** @def IN_GVMM_R0
46 * Used to indicate whether we're inside the same link module as the ring 0
47 * part of the Global VM Manager or not.
48 */
49#ifdef DOXYGEN_RUNNING
50# define IN_GVMM_R0
51#endif
52/** @def GVMMR0DECL
53 * Ring 0 VM export or import declaration.
54 * @param type The return type of the function declaration.
55 */
56#ifdef IN_GVMM_R0
57# define GVMMR0DECL(type) DECLEXPORT(type) VBOXCALL
58#else
59# define GVMMR0DECL(type) DECLIMPORT(type) VBOXCALL
60#endif
61
62/** @def NIL_GVM_HANDLE
63 * The nil GVM VM handle value (VM::hSelf).
64 */
65#define NIL_GVM_HANDLE 0
66
67
68/**
69 * The scheduler statistics
70 */
71typedef struct GVMMSTATSSCHED
72{
73 /** The number of calls to GVMMR0SchedHalt. */
74 uint64_t cHaltCalls;
75 /** The number of times we did go to sleep in GVMMR0SchedHalt. */
76 uint64_t cHaltBlocking;
77 /** The number of times we timed out in GVMMR0SchedHalt. */
78 uint64_t cHaltTimeouts;
79 /** The number of times we didn't go to sleep in GVMMR0SchedHalt. */
80 uint64_t cHaltNotBlocking;
81 /** The number of wake ups done during GVMMR0SchedHalt. */
82 uint64_t cHaltWakeUps;
83
84 /** The number of calls to GVMMR0WakeUp. */
85 uint64_t cWakeUpCalls;
86 /** The number of times the EMT thread wasn't actually halted when GVMMR0WakeUp
87 * was called. */
88 uint64_t cWakeUpNotHalted;
89 /** The number of wake ups done during GVMMR0WakeUp (not counting the explicit
90 * one). */
91 uint64_t cWakeUpWakeUps;
92
93 /** The number of calls to GVMMR0Poke. */
94 uint64_t cPokeCalls;
95 /** The number of times the EMT thread wasn't actually busy when
96 * GVMMR0Poke was called. */
97 uint64_t cPokeNotBusy;
98
99 /** The number of calls to GVMMR0SchedPoll. */
100 uint64_t cPollCalls;
101 /** The number of times the EMT has halted in a GVMMR0SchedPoll call. */
102 uint64_t cPollHalts;
103 /** The number of wake ups done during GVMMR0SchedPoll. */
104 uint64_t cPollWakeUps;
105
106 uint64_t u64Alignment; /**< padding */
107} GVMMSTATSSCHED;
108/** Pointer to the GVMM scheduler statistics. */
109typedef GVMMSTATSSCHED *PGVMMSTATSSCHED;
110
111/**
112 * Per host cpu statistics.
113 */
114typedef struct GVMMSTATSHOSTCPU
115{
116 /** The CPU ID. */
117 RTCPUID idCpu;
118 /** The CPU's set index. */
119 uint32_t idxCpuSet;
120 /** The desired PPT frequency. */
121 uint32_t uDesiredHz;
122 /** The current PPT timer frequency. */
123 uint32_t uTimerHz;
124 /** The number of times the PPT was changed. */
125 uint32_t cChanges;
126 /** The number of times the PPT was started. */
127 uint32_t cStarts;
128} GVMMSTATSHOSTCPU;
129/** Pointer to the GVMM per host CPU statistics. */
130typedef GVMMSTATSHOSTCPU *PGVMMSTATSHOSTCPU;
131
132/**
133 * The GVMM statistics.
134 */
135typedef struct GVMMSTATS
136{
137 /** The VM statistics if a VM was specified. */
138 GVMMSTATSSCHED SchedVM;
139 /** The sum statistics of all VMs accessible to the caller. */
140 GVMMSTATSSCHED SchedSum;
141 /** The number of VMs accessible to the caller. */
142 uint32_t cVMs;
143 /** The number of emulation threads in those VMs. */
144 uint32_t cEMTs;
145 /** Padding. */
146 uint32_t u32Padding;
147 /** The number of valid entries in aHostCpus. */
148 uint32_t cHostCpus;
149 /** Per host CPU statistics. */
150 GVMMSTATSHOSTCPU aHostCpus[RTCPUSET_MAX_CPUS];
151} GVMMSTATS;
152/** Pointer to the GVMM statistics. */
153typedef GVMMSTATS *PGVMMSTATS;
154/** Const pointer to the GVMM statistics. */
155typedef const GVMMSTATS *PCGVMMSTATS;
156
157/**
158 * Per-VM callback for GVMMR0EnumVMs.
159 *
160 * @note This is called while holding the VM used list lock, so only suitable
161 * for quick and simple jobs!
162 *
163 * @returns VINF_SUCCESS to continue the enumeration, anything stops it and
164 * returns the status code.
165 * @param pGVM The VM
166 * @param pvUser The user parameter.
167 * */
168typedef DECLCALLBACKTYPE(int, FNGVMMR0ENUMCALLBACK,(PGVM pGVM, void *pvUser));
169/** Pointer to an VM enumeration callback function. */
170typedef FNGVMMR0ENUMCALLBACK *PFNGVMMR0ENUMCALLBACK;
171
172
173GVMMR0DECL(int) GVMMR0Init(void);
174GVMMR0DECL(void) GVMMR0Term(void);
175GVMMR0DECL(int) GVMMR0SetConfig(PSUPDRVSESSION pSession, const char *pszName, uint64_t u64Value);
176GVMMR0DECL(int) GVMMR0QueryConfig(PSUPDRVSESSION pSession, const char *pszName, uint64_t *pu64Value);
177
178GVMMR0DECL(int) GVMMR0CreateVM(PSUPDRVSESSION pSession, uint32_t cCpus, PVMCC *ppVM);
179GVMMR0DECL(int) GVMMR0InitVM(PGVM pGVM);
180GVMMR0DECL(void) GVMMR0DoneInitVM(PGVM pGVM);
181GVMMR0DECL(bool) GVMMR0DoingTermVM(PGVM pGVM);
182GVMMR0DECL(int) GVMMR0DestroyVM(PGVM pGVM);
183GVMMR0DECL(int) GVMMR0RegisterVCpu(PGVM pGVM, VMCPUID idCpu);
184GVMMR0DECL(int) GVMMR0DeregisterVCpu(PGVM pGVM, VMCPUID idCpu);
185GVMMR0DECL(PGVM) GVMMR0ByHandle(uint32_t hGVM);
186GVMMR0DECL(int) GVMMR0ValidateGVM(PGVM pGVM);
187GVMMR0DECL(int) GVMMR0ValidateGVMandEMT(PGVM pGVM, VMCPUID idCpu);
188GVMMR0DECL(PVMCC) GVMMR0GetVMByEMT(RTNATIVETHREAD hEMT);
189GVMMR0DECL(PGVMCPU) GVMMR0GetGVCpuByEMT(RTNATIVETHREAD hEMT);
190GVMMR0DECL(int) GVMMR0SchedHalt(PGVM pGVM, PGVMCPU pGVCpu, uint64_t u64ExpireGipTime);
191GVMMR0DECL(int) GVMMR0SchedHaltReq(PGVM pGVM, VMCPUID idCpu, uint64_t u64ExpireGipTime);
192GVMMR0DECL(int) GVMMR0SchedWakeUp(PGVM pGVM, VMCPUID idCpu);
193GVMMR0DECL(int) GVMMR0SchedWakeUpEx(PGVM pGVM, VMCPUID idCpu, bool fTakeUsedLock);
194GVMMR0DECL(int) GVMMR0SchedWakeUpNoGVMNoLock(PGVM pGVM, VMCPUID idCpu);
195GVMMR0DECL(int) GVMMR0SchedPoke(PGVM pGVM, VMCPUID idCpu);
196GVMMR0DECL(int) GVMMR0SchedPokeEx(PGVM pGVM, VMCPUID idCpu, bool fTakeUsedLock);
197GVMMR0DECL(int) GVMMR0SchedPokeNoGVMNoLock(PVMCC pVM, VMCPUID idCpu);
198GVMMR0DECL(int) GVMMR0SchedWakeUpAndPokeCpus(PGVM pGVM, PCVMCPUSET pSleepSet, PCVMCPUSET pPokeSet);
199GVMMR0DECL(int) GVMMR0SchedPoll(PGVM pGVM, VMCPUID idCpu, bool fYield);
200GVMMR0DECL(void) GVMMR0SchedUpdatePeriodicPreemptionTimer(PGVM pGVM, RTCPUID idHostCpu, uint32_t uHz);
201GVMMR0DECL(int) GVMMR0EnumVMs(PFNGVMMR0ENUMCALLBACK pfnCallback, void *pvUser);
202GVMMR0DECL(int) GVMMR0QueryStatistics(PGVMMSTATS pStats, PSUPDRVSESSION pSession, PGVM pGVM);
203GVMMR0DECL(int) GVMMR0ResetStatistics(PCGVMMSTATS pStats, PSUPDRVSESSION pSession, PGVM pGVM);
204
205
206/**
207 * Request packet for calling GVMMR0CreateVM.
208 */
209typedef struct GVMMCREATEVMREQ
210{
211 /** The request header. */
212 SUPVMMR0REQHDR Hdr;
213 /** The support driver session. (IN) */
214 PSUPDRVSESSION pSession;
215 /** Number of virtual CPUs for the new VM. (IN) */
216 uint32_t cCpus;
217 /** Pointer to the ring-3 mapping of the shared VM structure on return. (OUT) */
218 PVMR3 pVMR3;
219 /** Pointer to the ring-0 mapping of the shared VM structure on return. (OUT) */
220 PVMR0 pVMR0;
221} GVMMCREATEVMREQ;
222/** Pointer to a GVMMR0CreateVM request packet. */
223typedef GVMMCREATEVMREQ *PGVMMCREATEVMREQ;
224
225GVMMR0DECL(int) GVMMR0CreateVMReq(PGVMMCREATEVMREQ pReq, PSUPDRVSESSION pSession);
226
227
228/**
229 * Request buffer for GVMMR0SchedWakeUpAndPokeCpusReq / VMMR0_DO_GVMM_SCHED_WAKE_UP_AND_POKE_CPUS.
230 * @see GVMMR0SchedWakeUpAndPokeCpus.
231 */
232typedef struct GVMMSCHEDWAKEUPANDPOKECPUSREQ /* nice and unreadable... */
233{
234 /** The header. */
235 SUPVMMR0REQHDR Hdr;
236 /** The sleeper set. */
237 VMCPUSET SleepSet;
238 /** The set of virtual CPUs to poke. */
239 VMCPUSET PokeSet;
240} GVMMSCHEDWAKEUPANDPOKECPUSREQ;
241/** Pointer to a GVMMR0QueryStatisticsReq / VMMR0_DO_GVMM_QUERY_STATISTICS request buffer. */
242typedef GVMMSCHEDWAKEUPANDPOKECPUSREQ *PGVMMSCHEDWAKEUPANDPOKECPUSREQ;
243
244GVMMR0DECL(int) GVMMR0SchedWakeUpAndPokeCpusReq(PGVM pGVM, PGVMMSCHEDWAKEUPANDPOKECPUSREQ pReq);
245
246
247/**
248 * Request buffer for GVMMR0QueryStatisticsReq / VMMR0_DO_GVMM_QUERY_STATISTICS.
249 * @see GVMMR0QueryStatistics.
250 */
251typedef struct GVMMQUERYSTATISTICSSREQ
252{
253 /** The header. */
254 SUPVMMR0REQHDR Hdr;
255 /** The support driver session. */
256 PSUPDRVSESSION pSession;
257 /** The statistics. */
258 GVMMSTATS Stats;
259} GVMMQUERYSTATISTICSSREQ;
260/** Pointer to a GVMMR0QueryStatisticsReq / VMMR0_DO_GVMM_QUERY_STATISTICS request buffer. */
261typedef GVMMQUERYSTATISTICSSREQ *PGVMMQUERYSTATISTICSSREQ;
262
263GVMMR0DECL(int) GVMMR0QueryStatisticsReq(PGVM pGVM, PGVMMQUERYSTATISTICSSREQ pReq, PSUPDRVSESSION pSession);
264
265
266/**
267 * Request buffer for GVMMR0ResetStatisticsReq / VMMR0_DO_GVMM_RESET_STATISTICS.
268 * @see GVMMR0ResetStatistics.
269 */
270typedef struct GVMMRESETSTATISTICSSREQ
271{
272 /** The header. */
273 SUPVMMR0REQHDR Hdr;
274 /** The support driver session. */
275 PSUPDRVSESSION pSession;
276 /** The statistics to reset.
277 * Any non-zero entry will be reset (if permitted). */
278 GVMMSTATS Stats;
279} GVMMRESETSTATISTICSSREQ;
280/** Pointer to a GVMMR0ResetStatisticsReq / VMMR0_DO_GVMM_RESET_STATISTICS request buffer. */
281typedef GVMMRESETSTATISTICSSREQ *PGVMMRESETSTATISTICSSREQ;
282
283GVMMR0DECL(int) GVMMR0ResetStatisticsReq(PGVM pGVM, PGVMMRESETSTATISTICSSREQ pReq, PSUPDRVSESSION pSession);
284
285
286/** @} */
287
288RT_C_DECLS_END
289
290#endif /* !VBOX_INCLUDED_vmm_gvmm_h */
291
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