VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/VMMDevInterface.cpp@ 69500

Last change on this file since 69500 was 69500, checked in by vboxsync, 7 years ago

*: scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 30.6 KB
Line 
1/* $Id: VMMDevInterface.cpp 69500 2017-10-28 15:14:05Z 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 */
58typedef 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//
80VMMDev::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
94VMMDev::~VMMDev()
95{
96#ifdef VBOX_WITH_HGCM
97 if (hgcmIsActive())
98 {
99 ASMAtomicWriteBool(&m_fHGCMActive, false);
100 HGCMHostShutdown();
101 }
102#endif /* VBOX_WITH_HGCM */
103 RTSemEventDestroy(mCredentialsEvent);
104 if (mpDrv)
105 mpDrv->pVMMDev = NULL;
106 mpDrv = NULL;
107}
108
109PPDMIVMMDEVPORT VMMDev::getVMMDevPort()
110{
111 if (!mpDrv)
112 return NULL;
113 return mpDrv->pUpPort;
114}
115
116
117
118//
119// public methods
120//
121
122/**
123 * Wait on event semaphore for guest credential judgement result.
124 */
125int VMMDev::WaitCredentialsJudgement(uint32_t u32Timeout, uint32_t *pu32CredentialsFlags)
126{
127 if (u32Timeout == 0)
128 {
129 u32Timeout = 5000;
130 }
131
132 int rc = RTSemEventWait(mCredentialsEvent, u32Timeout);
133
134 if (RT_SUCCESS(rc))
135 {
136 *pu32CredentialsFlags = mu32CredentialsFlags;
137 }
138
139 return rc;
140}
141
142int VMMDev::SetCredentialsJudgementResult(uint32_t u32Flags)
143{
144 mu32CredentialsFlags = u32Flags;
145
146 int rc = RTSemEventSignal(mCredentialsEvent);
147 AssertRC(rc);
148
149 return rc;
150}
151
152
153/**
154 * @interface_method_impl{PDMIVMMDEVCONNECTOR,pfnUpdateGuestStatus}
155 */
156DECLCALLBACK(void) vmmdevUpdateGuestStatus(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFacility, uint16_t uStatus,
157 uint32_t fFlags, PCRTTIMESPEC pTimeSpecTS)
158{
159 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
160 Console *pConsole = pDrv->pVMMDev->getParent();
161
162 /* Store that information in IGuest */
163 Guest* guest = pConsole->i_getGuest();
164 AssertPtrReturnVoid(guest);
165
166 guest->i_setAdditionsStatus((VBoxGuestFacilityType)uFacility, (VBoxGuestFacilityStatus)uStatus, fFlags, pTimeSpecTS);
167 pConsole->i_onAdditionsStateChange();
168}
169
170
171/**
172 * @interface_method_impl{PDMIVMMDEVCONNECTOR,pfnUpdateGuestUserState}
173 */
174DECLCALLBACK(void) vmmdevUpdateGuestUserState(PPDMIVMMDEVCONNECTOR pInterface,
175 const char *pszUser, const char *pszDomain,
176 uint32_t uState,
177 const uint8_t *pabDetails, uint32_t cbDetails)
178{
179 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
180 AssertPtr(pDrv);
181 Console *pConsole = pDrv->pVMMDev->getParent();
182 AssertPtr(pConsole);
183
184 /* Store that information in IGuest. */
185 Guest* pGuest = pConsole->i_getGuest();
186 AssertPtrReturnVoid(pGuest);
187
188 pGuest->i_onUserStateChange(Bstr(pszUser), Bstr(pszDomain), (VBoxGuestUserState)uState,
189 pabDetails, cbDetails);
190}
191
192
193/**
194 * Reports Guest Additions API and OS version.
195 *
196 * Called whenever the Additions issue a guest version report request or the VM
197 * is reset.
198 *
199 * @param pInterface Pointer to this interface.
200 * @param guestInfo Pointer to guest information structure.
201 * @thread The emulation thread.
202 */
203DECLCALLBACK(void) vmmdevUpdateGuestInfo(PPDMIVMMDEVCONNECTOR pInterface, const VBoxGuestInfo *guestInfo)
204{
205 AssertPtrReturnVoid(guestInfo);
206
207 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
208 Console *pConsole = pDrv->pVMMDev->getParent();
209
210 /* Store that information in IGuest */
211 Guest* guest = pConsole->i_getGuest();
212 AssertPtrReturnVoid(guest);
213
214 if (guestInfo->interfaceVersion != 0)
215 {
216 char version[16];
217 RTStrPrintf(version, sizeof(version), "%d", guestInfo->interfaceVersion);
218 guest->i_setAdditionsInfo(Bstr(version), guestInfo->osType);
219
220 /*
221 * Tell the console interface about the event
222 * so that it can notify its consumers.
223 */
224 pConsole->i_onAdditionsStateChange();
225
226 if (guestInfo->interfaceVersion < VMMDEV_VERSION)
227 pConsole->i_onAdditionsOutdated();
228 }
229 else
230 {
231 /*
232 * The guest additions was disabled because of a reset
233 * or driver unload.
234 */
235 guest->i_setAdditionsInfo(Bstr(), guestInfo->osType); /* Clear interface version + OS type. */
236 /** @todo Would be better if GuestImpl.cpp did all this in the above method call
237 * while holding down the. */
238 guest->i_setAdditionsInfo2(0, "", 0, 0); /* Clear Guest Additions version. */
239 RTTIMESPEC TimeSpecTS;
240 RTTimeNow(&TimeSpecTS);
241 guest->i_setAdditionsStatus(VBoxGuestFacilityType_All, VBoxGuestFacilityStatus_Inactive, 0 /*fFlags*/, &TimeSpecTS);
242 pConsole->i_onAdditionsStateChange();
243 }
244}
245
246/**
247 * @interface_method_impl{PDMIVMMDEVCONNECTOR,pfnUpdateGuestInfo2}
248 */
249DECLCALLBACK(void) vmmdevUpdateGuestInfo2(PPDMIVMMDEVCONNECTOR pInterface, uint32_t uFullVersion,
250 const char *pszName, uint32_t uRevision, uint32_t fFeatures)
251{
252 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
253 AssertPtr(pszName);
254 Assert(uFullVersion);
255
256 /* Store that information in IGuest. */
257 Guest *pGuest = pDrv->pVMMDev->getParent()->i_getGuest();
258 AssertPtrReturnVoid(pGuest);
259
260 /* Just pass it on... */
261 pGuest->i_setAdditionsInfo2(uFullVersion, pszName, uRevision, fFeatures);
262
263 /*
264 * No need to tell the console interface about the update;
265 * vmmdevUpdateGuestInfo takes care of that when called as the
266 * last event in the chain.
267 */
268}
269
270/**
271 * Update the guest additions capabilities.
272 * This is called when the guest additions capabilities change. The new capabilities
273 * are given and the connector should update its internal state.
274 *
275 * @param pInterface Pointer to this interface.
276 * @param newCapabilities New capabilities.
277 * @thread The emulation thread.
278 */
279DECLCALLBACK(void) vmmdevUpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities)
280{
281 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
282 AssertPtr(pDrv);
283 Console *pConsole = pDrv->pVMMDev->getParent();
284
285 /* store that information in IGuest */
286 Guest* pGuest = pConsole->i_getGuest();
287 AssertPtrReturnVoid(pGuest);
288
289 /*
290 * Report our current capabilities (and assume none is active yet).
291 */
292 pGuest->i_setSupportedFeatures(newCapabilities);
293
294 /*
295 * Tell the Display, so that it can update the "supports graphics"
296 * capability if the graphics card has not asserted it.
297 */
298 Display* pDisplay = pConsole->i_getDisplay();
299 AssertPtrReturnVoid(pDisplay);
300 pDisplay->i_handleUpdateVMMDevSupportsGraphics(RT_BOOL(newCapabilities & VMMDEV_GUEST_SUPPORTS_GRAPHICS));
301
302 /*
303 * Tell the console interface about the event
304 * so that it can notify its consumers.
305 */
306 pConsole->i_onAdditionsStateChange();
307}
308
309/**
310 * Update the mouse capabilities.
311 * This is called when the mouse capabilities change. The new capabilities
312 * are given and the connector should update its internal state.
313 *
314 * @param pInterface Pointer to this interface.
315 * @param fNewCaps New capabilities.
316 * @thread The emulation thread.
317 */
318DECLCALLBACK(void) vmmdevUpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t fNewCaps)
319{
320 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
321 Console *pConsole = pDrv->pVMMDev->getParent();
322
323 /*
324 * Tell the console interface about the event
325 * so that it can notify its consumers.
326 */
327 Mouse *pMouse = pConsole->i_getMouse();
328 if (pMouse) /** @todo and if not? Can that actually happen? */
329 pMouse->i_onVMMDevGuestCapsChange(fNewCaps & VMMDEV_MOUSE_GUEST_MASK);
330}
331
332/**
333 * Update the pointer shape or visibility.
334 *
335 * This is called when the mouse pointer shape changes or pointer is hidden/displaying.
336 * The new shape is passed as a caller allocated buffer that will be freed after returning.
337 *
338 * @param pInterface Pointer to this interface.
339 * @param fVisible Whether the pointer is visible or not.
340 * @param fAlpha Alpha channel information is present.
341 * @param xHot Horizontal coordinate of the pointer hot spot.
342 * @param yHot Vertical coordinate of the pointer hot spot.
343 * @param width Pointer width in pixels.
344 * @param height Pointer height in pixels.
345 * @param pShape The shape buffer. If NULL, then only pointer visibility is being changed.
346 * @thread The emulation thread.
347 */
348DECLCALLBACK(void) vmmdevUpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
349 uint32_t xHot, uint32_t yHot,
350 uint32_t width, uint32_t height,
351 void *pShape)
352{
353 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
354 Console *pConsole = pDrv->pVMMDev->getParent();
355
356 /* tell the console about it */
357 uint32_t cbShape = 0;
358 if (pShape)
359 {
360 cbShape = (width + 7) / 8 * height; /* size of the AND mask */
361 cbShape = ((cbShape + 3) & ~3) + width * 4 * height; /* + gap + size of the XOR mask */
362 }
363 pConsole->i_onMousePointerShapeChange(fVisible, fAlpha, xHot, yHot, width, height, (uint8_t *)pShape, cbShape);
364}
365
366DECLCALLBACK(int) iface_VideoAccelEnable(PPDMIVMMDEVCONNECTOR pInterface, bool fEnable, VBVAMEMORY *pVbvaMemory)
367{
368 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
369 Console *pConsole = pDrv->pVMMDev->getParent();
370
371 Display *display = pConsole->i_getDisplay();
372
373 if (display)
374 {
375 Log9(("MAIN::VMMDevInterface::iface_VideoAccelEnable: %d, %p\n", fEnable, pVbvaMemory));
376 return display->VideoAccelEnableVMMDev(fEnable, pVbvaMemory);
377 }
378
379 return VERR_NOT_SUPPORTED;
380}
381DECLCALLBACK(void) iface_VideoAccelFlush(PPDMIVMMDEVCONNECTOR pInterface)
382{
383 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
384 Console *pConsole = pDrv->pVMMDev->getParent();
385
386 Display *display = pConsole->i_getDisplay();
387
388 if (display)
389 {
390 Log9(("MAIN::VMMDevInterface::iface_VideoAccelFlush\n"));
391 display->VideoAccelFlushVMMDev();
392 }
393}
394
395DECLCALLBACK(int) vmmdevVideoModeSupported(PPDMIVMMDEVCONNECTOR pInterface, uint32_t display, uint32_t width, uint32_t height,
396 uint32_t bpp, bool *fSupported)
397{
398 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
399 Console *pConsole = pDrv->pVMMDev->getParent();
400
401 if (!fSupported)
402 return VERR_INVALID_PARAMETER;
403#ifdef DEBUG_sunlover
404 Log(("vmmdevVideoModeSupported: [%d]: %dx%dx%d\n", display, width, height, bpp));
405#endif
406 IFramebuffer *framebuffer = NULL;
407 HRESULT hrc = pConsole->i_getDisplay()->QueryFramebuffer(display, &framebuffer);
408 if (SUCCEEDED(hrc) && framebuffer)
409 {
410 framebuffer->VideoModeSupported(width, height, bpp, (BOOL*)fSupported);
411 framebuffer->Release();
412 }
413 else
414 {
415#ifdef DEBUG_sunlover
416 Log(("vmmdevVideoModeSupported: hrc %x, framebuffer %p!!!\n", hrc, framebuffer));
417#endif
418 *fSupported = true;
419 }
420 return VINF_SUCCESS;
421}
422
423DECLCALLBACK(int) vmmdevGetHeightReduction(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *heightReduction)
424{
425 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
426 Console *pConsole = pDrv->pVMMDev->getParent();
427
428 if (!heightReduction)
429 return VERR_INVALID_PARAMETER;
430 IFramebuffer *framebuffer = NULL;
431 HRESULT hrc = pConsole->i_getDisplay()->QueryFramebuffer(0, &framebuffer);
432 if (SUCCEEDED(hrc) && framebuffer)
433 {
434 framebuffer->COMGETTER(HeightReduction)((ULONG*)heightReduction);
435 framebuffer->Release();
436 }
437 else
438 *heightReduction = 0;
439 return VINF_SUCCESS;
440}
441
442DECLCALLBACK(int) vmmdevSetCredentialsJudgementResult(PPDMIVMMDEVCONNECTOR pInterface, uint32_t u32Flags)
443{
444 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
445
446 if (pDrv->pVMMDev)
447 return pDrv->pVMMDev->SetCredentialsJudgementResult(u32Flags);
448
449 return VERR_GENERAL_FAILURE;
450}
451
452DECLCALLBACK(int) vmmdevSetVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cRect, PRTRECT pRect)
453{
454 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
455 Console *pConsole = pDrv->pVMMDev->getParent();
456
457 /* Forward to Display, which calls corresponding framebuffers. */
458 pConsole->i_getDisplay()->i_handleSetVisibleRegion(cRect, pRect);
459
460 return VINF_SUCCESS;
461}
462
463DECLCALLBACK(int) vmmdevQueryVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcRects, PRTRECT paRects)
464{
465 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
466 Console *pConsole = pDrv->pVMMDev->getParent();
467
468 /* Forward to Display, which calls corresponding framebuffers. */
469 pConsole->i_getDisplay()->i_handleQueryVisibleRegion(pcRects, paRects);
470
471 return VINF_SUCCESS;
472}
473
474/**
475 * Request the statistics interval
476 *
477 * @returns VBox status code.
478 * @param pInterface Pointer to this interface.
479 * @param pulInterval Pointer to interval in seconds
480 * @thread The emulation thread.
481 */
482DECLCALLBACK(int) vmmdevQueryStatisticsInterval(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pulInterval)
483{
484 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
485 Console *pConsole = pDrv->pVMMDev->getParent();
486 ULONG val = 0;
487
488 if (!pulInterval)
489 return VERR_INVALID_POINTER;
490
491 /* store that information in IGuest */
492 Guest* guest = pConsole->i_getGuest();
493 AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
494
495 guest->COMGETTER(StatisticsUpdateInterval)(&val);
496 *pulInterval = val;
497 return VINF_SUCCESS;
498}
499
500/**
501 * Query the current balloon size
502 *
503 * @returns VBox status code.
504 * @param pInterface Pointer to this interface.
505 * @param pcbBalloon Balloon size
506 * @thread The emulation thread.
507 */
508DECLCALLBACK(int) vmmdevQueryBalloonSize(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcbBalloon)
509{
510 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
511 Console *pConsole = pDrv->pVMMDev->getParent();
512 ULONG val = 0;
513
514 if (!pcbBalloon)
515 return VERR_INVALID_POINTER;
516
517 /* store that information in IGuest */
518 Guest* guest = pConsole->i_getGuest();
519 AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
520
521 guest->COMGETTER(MemoryBalloonSize)(&val);
522 *pcbBalloon = val;
523 return VINF_SUCCESS;
524}
525
526/**
527 * Query the current page fusion setting
528 *
529 * @returns VBox status code.
530 * @param pInterface Pointer to this interface.
531 * @param pfPageFusionEnabled Pointer to boolean
532 * @thread The emulation thread.
533 */
534DECLCALLBACK(int) vmmdevIsPageFusionEnabled(PPDMIVMMDEVCONNECTOR pInterface, bool *pfPageFusionEnabled)
535{
536 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
537 Console *pConsole = pDrv->pVMMDev->getParent();
538
539 if (!pfPageFusionEnabled)
540 return VERR_INVALID_POINTER;
541
542 /* store that information in IGuest */
543 Guest* guest = pConsole->i_getGuest();
544 AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
545
546 *pfPageFusionEnabled = !!guest->i_isPageFusionEnabled();
547 return VINF_SUCCESS;
548}
549
550/**
551 * Report new guest statistics
552 *
553 * @returns VBox status code.
554 * @param pInterface Pointer to this interface.
555 * @param pGuestStats Guest statistics
556 * @thread The emulation thread.
557 */
558DECLCALLBACK(int) vmmdevReportStatistics(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestStatistics *pGuestStats)
559{
560 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, Connector);
561 Console *pConsole = pDrv->pVMMDev->getParent();
562
563 AssertPtrReturn(pGuestStats, VERR_INVALID_POINTER);
564
565 /* store that information in IGuest */
566 Guest* guest = pConsole->i_getGuest();
567 AssertPtrReturn(guest, VERR_GENERAL_FAILURE);
568
569 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_IDLE)
570 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_CPUIDLE, pGuestStats->u32CpuLoad_Idle);
571
572 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_KERNEL)
573 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_CPUKERNEL, pGuestStats->u32CpuLoad_Kernel);
574
575 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_USER)
576 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_CPUUSER, pGuestStats->u32CpuLoad_User);
577
578
579 /** @todo r=bird: Convert from 4KB to 1KB units?
580 * CollectorGuestHAL::i_getGuestMemLoad says it returns KB units to
581 * preCollect(). I might be wrong ofc, this is convoluted code... */
582 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_TOTAL)
583 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMTOTAL, pGuestStats->u32PhysMemTotal);
584
585 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_AVAIL)
586 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMFREE, pGuestStats->u32PhysMemAvail);
587
588 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_BALLOON)
589 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMBALLOON, pGuestStats->u32PhysMemBalloon);
590
591 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEM_SYSTEM_CACHE)
592 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_MEMCACHE, pGuestStats->u32MemSystemCache);
593
594 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PAGE_FILE_SIZE)
595 guest->i_setStatistic(pGuestStats->u32CpuId, GUESTSTATTYPE_PAGETOTAL, pGuestStats->u32PageFileSize);
596
597 return VINF_SUCCESS;
598}
599
600#ifdef VBOX_WITH_HGCM
601
602/* HGCM connector interface */
603
604static DECLCALLBACK(int) iface_hgcmConnect(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd,
605 PHGCMSERVICELOCATION pServiceLocation,
606 uint32_t *pu32ClientID)
607{
608 Log9(("Enter\n"));
609
610 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, HGCMConnector);
611
612 if ( !pServiceLocation
613 || ( pServiceLocation->type != VMMDevHGCMLoc_LocalHost
614 && pServiceLocation->type != VMMDevHGCMLoc_LocalHost_Existing))
615 {
616 return VERR_INVALID_PARAMETER;
617 }
618
619 if (!pDrv->pVMMDev || !pDrv->pVMMDev->hgcmIsActive())
620 return VERR_INVALID_STATE;
621
622 return HGCMGuestConnect(pDrv->pHGCMPort, pCmd, pServiceLocation->u.host.achName, pu32ClientID);
623}
624
625static DECLCALLBACK(int) iface_hgcmDisconnect(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID)
626{
627 Log9(("Enter\n"));
628
629 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, HGCMConnector);
630
631 if (!pDrv->pVMMDev || !pDrv->pVMMDev->hgcmIsActive())
632 return VERR_INVALID_STATE;
633
634 return HGCMGuestDisconnect(pDrv->pHGCMPort, pCmd, u32ClientID);
635}
636
637static DECLCALLBACK(int) iface_hgcmCall(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID,
638 uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms)
639{
640 Log9(("Enter\n"));
641
642 PDRVMAINVMMDEV pDrv = RT_FROM_MEMBER(pInterface, DRVMAINVMMDEV, HGCMConnector);
643
644 if (!pDrv->pVMMDev || !pDrv->pVMMDev->hgcmIsActive())
645 return VERR_INVALID_STATE;
646
647 return HGCMGuestCall(pDrv->pHGCMPort, pCmd, u32ClientID, u32Function, cParms, paParms);
648}
649
650/**
651 * Execute state save operation.
652 *
653 * @returns VBox status code.
654 * @param pDrvIns Driver instance of the driver which registered the data unit.
655 * @param pSSM SSM operation handle.
656 */
657static DECLCALLBACK(int) iface_hgcmSave(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM)
658{
659 RT_NOREF(pDrvIns);
660 Log9(("Enter\n"));
661 return HGCMHostSaveState(pSSM);
662}
663
664
665/**
666 * Execute state load operation.
667 *
668 * @returns VBox status code.
669 * @param pDrvIns Driver instance of the driver which registered the data unit.
670 * @param pSSM SSM operation handle.
671 * @param uVersion Data layout version.
672 * @param uPass The data pass.
673 */
674static DECLCALLBACK(int) iface_hgcmLoad(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
675{
676 RT_NOREF(pDrvIns);
677 LogFlowFunc(("Enter\n"));
678
679 if (uVersion != HGCM_SSM_VERSION)
680 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
681 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
682
683 return HGCMHostLoadState(pSSM);
684}
685
686int VMMDev::hgcmLoadService(const char *pszServiceLibrary, const char *pszServiceName)
687{
688 if (!hgcmIsActive())
689 return VERR_INVALID_STATE;
690
691 return HGCMHostLoad(pszServiceLibrary, pszServiceName);
692}
693
694int VMMDev::hgcmHostCall(const char *pszServiceName, uint32_t u32Function,
695 uint32_t cParms, PVBOXHGCMSVCPARM paParms)
696{
697 if (!hgcmIsActive())
698 return VERR_INVALID_STATE;
699 return HGCMHostCall(pszServiceName, u32Function, cParms, paParms);
700}
701
702void VMMDev::hgcmShutdown(void)
703{
704 ASMAtomicWriteBool(&m_fHGCMActive, false);
705 HGCMHostShutdown();
706}
707
708# ifdef VBOX_WITH_CRHGSMI
709int VMMDev::hgcmHostSvcHandleCreate(const char *pszServiceName, HGCMCVSHANDLE * phSvc)
710{
711 if (!hgcmIsActive())
712 return VERR_INVALID_STATE;
713 return HGCMHostSvcHandleCreate(pszServiceName, phSvc);
714}
715
716int VMMDev::hgcmHostSvcHandleDestroy(HGCMCVSHANDLE hSvc)
717{
718 if (!hgcmIsActive())
719 return VERR_INVALID_STATE;
720 return HGCMHostSvcHandleDestroy(hSvc);
721}
722
723int VMMDev::hgcmHostFastCallAsync(HGCMCVSHANDLE hSvc, uint32_t function, PVBOXHGCMSVCPARM pParm,
724 PHGCMHOSTFASTCALLCB pfnCompletion, void *pvCompletion)
725{
726 if (!hgcmIsActive())
727 return VERR_INVALID_STATE;
728 return HGCMHostFastCallAsync(hSvc, function, pParm, pfnCompletion, pvCompletion);
729}
730# endif
731
732#endif /* HGCM */
733
734
735/**
736 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
737 */
738DECLCALLBACK(void *) VMMDev::drvQueryInterface(PPDMIBASE pInterface, const char *pszIID)
739{
740 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
741 PDRVMAINVMMDEV pDrv = PDMINS_2_DATA(pDrvIns, PDRVMAINVMMDEV);
742
743 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
744 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIVMMDEVCONNECTOR, &pDrv->Connector);
745#ifdef VBOX_WITH_HGCM
746 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIHGCMCONNECTOR, &pDrv->HGCMConnector);
747#endif
748 return NULL;
749}
750
751/**
752 * @interface_method_impl{PDMDRVREG,pfnReset}
753 */
754DECLCALLBACK(void) VMMDev::drvReset(PPDMDRVINS pDrvIns)
755{
756 RT_NOREF(pDrvIns);
757 LogFlow(("VMMDev::drvReset: iInstance=%d\n", pDrvIns->iInstance));
758#ifdef VBOX_WITH_HGCM
759 HGCMHostReset();
760#endif /* VBOX_WITH_HGCM */
761}
762
763/**
764 * @interface_method_impl{PDMDRVREG,pfnDestruct}
765 */
766DECLCALLBACK(void) VMMDev::drvDestruct(PPDMDRVINS pDrvIns)
767{
768 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
769 PDRVMAINVMMDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINVMMDEV);
770 LogFlow(("VMMDev::drvDestruct: iInstance=%d\n", pDrvIns->iInstance));
771
772#ifdef VBOX_WITH_HGCM
773 /* HGCM is shut down on the VMMDev destructor. */
774#endif /* VBOX_WITH_HGCM */
775 if (pThis->pVMMDev)
776 pThis->pVMMDev->mpDrv = NULL;
777}
778
779/**
780 * @interface_method_impl{PDMDRVREG,pfnConstruct}
781 */
782DECLCALLBACK(int) VMMDev::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags)
783{
784 RT_NOREF(fFlags);
785 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
786 PDRVMAINVMMDEV pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINVMMDEV);
787 LogFlow(("Keyboard::drvConstruct: iInstance=%d\n", pDrvIns->iInstance));
788
789 /*
790 * Validate configuration.
791 */
792 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0"))
793 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
794 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
795 ("Configuration error: Not possible to attach anything to this driver!\n"),
796 VERR_PDM_DRVINS_NO_ATTACH);
797
798 /*
799 * IBase.
800 */
801 pDrvIns->IBase.pfnQueryInterface = VMMDev::drvQueryInterface;
802
803 pThis->Connector.pfnUpdateGuestStatus = vmmdevUpdateGuestStatus;
804 pThis->Connector.pfnUpdateGuestUserState = vmmdevUpdateGuestUserState;
805 pThis->Connector.pfnUpdateGuestInfo = vmmdevUpdateGuestInfo;
806 pThis->Connector.pfnUpdateGuestInfo2 = vmmdevUpdateGuestInfo2;
807 pThis->Connector.pfnUpdateGuestCapabilities = vmmdevUpdateGuestCapabilities;
808 pThis->Connector.pfnUpdateMouseCapabilities = vmmdevUpdateMouseCapabilities;
809 pThis->Connector.pfnUpdatePointerShape = vmmdevUpdatePointerShape;
810 pThis->Connector.pfnVideoAccelEnable = iface_VideoAccelEnable;
811 pThis->Connector.pfnVideoAccelFlush = iface_VideoAccelFlush;
812 pThis->Connector.pfnVideoModeSupported = vmmdevVideoModeSupported;
813 pThis->Connector.pfnGetHeightReduction = vmmdevGetHeightReduction;
814 pThis->Connector.pfnSetCredentialsJudgementResult = vmmdevSetCredentialsJudgementResult;
815 pThis->Connector.pfnSetVisibleRegion = vmmdevSetVisibleRegion;
816 pThis->Connector.pfnQueryVisibleRegion = vmmdevQueryVisibleRegion;
817 pThis->Connector.pfnReportStatistics = vmmdevReportStatistics;
818 pThis->Connector.pfnQueryStatisticsInterval = vmmdevQueryStatisticsInterval;
819 pThis->Connector.pfnQueryBalloonSize = vmmdevQueryBalloonSize;
820 pThis->Connector.pfnIsPageFusionEnabled = vmmdevIsPageFusionEnabled;
821
822#ifdef VBOX_WITH_HGCM
823 pThis->HGCMConnector.pfnConnect = iface_hgcmConnect;
824 pThis->HGCMConnector.pfnDisconnect = iface_hgcmDisconnect;
825 pThis->HGCMConnector.pfnCall = iface_hgcmCall;
826#endif
827
828 /*
829 * Get the IVMMDevPort interface of the above driver/device.
830 */
831 pThis->pUpPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIVMMDEVPORT);
832 AssertMsgReturn(pThis->pUpPort, ("Configuration error: No VMMDev port interface above!\n"), VERR_PDM_MISSING_INTERFACE_ABOVE);
833
834#ifdef VBOX_WITH_HGCM
835 pThis->pHGCMPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIHGCMPORT);
836 AssertMsgReturn(pThis->pHGCMPort, ("Configuration error: No HGCM port interface above!\n"), VERR_PDM_MISSING_INTERFACE_ABOVE);
837#endif
838
839 /*
840 * Get the Console object pointer and update the mpDrv member.
841 */
842 void *pv;
843 int rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
844 if (RT_FAILURE(rc))
845 {
846 AssertMsgFailed(("Configuration error: No/bad \"Object\" value! rc=%Rrc\n", rc));
847 return rc;
848 }
849
850 pThis->pVMMDev = (VMMDev*)pv; /** @todo Check this cast! */
851 pThis->pVMMDev->mpDrv = pThis;
852
853#ifdef VBOX_WITH_HGCM
854 rc = pThis->pVMMDev->hgcmLoadService(VBOXSHAREDFOLDERS_DLL,
855 "VBoxSharedFolders");
856 pThis->pVMMDev->fSharedFolderActive = RT_SUCCESS(rc);
857 if (RT_SUCCESS(rc))
858 {
859 PPDMLED pLed;
860 PPDMILEDPORTS pLedPort;
861
862 LogRel(("Shared Folders service loaded\n"));
863 pLedPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMILEDPORTS);
864 AssertMsgReturn(pLedPort, ("Configuration error: No LED port interface above!\n"), VERR_PDM_MISSING_INTERFACE_ABOVE);
865 rc = pLedPort->pfnQueryStatusLed(pLedPort, 0, &pLed);
866 if (RT_SUCCESS(rc) && pLed)
867 {
868 VBOXHGCMSVCPARM parm;
869
870 parm.type = VBOX_HGCM_SVC_PARM_PTR;
871 parm.u.pointer.addr = pLed;
872 parm.u.pointer.size = sizeof(*pLed);
873
874 rc = HGCMHostCall("VBoxSharedFolders", SHFL_FN_SET_STATUS_LED, 1, &parm);
875 }
876 else
877 AssertMsgFailed(("pfnQueryStatusLed failed with %Rrc (pLed=%x)\n", rc, pLed));
878 }
879 else
880 LogRel(("Failed to load Shared Folders service %Rrc\n", rc));
881
882 rc = PDMDrvHlpSSMRegisterEx(pDrvIns, HGCM_SSM_VERSION, 4096 /* bad guess */,
883 NULL, NULL, NULL,
884 NULL, iface_hgcmSave, NULL,
885 NULL, iface_hgcmLoad, NULL);
886 if (RT_FAILURE(rc))
887 return rc;
888
889#endif /* VBOX_WITH_HGCM */
890
891 return VINF_SUCCESS;
892}
893
894
895/**
896 * VMMDevice driver registration record.
897 */
898const PDMDRVREG VMMDev::DrvReg =
899{
900 /* u32Version */
901 PDM_DRVREG_VERSION,
902 /* szName */
903 "HGCM",
904 /* szRCMod */
905 "",
906 /* szR0Mod */
907 "",
908 /* pszDescription */
909 "Main VMMDev driver (Main as in the API).",
910 /* fFlags */
911 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
912 /* fClass. */
913 PDM_DRVREG_CLASS_VMMDEV,
914 /* cMaxInstances */
915 ~0U,
916 /* cbInstance */
917 sizeof(DRVMAINVMMDEV),
918 /* pfnConstruct */
919 VMMDev::drvConstruct,
920 /* pfnDestruct */
921 VMMDev::drvDestruct,
922 /* pfnRelocate */
923 NULL,
924 /* pfnIOCtl */
925 NULL,
926 /* pfnPowerOn */
927 NULL,
928 /* pfnReset */
929 VMMDev::drvReset,
930 /* pfnSuspend */
931 NULL,
932 /* pfnResume */
933 NULL,
934 /* pfnAttach */
935 NULL,
936 /* pfnDetach */
937 NULL,
938 /* pfnPowerOff */
939 NULL,
940 /* pfnSoftReset */
941 NULL,
942 /* u32EndVersion */
943 PDM_DRVREG_VERSION
944};
945/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use