VirtualBox

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

Last change on this file since 3392 was 3288, checked in by vboxsync, 18 years ago

Main: More precise check of whether the VM is running or not when USB attach/detach notifications arrive.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.6 KB
Line 
1/** @file
2 *
3 * VBox Console COM Class definition
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 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22#ifndef ____H_CONSOLEIMPL
23#define ____H_CONSOLEIMPL
24
25#include "VirtualBoxBase.h"
26#include "ProgressImpl.h"
27
28class Guest;
29class Keyboard;
30class Mouse;
31class Display;
32class MachineDebugger;
33class OUSBDevice;
34class RemoteUSBDevice;
35class SharedFolder;
36class RemoteDisplayInfo;
37class AudioSniffer;
38class ConsoleVRDPServer;
39class VMMDev;
40
41#include <VBox/vrdpapi.h>
42#include <VBox/pdm.h>
43
44struct VUSBIRHCONFIG;
45typedef struct VUSBIRHCONFIG *PVUSBIRHCONFIG;
46
47#include <list>
48
49// defines
50///////////////////////////////////////////////////////////////////////////////
51
52/**
53 * Checks the availability of the underlying VM device driver corresponding
54 * to the COM interface (IKeyboard, IMouse, IDisplay, etc.). When the driver is
55 * not available (NULL), sets error info and returns returns E_ACCESSDENIED.
56 * The translatable error message is defined in null context.
57 *
58 * Intended to used only within Console children (i,e. Keyboard, Mouse,
59 * Display, etc.).
60 *
61 * @param drv driver pointer to check (compare it with NULL)
62 */
63#define CHECK_CONSOLE_DRV(drv) \
64 do { \
65 if (!(drv)) \
66 return setError (E_ACCESSDENIED, tr ("The console is not powered up")); \
67 } while (0)
68
69/** @def VBOX_WITH_UNIXY_TAP_NETWORKING
70 * Unixy style TAP networking. This is defined in the Makefile since it's also
71 * used by NetworkAdapterImpl.h/cpp.
72 */
73#ifdef __DOXYGEN__
74# define VBOX_WITH_UNIXY_TAP_NETWORKING
75#endif
76
77// Console
78///////////////////////////////////////////////////////////////////////////////
79
80/** IConsole implementation class */
81class ATL_NO_VTABLE Console :
82 public VirtualBoxBaseWithChildrenNEXT,
83 public VirtualBoxSupportErrorInfoImpl <Console, IConsole>,
84 public VirtualBoxSupportTranslation <Console>,
85 public IConsole
86{
87 Q_OBJECT
88
89public:
90
91 DECLARE_NOT_AGGREGATABLE(Console)
92
93 DECLARE_PROTECT_FINAL_CONSTRUCT()
94
95 BEGIN_COM_MAP(Console)
96 COM_INTERFACE_ENTRY(ISupportErrorInfo)
97 COM_INTERFACE_ENTRY(IConsole)
98 END_COM_MAP()
99
100 NS_DECL_ISUPPORTS
101
102 Console();
103 ~Console();
104
105 HRESULT FinalConstruct();
106 void FinalRelease();
107
108 // public initializers/uninitializers for internal purposes only
109 HRESULT init (IMachine *aMachine, IInternalMachineControl *aControl);
110 void uninit();
111
112 // IConsole properties
113 STDMETHOD(COMGETTER(Machine)) (IMachine **aMachine);
114 STDMETHOD(COMGETTER(State)) (MachineState_T *aMachineState);
115 STDMETHOD(COMGETTER(Guest)) (IGuest **aGuest);
116 STDMETHOD(COMGETTER(Keyboard)) (IKeyboard **aKeyboard);
117 STDMETHOD(COMGETTER(Mouse)) (IMouse **aMouse);
118 STDMETHOD(COMGETTER(Display)) (IDisplay **aDisplay);
119 STDMETHOD(COMGETTER(Debugger)) (IMachineDebugger **aDebugger);
120 STDMETHOD(COMGETTER(USBDevices)) (IUSBDeviceCollection **aUSBDevices);
121 STDMETHOD(COMGETTER(RemoteUSBDevices)) (IHostUSBDeviceCollection **aRemoteUSBDevices);
122 STDMETHOD(COMGETTER(RemoteDisplayInfo)) (IRemoteDisplayInfo **aRemoteDisplayInfo);
123 STDMETHOD(COMGETTER(SharedFolders)) (ISharedFolderCollection **aSharedFolders);
124
125 // IConsole methods
126 STDMETHOD(PowerUp) (IProgress **aProgress);
127 STDMETHOD(PowerDown)();
128 STDMETHOD(Reset)();
129 STDMETHOD(Pause)();
130 STDMETHOD(Resume)();
131 STDMETHOD(PowerButton)();
132 STDMETHOD(SaveState) (IProgress **aProgress);
133 STDMETHOD(DiscardSavedState)();
134 STDMETHOD(GetDeviceActivity) (DeviceType_T aDeviceType,
135 DeviceActivity_T *aDeviceActivity);
136 STDMETHOD(AttachUSBDevice) (INPTR GUIDPARAM aId);
137 STDMETHOD(DetachUSBDevice) (INPTR GUIDPARAM aId, IUSBDevice **aDevice);
138 STDMETHOD(CreateSharedFolder) (INPTR BSTR aName, INPTR BSTR aHostPath);
139 STDMETHOD(RemoveSharedFolder) (INPTR BSTR aName);
140 STDMETHOD(TakeSnapshot) (INPTR BSTR aName, INPTR BSTR aDescription,
141 IProgress **aProgress);
142 STDMETHOD(DiscardSnapshot) (INPTR GUIDPARAM aId, IProgress **aProgress);
143 STDMETHOD(DiscardCurrentState) (IProgress **aProgress);
144 STDMETHOD(DiscardCurrentSnapshotAndState) (IProgress **aProgress);
145 STDMETHOD(RegisterCallback) (IConsoleCallback *aCallback);
146 STDMETHOD(UnregisterCallback)(IConsoleCallback *aCallback);
147
148 // public methods for internal purposes only
149
150 /*
151 * Note: the following methods do not increase refcount. intended to be
152 * called only by the VM execution thread.
153 */
154
155 Guest *getGuest() { return mGuest; }
156 Keyboard *getKeyboard() { return mKeyboard; }
157 Mouse *getMouse() { return mMouse; }
158 Display *getDisplay() { return mDisplay; }
159 MachineDebugger *getMachineDebugger() { return mDebugger; }
160
161 const ComPtr <IMachine> &machine() { return mMachine; }
162
163 /** Method is called only from ConsoleVRDPServer */
164 IVRDPServer *getVRDPServer() { return mVRDPServer; }
165
166 ConsoleVRDPServer *consoleVRDPServer() { return mConsoleVRDPServer; }
167
168 HRESULT updateMachineState (MachineState_T aMachineState);
169
170 // events from IInternalSessionControl
171 HRESULT onDVDDriveChange();
172 HRESULT onFloppyDriveChange();
173 HRESULT onNetworkAdapterChange(INetworkAdapter *networkAdapter);
174 HRESULT onVRDPServerChange();
175 HRESULT onUSBControllerChange();
176 HRESULT onUSBDeviceAttach (IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError);
177 HRESULT onUSBDeviceDetach (INPTR GUIDPARAM aId, IVirtualBoxErrorInfo *aError);
178
179 VMMDev *getVMMDev() { return mVMMDev; }
180 AudioSniffer *getAudioSniffer () { return mAudioSniffer; }
181
182 static VRDPSERVERCALLBACK *getVrdpServerCallback () { return &sVrdpServerCallback; };
183
184 void processRemoteUSBDevices (uint32_t u32ClientId, VRDPUSBDEVICEDESC *pDevList, uint32_t cbDevList);
185
186 // callback callers
187 void onMousePointerShapeChange(bool fVisible, bool fAlpha,
188 uint32_t xHot, uint32_t yHot,
189 uint32_t width, uint32_t height,
190 void *pShape);
191 void onMouseCapabilityChange (BOOL supportsAbsolute, BOOL needsHostCursor);
192 void onStateChange (MachineState_T aMachineState);
193 void onAdditionsStateChange();
194 void onAdditionsOutdated();
195 void onKeyboardLedsChange (bool fNumLock, bool fCapsLock, bool fScrollLock);
196 void onUSBDeviceStateChange (IUSBDevice *aDevice, bool aAttached,
197 IVirtualBoxErrorInfo *aError);
198 void onRuntimeError (BOOL aFatal, INPTR BSTR aErrorID, INPTR BSTR aMessage);
199 HRESULT onShowWindow (BOOL aCheck, BOOL *aCanShow, ULONG64 *aWinId);
200
201 static const PDMDRVREG DrvStatusReg;
202
203 void reportAuthLibraryError (const char *filename, int rc)
204 {
205 setError (E_FAIL, tr("Could not load the external authentication library '%s' (%Vrc)"), filename, rc);
206 }
207
208 // for VirtualBoxSupportErrorInfoImpl
209 static const wchar_t *getComponentName() { return L"Console"; }
210
211private:
212
213 /**
214 * Base template for AutoVMCaller and SaveVMPtr. Template arguments
215 * have the same meaning as arguments of Console::addVMCaller().
216 */
217 template <bool taQuiet = false, bool taAllowNullVM = false>
218 class AutoVMCallerBase
219 {
220 public:
221 AutoVMCallerBase (Console *aThat) : mThat (aThat), mRC (S_OK)
222 {
223 Assert (aThat);
224 mRC = aThat->addVMCaller (taQuiet, taAllowNullVM);
225 }
226 ~AutoVMCallerBase()
227 {
228 if (SUCCEEDED (mRC))
229 mThat->releaseVMCaller();
230 }
231 /** Decreases the number of callers before the instance is destroyed. */
232 void release()
233 {
234 AssertReturnVoid (SUCCEEDED (mRC));
235 mThat->releaseVMCaller();
236 mRC = E_FAIL;
237 }
238 /** Restores the number of callers after by #release(). #rc() must be
239 * rechecked to ensure the operation succeeded. */
240 void add()
241 {
242 AssertReturnVoid (!SUCCEEDED (mRC));
243 mRC = mThat->addVMCaller (taQuiet, taAllowNullVM);
244 }
245 /** Returns the result of Console::addVMCaller() */
246 HRESULT rc() const { return mRC; }
247 /** Shortcut to SUCCEEDED (rc()) */
248 bool isOk() const { return SUCCEEDED (mRC); }
249 protected:
250 Console *mThat;
251 HRESULT mRC;
252 private:
253 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (AutoVMCallerBase)
254 DECLARE_CLS_NEW_DELETE_NOOP (AutoVMCallerBase)
255 };
256
257 /**
258 * Helper class that protects sections of code using the mpVM pointer by
259 * automatically calling addVMCaller() on construction and
260 * releaseVMCaller() on destruction. Intended for Console methods dealing
261 * with mpVM. The usage pattern is:
262 * <code>
263 * AutoVMCaller autoVMCaller (this);
264 * CheckComRCReturnRC (autoVMCaller.rc());
265 * ...
266 * VMR3ReqCall (mpVM, ...
267 * </code>
268 *
269 * @sa SafeVMPtr, SafeVMPtrQuiet
270 */
271 typedef AutoVMCallerBase <false, false> AutoVMCaller;
272
273 /**
274 * Same as AutoVMCaller but doesn't set extended error info on failure.
275 */
276 typedef AutoVMCallerBase <true, false> AutoVMCallerQuiet;
277
278 /**
279 * Base template for SaveVMPtr and SaveVMPtrQuiet.
280 */
281 template <bool taQuiet = false>
282 class SafeVMPtrBase : public AutoVMCallerBase <taQuiet, true>
283 {
284 typedef AutoVMCallerBase <taQuiet, true> Base;
285 public:
286 SafeVMPtrBase (Console *aThat) : Base (aThat), mpVM (NULL)
287 {
288 if (SUCCEEDED (Base::mRC))
289 mpVM = aThat->mpVM;
290 }
291 /** Smart SaveVMPtr to PVM cast operator */
292 operator PVM() const { return mpVM; }
293 /** Direct PVM access for printf()-like functions */
294 PVM raw() const { return mpVM; }
295 private:
296 PVM mpVM;
297 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (SafeVMPtrBase)
298 DECLARE_CLS_NEW_DELETE_NOOP (SafeVMPtrBase)
299 };
300
301public:
302
303 /**
304 * Helper class that safely manages the Console::mpVM pointer
305 * by calling addVMCaller() on construction and releaseVMCaller() on
306 * destruction. Intended for Console children. The usage pattern is:
307 * <code>
308 * Console::SaveVMPtr pVM (mParent);
309 * CheckComRCReturnRC (pVM.rc());
310 * ...
311 * VMR3ReqCall (pVM, ...
312 * ...
313 * printf ("%p\n", pVM.raw());
314 * </code>
315 *
316 * @sa SafeVMPtrQuiet, AutoVMCaller
317 */
318 typedef SafeVMPtrBase <false> SafeVMPtr;
319
320 /**
321 * A deviation of SaveVMPtr that doesn't set the error info on failure.
322 * Intenede for pieces of code that don't need to return the VM access
323 * failure to the caller. The usage pattern is:
324 * <code>
325 * Console::SaveVMPtrQuiet pVM (mParent);
326 * if (pVM.rc())
327 * VMR3ReqCall (pVM, ...
328 * return S_OK;
329 * </code>
330 *
331 * @sa SafeVMPtr, AutoVMCaller
332 */
333 typedef SafeVMPtrBase <true> SafeVMPtrQuiet;
334
335private:
336
337 typedef std::list <ComObjPtr <OUSBDevice> > USBDeviceList;
338 typedef std::list <ComObjPtr <RemoteUSBDevice> > RemoteUSBDeviceList;
339 typedef std::list <ComObjPtr <SharedFolder> > SharedFolderList;
340
341 HRESULT addVMCaller (bool aQuiet = false, bool aAllowNullVM = false);
342 void releaseVMCaller();
343
344 HRESULT powerDown();
345
346 HRESULT callTapSetupApplication(bool isStatic, RTFILE tapFD, Bstr &tapDevice,
347 Bstr &tapSetupApplication);
348 HRESULT attachToHostInterface(INetworkAdapter *networkAdapter);
349 HRESULT detachFromHostInterface(INetworkAdapter *networkAdapter);
350 HRESULT powerDownHostInterfaces();
351
352 HRESULT setMachineState (MachineState_T aMachineState, bool aUpdateServer = true);
353 HRESULT setMachineStateLocally (MachineState_T aMachineState)
354 {
355 return setMachineState (aMachineState, false /* aUpdateServer */);
356 }
357
358 HRESULT findSharedFolder (const BSTR aName,
359 ComObjPtr <SharedFolder> &aSharedFolder,
360 bool aSetError = false);
361
362 static DECLCALLBACK(int) configConstructor(PVM pVM, void *pvConsole);
363 static DECLCALLBACK(void) vmstateChangeCallback(PVM aVM, VMSTATE aState,
364 VMSTATE aOldState, void *aUser);
365 HRESULT doDriveChange (const char *pszDevice, unsigned uInstance,
366 unsigned uLun, DriveState_T eState,
367 DriveState_T *peState, const char *pszPath,
368 bool fPassthrough);
369 static DECLCALLBACK(int) changeDrive (Console *pThis, const char *pszDevice,
370 unsigned uInstance, unsigned uLun,
371 DriveState_T eState, DriveState_T *peState,
372 const char *pszPath, bool fPassthrough);
373
374 HRESULT attachUSBDevice (IUSBDevice *aHostDevice, PVUSBIRHCONFIG aConfig);
375 HRESULT detachUSBDevice (USBDeviceList::iterator &aIt);
376
377 static DECLCALLBACK(int)
378 usbAttachCallback (Console *that, IUSBDevice *aHostDevice,
379 PVUSBIRHCONFIG aConfig, PCRTUUID aUuid, bool aRemote,
380 const char *aAddress, void *aRemoteBackend);
381 static DECLCALLBACK(int)
382 usbDetachCallback (Console *that, USBDeviceList::iterator *aIt,
383 PVUSBIRHCONFIG aConfig, PCRTUUID aUuid);
384
385 static DECLCALLBACK (int)
386 stateProgressCallback (PVM pVM, unsigned uPercent, void *pvUser);
387
388 static DECLCALLBACK(void)
389 setVMErrorCallback (PVM pVM, void *pvUser, int rc, RT_SRC_POS_DECL,
390 const char *pszFormat, va_list args);
391
392 static DECLCALLBACK(void)
393 setVMRuntimeErrorCallback (PVM pVM, void *pvUser, bool fFatal,
394 const char *pszErrorID,
395 const char *pszFormat, va_list args);
396
397 HRESULT captureUSBDevices (PVM pVM);
398 void releaseAllUSBDevices (void);
399
400 static DECLCALLBACK (int) powerUpThread (RTTHREAD Thread, void *pvUser);
401 static DECLCALLBACK (int) saveStateThread (RTTHREAD Thread, void *pvUser);
402 static DECLCALLBACK (int) powerDownThread (RTTHREAD Thread, void *pvUser);
403
404 static DECLCALLBACK(void *) drvStatus_QueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
405 static DECLCALLBACK(void) drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN);
406 static DECLCALLBACK(void) drvStatus_Destruct(PPDMDRVINS pDrvIns);
407 static DECLCALLBACK(int) drvStatus_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
408
409 int mcAudioRefs;
410 volatile uint32_t mcVRDPClients;
411
412 static DECLCALLBACK(int) vrdp_ClientLogon (void *pvUser, uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain);
413 static DECLCALLBACK(void) vrdp_ClientConnect (void *pvUser, uint32_t u32ClientId);
414 static DECLCALLBACK(void) vrdp_ClientDisconnect (void *pvUser, uint32_t u32ClientId, uint32_t fu32Intercepted);
415 static DECLCALLBACK(void) vrdp_InterceptAudio (void *pvUser, uint32_t u32ClientId);
416 static DECLCALLBACK(void) vrdp_InterceptUSB (void *pvUser, uint32_t u32ClientId, PFNVRDPUSBCALLBACK *ppfn, void **ppv);
417 static DECLCALLBACK(void) vrdp_InterceptClipboard (void *pvUser, uint32_t u32ClientId, PFNVRDPCLIPBOARDCALLBACK *ppfn, void **ppv);
418
419 static VRDPSERVERCALLBACK sVrdpServerCallback;
420
421 static const char *sSSMConsoleUnit;
422 static uint32_t sSSMConsoleVer;
423
424 HRESULT loadDataFromSavedState();
425
426 static DECLCALLBACK(void) saveStateFileExec (PSSMHANDLE pSSM, void *pvUser);
427 static DECLCALLBACK(int) loadStateFileExec (PSSMHANDLE pSSM, void *pvUser, uint32_t u32Version);
428
429 bool mSavedStateDataLoaded : 1;
430
431 const ComPtr <IMachine> mMachine;
432 const ComPtr <IInternalMachineControl> mControl;
433
434 const ComPtr <IVRDPServer> mVRDPServer;
435 const ComPtr <IDVDDrive> mDVDDrive;
436 const ComPtr <IFloppyDrive> mFloppyDrive;
437
438 ConsoleVRDPServer * const mConsoleVRDPServer;
439
440 const ComObjPtr <Guest> mGuest;
441 const ComObjPtr <Keyboard> mKeyboard;
442 const ComObjPtr <Mouse> mMouse;
443 const ComObjPtr <Display> mDisplay;
444 const ComObjPtr <MachineDebugger> mDebugger;
445 const ComObjPtr <RemoteDisplayInfo> mRemoteDisplayInfo;
446
447 USBDeviceList mUSBDevices;
448 RemoteUSBDeviceList mRemoteUSBDevices;
449 SharedFolderList mSharedFolders;
450
451 /** The VM instance handle. */
452 PVM mpVM;
453 /** Holds the number of "readonly" mpVM callers (users) */
454 uint32_t mVMCallers;
455 /** Semaphore posted when the number of mpVM callers drops to zero */
456 RTSEMEVENT mVMZeroCallersSem;
457 /** true when Console has entered the mpVM destruction phase */
458 bool mVMDestroying : 1;
459
460 /** The current DVD drive state in the VM.
461 * This does not have to match the state maintained in the DVD. */
462 DriveState_T meDVDState;
463 /** The current Floppy drive state in the VM.
464 * This does not have to match the state maintained in the Floppy. */
465 DriveState_T meFloppyState;
466
467 VMMDev * const mVMMDev;
468 AudioSniffer * const mAudioSniffer;
469
470 PPDMLED mapFDLeds[2];
471 PPDMLED mapIDELeds[4];
472 PPDMLED mapNetworkLeds[8];
473#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
474 Utf8Str maTAPDeviceName[8];
475 RTFILE maTapFD[8];
476#endif
477
478 bool mVMStateChangeCallbackDisabled;
479
480 /* Local machine state value */
481 MachineState_T mMachineState;
482
483 typedef std::list <ComPtr <IConsoleCallback> > CallbackList;
484 CallbackList mCallbacks;
485
486 struct
487 {
488 /** OnMousePointerShapeChange() cache */
489 struct
490 {
491 bool valid;
492 bool visible;
493 bool alpha;
494 uint32_t xHot;
495 uint32_t yHot;
496 uint32_t width;
497 uint32_t height;
498 BYTE *shape;
499 size_t shapeSize;
500 }
501 mpsc;
502
503 /** OnMouseCapabilityChange() cache */
504 struct
505 {
506 bool valid;
507 BOOL supportsAbsolute;
508 BOOL needsHostCursor;
509 }
510 mcc;
511
512 /** OnKeyboardLedsChange() cache */
513 struct
514 {
515 bool valid;
516 bool numLock;
517 bool capsLock;
518 bool scrollLock;
519 }
520 klc;
521 }
522 mCallbackData;
523
524 friend struct VMTask;
525};
526
527#endif // ____H_CONSOLEIMPL
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