VirtualBox

source: vbox/trunk/src/VBox/Main/include/ConsoleImpl.h@ 98091

Last change on this file since 98091 was 98091, checked in by vboxsync, 2 years ago

Main/Console: LED related cleanups. bugref:9892

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 53.6 KB
Line 
1/* $Id: ConsoleImpl.h 98091 2023-01-16 10:18:24Z vboxsync $ */
2/** @file
3 * VBox Console COM Class definition
4 */
5
6/*
7 * Copyright (C) 2005-2022 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#ifndef MAIN_INCLUDED_ConsoleImpl_h
29#define MAIN_INCLUDED_ConsoleImpl_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34#include "VirtualBoxBase.h"
35#include "VBox/com/array.h"
36#include "EventImpl.h"
37#include "SecretKeyStore.h"
38#include "ConsoleWrap.h"
39#ifdef VBOX_WITH_RECORDING
40# include "Recording.h"
41#endif
42#ifdef VBOX_WITH_CLOUD_NET
43#include "CloudGateway.h"
44#endif /* VBOX_WITH_CLOUD_NET */
45
46class Guest;
47class Keyboard;
48class Mouse;
49class Display;
50class MachineDebugger;
51class TeleporterStateSrc;
52class OUSBDevice;
53class RemoteUSBDevice;
54class SharedFolder;
55class VRDEServerInfo;
56class EmulatedUSB;
57class AudioVRDE;
58#ifdef VBOX_WITH_AUDIO_RECORDING
59class AudioVideoRec;
60#endif
61#ifdef VBOX_WITH_USB_CARDREADER
62class UsbCardReader;
63#endif
64class ConsoleVRDPServer;
65class VMMDev;
66class Progress;
67class BusAssignmentManager;
68COM_STRUCT_OR_CLASS(IEventListener);
69#ifdef VBOX_WITH_EXTPACK
70class ExtPackManager;
71#endif
72class VMMDevMouseInterface;
73class DisplayMouseInterface;
74class VMPowerUpTask;
75class VMPowerDownTask;
76class NvramStore;
77
78#include <iprt/uuid.h>
79#include <iprt/log.h>
80#include <iprt/memsafer.h>
81#include <VBox/RemoteDesktop/VRDE.h>
82#include <VBox/vmm/pdmdrv.h>
83#ifdef VBOX_WITH_GUEST_PROPS
84# include <VBox/HostServices/GuestPropertySvc.h> /* For the property notification callback */
85#endif
86#ifdef VBOX_WITH_USB
87# include <VBox/vrdpusb.h>
88#endif
89#include <VBox/VBoxCryptoIf.h>
90
91#if defined(VBOX_WITH_GUEST_PROPS) || defined(VBOX_WITH_SHARED_CLIPBOARD) \
92 || defined(VBOX_WITH_DRAG_AND_DROP)
93# include "HGCM.h" /** @todo It should be possible to register a service
94 * extension using a VMMDev callback. */
95#endif
96
97struct VUSBIRHCONFIG;
98typedef struct VUSBIRHCONFIG *PVUSBIRHCONFIG;
99
100#include <list>
101#include <vector>
102
103// defines
104///////////////////////////////////////////////////////////////////////////////
105
106/**
107 * Checks the availability of the underlying VM device driver corresponding
108 * to the COM interface (IKeyboard, IMouse, IDisplay, etc.). When the driver is
109 * not available (NULL), sets error info and returns returns E_ACCESSDENIED.
110 * The translatable error message is defined in null context.
111 *
112 * Intended to used only within Console children (i.e. Keyboard, Mouse,
113 * Display, etc.).
114 *
115 * @param drv driver pointer to check (compare it with NULL)
116 */
117#define CHECK_CONSOLE_DRV(drv) \
118 do { \
119 if (!!(drv)) {} \
120 else return setError(E_ACCESSDENIED, Console::tr("The console is not powered up (%Rfn)"), __FUNCTION__); \
121 } while (0)
122
123// Console
124///////////////////////////////////////////////////////////////////////////////
125
126class ConsoleMouseInterface
127{
128public:
129 virtual ~ConsoleMouseInterface() { }
130 virtual VMMDevMouseInterface *i_getVMMDevMouseInterface(){return NULL;}
131 virtual DisplayMouseInterface *i_getDisplayMouseInterface(){return NULL;}
132 virtual void i_onMouseCapabilityChange(BOOL supportsAbsolute,
133 BOOL supportsRelative,
134 BOOL supportsTouchScreen,
135 BOOL supportsTouchPad,
136 BOOL needsHostCursor)
137 {
138 RT_NOREF(supportsAbsolute, supportsRelative, supportsTouchScreen, supportsTouchPad, needsHostCursor);
139 }
140};
141
142/** IConsole implementation class */
143class ATL_NO_VTABLE Console :
144 public ConsoleWrap,
145 public ConsoleMouseInterface
146{
147
148public:
149
150 DECLARE_COMMON_CLASS_METHODS(Console)
151
152 HRESULT FinalConstruct();
153 void FinalRelease();
154
155 // public initializers/uninitializers for internal purposes only
156 HRESULT initWithMachine(IMachine *aMachine, IInternalMachineControl *aControl, LockType_T aLockType);
157 void uninit();
158
159
160 // public methods for internal purposes only
161
162 /*
163 * Note: the following methods do not increase refcount. intended to be
164 * called only by the VM execution thread.
165 */
166
167 PCVMMR3VTABLE i_getVMMVTable() const RT_NOEXCEPT { return mpVMM; }
168 Guest *i_getGuest() const { return mGuest; }
169 Keyboard *i_getKeyboard() const { return mKeyboard; }
170 Mouse *i_getMouse() const { return mMouse; }
171 Display *i_getDisplay() const { return mDisplay; }
172 MachineDebugger *i_getMachineDebugger() const { return mDebugger; }
173#ifdef VBOX_WITH_AUDIO_VRDE
174 AudioVRDE *i_getAudioVRDE() const { return mAudioVRDE; }
175#endif
176#ifdef VBOX_WITH_RECORDING
177 int i_recordingCreate(void);
178 void i_recordingDestroy(void);
179 int i_recordingEnable(BOOL fEnable, util::AutoWriteLock *pAutoLock);
180 int i_recordingGetSettings(settings::RecordingSettings &recording);
181 int i_recordingStart(util::AutoWriteLock *pAutoLock = NULL);
182 int i_recordingStop(util::AutoWriteLock *pAutoLock = NULL);
183# ifdef VBOX_WITH_AUDIO_RECORDING
184 AudioVideoRec *i_recordingGetAudioDrv(void) const { return mRecording.mAudioRec; }
185# endif
186 RecordingContext *i_recordingGetContext(void) { return &mRecording.mCtx; }
187# ifdef VBOX_WITH_AUDIO_RECORDING
188 HRESULT i_recordingSendAudio(const void *pvData, size_t cbData, uint64_t uDurationMs);
189# endif
190#endif
191
192 const ComPtr<IMachine> &i_machine() const { return mMachine; }
193 const Bstr &i_getId() const { return mstrUuid; }
194
195 bool i_useHostClipboard() { return mfUseHostClipboard; }
196
197 /** Method is called only from ConsoleVRDPServer */
198 IVRDEServer *i_getVRDEServer() const { return mVRDEServer; }
199
200 ConsoleVRDPServer *i_consoleVRDPServer() const { return mConsoleVRDPServer; }
201
202 HRESULT i_updateMachineState(MachineState_T aMachineState);
203 HRESULT i_getNominalState(MachineState_T &aNominalState);
204 Utf8Str i_getAudioAdapterDeviceName(IAudioAdapter *aAudioAdapter);
205
206 // events from IInternalSessionControl
207 HRESULT i_onNetworkAdapterChange(INetworkAdapter *aNetworkAdapter, BOOL changeAdapter);
208 HRESULT i_onAudioAdapterChange(IAudioAdapter *aAudioAdapter);
209 HRESULT i_onHostAudioDeviceChange(IHostAudioDevice *aDevice, BOOL aNew, AudioDeviceState_T aState,
210 IVirtualBoxErrorInfo *aErrInfo);
211 HRESULT i_onSerialPortChange(ISerialPort *aSerialPort);
212 HRESULT i_onParallelPortChange(IParallelPort *aParallelPort);
213 HRESULT i_onStorageControllerChange(const com::Guid& aMachineId, const com::Utf8Str& aControllerName);
214 HRESULT i_onMediumChange(IMediumAttachment *aMediumAttachment, BOOL aForce);
215 HRESULT i_onCPUChange(ULONG aCPU, BOOL aRemove);
216 HRESULT i_onCPUExecutionCapChange(ULONG aExecutionCap);
217 HRESULT i_onClipboardModeChange(ClipboardMode_T aClipboardMode);
218 HRESULT i_onClipboardFileTransferModeChange(bool aEnabled);
219 HRESULT i_onDnDModeChange(DnDMode_T aDnDMode);
220 HRESULT i_onVRDEServerChange(BOOL aRestart);
221 HRESULT i_onRecordingChange(BOOL fEnable);
222 HRESULT i_onUSBControllerChange();
223 HRESULT i_onSharedFolderChange(BOOL aGlobal);
224 HRESULT i_onUSBDeviceAttach(IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError, ULONG aMaskedIfs,
225 const Utf8Str &aCaptureFilename);
226 HRESULT i_onUSBDeviceDetach(IN_BSTR aId, IVirtualBoxErrorInfo *aError);
227 HRESULT i_onBandwidthGroupChange(IBandwidthGroup *aBandwidthGroup);
228 HRESULT i_onStorageDeviceChange(IMediumAttachment *aMediumAttachment, BOOL aRemove, BOOL aSilent);
229 HRESULT i_onExtraDataChange(const Bstr &aMachineId, const Bstr &aKey, const Bstr &aVal);
230 HRESULT i_onGuestDebugControlChange(IGuestDebugControl *aGuestDebugControl);
231
232 HRESULT i_getGuestProperty(const Utf8Str &aName, Utf8Str *aValue, LONG64 *aTimestamp, Utf8Str *aFlags);
233 HRESULT i_setGuestProperty(const Utf8Str &aName, const Utf8Str &aValue, const Utf8Str &aFlags);
234 HRESULT i_deleteGuestProperty(const Utf8Str &aName);
235 HRESULT i_enumerateGuestProperties(const Utf8Str &aPatterns,
236 std::vector<Utf8Str> &aNames,
237 std::vector<Utf8Str> &aValues,
238 std::vector<LONG64> &aTimestamps,
239 std::vector<Utf8Str> &aFlags);
240 HRESULT i_onlineMergeMedium(IMediumAttachment *aMediumAttachment,
241 ULONG aSourceIdx, ULONG aTargetIdx,
242 IProgress *aProgress);
243 HRESULT i_reconfigureMediumAttachments(const std::vector<ComPtr<IMediumAttachment> > &aAttachments);
244 HRESULT i_onVMProcessPriorityChange(VMProcPriority_T priority);
245 int i_hgcmLoadService(const char *pszServiceLibrary, const char *pszServiceName);
246 VMMDev *i_getVMMDev() { return m_pVMMDev; }
247
248#ifdef VBOX_WITH_EXTPACK
249 ExtPackManager *i_getExtPackManager();
250#endif
251 EventSource *i_getEventSource() { return mEventSource; }
252#ifdef VBOX_WITH_USB_CARDREADER
253 UsbCardReader *i_getUsbCardReader() { return mUsbCardReader; }
254#endif
255
256 int i_VRDPClientLogon(uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain);
257 void i_VRDPClientStatusChange(uint32_t u32ClientId, const char *pszStatus);
258 void i_VRDPClientConnect(uint32_t u32ClientId);
259 void i_VRDPClientDisconnect(uint32_t u32ClientId, uint32_t fu32Intercepted);
260 void i_VRDPInterceptAudio(uint32_t u32ClientId);
261 void i_VRDPInterceptUSB(uint32_t u32ClientId, void **ppvIntercept);
262 void i_VRDPInterceptClipboard(uint32_t u32ClientId);
263
264 void i_processRemoteUSBDevices(uint32_t u32ClientId, VRDEUSBDEVICEDESC *pDevList, uint32_t cbDevList, bool fDescExt);
265 void i_reportVmStatistics(ULONG aValidStats, ULONG aCpuUser,
266 ULONG aCpuKernel, ULONG aCpuIdle,
267 ULONG aMemTotal, ULONG aMemFree,
268 ULONG aMemBalloon, ULONG aMemShared,
269 ULONG aMemCache, ULONG aPageTotal,
270 ULONG aAllocVMM, ULONG aFreeVMM,
271 ULONG aBalloonedVMM, ULONG aSharedVMM,
272 ULONG aVmNetRx, ULONG aVmNetTx)
273 {
274 mControl->ReportVmStatistics(aValidStats, aCpuUser, aCpuKernel, aCpuIdle,
275 aMemTotal, aMemFree, aMemBalloon, aMemShared,
276 aMemCache, aPageTotal, aAllocVMM, aFreeVMM,
277 aBalloonedVMM, aSharedVMM, aVmNetRx, aVmNetTx);
278 }
279 void i_enableVMMStatistics(BOOL aEnable);
280
281 HRESULT i_pause(Reason_T aReason);
282 HRESULT i_resume(Reason_T aReason, AutoWriteLock &alock);
283 HRESULT i_saveState(Reason_T aReason, const ComPtr<IProgress> &aProgress,
284 const ComPtr<ISnapshot> &aSnapshot,
285 const Utf8Str &aStateFilePath, bool fPauseVM, bool &fLeftPaused);
286 HRESULT i_cancelSaveState();
287
288 // callback callers (partly; for some events console callbacks are notified
289 // directly from IInternalSessionControl event handlers declared above)
290 void i_onMousePointerShapeChange(bool fVisible, bool fAlpha,
291 uint32_t xHot, uint32_t yHot,
292 uint32_t width, uint32_t height,
293 const uint8_t *pu8Shape,
294 uint32_t cbShape);
295 void i_onMouseCapabilityChange(BOOL supportsAbsolute, BOOL supportsRelative,
296 BOOL supportsTouchScreen, BOOL supportsTouchPad,
297 BOOL needsHostCursor);
298 void i_onStateChange(MachineState_T aMachineState);
299 void i_onAdditionsStateChange();
300 void i_onAdditionsOutdated();
301 void i_onKeyboardLedsChange(bool fNumLock, bool fCapsLock, bool fScrollLock);
302 void i_onUSBDeviceStateChange(IUSBDevice *aDevice, bool aAttached,
303 IVirtualBoxErrorInfo *aError);
304 void i_onRuntimeError(BOOL aFatal, IN_BSTR aErrorID, IN_BSTR aMessage);
305 HRESULT i_onShowWindow(BOOL aCheck, BOOL *aCanShow, LONG64 *aWinId);
306 void i_onVRDEServerInfoChange();
307 HRESULT i_sendACPIMonitorHotPlugEvent();
308
309 static const PDMDRVREG DrvStatusReg;
310
311 static HRESULT i_setErrorStatic(HRESULT aResultCode, const char *pcsz, ...);
312 static HRESULT i_setErrorStaticBoth(HRESULT aResultCode, int vrc, const char *pcsz, ...);
313 HRESULT i_setInvalidMachineStateError();
314
315 static const char *i_storageControllerTypeToStr(StorageControllerType_T enmCtrlType);
316 static HRESULT i_storageBusPortDeviceToLun(StorageBus_T enmBus, LONG port, LONG device, unsigned &uLun);
317 // Called from event listener
318 HRESULT i_onNATRedirectRuleChanged(ULONG ulInstance, BOOL aNatRuleRemove,
319 NATProtocol_T aProto, IN_BSTR aHostIp, LONG aHostPort, IN_BSTR aGuestIp, LONG aGuestPort);
320 HRESULT i_onNATDnsChanged();
321
322 // Mouse interface
323 VMMDevMouseInterface *i_getVMMDevMouseInterface();
324 DisplayMouseInterface *i_getDisplayMouseInterface();
325
326 EmulatedUSB *i_getEmulatedUSB(void) { return mEmulatedUSB; }
327
328 /**
329 * Sets the disk encryption keys.
330 *
331 * @returns COM status code.
332 * @param strCfg The config for the disks.
333 *
334 * @note One line in the config string contains all required data for one disk.
335 * The format for one disk is some sort of comma separated value using
336 * key=value pairs.
337 * There are two keys defined at the moment:
338 * - uuid: The uuid of the base image the key is for (with or without)
339 * the curly braces.
340 * - dek: The data encryption key in base64 encoding
341 */
342 HRESULT i_setDiskEncryptionKeys(const Utf8Str &strCfg);
343
344 int i_retainCryptoIf(PCVBOXCRYPTOIF *ppCryptoIf);
345 int i_releaseCryptoIf(PCVBOXCRYPTOIF pCryptoIf);
346 HRESULT i_unloadCryptoIfModule(void);
347
348#ifdef VBOX_WITH_GUEST_PROPS
349 // VMMDev needs:
350 HRESULT i_pullGuestProperties(ComSafeArrayOut(BSTR, names), ComSafeArrayOut(BSTR, values),
351 ComSafeArrayOut(LONG64, timestamps), ComSafeArrayOut(BSTR, flags));
352 static DECLCALLBACK(int) i_doGuestPropNotification(void *pvExtension, uint32_t, void *pvParms, uint32_t cbParms);
353#endif
354
355private:
356
357 // wrapped IConsole properties
358 HRESULT getMachine(ComPtr<IMachine> &aMachine);
359 HRESULT getState(MachineState_T *aState);
360 HRESULT getGuest(ComPtr<IGuest> &aGuest);
361 HRESULT getKeyboard(ComPtr<IKeyboard> &aKeyboard);
362 HRESULT getMouse(ComPtr<IMouse> &aMouse);
363 HRESULT getDisplay(ComPtr<IDisplay> &aDisplay);
364 HRESULT getDebugger(ComPtr<IMachineDebugger> &aDebugger);
365 HRESULT getUSBDevices(std::vector<ComPtr<IUSBDevice> > &aUSBDevices);
366 HRESULT getRemoteUSBDevices(std::vector<ComPtr<IHostUSBDevice> > &aRemoteUSBDevices);
367 HRESULT getSharedFolders(std::vector<ComPtr<ISharedFolder> > &aSharedFolders);
368 HRESULT getVRDEServerInfo(ComPtr<IVRDEServerInfo> &aVRDEServerInfo);
369 HRESULT getEventSource(ComPtr<IEventSource> &aEventSource);
370 HRESULT getAttachedPCIDevices(std::vector<ComPtr<IPCIDeviceAttachment> > &aAttachedPCIDevices);
371 HRESULT getUseHostClipboard(BOOL *aUseHostClipboard);
372 HRESULT setUseHostClipboard(BOOL aUseHostClipboard);
373 HRESULT getEmulatedUSB(ComPtr<IEmulatedUSB> &aEmulatedUSB);
374
375 // wrapped IConsole methods
376 HRESULT powerUp(ComPtr<IProgress> &aProgress);
377 HRESULT powerUpPaused(ComPtr<IProgress> &aProgress);
378 HRESULT powerDown(ComPtr<IProgress> &aProgress);
379 HRESULT reset();
380 HRESULT pause();
381 HRESULT resume();
382 HRESULT powerButton();
383 HRESULT sleepButton();
384 HRESULT getPowerButtonHandled(BOOL *aHandled);
385 HRESULT getGuestEnteredACPIMode(BOOL *aEntered);
386 HRESULT getDeviceActivity(const std::vector<DeviceType_T> &aType,
387 std::vector<DeviceActivity_T> &aActivity);
388 HRESULT attachUSBDevice(const com::Guid &aId, const com::Utf8Str &aCaptureFilename);
389 HRESULT detachUSBDevice(const com::Guid &aId,
390 ComPtr<IUSBDevice> &aDevice);
391 HRESULT findUSBDeviceByAddress(const com::Utf8Str &aName,
392 ComPtr<IUSBDevice> &aDevice);
393 HRESULT findUSBDeviceById(const com::Guid &aId,
394 ComPtr<IUSBDevice> &aDevice);
395 HRESULT createSharedFolder(const com::Utf8Str &aName,
396 const com::Utf8Str &aHostPath,
397 BOOL aWritable,
398 BOOL aAutomount,
399 const com::Utf8Str &aAutoMountPoint);
400 HRESULT removeSharedFolder(const com::Utf8Str &aName);
401 HRESULT teleport(const com::Utf8Str &aHostname,
402 ULONG aTcpport,
403 const com::Utf8Str &aPassword,
404 ULONG aMaxDowntime,
405 ComPtr<IProgress> &aProgress);
406 HRESULT addEncryptionPassword(const com::Utf8Str &aId, const com::Utf8Str &aPassword,
407 BOOL aClearOnSuspend);
408 HRESULT addEncryptionPasswords(const std::vector<com::Utf8Str> &aIds, const std::vector<com::Utf8Str> &aPasswords,
409 BOOL aClearOnSuspend);
410 HRESULT removeEncryptionPassword(const com::Utf8Str &aId);
411 HRESULT clearAllEncryptionPasswords();
412
413 void notifyNatDnsChange(PUVM pUVM, PCVMMR3VTABLE pVMM, const char *pszDevice, ULONG ulInstanceMax);
414 Utf8Str VRDPServerErrorToMsg(int vrc);
415
416 /**
417 * Base template for AutoVMCaller and SafeVMPtr. Template arguments
418 * have the same meaning as arguments of Console::addVMCaller().
419 */
420 template <bool taQuiet = false, bool taAllowNullVM = false>
421 class AutoVMCallerBase
422 {
423 public:
424 AutoVMCallerBase(Console *aThat) : mThat(aThat), mRC(E_FAIL)
425 {
426 Assert(aThat);
427 mRC = aThat->i_addVMCaller(taQuiet, taAllowNullVM);
428 }
429 ~AutoVMCallerBase()
430 {
431 doRelease();
432 }
433 /** Decreases the number of callers before the instance is destroyed. */
434 void releaseCaller()
435 {
436 Assert(SUCCEEDED(mRC));
437 doRelease();
438 }
439 /** Restores the number of callers after by #release(). #rc() must be
440 * rechecked to ensure the operation succeeded. */
441 void addYY()
442 {
443 AssertReturnVoid(!SUCCEEDED(mRC));
444 mRC = mThat->i_addVMCaller(taQuiet, taAllowNullVM);
445 }
446 /** Returns the result of Console::addVMCaller() */
447 HRESULT rc() const { return mRC; }
448 /** Shortcut to SUCCEEDED(rc()) */
449 bool isOk() const { return SUCCEEDED(mRC); }
450 protected:
451 Console *mThat;
452 void doRelease()
453 {
454 if (SUCCEEDED(mRC))
455 {
456 mThat->i_releaseVMCaller();
457 mRC = E_FAIL;
458 }
459 }
460 private:
461 HRESULT mRC; /* Whether the caller was added. */
462 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(AutoVMCallerBase);
463 };
464
465#if 0
466 /**
467 * Helper class that protects sections of code using the mpUVM pointer by
468 * automatically calling addVMCaller() on construction and
469 * releaseVMCaller() on destruction. Intended for Console methods dealing
470 * with mpUVM. The usage pattern is:
471 * <code>
472 * AutoVMCaller autoVMCaller(this);
473 * if (FAILED(autoVMCaller.rc())) return autoVMCaller.rc();
474 * ...
475 * VMR3ReqCall (mpUVM, ...
476 * </code>
477 *
478 * @note Temporarily locks the argument for writing.
479 *
480 * @sa SafeVMPtr, SafeVMPtrQuiet
481 * @note Obsolete, use SafeVMPtr
482 */
483 typedef AutoVMCallerBase<false, false> AutoVMCaller;
484#endif
485
486 /**
487 * Same as AutoVMCaller but doesn't set extended error info on failure.
488 *
489 * @note Temporarily locks the argument for writing.
490 * @note Obsolete, use SafeVMPtrQuiet
491 */
492 typedef AutoVMCallerBase<true, false> AutoVMCallerQuiet;
493
494 /**
495 * Same as AutoVMCaller but allows a null VM pointer (to trigger an error
496 * instead of assertion).
497 *
498 * @note Temporarily locks the argument for writing.
499 * @note Obsolete, use SafeVMPtr
500 */
501 typedef AutoVMCallerBase<false, true> AutoVMCallerWeak;
502
503 /**
504 * Same as AutoVMCaller but doesn't set extended error info on failure
505 * and allows a null VM pointer (to trigger an error instead of
506 * assertion).
507 *
508 * @note Temporarily locks the argument for writing.
509 * @note Obsolete, use SafeVMPtrQuiet
510 */
511 typedef AutoVMCallerBase<true, true> AutoVMCallerQuietWeak;
512
513 /**
514 * Base template for SafeVMPtr and SafeVMPtrQuiet.
515 */
516 template<bool taQuiet = false>
517 class SafeVMPtrBase : public AutoVMCallerBase<taQuiet, true>
518 {
519 typedef AutoVMCallerBase<taQuiet, true> Base;
520 public:
521 SafeVMPtrBase(Console *aThat) : Base(aThat), mRC(E_FAIL), mpUVM(NULL), mpVMM(NULL)
522 {
523 if (Base::isOk())
524 mRC = aThat->i_safeVMPtrRetainer(&mpUVM, &mpVMM, taQuiet);
525 }
526 ~SafeVMPtrBase()
527 {
528 doRelease();
529 }
530 /** Direct PUVM access. */
531 PUVM rawUVM() const { return mpUVM; }
532 /** Direct PCVMMR3VTABLE access. */
533 PCVMMR3VTABLE vtable() const { return mpVMM; }
534 /** Release the handles. */
535 void release()
536 {
537 Assert(SUCCEEDED(mRC));
538 doRelease();
539 }
540
541 /** The combined result of Console::addVMCaller() and Console::safeVMPtrRetainer */
542 HRESULT rc() const { return Base::isOk()? mRC: Base::rc(); }
543 /** Shortcut to SUCCEEDED(rc()) */
544 bool isOk() const { return SUCCEEDED(mRC) && Base::isOk(); }
545
546 private:
547 void doRelease()
548 {
549 if (SUCCEEDED(mRC))
550 {
551 Base::mThat->i_safeVMPtrReleaser(&mpUVM);
552 mRC = E_FAIL;
553 }
554 Base::doRelease();
555 }
556 HRESULT mRC; /* Whether the VM ptr was retained. */
557 PUVM mpUVM;
558 PCVMMR3VTABLE mpVMM;
559 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(SafeVMPtrBase);
560 };
561
562public:
563
564 /*
565 * Helper class that safely manages the Console::mpUVM pointer
566 * by calling addVMCaller() on construction and releaseVMCaller() on
567 * destruction. Intended for Console children. The usage pattern is:
568 * <code>
569 * Console::SafeVMPtr ptrVM(mParent);
570 * if (!ptrVM.isOk())
571 * return ptrVM.rc();
572 * ...
573 * VMR3ReqCall(ptrVM.rawUVM(), ...
574 * ...
575 * printf("%p\n", ptrVM.rawUVM());
576 * </code>
577 *
578 * @note Temporarily locks the argument for writing.
579 *
580 * @sa SafeVMPtrQuiet, AutoVMCaller
581 */
582 typedef SafeVMPtrBase<false> SafeVMPtr;
583
584 /**
585 * A deviation of SafeVMPtr that doesn't set the error info on failure.
586 * Intended for pieces of code that don't need to return the VM access
587 * failure to the caller. The usage pattern is:
588 * <code>
589 * Console::SafeVMPtrQuiet pVM(mParent);
590 * if (pVM.rc())
591 * VMR3ReqCall(pVM, ...
592 * return S_OK;
593 * </code>
594 *
595 * @note Temporarily locks the argument for writing.
596 *
597 * @sa SafeVMPtr, AutoVMCaller
598 */
599 typedef SafeVMPtrBase<true> SafeVMPtrQuiet;
600
601 class SharedFolderData
602 {
603 public:
604 SharedFolderData()
605 { }
606
607 SharedFolderData(const Utf8Str &aHostPath,
608 bool aWritable,
609 bool aAutoMount,
610 const Utf8Str &aAutoMountPoint)
611 : m_strHostPath(aHostPath)
612 , m_fWritable(aWritable)
613 , m_fAutoMount(aAutoMount)
614 , m_strAutoMountPoint(aAutoMountPoint)
615 { }
616
617 /** Copy constructor. */
618 SharedFolderData(const SharedFolderData& aThat)
619 : m_strHostPath(aThat.m_strHostPath)
620 , m_fWritable(aThat.m_fWritable)
621 , m_fAutoMount(aThat.m_fAutoMount)
622 , m_strAutoMountPoint(aThat.m_strAutoMountPoint)
623 { }
624
625 /** Copy assignment operator. */
626 SharedFolderData &operator=(SharedFolderData const &a_rThat) RT_NOEXCEPT
627 {
628 m_strHostPath = a_rThat.m_strHostPath;
629 m_fWritable = a_rThat.m_fWritable;
630 m_fAutoMount = a_rThat.m_fAutoMount;
631 m_strAutoMountPoint = a_rThat.m_strAutoMountPoint;
632
633 return *this;
634 }
635
636 Utf8Str m_strHostPath;
637 bool m_fWritable;
638 bool m_fAutoMount;
639 Utf8Str m_strAutoMountPoint;
640 };
641
642 /**
643 * Class for managing emulated USB MSDs.
644 */
645 class USBStorageDevice
646 {
647 public:
648 USBStorageDevice()
649 { }
650 /** The UUID associated with the USB device. */
651 RTUUID mUuid;
652 /** Port of the storage device. */
653 LONG iPort;
654 };
655
656 typedef std::map<Utf8Str, ComObjPtr<SharedFolder> > SharedFolderMap;
657 typedef std::map<Utf8Str, SharedFolderData> SharedFolderDataMap;
658 typedef std::map<Utf8Str, ComPtr<IMediumAttachment> > MediumAttachmentMap;
659 typedef std::list <USBStorageDevice> USBStorageDeviceList;
660
661 static void i_powerUpThreadTask(VMPowerUpTask *pTask);
662 static void i_powerDownThreadTask(VMPowerDownTask *pTask);
663
664private:
665
666 typedef std::list <ComObjPtr<OUSBDevice> > USBDeviceList;
667 typedef std::list <ComObjPtr<RemoteUSBDevice> > RemoteUSBDeviceList;
668
669 HRESULT i_loadVMM(void) RT_NOEXCEPT;
670 HRESULT i_addVMCaller(bool aQuiet = false, bool aAllowNullVM = false);
671 void i_releaseVMCaller();
672 HRESULT i_safeVMPtrRetainer(PUVM *a_ppUVM, PCVMMR3VTABLE *a_ppVMM, bool aQuiet) RT_NOEXCEPT;
673 void i_safeVMPtrReleaser(PUVM *a_ppUVM);
674
675 HRESULT i_consoleInitReleaseLog(const ComPtr<IMachine> aMachine);
676
677 HRESULT i_powerUp(IProgress **aProgress, bool aPaused);
678 HRESULT i_powerDown(IProgress *aProgress = NULL);
679
680/* Note: FreeBSD needs this whether netflt is used or not. */
681#if ((defined(RT_OS_LINUX) && !defined(VBOX_WITH_NETFLT)) || defined(RT_OS_FREEBSD))
682 HRESULT i_attachToTapInterface(INetworkAdapter *networkAdapter);
683 HRESULT i_detachFromTapInterface(INetworkAdapter *networkAdapter);
684#endif
685 HRESULT i_powerDownHostInterfaces();
686
687 HRESULT i_setMachineState(MachineState_T aMachineState, bool aUpdateServer = true);
688 HRESULT i_setMachineStateLocally(MachineState_T aMachineState)
689 {
690 return i_setMachineState(aMachineState, false /* aUpdateServer */);
691 }
692
693 HRESULT i_findSharedFolder(const Utf8Str &strName,
694 ComObjPtr<SharedFolder> &aSharedFolder,
695 bool aSetError = false);
696
697 HRESULT i_fetchSharedFolders(BOOL aGlobal);
698 bool i_findOtherSharedFolder(const Utf8Str &straName,
699 SharedFolderDataMap::const_iterator &aIt);
700
701 HRESULT i_createSharedFolder(const Utf8Str &strName, const SharedFolderData &aData);
702 HRESULT i_removeSharedFolder(const Utf8Str &strName);
703
704 HRESULT i_suspendBeforeConfigChange(PUVM pUVM, PCVMMR3VTABLE pVMM, AutoWriteLock *pAlock, bool *pfResume);
705 void i_resumeAfterConfigChange(PUVM pUVM, PCVMMR3VTABLE pVMM);
706
707 static DECLCALLBACK(int) i_configConstructor(PUVM pUVM, PVM pVM, PCVMMR3VTABLE pVMM, void *pvConsole);
708 void InsertConfigString(PCFGMNODE pNode, const char *pcszName, const char *pcszValue);
709 void InsertConfigString(PCFGMNODE pNode, const char *pcszName, const Utf8Str &rStrValue);
710 void InsertConfigString(PCFGMNODE pNode, const char *pcszName, const Bstr &rBstrValue);
711 void InsertConfigPassword(PCFGMNODE pNode, const char *pcszName, const Utf8Str &rStrValue);
712 void InsertConfigBytes(PCFGMNODE pNode, const char *pcszName, const void *pvBytes, size_t cbBytes);
713 void InsertConfigInteger(PCFGMNODE pNode, const char *pcszName, uint64_t u64Integer);
714 void InsertConfigNode(PCFGMNODE pNode, const char *pcszName, PCFGMNODE *ppChild);
715 void InsertConfigNodeF(PCFGMNODE pNode, PCFGMNODE *ppChild, const char *pszNameFormat, ...);
716 void RemoveConfigValue(PCFGMNODE pNode, const char *pcszName);
717 int SetBiosDiskInfo(ComPtr<IMachine> pMachine, PCFGMNODE pCfg, PCFGMNODE pBiosCfg,
718 Bstr controllerName, const char * const s_apszBiosConfig[4]);
719 void i_configAudioDriver(IVirtualBox *pVirtualBox, IMachine *pMachine, PCFGMNODE pLUN, const char *pszDriverName,
720 bool fAudioEnabledIn, bool fAudioEnabledOut);
721 int i_configConstructorInner(PUVM pUVM, PVM pVM, PCVMMR3VTABLE pVMM, AutoWriteLock *pAlock);
722 int i_configCfgmOverlay(PCFGMNODE pRoot, IVirtualBox *pVirtualBox, IMachine *pMachine);
723 int i_configDumpAPISettingsTweaks(IVirtualBox *pVirtualBox, IMachine *pMachine);
724
725 int i_configGraphicsController(PCFGMNODE pDevices,
726 const GraphicsControllerType_T graphicsController,
727 BusAssignmentManager *pBusMgr,
728 const ComPtr<IMachine> &ptrMachine,
729 const ComPtr<IGraphicsAdapter> &ptrGraphicsAdapter,
730 const ComPtr<IBIOSSettings> &ptrBiosSettings,
731 bool fHMEnabled);
732 int i_checkMediumLocation(IMedium *pMedium, bool *pfUseHostIOCache);
733 int i_unmountMediumFromGuest(PUVM pUVM, PCVMMR3VTABLE pVMM, StorageBus_T enmBus, DeviceType_T enmDevType,
734 const char *pcszDevice, unsigned uInstance, unsigned uLUN,
735 bool fForceUnmount) RT_NOEXCEPT;
736 int i_removeMediumDriverFromVm(PCFGMNODE pCtlInst,
737 const char *pcszDevice,
738 unsigned uInstance,
739 unsigned uLUN,
740 StorageBus_T enmBus,
741 bool fAttachDetach,
742 bool fHotplug,
743 bool fForceUnmount,
744 PUVM pUVM,
745 PCVMMR3VTABLE pVMM,
746 DeviceType_T enmDevType,
747 PCFGMNODE *ppLunL0);
748 int i_configMediumAttachment(const char *pcszDevice,
749 unsigned uInstance,
750 StorageBus_T enmBus,
751 bool fUseHostIOCache,
752 bool fBuiltinIoCache,
753 bool fInsertDiskIntegrityDrv,
754 bool fSetupMerge,
755 unsigned uMergeSource,
756 unsigned uMergeTarget,
757 IMediumAttachment *pMediumAtt,
758 MachineState_T aMachineState,
759 HRESULT *phrc,
760 bool fAttachDetach,
761 bool fForceUnmount,
762 bool fHotplug,
763 PUVM pUVM,
764 PCVMMR3VTABLE pVMM,
765 DeviceType_T *paLedDevType,
766 PCFGMNODE *ppLunL0);
767 int i_configMedium(PCFGMNODE pLunL0,
768 bool fPassthrough,
769 DeviceType_T enmType,
770 bool fUseHostIOCache,
771 bool fBuiltinIoCache,
772 bool fInsertDiskIntegrityDrv,
773 bool fSetupMerge,
774 unsigned uMergeSource,
775 unsigned uMergeTarget,
776 const char *pcszBwGroup,
777 bool fDiscard,
778 bool fNonRotational,
779 ComPtr<IMedium> ptrMedium,
780 MachineState_T aMachineState,
781 HRESULT *phrc);
782 int i_configMediumProperties(PCFGMNODE pCur, IMedium *pMedium, bool *pfHostIP, bool *pfEncrypted);
783 static DECLCALLBACK(int) i_reconfigureMediumAttachment(Console *pThis,
784 PUVM pUVM,
785 PCVMMR3VTABLE pVMM,
786 const char *pcszDevice,
787 unsigned uInstance,
788 StorageBus_T enmBus,
789 bool fUseHostIOCache,
790 bool fBuiltinIoCache,
791 bool fInsertDiskIntegrityDrv,
792 bool fSetupMerge,
793 unsigned uMergeSource,
794 unsigned uMergeTarget,
795 IMediumAttachment *aMediumAtt,
796 MachineState_T aMachineState,
797 HRESULT *phrc);
798 static DECLCALLBACK(int) i_changeRemovableMedium(Console *pThis,
799 PUVM pUVM,
800 PCVMMR3VTABLE pVMM,
801 const char *pcszDevice,
802 unsigned uInstance,
803 StorageBus_T enmBus,
804 bool fUseHostIOCache,
805 IMediumAttachment *aMediumAtt,
806 bool fForce);
807
808 HRESULT i_attachRawPCIDevices(PUVM pUVM, BusAssignmentManager *BusMgr, PCFGMNODE pDevices);
809 struct LEDSET;
810 typedef struct LEDSET *PLEDSET;
811 PPDMLED volatile *i_getLedSet(uint32_t iLedSet);
812 uint32_t i_allocateDriverLeds(uint32_t cLeds, uint32_t fTypes, DeviceType_T **ppSubTypes);
813 void i_attachStatusDriver(PCFGMNODE pCtlInst, DeviceType_T enmType);
814 void i_attachStatusDriver(PCFGMNODE pCtlInst, uint32_t fTypes, uint32_t cLeds, DeviceType_T **ppaSubTypes,
815 Console::MediumAttachmentMap *pmapMediumAttachments,
816 const char *pcszDevice, unsigned uInstance);
817
818 int i_configNetwork(const char *pszDevice, unsigned uInstance, unsigned uLun, INetworkAdapter *aNetworkAdapter,
819 PCFGMNODE pCfg, PCFGMNODE pLunL0, PCFGMNODE pInst, bool fAttachDetach, bool fIgnoreConnectFailure,
820 PUVM pUVM, PCVMMR3VTABLE pVMM);
821 int i_configProxy(ComPtr<IVirtualBox> virtualBox, PCFGMNODE pCfg, const char *pcszPrefix, const com::Utf8Str &strIpAddr);
822
823 int i_configSerialPort(PCFGMNODE pInst, PortMode_T ePortMode, const char *pszPath, bool fServer);
824 static DECLCALLBACK(void) i_vmstateChangeCallback(PUVM pUVM, PCVMMR3VTABLE pVMM, VMSTATE enmState,
825 VMSTATE enmOldState, void *pvUser);
826 static DECLCALLBACK(int) i_unplugCpu(Console *pThis, PUVM pUVM, PCVMMR3VTABLE pVMM, VMCPUID idCpu);
827 static DECLCALLBACK(int) i_plugCpu(Console *pThis, PUVM pUVM, PCVMMR3VTABLE pVMM, VMCPUID idCpu);
828 HRESULT i_doMediumChange(IMediumAttachment *aMediumAttachment, bool fForce, PUVM pUVM, PCVMMR3VTABLE pVMM);
829 HRESULT i_doCPURemove(ULONG aCpu, PUVM pUVM, PCVMMR3VTABLE pVMM);
830 HRESULT i_doCPUAdd(ULONG aCpu, PUVM pUVM, PCVMMR3VTABLE pVMM);
831
832 HRESULT i_doNetworkAdapterChange(PUVM pUVM, PCVMMR3VTABLE pVMM, const char *pszDevice, unsigned uInstance,
833 unsigned uLun, INetworkAdapter *aNetworkAdapter);
834 static DECLCALLBACK(int) i_changeNetworkAttachment(Console *pThis, PUVM pUVM, PCVMMR3VTABLE pVMM, const char *pszDevice,
835 unsigned uInstance, unsigned uLun, INetworkAdapter *aNetworkAdapter);
836 static DECLCALLBACK(int) i_changeSerialPortAttachment(Console *pThis, PUVM pUVM, PCVMMR3VTABLE pVMM, ISerialPort *pSerialPort);
837
838 int i_changeClipboardMode(ClipboardMode_T aClipboardMode);
839 int i_changeClipboardFileTransferMode(bool aEnabled);
840 int i_changeDnDMode(DnDMode_T aDnDMode);
841
842#ifdef VBOX_WITH_USB
843 HRESULT i_attachUSBDevice(IUSBDevice *aHostDevice, ULONG aMaskedIfs, const Utf8Str &aCaptureFilename);
844 HRESULT i_detachUSBDevice(const ComObjPtr<OUSBDevice> &aHostDevice);
845
846 static DECLCALLBACK(int) i_usbAttachCallback(Console *that, PUVM pUVM, PCVMMR3VTABLE pVMM, IUSBDevice *aHostDevice,
847 PCRTUUID aUuid, const char *aBackend, const char *aAddress,
848 PCFGMNODE pRemoteCfg, USBConnectionSpeed_T enmSpeed, ULONG aMaskedIfs,
849 const char *pszCaptureFilename);
850 static DECLCALLBACK(int) i_usbDetachCallback(Console *that, PUVM pUVM, PCVMMR3VTABLE pVMM, PCRTUUID aUuid);
851 static DECLCALLBACK(PREMOTEUSBCALLBACK) i_usbQueryRemoteUsbBackend(void *pvUser, PCRTUUID pUuid, uint32_t idClient);
852
853 /** Interface for the VRDP USB proxy backend to query for a device remote callback table. */
854 REMOTEUSBIF mRemoteUsbIf;
855#endif
856
857 static DECLCALLBACK(int) i_attachStorageDevice(Console *pThis,
858 PUVM pUVM,
859 PCVMMR3VTABLE pVMM,
860 const char *pcszDevice,
861 unsigned uInstance,
862 StorageBus_T enmBus,
863 bool fUseHostIOCache,
864 IMediumAttachment *aMediumAtt,
865 bool fSilent);
866 static DECLCALLBACK(int) i_detachStorageDevice(Console *pThis,
867 PUVM pUVM,
868 PCVMMR3VTABLE pVMM,
869 const char *pcszDevice,
870 unsigned uInstance,
871 StorageBus_T enmBus,
872 IMediumAttachment *aMediumAtt,
873 bool fSilent);
874 HRESULT i_doStorageDeviceAttach(IMediumAttachment *aMediumAttachment, PUVM pUVM, PCVMMR3VTABLE pVMM, bool fSilent);
875 HRESULT i_doStorageDeviceDetach(IMediumAttachment *aMediumAttachment, PUVM pUVM, PCVMMR3VTABLE pVMM, bool fSilent);
876
877 static DECLCALLBACK(int) i_stateProgressCallback(PUVM pUVM, unsigned uPercent, void *pvUser);
878
879 static DECLCALLBACK(void) i_genericVMSetErrorCallback(PUVM pUVM, void *pvUser, int rc, RT_SRC_POS_DECL,
880 const char *pszErrorFmt, va_list va);
881
882 void i_atVMRuntimeErrorCallbackF(uint32_t fFatal, const char *pszErrorId, const char *pszFormat, ...);
883 static DECLCALLBACK(void) i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFatal,
884 const char *pszErrorId, const char *pszFormat, va_list va);
885
886 HRESULT i_captureUSBDevices(PUVM pUVM);
887 void i_detachAllUSBDevices(bool aDone);
888
889
890 static DECLCALLBACK(int) i_vmm2User_SaveState(PCVMM2USERMETHODS pThis, PUVM pUVM);
891 static DECLCALLBACK(void) i_vmm2User_NotifyEmtInit(PCVMM2USERMETHODS pThis, PUVM pUVM, PUVMCPU pUVCpu);
892 static DECLCALLBACK(void) i_vmm2User_NotifyEmtTerm(PCVMM2USERMETHODS pThis, PUVM pUVM, PUVMCPU pUVCpu);
893 static DECLCALLBACK(void) i_vmm2User_NotifyPdmtInit(PCVMM2USERMETHODS pThis, PUVM pUVM);
894 static DECLCALLBACK(void) i_vmm2User_NotifyPdmtTerm(PCVMM2USERMETHODS pThis, PUVM pUVM);
895 static DECLCALLBACK(void) i_vmm2User_NotifyResetTurnedIntoPowerOff(PCVMM2USERMETHODS pThis, PUVM pUVM);
896 static DECLCALLBACK(void *) i_vmm2User_QueryGenericObject(PCVMM2USERMETHODS pThis, PUVM pUVM, PCRTUUID pUuid);
897
898 static DECLCALLBACK(void *) i_drvStatus_QueryInterface(PPDMIBASE pInterface, const char *pszIID);
899 static DECLCALLBACK(void) i_drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN);
900 static DECLCALLBACK(int) i_drvStatus_MediumEjected(PPDMIMEDIANOTIFY pInterface, unsigned iLUN);
901 static DECLCALLBACK(void) i_drvStatus_Destruct(PPDMDRVINS pDrvIns);
902 static DECLCALLBACK(int) i_drvStatus_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
903
904 static DECLCALLBACK(int) i_pdmIfSecKey_KeyRetain(PPDMISECKEY pInterface, const char *pszId, const uint8_t **ppbKey,
905 size_t *pcbKey);
906 static DECLCALLBACK(int) i_pdmIfSecKey_KeyRelease(PPDMISECKEY pInterface, const char *pszId);
907 static DECLCALLBACK(int) i_pdmIfSecKey_PasswordRetain(PPDMISECKEY pInterface, const char *pszId, const char **ppszPassword);
908 static DECLCALLBACK(int) i_pdmIfSecKey_PasswordRelease(PPDMISECKEY pInterface, const char *pszId);
909
910 static DECLCALLBACK(int) i_pdmIfSecKeyHlp_KeyMissingNotify(PPDMISECKEYHLP pInterface);
911
912 int mcAudioRefs;
913 volatile uint32_t mcVRDPClients;
914 uint32_t mu32SingleRDPClientId; /* The id of a connected client in the single connection mode. */
915 volatile bool mcGuestCredentialsProvided;
916
917 static const char *sSSMConsoleUnit;
918
919 HRESULT i_loadDataFromSavedState();
920 int i_loadStateFileExecInternal(PSSMHANDLE pSSM, PCVMMR3VTABLE pVMM, uint32_t u32Version);
921
922 static DECLCALLBACK(int) i_saveStateFileExec(PSSMHANDLE pSSM, PCVMMR3VTABLE pVMM, void *pvUser);
923 static DECLCALLBACK(int) i_loadStateFileExec(PSSMHANDLE pSSM, PCVMMR3VTABLE pVMM, void *pvUser,
924 uint32_t uVersion, uint32_t uPass);
925
926#ifdef VBOX_WITH_GUEST_PROPS
927 HRESULT i_doEnumerateGuestProperties(const Utf8Str &aPatterns,
928 std::vector<Utf8Str> &aNames,
929 std::vector<Utf8Str> &aValues,
930 std::vector<LONG64> &aTimestamps,
931 std::vector<Utf8Str> &aFlags);
932
933 void i_guestPropertiesHandleVMReset(void);
934 bool i_guestPropertiesVRDPEnabled(void);
935 void i_guestPropertiesVRDPUpdateLogon(uint32_t u32ClientId, const char *pszUser, const char *pszDomain);
936 void i_guestPropertiesVRDPUpdateActiveClient(uint32_t u32ClientId);
937 void i_guestPropertiesVRDPUpdateClientAttach(uint32_t u32ClientId, bool fAttached);
938 void i_guestPropertiesVRDPUpdateNameChange(uint32_t u32ClientId, const char *pszName);
939 void i_guestPropertiesVRDPUpdateIPAddrChange(uint32_t u32ClientId, const char *pszIPAddr);
940 void i_guestPropertiesVRDPUpdateLocationChange(uint32_t u32ClientId, const char *pszLocation);
941 void i_guestPropertiesVRDPUpdateOtherInfoChange(uint32_t u32ClientId, const char *pszOtherInfo);
942 void i_guestPropertiesVRDPUpdateDisconnect(uint32_t u32ClientId);
943#endif
944
945 /** @name Disk encryption support
946 * @{ */
947 HRESULT i_consoleParseDiskEncryption(const char *psz, const char **ppszEnd);
948 HRESULT i_configureEncryptionForDisk(const Utf8Str &strId, unsigned *pcDisksConfigured);
949 HRESULT i_clearDiskEncryptionKeysOnAllAttachmentsWithKeyId(const Utf8Str &strId);
950 HRESULT i_initSecretKeyIfOnAllAttachments(void);
951 int i_consoleParseKeyValue(const char *psz, const char **ppszEnd,
952 char **ppszKey, char **ppszVal);
953 void i_removeSecretKeysOnSuspend();
954 /** @} */
955
956 /** @name Teleporter support
957 * @{ */
958 static DECLCALLBACK(int) i_teleporterSrcThreadWrapper(RTTHREAD hThreadSelf, void *pvUser);
959 HRESULT i_teleporterSrc(TeleporterStateSrc *pState);
960 HRESULT i_teleporterSrcReadACK(TeleporterStateSrc *pState, const char *pszWhich, const char *pszNAckMsg = NULL);
961 HRESULT i_teleporterSrcSubmitCommand(TeleporterStateSrc *pState, const char *pszCommand, bool fWaitForAck = true);
962 HRESULT i_teleporterTrg(PUVM pUVM, PCVMMR3VTABLE pVMM, IMachine *pMachine, Utf8Str *pErrorMsg,
963 bool fStartPaused, Progress *pProgress, bool *pfPowerOffOnFailure);
964 static DECLCALLBACK(int) i_teleporterTrgServeConnection(RTSOCKET Sock, void *pvUser);
965 /** @} */
966
967#ifdef VBOX_WITH_FULL_VM_ENCRYPTION
968 /** @name Encrypted log interface
969 * @{ */
970 static DECLCALLBACK(int) i_logEncryptedOpen(PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilename, uint32_t fFlags);
971 static DECLCALLBACK(int) i_logEncryptedClose(PCRTLOGOUTPUTIF pIf, void *pvUser);
972 static DECLCALLBACK(int) i_logEncryptedDelete(PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilename);
973 static DECLCALLBACK(int) i_logEncryptedRename(PCRTLOGOUTPUTIF pIf, void *pvUser, const char *pszFilenameOld,
974 const char *pszFilenameNew, uint32_t fFlags);
975 static DECLCALLBACK(int) i_logEncryptedQuerySize(PCRTLOGOUTPUTIF pIf, void *pvUser, uint64_t *pcbSize);
976 static DECLCALLBACK(int) i_logEncryptedWrite(PCRTLOGOUTPUTIF pIf, void *pvUser, const void *pvBuf,
977 size_t cbWrite, size_t *pcbWritten);
978 static DECLCALLBACK(int) i_logEncryptedFlush(PCRTLOGOUTPUTIF pIf, void *pvUser);
979 /** @} */
980#endif
981
982 bool mSavedStateDataLoaded : 1;
983
984 const ComPtr<IMachine> mMachine;
985 const ComPtr<IInternalMachineControl> mControl;
986
987 const ComPtr<IVRDEServer> mVRDEServer;
988
989 ConsoleVRDPServer * const mConsoleVRDPServer;
990 bool mfVRDEChangeInProcess;
991 bool mfVRDEChangePending;
992 const ComObjPtr<Guest> mGuest;
993 const ComObjPtr<Keyboard> mKeyboard;
994 const ComObjPtr<Mouse> mMouse;
995 const ComObjPtr<Display> mDisplay;
996 const ComObjPtr<MachineDebugger> mDebugger;
997 const ComObjPtr<VRDEServerInfo> mVRDEServerInfo;
998 /** This can safely be used without holding any locks.
999 * An AutoCaller suffices to prevent it being destroy while in use and
1000 * internally there is a lock providing the necessary serialization. */
1001 const ComObjPtr<EventSource> mEventSource;
1002#ifdef VBOX_WITH_EXTPACK
1003 const ComObjPtr<ExtPackManager> mptrExtPackManager;
1004#endif
1005 const ComObjPtr<EmulatedUSB> mEmulatedUSB;
1006 const ComObjPtr<NvramStore> mptrNvramStore;
1007
1008 USBDeviceList mUSBDevices;
1009 RemoteUSBDeviceList mRemoteUSBDevices;
1010
1011 SharedFolderDataMap m_mapGlobalSharedFolders;
1012 SharedFolderDataMap m_mapMachineSharedFolders;
1013 SharedFolderMap m_mapSharedFolders; // the console instances
1014
1015 /** VMM loader handle. */
1016 RTLDRMOD mhModVMM;
1017 /** The VMM vtable. */
1018 PCVMMR3VTABLE mpVMM;
1019 /** The user mode VM handle. */
1020 PUVM mpUVM;
1021 /** Holds the number of "readonly" mpUVM callers (users). */
1022 uint32_t mVMCallers;
1023 /** Semaphore posted when the number of mpUVM callers drops to zero. */
1024 RTSEMEVENT mVMZeroCallersSem;
1025 /** true when Console has entered the mpUVM destruction phase. */
1026 bool mVMDestroying : 1;
1027 /** true when power down is initiated by vmstateChangeCallback (EMT). */
1028 bool mVMPoweredOff : 1;
1029 /** true when vmstateChangeCallback shouldn't initiate a power down. */
1030 bool mVMIsAlreadyPoweringOff : 1;
1031 /** true if we already showed the snapshot folder size warning. */
1032 bool mfSnapshotFolderSizeWarningShown : 1;
1033 /** true if we already showed the snapshot folder ext4/xfs bug warning. */
1034 bool mfSnapshotFolderExt4WarningShown : 1;
1035 /** true if we already listed the disk type of the snapshot folder. */
1036 bool mfSnapshotFolderDiskTypeShown : 1;
1037 /** true if a USB controller is available (i.e. USB devices can be attached). */
1038 bool mfVMHasUsbController : 1;
1039 /** Shadow of the VBoxInternal2/TurnResetIntoPowerOff extra data setting.
1040 * This is initialized by Console::i_configConstructorInner(). */
1041 bool mfTurnResetIntoPowerOff : 1;
1042 /** true if the VM power off was caused by reset. */
1043 bool mfPowerOffCausedByReset : 1;
1044
1045 /** Pointer to the VMM -> User (that's us) callbacks. */
1046 struct MYVMM2USERMETHODS : public VMM2USERMETHODS
1047 {
1048 Console *pConsole;
1049 /** The in-progress snapshot. */
1050 ISnapshot *pISnapshot;
1051 } *mpVmm2UserMethods;
1052
1053 /** The current network attachment type in the VM.
1054 * This doesn't have to match the network attachment type maintained in the
1055 * NetworkAdapter. This is needed to change the network attachment
1056 * dynamically.
1057 */
1058 typedef std::vector<NetworkAttachmentType_T> NetworkAttachmentTypeVector;
1059 NetworkAttachmentTypeVector meAttachmentType;
1060
1061 VMMDev * m_pVMMDev;
1062 AudioVRDE * const mAudioVRDE;
1063#ifdef VBOX_WITH_USB_CARDREADER
1064 UsbCardReader * const mUsbCardReader;
1065#endif
1066 BusAssignmentManager* mBusMgr;
1067
1068 /** @name LEDs and their management
1069 * @{ */
1070 /** Read/write lock separating LED allocations (write) from queries (read). */
1071 RWLockHandle mLedLock;
1072 /** Number of LED sets in use in maLedSets. */
1073 uint32_t mcLedSets;
1074 /** LED sets. */
1075 struct LEDSET
1076 {
1077 /** Bitmask of possible DeviceType_T values (e.g. RT_BIT_32(DeviceType_Network)). */
1078 uint32_t fTypes;
1079 /** Number of LEDs. */
1080 uint32_t cLeds;
1081 /** Array of PDMLED pointers. The pointers in the array can be changed at any
1082 * time by Console::i_drvStatus_UnitChanged(). */
1083 PPDMLED volatile *papLeds;
1084 /** Optionally, device types for each individual LED. Runs parallel to papLeds. */
1085 DeviceType_T *paSubTypes;
1086 } maLedSets[32];
1087 /** @} */
1088
1089 MediumAttachmentMap mapMediumAttachments;
1090
1091 /** List of attached USB storage devices. */
1092 USBStorageDeviceList mUSBStorageDevices;
1093
1094 /** Store for secret keys. */
1095 SecretKeyStore * const m_pKeyStore;
1096 /** Number of disks configured for encryption. */
1097 unsigned m_cDisksEncrypted;
1098 /** Number of disks which have the key in the map. */
1099 unsigned m_cDisksPwProvided;
1100
1101 /** Current active port modes of the supported serial ports. */
1102 PortMode_T m_aeSerialPortMode[4];
1103
1104 /** Pointer to the key consumer -> provider (that's us) callbacks. */
1105 struct MYPDMISECKEY : public PDMISECKEY
1106 {
1107 Console *pConsole;
1108 } *mpIfSecKey;
1109
1110 /** Pointer to the key helpers -> provider (that's us) callbacks. */
1111 struct MYPDMISECKEYHLP : public PDMISECKEYHLP
1112 {
1113 Console *pConsole;
1114 } *mpIfSecKeyHlp;
1115
1116/* Note: FreeBSD needs this whether netflt is used or not. */
1117#if ((defined(RT_OS_LINUX) && !defined(VBOX_WITH_NETFLT)) || defined(RT_OS_FREEBSD))
1118 Utf8Str maTAPDeviceName[8];
1119 RTFILE maTapFD[8];
1120#endif
1121
1122 bool mVMStateChangeCallbackDisabled;
1123
1124 bool mfUseHostClipboard;
1125
1126 /** Local machine state value. */
1127 MachineState_T mMachineState;
1128
1129 /** Machine uuid string. */
1130 Bstr mstrUuid;
1131
1132 /** @name Members related to the cryptographic support interface.
1133 * @{ */
1134 /** The loaded module handle if loaded. */
1135 RTLDRMOD mhLdrModCrypto;
1136 /** Reference counter tracking how many users of the cryptographic support
1137 * are there currently. */
1138 volatile uint32_t mcRefsCrypto;
1139 /** Pointer to the cryptographic support interface. */
1140 PCVBOXCRYPTOIF mpCryptoIf;
1141 /** @} */
1142
1143#ifdef VBOX_WITH_FULL_VM_ENCRYPTION
1144 /** Flag whether the log is encrypted. */
1145 bool m_fEncryptedLog;
1146 /** The file handle of the encrypted log. */
1147 RTVFSFILE m_hVfsFileLog;
1148 /** The logging output interface for encrypted logs. */
1149 RTLOGOUTPUTIF m_LogOutputIf;
1150 /** The log file key ID. */
1151 Utf8Str m_strLogKeyId;
1152 /** The log file key store. */
1153 Utf8Str m_strLogKeyStore;
1154#endif
1155
1156#ifdef VBOX_WITH_DRAG_AND_DROP
1157 HGCMSVCEXTHANDLE m_hHgcmSvcExtDragAndDrop;
1158#endif
1159
1160 /** Pointer to the progress object of a live cancelable task.
1161 *
1162 * This is currently only used by Console::Teleport(), but is intended to later
1163 * be used by the live snapshot code path as well. Actions like
1164 * Console::PowerDown, which automatically cancels out the running snapshot /
1165 * teleportation operation, will cancel the teleportation / live snapshot
1166 * operation before starting. */
1167 ComPtr<IProgress> mptrCancelableProgress;
1168
1169 ComPtr<IEventListener> mVmListener;
1170
1171#ifdef VBOX_WITH_RECORDING
1172 struct Recording
1173 {
1174 Recording()
1175# ifdef VBOX_WITH_AUDIO_RECORDING
1176 : mAudioRec(NULL)
1177# endif
1178 { }
1179
1180 /** The recording context. */
1181 RecordingContext mCtx;
1182# ifdef VBOX_WITH_AUDIO_RECORDING
1183 /** Pointer to capturing audio backend. */
1184 AudioVideoRec * const mAudioRec;
1185# endif
1186 } mRecording;
1187#endif /* VBOX_WITH_RECORDING */
1188
1189#ifdef VBOX_WITH_CLOUD_NET
1190 GatewayInfo mGateway;
1191#endif /* VBOX_WITH_CLOUD_NET */
1192
1193 friend class VMTask;
1194 friend class ConsoleVRDPServer;
1195};
1196
1197#endif /* !MAIN_INCLUDED_ConsoleImpl_h */
1198/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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