VirtualBox

source: vbox/trunk/src/VBox/Main/VMMDevInterface.cpp@ 4753

Last change on this file since 4753 was 4685, checked in by vboxsync, 17 years ago

Sample number added for guest statistics

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 26.8 KB
Line 
1/** @file
2 *
3 * VirtualBox Driver Interface to VMM device
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include "VMMDev.h"
19#include "ConsoleImpl.h"
20#include "DisplayImpl.h"
21#include "GuestImpl.h"
22
23#include "Logging.h"
24
25#include <VBox/pdmdrv.h>
26#include <VBox/VBoxDev.h>
27#include <VBox/VBoxGuest.h>
28#include <VBox/shflsvc.h>
29#include <iprt/asm.h>
30
31#ifdef VBOX_HGCM
32#include "hgcm/HGCM.h"
33#include "hgcm/HGCMObjects.h"
34#endif
35
36//
37// defines
38//
39
40
41//
42// globals
43//
44
45
46/**
47 * VMMDev driver instance data.
48 */
49typedef struct DRVMAINVMMDEV
50{
51 /** Pointer to the VMMDev object. */
52 VMMDev *pVMMDev;
53 /** Pointer to the driver instance structure. */
54 PPDMDRVINS pDrvIns;
55 /** Pointer to the VMMDev port interface of the driver/device above us. */
56 PPDMIVMMDEVPORT pUpPort;
57 /** Our VMM device connector interface. */
58 PDMIVMMDEVCONNECTOR Connector;
59
60#ifdef VBOX_HGCM
61 /** Pointer to the HGCM port interface of the driver/device above us. */
62 PPDMIHGCMPORT pHGCMPort;
63 /** Our HGCM connector interface. */
64 PDMIHGCMCONNECTOR HGCMConnector;
65#endif
66} DRVMAINVMMDEV, *PDRVMAINVMMDEV;
67
68/** Converts PDMIVMMDEVCONNECTOR pointer to a DRVMAINVMMDEV pointer. */
69#define PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface) ( (PDRVMAINVMMDEV) ((uintptr_t)pInterface - RT_OFFSETOF(DRVMAINVMMDEV, Connector)) )
70
71#ifdef VBOX_HGCM
72/** Converts PDMIHGCMCONNECTOR pointer to a DRVMAINVMMDEV pointer. */
73#define PDMIHGCMCONNECTOR_2_MAINVMMDEV(pInterface) ( (PDRVMAINVMMDEV) ((uintptr_t)pInterface - RT_OFFSETOF(DRVMAINVMMDEV, HGCMConnector)) )
74#endif
75
76//
77// constructor / destructor
78//
79VMMDev::VMMDev(Console *console) : mpDrv(NULL)
80{
81 mParent = console;
82 int rc = RTSemEventCreate(&mCredentialsEvent);
83 AssertRC(rc);
84#ifdef VBOX_HGCM
85 rc = HGCMHostInit ();
86 AssertRC(rc);
87#endif /* VBOX_HGCM */
88 mu32CredentialsFlags = 0;
89}
90
91VMMDev::~VMMDev()
92{
93#ifdef VBOX_HGCM
94 HGCMHostShutdown ();
95#endif /* VBOX_HGCM */
96 RTSemEventDestroy (mCredentialsEvent);
97 if (mpDrv)
98 mpDrv->pVMMDev = NULL;
99 mpDrv = NULL;
100}
101
102PPDMIVMMDEVPORT VMMDev::getVMMDevPort()
103{
104 Assert(mpDrv);
105 return mpDrv->pUpPort;
106}
107
108
109
110//
111// public methods
112//
113
114/**
115 * Wait on event semaphore for guest credential judgement result.
116 */
117int VMMDev::WaitCredentialsJudgement (uint32_t u32Timeout, uint32_t *pu32CredentialsFlags)
118{
119 if (u32Timeout == 0)
120 {
121 u32Timeout = 5000;
122 }
123
124 int rc = RTSemEventWait (mCredentialsEvent, u32Timeout);
125
126 if (VBOX_SUCCESS (rc))
127 {
128 *pu32CredentialsFlags = mu32CredentialsFlags;
129 }
130
131 return rc;
132}
133
134int VMMDev::SetCredentialsJudgementResult (uint32_t u32Flags)
135{
136 mu32CredentialsFlags = u32Flags;
137
138 int rc = RTSemEventSignal (mCredentialsEvent);
139 AssertRC(rc);
140
141 return rc;
142}
143
144
145/**
146 * Report guest OS version.
147 * Called whenever the Additions issue a guest version report request.
148 *
149 * @param pInterface Pointer to this interface.
150 * @param guestInfo Pointer to guest information structure
151 * @thread The emulation thread.
152 */
153DECLCALLBACK(void) vmmdevUpdateGuestVersion(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestInfo *guestInfo)
154{
155 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
156
157 Assert(guestInfo);
158 if (!guestInfo)
159 return;
160
161 /* store that information in IGuest */
162 Guest* guest = pDrv->pVMMDev->getParent()->getGuest();
163 Assert(guest);
164 if (!guest)
165 return;
166
167 char version[20];
168 sprintf(version, "%d", guestInfo->additionsVersion);
169 guest->setAdditionsVersion(Bstr(version));
170
171 /*
172 * Tell the console interface about the event
173 * so that it can notify its consumers.
174 */
175 pDrv->pVMMDev->getParent()->onAdditionsStateChange();
176
177 if (guestInfo->additionsVersion < VMMDEV_VERSION)
178 {
179 pDrv->pVMMDev->getParent()->onAdditionsOutdated();
180 }
181}
182
183/**
184 * Update the guest additions capabilities.
185 * This is called when the guest additions capabilities change. The new capabilities
186 * are given and the connector should update its internal state.
187 *
188 * @param pInterface Pointer to this interface.
189 * @param newCapabilities New capabilities.
190 * @thread The emulation thread.
191 */
192DECLCALLBACK(void) vmmdevUpdateGuestCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities)
193{
194 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
195
196 /* store that information in IGuest */
197 Guest* guest = pDrv->pVMMDev->getParent()->getGuest();
198 Assert(guest);
199 if (!guest)
200 return;
201
202 Assert(!(newCapabilities & ~VMMDEV_GUEST_SUPPORTS_SEAMLESS));
203
204 guest->setSupportsSeamless(BOOL (newCapabilities & VMMDEV_GUEST_SUPPORTS_SEAMLESS));
205
206 /*
207 * Tell the console interface about the event
208 * so that it can notify its consumers.
209 */
210 pDrv->pVMMDev->getParent()->onAdditionsStateChange();
211
212}
213
214/**
215 * Update the mouse capabilities.
216 * This is called when the mouse capabilities change. The new capabilities
217 * are given and the connector should update its internal state.
218 *
219 * @param pInterface Pointer to this interface.
220 * @param newCapabilities New capabilities.
221 * @thread The emulation thread.
222 */
223DECLCALLBACK(void) vmmdevUpdateMouseCapabilities(PPDMIVMMDEVCONNECTOR pInterface, uint32_t newCapabilities)
224{
225 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
226 /*
227 * Tell the console interface about the event
228 * so that it can notify its consumers.
229 */
230 pDrv->pVMMDev->getParent()->onMouseCapabilityChange(BOOL (newCapabilities & VMMDEV_MOUSEGUESTWANTSABS),
231 BOOL (newCapabilities & VMMDEV_MOUSEGUESTNEEDSHOSTCUR));
232}
233
234
235/**
236 * Update the pointer shape or visibility.
237 *
238 * This is called when the mouse pointer shape changes or pointer is hidden/displaying.
239 * The new shape is passed as a caller allocated buffer that will be freed after returning.
240 *
241 * @param pInterface Pointer to this interface.
242 * @param fVisible Whether the pointer is visible or not.
243 * @param fAlpha Alpha channel information is present.
244 * @param xHot Horizontal coordinate of the pointer hot spot.
245 * @param yHot Vertical coordinate of the pointer hot spot.
246 * @param width Pointer width in pixels.
247 * @param height Pointer height in pixels.
248 * @param pShape The shape buffer. If NULL, then only pointer visibility is being changed.
249 * @thread The emulation thread.
250 */
251DECLCALLBACK(void) vmmdevUpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha,
252 uint32_t xHot, uint32_t yHot,
253 uint32_t width, uint32_t height,
254 void *pShape)
255{
256 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
257
258 /* tell the console about it */
259 pDrv->pVMMDev->getParent()->onMousePointerShapeChange(fVisible, fAlpha,
260 xHot, yHot, width, height, pShape);
261}
262
263DECLCALLBACK(int) iface_VideoAccelEnable(PPDMIVMMDEVCONNECTOR pInterface, bool fEnable, VBVAMEMORY *pVbvaMemory)
264{
265 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
266
267 Display *display = pDrv->pVMMDev->getParent()->getDisplay();
268
269 if (display)
270 {
271 LogSunlover(("MAIN::VMMDevInterface::iface_VideoAccelEnable: %d, %p\n", fEnable, pVbvaMemory));
272 return display->VideoAccelEnable (fEnable, pVbvaMemory);
273 }
274
275 return VERR_NOT_SUPPORTED;
276}
277DECLCALLBACK(void) iface_VideoAccelFlush(PPDMIVMMDEVCONNECTOR pInterface)
278{
279 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
280
281 Display *display = pDrv->pVMMDev->getParent()->getDisplay();
282
283 if (display)
284 {
285 LogSunlover(("MAIN::VMMDevInterface::iface_VideoAccelFlush\n"));
286 display->VideoAccelFlush ();
287 }
288}
289
290DECLCALLBACK(int) vmmdevVideoModeSupported(PPDMIVMMDEVCONNECTOR pInterface, uint32_t width, uint32_t height,
291 uint32_t bpp, bool *fSupported)
292{
293 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
294
295 if (!fSupported)
296 return VERR_INVALID_PARAMETER;
297 IFramebuffer *framebuffer = pDrv->pVMMDev->getParent()->getDisplay()->getFramebuffer();
298 if (framebuffer)
299 framebuffer->VideoModeSupported(width, height, bpp, (BOOL*)fSupported);
300 else
301 *fSupported = true;
302 return VINF_SUCCESS;
303}
304
305DECLCALLBACK(int) vmmdevGetHeightReduction(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *heightReduction)
306{
307 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
308
309 if (!heightReduction)
310 return VERR_INVALID_PARAMETER;
311 IFramebuffer *framebuffer = pDrv->pVMMDev->getParent()->getDisplay()->getFramebuffer();
312 if (framebuffer)
313 framebuffer->COMGETTER(HeightReduction)((ULONG*)heightReduction);
314 else
315 *heightReduction = 0;
316 return VINF_SUCCESS;
317}
318
319DECLCALLBACK(int) vmmdevSetCredentialsJudgementResult(PPDMIVMMDEVCONNECTOR pInterface, uint32_t u32Flags)
320{
321 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
322
323 int rc = pDrv->pVMMDev->SetCredentialsJudgementResult (u32Flags);
324
325 return rc;
326}
327
328DECLCALLBACK(int) vmmdevSetVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t cRect, PRTRECT pRect)
329{
330 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
331
332 if (!cRect)
333 return VERR_INVALID_PARAMETER;
334 IFramebuffer *framebuffer = pDrv->pVMMDev->getParent()->getDisplay()->getFramebuffer();
335 if (framebuffer)
336 framebuffer->SetVisibleRegion((BYTE *)pRect, cRect);
337
338 return VINF_SUCCESS;
339}
340
341DECLCALLBACK(int) vmmdevQueryVisibleRegion(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pcRect, PRTRECT pRect)
342{
343 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
344
345 IFramebuffer *framebuffer = pDrv->pVMMDev->getParent()->getDisplay()->getFramebuffer();
346 if (framebuffer)
347 {
348 ULONG cRect = 0;
349 framebuffer->GetVisibleRegion((BYTE *)pRect, cRect, &cRect);
350
351 *pcRect = cRect;
352 }
353
354 return VINF_SUCCESS;
355}
356
357/**
358 * Request the statistics interval
359 *
360 * @returns VBox status code.
361 * @param pInterface Pointer to this interface.
362 * @param pulInterval Pointer to interval in seconds
363 * @thread The emulation thread.
364 */
365DECLCALLBACK(int) vmmdevQueryStatisticsInterval(PPDMIVMMDEVCONNECTOR pInterface, uint32_t *pulInterval)
366{
367 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
368 ULONG val = 0;
369
370 if (!pulInterval)
371 return VERR_INVALID_POINTER;
372
373 /* store that information in IGuest */
374 Guest* guest = pDrv->pVMMDev->getParent()->getGuest();
375 Assert(guest);
376 if (!guest)
377 return VERR_INVALID_PARAMETER; /** @todo wrong error */
378
379 guest->COMGETTER(StatisticsUpdateInterval)(&val);
380 *pulInterval = val;
381 return VINF_SUCCESS;
382}
383
384/**
385 * Report new guest statistics
386 *
387 * @returns VBox status code.
388 * @param pInterface Pointer to this interface.
389 * @param pGuestStats Guest statistics
390 * @thread The emulation thread.
391 */
392DECLCALLBACK(int) vmmdevReportStatistics(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestStatistics *pGuestStats)
393{
394 PDRVMAINVMMDEV pDrv = PDMIVMMDEVCONNECTOR_2_MAINVMMDEV(pInterface);
395
396 Assert(pGuestStats);
397 if (!pGuestStats)
398 return VERR_INVALID_POINTER;
399
400 /* store that information in IGuest */
401 Guest* guest = pDrv->pVMMDev->getParent()->getGuest();
402 Assert(guest);
403 if (!guest)
404 return VERR_INVALID_PARAMETER; /** @todo wrong error */
405
406 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_IDLE)
407 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_CPULoad_Idle, pGuestStats->u32CpuLoad_Idle);
408
409 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_KERNEL)
410 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_CPULoad_Kernel, pGuestStats->u32CpuLoad_Kernel);
411
412 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_CPU_LOAD_USER)
413 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_CPULoad_User, pGuestStats->u32CpuLoad_User);
414
415 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_THREADS)
416 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_Threads, pGuestStats->u32Threads);
417
418 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PROCESSES)
419 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_Processes, pGuestStats->u32Processes);
420
421 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_HANDLES)
422 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_Handles, pGuestStats->u32Handles);
423
424 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEMORY_LOAD)
425 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_MemoryLoad, pGuestStats->u32MemoryLoad);
426
427 /* Note that reported values are in pages; upper layers expect them in megabytes */
428 Assert(pGuestStats->u32PageSize == 4096);
429 if (pGuestStats->u32PageSize != 4096)
430 pGuestStats->u32PageSize = 4096;
431
432 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_TOTAL)
433 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_PhysMemTotal, (pGuestStats->u32PhysMemTotal + (_1M/pGuestStats->u32PageSize)-1) / (_1M/pGuestStats->u32PageSize));
434
435 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_AVAIL)
436 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_PhysMemAvailable, pGuestStats->u32PhysMemAvail / (_1M/pGuestStats->u32PageSize));
437
438 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PHYS_MEM_BALLOON)
439 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_PhysMemBalloon, pGuestStats->u32PhysMemBalloon / (_1M/pGuestStats->u32PageSize));
440
441 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEM_COMMIT_TOTAL)
442 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_MemCommitTotal, pGuestStats->u32MemCommitTotal / (_1M/pGuestStats->u32PageSize));
443
444 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEM_KERNEL_TOTAL)
445 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_MemKernelTotal, pGuestStats->u32MemKernelTotal / (_1M/pGuestStats->u32PageSize));
446
447 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEM_KERNEL_PAGED)
448 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_MemKernelPaged, pGuestStats->u32MemKernelPaged / (_1M/pGuestStats->u32PageSize));
449
450 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEM_KERNEL_NONPAGED)
451 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_MemKernelNonpaged, pGuestStats->u32MemKernelNonPaged / (_1M/pGuestStats->u32PageSize));
452
453 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_MEM_SYSTEM_CACHE)
454 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_MemSystemCache, pGuestStats->u32MemSystemCache / (_1M/pGuestStats->u32PageSize));
455
456 if (pGuestStats->u32StatCaps & VBOX_GUEST_STAT_PAGE_FILE_SIZE)
457 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_PageFileSize, pGuestStats->u32PageFileSize / (_1M/pGuestStats->u32PageSize));
458
459 /* increase sample number */
460 ULONG sample;
461
462 int rc = guest->GetStatistic(0, GuestStatisticType_SampleNumber, &sample);
463 if (SUCCEEDED(rc))
464 guest->SetStatistic(pGuestStats->u32CpuId, GuestStatisticType_SampleNumber, sample+1);
465
466 return VINF_SUCCESS;
467}
468
469/**
470 * Inflate or deflate the memory balloon
471 *
472 * @returns VBox status code.
473 * @param pInterface Pointer to this interface.
474 * @param fInflate Inflate or deflate
475 * @param cPages Number of physical pages (must be 256 as we allocate in 1 MB chunks)
476 * @param aPhysPage Array of physical page addresses
477 * @thread The emulation thread.
478 */
479DECLCALLBACK(int) vmmdevChangeMemoryBalloon(PPDMIVMMDEVCONNECTOR pInterface, bool fInflate, uint32_t cPages, RTGCPHYS *aPhysPage)
480{
481 if ( cPages != VMMDEV_MEMORY_BALLOON_CHUNK_PAGES
482 || !aPhysPage)
483 return VERR_INVALID_PARAMETER;
484
485 Log(("vmmdevChangeMemoryBalloon @todo\n"));
486 return VINF_SUCCESS;
487}
488
489#ifdef VBOX_HGCM
490
491/* HGCM connector interface */
492
493static DECLCALLBACK(int) iface_hgcmConnect (PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, PHGCMSERVICELOCATION pServiceLocation, uint32_t *pu32ClientID)
494{
495 LogSunlover(("Enter\n"));
496
497 PDRVMAINVMMDEV pDrv = PDMIHGCMCONNECTOR_2_MAINVMMDEV(pInterface);
498
499 if ( !pServiceLocation
500 || ( pServiceLocation->type != VMMDevHGCMLoc_LocalHost
501 && pServiceLocation->type != VMMDevHGCMLoc_LocalHost_Existing))
502 {
503 return VERR_INVALID_PARAMETER;
504 }
505
506 return HGCMGuestConnect (pDrv->pHGCMPort, pCmd, pServiceLocation->u.host.achName, pu32ClientID);
507}
508
509static DECLCALLBACK(int) iface_hgcmDisconnect (PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID)
510{
511 LogSunlover(("Enter\n"));
512
513 PDRVMAINVMMDEV pDrv = PDMIHGCMCONNECTOR_2_MAINVMMDEV(pInterface);
514
515 return HGCMGuestDisconnect (pDrv->pHGCMPort, pCmd, u32ClientID);
516}
517
518static DECLCALLBACK(int) iface_hgcmCall (PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID, uint32_t u32Function,
519 uint32_t cParms, PVBOXHGCMSVCPARM paParms)
520{
521 LogSunlover(("Enter\n"));
522
523 PDRVMAINVMMDEV pDrv = PDMIHGCMCONNECTOR_2_MAINVMMDEV(pInterface);
524
525 return HGCMGuestCall (pDrv->pHGCMPort, pCmd, u32ClientID, u32Function, cParms, paParms);
526}
527
528/**
529 * Execute state save operation.
530 *
531 * @returns VBox status code.
532 * @param pDrvIns Driver instance of the driver which registered the data unit.
533 * @param pSSM SSM operation handle.
534 */
535static DECLCALLBACK(int) iface_hgcmSave(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM)
536{
537 LogSunlover(("Enter\n"));
538 return HGCMHostSaveState (pSSM);
539}
540
541
542/**
543 * Execute state load operation.
544 *
545 * @returns VBox status code.
546 * @param pDrvIns Driver instance of the driver which registered the data unit.
547 * @param pSSM SSM operation handle.
548 * @param u32Version Data layout version.
549 */
550static DECLCALLBACK(int) iface_hgcmLoad(PPDMDRVINS pDrvIns, PSSMHANDLE pSSM, uint32_t u32Version)
551{
552 LogFlowFunc(("Enter\n"));
553
554 if (u32Version != HGCM_SSM_VERSION)
555 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
556
557 return HGCMHostLoadState (pSSM);
558}
559
560int VMMDev::hgcmLoadService (const char *pszServiceName, const char *pszServiceLibrary)
561{
562 return HGCMHostLoad (pszServiceName, pszServiceLibrary);
563}
564
565int VMMDev::hgcmHostCall (const char *pszServiceName, uint32_t u32Function,
566 uint32_t cParms, PVBOXHGCMSVCPARM paParms)
567{
568 return HGCMHostCall (pszServiceName, u32Function, cParms, paParms);
569}
570#endif /* HGCM */
571
572
573/**
574 * Queries an interface to the driver.
575 *
576 * @returns Pointer to interface.
577 * @returns NULL if the interface was not supported by the driver.
578 * @param pInterface Pointer to this interface structure.
579 * @param enmInterface The requested interface identification.
580 */
581DECLCALLBACK(void *) VMMDev::drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface)
582{
583 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
584 PDRVMAINVMMDEV pDrv = PDMINS2DATA(pDrvIns, PDRVMAINVMMDEV);
585 switch (enmInterface)
586 {
587 case PDMINTERFACE_BASE:
588 return &pDrvIns->IBase;
589 case PDMINTERFACE_VMMDEV_CONNECTOR:
590 return &pDrv->Connector;
591#ifdef VBOX_HGCM
592 case PDMINTERFACE_HGCM_CONNECTOR:
593 return &pDrv->HGCMConnector;
594#endif
595 default:
596 return NULL;
597 }
598}
599
600/**
601 * Destruct a VMMDev driver instance.
602 *
603 * @returns VBox status.
604 * @param pDrvIns The driver instance data.
605 */
606DECLCALLBACK(void) VMMDev::drvDestruct(PPDMDRVINS pDrvIns)
607{
608 PDRVMAINVMMDEV pData = PDMINS2DATA(pDrvIns, PDRVMAINVMMDEV);
609 LogFlow(("VMMDev::drvDestruct: iInstance=%d\n", pDrvIns->iInstance));
610#ifdef VBOX_HGCM
611 /* HGCM is shut down on the VMMDev destructor. */
612#endif /* VBOX_HGCM */
613 if (pData->pVMMDev)
614 {
615 pData->pVMMDev->mpDrv = NULL;
616 }
617}
618
619/**
620 * Reset notification.
621 *
622 * @returns VBox status.
623 * @param pDrvIns The driver instance data.
624 */
625DECLCALLBACK(void) VMMDev::drvReset(PPDMDRVINS pDrvIns)
626{
627 LogFlow(("VMMDev::drvReset: iInstance=%d\n", pDrvIns->iInstance));
628#ifdef VBOX_HGCM
629 HGCMHostReset ();
630#endif /* VBOX_HGCM */
631}
632
633/**
634 * Construct a VMMDev driver instance.
635 *
636 * @returns VBox status.
637 * @param pDrvIns The driver instance data.
638 * If the registration structure is needed, pDrvIns->pDrvReg points to it.
639 * @param pCfgHandle Configuration node handle for the driver. Use this to obtain the configuration
640 * of the driver instance. It's also found in pDrvIns->pCfgHandle, but like
641 * iInstance it's expected to be used a bit in this function.
642 */
643DECLCALLBACK(int) VMMDev::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle)
644{
645 PDRVMAINVMMDEV pData = PDMINS2DATA(pDrvIns, PDRVMAINVMMDEV);
646 LogFlow(("Keyboard::drvConstruct: iInstance=%d\n", pDrvIns->iInstance));
647
648 /*
649 * Validate configuration.
650 */
651 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0OpenGLEnabled\0"))
652 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
653 PPDMIBASE pBaseIgnore;
654 int rc = pDrvIns->pDrvHlp->pfnAttach(pDrvIns, &pBaseIgnore);
655 if (rc != VERR_PDM_NO_ATTACHED_DRIVER)
656 {
657 AssertMsgFailed(("Configuration error: Not possible to attach anything to this driver!\n"));
658 return VERR_PDM_DRVINS_NO_ATTACH;
659 }
660
661 /*
662 * IBase.
663 */
664 pDrvIns->IBase.pfnQueryInterface = VMMDev::drvQueryInterface;
665
666 pData->Connector.pfnUpdateGuestVersion = vmmdevUpdateGuestVersion;
667 pData->Connector.pfnUpdateGuestCapabilities = vmmdevUpdateGuestCapabilities;
668 pData->Connector.pfnUpdateMouseCapabilities = vmmdevUpdateMouseCapabilities;
669 pData->Connector.pfnUpdatePointerShape = vmmdevUpdatePointerShape;
670 pData->Connector.pfnVideoAccelEnable = iface_VideoAccelEnable;
671 pData->Connector.pfnVideoAccelFlush = iface_VideoAccelFlush;
672 pData->Connector.pfnVideoModeSupported = vmmdevVideoModeSupported;
673 pData->Connector.pfnGetHeightReduction = vmmdevGetHeightReduction;
674 pData->Connector.pfnSetCredentialsJudgementResult = vmmdevSetCredentialsJudgementResult;
675 pData->Connector.pfnSetVisibleRegion = vmmdevSetVisibleRegion;
676 pData->Connector.pfnQueryVisibleRegion = vmmdevQueryVisibleRegion;
677 pData->Connector.pfnReportStatistics = vmmdevReportStatistics;
678 pData->Connector.pfnQueryStatisticsInterval = vmmdevQueryStatisticsInterval;
679 pData->Connector.pfnChangeMemoryBalloon = vmmdevChangeMemoryBalloon;
680
681#ifdef VBOX_HGCM
682 pData->HGCMConnector.pfnConnect = iface_hgcmConnect;
683 pData->HGCMConnector.pfnDisconnect = iface_hgcmDisconnect;
684 pData->HGCMConnector.pfnCall = iface_hgcmCall;
685#endif
686
687 /*
688 * Get the IVMMDevPort interface of the above driver/device.
689 */
690 pData->pUpPort = (PPDMIVMMDEVPORT)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_VMMDEV_PORT);
691 if (!pData->pUpPort)
692 {
693 AssertMsgFailed(("Configuration error: No VMMDev port interface above!\n"));
694 return VERR_PDM_MISSING_INTERFACE_ABOVE;
695 }
696
697#ifdef VBOX_HGCM
698 pData->pHGCMPort = (PPDMIHGCMPORT)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_HGCM_PORT);
699 if (!pData->pHGCMPort)
700 {
701 AssertMsgFailed(("Configuration error: No HGCM port interface above!\n"));
702 return VERR_PDM_MISSING_INTERFACE_ABOVE;
703 }
704#endif
705
706 /*
707 * Get the Console object pointer and update the mpDrv member.
708 */
709 void *pv;
710 rc = CFGMR3QueryPtr(pCfgHandle, "Object", &pv);
711 if (VBOX_FAILURE(rc))
712 {
713 AssertMsgFailed(("Configuration error: No/bad \"Object\" value! rc=%Vrc\n", rc));
714 return rc;
715 }
716
717 pData->pVMMDev = (VMMDev*)pv; /** @todo Check this cast! */
718 pData->pVMMDev->mpDrv = pData;
719
720#ifdef VBOX_HGCM
721 rc = pData->pVMMDev->hgcmLoadService ("VBoxSharedFolders", "VBoxSharedFolders");
722 pData->pVMMDev->fSharedFolderActive = VBOX_SUCCESS(rc);
723 if (VBOX_SUCCESS(rc))
724 {
725 PPDMLED pLed;
726 PPDMILEDPORTS pLedPort;
727
728 LogRel(("Shared Folders service loaded.\n"));
729 pLedPort = (PPDMILEDPORTS)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_LED_PORTS);
730 if (!pLedPort)
731 {
732 AssertMsgFailed(("Configuration error: No LED port interface above!\n"));
733 return VERR_PDM_MISSING_INTERFACE_ABOVE;
734 }
735 rc = pLedPort->pfnQueryStatusLed(pLedPort, 0, &pLed);
736 if (VBOX_SUCCESS(rc) && pLed)
737 {
738 VBOXHGCMSVCPARM parm;
739
740 parm.type = VBOX_HGCM_SVC_PARM_PTR;
741 parm.u.pointer.addr = pLed;
742 parm.u.pointer.size = sizeof(*pLed);
743
744 rc = HGCMHostCall("VBoxSharedFolders", SHFL_FN_SET_STATUS_LED, 1, &parm);
745 }
746 else
747 AssertMsgFailed(("pfnQueryStatusLed failed with %Vrc (pLed=%x)\n", rc, pLed));
748 }
749 else
750 {
751 LogRel(("Failed to load Shared Folders service %Vrc\n", rc));
752 }
753
754 bool fEnabled;
755
756 /* Check CFGM option. */
757 rc = CFGMR3QueryBool(pCfgHandle, "OpenGLEnabled", &fEnabled);
758 if ( VBOX_SUCCESS(rc)
759 && fEnabled)
760 {
761 rc = pData->pVMMDev->hgcmLoadService ("VBoxSharedOpenGL", "VBoxSharedOpenGL");
762 if (VBOX_SUCCESS(rc))
763 {
764 LogRel(("Shared OpenGL service loaded.\n"));
765 }
766 else
767 {
768 LogRel(("Failed to load Shared OpenGL service %Vrc\n", rc));
769 }
770 }
771
772 pDrvIns->pDrvHlp->pfnSSMRegister(pDrvIns, "HGCM", 0, HGCM_SSM_VERSION, 4096/* bad guess */, NULL, iface_hgcmSave, NULL, NULL, iface_hgcmLoad, NULL);
773#endif /* VBOX_HGCM */
774
775 return VINF_SUCCESS;
776}
777
778
779/**
780 * VMMDevice driver registration record.
781 */
782const PDMDRVREG VMMDev::DrvReg =
783{
784 /* u32Version */
785 PDM_DRVREG_VERSION,
786 /* szDriverName */
787 "MainVMMDev",
788 /* pszDescription */
789 "Main VMMDev driver (Main as in the API).",
790 /* fFlags */
791 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
792 /* fClass. */
793 PDM_DRVREG_CLASS_VMMDEV,
794 /* cMaxInstances */
795 ~0,
796 /* cbInstance */
797 sizeof(DRVMAINVMMDEV),
798 /* pfnConstruct */
799 VMMDev::drvConstruct,
800 /* pfnDestruct */
801 VMMDev::drvDestruct,
802 /* pfnIOCtl */
803 NULL,
804 /* pfnPowerOn */
805 NULL,
806 /* pfnReset */
807 VMMDev::drvReset,
808 /* pfnSuspend */
809 NULL,
810 /* pfnResume */
811 NULL,
812 /* pfnDetach */
813 NULL
814};
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