VirtualBox

source: vbox/trunk/src/VBox/Main/include/VMMDev.h@ 75955

Last change on this file since 75955 was 75955, checked in by vboxsync, 6 years ago

Main: Load VBoxGuestPropSvc from the VMMDev driver.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1/* $Id: VMMDev.h 75955 2018-12-04 21:08:55Z 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.215389.xyz. 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#ifndef ____H_VMMDEV
19#define ____H_VMMDEV
20
21#include "VirtualBoxBase.h"
22#include <VBox/vmm/pdmdrv.h>
23#include <iprt/asm.h>
24
25class Console;
26
27class VMMDevMouseInterface
28{
29public:
30 virtual PPDMIVMMDEVPORT getVMMDevPort() = 0;
31};
32
33class VMMDev : public VMMDevMouseInterface
34{
35public:
36 VMMDev(Console *console);
37 virtual ~VMMDev();
38 static const PDMDRVREG DrvReg;
39 /** Pointer to the associated VMMDev driver. */
40 struct DRVMAINVMMDEV *mpDrv;
41
42 bool fSharedFolderActive;
43 bool isShFlActive()
44 {
45 return fSharedFolderActive;
46 }
47
48 Console *getParent()
49 {
50 return mParent;
51 }
52
53 int WaitCredentialsJudgement (uint32_t u32Timeout, uint32_t *pu32GuestFlags);
54 int SetCredentialsJudgementResult (uint32_t u32Flags);
55
56 PPDMIVMMDEVPORT getVMMDevPort();
57
58#ifdef VBOX_WITH_HGCM
59 int hgcmLoadService (const char *pszServiceLibrary, const char *pszServiceName);
60 int hgcmHostCall (const char *pszServiceName, uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms);
61# ifdef VBOX_WITH_CRHGSMI
62 int hgcmHostSvcHandleCreate (const char *pszServiceName, HGCMCVSHANDLE * phSvc);
63 int hgcmHostSvcHandleDestroy (HGCMCVSHANDLE hSvc);
64 int hgcmHostFastCallAsync (HGCMCVSHANDLE hSvc, uint32_t function, PVBOXHGCMSVCPARM pParm, PHGCMHOSTFASTCALLCB pfnCompletion, void *pvCompletion);
65# endif
66 void hgcmShutdown(bool fUvmIsInvalid = false);
67
68 bool hgcmIsActive (void) { return ASMAtomicReadBool(&m_fHGCMActive); }
69#endif /* VBOX_WITH_HGCM */
70
71private:
72#ifdef VBOX_WITH_HGCM
73# ifdef VBOX_WITH_GUEST_PROPS
74 void i_guestPropSetMultiple(void *names, void *values, void *timestamps, void *flags);
75 void i_guestPropSet(const char *pszName, const char *pszValue, const char *pszFlags);
76 int i_guestPropSetGlobalPropertyFlags(uint32_t fFlags);
77 int i_guestPropLoadAndConfigure();
78# endif
79#endif
80
81 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID);
82 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
83 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
84 static DECLCALLBACK(void) drvReset(PPDMDRVINS pDrvIns);
85
86 Console * const mParent;
87
88 RTSEMEVENT mCredentialsEvent;
89 uint32_t mu32CredentialsFlags;
90
91#ifdef VBOX_WITH_HGCM
92 bool volatile m_fHGCMActive;
93#endif /* VBOX_WITH_HGCM */
94};
95
96#endif // !____H_VMMDEV
97/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette