1 | /* $Id: VMMDevInterface.cpp 75991 2018-12-05 20:14:57Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox Driver Interface to VMM device.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2017 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 | #define LOG_GROUP LOG_GROUP_MAIN_VMMDEVINTERFACES
|
---|
19 | #include "LoggingNew.h"
|
---|
20 |
|
---|
21 | #include "VMMDev.h"
|
---|
22 | #include "ConsoleImpl.h"
|
---|
23 | #include "DisplayImpl.h"
|
---|
24 | #include "GuestImpl.h"
|
---|
25 | #include "MouseImpl.h"
|
---|
26 |
|
---|
27 | #include <VBox/vmm/pdmdrv.h>
|
---|
28 | #include <VBox/VMMDev.h>
|
---|
29 | #include <VBox/shflsvc.h>
|
---|
30 | #include <iprt/asm.h>
|
---|
31 |
|
---|
32 | #ifdef VBOX_WITH_HGCM
|
---|
33 | # include "HGCM.h"
|
---|
34 | # include "HGCMObjects.h"
|
---|
35 | # if defined(RT_OS_DARWIN) && defined(VBOX_WITH_CROGL)
|
---|
36 | # include <VBox/HostServices/VBoxCrOpenGLSvc.h>
|
---|
37 | # endif
|
---|
38 | #endif
|
---|
39 |
|
---|
40 | //
|
---|
41 | // defines
|
---|
42 | //
|
---|
43 |
|
---|
44 | #ifdef RT_OS_OS2
|
---|
45 | # define VBOXSHAREDFOLDERS_DLL "VBoxSFld"
|
---|
46 | #else
|
---|
47 | # define VBOXSHAREDFOLDERS_DLL "VBoxSharedFolders"
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | //
|
---|
51 | // globals
|
---|
52 | //
|
---|
53 |
|
---|
54 |
|
---|
55 | /**
|
---|
56 | * VMMDev driver instance data.
|
---|
57 | */
|
---|
58 | typedef struct DRVMAINVMMDEV
|
---|
59 | {
|
---|
60 | /** Pointer to the VMMDev object. */
|
---|
61 | VMMDev *pVMMDev;
|
---|
62 | /** Pointer to the driver instance structure. */
|
---|
63 | PPDMDRVINS pDrvIns;
|
---|
64 | /** Pointer to the VMMDev port interface of the driver/device above us. */
|
---|
65 | PPDMIVMMDEVPORT pUpPort;
|
---|
66 | /** Our VMM device connector interface. */
|
---|
67 | PDMIVMMDEVCONNECTOR Connector;
|
---|
68 |
|
---|
69 | #ifdef VBOX_WITH_HGCM
|
---|
70 | /** Pointer to the HGCM port interface of the driver/device above us. */
|
---|
71 | PPDMIHGCMPORT pHGCMPort;
|
---|
72 | /** Our HGCM connector interface. */
|
---|
73 | PDMIHGCMCONNECTOR HGCMConnector;
|
---|
74 | #endif
|
---|
75 | } DRVMAINVMMDEV, *PDRVMAINVMMDEV;
|
---|
76 |
|
---|
77 | //
|
---|
78 | // constructor / destructor
|
---|
79 | //
|
---|
80 | VMMDev::VMMDev(Console *console)
|
---|
81 | : mpDrv(NULL)
|
---|
82 | , mParent(console)
|
---|
83 | {
|
---|
84 | int rc = RTSemEventCreate(&mCredentialsEvent);
|
---|
85 | AssertRC(rc);
|
---|
86 | #ifdef VBOX_WITH_HGCM
|
---|
87 | rc = HGCMHostInit();
|
---|
88 | AssertRC(rc);
|
---|
89 | m_fHGCMActive = true;
|
---|
90 | #endif /* VBOX_WITH_HGCM */
|
---|
91 | mu32CredentialsFlags = 0;
|
---|
92 | }
|
---|
93 |
|
---|
94 | VMMDev::~VMMDev()
|
---|
95 | {
|
---|
96 | #ifdef VBOX_WITH_HGCM
|
---|
97 | if (ASMAtomicCmpXchgBool(&m_fHGCMActive, false, true))
|
---|
98 | HGCMHostShutdown(true /*fUvmIsInvalid*/);
|
---|
99 | #endif
|
---|
100 | RTSemEventDestroy(mCredentialsEvent);
|
---|
101 | if (mpDrv)
|
---|
102 | mpDrv->pVMMDev = NULL;
|
---|
103 | mpDrv = NULL;
|
---|
104 | }
|
---|
105 |
|
---|
106 | PPDMIVMMDEVPORT VMMDev::getVMMDevPort()
|
---|
107 | {
|
---|
108 | if (!mpDrv)
|
---|
109 | return NULL;
|
---|
110 | return mpDrv->pUpPort;
|
---|
111 | }
|
---|
112 |
|
---|
113 |
|
---|
114 |
|
---|
115 | //
|
---|
116 | // public methods
|
---|
117 | //
|
---|
118 |
|
---|
119 | /**
|
---|
120 | * Wait on event semaphore for guest credential judgement result.
|
---|
121 | */
|
---|
122 | int VMMDev::WaitCredentialsJudgement(uint32_t u32Timeout, uint32_t *pu32CredentialsFlags)
|
---|
123 | {
|
---|
124 | if (u32Timeout == 0)
|
---|
125 | {
|
---|
126 | u32Timeout = 5000;
|
---|
127 | }
|
---|
128 |
|
---|
129 | int rc = RTSemEventWait(mCredentialsEvent, u32Timeout);
|
---|
130 |
|
---|
131 | if (RT_SUCCESS(rc))
|
---|
132 | {
|
---|
133 | *pu32CredentialsFlags = mu32CredentialsFlags;
|
---|
134 | }
|
---|
135 |
|
---|
136 | return rc;
|
---|
137 | }
|
---|
138 |
|
---|
139 | int VMMDev::SetCredentialsJudgementResult(uint32_t u32Flags)
|
---|
140 | {
|
---|
141 | mu32CredentialsFlags = u32Flags;
|
---|
142 |
|
---|
143 | int rc = RTSemEventSignal(mCredentialsEvent);
|
---|
144 | AssertRC(rc);
|
---|
145 |
|
---|
146 | return rc;
|
---|
147 | }
|
---|
148 |
|
---|
149 |
|
---|
150 | /**
|
---|
151 | * @interface_method_impl{PDMIVMMDEVCONNECTOR,pfnUpdateGuestStatus}
|
---|
152 | */
|
---|
153 | DECLCALLBACK(void) vmmdevUpdateGuestStatus(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFacility, uint16_t uStatus,
|
---|
154 | uint32_t fFlags, PCRTTIMESPEC pTimeSpecTS)
|
---|
155 | {
|
---|
156 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
157 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
158 |
|
---|
159 | /* Store that information in IGuest */
|
---|
160 | Guest* guest = pConsole->i_getGuest();
|
---|
161 | AssertPtrReturnVoid(guest);
|
---|
162 |
|
---|
163 | guest->i_setAdditionsStatus((VBoxGuestFacilityType)uFacility, (VBoxGuestFacilityStatus)uStatus, fFlags, pTimeSpecTS);
|
---|
164 | pConsole->i_onAdditionsStateChange();
|
---|
165 | }
|
---|
166 |
|
---|
167 |
|
---|
168 | /**
|
---|
169 | * @interface_method_impl{PDMIVMMDEVCONNECTOR,pfnUpdateGuestUserState}
|
---|
170 | */
|
---|
171 | DECLCALLBACK(void) vmmdevUpdateGuestUserState(PPDMIVMMDEVCONNECTOR pInterface,
|
---|
172 | const char *pszUser, const char *pszDomain,
|
---|
173 | uint32_t uState,
|
---|
174 | const uint8_t *pabDetails, uint32_t cbDetails)
|
---|
175 | {
|
---|
176 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
177 | AssertPtr(pDrv);
|
---|
178 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
179 | AssertPtr(pConsole);
|
---|
180 |
|
---|
181 | /* Store that information in IGuest. */
|
---|
182 | Guest* pGuest = pConsole->i_getGuest();
|
---|
183 | AssertPtrReturnVoid(pGuest);
|
---|
184 |
|
---|
185 | pGuest->i_onUserStateChange(Bstr(pszUser), Bstr(pszDomain), (VBoxGuestUserState)uState,
|
---|
186 | pabDetails, cbDetails);
|
---|
187 | }
|
---|
188 |
|
---|
189 |
|
---|
190 | /**
|
---|
191 | * Reports Guest Additions API and OS version.
|
---|
192 | *
|
---|
193 | * Called whenever the Additions issue a guest version report request or the VM
|
---|
194 | * is reset.
|
---|
195 | *
|
---|
196 | * @param pInterface Pointer to this interface.
|
---|
197 | * @param guestInfo Pointer to guest information structure.
|
---|
198 | * @thread The emulation thread.
|
---|
199 | */
|
---|
200 | DECLCALLBACK(void) vmmdevUpdateGuestInfo(PPDMIVMMDEVCONNECTOR pInterface, const VBoxGuestInfo *guestInfo)
|
---|
201 | {
|
---|
202 | AssertPtrReturnVoid(guestInfo);
|
---|
203 |
|
---|
204 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
205 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
206 |
|
---|
207 | /* Store that information in IGuest */
|
---|
208 | Guest* guest = pConsole->i_getGuest();
|
---|
209 | AssertPtrReturnVoid(guest);
|
---|
210 |
|
---|
211 | if (guestInfo->interfaceVersion != 0)
|
---|
212 | {
|
---|
213 | char version[16];
|
---|
214 | RTStrPrintf(version, sizeof(version), "%d", guestInfo->interfaceVersion);
|
---|
215 | guest->i_setAdditionsInfo(Bstr(version), guestInfo->osType);
|
---|
216 |
|
---|
217 | /*
|
---|
218 | * Tell the console interface about the event
|
---|
219 | * so that it can notify its consumers.
|
---|
220 | */
|
---|
221 | pConsole->i_onAdditionsStateChange();
|
---|
222 |
|
---|
223 | if (guestInfo->interfaceVersion < VMMDEV_VERSION)
|
---|
224 | pConsole->i_onAdditionsOutdated();
|
---|
225 | }
|
---|
226 | else
|
---|
227 | {
|
---|
228 | /*
|
---|
229 | * The guest additions was disabled because of a reset
|
---|
230 | * or driver unload.
|
---|
231 | */
|
---|
232 | guest->i_setAdditionsInfo(Bstr(), guestInfo->osType); /* Clear interface version + OS type. */
|
---|
233 | /** @todo Would be better if GuestImpl.cpp did all this in the above method call
|
---|
234 | * while holding down the. */
|
---|
235 | guest->i_setAdditionsInfo2(0, "", 0, 0); /* Clear Guest Additions version. */
|
---|
236 | RTTIMESPEC TimeSpecTS;
|
---|
237 | RTTimeNow(&TimeSpecTS);
|
---|
238 | guest->i_setAdditionsStatus(VBoxGuestFacilityType_All, VBoxGuestFacilityStatus_Inactive, 0 /*fFlags*/, &TimeSpecTS);
|
---|
239 | pConsole->i_onAdditionsStateChange();
|
---|
240 | }
|
---|
241 | }
|
---|
242 |
|
---|
243 | /**
|
---|
244 | * @interface_method_impl{PDMIVMMDEVCONNECTOR,pfnUpdateGuestInfo2}
|
---|
245 | */
|
---|
246 | DECLCALLBACK(void) vmmdevUpdateGuestInfo2(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFullVersion,
|
---|
247 | const char *pszName, uint32_t uRevision, uint32_t fFeatures)
|
---|
248 | {
|
---|
249 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
250 | AssertPtr(pszName);
|
---|
251 | Assert(uFullVersion);
|
---|
252 |
|
---|
253 | /* Store that information in IGuest. */
|
---|
254 | Guest *pGuest = pDrv->pVMMDev->getParent()->i_getGuest();
|
---|
255 | AssertPtrReturnVoid(pGuest);
|
---|
256 |
|
---|
257 | /* Just pass it on... */
|
---|
258 | pGuest->i_setAdditionsInfo2(uFullVersion, pszName, uRevision, fFeatures);
|
---|
259 |
|
---|
260 | /*
|
---|
261 | * No need to tell the console interface about the update;
|
---|
262 | * vmmdevUpdateGuestInfo takes care of that when called as the
|
---|
263 | * last event in the chain.
|
---|
264 | */
|
---|
265 | }
|
---|
266 |
|
---|
267 | /**
|
---|
268 | * Update the guest additions capabilities.
|
---|
269 | * This is called when the guest additions capabilities change. The new capabilities
|
---|
270 | * are given and the connector should update its internal state.
|
---|
271 | *
|
---|
272 | * @param pInterface Pointer to this interface.
|
---|
273 | * @param newCapabilities New capabilities.
|
---|
274 | * @thread The emulation thread.
|
---|
275 | */
|
---|
276 | DECLCALLBACK(void) vmmdevUpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities)
|
---|
277 | {
|
---|
278 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
279 | AssertPtr(pDrv);
|
---|
280 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
281 |
|
---|
282 | /* store that information in IGuest */
|
---|
283 | Guest* pGuest = pConsole->i_getGuest();
|
---|
284 | AssertPtrReturnVoid(pGuest);
|
---|
285 |
|
---|
286 | /*
|
---|
287 | * Report our current capabilities (and assume none is active yet).
|
---|
288 | */
|
---|
289 | pGuest->i_setSupportedFeatures(newCapabilities);
|
---|
290 |
|
---|
291 | /*
|
---|
292 | * Tell the Display, so that it can update the "supports graphics"
|
---|
293 | * capability if the graphics card has not asserted it.
|
---|
294 | */
|
---|
295 | Display* pDisplay = pConsole->i_getDisplay();
|
---|
296 | AssertPtrReturnVoid(pDisplay);
|
---|
297 | pDisplay->i_handleUpdateVMMDevSupportsGraphics(RT_BOOL(newCapabilities & VMMDEV_GUEST_SUPPORTS_GRAPHICS));
|
---|
298 |
|
---|
299 | /*
|
---|
300 | * Tell the console interface about the event
|
---|
301 | * so that it can notify its consumers.
|
---|
302 | */
|
---|
303 | pConsole->i_onAdditionsStateChange();
|
---|
304 | }
|
---|
305 |
|
---|
306 | /**
|
---|
307 | * Update the mouse capabilities.
|
---|
308 | * This is called when the mouse capabilities change. The new capabilities
|
---|
309 | * are given and the connector should update its internal state.
|
---|
310 | *
|
---|
311 | * @param pInterface Pointer to this interface.
|
---|
312 | * @param fNewCaps New capabilities.
|
---|
313 | * @thread The emulation thread.
|
---|
314 | */
|
---|
315 | DECLCALLBACK(void) vmmdevUpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t fNewCaps)
|
---|
316 | {
|
---|
317 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
318 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
319 |
|
---|
320 | /*
|
---|
321 | * Tell the console interface about the event
|
---|
322 | * so that it can notify its consumers.
|
---|
323 | */
|
---|
324 | Mouse *pMouse = pConsole->i_getMouse();
|
---|
325 | if (pMouse) /** @todo and if not? Can that actually happen? */
|
---|
326 | pMouse->i_onVMMDevGuestCapsChange(fNewCaps & VMMDEV_MOUSE_GUEST_MASK);
|
---|
327 | }
|
---|
328 |
|
---|
329 | /**
|
---|
330 | * Update the pointer shape or visibility.
|
---|
331 | *
|
---|
332 | * This is called when the mouse pointer shape changes or pointer is hidden/displaying.
|
---|
333 | * The new shape is passed as a caller allocated buffer that will be freed after returning.
|
---|
334 | *
|
---|
335 | * @param pInterface Pointer to this interface.
|
---|
336 | * @param fVisible Whether the pointer is visible or not.
|
---|
337 | * @param fAlpha Alpha channel information is present.
|
---|
338 | * @param xHot Horizontal coordinate of the pointer hot spot.
|
---|
339 | * @param yHot Vertical coordinate of the pointer hot spot.
|
---|
340 | * @param width Pointer width in pixels.
|
---|
341 | * @param height Pointer height in pixels.
|
---|
342 | * @param pShape The shape buffer. If NULL, then only pointer visibility is being changed.
|
---|
343 | * @thread The emulation thread.
|
---|
344 | */
|
---|
345 | DECLCALLBACK(void) vmmdevUpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
|
---|
346 | uint32_t xHot, uint32_t yHot,
|
---|
347 | uint32_t width, uint32_t height,
|
---|
348 | void *pShape)
|
---|
349 | {
|
---|
350 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
351 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
352 |
|
---|
353 | /* tell the console about it */
|
---|
354 | uint32_t cbShape = 0;
|
---|
355 | if (pShape)
|
---|
356 | {
|
---|
357 | cbShape = (width + 7) / 8 * height; /* size of the AND mask */
|
---|
358 | cbShape = ((cbShape + 3) & ~3) + width * 4 * height; /* + gap + size of the XOR mask */
|
---|
359 | }
|
---|
360 | pConsole->i_onMousePointerShapeChange(fVisible, fAlpha, xHot, yHot, width, height, (uint8_t *)pShape, cbShape);
|
---|
361 | }
|
---|
362 |
|
---|
363 | DECLCALLBACK(int) iface_VideoAccelEnable(PPDMIVMMDEVCONNECTOR pInterface, bool fEnable, VBVAMEMORY *pVbvaMemory)
|
---|
364 | {
|
---|
365 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
366 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
367 |
|
---|
368 | Display *display = pConsole->i_getDisplay();
|
---|
369 |
|
---|
370 | if (display)
|
---|
371 | {
|
---|
372 | Log9(("MAIN::VMMDevInterface::iface_VideoAccelEnable: %d, %p\n", fEnable, pVbvaMemory));
|
---|
373 | return display->VideoAccelEnableVMMDev(fEnable, pVbvaMemory);
|
---|
374 | }
|
---|
375 |
|
---|
376 | return VERR_NOT_SUPPORTED;
|
---|
377 | }
|
---|
378 | DECLCALLBACK(void) iface_VideoAccelFlush(PPDMIVMMDEVCONNECTOR pInterface)
|
---|
379 | {
|
---|
380 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
381 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
382 |
|
---|
383 | Display *display = pConsole->i_getDisplay();
|
---|
384 |
|
---|
385 | if (display)
|
---|
386 | {
|
---|
387 | Log9(("MAIN::VMMDevInterface::iface_VideoAccelFlush\n"));
|
---|
388 | display->VideoAccelFlushVMMDev();
|
---|
389 | }
|
---|
390 | }
|
---|
391 |
|
---|
392 | DECLCALLBACK(int) vmmdevVideoModeSupported(PPDMIVMMDEVCONNECTOR pInterface, uint32_t display, uint32_t width, uint32_t height,
|
---|
393 | uint32_t bpp, bool *fSupported)
|
---|
394 | {
|
---|
395 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
396 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
397 |
|
---|
398 | if (!fSupported)
|
---|
399 | return VERR_INVALID_PARAMETER;
|
---|
400 | #ifdef DEBUG_sunlover
|
---|
401 | Log(("vmmdevVideoModeSupported: [%d]: %dx%dx%d\n", display, width, height, bpp));
|
---|
402 | #endif
|
---|
403 | IFramebuffer *framebuffer = NULL;
|
---|
404 | HRESULT hrc = pConsole->i_getDisplay()->QueryFramebuffer(display, &framebuffer);
|
---|
405 | if (SUCCEEDED(hrc) && framebuffer)
|
---|
406 | {
|
---|
407 | framebuffer->VideoModeSupported(width, height, bpp, (BOOL*)fSupported);
|
---|
408 | framebuffer->Release();
|
---|
409 | }
|
---|
410 | else
|
---|
411 | {
|
---|
412 | #ifdef DEBUG_sunlover
|
---|
413 | Log(("vmmdevVideoModeSupported: hrc %x, framebuffer %p!!!\n", hrc, framebuffer));
|
---|
414 | #endif
|
---|
415 | *fSupported = true;
|
---|
416 | }
|
---|
417 | return VINF_SUCCESS;
|
---|
418 | }
|
---|
419 |
|
---|
420 | DECLCALLBACK(int) vmmdevGetHeightReduction(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *heightReduction)
|
---|
421 | {
|
---|
422 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
423 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
424 |
|
---|
425 | if (!heightReduction)
|
---|
426 | return VERR_INVALID_PARAMETER;
|
---|
427 | IFramebuffer *framebuffer = NULL;
|
---|
428 | HRESULT hrc = pConsole->i_getDisplay()->QueryFramebuffer(0, &framebuffer);
|
---|
429 | if (SUCCEEDED(hrc) && framebuffer)
|
---|
430 | {
|
---|
431 | framebuffer->COMGETTER(HeightReduction)((ULONG*)heightReduction);
|
---|
432 | framebuffer->Release();
|
---|
433 | }
|
---|
434 | else
|
---|
435 | *heightReduction = 0;
|
---|
436 | return VINF_SUCCESS;
|
---|
437 | }
|
---|
438 |
|
---|
439 | DECLCALLBACK(int) vmmdevSetCredentialsJudgementResult(PPDMIVMMDEVCONNECTOR pInterface, uint32_t u32Flags)
|
---|
440 | {
|
---|
441 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
442 |
|
---|
443 | if (pDrv->pVMMDev)
|
---|
444 | return pDrv->pVMMDev->SetCredentialsJudgementResult(u32Flags);
|
---|
445 |
|
---|
446 | return VERR_GENERAL_FAILURE;
|
---|
447 | }
|
---|
448 |
|
---|
449 | DECLCALLBACK(int) vmmdevSetVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cRect, PRTRECT pRect)
|
---|
450 | {
|
---|
451 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
452 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
453 |
|
---|
454 | /* Forward to Display, which calls corresponding framebuffers. */
|
---|
455 | pConsole->i_getDisplay()->i_handleSetVisibleRegion(cRect, pRect);
|
---|
456 |
|
---|
457 | return VINF_SUCCESS;
|
---|
458 | }
|
---|
459 |
|
---|
460 | DECLCALLBACK(int) vmmdevQueryVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcRects, PRTRECT paRects)
|
---|
461 | {
|
---|
462 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
463 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
464 |
|
---|
465 | /* Forward to Display, which calls corresponding framebuffers. */
|
---|
466 | pConsole->i_getDisplay()->i_handleQueryVisibleRegion(pcRects, paRects);
|
---|
467 |
|
---|
468 | return VINF_SUCCESS;
|
---|
469 | }
|
---|
470 |
|
---|
471 | /**
|
---|
472 | * Request the statistics interval
|
---|
473 | *
|
---|
474 | * @returns VBox status code.
|
---|
475 | * @param pInterface Pointer to this interface.
|
---|
476 | * @param pulInterval Pointer to interval in seconds
|
---|
477 | * @thread The emulation thread.
|
---|
478 | */
|
---|
479 | DECLCALLBACK(int) vmmdevQueryStatisticsInterval(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pulInterval)
|
---|
480 | {
|
---|
481 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
482 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
483 | ULONG val = 0;
|
---|
484 |
|
---|
485 | if (!pulInterval)
|
---|
486 | return VERR_INVALID_POINTER;
|
---|
487 |
|
---|
488 | /* store that information in IGuest */
|
---|
489 | Guest* guest = pConsole->i_getGuest();
|
---|
490 | AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
|
---|
491 |
|
---|
492 | guest->COMGETTER(StatisticsUpdateInterval)(&val);
|
---|
493 | *pulInterval = val;
|
---|
494 | return VINF_SUCCESS;
|
---|
495 | }
|
---|
496 |
|
---|
497 | /**
|
---|
498 | * Query the current balloon size
|
---|
499 | *
|
---|
500 | * @returns VBox status code.
|
---|
501 | * @param pInterface Pointer to this interface.
|
---|
502 | * @param pcbBalloon Balloon size
|
---|
503 | * @thread The emulation thread.
|
---|
504 | */
|
---|
505 | DECLCALLBACK(int) vmmdevQueryBalloonSize(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcbBalloon)
|
---|
506 | {
|
---|
507 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
508 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
509 | ULONG val = 0;
|
---|
510 |
|
---|
511 | if (!pcbBalloon)
|
---|
512 | return VERR_INVALID_POINTER;
|
---|
513 |
|
---|
514 | /* store that information in IGuest */
|
---|
515 | Guest* guest = pConsole->i_getGuest();
|
---|
516 | AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
|
---|
517 |
|
---|
518 | guest->COMGETTER(MemoryBalloonSize)(&val);
|
---|
519 | *pcbBalloon = val;
|
---|
520 | return VINF_SUCCESS;
|
---|
521 | }
|
---|
522 |
|
---|
523 | /**
|
---|
524 | * Query the current page fusion setting
|
---|
525 | *
|
---|
526 | * @returns VBox status code.
|
---|
527 | * @param pInterface Pointer to this interface.
|
---|
528 | * @param pfPageFusionEnabled Pointer to boolean
|
---|
529 | * @thread The emulation thread.
|
---|
530 | */
|
---|
531 | DECLCALLBACK(int) vmmdevIsPageFusionEnabled(PPDMIVMMDEVCONNECTOR pInterface, bool *pfPageFusionEnabled)
|
---|
532 | {
|
---|
533 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
534 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
535 |
|
---|
536 | if (!pfPageFusionEnabled)
|
---|
537 | return VERR_INVALID_POINTER;
|
---|
538 |
|
---|
539 | /* store that information in IGuest */
|
---|
540 | Guest* guest = pConsole->i_getGuest();
|
---|
541 | AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
|
---|
542 |
|
---|
543 | *pfPageFusionEnabled = !!guest->i_isPageFusionEnabled();
|
---|
544 | return VINF_SUCCESS;
|
---|
545 | }
|
---|
546 |
|
---|
547 | /**
|
---|
548 | * Report new guest statistics
|
---|
549 | *
|
---|
550 | * @returns VBox status code.
|
---|
551 | * @param pInterface Pointer to this interface.
|
---|
552 | * @param pGuestStats Guest statistics
|
---|
553 | * @thread The emulation thread.
|
---|
554 | */
|
---|
555 | DECLCALLBACK(int) vmmdevReportStatistics(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestStatistics *pGuestStats)
|
---|
556 | {
|
---|
557 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
|
---|
558 | Console *pConsole = pDrv->pVMMDev->getParent();
|
---|
559 |
|
---|
560 | AssertPtrReturn(pGuestStats, VERR_INVALID_POINTER);
|
---|
561 |
|
---|
562 | /* store that information in IGuest */
|
---|
563 | Guest* guest = pConsole->i_getGuest();
|
---|
564 | AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
|
---|
565 |
|
---|
566 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_IDLE)
|
---|
567 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_CPUIDLE, pGuestStats->u32CpuLoad_Idle);
|
---|
568 |
|
---|
569 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_KERNEL)
|
---|
570 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_CPUKERNEL, pGuestStats->u32CpuLoad_Kernel);
|
---|
571 |
|
---|
572 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_USER)
|
---|
573 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_CPUUSER, pGuestStats->u32CpuLoad_User);
|
---|
574 |
|
---|
575 |
|
---|
576 | /** @todo r=bird: Convert from 4KB to 1KB units?
|
---|
577 | * CollectorGuestHAL::i_getGuestMemLoad says it returns KB units to
|
---|
578 | * preCollect(). I might be wrong ofc, this is convoluted code... */
|
---|
579 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_TOTAL)
|
---|
580 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMTOTAL, pGuestStats->u32PhysMemTotal);
|
---|
581 |
|
---|
582 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_AVAIL)
|
---|
583 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMFREE, pGuestStats->u32PhysMemAvail);
|
---|
584 |
|
---|
585 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_BALLOON)
|
---|
586 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMBALLOON, pGuestStats->u32PhysMemBalloon);
|
---|
587 |
|
---|
588 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEM_SYSTEM_CACHE)
|
---|
589 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMCACHE, pGuestStats->u32MemSystemCache);
|
---|
590 |
|
---|
591 | if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PAGE_FILE_SIZE)
|
---|
592 | guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_PAGETOTAL, pGuestStats->u32PageFileSize);
|
---|
593 |
|
---|
594 | return VINF_SUCCESS;
|
---|
595 | }
|
---|
596 |
|
---|
597 | #ifdef VBOX_WITH_HGCM
|
---|
598 |
|
---|
599 | /* HGCM connector interface */
|
---|
600 |
|
---|
601 | static DECLCALLBACK(int) iface_hgcmConnect(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd,
|
---|
602 | PHGCMSERVICELOCATION pServiceLocation,
|
---|
603 | uint32_t *pu32ClientID)
|
---|
604 | {
|
---|
605 | Log9(("Enter\n"));
|
---|
606 |
|
---|
607 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, HGCMConnector);
|
---|
608 |
|
---|
609 | if ( !pServiceLocation
|
---|
610 | || ( pServiceLocation->type != VMMDevHGCMLoc_LocalHost
|
---|
611 | && pServiceLocation->type != VMMDevHGCMLoc_LocalHost_Existing))
|
---|
612 | {
|
---|
613 | return VERR_INVALID_PARAMETER;
|
---|
614 | }
|
---|
615 |
|
---|
616 | /* Check if service name is a string terminated by zero*/
|
---|
617 | size_t cchInfo = 0;
|
---|
618 | if (RTStrNLenEx(pServiceLocation->u.host.achName, sizeof(pServiceLocation->u.host.achName), &cchInfo) != VINF_SUCCESS)
|
---|
619 | {
|
---|
620 | return VERR_INVALID_PARAMETER;
|
---|
621 | }
|
---|
622 |
|
---|
623 | if (!pDrv->pVMMDev || !pDrv->pVMMDev->hgcmIsActive())
|
---|
624 | return VERR_INVALID_STATE;
|
---|
625 | return HGCMGuestConnect(pDrv->pHGCMPort, pCmd, pServiceLocation->u.host.achName, pu32ClientID);
|
---|
626 | }
|
---|
627 |
|
---|
628 | static DECLCALLBACK(int) iface_hgcmDisconnect(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID)
|
---|
629 | {
|
---|
630 | Log9(("Enter\n"));
|
---|
631 |
|
---|
632 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, HGCMConnector);
|
---|
633 |
|
---|
634 | if (!pDrv->pVMMDev || !pDrv->pVMMDev->hgcmIsActive())
|
---|
635 | return VERR_INVALID_STATE;
|
---|
636 |
|
---|
637 | return HGCMGuestDisconnect(pDrv->pHGCMPort, pCmd, u32ClientID);
|
---|
638 | }
|
---|
639 |
|
---|
640 | static DECLCALLBACK(int) iface_hgcmCall(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID,
|
---|
641 | uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms, uint64_t tsArrival)
|
---|
642 | {
|
---|
643 | Log9(("Enter\n"));
|
---|
644 |
|
---|
645 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, HGCMConnector);
|
---|
646 |
|
---|
647 | if (!pDrv->pVMMDev || !pDrv->pVMMDev->hgcmIsActive())
|
---|
648 | return VERR_INVALID_STATE;
|
---|
649 |
|
---|
650 | return HGCMGuestCall(pDrv->pHGCMPort, pCmd, u32ClientID, u32Function, cParms, paParms, tsArrival);
|
---|
651 | }
|
---|
652 |
|
---|
653 | static DECLCALLBACK(void) iface_hgcmCancelled(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t idClient)
|
---|
654 | {
|
---|
655 | Log9(("Enter\n"));
|
---|
656 |
|
---|
657 | PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, HGCMConnector);
|
---|
658 | if ( pDrv->pVMMDev
|
---|
659 | && pDrv->pVMMDev->hgcmIsActive())
|
---|
660 | return HGCMGuestCancelled(pDrv->pHGCMPort, pCmd, idClient);
|
---|
661 | }
|
---|
662 |
|
---|
663 | /**
|
---|
664 | * Execute state save operation.
|
---|
665 | *
|
---|
666 | * @returns VBox status code.
|
---|
667 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
668 | * @param pSSM SSM operation handle.
|
---|
669 | */
|
---|
670 | static DECLCALLBACK(int) iface_hgcmSave(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM)
|
---|
671 | {
|
---|
672 | RT_NOREF(pDrvIns);
|
---|
673 | Log9(("Enter\n"));
|
---|
674 | return HGCMHostSaveState(pSSM);
|
---|
675 | }
|
---|
676 |
|
---|
677 |
|
---|
678 | /**
|
---|
679 | * Execute state load operation.
|
---|
680 | *
|
---|
681 | * @returns VBox status code.
|
---|
682 | * @param pDrvIns Driver instance of the driver which registered the data unit.
|
---|
683 | * @param pSSM SSM operation handle.
|
---|
684 | * @param uVersion Data layout version.
|
---|
685 | * @param uPass The data pass.
|
---|
686 | */
|
---|
687 | static DECLCALLBACK(int) iface_hgcmLoad(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
|
---|
688 | {
|
---|
689 | RT_NOREF(pDrvIns);
|
---|
690 | LogFlowFunc(("Enter\n"));
|
---|
691 |
|
---|
692 | if ( uVersion != HGCM_SAVED_STATE_VERSION
|
---|
693 | && uVersion != HGCM_SAVED_STATE_VERSION_V2)
|
---|
694 | return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
|
---|
695 | Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
|
---|
696 |
|
---|
697 | return HGCMHostLoadState(pSSM, uVersion);
|
---|
698 | }
|
---|
699 |
|
---|
700 | int VMMDev::hgcmLoadService(const char *pszServiceLibrary, const char *pszServiceName)
|
---|
701 | {
|
---|
702 | if (!hgcmIsActive())
|
---|
703 | return VERR_INVALID_STATE;
|
---|
704 |
|
---|
705 | /** @todo Construct all the services in the VMMDev::drvConstruct()!! */
|
---|
706 | Assert( (mpDrv && mpDrv->pHGCMPort)
|
---|
707 | || !strcmp(pszServiceLibrary, "VBoxHostChannel")
|
---|
708 | || !strcmp(pszServiceLibrary, "VBoxSharedClipboard")
|
---|
709 | || !strcmp(pszServiceLibrary, "VBoxDragAndDropSvc")
|
---|
710 | || !strcmp(pszServiceLibrary, "VBoxGuestPropSvc")
|
---|
711 | || !strcmp(pszServiceLibrary, "VBoxSharedCrOpenGL")
|
---|
712 | );
|
---|
713 | Console::SafeVMPtrQuiet ptrVM(mParent);
|
---|
714 | return HGCMHostLoad(pszServiceLibrary, pszServiceName, ptrVM.rawUVM(), mpDrv ? mpDrv->pHGCMPort : NULL);
|
---|
715 | }
|
---|
716 |
|
---|
717 | int VMMDev::hgcmHostCall(const char *pszServiceName, uint32_t u32Function,
|
---|
718 | uint32_t cParms, PVBOXHGCMSVCPARM paParms)
|
---|
719 | {
|
---|
720 | if (!hgcmIsActive())
|
---|
721 | return VERR_INVALID_STATE;
|
---|
722 | return HGCMHostCall(pszServiceName, u32Function, cParms, paParms);
|
---|
723 | }
|
---|
724 |
|
---|
725 | /**
|
---|
726 | * Used by Console::i_powerDown to shut down the services before the VM is destroyed.
|
---|
727 | */
|
---|
728 | void VMMDev::hgcmShutdown(bool fUvmIsInvalid /*= false*/)
|
---|
729 | {
|
---|
730 | if (ASMAtomicCmpXchgBool(&m_fHGCMActive, false, true))
|
---|
731 | HGCMHostShutdown(fUvmIsInvalid);
|
---|
732 | }
|
---|
733 |
|
---|
734 | # ifdef VBOX_WITH_CRHGSMI
|
---|
735 | int VMMDev::hgcmHostSvcHandleCreate(const char *pszServiceName, HGCMCVSHANDLE * phSvc)
|
---|
736 | {
|
---|
737 | if (!hgcmIsActive())
|
---|
738 | return VERR_INVALID_STATE;
|
---|
739 | return HGCMHostSvcHandleCreate(pszServiceName, phSvc);
|
---|
740 | }
|
---|
741 |
|
---|
742 | int VMMDev::hgcmHostSvcHandleDestroy(HGCMCVSHANDLE hSvc)
|
---|
743 | {
|
---|
744 | if (!hgcmIsActive())
|
---|
745 | return VERR_INVALID_STATE;
|
---|
746 | return HGCMHostSvcHandleDestroy(hSvc);
|
---|
747 | }
|
---|
748 |
|
---|
749 | int VMMDev::hgcmHostFastCallAsync(HGCMCVSHANDLE hSvc, uint32_t function, PVBOXHGCMSVCPARM pParm,
|
---|
750 | PHGCMHOSTFASTCALLCB pfnCompletion, void *pvCompletion)
|
---|
751 | {
|
---|
752 | if (!hgcmIsActive())
|
---|
753 | return VERR_INVALID_STATE;
|
---|
754 | return HGCMHostFastCallAsync(hSvc, function, pParm, pfnCompletion, pvCompletion);
|
---|
755 | }
|
---|
756 | # endif
|
---|
757 |
|
---|
758 | #endif /* HGCM */
|
---|
759 |
|
---|
760 |
|
---|
761 | /**
|
---|
762 | * @interface_method_impl{PDMIBASE,pfnQueryInterface}
|
---|
763 | */
|
---|
764 | DECLCALLBACK(void *) VMMDev::drvQueryInterface(PPDMIBASE pInterface, const char *pszIID)
|
---|
765 | {
|
---|
766 | PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
|
---|
767 | PDRVMAINVMMDEV pDrv = PDMINS_2_DATA(pDrvIns, PDRVMAINVMMDEV);
|
---|
768 |
|
---|
769 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
|
---|
770 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMIVMMDEVCONNECTOR, &pDrv->Connector);
|
---|
771 | #ifdef VBOX_WITH_HGCM
|
---|
772 | PDMIBASE_RETURN_INTERFACE(pszIID, PDMIHGCMCONNECTOR, &pDrv->HGCMConnector);
|
---|
773 | #endif
|
---|
774 | return NULL;
|
---|
775 | }
|
---|
776 |
|
---|
777 | /**
|
---|
778 | * @interface_method_impl{PDMDRVREG,pfnSuspend}
|
---|
779 | */
|
---|
780 | /*static*/ DECLCALLBACK(void) VMMDev::drvSuspend(PPDMDRVINS pDrvIns)
|
---|
781 | {
|
---|
782 | RT_NOREF(pDrvIns);
|
---|
783 | #ifdef VBOX_WITH_HGCM
|
---|
784 | HGCMBroadcastEvent(HGCMNOTIFYEVENT_SUSPEND);
|
---|
785 | #endif
|
---|
786 | }
|
---|
787 |
|
---|
788 | /**
|
---|
789 | * @interface_method_impl{PDMDRVREG,pfnResume}
|
---|
790 | */
|
---|
791 | /*static*/ DECLCALLBACK(void) VMMDev::drvResume(PPDMDRVINS pDrvIns)
|
---|
792 | {
|
---|
793 | RT_NOREF(pDrvIns);
|
---|
794 | #ifdef VBOX_WITH_HGCM
|
---|
795 | HGCMBroadcastEvent(HGCMNOTIFYEVENT_RESUME);
|
---|
796 | #endif
|
---|
797 | }
|
---|
798 |
|
---|
799 | /**
|
---|
800 | * @interface_method_impl{PDMDRVREG,pfnPowerOff}
|
---|
801 | */
|
---|
802 | /*static*/ DECLCALLBACK(void) VMMDev::drvPowerOff(PPDMDRVINS pDrvIns)
|
---|
803 | {
|
---|
804 | RT_NOREF(pDrvIns);
|
---|
805 | #ifdef VBOX_WITH_HGCM
|
---|
806 | HGCMBroadcastEvent(HGCMNOTIFYEVENT_POWER_ON);
|
---|
807 | #endif
|
---|
808 | }
|
---|
809 |
|
---|
810 | /**
|
---|
811 | * @interface_method_impl{PDMDRVREG,pfnPowerOn}
|
---|
812 | */
|
---|
813 | /*static*/ DECLCALLBACK(void) VMMDev::drvPowerOn(PPDMDRVINS pDrvIns)
|
---|
814 | {
|
---|
815 | RT_NOREF(pDrvIns);
|
---|
816 | #ifdef VBOX_WITH_HGCM
|
---|
817 | HGCMBroadcastEvent(HGCMNOTIFYEVENT_POWER_ON);
|
---|
818 | #endif
|
---|
819 | }
|
---|
820 |
|
---|
821 | /**
|
---|
822 | * @interface_method_impl{PDMDRVREG,pfnReset}
|
---|
823 | */
|
---|
824 | DECLCALLBACK(void) VMMDev::drvReset(PPDMDRVINS pDrvIns)
|
---|
825 | {
|
---|
826 | RT_NOREF(pDrvIns);
|
---|
827 | LogFlow(("VMMDev::drvReset: iInstance=%d\n", pDrvIns->iInstance));
|
---|
828 | #ifdef VBOX_WITH_HGCM
|
---|
829 | HGCMHostReset(false /*fForShutdown*/);
|
---|
830 | #endif
|
---|
831 | }
|
---|
832 |
|
---|
833 | /**
|
---|
834 | * @interface_method_impl{PDMDRVREG,pfnDestruct}
|
---|
835 | */
|
---|
836 | DECLCALLBACK(void) VMMDev::drvDestruct(PPDMDRVINS pDrvIns)
|
---|
837 | {
|
---|
838 | PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
|
---|
839 | PDRVMAINVMMDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINVMMDEV);
|
---|
840 | LogFlow(("VMMDev::drvDestruct: iInstance=%d\n", pDrvIns->iInstance));
|
---|
841 |
|
---|
842 | if (pThis->pVMMDev)
|
---|
843 | {
|
---|
844 | #ifdef VBOX_WITH_HGCM
|
---|
845 | /* When VM construction goes wrong, we prefer shutting down HGCM here
|
---|
846 | while pUVM is still valid, rather than in ~VMMDev. */
|
---|
847 | if (ASMAtomicCmpXchgBool(&pThis->pVMMDev->m_fHGCMActive, false, true))
|
---|
848 | HGCMHostShutdown();
|
---|
849 | #endif
|
---|
850 | pThis->pVMMDev->mpDrv = NULL;
|
---|
851 | }
|
---|
852 | }
|
---|
853 |
|
---|
854 | #ifdef VBOX_WITH_GUEST_PROPS
|
---|
855 |
|
---|
856 | /**
|
---|
857 | * Set an array of guest properties
|
---|
858 | */
|
---|
859 | void VMMDev::i_guestPropSetMultiple(void *names, void *values, void *timestamps, void *flags)
|
---|
860 | {
|
---|
861 | VBOXHGCMSVCPARM parms[4];
|
---|
862 |
|
---|
863 | parms[0].type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
864 | parms[0].u.pointer.addr = names;
|
---|
865 | parms[0].u.pointer.size = 0; /* We don't actually care. */
|
---|
866 | parms[1].type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
867 | parms[1].u.pointer.addr = values;
|
---|
868 | parms[1].u.pointer.size = 0; /* We don't actually care. */
|
---|
869 | parms[2].type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
870 | parms[2].u.pointer.addr = timestamps;
|
---|
871 | parms[2].u.pointer.size = 0; /* We don't actually care. */
|
---|
872 | parms[3].type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
873 | parms[3].u.pointer.addr = flags;
|
---|
874 | parms[3].u.pointer.size = 0; /* We don't actually care. */
|
---|
875 |
|
---|
876 | hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_SET_PROPS, 4, &parms[0]);
|
---|
877 | }
|
---|
878 |
|
---|
879 | /**
|
---|
880 | * Set a single guest property
|
---|
881 | */
|
---|
882 | void VMMDev::i_guestPropSet(const char *pszName, const char *pszValue, const char *pszFlags)
|
---|
883 | {
|
---|
884 | VBOXHGCMSVCPARM parms[4];
|
---|
885 |
|
---|
886 | AssertPtrReturnVoid(pszName);
|
---|
887 | AssertPtrReturnVoid(pszValue);
|
---|
888 | AssertPtrReturnVoid(pszFlags);
|
---|
889 | parms[0].type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
890 | parms[0].u.pointer.addr = (void *)pszName;
|
---|
891 | parms[0].u.pointer.size = (uint32_t)strlen(pszName) + 1;
|
---|
892 | parms[1].type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
893 | parms[1].u.pointer.addr = (void *)pszValue;
|
---|
894 | parms[1].u.pointer.size = (uint32_t)strlen(pszValue) + 1;
|
---|
895 | parms[2].type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
896 | parms[2].u.pointer.addr = (void *)pszFlags;
|
---|
897 | parms[2].u.pointer.size = (uint32_t)strlen(pszFlags) + 1;
|
---|
898 | hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_SET_PROP, 3, &parms[0]);
|
---|
899 | }
|
---|
900 |
|
---|
901 | /**
|
---|
902 | * Set the global flags value by calling the service
|
---|
903 | * @returns the status returned by the call to the service
|
---|
904 | *
|
---|
905 | * @param pTable the service instance handle
|
---|
906 | * @param eFlags the flags to set
|
---|
907 | */
|
---|
908 | int VMMDev::i_guestPropSetGlobalPropertyFlags(uint32_t fFlags)
|
---|
909 | {
|
---|
910 | VBOXHGCMSVCPARM parm;
|
---|
911 | HGCMSvcSetU32(&parm, fFlags);
|
---|
912 | int rc = hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_SET_GLOBAL_FLAGS, 1, &parm);
|
---|
913 | if (RT_FAILURE(rc))
|
---|
914 | {
|
---|
915 | char szFlags[GUEST_PROP_MAX_FLAGS_LEN];
|
---|
916 | if (RT_FAILURE(GuestPropWriteFlags(fFlags, szFlags)))
|
---|
917 | Log(("Failed to set the global flags.\n"));
|
---|
918 | else
|
---|
919 | Log(("Failed to set the global flags \"%s\".\n", szFlags));
|
---|
920 | }
|
---|
921 | return rc;
|
---|
922 | }
|
---|
923 |
|
---|
924 |
|
---|
925 | /**
|
---|
926 | * Set up the Guest Property service, populate it with properties read from
|
---|
927 | * the machine XML and set a couple of initial properties.
|
---|
928 | */
|
---|
929 | int VMMDev::i_guestPropLoadAndConfigure()
|
---|
930 | {
|
---|
931 | Assert(mpDrv);
|
---|
932 | ComObjPtr<Console> ptrConsole = this->mParent;
|
---|
933 | AssertReturn(ptrConsole.isNotNull(), VERR_INVALID_POINTER);
|
---|
934 |
|
---|
935 | /*
|
---|
936 | * Load the service
|
---|
937 | */
|
---|
938 | int rc = hgcmLoadService("VBoxGuestPropSvc", "VBoxGuestPropSvc");
|
---|
939 | if (RT_FAILURE(rc))
|
---|
940 | {
|
---|
941 | LogRel(("VBoxGuestPropSvc is not available. rc = %Rrc\n", rc));
|
---|
942 | return VINF_SUCCESS; /* That is not a fatal failure. */
|
---|
943 | }
|
---|
944 |
|
---|
945 | /*
|
---|
946 | * Pull over the properties from the server.
|
---|
947 | */
|
---|
948 | SafeArray<BSTR> namesOut;
|
---|
949 | SafeArray<BSTR> valuesOut;
|
---|
950 | SafeArray<LONG64> timestampsOut;
|
---|
951 | SafeArray<BSTR> flagsOut;
|
---|
952 | HRESULT hrc = ptrConsole->i_pullGuestProperties(ComSafeArrayAsOutParam(namesOut),
|
---|
953 | ComSafeArrayAsOutParam(valuesOut),
|
---|
954 | ComSafeArrayAsOutParam(timestampsOut),
|
---|
955 | ComSafeArrayAsOutParam(flagsOut));
|
---|
956 | AssertLogRelMsgReturn(SUCCEEDED(hrc), ("hrc=%Rhrc\n", hrc), VERR_MAIN_CONFIG_CONSTRUCTOR_COM_ERROR);
|
---|
957 | size_t const cProps = namesOut.size();
|
---|
958 | size_t const cAlloc = cProps + 1;
|
---|
959 | AssertLogRelReturn(valuesOut.size() == cProps, VERR_INTERNAL_ERROR_2);
|
---|
960 | AssertLogRelReturn(timestampsOut.size() == cProps, VERR_INTERNAL_ERROR_3);
|
---|
961 | AssertLogRelReturn(flagsOut.size() == cProps, VERR_INTERNAL_ERROR_4);
|
---|
962 |
|
---|
963 | char szEmpty[] = "";
|
---|
964 | char **papszNames = (char **)RTMemTmpAllocZ(sizeof(char *) * cAlloc);
|
---|
965 | char **papszValues = (char **)RTMemTmpAllocZ(sizeof(char *) * cAlloc);
|
---|
966 | LONG64 *pai64Timestamps = (LONG64 *)RTMemTmpAllocZ(sizeof(LONG64) * cAlloc);
|
---|
967 | char **papszFlags = (char **)RTMemTmpAllocZ(sizeof(char *) * cAlloc);
|
---|
968 | if (papszNames && papszValues && pai64Timestamps && papszFlags)
|
---|
969 | {
|
---|
970 | for (unsigned i = 0; RT_SUCCESS(rc) && i < cProps; ++i)
|
---|
971 | {
|
---|
972 | AssertPtrBreakStmt(namesOut[i], rc = VERR_INVALID_PARAMETER);
|
---|
973 | rc = RTUtf16ToUtf8(namesOut[i], &papszNames[i]);
|
---|
974 | if (RT_FAILURE(rc))
|
---|
975 | break;
|
---|
976 | if (valuesOut[i])
|
---|
977 | rc = RTUtf16ToUtf8(valuesOut[i], &papszValues[i]);
|
---|
978 | else
|
---|
979 | papszValues[i] = szEmpty;
|
---|
980 | if (RT_FAILURE(rc))
|
---|
981 | break;
|
---|
982 | pai64Timestamps[i] = timestampsOut[i];
|
---|
983 | if (flagsOut[i])
|
---|
984 | rc = RTUtf16ToUtf8(flagsOut[i], &papszFlags[i]);
|
---|
985 | else
|
---|
986 | papszFlags[i] = szEmpty;
|
---|
987 | }
|
---|
988 | if (RT_SUCCESS(rc))
|
---|
989 | i_guestPropSetMultiple((void *)papszNames, (void *)papszValues, (void *)pai64Timestamps, (void *)papszFlags);
|
---|
990 | for (unsigned i = 0; i < cProps; ++i)
|
---|
991 | {
|
---|
992 | RTStrFree(papszNames[i]);
|
---|
993 | if (valuesOut[i])
|
---|
994 | RTStrFree(papszValues[i]);
|
---|
995 | if (flagsOut[i])
|
---|
996 | RTStrFree(papszFlags[i]);
|
---|
997 | }
|
---|
998 | }
|
---|
999 | else
|
---|
1000 | rc = VERR_NO_MEMORY;
|
---|
1001 | RTMemTmpFree(papszNames);
|
---|
1002 | RTMemTmpFree(papszValues);
|
---|
1003 | RTMemTmpFree(pai64Timestamps);
|
---|
1004 | RTMemTmpFree(papszFlags);
|
---|
1005 | AssertRCReturn(rc, rc);
|
---|
1006 |
|
---|
1007 | /*
|
---|
1008 | * Register the host notification callback
|
---|
1009 | */
|
---|
1010 | HGCMSVCEXTHANDLE hDummy;
|
---|
1011 | HGCMHostRegisterServiceExtension(&hDummy, "VBoxGuestPropSvc", Console::i_doGuestPropNotification, ptrConsole.m_p);
|
---|
1012 |
|
---|
1013 | # ifdef VBOX_WITH_GUEST_PROPS_RDONLY_GUEST
|
---|
1014 | rc = i_guestPropSetGlobalPropertyFlags(GUEST_PROP_F_RDONLYGUEST);
|
---|
1015 | AssertRCReturn(rc, rc);
|
---|
1016 | # endif
|
---|
1017 |
|
---|
1018 | Log(("Set VBoxGuestPropSvc property store\n"));
|
---|
1019 | return VINF_SUCCESS;
|
---|
1020 | }
|
---|
1021 |
|
---|
1022 | #endif /* VBOX_WITH_GUEST_PROPS */
|
---|
1023 |
|
---|
1024 | /**
|
---|
1025 | * @interface_method_impl{PDMDRVREG,pfnConstruct}
|
---|
1026 | */
|
---|
1027 | DECLCALLBACK(int) VMMDev::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags)
|
---|
1028 | {
|
---|
1029 | RT_NOREF(fFlags);
|
---|
1030 | PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
|
---|
1031 | PDRVMAINVMMDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINVMMDEV);
|
---|
1032 | LogFlow(("Keyboard::drvConstruct: iInstance=%d\n", pDrvIns->iInstance));
|
---|
1033 |
|
---|
1034 | /*
|
---|
1035 | * Validate configuration.
|
---|
1036 | */
|
---|
1037 | if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
|
---|
1038 | return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
|
---|
1039 | AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
|
---|
1040 | ("Configuration error: Not possible to attach anything to this driver!\n"),
|
---|
1041 | VERR_PDM_DRVINS_NO_ATTACH);
|
---|
1042 |
|
---|
1043 | /*
|
---|
1044 | * IBase.
|
---|
1045 | */
|
---|
1046 | pDrvIns->IBase.pfnQueryInterface = VMMDev::drvQueryInterface;
|
---|
1047 |
|
---|
1048 | pThis->Connector.pfnUpdateGuestStatus = vmmdevUpdateGuestStatus;
|
---|
1049 | pThis->Connector.pfnUpdateGuestUserState = vmmdevUpdateGuestUserState;
|
---|
1050 | pThis->Connector.pfnUpdateGuestInfo = vmmdevUpdateGuestInfo;
|
---|
1051 | pThis->Connector.pfnUpdateGuestInfo2 = vmmdevUpdateGuestInfo2;
|
---|
1052 | pThis->Connector.pfnUpdateGuestCapabilities = vmmdevUpdateGuestCapabilities;
|
---|
1053 | pThis->Connector.pfnUpdateMouseCapabilities = vmmdevUpdateMouseCapabilities;
|
---|
1054 | pThis->Connector.pfnUpdatePointerShape = vmmdevUpdatePointerShape;
|
---|
1055 | pThis->Connector.pfnVideoAccelEnable = iface_VideoAccelEnable;
|
---|
1056 | pThis->Connector.pfnVideoAccelFlush = iface_VideoAccelFlush;
|
---|
1057 | pThis->Connector.pfnVideoModeSupported = vmmdevVideoModeSupported;
|
---|
1058 | pThis->Connector.pfnGetHeightReduction = vmmdevGetHeightReduction;
|
---|
1059 | pThis->Connector.pfnSetCredentialsJudgementResult = vmmdevSetCredentialsJudgementResult;
|
---|
1060 | pThis->Connector.pfnSetVisibleRegion = vmmdevSetVisibleRegion;
|
---|
1061 | pThis->Connector.pfnQueryVisibleRegion = vmmdevQueryVisibleRegion;
|
---|
1062 | pThis->Connector.pfnReportStatistics = vmmdevReportStatistics;
|
---|
1063 | pThis->Connector.pfnQueryStatisticsInterval = vmmdevQueryStatisticsInterval;
|
---|
1064 | pThis->Connector.pfnQueryBalloonSize = vmmdevQueryBalloonSize;
|
---|
1065 | pThis->Connector.pfnIsPageFusionEnabled = vmmdevIsPageFusionEnabled;
|
---|
1066 |
|
---|
1067 | #ifdef VBOX_WITH_HGCM
|
---|
1068 | pThis->HGCMConnector.pfnConnect = iface_hgcmConnect;
|
---|
1069 | pThis->HGCMConnector.pfnDisconnect = iface_hgcmDisconnect;
|
---|
1070 | pThis->HGCMConnector.pfnCall = iface_hgcmCall;
|
---|
1071 | pThis->HGCMConnector.pfnCancelled = iface_hgcmCancelled;
|
---|
1072 | #endif
|
---|
1073 |
|
---|
1074 | /*
|
---|
1075 | * Get the IVMMDevPort interface of the above driver/device.
|
---|
1076 | */
|
---|
1077 | pThis->pUpPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIVMMDEVPORT);
|
---|
1078 | AssertMsgReturn(pThis->pUpPort, ("Configuration error: No VMMDev port interface above!\n"), VERR_PDM_MISSING_INTERFACE_ABOVE);
|
---|
1079 |
|
---|
1080 | #ifdef VBOX_WITH_HGCM
|
---|
1081 | pThis->pHGCMPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIHGCMPORT);
|
---|
1082 | AssertMsgReturn(pThis->pHGCMPort, ("Configuration error: No HGCM port interface above!\n"), VERR_PDM_MISSING_INTERFACE_ABOVE);
|
---|
1083 | #endif
|
---|
1084 |
|
---|
1085 | /*
|
---|
1086 | * Get the Console object pointer and update the mpDrv member.
|
---|
1087 | */
|
---|
1088 | void *pv;
|
---|
1089 | int rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
|
---|
1090 | if (RT_FAILURE(rc))
|
---|
1091 | {
|
---|
1092 | AssertMsgFailed(("Configuration error: No/bad \"Object\" value! rc=%Rrc\n", rc));
|
---|
1093 | return rc;
|
---|
1094 | }
|
---|
1095 |
|
---|
1096 | pThis->pVMMDev = (VMMDev*)pv; /** @todo Check this cast! */
|
---|
1097 | pThis->pVMMDev->mpDrv = pThis;
|
---|
1098 |
|
---|
1099 | #ifdef VBOX_WITH_HGCM
|
---|
1100 | /*
|
---|
1101 | * Load & configure the shared folders service.
|
---|
1102 | */
|
---|
1103 | rc = pThis->pVMMDev->hgcmLoadService(VBOXSHAREDFOLDERS_DLL, "VBoxSharedFolders");
|
---|
1104 | pThis->pVMMDev->fSharedFolderActive = RT_SUCCESS(rc);
|
---|
1105 | if (RT_SUCCESS(rc))
|
---|
1106 | {
|
---|
1107 | PPDMLED pLed;
|
---|
1108 | PPDMILEDPORTS pLedPort;
|
---|
1109 |
|
---|
1110 | LogRel(("Shared Folders service loaded\n"));
|
---|
1111 | pLedPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMILEDPORTS);
|
---|
1112 | AssertMsgReturn(pLedPort, ("Configuration error: No LED port interface above!\n"), VERR_PDM_MISSING_INTERFACE_ABOVE);
|
---|
1113 | rc = pLedPort->pfnQueryStatusLed(pLedPort, 0, &pLed);
|
---|
1114 | if (RT_SUCCESS(rc) && pLed)
|
---|
1115 | {
|
---|
1116 | VBOXHGCMSVCPARM parm;
|
---|
1117 |
|
---|
1118 | parm.type = VBOX_HGCM_SVC_PARM_PTR;
|
---|
1119 | parm.u.pointer.addr = pLed;
|
---|
1120 | parm.u.pointer.size = sizeof(*pLed);
|
---|
1121 |
|
---|
1122 | rc = HGCMHostCall("VBoxSharedFolders", SHFL_FN_SET_STATUS_LED, 1, &parm);
|
---|
1123 | }
|
---|
1124 | else
|
---|
1125 | AssertMsgFailed(("pfnQueryStatusLed failed with %Rrc (pLed=%x)\n", rc, pLed));
|
---|
1126 | }
|
---|
1127 | else
|
---|
1128 | LogRel(("Failed to load Shared Folders service %Rrc\n", rc));
|
---|
1129 |
|
---|
1130 |
|
---|
1131 | /*
|
---|
1132 | * Load and configure the guest control service.
|
---|
1133 | */
|
---|
1134 | # ifdef VBOX_WITH_GUEST_CONTROL
|
---|
1135 | rc = pThis->pVMMDev->hgcmLoadService("VBoxGuestControlSvc", "VBoxGuestControlSvc");
|
---|
1136 | if (RT_SUCCESS(rc))
|
---|
1137 | {
|
---|
1138 | HGCMSVCEXTHANDLE hDummy;
|
---|
1139 | rc = HGCMHostRegisterServiceExtension(&hDummy, "VBoxGuestControlSvc",
|
---|
1140 | &Guest::i_notifyCtrlDispatcher,
|
---|
1141 | pThis->pVMMDev->mParent->i_getGuest());
|
---|
1142 | if (RT_SUCCESS(rc))
|
---|
1143 | LogRel(("Guest Control service loaded\n"));
|
---|
1144 | else
|
---|
1145 | LogRel(("Warning: Cannot register VBoxGuestControlSvc extension! rc=%Rrc\n", rc));
|
---|
1146 | }
|
---|
1147 | else
|
---|
1148 | LogRel(("Warning!: Failed to load the Guest Control Service! %Rrc\n", rc));
|
---|
1149 | # endif /* VBOX_WITH_GUEST_CONTROL */
|
---|
1150 |
|
---|
1151 |
|
---|
1152 | /*
|
---|
1153 | * Load and configure the guest properties service.
|
---|
1154 | */
|
---|
1155 | # ifdef VBOX_WITH_GUEST_PROPS
|
---|
1156 | rc = pThis->pVMMDev->i_guestPropLoadAndConfigure();
|
---|
1157 | AssertLogRelRCReturn(rc, rc);
|
---|
1158 | # endif
|
---|
1159 |
|
---|
1160 |
|
---|
1161 | /*
|
---|
1162 | * The HGCM saved state.
|
---|
1163 | */
|
---|
1164 | rc = PDMDrvHlpSSMRegisterEx(pDrvIns, HGCM_SAVED_STATE_VERSION, 4096 /* bad guess */,
|
---|
1165 | NULL, NULL, NULL,
|
---|
1166 | NULL, iface_hgcmSave, NULL,
|
---|
1167 | NULL, iface_hgcmLoad, NULL);
|
---|
1168 | if (RT_FAILURE(rc))
|
---|
1169 | return rc;
|
---|
1170 |
|
---|
1171 | #endif /* VBOX_WITH_HGCM */
|
---|
1172 |
|
---|
1173 | return VINF_SUCCESS;
|
---|
1174 | }
|
---|
1175 |
|
---|
1176 |
|
---|
1177 | /**
|
---|
1178 | * VMMDevice driver registration record.
|
---|
1179 | */
|
---|
1180 | const PDMDRVREG VMMDev::DrvReg =
|
---|
1181 | {
|
---|
1182 | /* u32Version */
|
---|
1183 | PDM_DRVREG_VERSION,
|
---|
1184 | /* szName */
|
---|
1185 | "HGCM",
|
---|
1186 | /* szRCMod */
|
---|
1187 | "",
|
---|
1188 | /* szR0Mod */
|
---|
1189 | "",
|
---|
1190 | /* pszDescription */
|
---|
1191 | "Main VMMDev driver (Main as in the API).",
|
---|
1192 | /* fFlags */
|
---|
1193 | PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
|
---|
1194 | /* fClass. */
|
---|
1195 | PDM_DRVREG_CLASS_VMMDEV,
|
---|
1196 | /* cMaxInstances */
|
---|
1197 | ~0U,
|
---|
1198 | /* cbInstance */
|
---|
1199 | sizeof(DRVMAINVMMDEV),
|
---|
1200 | /* pfnConstruct */
|
---|
1201 | VMMDev::drvConstruct,
|
---|
1202 | /* pfnDestruct */
|
---|
1203 | VMMDev::drvDestruct,
|
---|
1204 | /* pfnRelocate */
|
---|
1205 | NULL,
|
---|
1206 | /* pfnIOCtl */
|
---|
1207 | NULL,
|
---|
1208 | /* pfnPowerOn */
|
---|
1209 | VMMDev::drvPowerOn,
|
---|
1210 | /* pfnReset */
|
---|
1211 | VMMDev::drvReset,
|
---|
1212 | /* pfnSuspend */
|
---|
1213 | VMMDev::drvSuspend,
|
---|
1214 | /* pfnResume */
|
---|
1215 | VMMDev::drvResume,
|
---|
1216 | /* pfnAttach */
|
---|
1217 | NULL,
|
---|
1218 | /* pfnDetach */
|
---|
1219 | NULL,
|
---|
1220 | /* pfnPowerOff */
|
---|
1221 | VMMDev::drvPowerOff,
|
---|
1222 | /* pfnSoftReset */
|
---|
1223 | NULL,
|
---|
1224 | /* u32EndVersion */
|
---|
1225 | PDM_DRVREG_VERSION
|
---|
1226 | };
|
---|
1227 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|