1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
|
/* $Id: VMMAll.cpp $ */
/** @file
* VMM All Contexts.
*/
/*
* Copyright (C) 2006-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/*********************************************************************************************************************************
* Header Files *
*********************************************************************************************************************************/
#define LOG_GROUP LOG_GROUP_VMM
#include <VBox/vmm/vmm.h>
#include "VMMInternal.h"
#include <VBox/vmm/vm.h>
#include <VBox/vmm/hm.h>
#include <VBox/vmm/vmcpuset.h>
#include <VBox/param.h>
#include <iprt/thread.h>
#include <iprt/mp.h>
/*********************************************************************************************************************************
* Global Variables *
*********************************************************************************************************************************/
/** User counter for the vmmInitFormatTypes function (pro forma). */
static volatile uint32_t g_cFormatTypeUsers = 0;
/**
* Helper that formats a decimal number in the range 0..9999.
*
* @returns The length of the formatted number.
* @param pszBuf Output buffer with sufficient space.
* @param uNumber The number to format.
*/
static unsigned vmmFormatTypeShortNumber(char *pszBuf, uint32_t uNumber)
{
unsigned off = 0;
if (uNumber >= 10)
{
if (uNumber >= 100)
{
if (uNumber >= 1000)
pszBuf[off++] = ((uNumber / 1000) % 10) + '0';
pszBuf[off++] = ((uNumber / 100) % 10) + '0';
}
pszBuf[off++] = ((uNumber / 10) % 10) + '0';
}
pszBuf[off++] = (uNumber % 10) + '0';
pszBuf[off] = '\0';
return off;
}
/**
* @callback_method_impl{FNRTSTRFORMATTYPE, vmsetcpu}
*/
static DECLCALLBACK(size_t) vmmFormatTypeVmCpuSet(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
const char *pszType, void const *pvValue,
int cchWidth, int cchPrecision, unsigned fFlags,
void *pvUser)
{
NOREF(pszType); NOREF(cchWidth); NOREF(cchPrecision); NOREF(fFlags);
PCVMCPUSET pSet = (PCVMCPUSET)pvValue;
uint32_t cCpus = 0;
uint32_t iCpu = RT_ELEMENTS(pSet->au32Bitmap) * 32;
while (iCpu--)
if (VMCPUSET_IS_PRESENT(pSet, iCpu))
cCpus++;
char szTmp[32];
AssertCompile(RT_ELEMENTS(pSet->au32Bitmap) * 32 < 999);
if (cCpus == 1)
{
iCpu = RT_ELEMENTS(pSet->au32Bitmap) * 32;
while (iCpu--)
if (VMCPUSET_IS_PRESENT(pSet, iCpu))
{
szTmp[0] = 'c';
szTmp[1] = 'p';
szTmp[2] = 'u';
return pfnOutput(pvArgOutput, szTmp, 3 + vmmFormatTypeShortNumber(&szTmp[3], iCpu));
}
cCpus = 0;
}
if (cCpus == 0)
return pfnOutput(pvArgOutput, RT_STR_TUPLE("<empty>"));
if (cCpus == RT_ELEMENTS(pSet->au32Bitmap) * 32)
return pfnOutput(pvArgOutput, RT_STR_TUPLE("<full>"));
/*
* Print cpus that are present: {1,2,7,9 ... }
*/
size_t cchRet = pfnOutput(pvArgOutput, "{", 1);
cCpus = 0;
iCpu = 0;
while (iCpu < RT_ELEMENTS(pSet->au32Bitmap) * 32)
{
if (VMCPUSET_IS_PRESENT(pSet, iCpu))
{
/* Output the first cpu number. */
int off = 0;
if (cCpus != 0)
szTmp[off++] = ',';
cCpus++;
off += vmmFormatTypeShortNumber(&szTmp[off], iCpu);
/* Check for sequence. */
uint32_t const iStart = ++iCpu;
while ( iCpu < RT_ELEMENTS(pSet->au32Bitmap) * 32
&& VMCPUSET_IS_PRESENT(pSet, iCpu))
{
iCpu++;
cCpus++;
}
if (iCpu != iStart)
{
szTmp[off++] = '-';
off += vmmFormatTypeShortNumber(&szTmp[off], iCpu);
}
/* Terminate and output. */
szTmp[off] = '\0';
cchRet += pfnOutput(pvArgOutput, szTmp, off);
}
iCpu++;
}
cchRet += pfnOutput(pvArgOutput, "}", 1);
NOREF(pvUser);
return cchRet;
}
/**
* Registers the VMM wide format types.
*
* Called by VMMR3Init, VMMR0Init and VMMRCInit.
*/
int vmmInitFormatTypes(void)
{
int rc = VINF_SUCCESS;
if (ASMAtomicIncU32(&g_cFormatTypeUsers) == 1)
rc = RTStrFormatTypeRegister("vmcpuset", vmmFormatTypeVmCpuSet, NULL);
return rc;
}
#ifndef IN_RC
/**
* Counterpart to vmmInitFormatTypes, called by VMMR3Term and VMMR0Term.
*/
void vmmTermFormatTypes(void)
{
if (ASMAtomicDecU32(&g_cFormatTypeUsers) == 0)
RTStrFormatTypeDeregister("vmcpuset");
}
#endif
/**
* Gets the bottom of the hypervisor stack - RC Ptr.
*
* (The returned address is not actually writable, only after it's decremented
* by a push/ret/whatever does it become writable.)
*
* @returns bottom of the stack.
* @param pVCpu The cross context virtual CPU structure.
*/
VMM_INT_DECL(RTRCPTR) VMMGetStackRC(PVMCPU pVCpu)
{
return (RTRCPTR)pVCpu->vmm.s.pbEMTStackBottomRC;
}
/**
* Gets the ID of the virtual CPU associated with the calling thread.
*
* @returns The CPU ID. NIL_VMCPUID if the thread isn't an EMT.
*
* @param pVM The cross context VM structure.
* @internal
*/
VMMDECL(VMCPUID) VMMGetCpuId(PVM pVM)
{
#if defined(IN_RING3)
return VMR3GetVMCPUId(pVM);
#elif defined(IN_RING0)
if (pVM->cCpus == 1)
return 0;
/* Search first by host cpu id (most common case)
* and then by native thread id (page fusion case).
*/
if (!RTThreadPreemptIsEnabled(NIL_RTTHREAD))
{
/** @todo r=ramshankar: This doesn't buy us anything in terms of performance
* leaving it here for hysterical raisins and as a reference if we
* implemented a hashing approach in the future. */
RTCPUID idHostCpu = RTMpCpuId();
/** @todo optimize for large number of VCPUs when that becomes more common. */
for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
{
PVMCPU pVCpu = &pVM->aCpus[idCpu];
if (pVCpu->idHostCpu == idHostCpu)
return pVCpu->idCpu;
}
}
/* RTThreadGetNativeSelf had better be cheap. */
RTNATIVETHREAD hThread = RTThreadNativeSelf();
/** @todo optimize for large number of VCPUs when that becomes more common. */
for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
{
PVMCPU pVCpu = &pVM->aCpus[idCpu];
if (pVCpu->hNativeThreadR0 == hThread)
return pVCpu->idCpu;
}
return NIL_VMCPUID;
#else /* RC: Always EMT(0) */
NOREF(pVM);
return 0;
#endif
}
/**
* Returns the VMCPU of the calling EMT.
*
* @returns The VMCPU pointer. NULL if not an EMT.
*
* @param pVM The cross context VM structure.
* @internal
*/
VMMDECL(PVMCPU) VMMGetCpu(PVM pVM)
{
#ifdef IN_RING3
VMCPUID idCpu = VMR3GetVMCPUId(pVM);
if (idCpu == NIL_VMCPUID)
return NULL;
Assert(idCpu < pVM->cCpus);
return &pVM->aCpus[idCpu];
#elif defined(IN_RING0)
if (pVM->cCpus == 1)
return &pVM->aCpus[0];
/*
* Search first by host cpu id (most common case)
* and then by native thread id (page fusion case).
*/
if (!RTThreadPreemptIsEnabled(NIL_RTTHREAD))
{
/** @todo r=ramshankar: This doesn't buy us anything in terms of performance
* leaving it here for hysterical raisins and as a reference if we
* implemented a hashing approach in the future. */
RTCPUID idHostCpu = RTMpCpuId();
/** @todo optimize for large number of VCPUs when that becomes more common. */
for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
{
PVMCPU pVCpu = &pVM->aCpus[idCpu];
if (pVCpu->idHostCpu == idHostCpu)
return pVCpu;
}
}
/* RTThreadGetNativeSelf had better be cheap. */
RTNATIVETHREAD hThread = RTThreadNativeSelf();
/** @todo optimize for large number of VCPUs when that becomes more common.
* Use a map like GIP does that's indexed by the host CPU index. */
for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
{
PVMCPU pVCpu = &pVM->aCpus[idCpu];
if (pVCpu->hNativeThreadR0 == hThread)
return pVCpu;
}
return NULL;
#else /* RC: Always EMT(0) */
return &pVM->aCpus[0];
#endif /* IN_RING0 */
}
/**
* Returns the VMCPU of the first EMT thread.
*
* @returns The VMCPU pointer.
* @param pVM The cross context VM structure.
* @internal
*/
VMMDECL(PVMCPU) VMMGetCpu0(PVM pVM)
{
Assert(pVM->cCpus == 1);
return &pVM->aCpus[0];
}
/**
* Returns the VMCPU of the specified virtual CPU.
*
* @returns The VMCPU pointer. NULL if idCpu is invalid.
*
* @param pVM The cross context VM structure.
* @param idCpu The ID of the virtual CPU.
* @internal
*/
VMMDECL(PVMCPU) VMMGetCpuById(PVM pVM, RTCPUID idCpu)
{
AssertReturn(idCpu < pVM->cCpus, NULL);
return &pVM->aCpus[idCpu];
}
/**
* Gets the VBOX_SVN_REV.
*
* This is just to avoid having to compile a bunch of big files
* and requires less Makefile mess.
*
* @returns VBOX_SVN_REV.
*/
VMM_INT_DECL(uint32_t) VMMGetSvnRev(void)
{
return VBOX_SVN_REV;
}
/**
* Queries the current switcher
*
* @returns active switcher
* @param pVM The cross context VM structure.
*/
VMM_INT_DECL(VMMSWITCHER) VMMGetSwitcher(PVM pVM)
{
return pVM->vmm.s.enmSwitcher;
}
/**
* Checks whether we're in a ring-3 call or not.
*
* @returns true / false.
* @param pVCpu The cross context virtual CPU structure of the calling EMT.
* @thread EMT
*/
VMM_INT_DECL(bool) VMMIsInRing3Call(PVMCPU pVCpu)
{
#ifdef RT_ARCH_X86
return pVCpu->vmm.s.CallRing3JmpBufR0.fInRing3Call;
#else
return pVCpu->vmm.s.CallRing3JmpBufR0.fInRing3Call;
#endif
}
/**
* Returns the build type for matching components.
*
* @returns Build type value.
*/
uint32_t vmmGetBuildType(void)
{
uint32_t uRet = 0xbeef0000;
#ifdef DEBUG
uRet |= RT_BIT_32(0);
#endif
#ifdef VBOX_WITH_STATISTICS
uRet |= RT_BIT_32(1);
#endif
return uRet;
}
|