VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/PDMDriver.cpp@ 62338

Last change on this file since 62338 was 58122, checked in by vboxsync, 9 years ago

VMM: Made @param pVM more uniform and to the point.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 71.8 KB
Line 
1/* $Id: PDMDriver.cpp 58122 2015-10-08 17:11:58Z vboxsync $ */
2/** @file
3 * PDM - Pluggable Device and Driver Manager, Driver parts.
4 */
5
6/*
7 * Copyright (C) 2006-2015 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
18
19/*********************************************************************************************************************************
20* Header Files *
21*********************************************************************************************************************************/
22#define LOG_GROUP LOG_GROUP_PDM_DRIVER
23#include "PDMInternal.h"
24#include <VBox/vmm/pdm.h>
25#include <VBox/vmm/mm.h>
26#include <VBox/vmm/cfgm.h>
27#include <VBox/vmm/hm.h>
28#include <VBox/vmm/vmm.h>
29#include <VBox/sup.h>
30#include <VBox/vmm/vm.h>
31#include <VBox/version.h>
32#include <VBox/err.h>
33
34#include <VBox/log.h>
35#include <iprt/assert.h>
36#include <iprt/asm.h>
37#include <iprt/ctype.h>
38#include <iprt/mem.h>
39#include <iprt/thread.h>
40#include <iprt/path.h>
41#include <iprt/string.h>
42
43
44/*********************************************************************************************************************************
45* Structures and Typedefs *
46*********************************************************************************************************************************/
47/**
48 * Internal callback structure pointer.
49 *
50 * The main purpose is to define the extra data we associate
51 * with PDMDRVREGCB so we can find the VM instance and so on.
52 */
53typedef struct PDMDRVREGCBINT
54{
55 /** The callback structure. */
56 PDMDRVREGCB Core;
57 /** A bit of padding. */
58 uint32_t u32[4];
59 /** VM Handle. */
60 PVM pVM;
61 /** Pointer to the configuration node the registrations should be
62 * associated with. Can be NULL. */
63 PCFGMNODE pCfgNode;
64} PDMDRVREGCBINT, *PPDMDRVREGCBINT;
65typedef const PDMDRVREGCBINT *PCPDMDRVREGCBINT;
66
67
68/*********************************************************************************************************************************
69* Internal Functions *
70*********************************************************************************************************************************/
71static DECLCALLBACK(int) pdmR3DrvRegister(PCPDMDRVREGCB pCallbacks, PCPDMDRVREG pReg);
72static int pdmR3DrvLoad(PVM pVM, PPDMDRVREGCBINT pRegCB, const char *pszFilename, const char *pszName);
73
74
75/**
76 * Register drivers in a statically linked environment.
77 *
78 * @returns VBox status code.
79 * @param pVM The cross context VM structure.
80 * @param pfnCallback Driver registration callback
81 */
82VMMR3DECL(int) PDMR3DrvStaticRegistration(PVM pVM, FNPDMVBOXDRIVERSREGISTER pfnCallback)
83{
84 /*
85 * The registration callbacks.
86 */
87 PDMDRVREGCBINT RegCB;
88 RegCB.Core.u32Version = PDM_DRVREG_CB_VERSION;
89 RegCB.Core.pfnRegister = pdmR3DrvRegister;
90 RegCB.pVM = pVM;
91 RegCB.pCfgNode = NULL;
92
93 int rc = pfnCallback(&RegCB.Core, VBOX_VERSION);
94 if (RT_FAILURE(rc))
95 AssertMsgFailed(("VBoxDriversRegister failed with rc=%Rrc\n", rc));
96
97 return rc;
98}
99
100
101/**
102 * This function will initialize the drivers for this VM instance.
103 *
104 * First of all this mean loading the builtin drivers and letting them
105 * register themselves. Beyond that any additional driver modules are
106 * loaded and called for registration.
107 *
108 * @returns VBox status code.
109 * @param pVM The cross context VM structure.
110 */
111int pdmR3DrvInit(PVM pVM)
112{
113 LogFlow(("pdmR3DrvInit:\n"));
114
115 AssertRelease(!(RT_OFFSETOF(PDMDRVINS, achInstanceData) & 15));
116 PPDMDRVINS pDrvInsAssert; NOREF(pDrvInsAssert);
117 AssertCompile(sizeof(pDrvInsAssert->Internal.s) <= sizeof(pDrvInsAssert->Internal.padding));
118 AssertRelease(sizeof(pDrvInsAssert->Internal.s) <= sizeof(pDrvInsAssert->Internal.padding));
119
120 /*
121 * The registration callbacks.
122 */
123 PDMDRVREGCBINT RegCB;
124 RegCB.Core.u32Version = PDM_DRVREG_CB_VERSION;
125 RegCB.Core.pfnRegister = pdmR3DrvRegister;
126 RegCB.pVM = pVM;
127 RegCB.pCfgNode = NULL;
128
129 /*
130 * Load the builtin module
131 */
132 PCFGMNODE pDriversNode = CFGMR3GetChild(CFGMR3GetRoot(pVM), "PDM/Drivers");
133 bool fLoadBuiltin;
134 int rc = CFGMR3QueryBool(pDriversNode, "LoadBuiltin", &fLoadBuiltin);
135 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
136 fLoadBuiltin = true;
137 else if (RT_FAILURE(rc))
138 {
139 AssertMsgFailed(("Configuration error: Querying boolean \"LoadBuiltin\" failed with %Rrc\n", rc));
140 return rc;
141 }
142 if (fLoadBuiltin)
143 {
144 /* make filename */
145 char *pszFilename = pdmR3FileR3("VBoxDD", true /*fShared*/);
146 if (!pszFilename)
147 return VERR_NO_TMP_MEMORY;
148 rc = pdmR3DrvLoad(pVM, &RegCB, pszFilename, "VBoxDD");
149 RTMemTmpFree(pszFilename);
150 if (RT_FAILURE(rc))
151 return rc;
152 }
153
154 /*
155 * Load additional driver modules.
156 */
157 for (PCFGMNODE pCur = CFGMR3GetFirstChild(pDriversNode); pCur; pCur = CFGMR3GetNextChild(pCur))
158 {
159 /*
160 * Get the name and path.
161 */
162 char szName[PDMMOD_NAME_LEN];
163 rc = CFGMR3GetName(pCur, &szName[0], sizeof(szName));
164 if (rc == VERR_CFGM_NOT_ENOUGH_SPACE)
165 {
166 AssertMsgFailed(("configuration error: The module name is too long, cchName=%zu.\n", CFGMR3GetNameLen(pCur)));
167 return VERR_PDM_MODULE_NAME_TOO_LONG;
168 }
169 else if (RT_FAILURE(rc))
170 {
171 AssertMsgFailed(("CFGMR3GetName -> %Rrc.\n", rc));
172 return rc;
173 }
174
175 /* the path is optional, if no path the module name + path is used. */
176 char szFilename[RTPATH_MAX];
177 rc = CFGMR3QueryString(pCur, "Path", &szFilename[0], sizeof(szFilename));
178 if (rc == VERR_CFGM_VALUE_NOT_FOUND || rc == VERR_CFGM_NO_PARENT)
179 strcpy(szFilename, szName);
180 else if (RT_FAILURE(rc))
181 {
182 AssertMsgFailed(("configuration error: Failure to query the module path, rc=%Rrc.\n", rc));
183 return rc;
184 }
185
186 /* prepend path? */
187 if (!RTPathHavePath(szFilename))
188 {
189 char *psz = pdmR3FileR3(szFilename, false /*fShared*/);
190 if (!psz)
191 return VERR_NO_TMP_MEMORY;
192 size_t cch = strlen(psz) + 1;
193 if (cch > sizeof(szFilename))
194 {
195 RTMemTmpFree(psz);
196 AssertMsgFailed(("Filename too long! cch=%d '%s'\n", cch, psz));
197 return VERR_FILENAME_TOO_LONG;
198 }
199 memcpy(szFilename, psz, cch);
200 RTMemTmpFree(psz);
201 }
202
203 /*
204 * Load the module and register it's drivers.
205 */
206 RegCB.pCfgNode = pCur;
207 rc = pdmR3DrvLoad(pVM, &RegCB, szFilename, szName);
208 if (RT_FAILURE(rc))
209 return rc;
210 }
211
212 LogFlow(("pdmR3DrvInit: returns VINF_SUCCESS\n"));
213 return VINF_SUCCESS;
214}
215
216
217/**
218 * Loads one driver module and call the registration entry point.
219 *
220 * @returns VBox status code.
221 * @param pVM The cross context VM structure.
222 * @param pRegCB The registration callback stuff.
223 * @param pszFilename Module filename.
224 * @param pszName Module name.
225 */
226static int pdmR3DrvLoad(PVM pVM, PPDMDRVREGCBINT pRegCB, const char *pszFilename, const char *pszName)
227{
228 /*
229 * Load it.
230 */
231 int rc = pdmR3LoadR3U(pVM->pUVM, pszFilename, pszName);
232 if (RT_SUCCESS(rc))
233 {
234 /*
235 * Get the registration export and call it.
236 */
237 FNPDMVBOXDRIVERSREGISTER *pfnVBoxDriversRegister;
238 rc = PDMR3LdrGetSymbolR3(pVM, pszName, "VBoxDriversRegister", (void **)&pfnVBoxDriversRegister);
239 if (RT_SUCCESS(rc))
240 {
241 Log(("PDM: Calling VBoxDriversRegister (%p) of %s (%s)\n", pfnVBoxDriversRegister, pszName, pszFilename));
242 rc = pfnVBoxDriversRegister(&pRegCB->Core, VBOX_VERSION);
243 if (RT_SUCCESS(rc))
244 Log(("PDM: Successfully loaded driver module %s (%s).\n", pszName, pszFilename));
245 else
246 AssertMsgFailed(("VBoxDriversRegister failed with rc=%Rrc\n", rc));
247 }
248 else
249 {
250 AssertMsgFailed(("Failed to locate 'VBoxDriversRegister' in %s (%s) rc=%Rrc\n", pszName, pszFilename, rc));
251 if (rc == VERR_SYMBOL_NOT_FOUND)
252 rc = VERR_PDM_NO_REGISTRATION_EXPORT;
253 }
254 }
255 else
256 AssertMsgFailed(("Failed to load %s (%s) rc=%Rrc!\n", pszName, pszFilename, rc));
257 return rc;
258}
259
260
261/** @interface_method_impl{PDMDRVREGCB,pfnRegister} */
262static DECLCALLBACK(int) pdmR3DrvRegister(PCPDMDRVREGCB pCallbacks, PCPDMDRVREG pReg)
263{
264 /*
265 * Validate the registration structure.
266 */
267 AssertPtrReturn(pReg, VERR_INVALID_POINTER);
268 AssertMsgReturn(pReg->u32Version == PDM_DRVREG_VERSION,
269 ("%#x\n", pReg->u32Version),
270 VERR_PDM_UNKNOWN_DRVREG_VERSION);
271 AssertReturn(pReg->szName[0], VERR_PDM_INVALID_DRIVER_REGISTRATION);
272 AssertMsgReturn(RTStrEnd(pReg->szName, sizeof(pReg->szName)),
273 ("%.*s\n", sizeof(pReg->szName), pReg->szName),
274 VERR_PDM_INVALID_DRIVER_REGISTRATION);
275 AssertMsgReturn(pdmR3IsValidName(pReg->szName), ("%.*s\n", sizeof(pReg->szName), pReg->szName),
276 VERR_PDM_INVALID_DRIVER_REGISTRATION);
277 AssertMsgReturn( !(pReg->fFlags & PDM_DRVREG_FLAGS_R0)
278 || ( pReg->szR0Mod[0]
279 && RTStrEnd(pReg->szR0Mod, sizeof(pReg->szR0Mod))),
280 ("%s: %.*s\n", pReg->szName, sizeof(pReg->szR0Mod), pReg->szR0Mod),
281 VERR_PDM_INVALID_DRIVER_REGISTRATION);
282 AssertMsgReturn( !(pReg->fFlags & PDM_DRVREG_FLAGS_RC)
283 || ( pReg->szRCMod[0]
284 && RTStrEnd(pReg->szRCMod, sizeof(pReg->szRCMod))),
285 ("%s: %.*s\n", pReg->szName, sizeof(pReg->szRCMod), pReg->szRCMod),
286 VERR_PDM_INVALID_DRIVER_REGISTRATION);
287 AssertMsgReturn(VALID_PTR(pReg->pszDescription),
288 ("%s: %p\n", pReg->szName, pReg->pszDescription),
289 VERR_PDM_INVALID_DRIVER_REGISTRATION);
290 AssertMsgReturn(!(pReg->fFlags & ~(PDM_DRVREG_FLAGS_HOST_BITS_MASK | PDM_DRVREG_FLAGS_R0 | PDM_DRVREG_FLAGS_RC)),
291 ("%s: %#x\n", pReg->szName, pReg->fFlags),
292 VERR_PDM_INVALID_DRIVER_REGISTRATION);
293 AssertMsgReturn((pReg->fFlags & PDM_DRVREG_FLAGS_HOST_BITS_MASK) == PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
294 ("%s: %#x\n", pReg->szName, pReg->fFlags),
295 VERR_PDM_INVALID_DRIVER_HOST_BITS);
296 AssertMsgReturn(pReg->cMaxInstances > 0,
297 ("%s: %#x\n", pReg->szName, pReg->cMaxInstances),
298 VERR_PDM_INVALID_DRIVER_REGISTRATION);
299 AssertMsgReturn(pReg->cbInstance <= _1M,
300 ("%s: %#x\n", pReg->szName, pReg->cbInstance),
301 VERR_PDM_INVALID_DRIVER_REGISTRATION);
302 AssertMsgReturn(VALID_PTR(pReg->pfnConstruct),
303 ("%s: %p\n", pReg->szName, pReg->pfnConstruct),
304 VERR_PDM_INVALID_DRIVER_REGISTRATION);
305 AssertMsgReturn(VALID_PTR(pReg->pfnRelocate) || !(pReg->fFlags & PDM_DRVREG_FLAGS_RC),
306 ("%s: %#x\n", pReg->szName, pReg->cbInstance),
307 VERR_PDM_INVALID_DRIVER_REGISTRATION);
308 AssertMsgReturn(pReg->pfnSoftReset == NULL,
309 ("%s: %p\n", pReg->szName, pReg->pfnSoftReset),
310 VERR_PDM_INVALID_DRIVER_REGISTRATION);
311 AssertMsgReturn(pReg->u32VersionEnd == PDM_DRVREG_VERSION,
312 ("%s: %#x\n", pReg->szName, pReg->u32VersionEnd),
313 VERR_PDM_INVALID_DRIVER_REGISTRATION);
314
315 /*
316 * Check for duplicate and find FIFO entry at the same time.
317 */
318 PCPDMDRVREGCBINT pRegCB = (PCPDMDRVREGCBINT)pCallbacks;
319 PPDMDRV pDrvPrev = NULL;
320 PPDMDRV pDrv = pRegCB->pVM->pdm.s.pDrvs;
321 for (; pDrv; pDrvPrev = pDrv, pDrv = pDrv->pNext)
322 {
323 if (!strcmp(pDrv->pReg->szName, pReg->szName))
324 {
325 AssertMsgFailed(("Driver '%s' already exists\n", pReg->szName));
326 return VERR_PDM_DRIVER_NAME_CLASH;
327 }
328 }
329
330 /*
331 * Allocate new driver structure and insert it into the list.
332 */
333 int rc;
334 pDrv = (PPDMDRV)MMR3HeapAlloc(pRegCB->pVM, MM_TAG_PDM_DRIVER, sizeof(*pDrv));
335 if (pDrv)
336 {
337 pDrv->pNext = NULL;
338 pDrv->cInstances = 0;
339 pDrv->iNextInstance = 0;
340 pDrv->pReg = pReg;
341 rc = CFGMR3QueryStringAllocDef( pRegCB->pCfgNode, "RCSearchPath", &pDrv->pszRCSearchPath, NULL);
342 if (RT_SUCCESS(rc))
343 rc = CFGMR3QueryStringAllocDef(pRegCB->pCfgNode, "R0SearchPath", &pDrv->pszR0SearchPath, NULL);
344 if (RT_SUCCESS(rc))
345 {
346 if (pDrvPrev)
347 pDrvPrev->pNext = pDrv;
348 else
349 pRegCB->pVM->pdm.s.pDrvs = pDrv;
350 Log(("PDM: Registered driver '%s'\n", pReg->szName));
351 return VINF_SUCCESS;
352 }
353 MMR3HeapFree(pDrv);
354 }
355 else
356 rc = VERR_NO_MEMORY;
357 return rc;
358}
359
360
361/**
362 * Lookups a driver structure by name.
363 * @internal
364 */
365PPDMDRV pdmR3DrvLookup(PVM pVM, const char *pszName)
366{
367 for (PPDMDRV pDrv = pVM->pdm.s.pDrvs; pDrv; pDrv = pDrv->pNext)
368 if (!strcmp(pDrv->pReg->szName, pszName))
369 return pDrv;
370 return NULL;
371}
372
373
374/**
375 * Transforms the driver chain as it's being instantiated.
376 *
377 * Worker for pdmR3DrvInstantiate.
378 *
379 * @returns VBox status code.
380 * @param pVM The cross context VM structure.
381 * @param pDrvAbove The driver above, NULL if top.
382 * @param pLun The LUN.
383 * @param ppNode The AttachedDriver node, replaced if any
384 * morphing took place.
385 */
386static int pdmR3DrvMaybeTransformChain(PVM pVM, PPDMDRVINS pDrvAbove, PPDMLUN pLun, PCFGMNODE *ppNode)
387{
388 /*
389 * The typical state of affairs is that there are no injections.
390 */
391 PCFGMNODE pCurTrans = CFGMR3GetFirstChild(CFGMR3GetChild(CFGMR3GetRoot(pVM), "PDM/DriverTransformations"));
392 if (!pCurTrans)
393 return VINF_SUCCESS;
394
395 /*
396 * Gather the attributes used in the matching process.
397 */
398 const char *pszDevice = pLun->pDevIns
399 ? pLun->pDevIns->Internal.s.pDevR3->pReg->szName
400 : pLun->pUsbIns->Internal.s.pUsbDev->pReg->szName;
401 char szLun[32];
402 RTStrPrintf(szLun, sizeof(szLun), "%u", pLun->iLun);
403 const char *pszAbove = pDrvAbove ? pDrvAbove->Internal.s.pDrv->pReg->szName : "<top>";
404 char *pszThisDrv;
405 int rc = CFGMR3QueryStringAlloc(*ppNode, "Driver", &pszThisDrv);
406 AssertMsgRCReturn(rc, ("Query for string value of \"Driver\" -> %Rrc\n", rc),
407 rc == VERR_CFGM_VALUE_NOT_FOUND ? VERR_PDM_CFG_MISSING_DRIVER_NAME : rc);
408
409 uint64_t uInjectTransformationAbove = 0;
410 if (pDrvAbove)
411 {
412 rc = CFGMR3QueryIntegerDef(CFGMR3GetParent(*ppNode), "InjectTransformationPtr", &uInjectTransformationAbove, 0);
413 AssertLogRelRCReturn(rc, rc);
414 }
415
416
417 /*
418 * Enumerate possible driver chain transformations.
419 */
420 unsigned cTransformations = 0;
421 for (; pCurTrans != NULL; pCurTrans = CFGMR3GetNextChild(pCurTrans))
422 {
423 char szCurTransNm[256];
424 rc = CFGMR3GetName(pCurTrans, szCurTransNm, sizeof(szCurTransNm));
425 AssertLogRelRCReturn(rc, rc);
426
427 /* Match against the driver multi pattern. */
428 char *pszMultiPat;
429 rc = CFGMR3QueryStringAllocDef(pCurTrans, "Driver", &pszMultiPat, "*");
430 AssertLogRelRCReturn(rc, rc);
431 bool fMatch = RTStrSimplePatternMultiMatch(pszMultiPat, RTSTR_MAX, pszDevice, RTSTR_MAX, NULL);
432 MMR3HeapFree(pszMultiPat);
433 if (!fMatch)
434 continue;
435
436 /* Match against the lun multi pattern. */
437 rc = CFGMR3QueryStringAllocDef(pCurTrans, "LUN", &pszMultiPat, "*");
438 AssertLogRelRCReturn(rc, rc);
439 fMatch = RTStrSimplePatternMultiMatch(pszMultiPat, RTSTR_MAX, szLun, RTSTR_MAX, NULL);
440 MMR3HeapFree(pszMultiPat);
441 if (!fMatch)
442 continue;
443
444 /* Match against the below-driver multi pattern. */
445 rc = CFGMR3QueryStringAllocDef(pCurTrans, "BelowDriver", &pszMultiPat, "*");
446 AssertLogRelRCReturn(rc, rc);
447 fMatch = RTStrSimplePatternMultiMatch(pszMultiPat, RTSTR_MAX, pszAbove, RTSTR_MAX, NULL);
448 MMR3HeapFree(pszMultiPat);
449 if (!fMatch)
450 continue;
451
452 /* Match against the above-driver multi pattern. */
453 rc = CFGMR3QueryStringAlloc(pCurTrans, "AboveDriver", &pszMultiPat);
454 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
455 rc = VINF_SUCCESS;
456 else
457 {
458 AssertLogRelRCReturn(rc, rc);
459 fMatch = RTStrSimplePatternMultiMatch(pszMultiPat, RTSTR_MAX, pszThisDrv, RTSTR_MAX, NULL);
460 MMR3HeapFree(pszMultiPat);
461 if (!fMatch)
462 continue;
463 if (uInjectTransformationAbove == (uintptr_t)pCurTrans)
464 continue;
465 }
466
467 /*
468 * We've got a match! Now, what are we supposed to do?
469 */
470 char szAction[16];
471 rc = CFGMR3QueryStringDef(pCurTrans, "Action", szAction, sizeof(szAction), "inject");
472 AssertLogRelRCReturn(rc, rc);
473 AssertLogRelMsgReturn( !strcmp(szAction, "inject")
474 || !strcmp(szAction, "mergeconfig")
475 || !strcmp(szAction, "remove")
476 || !strcmp(szAction, "removetree")
477 || !strcmp(szAction, "replace")
478 || !strcmp(szAction, "replacetree")
479 ,
480 ("Action='%s', valid values are 'inject', 'mergeconfig', 'replace', 'replacetree', 'remove', 'removetree'.\n", szAction),
481 VERR_PDM_MISCONFIGURED_DRV_TRANSFORMATION);
482 LogRel(("PDMDriver: Applying '%s' to '%s'::[%s]...'%s': %s\n", szCurTransNm, pszDevice, szLun, pszThisDrv, szAction));
483 CFGMR3Dump(*ppNode);
484 CFGMR3Dump(pCurTrans);
485
486 /* Get the attached driver to inject. */
487 PCFGMNODE pTransAttDrv = NULL;
488 if (!strcmp(szAction, "inject") || !strcmp(szAction, "replace") || !strcmp(szAction, "replacetree"))
489 {
490 pTransAttDrv = CFGMR3GetChild(pCurTrans, "AttachedDriver");
491 AssertLogRelMsgReturn(pTransAttDrv,
492 ("An %s transformation requires an AttachedDriver child node!\n", szAction),
493 VERR_PDM_MISCONFIGURED_DRV_TRANSFORMATION);
494 }
495
496
497 /*
498 * Remove the node.
499 */
500 if (!strcmp(szAction, "remove") || !strcmp(szAction, "removetree"))
501 {
502 PCFGMNODE pBelowThis = CFGMR3GetChild(*ppNode, "AttachedDriver");
503 if (!pBelowThis || !strcmp(szAction, "removetree"))
504 {
505 CFGMR3RemoveNode(*ppNode);
506 *ppNode = NULL;
507 }
508 else
509 {
510 PCFGMNODE pBelowThisCopy;
511 rc = CFGMR3DuplicateSubTree(pBelowThis, &pBelowThisCopy);
512 AssertLogRelRCReturn(rc, rc);
513
514 rc = CFGMR3ReplaceSubTree(*ppNode, pBelowThisCopy);
515 AssertLogRelRCReturnStmt(rc, CFGMR3RemoveNode(pBelowThis), rc);
516 }
517 }
518 /*
519 * Replace the driver about to be instantiated.
520 */
521 else if (!strcmp(szAction, "replace") || !strcmp(szAction, "replacetree"))
522 {
523 PCFGMNODE pTransCopy;
524 rc = CFGMR3DuplicateSubTree(pTransAttDrv, &pTransCopy);
525 AssertLogRelRCReturn(rc, rc);
526
527 PCFGMNODE pBelowThis = CFGMR3GetChild(*ppNode, "AttachedDriver");
528 if (!pBelowThis || !strcmp(szAction, "replacetree"))
529 rc = VINF_SUCCESS;
530 else
531 {
532 PCFGMNODE pBelowThisCopy;
533 rc = CFGMR3DuplicateSubTree(pBelowThis, &pBelowThisCopy);
534 if (RT_SUCCESS(rc))
535 {
536 rc = CFGMR3InsertSubTree(pTransCopy, "AttachedDriver", pBelowThisCopy, NULL);
537 AssertLogRelRC(rc);
538 if (RT_FAILURE(rc))
539 CFGMR3RemoveNode(pBelowThisCopy);
540 }
541 }
542 if (RT_SUCCESS(rc))
543 rc = CFGMR3ReplaceSubTree(*ppNode, pTransCopy);
544 if (RT_FAILURE(rc))
545 CFGMR3RemoveNode(pTransCopy);
546 }
547 /*
548 * Inject a driver before the driver about to be instantiated.
549 */
550 else if (!strcmp(szAction, "inject"))
551 {
552 PCFGMNODE pTransCopy;
553 rc = CFGMR3DuplicateSubTree(pTransAttDrv, &pTransCopy);
554 AssertLogRelRCReturn(rc, rc);
555
556 PCFGMNODE pThisCopy;
557 rc = CFGMR3DuplicateSubTree(*ppNode, &pThisCopy);
558 if (RT_SUCCESS(rc))
559 {
560 rc = CFGMR3InsertSubTree(pTransCopy, "AttachedDriver", pThisCopy, NULL);
561 if (RT_SUCCESS(rc))
562 {
563 rc = CFGMR3InsertInteger(pTransCopy, "InjectTransformationPtr", (uintptr_t)pCurTrans);
564 AssertLogRelRC(rc);
565 rc = CFGMR3InsertString(pTransCopy, "InjectTransformationNm", szCurTransNm);
566 AssertLogRelRC(rc);
567 if (RT_SUCCESS(rc))
568 rc = CFGMR3ReplaceSubTree(*ppNode, pTransCopy);
569 }
570 else
571 {
572 AssertLogRelRC(rc);
573 CFGMR3RemoveNode(pThisCopy);
574 }
575 }
576 if (RT_FAILURE(rc))
577 CFGMR3RemoveNode(pTransCopy);
578 }
579 /*
580 * Merge the Config node of the transformation with the one of the
581 * current driver.
582 */
583 else if (!strcmp(szAction, "mergeconfig"))
584 {
585 PCFGMNODE pTransConfig = CFGMR3GetChild(pCurTrans, "Config");
586 AssertLogRelReturn(pTransConfig, VERR_PDM_MISCONFIGURED_DRV_TRANSFORMATION);
587
588 PCFGMNODE pDrvConfig = CFGMR3GetChild(*ppNode, "Config");
589 if (*ppNode)
590 CFGMR3InsertNode(*ppNode, "Config", &pDrvConfig);
591 AssertLogRelReturn(pDrvConfig, VERR_PDM_CANNOT_TRANSFORM_REMOVED_DRIVER);
592
593 rc = CFGMR3CopyTree(pDrvConfig, pTransConfig, CFGM_COPY_FLAGS_REPLACE_VALUES | CFGM_COPY_FLAGS_MERGE_KEYS);
594 AssertLogRelRCReturn(rc, rc);
595 }
596 else
597 AssertFailed();
598
599 cTransformations++;
600 if (*ppNode)
601 CFGMR3Dump(*ppNode);
602 else
603 LogRel(("PDMDriver: The transformation removed the driver.\n"));
604 }
605
606 /*
607 * Note what happened in the release log.
608 */
609 if (cTransformations > 0)
610 LogRel(("PDMDriver: Transformations done. Applied %u driver transformations.\n", cTransformations));
611
612 return rc;
613}
614
615
616/**
617 * Instantiate a driver.
618 *
619 * @returns VBox status code, including informational statuses.
620 *
621 * @param pVM The cross context VM structure.
622 * @param pNode The CFGM node for the driver.
623 * @param pBaseInterface The base interface.
624 * @param pDrvAbove The driver above it. NULL if it's the top-most
625 * driver.
626 * @param pLun The LUN the driver is being attached to. NULL
627 * if we're instantiating a driver chain before
628 * attaching it - untested.
629 * @param ppBaseInterface Where to return the pointer to the base
630 * interface of the newly created driver.
631 *
632 * @remarks Recursive calls to this function is normal as the drivers will
633 * attach to anything below them during the pfnContruct call.
634 *
635 * @todo Need to extend this interface a bit so that the driver
636 * transformation feature can attach drivers to unconfigured LUNs and
637 * at the end of chains.
638 */
639int pdmR3DrvInstantiate(PVM pVM, PCFGMNODE pNode, PPDMIBASE pBaseInterface, PPDMDRVINS pDrvAbove,
640 PPDMLUN pLun, PPDMIBASE *ppBaseInterface)
641{
642 Assert(!pDrvAbove || !pDrvAbove->Internal.s.pDown);
643 Assert(!pDrvAbove || !pDrvAbove->pDownBase);
644
645 Assert(pBaseInterface->pfnQueryInterface(pBaseInterface, PDMIBASE_IID) == pBaseInterface);
646
647 /*
648 * Do driver chain injections
649 */
650 int rc = pdmR3DrvMaybeTransformChain(pVM, pDrvAbove, pLun, &pNode);
651 if (RT_FAILURE(rc))
652 return rc;
653 if (!pNode)
654 return VERR_PDM_NO_ATTACHED_DRIVER;
655
656 /*
657 * Find the driver.
658 */
659 char *pszName;
660 rc = CFGMR3QueryStringAlloc(pNode, "Driver", &pszName);
661 if (RT_SUCCESS(rc))
662 {
663 PPDMDRV pDrv = pdmR3DrvLookup(pVM, pszName);
664 if ( pDrv
665 && pDrv->cInstances < pDrv->pReg->cMaxInstances)
666 {
667 /* config node */
668 PCFGMNODE pConfigNode = CFGMR3GetChild(pNode, "Config");
669 if (!pConfigNode)
670 rc = CFGMR3InsertNode(pNode, "Config", &pConfigNode);
671 if (RT_SUCCESS(rc))
672 {
673 CFGMR3SetRestrictedRoot(pConfigNode);
674
675 /*
676 * Allocate the driver instance.
677 */
678 size_t cb = RT_OFFSETOF(PDMDRVINS, achInstanceData[pDrv->pReg->cbInstance]);
679 cb = RT_ALIGN_Z(cb, 16);
680 bool const fHyperHeap = !!(pDrv->pReg->fFlags & (PDM_DRVREG_FLAGS_R0 | PDM_DRVREG_FLAGS_RC));
681 PPDMDRVINS pNew;
682 if (fHyperHeap)
683 rc = MMHyperAlloc(pVM, cb, 64, MM_TAG_PDM_DRIVER, (void **)&pNew);
684 else
685 rc = MMR3HeapAllocZEx(pVM, MM_TAG_PDM_DRIVER, cb, (void **)&pNew);
686 if (RT_SUCCESS(rc))
687 {
688 /*
689 * Initialize the instance structure (declaration order).
690 */
691 pNew->u32Version = PDM_DRVINS_VERSION;
692 pNew->iInstance = pDrv->iNextInstance;
693 pNew->Internal.s.pUp = pDrvAbove ? pDrvAbove : NULL;
694 //pNew->Internal.s.pDown = NULL;
695 pNew->Internal.s.pLun = pLun;
696 pNew->Internal.s.pDrv = pDrv;
697 pNew->Internal.s.pVMR3 = pVM;
698 pNew->Internal.s.pVMR0 = pDrv->pReg->fFlags & PDM_DRVREG_FLAGS_R0 ? pVM->pVMR0 : NIL_RTR0PTR;
699 pNew->Internal.s.pVMRC = pDrv->pReg->fFlags & PDM_DRVREG_FLAGS_RC ? pVM->pVMRC : NIL_RTRCPTR;
700 //pNew->Internal.s.fDetaching = false;
701 pNew->Internal.s.fVMSuspended = true; /** @todo: should be 'false', if driver is attached at runtime. */
702 //pNew->Internal.s.fVMReset = false;
703 pNew->Internal.s.fHyperHeap = fHyperHeap;
704 //pNew->Internal.s.pfnAsyncNotify = NULL;
705 pNew->Internal.s.pCfgHandle = pNode;
706 pNew->pReg = pDrv->pReg;
707 pNew->pCfg = pConfigNode;
708 pNew->pUpBase = pBaseInterface;
709 Assert(!pDrvAbove || pBaseInterface == &pDrvAbove->IBase);
710 //pNew->pDownBase = NULL;
711 //pNew->IBase.pfnQueryInterface = NULL;
712 //pNew->fTracing = 0;
713 pNew->idTracing = ++pVM->pdm.s.idTracingOther;
714 pNew->pHlpR3 = &g_pdmR3DrvHlp;
715 pNew->pvInstanceDataR3 = &pNew->achInstanceData[0];
716 if (pDrv->pReg->fFlags & PDM_DRVREG_FLAGS_R0)
717 {
718 pNew->pvInstanceDataR0 = MMHyperR3ToR0(pVM, &pNew->achInstanceData[0]);
719 rc = PDMR3LdrGetSymbolR0(pVM, NULL, "g_pdmR0DrvHlp", &pNew->pHlpR0);
720 AssertReleaseRCReturn(rc, rc);
721 }
722 if ( (pDrv->pReg->fFlags & PDM_DRVREG_FLAGS_RC)
723 && !HMIsEnabled(pVM))
724 {
725 pNew->pvInstanceDataR0 = MMHyperR3ToRC(pVM, &pNew->achInstanceData[0]);
726 rc = PDMR3LdrGetSymbolRC(pVM, NULL, "g_pdmRCDrvHlp", &pNew->pHlpRC);
727 AssertReleaseRCReturn(rc, rc);
728 }
729
730 pDrv->iNextInstance++;
731 pDrv->cInstances++;
732
733 /*
734 * Link with it with the driver above / LUN.
735 */
736 if (pDrvAbove)
737 {
738 pDrvAbove->pDownBase = &pNew->IBase;
739 pDrvAbove->Internal.s.pDown = pNew;
740 }
741 else if (pLun)
742 pLun->pTop = pNew;
743 if (pLun)
744 pLun->pBottom = pNew;
745
746 /*
747 * Invoke the constructor.
748 */
749 rc = pDrv->pReg->pfnConstruct(pNew, pNew->pCfg, 0 /*fFlags*/);
750 if (RT_SUCCESS(rc))
751 {
752 AssertPtr(pNew->IBase.pfnQueryInterface);
753 Assert(pNew->IBase.pfnQueryInterface(&pNew->IBase, PDMIBASE_IID) == &pNew->IBase);
754
755 /* Success! */
756 *ppBaseInterface = &pNew->IBase;
757 if (pLun)
758 Log(("PDM: Attached driver %p:'%s'/%d to LUN#%d on device '%s'/%d, pDrvAbove=%p:'%s'/%d\n",
759 pNew, pDrv->pReg->szName, pNew->iInstance,
760 pLun->iLun,
761 pLun->pDevIns ? pLun->pDevIns->pReg->szName : pLun->pUsbIns->pReg->szName,
762 pLun->pDevIns ? pLun->pDevIns->iInstance : pLun->pUsbIns->iInstance,
763 pDrvAbove, pDrvAbove ? pDrvAbove->pReg->szName : "", pDrvAbove ? pDrvAbove->iInstance : UINT32_MAX));
764 else
765 Log(("PDM: Attached driver %p:'%s'/%d, pDrvAbove=%p:'%s'/%d\n",
766 pNew, pDrv->pReg->szName, pNew->iInstance,
767 pDrvAbove, pDrvAbove ? pDrvAbove->pReg->szName : "", pDrvAbove ? pDrvAbove->iInstance : UINT32_MAX));
768 }
769 else
770 {
771 pdmR3DrvDestroyChain(pNew, PDM_TACH_FLAGS_NO_CALLBACKS);
772 if (rc == VERR_VERSION_MISMATCH)
773 rc = VERR_PDM_DRIVER_VERSION_MISMATCH;
774 }
775 }
776 else
777 AssertMsgFailed(("Failed to allocate %d bytes for instantiating driver '%s'! rc=%Rrc\n", cb, pszName, rc));
778 }
779 else
780 AssertMsgFailed(("Failed to create Config node! rc=%Rrc\n", rc));
781 }
782 else if (pDrv)
783 {
784 AssertMsgFailed(("Too many instances of driver '%s', max is %u\n", pszName, pDrv->pReg->cMaxInstances));
785 rc = VERR_PDM_TOO_MANY_DRIVER_INSTANCES;
786 }
787 else
788 {
789 AssertMsgFailed(("Driver '%s' wasn't found!\n", pszName));
790 rc = VERR_PDM_DRIVER_NOT_FOUND;
791 }
792 MMR3HeapFree(pszName);
793 }
794 else
795 {
796 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
797 rc = VERR_PDM_CFG_MISSING_DRIVER_NAME;
798 else
799 AssertMsgFailed(("Query for string value of \"Driver\" -> %Rrc\n", rc));
800 }
801 return rc;
802}
803
804
805/**
806 * Detaches a driver from whatever it's attached to.
807 * This will of course lead to the destruction of the driver and all drivers below it in the chain.
808 *
809 * @returns VINF_SUCCESS
810 * @param pDrvIns The driver instance to detach.
811 * @param fFlags Flags, combination of the PDMDEVATT_FLAGS_* \#defines.
812 */
813int pdmR3DrvDetach(PPDMDRVINS pDrvIns, uint32_t fFlags)
814{
815 PDMDRV_ASSERT_DRVINS(pDrvIns);
816 LogFlow(("pdmR3DrvDetach: pDrvIns=%p '%s'/%d\n", pDrvIns, pDrvIns->pReg->szName, pDrvIns->iInstance));
817 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
818
819 /*
820 * Check that we're not doing this recursively, that could have unwanted sideeffects!
821 */
822 if (pDrvIns->Internal.s.fDetaching)
823 {
824 AssertMsgFailed(("Recursive detach! '%s'/%d\n", pDrvIns->pReg->szName, pDrvIns->iInstance));
825 return VINF_SUCCESS;
826 }
827
828 /*
829 * Check that we actually can detach this instance.
830 * The requirement is that the driver/device above has a detach method.
831 */
832 if ( pDrvIns->Internal.s.pUp
833 ? !pDrvIns->Internal.s.pUp->pReg->pfnDetach
834 : pDrvIns->Internal.s.pLun->pDevIns
835 ? !pDrvIns->Internal.s.pLun->pDevIns->pReg->pfnDetach
836 : !pDrvIns->Internal.s.pLun->pUsbIns->pReg->pfnDriverDetach
837 )
838 {
839 AssertMsgFailed(("Cannot detach driver instance because the driver/device above doesn't support it!\n"));
840 return VERR_PDM_DRIVER_DETACH_NOT_POSSIBLE;
841 }
842
843 /*
844 * Join paths with pdmR3DrvDestroyChain.
845 */
846 pdmR3DrvDestroyChain(pDrvIns, fFlags);
847 return VINF_SUCCESS;
848}
849
850
851/**
852 * Destroys a driver chain starting with the specified driver.
853 *
854 * This is used when unplugging a device at run time.
855 *
856 * @param pDrvIns Pointer to the driver instance to start with.
857 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG, PDM_TACH_FLAGS_NO_CALLBACKS
858 * or 0.
859 */
860void pdmR3DrvDestroyChain(PPDMDRVINS pDrvIns, uint32_t fFlags)
861{
862 PVM pVM = pDrvIns->Internal.s.pVMR3;
863 VM_ASSERT_EMT(pVM);
864
865 /*
866 * Detach the bottommost driver until we've detached pDrvIns.
867 */
868 pDrvIns->Internal.s.fDetaching = true;
869 PPDMDRVINS pCur;
870 do
871 {
872 /* find the driver to detach. */
873 pCur = pDrvIns;
874 while (pCur->Internal.s.pDown)
875 pCur = pCur->Internal.s.pDown;
876 LogFlow(("pdmR3DrvDestroyChain: pCur=%p '%s'/%d\n", pCur, pCur->pReg->szName, pCur->iInstance));
877
878 /*
879 * Unlink it and notify parent.
880 */
881 pCur->Internal.s.fDetaching = true;
882
883 PPDMLUN pLun = pCur->Internal.s.pLun;
884 Assert(pLun->pBottom == pCur);
885 pLun->pBottom = pCur->Internal.s.pUp;
886
887 if (pCur->Internal.s.pUp)
888 {
889 /* driver parent */
890 PPDMDRVINS pParent = pCur->Internal.s.pUp;
891 pCur->Internal.s.pUp = NULL;
892 pParent->Internal.s.pDown = NULL;
893
894 if (!(fFlags & PDM_TACH_FLAGS_NO_CALLBACKS) && pParent->pReg->pfnDetach)
895 pParent->pReg->pfnDetach(pParent, fFlags);
896
897 pParent->pDownBase = NULL;
898 }
899 else
900 {
901 /* device parent */
902 Assert(pLun->pTop == pCur);
903 pLun->pTop = NULL;
904 if (!(fFlags & PDM_TACH_FLAGS_NO_CALLBACKS))
905 {
906 if (pLun->pDevIns)
907 {
908 if (pLun->pDevIns->pReg->pfnDetach)
909 {
910 PDMCritSectEnter(pLun->pDevIns->pCritSectRoR3, VERR_IGNORED);
911 pLun->pDevIns->pReg->pfnDetach(pLun->pDevIns, pLun->iLun, fFlags);
912 PDMCritSectLeave(pLun->pDevIns->pCritSectRoR3);
913 }
914 }
915 else
916 {
917 if (pLun->pUsbIns->pReg->pfnDriverDetach)
918 {
919 /** @todo USB device locking? */
920 pLun->pUsbIns->pReg->pfnDriverDetach(pLun->pUsbIns, pLun->iLun, fFlags);
921 }
922 }
923 }
924 }
925
926 /*
927 * Call destructor.
928 */
929 pCur->pUpBase = NULL;
930 if (pCur->pReg->pfnDestruct)
931 pCur->pReg->pfnDestruct(pCur);
932 pCur->Internal.s.pDrv->cInstances--;
933
934 /*
935 * Free all resources allocated by the driver.
936 */
937 /* Queues. */
938 int rc = PDMR3QueueDestroyDriver(pVM, pCur);
939 AssertRC(rc);
940
941 /* Timers. */
942 rc = TMR3TimerDestroyDriver(pVM, pCur);
943 AssertRC(rc);
944
945 /* SSM data units. */
946 rc = SSMR3DeregisterDriver(pVM, pCur, NULL, 0);
947 AssertRC(rc);
948
949 /* PDM threads. */
950 rc = pdmR3ThreadDestroyDriver(pVM, pCur);
951 AssertRC(rc);
952
953 /* Info handlers. */
954 rc = DBGFR3InfoDeregisterDriver(pVM, pCur, NULL);
955 AssertRC(rc);
956
957 /* PDM critsects. */
958 rc = pdmR3CritSectBothDeleteDriver(pVM, pCur);
959 AssertRC(rc);
960
961 /* Block caches. */
962 PDMR3BlkCacheReleaseDriver(pVM, pCur);
963
964#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
965 /* Completion templates.*/
966 pdmR3AsyncCompletionTemplateDestroyDriver(pVM, pCur);
967#endif
968
969 /* Finally, the driver it self. */
970 bool fHyperHeap = pCur->Internal.s.fHyperHeap;
971 ASMMemFill32(pCur, RT_OFFSETOF(PDMDRVINS, achInstanceData[pCur->pReg->cbInstance]), 0xdeadd0d0);
972 if (fHyperHeap)
973 MMHyperFree(pVM, pCur);
974 else
975 MMR3HeapFree(pCur);
976
977 } while (pCur != pDrvIns);
978}
979
980
981
982
983/** @name Driver Helpers
984 * @{
985 */
986
987/** @interface_method_impl{PDMDRVHLPR3,pfnAttach} */
988static DECLCALLBACK(int) pdmR3DrvHlp_Attach(PPDMDRVINS pDrvIns, uint32_t fFlags, PPDMIBASE *ppBaseInterface)
989{
990 PDMDRV_ASSERT_DRVINS(pDrvIns);
991 PVM pVM = pDrvIns->Internal.s.pVMR3;
992 VM_ASSERT_EMT(pVM);
993 LogFlow(("pdmR3DrvHlp_Attach: caller='%s'/%d: fFlags=%#x\n", pDrvIns->pReg->szName, pDrvIns->iInstance, fFlags));
994 Assert(!(fFlags & ~(PDM_TACH_FLAGS_NOT_HOT_PLUG)));
995
996 /*
997 * Check that there isn't anything attached already.
998 */
999 int rc;
1000 if (!pDrvIns->Internal.s.pDown)
1001 {
1002 Assert(pDrvIns->Internal.s.pLun->pBottom == pDrvIns);
1003
1004 /*
1005 * Get the attached driver configuration.
1006 */
1007 PCFGMNODE pNode = CFGMR3GetChild(pDrvIns->Internal.s.pCfgHandle, "AttachedDriver");
1008 if (pNode)
1009 rc = pdmR3DrvInstantiate(pVM, pNode, &pDrvIns->IBase, pDrvIns, pDrvIns->Internal.s.pLun, ppBaseInterface);
1010 else
1011 rc = VERR_PDM_NO_ATTACHED_DRIVER;
1012 }
1013 else
1014 {
1015 AssertMsgFailed(("Already got a driver attached. The driver should keep track of such things!\n"));
1016 rc = VERR_PDM_DRIVER_ALREADY_ATTACHED;
1017 }
1018
1019 LogFlow(("pdmR3DrvHlp_Attach: caller='%s'/%d: return %Rrc\n",
1020 pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1021 return rc;
1022}
1023
1024
1025/** @interface_method_impl{PDMDRVHLPR3,pfnDetach} */
1026static DECLCALLBACK(int) pdmR3DrvHlp_Detach(PPDMDRVINS pDrvIns, uint32_t fFlags)
1027{
1028 PDMDRV_ASSERT_DRVINS(pDrvIns);
1029 LogFlow(("pdmR3DrvHlp_Detach: caller='%s'/%d: fFlags=%#x\n",
1030 pDrvIns->pReg->szName, pDrvIns->iInstance, fFlags));
1031 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1032
1033 /*
1034 * Anything attached?
1035 */
1036 int rc;
1037 if (pDrvIns->Internal.s.pDown)
1038 rc = pdmR3DrvDetach(pDrvIns->Internal.s.pDown, fFlags);
1039 else
1040 {
1041 AssertMsgFailed(("Nothing attached!\n"));
1042 rc = VERR_PDM_NO_DRIVER_ATTACHED;
1043 }
1044
1045 LogFlow(("pdmR3DrvHlp_Detach: caller='%s'/%d: returns %Rrc\n",
1046 pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1047 return rc;
1048}
1049
1050
1051/** @interface_method_impl{PDMDRVHLPR3,pfnDetachSelf} */
1052static DECLCALLBACK(int) pdmR3DrvHlp_DetachSelf(PPDMDRVINS pDrvIns, uint32_t fFlags)
1053{
1054 PDMDRV_ASSERT_DRVINS(pDrvIns);
1055 LogFlow(("pdmR3DrvHlp_DetachSelf: caller='%s'/%d: fFlags=%#x\n",
1056 pDrvIns->pReg->szName, pDrvIns->iInstance, fFlags));
1057 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1058
1059 int rc = pdmR3DrvDetach(pDrvIns, fFlags);
1060
1061 LogFlow(("pdmR3DrvHlp_Detach: returns %Rrc\n", rc)); /* pDrvIns is freed by now. */
1062 return rc;
1063}
1064
1065
1066/** @interface_method_impl{PDMDRVHLPR3,pfnMountPrepare} */
1067static DECLCALLBACK(int) pdmR3DrvHlp_MountPrepare(PPDMDRVINS pDrvIns, const char *pszFilename, const char *pszCoreDriver)
1068{
1069 PDMDRV_ASSERT_DRVINS(pDrvIns);
1070 LogFlow(("pdmR3DrvHlp_MountPrepare: caller='%s'/%d: pszFilename=%p:{%s} pszCoreDriver=%p:{%s}\n",
1071 pDrvIns->pReg->szName, pDrvIns->iInstance, pszFilename, pszFilename, pszCoreDriver, pszCoreDriver));
1072 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1073
1074 /*
1075 * Do the caller have anything attached below itself?
1076 */
1077 if (pDrvIns->Internal.s.pDown)
1078 {
1079 AssertMsgFailed(("Cannot prepare a mount when something's attached to you!\n"));
1080 return VERR_PDM_DRIVER_ALREADY_ATTACHED;
1081 }
1082
1083 /*
1084 * We're asked to prepare, so we'll start off by nuking the
1085 * attached configuration tree.
1086 */
1087 PCFGMNODE pNode = CFGMR3GetChild(pDrvIns->Internal.s.pCfgHandle, "AttachedDriver");
1088 if (pNode)
1089 CFGMR3RemoveNode(pNode);
1090
1091 /*
1092 * If there is no core driver, we'll have to probe for it.
1093 */
1094 if (!pszCoreDriver)
1095 {
1096 /** @todo implement image probing. */
1097 AssertReleaseMsgFailed(("Not implemented!\n"));
1098 return VERR_NOT_IMPLEMENTED;
1099 }
1100
1101 /*
1102 * Construct the basic attached driver configuration.
1103 */
1104 int rc = CFGMR3InsertNode(pDrvIns->Internal.s.pCfgHandle, "AttachedDriver", &pNode);
1105 if (RT_SUCCESS(rc))
1106 {
1107 rc = CFGMR3InsertString(pNode, "Driver", pszCoreDriver);
1108 if (RT_SUCCESS(rc))
1109 {
1110 PCFGMNODE pCfg;
1111 rc = CFGMR3InsertNode(pNode, "Config", &pCfg);
1112 if (RT_SUCCESS(rc))
1113 {
1114 rc = CFGMR3InsertString(pCfg, "Path", pszFilename);
1115 if (RT_SUCCESS(rc))
1116 {
1117 LogFlow(("pdmR3DrvHlp_MountPrepare: caller='%s'/%d: returns %Rrc (Driver=%s)\n",
1118 pDrvIns->pReg->szName, pDrvIns->iInstance, rc, pszCoreDriver));
1119 return rc;
1120 }
1121 else
1122 AssertMsgFailed(("Path string insert failed, rc=%Rrc\n", rc));
1123 }
1124 else
1125 AssertMsgFailed(("Config node failed, rc=%Rrc\n", rc));
1126 }
1127 else
1128 AssertMsgFailed(("Driver string insert failed, rc=%Rrc\n", rc));
1129 CFGMR3RemoveNode(pNode);
1130 }
1131 else
1132 AssertMsgFailed(("AttachedDriver node insert failed, rc=%Rrc\n", rc));
1133
1134 LogFlow(("pdmR3DrvHlp_MountPrepare: caller='%s'/%d: returns %Rrc\n",
1135 pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1136 return rc;
1137}
1138
1139
1140/** @interface_method_impl{PDMDRVHLPR3,pfnAssertEMT} */
1141static DECLCALLBACK(bool) pdmR3DrvHlp_AssertEMT(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction)
1142{
1143 PDMDRV_ASSERT_DRVINS(pDrvIns);
1144 if (VM_IS_EMT(pDrvIns->Internal.s.pVMR3))
1145 return true;
1146
1147 char szMsg[100];
1148 RTStrPrintf(szMsg, sizeof(szMsg), "AssertEMT '%s'/%d\n", pDrvIns->pReg->szName, pDrvIns->iInstance);
1149 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
1150 AssertBreakpoint();
1151 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1152 return false;
1153}
1154
1155
1156/** @interface_method_impl{PDMDRVHLPR3,pfnAssertOther} */
1157static DECLCALLBACK(bool) pdmR3DrvHlp_AssertOther(PPDMDRVINS pDrvIns, const char *pszFile, unsigned iLine, const char *pszFunction)
1158{
1159 PDMDRV_ASSERT_DRVINS(pDrvIns);
1160 if (!VM_IS_EMT(pDrvIns->Internal.s.pVMR3))
1161 return true;
1162
1163 char szMsg[100];
1164 RTStrPrintf(szMsg, sizeof(szMsg), "AssertOther '%s'/%d\n", pDrvIns->pReg->szName, pDrvIns->iInstance);
1165 RTAssertMsg1Weak(szMsg, iLine, pszFile, pszFunction);
1166 AssertBreakpoint();
1167 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1168 return false;
1169}
1170
1171
1172/** @interface_method_impl{PDMDRVHLPR3,pfnVMSetError} */
1173static DECLCALLBACK(int) pdmR3DrvHlp_VMSetError(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...)
1174{
1175 PDMDRV_ASSERT_DRVINS(pDrvIns);
1176 va_list args;
1177 va_start(args, pszFormat);
1178 int rc2 = VMSetErrorV(pDrvIns->Internal.s.pVMR3, rc, RT_SRC_POS_ARGS, pszFormat, args); Assert(rc2 == rc); NOREF(rc2);
1179 va_end(args);
1180 return rc;
1181}
1182
1183
1184/** @interface_method_impl{PDMDRVHLPR3,pfnVMSetErrorV} */
1185static DECLCALLBACK(int) pdmR3DrvHlp_VMSetErrorV(PPDMDRVINS pDrvIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, va_list va)
1186{
1187 PDMDRV_ASSERT_DRVINS(pDrvIns);
1188 int rc2 = VMSetErrorV(pDrvIns->Internal.s.pVMR3, rc, RT_SRC_POS_ARGS, pszFormat, va); Assert(rc2 == rc); NOREF(rc2);
1189 return rc;
1190}
1191
1192
1193/** @interface_method_impl{PDMDRVHLPR3,pfnVMSetRuntimeError} */
1194static DECLCALLBACK(int) pdmR3DrvHlp_VMSetRuntimeError(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
1195{
1196 PDMDRV_ASSERT_DRVINS(pDrvIns);
1197 va_list args;
1198 va_start(args, pszFormat);
1199 int rc = VMSetRuntimeErrorV(pDrvIns->Internal.s.pVMR3, fFlags, pszErrorId, pszFormat, args);
1200 va_end(args);
1201 return rc;
1202}
1203
1204
1205/** @interface_method_impl{PDMDRVHLPR3,pfnVMSetRuntimeErrorV} */
1206static DECLCALLBACK(int) pdmR3DrvHlp_VMSetRuntimeErrorV(PPDMDRVINS pDrvIns, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, va_list va)
1207{
1208 PDMDRV_ASSERT_DRVINS(pDrvIns);
1209 int rc = VMSetRuntimeErrorV(pDrvIns->Internal.s.pVMR3, fFlags, pszErrorId, pszFormat, va);
1210 return rc;
1211}
1212
1213
1214/** @interface_method_impl{PDMDRVHLPR3,pfnVMState} */
1215static DECLCALLBACK(VMSTATE) pdmR3DrvHlp_VMState(PPDMDRVINS pDrvIns)
1216{
1217 PDMDRV_ASSERT_DRVINS(pDrvIns);
1218
1219 VMSTATE enmVMState = VMR3GetState(pDrvIns->Internal.s.pVMR3);
1220
1221 LogFlow(("pdmR3DrvHlp_VMState: caller='%s'/%d: returns %d (%s)\n", pDrvIns->pReg->szName, pDrvIns->iInstance,
1222 enmVMState, VMR3GetStateName(enmVMState)));
1223 return enmVMState;
1224}
1225
1226
1227/** @interface_method_impl{PDMDRVHLPR3,pfnVMTeleportedAndNotFullyResumedYet} */
1228static DECLCALLBACK(bool) pdmR3DrvHlp_VMTeleportedAndNotFullyResumedYet(PPDMDRVINS pDrvIns)
1229{
1230 PDMDRV_ASSERT_DRVINS(pDrvIns);
1231
1232 bool fRc = VMR3TeleportedAndNotFullyResumedYet(pDrvIns->Internal.s.pVMR3);
1233
1234 LogFlow(("pdmR3DrvHlp_VMState: caller='%s'/%d: returns %RTbool)\n", pDrvIns->pReg->szName, pDrvIns->iInstance,
1235 fRc));
1236 return fRc;
1237}
1238
1239
1240/** @interface_method_impl{PDMDRVHLPR3,pfnGetSupDrvSession} */
1241static DECLCALLBACK(PSUPDRVSESSION) pdmR3DrvHlp_GetSupDrvSession(PPDMDRVINS pDrvIns)
1242{
1243 PDMDRV_ASSERT_DRVINS(pDrvIns);
1244
1245 PSUPDRVSESSION pSession = pDrvIns->Internal.s.pVMR3->pSession;
1246 LogFlow(("pdmR3DrvHlp_GetSupDrvSession: caller='%s'/%d: returns %p)\n", pDrvIns->pReg->szName, pDrvIns->iInstance,
1247 pSession));
1248 return pSession;
1249}
1250
1251
1252/** @interface_method_impl{PDMDRVHLPR3,pfnQueueCreate} */
1253static DECLCALLBACK(int) pdmR3DrvHlp_QueueCreate(PPDMDRVINS pDrvIns, uint32_t cbItem, uint32_t cItems, uint32_t cMilliesInterval,
1254 PFNPDMQUEUEDRV pfnCallback, const char *pszName, PPDMQUEUE *ppQueue)
1255{
1256 PDMDRV_ASSERT_DRVINS(pDrvIns);
1257 LogFlow(("pdmR3DrvHlp_PDMQueueCreate: caller='%s'/%d: cbItem=%d cItems=%d cMilliesInterval=%d pfnCallback=%p pszName=%p:{%s} ppQueue=%p\n",
1258 pDrvIns->pReg->szName, pDrvIns->iInstance, cbItem, cItems, cMilliesInterval, pfnCallback, pszName, pszName, ppQueue));
1259 PVM pVM = pDrvIns->Internal.s.pVMR3;
1260 VM_ASSERT_EMT(pVM);
1261
1262 if (pDrvIns->iInstance > 0)
1263 {
1264 pszName = MMR3HeapAPrintf(pVM, MM_TAG_PDM_DRIVER_DESC, "%s_%u", pszName, pDrvIns->iInstance);
1265 AssertLogRelReturn(pszName, VERR_NO_MEMORY);
1266 }
1267
1268 int rc = PDMR3QueueCreateDriver(pVM, pDrvIns, cbItem, cItems, cMilliesInterval, pfnCallback, pszName, ppQueue);
1269
1270 LogFlow(("pdmR3DrvHlp_PDMQueueCreate: caller='%s'/%d: returns %Rrc *ppQueue=%p\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc, *ppQueue));
1271 return rc;
1272}
1273
1274
1275/** @interface_method_impl{PDMDRVHLPR3,pfnTMGetVirtualFreq} */
1276static DECLCALLBACK(uint64_t) pdmR3DrvHlp_TMGetVirtualFreq(PPDMDRVINS pDrvIns)
1277{
1278 PDMDRV_ASSERT_DRVINS(pDrvIns);
1279
1280 return TMVirtualGetFreq(pDrvIns->Internal.s.pVMR3);
1281}
1282
1283
1284/** @interface_method_impl{PDMDRVHLPR3,pfnTMGetVirtualTime} */
1285static DECLCALLBACK(uint64_t) pdmR3DrvHlp_TMGetVirtualTime(PPDMDRVINS pDrvIns)
1286{
1287 PDMDRV_ASSERT_DRVINS(pDrvIns);
1288
1289 return TMVirtualGet(pDrvIns->Internal.s.pVMR3);
1290}
1291
1292
1293/** @interface_method_impl{PDMDRVHLPR3,pfnTMTimerCreate} */
1294static DECLCALLBACK(int) pdmR3DrvHlp_TMTimerCreate(PPDMDRVINS pDrvIns, TMCLOCK enmClock, PFNTMTIMERDRV pfnCallback, void *pvUser, uint32_t fFlags, const char *pszDesc, PPTMTIMERR3 ppTimer)
1295{
1296 PDMDRV_ASSERT_DRVINS(pDrvIns);
1297 LogFlow(("pdmR3DrvHlp_TMTimerCreate: caller='%s'/%d: enmClock=%d pfnCallback=%p pvUser=%p fFlags=%#x pszDesc=%p:{%s} ppTimer=%p\n",
1298 pDrvIns->pReg->szName, pDrvIns->iInstance, enmClock, pfnCallback, pvUser, fFlags, pszDesc, pszDesc, ppTimer));
1299
1300 int rc = TMR3TimerCreateDriver(pDrvIns->Internal.s.pVMR3, pDrvIns, enmClock, pfnCallback, pvUser, fFlags, pszDesc, ppTimer);
1301
1302 LogFlow(("pdmR3DrvHlp_TMTimerCreate: caller='%s'/%d: returns %Rrc *ppTimer=%p\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc, *ppTimer));
1303 return rc;
1304}
1305
1306
1307
1308/** @interface_method_impl{PDMDRVHLPR3,pfnSSMRegister} */
1309static DECLCALLBACK(int) pdmR3DrvHlp_SSMRegister(PPDMDRVINS pDrvIns, uint32_t uVersion, size_t cbGuess,
1310 PFNSSMDRVLIVEPREP pfnLivePrep, PFNSSMDRVLIVEEXEC pfnLiveExec, PFNSSMDRVLIVEVOTE pfnLiveVote,
1311 PFNSSMDRVSAVEPREP pfnSavePrep, PFNSSMDRVSAVEEXEC pfnSaveExec, PFNSSMDRVSAVEDONE pfnSaveDone,
1312 PFNSSMDRVLOADPREP pfnLoadPrep, PFNSSMDRVLOADEXEC pfnLoadExec, PFNSSMDRVLOADDONE pfnLoadDone)
1313{
1314 PDMDRV_ASSERT_DRVINS(pDrvIns);
1315 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1316 LogFlow(("pdmR3DrvHlp_SSMRegister: caller='%s'/%d: uVersion=%#x cbGuess=%#x \n"
1317 " pfnLivePrep=%p pfnLiveExec=%p pfnLiveVote=%p pfnSavePrep=%p pfnSaveExec=%p pfnSaveDone=%p pszLoadPrep=%p pfnLoadExec=%p pfnLoaddone=%p\n",
1318 pDrvIns->pReg->szName, pDrvIns->iInstance, uVersion, cbGuess,
1319 pfnLivePrep, pfnLiveExec, pfnLiveVote,
1320 pfnSavePrep, pfnSaveExec, pfnSaveDone, pfnLoadPrep, pfnLoadExec, pfnLoadDone));
1321
1322 int rc = SSMR3RegisterDriver(pDrvIns->Internal.s.pVMR3, pDrvIns, pDrvIns->pReg->szName, pDrvIns->iInstance,
1323 uVersion, cbGuess,
1324 pfnLivePrep, pfnLiveExec, pfnLiveVote,
1325 pfnSavePrep, pfnSaveExec, pfnSaveDone,
1326 pfnLoadPrep, pfnLoadExec, pfnLoadDone);
1327
1328 LogFlow(("pdmR3DrvHlp_SSMRegister: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1329 return rc;
1330}
1331
1332
1333/** @interface_method_impl{PDMDRVHLPR3,pfnSSMDeregister} */
1334static DECLCALLBACK(int) pdmR3DrvHlp_SSMDeregister(PPDMDRVINS pDrvIns, const char *pszName, uint32_t uInstance)
1335{
1336 PDMDRV_ASSERT_DRVINS(pDrvIns);
1337 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1338 LogFlow(("pdmR3DrvHlp_SSMDeregister: caller='%s'/%d: pszName=%p:{%s} uInstance=%#x\n",
1339 pDrvIns->pReg->szName, pDrvIns->iInstance, pszName, pszName, uInstance));
1340
1341 int rc = SSMR3DeregisterDriver(pDrvIns->Internal.s.pVMR3, pDrvIns, pszName, uInstance);
1342
1343 LogFlow(("pdmR3DrvHlp_SSMDeregister: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1344 return rc;
1345}
1346
1347
1348/** @interface_method_impl{PDMDRVHLPR3,pfnDBGFInfoRegister} */
1349static DECLCALLBACK(int) pdmR3DrvHlp_DBGFInfoRegister(PPDMDRVINS pDrvIns, const char *pszName, const char *pszDesc, PFNDBGFHANDLERDRV pfnHandler)
1350{
1351 PDMDRV_ASSERT_DRVINS(pDrvIns);
1352 LogFlow(("pdmR3DrvHlp_DBGFInfoRegister: caller='%s'/%d: pszName=%p:{%s} pszDesc=%p:{%s} pfnHandler=%p\n",
1353 pDrvIns->pReg->szName, pDrvIns->iInstance, pszName, pszName, pszDesc, pszDesc, pfnHandler));
1354
1355 int rc = DBGFR3InfoRegisterDriver(pDrvIns->Internal.s.pVMR3, pszName, pszDesc, pfnHandler, pDrvIns);
1356
1357 LogFlow(("pdmR3DrvHlp_DBGFInfoRegister: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1358 return rc;
1359}
1360
1361
1362/** @interface_method_impl{PDMDRVHLPR3,pfnDBGFInfoDeregister} */
1363static DECLCALLBACK(int) pdmR3DrvHlp_DBGFInfoDeregister(PPDMDRVINS pDrvIns, const char *pszName)
1364{
1365 PDMDRV_ASSERT_DRVINS(pDrvIns);
1366 LogFlow(("pdmR3DrvHlp_DBGFInfoDeregister: caller='%s'/%d: pszName=%p:{%s}\n",
1367 pDrvIns->pReg->szName, pDrvIns->iInstance, pszName, pszName));
1368
1369 int rc = DBGFR3InfoDeregisterDriver(pDrvIns->Internal.s.pVMR3, pDrvIns, pszName);
1370
1371 LogFlow(("pdmR3DrvHlp_DBGFInfoDeregister: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1372
1373 return rc;
1374}
1375
1376
1377/** @interface_method_impl{PDMDRVHLPR3,pfnSTAMRegister} */
1378static DECLCALLBACK(void) pdmR3DrvHlp_STAMRegister(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, const char *pszName, STAMUNIT enmUnit, const char *pszDesc)
1379{
1380 PDMDRV_ASSERT_DRVINS(pDrvIns);
1381 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1382
1383 STAM_REG(pDrvIns->Internal.s.pVMR3, pvSample, enmType, pszName, enmUnit, pszDesc);
1384 /** @todo track the samples so they can be dumped & deregistered when the driver instance is destroyed.
1385 * For now we just have to be careful not to use this call for drivers which can be unloaded. */
1386}
1387
1388
1389/** @interface_method_impl{PDMDRVHLPR3,pfnSTAMRegisterF} */
1390static DECLCALLBACK(void) pdmR3DrvHlp_STAMRegisterF(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,
1391 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, ...)
1392{
1393 PDMDRV_ASSERT_DRVINS(pDrvIns);
1394 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1395
1396 va_list args;
1397 va_start(args, pszName);
1398 int rc = STAMR3RegisterV(pDrvIns->Internal.s.pVMR3, pvSample, enmType, enmVisibility, enmUnit, pszDesc, pszName, args);
1399 va_end(args);
1400 AssertRC(rc);
1401}
1402
1403
1404/** @interface_method_impl{PDMDRVHLPR3,pfnSTAMRegisterV} */
1405static DECLCALLBACK(void) pdmR3DrvHlp_STAMRegisterV(PPDMDRVINS pDrvIns, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,
1406 STAMUNIT enmUnit, const char *pszDesc, const char *pszName, va_list args)
1407{
1408 PDMDRV_ASSERT_DRVINS(pDrvIns);
1409 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1410
1411 int rc = STAMR3RegisterV(pDrvIns->Internal.s.pVMR3, pvSample, enmType, enmVisibility, enmUnit, pszDesc, pszName, args);
1412 AssertRC(rc);
1413}
1414
1415
1416/** @interface_method_impl{PDMDRVHLPR3,pfnSTAMDeregister} */
1417static DECLCALLBACK(int) pdmR3DrvHlp_STAMDeregister(PPDMDRVINS pDrvIns, void *pvSample)
1418{
1419 PDMDRV_ASSERT_DRVINS(pDrvIns);
1420 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1421
1422 int rc = STAMR3DeregisterByAddr(pDrvIns->Internal.s.pVMR3->pUVM, pvSample);
1423 AssertRC(rc);
1424 return rc;
1425}
1426
1427
1428/** @interface_method_impl{PDMDRVHLPR3,pfnSUPCallVMMR0Ex} */
1429static DECLCALLBACK(int) pdmR3DrvHlp_SUPCallVMMR0Ex(PPDMDRVINS pDrvIns, unsigned uOperation, void *pvArg, unsigned cbArg)
1430{
1431 PDMDRV_ASSERT_DRVINS(pDrvIns);
1432 LogFlow(("pdmR3DrvHlp_SSMCallVMMR0Ex: caller='%s'/%d: uOperation=%u pvArg=%p cbArg=%d\n",
1433 pDrvIns->pReg->szName, pDrvIns->iInstance, uOperation, pvArg, cbArg));
1434 int rc;
1435 if ( uOperation >= VMMR0_DO_SRV_START
1436 && uOperation < VMMR0_DO_SRV_END)
1437 rc = SUPR3CallVMMR0Ex(pDrvIns->Internal.s.pVMR3->pVMR0, NIL_VMCPUID, uOperation, 0, (PSUPVMMR0REQHDR)pvArg);
1438 else
1439 {
1440 AssertMsgFailed(("Invalid uOperation=%u\n", uOperation));
1441 rc = VERR_INVALID_PARAMETER;
1442 }
1443
1444 LogFlow(("pdmR3DrvHlp_SUPCallVMMR0Ex: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1445 return rc;
1446}
1447
1448
1449/** @interface_method_impl{PDMDRVHLPR3,pfnUSBRegisterHub} */
1450static DECLCALLBACK(int) pdmR3DrvHlp_USBRegisterHub(PPDMDRVINS pDrvIns, uint32_t fVersions, uint32_t cPorts, PCPDMUSBHUBREG pUsbHubReg, PPCPDMUSBHUBHLP ppUsbHubHlp)
1451{
1452 PDMDRV_ASSERT_DRVINS(pDrvIns);
1453 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1454 LogFlow(("pdmR3DrvHlp_USBRegisterHub: caller='%s'/%d: fVersions=%#x cPorts=%#x pUsbHubReg=%p ppUsbHubHlp=%p\n",
1455 pDrvIns->pReg->szName, pDrvIns->iInstance, fVersions, cPorts, pUsbHubReg, ppUsbHubHlp));
1456
1457#ifdef VBOX_WITH_USB
1458 int rc = pdmR3UsbRegisterHub(pDrvIns->Internal.s.pVMR3, pDrvIns, fVersions, cPorts, pUsbHubReg, ppUsbHubHlp);
1459#else
1460 int rc = VERR_NOT_SUPPORTED;
1461#endif
1462
1463 LogFlow(("pdmR3DrvHlp_USBRegisterHub: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1464 return rc;
1465}
1466
1467
1468/** @interface_method_impl{PDMDRVHLPR3,pfnSetAsyncNotification} */
1469static DECLCALLBACK(int) pdmR3DrvHlp_SetAsyncNotification(PPDMDRVINS pDrvIns, PFNPDMDRVASYNCNOTIFY pfnAsyncNotify)
1470{
1471 PDMDRV_ASSERT_DRVINS(pDrvIns);
1472 VM_ASSERT_EMT0(pDrvIns->Internal.s.pVMR3);
1473 LogFlow(("pdmR3DrvHlp_SetAsyncNotification: caller='%s'/%d: pfnAsyncNotify=%p\n", pDrvIns->pReg->szName, pDrvIns->iInstance, pfnAsyncNotify));
1474
1475 int rc = VINF_SUCCESS;
1476 AssertStmt(pfnAsyncNotify, rc = VERR_INVALID_PARAMETER);
1477 AssertStmt(!pDrvIns->Internal.s.pfnAsyncNotify, rc = VERR_WRONG_ORDER);
1478 AssertStmt(pDrvIns->Internal.s.fVMSuspended || pDrvIns->Internal.s.fVMReset, rc = VERR_WRONG_ORDER);
1479 VMSTATE enmVMState = VMR3GetState(pDrvIns->Internal.s.pVMR3);
1480 AssertStmt( enmVMState == VMSTATE_SUSPENDING
1481 || enmVMState == VMSTATE_SUSPENDING_EXT_LS
1482 || enmVMState == VMSTATE_SUSPENDING_LS
1483 || enmVMState == VMSTATE_RESETTING
1484 || enmVMState == VMSTATE_RESETTING_LS
1485 || enmVMState == VMSTATE_POWERING_OFF
1486 || enmVMState == VMSTATE_POWERING_OFF_LS,
1487 rc = VERR_INVALID_STATE);
1488
1489 if (RT_SUCCESS(rc))
1490 pDrvIns->Internal.s.pfnAsyncNotify = pfnAsyncNotify;
1491
1492 LogFlow(("pdmR3DrvHlp_SetAsyncNotification: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName, pDrvIns->iInstance, rc));
1493 return rc;
1494}
1495
1496
1497/** @interface_method_impl{PDMDRVHLPR3,pfnAsyncNotificationCompleted} */
1498static DECLCALLBACK(void) pdmR3DrvHlp_AsyncNotificationCompleted(PPDMDRVINS pDrvIns)
1499{
1500 PDMDRV_ASSERT_DRVINS(pDrvIns);
1501 PVM pVM = pDrvIns->Internal.s.pVMR3;
1502
1503 VMSTATE enmVMState = VMR3GetState(pVM);
1504 if ( enmVMState == VMSTATE_SUSPENDING
1505 || enmVMState == VMSTATE_SUSPENDING_EXT_LS
1506 || enmVMState == VMSTATE_SUSPENDING_LS
1507 || enmVMState == VMSTATE_RESETTING
1508 || enmVMState == VMSTATE_RESETTING_LS
1509 || enmVMState == VMSTATE_POWERING_OFF
1510 || enmVMState == VMSTATE_POWERING_OFF_LS)
1511 {
1512 LogFlow(("pdmR3DrvHlp_AsyncNotificationCompleted: caller='%s'/%d:\n", pDrvIns->pReg->szName, pDrvIns->iInstance));
1513 VMR3AsyncPdmNotificationWakeupU(pVM->pUVM);
1514 }
1515 else
1516 LogFlow(("pdmR3DrvHlp_AsyncNotificationCompleted: caller='%s'/%d: enmVMState=%d\n", pDrvIns->pReg->szName, pDrvIns->iInstance, enmVMState));
1517}
1518
1519
1520/** @interface_method_impl{PDMDRVHLPR3,pfnThreadCreate} */
1521static DECLCALLBACK(int) pdmR3DrvHlp_ThreadCreate(PPDMDRVINS pDrvIns, PPPDMTHREAD ppThread, void *pvUser, PFNPDMTHREADDRV pfnThread,
1522 PFNPDMTHREADWAKEUPDRV pfnWakeup, size_t cbStack, RTTHREADTYPE enmType, const char *pszName)
1523{
1524 PDMDRV_ASSERT_DRVINS(pDrvIns);
1525 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1526 LogFlow(("pdmR3DrvHlp_ThreadCreate: caller='%s'/%d: ppThread=%p pvUser=%p pfnThread=%p pfnWakeup=%p cbStack=%#zx enmType=%d pszName=%p:{%s}\n",
1527 pDrvIns->pReg->szName, pDrvIns->iInstance, ppThread, pvUser, pfnThread, pfnWakeup, cbStack, enmType, pszName, pszName));
1528
1529 int rc = pdmR3ThreadCreateDriver(pDrvIns->Internal.s.pVMR3, pDrvIns, ppThread, pvUser, pfnThread, pfnWakeup, cbStack, enmType, pszName);
1530
1531 LogFlow(("pdmR3DrvHlp_ThreadCreate: caller='%s'/%d: returns %Rrc *ppThread=%RTthrd\n", pDrvIns->pReg->szName, pDrvIns->iInstance,
1532 rc, *ppThread));
1533 return rc;
1534}
1535
1536
1537/** @interface_method_impl{PDMDRVHLPR3,pfnAsyncCompletionTemplateCreate} */
1538static DECLCALLBACK(int) pdmR3DrvHlp_AsyncCompletionTemplateCreate(PPDMDRVINS pDrvIns, PPPDMASYNCCOMPLETIONTEMPLATE ppTemplate,
1539 PFNPDMASYNCCOMPLETEDRV pfnCompleted, void *pvTemplateUser,
1540 const char *pszDesc)
1541{
1542 PDMDRV_ASSERT_DRVINS(pDrvIns);
1543 LogFlow(("pdmR3DrvHlp_AsyncCompletionTemplateCreate: caller='%s'/%d: ppTemplate=%p pfnCompleted=%p pszDesc=%p:{%s}\n",
1544 pDrvIns->pReg->szName, pDrvIns->iInstance, ppTemplate, pfnCompleted, pszDesc, pszDesc));
1545
1546 int rc = pdmR3AsyncCompletionTemplateCreateDriver(pDrvIns->Internal.s.pVMR3, pDrvIns, ppTemplate, pfnCompleted, pvTemplateUser, pszDesc);
1547
1548 LogFlow(("pdmR3DrvHlp_AsyncCompletionTemplateCreate: caller='%s'/%d: returns %Rrc *ppThread=%p\n", pDrvIns->pReg->szName,
1549 pDrvIns->iInstance, rc, *ppTemplate));
1550 return rc;
1551}
1552
1553
1554#ifdef VBOX_WITH_NETSHAPER
1555/** @interface_method_impl{PDMDRVHLPR3,pfnNetShaperAttach} */
1556static DECLCALLBACK(int) pdmR3DrvHlp_NetShaperAttach(PPDMDRVINS pDrvIns, const char *pszBwGroup, PPDMNSFILTER pFilter)
1557{
1558 PDMDRV_ASSERT_DRVINS(pDrvIns);
1559 LogFlow(("pdmR3DrvHlp_NetShaperAttach: caller='%s'/%d: pFilter=%p pszBwGroup=%p:{%s}\n",
1560 pDrvIns->pReg->szName, pDrvIns->iInstance, pFilter, pszBwGroup, pszBwGroup));
1561
1562 int rc = PDMR3NsAttach(pDrvIns->Internal.s.pVMR3->pUVM, pDrvIns, pszBwGroup, pFilter);
1563
1564 LogFlow(("pdmR3DrvHlp_NetShaperAttach: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName,
1565 pDrvIns->iInstance, rc));
1566 return rc;
1567}
1568
1569
1570/** @interface_method_impl{PDMDRVHLPR3,pfnNetShaperDetach} */
1571static DECLCALLBACK(int) pdmR3DrvHlp_NetShaperDetach(PPDMDRVINS pDrvIns, PPDMNSFILTER pFilter)
1572{
1573 PDMDRV_ASSERT_DRVINS(pDrvIns);
1574 LogFlow(("pdmR3DrvHlp_NetShaperDetach: caller='%s'/%d: pFilter=%p\n",
1575 pDrvIns->pReg->szName, pDrvIns->iInstance, pFilter));
1576
1577 int rc = PDMR3NsDetach(pDrvIns->Internal.s.pVMR3->pUVM, pDrvIns, pFilter);
1578
1579 LogFlow(("pdmR3DrvHlp_NetShaperDetach: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName,
1580 pDrvIns->iInstance, rc));
1581 return rc;
1582}
1583#endif /* VBOX_WITH_NETSHAPER */
1584
1585
1586/** @interface_method_impl{PDMDRVHLPR3,pfnLdrGetRCInterfaceSymbols} */
1587static DECLCALLBACK(int) pdmR3DrvHlp_LdrGetRCInterfaceSymbols(PPDMDRVINS pDrvIns, void *pvInterface, size_t cbInterface,
1588 const char *pszSymPrefix, const char *pszSymList)
1589{
1590 PDMDRV_ASSERT_DRVINS(pDrvIns);
1591 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1592 LogFlow(("pdmR3DrvHlp_LdrGetRCInterfaceSymbols: caller='%s'/%d: pvInterface=%p cbInterface=%zu pszSymPrefix=%p:{%s} pszSymList=%p:{%s}\n",
1593 pDrvIns->pReg->szName, pDrvIns->iInstance, pvInterface, cbInterface, pszSymPrefix, pszSymPrefix, pszSymList, pszSymList));
1594
1595 int rc;
1596 if ( strncmp(pszSymPrefix, "drv", 3) == 0
1597 && RTStrIStr(pszSymPrefix + 3, pDrvIns->pReg->szName) != NULL)
1598 {
1599 if (pDrvIns->pReg->fFlags & PDM_DRVREG_FLAGS_RC)
1600 rc = PDMR3LdrGetInterfaceSymbols(pDrvIns->Internal.s.pVMR3,
1601 pvInterface, cbInterface,
1602 pDrvIns->pReg->szRCMod, pDrvIns->Internal.s.pDrv->pszRCSearchPath,
1603 pszSymPrefix, pszSymList,
1604 false /*fRing0OrRC*/);
1605 else
1606 {
1607 AssertMsgFailed(("Not a raw-mode enabled driver\n"));
1608 rc = VERR_PERMISSION_DENIED;
1609 }
1610 }
1611 else
1612 {
1613 AssertMsgFailed(("Invalid prefix '%s' for '%s'; must start with 'drv' and contain the driver name!\n",
1614 pszSymPrefix, pDrvIns->pReg->szName));
1615 rc = VERR_INVALID_NAME;
1616 }
1617
1618 LogFlow(("pdmR3DrvHlp_LdrGetRCInterfaceSymbols: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName,
1619 pDrvIns->iInstance, rc));
1620 return rc;
1621}
1622
1623
1624/** @interface_method_impl{PDMDRVHLPR3,pfnLdrGetR0InterfaceSymbols} */
1625static DECLCALLBACK(int) pdmR3DrvHlp_LdrGetR0InterfaceSymbols(PPDMDRVINS pDrvIns, void *pvInterface, size_t cbInterface,
1626 const char *pszSymPrefix, const char *pszSymList)
1627{
1628 PDMDRV_ASSERT_DRVINS(pDrvIns);
1629 VM_ASSERT_EMT(pDrvIns->Internal.s.pVMR3);
1630 LogFlow(("pdmR3DrvHlp_LdrGetR0InterfaceSymbols: caller='%s'/%d: pvInterface=%p cbInterface=%zu pszSymPrefix=%p:{%s} pszSymList=%p:{%s}\n",
1631 pDrvIns->pReg->szName, pDrvIns->iInstance, pvInterface, cbInterface, pszSymPrefix, pszSymPrefix, pszSymList, pszSymList));
1632
1633 int rc;
1634 if ( strncmp(pszSymPrefix, "drv", 3) == 0
1635 && RTStrIStr(pszSymPrefix + 3, pDrvIns->pReg->szName) != NULL)
1636 {
1637 if (pDrvIns->pReg->fFlags & PDM_DRVREG_FLAGS_R0)
1638 rc = PDMR3LdrGetInterfaceSymbols(pDrvIns->Internal.s.pVMR3,
1639 pvInterface, cbInterface,
1640 pDrvIns->pReg->szR0Mod, pDrvIns->Internal.s.pDrv->pszR0SearchPath,
1641 pszSymPrefix, pszSymList,
1642 true /*fRing0OrRC*/);
1643 else
1644 {
1645 AssertMsgFailed(("Not a ring-0 enabled driver\n"));
1646 rc = VERR_PERMISSION_DENIED;
1647 }
1648 }
1649 else
1650 {
1651 AssertMsgFailed(("Invalid prefix '%s' for '%s'; must start with 'drv' and contain the driver name!\n",
1652 pszSymPrefix, pDrvIns->pReg->szName));
1653 rc = VERR_INVALID_NAME;
1654 }
1655
1656 LogFlow(("pdmR3DrvHlp_LdrGetR0InterfaceSymbols: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName,
1657 pDrvIns->iInstance, rc));
1658 return rc;
1659}
1660
1661
1662/** @interface_method_impl{PDMDRVHLPR3,pfnCritSectInit} */
1663static DECLCALLBACK(int) pdmR3DrvHlp_CritSectInit(PPDMDRVINS pDrvIns, PPDMCRITSECT pCritSect,
1664 RT_SRC_POS_DECL, const char *pszName)
1665{
1666 PDMDRV_ASSERT_DRVINS(pDrvIns);
1667 PVM pVM = pDrvIns->Internal.s.pVMR3;
1668 VM_ASSERT_EMT(pVM);
1669 LogFlow(("pdmR3DrvHlp_CritSectInit: caller='%s'/%d: pCritSect=%p pszName=%s\n",
1670 pDrvIns->pReg->szName, pDrvIns->iInstance, pCritSect, pszName));
1671
1672 int rc = pdmR3CritSectInitDriver(pVM, pDrvIns, pCritSect, RT_SRC_POS_ARGS, "%s_%u", pszName, pDrvIns->iInstance);
1673
1674 LogFlow(("pdmR3DrvHlp_CritSectInit: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName,
1675 pDrvIns->iInstance, rc));
1676 return rc;
1677}
1678
1679
1680/** @interface_method_impl{PDMDRVHLPR3,pfnCallR0} */
1681static DECLCALLBACK(int) pdmR3DrvHlp_CallR0(PPDMDRVINS pDrvIns, uint32_t uOperation, uint64_t u64Arg)
1682{
1683 PDMDRV_ASSERT_DRVINS(pDrvIns);
1684 PVM pVM = pDrvIns->Internal.s.pVMR3;
1685 LogFlow(("pdmR3DrvHlp_CallR0: caller='%s'/%d: uOperation=%#x u64Arg=%#RX64\n",
1686 pDrvIns->pReg->szName, pDrvIns->iInstance, uOperation, u64Arg));
1687
1688 /*
1689 * Lazy resolve the ring-0 entry point.
1690 */
1691 int rc = VINF_SUCCESS;
1692 PFNPDMDRVREQHANDLERR0 pfnReqHandlerR0 = pDrvIns->Internal.s.pfnReqHandlerR0;
1693 if (RT_UNLIKELY(pfnReqHandlerR0 == NIL_RTR0PTR))
1694 {
1695 if (pDrvIns->pReg->fFlags & PDM_DRVREG_FLAGS_R0)
1696 {
1697 char szSymbol[ sizeof("drvR0") + sizeof(pDrvIns->pReg->szName) + sizeof("ReqHandler")];
1698 strcat(strcat(strcpy(szSymbol, "drvR0"), pDrvIns->pReg->szName), "ReqHandler");
1699 szSymbol[sizeof("drvR0") - 1] = RT_C_TO_UPPER(szSymbol[sizeof("drvR0") - 1]);
1700
1701 rc = PDMR3LdrGetSymbolR0Lazy(pVM, pDrvIns->pReg->szR0Mod, pDrvIns->Internal.s.pDrv->pszR0SearchPath, szSymbol,
1702 &pfnReqHandlerR0);
1703 if (RT_SUCCESS(rc))
1704 pDrvIns->Internal.s.pfnReqHandlerR0 = pfnReqHandlerR0;
1705 else
1706 pfnReqHandlerR0 = NIL_RTR0PTR;
1707 }
1708 else
1709 rc = VERR_ACCESS_DENIED;
1710 }
1711 if (RT_LIKELY(pfnReqHandlerR0 != NIL_RTR0PTR))
1712 {
1713 /*
1714 * Make the ring-0 call.
1715 */
1716 PDMDRIVERCALLREQHANDLERREQ Req;
1717 Req.Hdr.u32Magic = SUPVMMR0REQHDR_MAGIC;
1718 Req.Hdr.cbReq = sizeof(Req);
1719 Req.pDrvInsR0 = PDMDRVINS_2_R0PTR(pDrvIns);
1720 Req.uOperation = uOperation;
1721 Req.u32Alignment = 0;
1722 Req.u64Arg = u64Arg;
1723 rc = SUPR3CallVMMR0Ex(pVM->pVMR0, NIL_VMCPUID, VMMR0_DO_PDM_DRIVER_CALL_REQ_HANDLER, 0, &Req.Hdr);
1724 }
1725
1726 LogFlow(("pdmR3DrvHlp_CallR0: caller='%s'/%d: returns %Rrc\n", pDrvIns->pReg->szName,
1727 pDrvIns->iInstance, rc));
1728 return rc;
1729}
1730
1731
1732/** @interface_method_impl{PDMDRVHLPR3,pfnFTSetCheckpoint} */
1733static DECLCALLBACK(int) pdmR3DrvHlp_FTSetCheckpoint(PPDMDRVINS pDrvIns, FTMCHECKPOINTTYPE enmType)
1734{
1735 PDMDRV_ASSERT_DRVINS(pDrvIns);
1736 return FTMSetCheckpoint(pDrvIns->Internal.s.pVMR3, enmType);
1737}
1738
1739
1740/** @interface_method_impl{PDMDRVHLPR3,pfnBlkCacheRetain} */
1741static DECLCALLBACK(int) pdmR3DrvHlp_BlkCacheRetain(PPDMDRVINS pDrvIns, PPPDMBLKCACHE ppBlkCache,
1742 PFNPDMBLKCACHEXFERCOMPLETEDRV pfnXferComplete,
1743 PFNPDMBLKCACHEXFERENQUEUEDRV pfnXferEnqueue,
1744 PFNPDMBLKCACHEXFERENQUEUEDISCARDDRV pfnXferEnqueueDiscard,
1745 const char *pcszId)
1746{
1747 PDMDRV_ASSERT_DRVINS(pDrvIns);
1748 return PDMR3BlkCacheRetainDriver(pDrvIns->Internal.s.pVMR3, pDrvIns, ppBlkCache,
1749 pfnXferComplete, pfnXferEnqueue, pfnXferEnqueueDiscard, pcszId);
1750}
1751
1752
1753
1754/** @interface_method_impl{PDMDRVHLPR3,pfnVMGetSuspendReason} */
1755static DECLCALLBACK(VMSUSPENDREASON) pdmR3DrvHlp_VMGetSuspendReason(PPDMDRVINS pDrvIns)
1756{
1757 PDMDRV_ASSERT_DRVINS(pDrvIns);
1758 PVM pVM = pDrvIns->Internal.s.pVMR3;
1759 VM_ASSERT_EMT(pVM);
1760 VMSUSPENDREASON enmReason = VMR3GetSuspendReason(pVM->pUVM);
1761 LogFlow(("pdmR3DrvHlp_VMGetSuspendReason: caller='%s'/%d: returns %d\n",
1762 pDrvIns->pReg->szName, pDrvIns->iInstance, enmReason));
1763 return enmReason;
1764}
1765
1766
1767/** @interface_method_impl{PDMDRVHLPR3,pfnVMGetResumeReason} */
1768static DECLCALLBACK(VMRESUMEREASON) pdmR3DrvHlp_VMGetResumeReason(PPDMDRVINS pDrvIns)
1769{
1770 PDMDRV_ASSERT_DRVINS(pDrvIns);
1771 PVM pVM = pDrvIns->Internal.s.pVMR3;
1772 VM_ASSERT_EMT(pVM);
1773 VMRESUMEREASON enmReason = VMR3GetResumeReason(pVM->pUVM);
1774 LogFlow(("pdmR3DrvHlp_VMGetResumeReason: caller='%s'/%d: returns %d\n",
1775 pDrvIns->pReg->szName, pDrvIns->iInstance, enmReason));
1776 return enmReason;
1777}
1778
1779
1780/**
1781 * The driver helper structure.
1782 */
1783const PDMDRVHLPR3 g_pdmR3DrvHlp =
1784{
1785 PDM_DRVHLPR3_VERSION,
1786 pdmR3DrvHlp_Attach,
1787 pdmR3DrvHlp_Detach,
1788 pdmR3DrvHlp_DetachSelf,
1789 pdmR3DrvHlp_MountPrepare,
1790 pdmR3DrvHlp_AssertEMT,
1791 pdmR3DrvHlp_AssertOther,
1792 pdmR3DrvHlp_VMSetError,
1793 pdmR3DrvHlp_VMSetErrorV,
1794 pdmR3DrvHlp_VMSetRuntimeError,
1795 pdmR3DrvHlp_VMSetRuntimeErrorV,
1796 pdmR3DrvHlp_VMState,
1797 pdmR3DrvHlp_VMTeleportedAndNotFullyResumedYet,
1798 pdmR3DrvHlp_GetSupDrvSession,
1799 pdmR3DrvHlp_QueueCreate,
1800 pdmR3DrvHlp_TMGetVirtualFreq,
1801 pdmR3DrvHlp_TMGetVirtualTime,
1802 pdmR3DrvHlp_TMTimerCreate,
1803 pdmR3DrvHlp_SSMRegister,
1804 pdmR3DrvHlp_SSMDeregister,
1805 pdmR3DrvHlp_DBGFInfoRegister,
1806 pdmR3DrvHlp_DBGFInfoDeregister,
1807 pdmR3DrvHlp_STAMRegister,
1808 pdmR3DrvHlp_STAMRegisterF,
1809 pdmR3DrvHlp_STAMRegisterV,
1810 pdmR3DrvHlp_STAMDeregister,
1811 pdmR3DrvHlp_SUPCallVMMR0Ex,
1812 pdmR3DrvHlp_USBRegisterHub,
1813 pdmR3DrvHlp_SetAsyncNotification,
1814 pdmR3DrvHlp_AsyncNotificationCompleted,
1815 pdmR3DrvHlp_ThreadCreate,
1816 pdmR3DrvHlp_AsyncCompletionTemplateCreate,
1817#ifdef VBOX_WITH_NETSHAPER
1818 pdmR3DrvHlp_NetShaperAttach,
1819 pdmR3DrvHlp_NetShaperDetach,
1820#endif /* VBOX_WITH_NETSHAPER */
1821 pdmR3DrvHlp_LdrGetRCInterfaceSymbols,
1822 pdmR3DrvHlp_LdrGetR0InterfaceSymbols,
1823 pdmR3DrvHlp_CritSectInit,
1824 pdmR3DrvHlp_CallR0,
1825 pdmR3DrvHlp_FTSetCheckpoint,
1826 pdmR3DrvHlp_BlkCacheRetain,
1827 pdmR3DrvHlp_VMGetSuspendReason,
1828 pdmR3DrvHlp_VMGetResumeReason,
1829 NULL,
1830 NULL,
1831 NULL,
1832 NULL,
1833 NULL,
1834 NULL,
1835 NULL,
1836 NULL,
1837 NULL,
1838 NULL,
1839 PDM_DRVHLPR3_VERSION /* u32TheEnd */
1840};
1841
1842/** @} */
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