VirtualBox

source: vbox/trunk/src/VBox/Main/include/GuestImpl.h@ 73768

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

Guest Control/Main: Use the session ID for Guest::i_sessionRemove() and avoid searching for it (as the primary key in the session map is the ID anyway).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.4 KB
Line 
1/* $Id: GuestImpl.h 71634 2018-04-03 17:45:44Z vboxsync $ */
2/** @file
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2018 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#ifndef ____H_GUESTIMPL
19#define ____H_GUESTIMPL
20
21#include "GuestWrap.h"
22#include "VirtualBoxBase.h"
23#include <iprt/list.h>
24#include <iprt/time.h>
25#include <VBox/ostypes.h>
26#include <VBox/vmm/stam.h>
27
28#include "AdditionsFacilityImpl.h"
29#ifdef VBOX_WITH_GUEST_CONTROL
30# include "GuestCtrlImplPrivate.h"
31# include "GuestSessionImpl.h"
32#endif
33#ifdef VBOX_WITH_DRAG_AND_DROP
34# include "GuestDnDSourceImpl.h"
35# include "GuestDnDTargetImpl.h"
36#endif
37#include "EventImpl.h"
38#include "HGCM.h"
39
40typedef enum
41{
42 GUESTSTATTYPE_CPUUSER = 0,
43 GUESTSTATTYPE_CPUKERNEL = 1,
44 GUESTSTATTYPE_CPUIDLE = 2,
45 GUESTSTATTYPE_MEMTOTAL = 3,
46 GUESTSTATTYPE_MEMFREE = 4,
47 GUESTSTATTYPE_MEMBALLOON = 5,
48 GUESTSTATTYPE_MEMCACHE = 6,
49 GUESTSTATTYPE_PAGETOTAL = 7,
50 GUESTSTATTYPE_PAGEFREE = 8,
51 GUESTSTATTYPE_MAX = 9
52} GUESTSTATTYPE;
53
54class Console;
55
56class ATL_NO_VTABLE Guest :
57 public GuestWrap
58{
59public:
60
61 DECLARE_EMPTY_CTOR_DTOR (Guest)
62
63 HRESULT FinalConstruct();
64 void FinalRelease();
65
66 // Public initializer/uninitializer for internal purposes only.
67 HRESULT init(Console *aParent);
68 void uninit();
69
70
71public:
72 /** @name Static internal methods.
73 * @{ */
74#ifdef VBOX_WITH_GUEST_CONTROL
75 /** Static callback for handling guest control notifications. */
76 static DECLCALLBACK(int) i_notifyCtrlDispatcher(void *pvExtension, uint32_t u32Function, void *pvData, uint32_t cbData);
77#endif
78 static DECLCALLBACK(void) i_staticUpdateStats(RTTIMERLR hTimerLR, void *pvUser, uint64_t iTick);
79 /** @} */
80
81public:
82 /** @name Public internal methods.
83 * @{ */
84 void i_enableVMMStatistics(BOOL aEnable) { mCollectVMMStats = aEnable; };
85 void i_setAdditionsInfo(const com::Utf8Str &aInterfaceVersion, VBOXOSTYPE aOsType);
86 void i_setAdditionsInfo2(uint32_t a_uFullVersion, const char *a_pszName, uint32_t a_uRevision, uint32_t a_fFeatures);
87 bool i_facilityIsActive(VBoxGuestFacilityType enmFacility);
88 void i_facilityUpdate(VBoxGuestFacilityType a_enmFacility, VBoxGuestFacilityStatus a_enmStatus,
89 uint32_t a_fFlags, PCRTTIMESPEC a_pTimeSpecTS);
90 ComObjPtr<Console> i_getConsole(void) { return mParent; }
91 void i_setAdditionsStatus(VBoxGuestFacilityType a_enmFacility, VBoxGuestFacilityStatus a_enmStatus,
92 uint32_t a_fFlags, PCRTTIMESPEC a_pTimeSpecTS);
93 void i_onUserStateChange(Bstr aUser, Bstr aDomain, VBoxGuestUserState enmState, const uint8_t *puDetails, uint32_t cbDetails);
94 void i_setSupportedFeatures(uint32_t aCaps);
95 HRESULT i_setStatistic(ULONG aCpuId, GUESTSTATTYPE enmType, ULONG aVal);
96 BOOL i_isPageFusionEnabled();
97 void i_setCpuCount(uint32_t aCpus) { mCpus = aCpus; }
98 static HRESULT i_setErrorStatic(HRESULT aResultCode, const Utf8Str &aText)
99 {
100 return setErrorInternal(aResultCode, getStaticClassIID(), getStaticComponentName(), aText, false, true);
101 }
102 uint32_t i_getAdditionsRevision(void) { return mData.mAdditionsRevision; }
103 uint32_t i_getAdditionsVersion(void) { return mData.mAdditionsVersionFull; }
104 VBOXOSTYPE i_getGuestOSType(void) { return mData.mOSType; }
105#ifdef VBOX_WITH_GUEST_CONTROL
106 int i_dispatchToSession(PVBOXGUESTCTRLHOSTCBCTX pCtxCb, PVBOXGUESTCTRLHOSTCALLBACK pSvcCb);
107 int i_sessionRemove(uint32_t uSessionID);
108 int i_sessionCreate(const GuestSessionStartupInfo &ssInfo, const GuestCredentials &guestCreds,
109 ComObjPtr<GuestSession> &pGuestSession);
110 inline bool i_sessionExists(uint32_t uSessionID);
111
112#endif
113 /** @} */
114
115private:
116
117 // wrapped IGuest properties
118 HRESULT getOSTypeId(com::Utf8Str &aOSTypeId);
119 HRESULT getAdditionsRunLevel(AdditionsRunLevelType_T *aAdditionsRunLevel);
120 HRESULT getAdditionsVersion(com::Utf8Str &aAdditionsVersion);
121 HRESULT getAdditionsRevision(ULONG *aAdditionsRevision);
122 HRESULT getDnDSource(ComPtr<IGuestDnDSource> &aDnDSource);
123 HRESULT getDnDTarget(ComPtr<IGuestDnDTarget> &aDnDTarget);
124 HRESULT getEventSource(ComPtr<IEventSource> &aEventSource);
125 HRESULT getFacilities(std::vector<ComPtr<IAdditionsFacility> > &aFacilities);
126 HRESULT getSessions(std::vector<ComPtr<IGuestSession> > &aSessions);
127 HRESULT getMemoryBalloonSize(ULONG *aMemoryBalloonSize);
128 HRESULT setMemoryBalloonSize(ULONG aMemoryBalloonSize);
129 HRESULT getStatisticsUpdateInterval(ULONG *aStatisticsUpdateInterval);
130 HRESULT setStatisticsUpdateInterval(ULONG aStatisticsUpdateInterval);
131 HRESULT internalGetStatistics(ULONG *aCpuUser,
132 ULONG *aCpuKernel,
133 ULONG *aCpuIdle,
134 ULONG *aMemTotal,
135 ULONG *aMemFree,
136 ULONG *aMemBalloon,
137 ULONG *aMemShared,
138 ULONG *aMemCache,
139 ULONG *aPagedTotal,
140 ULONG *aMemAllocTotal,
141 ULONG *aMemFreeTotal,
142 ULONG *aMemBalloonTotal,
143 ULONG *aMemSharedTotal);
144 HRESULT getFacilityStatus(AdditionsFacilityType_T aFacility,
145 LONG64 *aTimestamp,
146 AdditionsFacilityStatus_T *aStatus);
147 HRESULT getAdditionsStatus(AdditionsRunLevelType_T aLevel,
148 BOOL *aActive);
149 HRESULT setCredentials(const com::Utf8Str &aUserName,
150 const com::Utf8Str &aPassword,
151 const com::Utf8Str &aDomain,
152 BOOL aAllowInteractiveLogon);
153
154 // wrapped IGuest methods
155 HRESULT createSession(const com::Utf8Str &aUser,
156 const com::Utf8Str &aPassword,
157 const com::Utf8Str &aDomain,
158 const com::Utf8Str &aSessionName,
159 ComPtr<IGuestSession> &aGuestSession);
160
161 HRESULT findSession(const com::Utf8Str &aSessionName,
162 std::vector<ComPtr<IGuestSession> > &aSessions);
163 HRESULT updateGuestAdditions(const com::Utf8Str &aSource,
164 const std::vector<com::Utf8Str> &aArguments,
165 const std::vector<AdditionsUpdateFlag_T> &aFlags,
166 ComPtr<IProgress> &aProgress);
167
168
169 /** @name Private internal methods.
170 * @{ */
171 void i_updateStats(uint64_t iTick);
172 static DECLCALLBACK(int) i_staticEnumStatsCallback(const char *pszName, STAMTYPE enmType, void *pvSample,
173 STAMUNIT enmUnit, STAMVISIBILITY enmVisiblity,
174 const char *pszDesc, void *pvUser);
175
176 /** @} */
177
178 typedef std::map< AdditionsFacilityType_T, ComObjPtr<AdditionsFacility> > FacilityMap;
179 typedef std::map< AdditionsFacilityType_T, ComObjPtr<AdditionsFacility> >::iterator FacilityMapIter;
180 typedef std::map< AdditionsFacilityType_T, ComObjPtr<AdditionsFacility> >::const_iterator FacilityMapIterConst;
181
182#ifdef VBOX_WITH_GUEST_CONTROL
183 /** Map for keeping the guest sessions. The primary key marks the guest session ID. */
184 typedef std::map <uint32_t, ComObjPtr<GuestSession> > GuestSessions;
185#endif
186
187 struct Data
188 {
189 Data() : mOSType(VBOXOSTYPE_Unknown), mAdditionsRunLevel(AdditionsRunLevelType_None)
190 , mAdditionsVersionFull(0), mAdditionsRevision(0), mAdditionsFeatures(0)
191 { }
192
193 VBOXOSTYPE mOSType; /**@< For internal used. VBOXOSTYPE_Unknown if not reported. */
194 Utf8Str mOSTypeId;
195 FacilityMap mFacilityMap;
196 AdditionsRunLevelType_T mAdditionsRunLevel;
197 uint32_t mAdditionsVersionFull;
198 Utf8Str mAdditionsVersionNew;
199 uint32_t mAdditionsRevision;
200 uint32_t mAdditionsFeatures;
201 Utf8Str mInterfaceVersion;
202#ifdef VBOX_WITH_GUEST_CONTROL
203 GuestSessions mGuestSessions;
204#endif
205 } mData;
206
207 ULONG mMemoryBalloonSize;
208 ULONG mStatUpdateInterval;
209 uint64_t mNetStatRx;
210 uint64_t mNetStatTx;
211 uint64_t mNetStatLastTs;
212 ULONG mCurrentGuestStat[GUESTSTATTYPE_MAX];
213 ULONG mCurrentGuestCpuUserStat[VMM_MAX_CPU_COUNT];
214 ULONG mCurrentGuestCpuKernelStat[VMM_MAX_CPU_COUNT];
215 ULONG mCurrentGuestCpuIdleStat[VMM_MAX_CPU_COUNT];
216 ULONG mVmValidStats;
217 BOOL mCollectVMMStats;
218 BOOL mfPageFusionEnabled;
219 uint32_t mCpus;
220
221 const ComObjPtr<Console> mParent;
222
223 /**
224 * This can safely be used without holding any locks.
225 * An AutoCaller suffices to prevent it being destroy while in use and
226 * internally there is a lock providing the necessary serialization.
227 */
228 const ComObjPtr<EventSource> mEventSource;
229#ifdef VBOX_WITH_GUEST_CONTROL
230 /** General extension callback for guest control. */
231 HGCMSVCEXTHANDLE mhExtCtrl;
232#endif
233
234#ifdef VBOX_WITH_DRAG_AND_DROP
235 /** The guest's DnD source. */
236 const ComObjPtr<GuestDnDSource> mDnDSource;
237 /** The guest's DnD target. */
238 const ComObjPtr<GuestDnDTarget> mDnDTarget;
239#endif
240
241 RTTIMERLR mStatTimer;
242 uint32_t mMagic; /** @todo r=andy Rename this to something more meaningful. */
243};
244#define GUEST_MAGIC 0xCEED2006u /** @todo r=andy Not very well defined!? */
245
246#endif // ____H_GUESTIMPL
247
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use