VirtualBox

source: vbox/trunk/src/VBox/Main/ConsoleImpl.cpp@ 5721

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

Cleaned out some old (pre-PDMUSB) code.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 209.8 KB
Line 
1/** @file
2 *
3 * VBox Console COM Class implementation
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 <iprt/types.h> /* for stdint.h constants */
19
20#if defined(RT_OS_WINDOWS)
21#elif defined(RT_OS_LINUX)
22# include <errno.h>
23# include <sys/ioctl.h>
24# include <sys/poll.h>
25# include <sys/fcntl.h>
26# include <sys/types.h>
27# include <sys/wait.h>
28# include <net/if.h>
29# include <linux/if_tun.h>
30# include <stdio.h>
31# include <stdlib.h>
32# include <string.h>
33#elif defined(VBOX_WITH_UNIXY_TAP_NETWORKING)
34# include <sys/wait.h>
35# include <sys/fcntl.h>
36#endif
37
38#include "ConsoleImpl.h"
39#include "GuestImpl.h"
40#include "KeyboardImpl.h"
41#include "MouseImpl.h"
42#include "DisplayImpl.h"
43#include "MachineDebuggerImpl.h"
44#include "USBDeviceImpl.h"
45#include "RemoteUSBDeviceImpl.h"
46#include "SharedFolderImpl.h"
47#include "AudioSnifferInterface.h"
48#include "ConsoleVRDPServer.h"
49#include "VMMDev.h"
50#include "Version.h"
51
52// generated header
53#include "SchemaDefs.h"
54
55#include "Logging.h"
56
57#include <iprt/string.h>
58#include <iprt/asm.h>
59#include <iprt/file.h>
60#include <iprt/path.h>
61#include <iprt/dir.h>
62#include <iprt/process.h>
63#include <iprt/ldr.h>
64#include <iprt/cpputils.h>
65
66#include <VBox/vmapi.h>
67#include <VBox/err.h>
68#include <VBox/param.h>
69#include <VBox/vusb.h>
70#include <VBox/mm.h>
71#include <VBox/ssm.h>
72#include <VBox/version.h>
73#ifdef VBOX_WITH_USB
74# include <VBox/pdmusb.h>
75#endif
76
77#include <VBox/VBoxDev.h>
78
79#include <VBox/HostServices/VBoxClipboardSvc.h>
80
81#include <set>
82#include <algorithm>
83#include <memory> // for auto_ptr
84
85
86// VMTask and friends
87////////////////////////////////////////////////////////////////////////////////
88
89/**
90 * Task structure for asynchronous VM operations.
91 *
92 * Once created, the task structure adds itself as a Console caller.
93 * This means:
94 *
95 * 1. The user must check for #rc() before using the created structure
96 * (e.g. passing it as a thread function argument). If #rc() returns a
97 * failure, the Console object may not be used by the task (see
98 Console::addCaller() for more details).
99 * 2. On successful initialization, the structure keeps the Console caller
100 * until destruction (to ensure Console remains in the Ready state and won't
101 * be accidentially uninitialized). Forgetting to delete the created task
102 * will lead to Console::uninit() stuck waiting for releasing all added
103 * callers.
104 *
105 * If \a aUsesVMPtr parameter is true, the task structure will also add itself
106 * as a Console::mpVM caller with the same meaning as above. See
107 * Console::addVMCaller() for more info.
108 */
109struct VMTask
110{
111 VMTask (Console *aConsole, bool aUsesVMPtr)
112 : mConsole (aConsole), mCallerAdded (false), mVMCallerAdded (false)
113 {
114 AssertReturnVoid (aConsole);
115 mRC = aConsole->addCaller();
116 if (SUCCEEDED (mRC))
117 {
118 mCallerAdded = true;
119 if (aUsesVMPtr)
120 {
121 mRC = aConsole->addVMCaller();
122 if (SUCCEEDED (mRC))
123 mVMCallerAdded = true;
124 }
125 }
126 }
127
128 ~VMTask()
129 {
130 if (mVMCallerAdded)
131 mConsole->releaseVMCaller();
132 if (mCallerAdded)
133 mConsole->releaseCaller();
134 }
135
136 HRESULT rc() const { return mRC; }
137 bool isOk() const { return SUCCEEDED (rc()); }
138
139 /** Releases the Console caller before destruction. Not normally necessary. */
140 void releaseCaller()
141 {
142 AssertReturnVoid (mCallerAdded);
143 mConsole->releaseCaller();
144 mCallerAdded = false;
145 }
146
147 /** Releases the VM caller before destruction. Not normally necessary. */
148 void releaseVMCaller()
149 {
150 AssertReturnVoid (mVMCallerAdded);
151 mConsole->releaseVMCaller();
152 mVMCallerAdded = false;
153 }
154
155 const ComObjPtr <Console> mConsole;
156
157private:
158
159 HRESULT mRC;
160 bool mCallerAdded : 1;
161 bool mVMCallerAdded : 1;
162};
163
164struct VMProgressTask : public VMTask
165{
166 VMProgressTask (Console *aConsole, Progress *aProgress, bool aUsesVMPtr)
167 : VMTask (aConsole, aUsesVMPtr), mProgress (aProgress) {}
168
169 const ComObjPtr <Progress> mProgress;
170};
171
172struct VMPowerUpTask : public VMProgressTask
173{
174 VMPowerUpTask (Console *aConsole, Progress *aProgress)
175 : VMProgressTask (aConsole, aProgress, false /* aUsesVMPtr */)
176 , mSetVMErrorCallback (NULL), mConfigConstructor (NULL) {}
177
178 PFNVMATERROR mSetVMErrorCallback;
179 PFNCFGMCONSTRUCTOR mConfigConstructor;
180 Utf8Str mSavedStateFile;
181 Console::SharedFolderDataMap mSharedFolders;
182};
183
184struct VMSaveTask : public VMProgressTask
185{
186 VMSaveTask (Console *aConsole, Progress *aProgress)
187 : VMProgressTask (aConsole, aProgress, true /* aUsesVMPtr */)
188 , mIsSnapshot (false)
189 , mLastMachineState (MachineState_InvalidMachineState) {}
190
191 bool mIsSnapshot;
192 Utf8Str mSavedStateFile;
193 MachineState_T mLastMachineState;
194 ComPtr <IProgress> mServerProgress;
195};
196
197
198// constructor / desctructor
199/////////////////////////////////////////////////////////////////////////////
200
201Console::Console()
202 : mSavedStateDataLoaded (false)
203 , mConsoleVRDPServer (NULL)
204 , mpVM (NULL)
205 , mVMCallers (0)
206 , mVMZeroCallersSem (NIL_RTSEMEVENT)
207 , mVMDestroying (false)
208 , meDVDState (DriveState_NotMounted)
209 , meFloppyState (DriveState_NotMounted)
210 , mVMMDev (NULL)
211 , mAudioSniffer (NULL)
212 , mVMStateChangeCallbackDisabled (false)
213 , mMachineState (MachineState_PoweredOff)
214{}
215
216Console::~Console()
217{}
218
219HRESULT Console::FinalConstruct()
220{
221 LogFlowThisFunc (("\n"));
222
223 memset(mapFDLeds, 0, sizeof(mapFDLeds));
224 memset(mapIDELeds, 0, sizeof(mapIDELeds));
225 memset(mapNetworkLeds, 0, sizeof(mapNetworkLeds));
226 memset(&mapUSBLed, 0, sizeof(mapUSBLed));
227 memset(&mapSharedFolderLed, 0, sizeof(mapSharedFolderLed));
228
229#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
230 Assert(ELEMENTS(maTapFD) == ELEMENTS(maTAPDeviceName));
231 Assert(ELEMENTS(maTapFD) >= SchemaDefs::NetworkAdapterCount);
232 for (unsigned i = 0; i < ELEMENTS(maTapFD); i++)
233 {
234 maTapFD[i] = NIL_RTFILE;
235 maTAPDeviceName[i] = "";
236 }
237#endif
238
239 return S_OK;
240}
241
242void Console::FinalRelease()
243{
244 LogFlowThisFunc (("\n"));
245
246 uninit();
247}
248
249// public initializer/uninitializer for internal purposes only
250/////////////////////////////////////////////////////////////////////////////
251
252HRESULT Console::init (IMachine *aMachine, IInternalMachineControl *aControl)
253{
254 AssertReturn (aMachine && aControl, E_INVALIDARG);
255
256 /* Enclose the state transition NotReady->InInit->Ready */
257 AutoInitSpan autoInitSpan (this);
258 AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
259
260 LogFlowThisFuncEnter();
261 LogFlowThisFunc(("aMachine=%p, aControl=%p\n", aMachine, aControl));
262
263 HRESULT rc = E_FAIL;
264
265 unconst (mMachine) = aMachine;
266 unconst (mControl) = aControl;
267
268 memset (&mCallbackData, 0, sizeof (mCallbackData));
269
270 /* Cache essential properties and objects */
271
272 rc = mMachine->COMGETTER(State) (&mMachineState);
273 AssertComRCReturnRC (rc);
274
275#ifdef VBOX_VRDP
276 rc = mMachine->COMGETTER(VRDPServer) (unconst (mVRDPServer).asOutParam());
277 AssertComRCReturnRC (rc);
278#endif
279
280 rc = mMachine->COMGETTER(DVDDrive) (unconst (mDVDDrive).asOutParam());
281 AssertComRCReturnRC (rc);
282
283 rc = mMachine->COMGETTER(FloppyDrive) (unconst (mFloppyDrive).asOutParam());
284 AssertComRCReturnRC (rc);
285
286 /* Create associated child COM objects */
287
288 unconst (mGuest).createObject();
289 rc = mGuest->init (this);
290 AssertComRCReturnRC (rc);
291
292 unconst (mKeyboard).createObject();
293 rc = mKeyboard->init (this);
294 AssertComRCReturnRC (rc);
295
296 unconst (mMouse).createObject();
297 rc = mMouse->init (this);
298 AssertComRCReturnRC (rc);
299
300 unconst (mDisplay).createObject();
301 rc = mDisplay->init (this);
302 AssertComRCReturnRC (rc);
303
304 unconst (mRemoteDisplayInfo).createObject();
305 rc = mRemoteDisplayInfo->init (this);
306 AssertComRCReturnRC (rc);
307
308 /* Grab global and machine shared folder lists */
309
310 rc = fetchSharedFolders (true /* aGlobal */);
311 AssertComRCReturnRC (rc);
312 rc = fetchSharedFolders (false /* aGlobal */);
313 AssertComRCReturnRC (rc);
314
315 /* Create other child objects */
316
317 unconst (mConsoleVRDPServer) = new ConsoleVRDPServer (this);
318 AssertReturn (mConsoleVRDPServer, E_FAIL);
319
320 mcAudioRefs = 0;
321 mcVRDPClients = 0;
322
323 unconst (mVMMDev) = new VMMDev(this);
324 AssertReturn (mVMMDev, E_FAIL);
325
326 unconst (mAudioSniffer) = new AudioSniffer(this);
327 AssertReturn (mAudioSniffer, E_FAIL);
328
329 /* Confirm a successful initialization when it's the case */
330 autoInitSpan.setSucceeded();
331
332 LogFlowThisFuncLeave();
333
334 return S_OK;
335}
336
337/**
338 * Uninitializes the Console object.
339 */
340void Console::uninit()
341{
342 LogFlowThisFuncEnter();
343
344 /* Enclose the state transition Ready->InUninit->NotReady */
345 AutoUninitSpan autoUninitSpan (this);
346 if (autoUninitSpan.uninitDone())
347 {
348 LogFlowThisFunc (("Already uninitialized.\n"));
349 LogFlowThisFuncLeave();
350 return;
351 }
352
353 LogFlowThisFunc (("initFailed()=%d\n", autoUninitSpan.initFailed()));
354
355 /*
356 * Uninit all children that ise addDependentChild()/removeDependentChild()
357 * in their init()/uninit() methods.
358 */
359 uninitDependentChildren();
360
361 /* power down the VM if necessary */
362 if (mpVM)
363 {
364 powerDown();
365 Assert (mpVM == NULL);
366 }
367
368 if (mVMZeroCallersSem != NIL_RTSEMEVENT)
369 {
370 RTSemEventDestroy (mVMZeroCallersSem);
371 mVMZeroCallersSem = NIL_RTSEMEVENT;
372 }
373
374 if (mAudioSniffer)
375 {
376 delete mAudioSniffer;
377 unconst (mAudioSniffer) = NULL;
378 }
379
380 if (mVMMDev)
381 {
382 delete mVMMDev;
383 unconst (mVMMDev) = NULL;
384 }
385
386 mGlobalSharedFolders.clear();
387 mMachineSharedFolders.clear();
388
389 mSharedFolders.clear();
390 mRemoteUSBDevices.clear();
391 mUSBDevices.clear();
392
393 if (mRemoteDisplayInfo)
394 {
395 mRemoteDisplayInfo->uninit();
396 unconst (mRemoteDisplayInfo).setNull();;
397 }
398
399 if (mDebugger)
400 {
401 mDebugger->uninit();
402 unconst (mDebugger).setNull();
403 }
404
405 if (mDisplay)
406 {
407 mDisplay->uninit();
408 unconst (mDisplay).setNull();
409 }
410
411 if (mMouse)
412 {
413 mMouse->uninit();
414 unconst (mMouse).setNull();
415 }
416
417 if (mKeyboard)
418 {
419 mKeyboard->uninit();
420 unconst (mKeyboard).setNull();;
421 }
422
423 if (mGuest)
424 {
425 mGuest->uninit();
426 unconst (mGuest).setNull();;
427 }
428
429 if (mConsoleVRDPServer)
430 {
431 delete mConsoleVRDPServer;
432 unconst (mConsoleVRDPServer) = NULL;
433 }
434
435 unconst (mFloppyDrive).setNull();
436 unconst (mDVDDrive).setNull();
437#ifdef VBOX_VRDP
438 unconst (mVRDPServer).setNull();
439#endif
440
441 unconst (mControl).setNull();
442 unconst (mMachine).setNull();
443
444 /* Release all callbacks. Do this after uninitializing the components,
445 * as some of them are well-behaved and unregister their callbacks.
446 * These would trigger error messages complaining about trying to
447 * unregister a non-registered callback. */
448 mCallbacks.clear();
449
450 /* dynamically allocated members of mCallbackData are uninitialized
451 * at the end of powerDown() */
452 Assert (!mCallbackData.mpsc.valid && mCallbackData.mpsc.shape == NULL);
453 Assert (!mCallbackData.mcc.valid);
454 Assert (!mCallbackData.klc.valid);
455
456 LogFlowThisFuncLeave();
457}
458
459#ifdef VRDP_NO_COM
460int Console::VRDPClientLogon (uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain)
461#else
462DECLCALLBACK(int) Console::vrdp_ClientLogon (void *pvUser,
463 uint32_t u32ClientId,
464 const char *pszUser,
465 const char *pszPassword,
466 const char *pszDomain)
467#endif /* VRDP_NO_COM */
468{
469 LogFlowFuncEnter();
470 LogFlowFunc (("%d, %s, %s, %s\n", u32ClientId, pszUser, pszPassword, pszDomain));
471
472#ifdef VRDP_NO_COM
473 Console *console = this;
474#else
475 Console *console = static_cast <Console *> (pvUser);
476#endif /* VRDP_NO_COM */
477 AssertReturn (console, VERR_INVALID_POINTER);
478
479 AutoCaller autoCaller (console);
480 if (!autoCaller.isOk())
481 {
482 /* Console has been already uninitialized, deny request */
483 LogRel(("VRDPAUTH: Access denied (Console uninitialized).\n"));
484 LogFlowFuncLeave();
485 return VERR_ACCESS_DENIED;
486 }
487
488 Guid uuid;
489 HRESULT hrc = console->mMachine->COMGETTER (Id) (uuid.asOutParam());
490 AssertComRCReturn (hrc, VERR_ACCESS_DENIED);
491
492 VRDPAuthType_T authType = VRDPAuthType_VRDPAuthNull;
493 hrc = console->mVRDPServer->COMGETTER(AuthType) (&authType);
494 AssertComRCReturn (hrc, VERR_ACCESS_DENIED);
495
496 ULONG authTimeout = 0;
497 hrc = console->mVRDPServer->COMGETTER(AuthTimeout) (&authTimeout);
498 AssertComRCReturn (hrc, VERR_ACCESS_DENIED);
499
500 VRDPAuthResult result = VRDPAuthAccessDenied;
501 VRDPAuthGuestJudgement guestJudgement = VRDPAuthGuestNotAsked;
502
503 LogFlowFunc(("Auth type %d\n", authType));
504
505 LogRel (("VRDPAUTH: User: [%s]. Domain: [%s]. Authentication type: [%s]\n",
506 pszUser, pszDomain,
507 authType == VRDPAuthType_VRDPAuthNull?
508 "null":
509 (authType == VRDPAuthType_VRDPAuthExternal?
510 "external":
511 (authType == VRDPAuthType_VRDPAuthGuest?
512 "guest":
513 "INVALID"
514 )
515 )
516 ));
517
518 /* Multiconnection check. */
519 BOOL allowMultiConnection = FALSE;
520 hrc = console->mVRDPServer->COMGETTER(AllowMultiConnection) (&allowMultiConnection);
521 AssertComRCReturn (hrc, VERR_ACCESS_DENIED);
522
523 LogFlowFunc(("allowMultiConnection %d, console->mcVRDPClients = %d\n", allowMultiConnection, console->mcVRDPClients));
524
525 if (allowMultiConnection == FALSE)
526 {
527 /* Note: the variable is incremented in ClientConnect callback, which is called when the client
528 * is successfully connected, that is after the ClientLogon callback. Therefore the mcVRDPClients
529 * value is 0 for first client.
530 */
531 if (console->mcVRDPClients > 0)
532 {
533 /* Reject. */
534 LogRel(("VRDPAUTH: Multiple connections are not enabled. Access denied.\n"));
535 return VERR_ACCESS_DENIED;
536 }
537 }
538
539 switch (authType)
540 {
541 case VRDPAuthType_VRDPAuthNull:
542 {
543 result = VRDPAuthAccessGranted;
544 break;
545 }
546
547 case VRDPAuthType_VRDPAuthExternal:
548 {
549 /* Call the external library. */
550 result = console->mConsoleVRDPServer->Authenticate (uuid, guestJudgement, pszUser, pszPassword, pszDomain, u32ClientId);
551
552 if (result != VRDPAuthDelegateToGuest)
553 {
554 break;
555 }
556
557 LogRel(("VRDPAUTH: Delegated to guest.\n"));
558
559 LogFlowFunc (("External auth asked for guest judgement\n"));
560 } /* pass through */
561
562 case VRDPAuthType_VRDPAuthGuest:
563 {
564 guestJudgement = VRDPAuthGuestNotReacted;
565
566 if (console->mVMMDev)
567 {
568 /* Issue the request to guest. Assume that the call does not require EMT. It should not. */
569
570 /* Ask the guest to judge these credentials. */
571 uint32_t u32GuestFlags = VMMDEV_SETCREDENTIALS_JUDGE;
572
573 int rc = console->mVMMDev->getVMMDevPort()->pfnSetCredentials (console->mVMMDev->getVMMDevPort(),
574 pszUser, pszPassword, pszDomain, u32GuestFlags);
575
576 if (VBOX_SUCCESS (rc))
577 {
578 /* Wait for guest. */
579 rc = console->mVMMDev->WaitCredentialsJudgement (authTimeout, &u32GuestFlags);
580
581 if (VBOX_SUCCESS (rc))
582 {
583 switch (u32GuestFlags & (VMMDEV_CREDENTIALS_JUDGE_OK | VMMDEV_CREDENTIALS_JUDGE_DENY | VMMDEV_CREDENTIALS_JUDGE_NOJUDGEMENT))
584 {
585 case VMMDEV_CREDENTIALS_JUDGE_DENY: guestJudgement = VRDPAuthGuestAccessDenied; break;
586 case VMMDEV_CREDENTIALS_JUDGE_NOJUDGEMENT: guestJudgement = VRDPAuthGuestNoJudgement; break;
587 case VMMDEV_CREDENTIALS_JUDGE_OK: guestJudgement = VRDPAuthGuestAccessGranted; break;
588 default:
589 LogFlowFunc (("Invalid guest flags %08X!!!\n", u32GuestFlags)); break;
590 }
591 }
592 else
593 {
594 LogFlowFunc (("Wait for credentials judgement rc = %Vrc!!!\n", rc));
595 }
596
597 LogFlowFunc (("Guest judgement %d\n", guestJudgement));
598 }
599 else
600 {
601 LogFlowFunc (("Could not set credentials rc = %Vrc!!!\n", rc));
602 }
603 }
604
605 if (authType == VRDPAuthType_VRDPAuthExternal)
606 {
607 LogRel(("VRDPAUTH: Guest judgement %d.\n", guestJudgement));
608 LogFlowFunc (("External auth called again with guest judgement = %d\n", guestJudgement));
609 result = console->mConsoleVRDPServer->Authenticate (uuid, guestJudgement, pszUser, pszPassword, pszDomain, u32ClientId);
610 }
611 else
612 {
613 switch (guestJudgement)
614 {
615 case VRDPAuthGuestAccessGranted:
616 result = VRDPAuthAccessGranted;
617 break;
618 default:
619 result = VRDPAuthAccessDenied;
620 break;
621 }
622 }
623 } break;
624
625 default:
626 AssertFailed();
627 }
628
629 LogFlowFunc (("Result = %d\n", result));
630 LogFlowFuncLeave();
631
632 if (result == VRDPAuthAccessGranted)
633 {
634 LogRel(("VRDPAUTH: Access granted.\n"));
635 return VINF_SUCCESS;
636 }
637
638 /* Reject. */
639 LogRel(("VRDPAUTH: Access denied.\n"));
640 return VERR_ACCESS_DENIED;
641}
642
643#ifdef VRDP_NO_COM
644void Console::VRDPClientConnect (uint32_t u32ClientId)
645#else
646DECLCALLBACK(void) Console::vrdp_ClientConnect (void *pvUser,
647 uint32_t u32ClientId)
648#endif /* VRDP_NO_COM */
649{
650 LogFlowFuncEnter();
651
652#ifdef VRDP_NO_COM
653 Console *console = this;
654#else
655 Console *console = static_cast <Console *> (pvUser);
656#endif /* VRDP_NO_COM */
657 AssertReturnVoid (console);
658
659 AutoCaller autoCaller (console);
660 AssertComRCReturnVoid (autoCaller.rc());
661
662#ifdef VBOX_VRDP
663 uint32_t u32Clients = ASMAtomicIncU32(&console->mcVRDPClients);
664
665 if (u32Clients == 1)
666 {
667 console->getVMMDev()->getVMMDevPort()->
668 pfnVRDPChange (console->getVMMDev()->getVMMDevPort(),
669 true, VRDP_EXPERIENCE_LEVEL_FULL); // @todo configurable
670 }
671
672 NOREF(u32ClientId);
673 console->mDisplay->VideoAccelVRDP (true);
674#endif /* VBOX_VRDP */
675
676 LogFlowFuncLeave();
677 return;
678}
679
680#ifdef VRDP_NO_COM
681void Console::VRDPClientDisconnect (uint32_t u32ClientId,
682 uint32_t fu32Intercepted)
683#else
684DECLCALLBACK(void) Console::vrdp_ClientDisconnect (void *pvUser,
685 uint32_t u32ClientId,
686 uint32_t fu32Intercepted)
687#endif /* VRDP_NO_COM */
688{
689 LogFlowFuncEnter();
690
691#ifdef VRDP_NO_COM
692 Console *console = this;
693#else
694 Console *console = static_cast <Console *> (pvUser);
695#endif /* VRDP_NO_COM */
696 AssertReturnVoid (console);
697
698 AutoCaller autoCaller (console);
699 AssertComRCReturnVoid (autoCaller.rc());
700
701 AssertReturnVoid (console->mConsoleVRDPServer);
702
703#ifdef VBOX_VRDP
704 uint32_t u32Clients = ASMAtomicDecU32(&console->mcVRDPClients);
705
706 if (u32Clients == 0)
707 {
708 console->getVMMDev()->getVMMDevPort()->
709 pfnVRDPChange (console->getVMMDev()->getVMMDevPort(),
710 false, 0);
711 }
712
713 console->mDisplay->VideoAccelVRDP (false);
714#endif /* VBOX_VRDP */
715
716 if (fu32Intercepted & VRDP_CLIENT_INTERCEPT_USB)
717 {
718 console->mConsoleVRDPServer->USBBackendDelete (u32ClientId);
719 }
720
721#ifdef VBOX_VRDP
722 if (fu32Intercepted & VRDP_CLIENT_INTERCEPT_CLIPBOARD)
723 {
724 console->mConsoleVRDPServer->ClipboardDelete (u32ClientId);
725 }
726
727 if (fu32Intercepted & VRDP_CLIENT_INTERCEPT_AUDIO)
728 {
729 console->mcAudioRefs--;
730
731 if (console->mcAudioRefs <= 0)
732 {
733 if (console->mAudioSniffer)
734 {
735 PPDMIAUDIOSNIFFERPORT port = console->mAudioSniffer->getAudioSnifferPort();
736 if (port)
737 {
738 port->pfnSetup (port, false, false);
739 }
740 }
741 }
742 }
743#endif /* VBOX_VRDP */
744
745 Guid uuid;
746 HRESULT hrc = console->mMachine->COMGETTER (Id) (uuid.asOutParam());
747 AssertComRC (hrc);
748
749 VRDPAuthType_T authType = VRDPAuthType_VRDPAuthNull;
750 hrc = console->mVRDPServer->COMGETTER(AuthType) (&authType);
751 AssertComRC (hrc);
752
753 if (authType == VRDPAuthType_VRDPAuthExternal)
754 console->mConsoleVRDPServer->AuthDisconnect (uuid, u32ClientId);
755
756 LogFlowFuncLeave();
757 return;
758}
759
760#ifdef VRDP_NO_COM
761void Console::VRDPInterceptAudio (uint32_t u32ClientId)
762#else
763DECLCALLBACK(void) Console::vrdp_InterceptAudio (void *pvUser,
764 uint32_t u32ClientId)
765#endif /* VRDP_NO_COM */
766{
767 LogFlowFuncEnter();
768
769#ifdef VRDP_NO_COM
770 Console *console = this;
771#else
772 Console *console = static_cast <Console *> (pvUser);
773#endif /* VRDP_NO_COM */
774 AssertReturnVoid (console);
775
776 AutoCaller autoCaller (console);
777 AssertComRCReturnVoid (autoCaller.rc());
778
779 LogFlowFunc (("mAudioSniffer %p, u32ClientId %d.\n",
780 console->mAudioSniffer, u32ClientId));
781 NOREF(u32ClientId);
782
783#ifdef VBOX_VRDP
784 console->mcAudioRefs++;
785
786 if (console->mcAudioRefs == 1)
787 {
788 if (console->mAudioSniffer)
789 {
790 PPDMIAUDIOSNIFFERPORT port = console->mAudioSniffer->getAudioSnifferPort();
791 if (port)
792 {
793 port->pfnSetup (port, true, true);
794 }
795 }
796 }
797#endif
798
799 LogFlowFuncLeave();
800 return;
801}
802
803#ifdef VRDP_NO_COM
804void Console::VRDPInterceptUSB (uint32_t u32ClientId, void **ppvIntercept)
805#else
806DECLCALLBACK(void) Console::vrdp_InterceptUSB (void *pvUser,
807 uint32_t u32ClientId,
808 PFNVRDPUSBCALLBACK *ppfn,
809 void **ppv)
810#endif /* VRDP_NO_COM */
811{
812 LogFlowFuncEnter();
813
814#ifdef VRDP_NO_COM
815 Console *console = this;
816#else
817 Console *console = static_cast <Console *> (pvUser);
818#endif /* VRDP_NO_COM */
819 AssertReturnVoid (console);
820
821 AutoCaller autoCaller (console);
822 AssertComRCReturnVoid (autoCaller.rc());
823
824 AssertReturnVoid (console->mConsoleVRDPServer);
825
826#ifdef VRDP_NO_COM
827 mConsoleVRDPServer->USBBackendCreate (u32ClientId, ppvIntercept);
828#else
829 console->mConsoleVRDPServer->USBBackendCreate (u32ClientId, ppfn, ppv);
830#endif /* VRDP_NO_COM */
831
832 LogFlowFuncLeave();
833 return;
834}
835
836#ifdef VRDP_NO_COM
837void Console::VRDPInterceptClipboard (uint32_t u32ClientId)
838#else
839DECLCALLBACK(void) Console::vrdp_InterceptClipboard (void *pvUser,
840 uint32_t u32ClientId,
841 PFNVRDPCLIPBOARDCALLBACK *ppfn,
842 void **ppv)
843#endif /* VRDP_NO_COM */
844{
845 LogFlowFuncEnter();
846
847#ifdef VRDP_NO_COM
848 Console *console = this;
849#else
850 Console *console = static_cast <Console *> (pvUser);
851#endif /* VRDP_NO_COM */
852 AssertReturnVoid (console);
853
854 AutoCaller autoCaller (console);
855 AssertComRCReturnVoid (autoCaller.rc());
856
857 AssertReturnVoid (console->mConsoleVRDPServer);
858
859#ifdef VBOX_VRDP
860#ifdef VRDP_NO_COM
861 mConsoleVRDPServer->ClipboardCreate (u32ClientId);
862#else
863 console->mConsoleVRDPServer->ClipboardCreate (u32ClientId, ppfn, ppv);
864#endif /* VRDP_NO_COM */
865#endif /* VBOX_VRDP */
866
867 LogFlowFuncLeave();
868 return;
869}
870
871
872#ifdef VRDP_NO_COM
873#else
874// static
875VRDPSERVERCALLBACK Console::sVrdpServerCallback =
876{
877 vrdp_ClientLogon,
878 vrdp_ClientConnect,
879 vrdp_ClientDisconnect,
880 vrdp_InterceptAudio,
881 vrdp_InterceptUSB,
882 vrdp_InterceptClipboard
883};
884#endif /* VRDP_NO_COM */
885
886//static
887const char *Console::sSSMConsoleUnit = "ConsoleData";
888//static
889uint32_t Console::sSSMConsoleVer = 0x00010000;
890
891/**
892 * Loads various console data stored in the saved state file.
893 * This method does validation of the state file and returns an error info
894 * when appropriate.
895 *
896 * The method does nothing if the machine is not in the Saved file or if
897 * console data from it has already been loaded.
898 *
899 * @note The caller must lock this object for writing.
900 */
901HRESULT Console::loadDataFromSavedState()
902{
903 if (mMachineState != MachineState_Saved || mSavedStateDataLoaded)
904 return S_OK;
905
906 Bstr savedStateFile;
907 HRESULT rc = mMachine->COMGETTER(StateFilePath) (savedStateFile.asOutParam());
908 if (FAILED (rc))
909 return rc;
910
911 PSSMHANDLE ssm;
912 int vrc = SSMR3Open (Utf8Str(savedStateFile), 0, &ssm);
913 if (VBOX_SUCCESS (vrc))
914 {
915 uint32_t version = 0;
916 vrc = SSMR3Seek (ssm, sSSMConsoleUnit, 0 /* iInstance */, &version);
917 if (version == sSSMConsoleVer)
918 {
919 if (VBOX_SUCCESS (vrc))
920 vrc = loadStateFileExec (ssm, this, 0);
921 else if (vrc == VERR_SSM_UNIT_NOT_FOUND)
922 vrc = VINF_SUCCESS;
923 }
924 else
925 vrc = VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
926
927 SSMR3Close (ssm);
928 }
929
930 if (VBOX_FAILURE (vrc))
931 rc = setError (E_FAIL,
932 tr ("The saved state file '%ls' is invalid (%Vrc). "
933 "Discard the saved state and try again"),
934 savedStateFile.raw(), vrc);
935
936 mSavedStateDataLoaded = true;
937
938 return rc;
939}
940
941/**
942 * Callback handler to save various console data to the state file,
943 * called when the user saves the VM state.
944 *
945 * @param pvUser pointer to Console
946 *
947 * @note Locks the Console object for reading.
948 */
949//static
950DECLCALLBACK(void)
951Console::saveStateFileExec (PSSMHANDLE pSSM, void *pvUser)
952{
953 LogFlowFunc (("\n"));
954
955 Console *that = static_cast <Console *> (pvUser);
956 AssertReturnVoid (that);
957
958 AutoCaller autoCaller (that);
959 AssertComRCReturnVoid (autoCaller.rc());
960
961 AutoReaderLock alock (that);
962
963 int vrc = SSMR3PutU32 (pSSM, (uint32_t)that->mSharedFolders.size());
964 AssertRC (vrc);
965
966 for (SharedFolderMap::const_iterator it = that->mSharedFolders.begin();
967 it != that->mSharedFolders.end();
968 ++ it)
969 {
970 ComObjPtr <SharedFolder> folder = (*it).second;
971 // don't lock the folder because methods we access are const
972
973 Utf8Str name = folder->name();
974 vrc = SSMR3PutU32 (pSSM, (uint32_t)name.length() + 1 /* term. 0 */);
975 AssertRC (vrc);
976 vrc = SSMR3PutStrZ (pSSM, name);
977 AssertRC (vrc);
978
979 Utf8Str hostPath = folder->hostPath();
980 vrc = SSMR3PutU32 (pSSM, (uint32_t)hostPath.length() + 1 /* term. 0 */);
981 AssertRC (vrc);
982 vrc = SSMR3PutStrZ (pSSM, hostPath);
983 AssertRC (vrc);
984 }
985
986 return;
987}
988
989/**
990 * Callback handler to load various console data from the state file.
991 * When \a u32Version is 0, this method is called from #loadDataFromSavedState,
992 * otherwise it is called when the VM is being restored from the saved state.
993 *
994 * @param pvUser pointer to Console
995 * @param u32Version Console unit version.
996 * When not 0, should match sSSMConsoleVer.
997 *
998 * @note Locks the Console object for writing.
999 */
1000//static
1001DECLCALLBACK(int)
1002Console::loadStateFileExec (PSSMHANDLE pSSM, void *pvUser, uint32_t u32Version)
1003{
1004 LogFlowFunc (("\n"));
1005
1006 if (u32Version != 0 && u32Version != sSSMConsoleVer)
1007 return VERR_VERSION_MISMATCH;
1008
1009 if (u32Version != 0)
1010 {
1011 /* currently, nothing to do when we've been called from VMR3Load */
1012 return VINF_SUCCESS;
1013 }
1014
1015 Console *that = static_cast <Console *> (pvUser);
1016 AssertReturn (that, VERR_INVALID_PARAMETER);
1017
1018 AutoCaller autoCaller (that);
1019 AssertComRCReturn (autoCaller.rc(), VERR_ACCESS_DENIED);
1020
1021 AutoLock alock (that);
1022
1023 AssertReturn (that->mSharedFolders.size() == 0, VERR_INTERNAL_ERROR);
1024
1025 uint32_t size = 0;
1026 int vrc = SSMR3GetU32 (pSSM, &size);
1027 AssertRCReturn (vrc, vrc);
1028
1029 for (uint32_t i = 0; i < size; ++ i)
1030 {
1031 Bstr name;
1032 Bstr hostPath;
1033
1034 uint32_t szBuf = 0;
1035 char *buf = NULL;
1036
1037 vrc = SSMR3GetU32 (pSSM, &szBuf);
1038 AssertRCReturn (vrc, vrc);
1039 buf = new char [szBuf];
1040 vrc = SSMR3GetStrZ (pSSM, buf, szBuf);
1041 AssertRC (vrc);
1042 name = buf;
1043 delete[] buf;
1044
1045 vrc = SSMR3GetU32 (pSSM, &szBuf);
1046 AssertRCReturn (vrc, vrc);
1047 buf = new char [szBuf];
1048 vrc = SSMR3GetStrZ (pSSM, buf, szBuf);
1049 AssertRC (vrc);
1050 hostPath = buf;
1051 delete[] buf;
1052
1053 ComObjPtr <SharedFolder> sharedFolder;
1054 sharedFolder.createObject();
1055 HRESULT rc = sharedFolder->init (that, name, hostPath);
1056 AssertComRCReturn (rc, VERR_INTERNAL_ERROR);
1057
1058 that->mSharedFolders.insert (std::make_pair (name, sharedFolder));
1059 }
1060
1061 return VINF_SUCCESS;
1062}
1063
1064// IConsole properties
1065/////////////////////////////////////////////////////////////////////////////
1066
1067STDMETHODIMP Console::COMGETTER(Machine) (IMachine **aMachine)
1068{
1069 if (!aMachine)
1070 return E_POINTER;
1071
1072 AutoCaller autoCaller (this);
1073 CheckComRCReturnRC (autoCaller.rc());
1074
1075 /* mMachine is constant during life time, no need to lock */
1076 mMachine.queryInterfaceTo (aMachine);
1077
1078 return S_OK;
1079}
1080
1081STDMETHODIMP Console::COMGETTER(State) (MachineState_T *aMachineState)
1082{
1083 if (!aMachineState)
1084 return E_POINTER;
1085
1086 AutoCaller autoCaller (this);
1087 CheckComRCReturnRC (autoCaller.rc());
1088
1089 AutoReaderLock alock (this);
1090
1091 /* we return our local state (since it's always the same as on the server) */
1092 *aMachineState = mMachineState;
1093
1094 return S_OK;
1095}
1096
1097STDMETHODIMP Console::COMGETTER(Guest) (IGuest **aGuest)
1098{
1099 if (!aGuest)
1100 return E_POINTER;
1101
1102 AutoCaller autoCaller (this);
1103 CheckComRCReturnRC (autoCaller.rc());
1104
1105 /* mGuest is constant during life time, no need to lock */
1106 mGuest.queryInterfaceTo (aGuest);
1107
1108 return S_OK;
1109}
1110
1111STDMETHODIMP Console::COMGETTER(Keyboard) (IKeyboard **aKeyboard)
1112{
1113 if (!aKeyboard)
1114 return E_POINTER;
1115
1116 AutoCaller autoCaller (this);
1117 CheckComRCReturnRC (autoCaller.rc());
1118
1119 /* mKeyboard is constant during life time, no need to lock */
1120 mKeyboard.queryInterfaceTo (aKeyboard);
1121
1122 return S_OK;
1123}
1124
1125STDMETHODIMP Console::COMGETTER(Mouse) (IMouse **aMouse)
1126{
1127 if (!aMouse)
1128 return E_POINTER;
1129
1130 AutoCaller autoCaller (this);
1131 CheckComRCReturnRC (autoCaller.rc());
1132
1133 /* mMouse is constant during life time, no need to lock */
1134 mMouse.queryInterfaceTo (aMouse);
1135
1136 return S_OK;
1137}
1138
1139STDMETHODIMP Console::COMGETTER(Display) (IDisplay **aDisplay)
1140{
1141 if (!aDisplay)
1142 return E_POINTER;
1143
1144 AutoCaller autoCaller (this);
1145 CheckComRCReturnRC (autoCaller.rc());
1146
1147 /* mDisplay is constant during life time, no need to lock */
1148 mDisplay.queryInterfaceTo (aDisplay);
1149
1150 return S_OK;
1151}
1152
1153STDMETHODIMP Console::COMGETTER(Debugger) (IMachineDebugger **aDebugger)
1154{
1155 if (!aDebugger)
1156 return E_POINTER;
1157
1158 AutoCaller autoCaller (this);
1159 CheckComRCReturnRC (autoCaller.rc());
1160
1161 /* we need a write lock because of the lazy mDebugger initialization*/
1162 AutoLock alock (this);
1163
1164 /* check if we have to create the debugger object */
1165 if (!mDebugger)
1166 {
1167 unconst (mDebugger).createObject();
1168 mDebugger->init (this);
1169 }
1170
1171 mDebugger.queryInterfaceTo (aDebugger);
1172
1173 return S_OK;
1174}
1175
1176STDMETHODIMP Console::COMGETTER(USBDevices) (IUSBDeviceCollection **aUSBDevices)
1177{
1178 if (!aUSBDevices)
1179 return E_POINTER;
1180
1181 AutoCaller autoCaller (this);
1182 CheckComRCReturnRC (autoCaller.rc());
1183
1184 AutoReaderLock alock (this);
1185
1186 ComObjPtr <OUSBDeviceCollection> collection;
1187 collection.createObject();
1188 collection->init (mUSBDevices);
1189 collection.queryInterfaceTo (aUSBDevices);
1190
1191 return S_OK;
1192}
1193
1194STDMETHODIMP Console::COMGETTER(RemoteUSBDevices) (IHostUSBDeviceCollection **aRemoteUSBDevices)
1195{
1196 if (!aRemoteUSBDevices)
1197 return E_POINTER;
1198
1199 AutoCaller autoCaller (this);
1200 CheckComRCReturnRC (autoCaller.rc());
1201
1202 AutoReaderLock alock (this);
1203
1204 ComObjPtr <RemoteUSBDeviceCollection> collection;
1205 collection.createObject();
1206 collection->init (mRemoteUSBDevices);
1207 collection.queryInterfaceTo (aRemoteUSBDevices);
1208
1209 return S_OK;
1210}
1211
1212STDMETHODIMP Console::COMGETTER(RemoteDisplayInfo) (IRemoteDisplayInfo **aRemoteDisplayInfo)
1213{
1214 if (!aRemoteDisplayInfo)
1215 return E_POINTER;
1216
1217 AutoCaller autoCaller (this);
1218 CheckComRCReturnRC (autoCaller.rc());
1219
1220 /* mDisplay is constant during life time, no need to lock */
1221 mRemoteDisplayInfo.queryInterfaceTo (aRemoteDisplayInfo);
1222
1223 return S_OK;
1224}
1225
1226STDMETHODIMP
1227Console::COMGETTER(SharedFolders) (ISharedFolderCollection **aSharedFolders)
1228{
1229 if (!aSharedFolders)
1230 return E_POINTER;
1231
1232 AutoCaller autoCaller (this);
1233 CheckComRCReturnRC (autoCaller.rc());
1234
1235 /* loadDataFromSavedState() needs a write lock */
1236 AutoLock alock (this);
1237
1238 /* Read console data stored in the saved state file (if not yet done) */
1239 HRESULT rc = loadDataFromSavedState();
1240 CheckComRCReturnRC (rc);
1241
1242 ComObjPtr <SharedFolderCollection> coll;
1243 coll.createObject();
1244 coll->init (mSharedFolders);
1245 coll.queryInterfaceTo (aSharedFolders);
1246
1247 return S_OK;
1248}
1249
1250// IConsole methods
1251/////////////////////////////////////////////////////////////////////////////
1252
1253STDMETHODIMP Console::PowerUp (IProgress **aProgress)
1254{
1255 LogFlowThisFuncEnter();
1256 LogFlowThisFunc (("mMachineState=%d\n", mMachineState));
1257
1258 AutoCaller autoCaller (this);
1259 CheckComRCReturnRC (autoCaller.rc());
1260
1261 AutoLock alock (this);
1262
1263 if (mMachineState >= MachineState_Running)
1264 return setError(E_FAIL, tr ("Cannot power up the machine as it is "
1265 "already running (machine state: %d)"),
1266 mMachineState);
1267
1268 /*
1269 * First check whether all disks are accessible. This is not a 100%
1270 * bulletproof approach (race condition, it might become inaccessible
1271 * right after the check) but it's convenient as it will cover 99.9%
1272 * of the cases and here, we're able to provide meaningful error
1273 * information.
1274 */
1275 ComPtr<IHardDiskAttachmentCollection> coll;
1276 mMachine->COMGETTER(HardDiskAttachments)(coll.asOutParam());
1277 ComPtr<IHardDiskAttachmentEnumerator> enumerator;
1278 coll->Enumerate(enumerator.asOutParam());
1279 BOOL fHasMore;
1280 while (SUCCEEDED(enumerator->HasMore(&fHasMore)) && fHasMore)
1281 {
1282 ComPtr<IHardDiskAttachment> attach;
1283 enumerator->GetNext(attach.asOutParam());
1284 ComPtr<IHardDisk> hdd;
1285 attach->COMGETTER(HardDisk)(hdd.asOutParam());
1286 Assert(hdd);
1287 BOOL fAccessible;
1288 HRESULT rc = hdd->COMGETTER(AllAccessible)(&fAccessible);
1289 CheckComRCReturnRC (rc);
1290 if (!fAccessible)
1291 {
1292 Bstr loc;
1293 hdd->COMGETTER(Location) (loc.asOutParam());
1294 Bstr errMsg;
1295 hdd->COMGETTER(LastAccessError) (errMsg.asOutParam());
1296 return setError (E_FAIL,
1297 tr ("VM cannot start because the hard disk '%ls' is not accessible "
1298 "(%ls)"),
1299 loc.raw(), errMsg.raw());
1300 }
1301 }
1302
1303 /* now perform the same check if a ISO is mounted */
1304 ComPtr<IDVDDrive> dvdDrive;
1305 mMachine->COMGETTER(DVDDrive)(dvdDrive.asOutParam());
1306 ComPtr<IDVDImage> dvdImage;
1307 dvdDrive->GetImage(dvdImage.asOutParam());
1308 if (dvdImage)
1309 {
1310 BOOL fAccessible;
1311 HRESULT rc = dvdImage->COMGETTER(Accessible)(&fAccessible);
1312 CheckComRCReturnRC (rc);
1313 if (!fAccessible)
1314 {
1315 Bstr filePath;
1316 dvdImage->COMGETTER(FilePath)(filePath.asOutParam());
1317 /// @todo (r=dmik) grab the last access error once
1318 // IDVDImage::lastAccessError is there
1319 return setError (E_FAIL,
1320 tr ("The virtual machine could not be started because the DVD image '%ls' which is attached to it could not be found or could not be opened. Please detach the image and try again"),
1321 filePath.raw());
1322 }
1323 }
1324
1325 /* now perform the same check if a floppy is mounted */
1326 ComPtr<IFloppyDrive> floppyDrive;
1327 mMachine->COMGETTER(FloppyDrive)(floppyDrive.asOutParam());
1328 ComPtr<IFloppyImage> floppyImage;
1329 floppyDrive->GetImage(floppyImage.asOutParam());
1330 if (floppyImage)
1331 {
1332 BOOL fAccessible;
1333 HRESULT rc = floppyImage->COMGETTER(Accessible)(&fAccessible);
1334 CheckComRCReturnRC (rc);
1335 if (!fAccessible)
1336 {
1337 Bstr filePath;
1338 floppyImage->COMGETTER(FilePath)(filePath.asOutParam());
1339 /// @todo (r=dmik) grab the last access error once
1340 // IDVDImage::lastAccessError is there
1341 return setError (E_FAIL,
1342 tr ("The virtual machine could not be started because the floppy image '%ls' which is attached to it could not be found or could not be opened. Please detach the image and try again"),
1343 filePath.raw());
1344 }
1345 }
1346
1347 /* now the network cards will undergo a quick consistency check */
1348 for (ULONG slot = 0; slot < SchemaDefs::NetworkAdapterCount; slot ++)
1349 {
1350 ComPtr<INetworkAdapter> adapter;
1351 mMachine->GetNetworkAdapter (slot, adapter.asOutParam());
1352 BOOL enabled = FALSE;
1353 adapter->COMGETTER(Enabled) (&enabled);
1354 if (!enabled)
1355 continue;
1356
1357 NetworkAttachmentType_T netattach;
1358 adapter->COMGETTER(AttachmentType)(&netattach);
1359 switch (netattach)
1360 {
1361 case NetworkAttachmentType_HostInterfaceNetworkAttachment:
1362 {
1363#ifdef RT_OS_WINDOWS
1364 /* a valid host interface must have been set */
1365 Bstr hostif;
1366 adapter->COMGETTER(HostInterface)(hostif.asOutParam());
1367 if (!hostif)
1368 {
1369 return setError (E_FAIL,
1370 tr ("VM cannot start because host interface networking "
1371 "requires a host interface name to be set"));
1372 }
1373 ComPtr<IVirtualBox> virtualBox;
1374 mMachine->COMGETTER(Parent)(virtualBox.asOutParam());
1375 ComPtr<IHost> host;
1376 virtualBox->COMGETTER(Host)(host.asOutParam());
1377 ComPtr<IHostNetworkInterfaceCollection> coll;
1378 host->COMGETTER(NetworkInterfaces)(coll.asOutParam());
1379 ComPtr<IHostNetworkInterface> hostInterface;
1380 if (!SUCCEEDED(coll->FindByName(hostif, hostInterface.asOutParam())))
1381 {
1382 return setError (E_FAIL,
1383 tr ("VM cannot start because the host interface '%ls' "
1384 "does not exist"),
1385 hostif.raw());
1386 }
1387#endif /* RT_OS_WINDOWS */
1388 break;
1389 }
1390 default:
1391 break;
1392 }
1393 }
1394
1395 /* Read console data stored in the saved state file (if not yet done) */
1396 {
1397 HRESULT rc = loadDataFromSavedState();
1398 CheckComRCReturnRC (rc);
1399 }
1400
1401 /* Check all types of shared folders and compose a single list */
1402 SharedFolderDataMap sharedFolders;
1403 {
1404 /* first, insert global folders */
1405 for (SharedFolderDataMap::const_iterator it = mGlobalSharedFolders.begin();
1406 it != mGlobalSharedFolders.end(); ++ it)
1407 sharedFolders [it->first] = it->second;
1408
1409 /* second, insert machine folders */
1410 for (SharedFolderDataMap::const_iterator it = mMachineSharedFolders.begin();
1411 it != mMachineSharedFolders.end(); ++ it)
1412 sharedFolders [it->first] = it->second;
1413
1414 /* third, insert console folders */
1415 for (SharedFolderMap::const_iterator it = mSharedFolders.begin();
1416 it != mSharedFolders.end(); ++ it)
1417 sharedFolders [it->first] = it->second->hostPath();
1418 }
1419
1420 Bstr savedStateFile;
1421
1422 /*
1423 * Saved VMs will have to prove that their saved states are kosher.
1424 */
1425 if (mMachineState == MachineState_Saved)
1426 {
1427 HRESULT rc = mMachine->COMGETTER(StateFilePath) (savedStateFile.asOutParam());
1428 CheckComRCReturnRC (rc);
1429 ComAssertRet (!!savedStateFile, E_FAIL);
1430 int vrc = SSMR3ValidateFile (Utf8Str (savedStateFile));
1431 if (VBOX_FAILURE (vrc))
1432 return setError (E_FAIL,
1433 tr ("VM cannot start because the saved state file '%ls' is invalid (%Vrc). "
1434 "Discard the saved state prior to starting the VM"),
1435 savedStateFile.raw(), vrc);
1436 }
1437
1438 /* create an IProgress object to track progress of this operation */
1439 ComObjPtr <Progress> progress;
1440 progress.createObject();
1441 Bstr progressDesc;
1442 if (mMachineState == MachineState_Saved)
1443 progressDesc = tr ("Restoring the virtual machine");
1444 else
1445 progressDesc = tr ("Starting the virtual machine");
1446 progress->init ((IConsole *) this, progressDesc, FALSE /* aCancelable */);
1447
1448 /* pass reference to caller if requested */
1449 if (aProgress)
1450 progress.queryInterfaceTo (aProgress);
1451
1452 /* setup task object and thread to carry out the operation asynchronously */
1453 std::auto_ptr <VMPowerUpTask> task (new VMPowerUpTask (this, progress));
1454 ComAssertComRCRetRC (task->rc());
1455
1456 task->mSetVMErrorCallback = setVMErrorCallback;
1457 task->mConfigConstructor = configConstructor;
1458 task->mSharedFolders = sharedFolders;
1459 if (mMachineState == MachineState_Saved)
1460 task->mSavedStateFile = savedStateFile;
1461
1462 int vrc = RTThreadCreate (NULL, Console::powerUpThread, (void *) task.get(),
1463 0, RTTHREADTYPE_MAIN_WORKER, 0, "VMPowerUp");
1464
1465 ComAssertMsgRCRet (vrc, ("Could not create VMPowerUp thread (%Vrc)\n", vrc),
1466 E_FAIL);
1467
1468 /* task is now owned by powerUpThread(), so release it */
1469 task.release();
1470
1471 if (mMachineState == MachineState_Saved)
1472 setMachineState (MachineState_Restoring);
1473 else
1474 setMachineState (MachineState_Starting);
1475
1476 LogFlowThisFunc (("mMachineState=%d\n", mMachineState));
1477 LogFlowThisFuncLeave();
1478 return S_OK;
1479}
1480
1481STDMETHODIMP Console::PowerDown()
1482{
1483 LogFlowThisFuncEnter();
1484 LogFlowThisFunc (("mMachineState=%d\n", mMachineState));
1485
1486 AutoCaller autoCaller (this);
1487 CheckComRCReturnRC (autoCaller.rc());
1488
1489 AutoLock alock (this);
1490
1491 if (mMachineState != MachineState_Running &&
1492 mMachineState != MachineState_Paused &&
1493 mMachineState != MachineState_Stuck)
1494 {
1495 /* extra nice error message for a common case */
1496 if (mMachineState == MachineState_Saved)
1497 return setError(E_FAIL, tr ("Cannot power off a saved machine"));
1498 else
1499 return setError(E_FAIL, tr ("Cannot power off the machine as it is "
1500 "not running or paused (machine state: %d)"),
1501 mMachineState);
1502 }
1503
1504 LogFlowThisFunc (("Sending SHUTDOWN request...\n"));
1505
1506 HRESULT rc = powerDown();
1507
1508 LogFlowThisFunc (("mMachineState=%d, rc=%08X\n", mMachineState, rc));
1509 LogFlowThisFuncLeave();
1510 return rc;
1511}
1512
1513STDMETHODIMP Console::Reset()
1514{
1515 LogFlowThisFuncEnter();
1516 LogFlowThisFunc (("mMachineState=%d\n", mMachineState));
1517
1518 AutoCaller autoCaller (this);
1519 CheckComRCReturnRC (autoCaller.rc());
1520
1521 AutoLock alock (this);
1522
1523 if (mMachineState != MachineState_Running)
1524 return setError(E_FAIL, tr ("Cannot reset the machine as it is "
1525 "not running (machine state: %d)"),
1526 mMachineState);
1527
1528 /* protect mpVM */
1529 AutoVMCaller autoVMCaller (this);
1530 CheckComRCReturnRC (autoVMCaller.rc());
1531
1532 /* leave the lock before a VMR3* call (EMT will call us back)! */
1533 alock.leave();
1534
1535 int vrc = VMR3Reset (mpVM);
1536
1537 HRESULT rc = VBOX_SUCCESS (vrc) ? S_OK :
1538 setError (E_FAIL, tr ("Could not reset the machine (%Vrc)"), vrc);
1539
1540 LogFlowThisFunc (("mMachineState=%d, rc=%08X\n", mMachineState, rc));
1541 LogFlowThisFuncLeave();
1542 return rc;
1543}
1544
1545STDMETHODIMP Console::Pause()
1546{
1547 LogFlowThisFuncEnter();
1548
1549 AutoCaller autoCaller (this);
1550 CheckComRCReturnRC (autoCaller.rc());
1551
1552 AutoLock alock (this);
1553
1554 if (mMachineState != MachineState_Running)
1555 return setError (E_FAIL, tr ("Cannot pause the machine as it is "
1556 "not running (machine state: %d)"),
1557 mMachineState);
1558
1559 /* protect mpVM */
1560 AutoVMCaller autoVMCaller (this);
1561 CheckComRCReturnRC (autoVMCaller.rc());
1562
1563 LogFlowThisFunc (("Sending PAUSE request...\n"));
1564
1565 /* leave the lock before a VMR3* call (EMT will call us back)! */
1566 alock.leave();
1567
1568 int vrc = VMR3Suspend (mpVM);
1569
1570 HRESULT rc = VBOX_SUCCESS (vrc) ? S_OK :
1571 setError (E_FAIL,
1572 tr ("Could not suspend the machine execution (%Vrc)"), vrc);
1573
1574 LogFlowThisFunc (("rc=%08X\n", rc));
1575 LogFlowThisFuncLeave();
1576 return rc;
1577}
1578
1579STDMETHODIMP Console::Resume()
1580{
1581 LogFlowThisFuncEnter();
1582
1583 AutoCaller autoCaller (this);
1584 CheckComRCReturnRC (autoCaller.rc());
1585
1586 AutoLock alock (this);
1587
1588 if (mMachineState != MachineState_Paused)
1589 return setError (E_FAIL, tr ("Cannot resume the machine as it is "
1590 "not paused (machine state: %d)"),
1591 mMachineState);
1592
1593 /* protect mpVM */
1594 AutoVMCaller autoVMCaller (this);
1595 CheckComRCReturnRC (autoVMCaller.rc());
1596
1597 LogFlowThisFunc (("Sending RESUME request...\n"));
1598
1599 /* leave the lock before a VMR3* call (EMT will call us back)! */
1600 alock.leave();
1601
1602 int vrc = VMR3Resume (mpVM);
1603
1604 HRESULT rc = VBOX_SUCCESS (vrc) ? S_OK :
1605 setError (E_FAIL,
1606 tr ("Could not resume the machine execution (%Vrc)"), vrc);
1607
1608 LogFlowThisFunc (("rc=%08X\n", rc));
1609 LogFlowThisFuncLeave();
1610 return rc;
1611}
1612
1613STDMETHODIMP Console::PowerButton()
1614{
1615 LogFlowThisFuncEnter();
1616
1617 AutoCaller autoCaller (this);
1618 CheckComRCReturnRC (autoCaller.rc());
1619
1620 AutoLock lock (this);
1621
1622 if (mMachineState != MachineState_Running)
1623 return setError (E_FAIL, tr ("Cannot power off the machine as it is "
1624 "not running (machine state: %d)"),
1625 mMachineState);
1626
1627 /* protect mpVM */
1628 AutoVMCaller autoVMCaller (this);
1629 CheckComRCReturnRC (autoVMCaller.rc());
1630
1631 PPDMIBASE pBase;
1632 int vrc = PDMR3QueryDeviceLun (mpVM, "acpi", 0, 0, &pBase);
1633 if (VBOX_SUCCESS (vrc))
1634 {
1635 Assert (pBase);
1636 PPDMIACPIPORT pPort =
1637 (PPDMIACPIPORT) pBase->pfnQueryInterface(pBase, PDMINTERFACE_ACPI_PORT);
1638 vrc = pPort ? pPort->pfnPowerButtonPress(pPort) : VERR_INVALID_POINTER;
1639 }
1640
1641 HRESULT rc = VBOX_SUCCESS (vrc) ? S_OK :
1642 setError (E_FAIL,
1643 tr ("Controlled power off failed (%Vrc)"), vrc);
1644
1645 LogFlowThisFunc (("rc=%08X\n", rc));
1646 LogFlowThisFuncLeave();
1647 return rc;
1648}
1649
1650STDMETHODIMP Console::SaveState (IProgress **aProgress)
1651{
1652 LogFlowThisFuncEnter();
1653 LogFlowThisFunc (("mMachineState=%d\n", mMachineState));
1654
1655 if (!aProgress)
1656 return E_POINTER;
1657
1658 AutoCaller autoCaller (this);
1659 CheckComRCReturnRC (autoCaller.rc());
1660
1661 AutoLock alock (this);
1662
1663 if (mMachineState != MachineState_Running &&
1664 mMachineState != MachineState_Paused)
1665 {
1666 return setError (E_FAIL,
1667 tr ("Cannot save the execution state as the machine "
1668 "is not running (machine state: %d)"), mMachineState);
1669 }
1670
1671 /* memorize the current machine state */
1672 MachineState_T lastMachineState = mMachineState;
1673
1674 if (mMachineState == MachineState_Running)
1675 {
1676 HRESULT rc = Pause();
1677 CheckComRCReturnRC (rc);
1678 }
1679
1680 HRESULT rc = S_OK;
1681
1682 /* create a progress object to track operation completion */
1683 ComObjPtr <Progress> progress;
1684 progress.createObject();
1685 progress->init ((IConsole *) this,
1686 Bstr (tr ("Saving the execution state of the virtual machine")),
1687 FALSE /* aCancelable */);
1688
1689 bool beganSavingState = false;
1690 bool taskCreationFailed = false;
1691
1692 do
1693 {
1694 /* create a task object early to ensure mpVM protection is successful */
1695 std::auto_ptr <VMSaveTask> task (new VMSaveTask (this, progress));
1696 rc = task->rc();
1697 /*
1698 * If we fail here it means a PowerDown() call happened on another
1699 * thread while we were doing Pause() (which leaves the Console lock).
1700 * We assign PowerDown() a higher precendence than SaveState(),
1701 * therefore just return the error to the caller.
1702 */
1703 if (FAILED (rc))
1704 {
1705 taskCreationFailed = true;
1706 break;
1707 }
1708
1709 Bstr stateFilePath;
1710
1711 /*
1712 * request a saved state file path from the server
1713 * (this will set the machine state to Saving on the server to block
1714 * others from accessing this machine)
1715 */
1716 rc = mControl->BeginSavingState (progress, stateFilePath.asOutParam());
1717 CheckComRCBreakRC (rc);
1718
1719 beganSavingState = true;
1720
1721 /* sync the state with the server */
1722 setMachineStateLocally (MachineState_Saving);
1723
1724 /* ensure the directory for the saved state file exists */
1725 {
1726 Utf8Str dir = stateFilePath;
1727 RTPathStripFilename (dir.mutableRaw());
1728 if (!RTDirExists (dir))
1729 {
1730 int vrc = RTDirCreateFullPath (dir, 0777);
1731 if (VBOX_FAILURE (vrc))
1732 {
1733 rc = setError (E_FAIL,
1734 tr ("Could not create a directory '%s' to save the state to (%Vrc)"),
1735 dir.raw(), vrc);
1736 break;
1737 }
1738 }
1739 }
1740
1741 /* setup task object and thread to carry out the operation asynchronously */
1742 task->mIsSnapshot = false;
1743 task->mSavedStateFile = stateFilePath;
1744 /* set the state the operation thread will restore when it is finished */
1745 task->mLastMachineState = lastMachineState;
1746
1747 /* create a thread to wait until the VM state is saved */
1748 int vrc = RTThreadCreate (NULL, Console::saveStateThread, (void *) task.get(),
1749 0, RTTHREADTYPE_MAIN_WORKER, 0, "VMSave");
1750
1751 ComAssertMsgRCBreak (vrc, ("Could not create VMSave thread (%Vrc)\n", vrc),
1752 rc = E_FAIL);
1753
1754 /* task is now owned by saveStateThread(), so release it */
1755 task.release();
1756
1757 /* return the progress to the caller */
1758 progress.queryInterfaceTo (aProgress);
1759 }
1760 while (0);
1761
1762 if (FAILED (rc) && !taskCreationFailed)
1763 {
1764 /* preserve existing error info */
1765 ErrorInfoKeeper eik;
1766
1767 if (beganSavingState)
1768 {
1769 /*
1770 * cancel the requested save state procedure.
1771 * This will reset the machine state to the state it had right
1772 * before calling mControl->BeginSavingState().
1773 */
1774 mControl->EndSavingState (FALSE);
1775 }
1776
1777 if (lastMachineState == MachineState_Running)
1778 {
1779 /* restore the paused state if appropriate */
1780 setMachineStateLocally (MachineState_Paused);
1781 /* restore the running state if appropriate */
1782 Resume();
1783 }
1784 else
1785 setMachineStateLocally (lastMachineState);
1786 }
1787
1788 LogFlowThisFunc (("rc=%08X\n", rc));
1789 LogFlowThisFuncLeave();
1790 return rc;
1791}
1792
1793STDMETHODIMP Console::AdoptSavedState (INPTR BSTR aSavedStateFile)
1794{
1795 if (!aSavedStateFile)
1796 return E_INVALIDARG;
1797
1798 AutoCaller autoCaller (this);
1799 CheckComRCReturnRC (autoCaller.rc());
1800
1801 AutoLock alock (this);
1802
1803 if (mMachineState != MachineState_PoweredOff &&
1804 mMachineState != MachineState_Aborted)
1805 return setError (E_FAIL,
1806 tr ("Cannot adopt the saved machine state as the machine is "
1807 "not in Powered Off or Aborted state (machine state: %d)"),
1808 mMachineState);
1809
1810 return mControl->AdoptSavedState (aSavedStateFile);
1811}
1812
1813STDMETHODIMP Console::DiscardSavedState()
1814{
1815 AutoCaller autoCaller (this);
1816 CheckComRCReturnRC (autoCaller.rc());
1817
1818 AutoLock alock (this);
1819
1820 if (mMachineState != MachineState_Saved)
1821 return setError (E_FAIL,
1822 tr ("Cannot discard the machine state as the machine is "
1823 "not in the saved state (machine state: %d)"),
1824 mMachineState);
1825
1826 /*
1827 * Saved -> PoweredOff transition will be detected in the SessionMachine
1828 * and properly handled.
1829 */
1830 setMachineState (MachineState_PoweredOff);
1831
1832 return S_OK;
1833}
1834
1835/** read the value of a LEd. */
1836inline uint32_t readAndClearLed(PPDMLED pLed)
1837{
1838 if (!pLed)
1839 return 0;
1840 uint32_t u32 = pLed->Actual.u32 | pLed->Asserted.u32;
1841 pLed->Asserted.u32 = 0;
1842 return u32;
1843}
1844
1845STDMETHODIMP Console::GetDeviceActivity (DeviceType_T aDeviceType,
1846 DeviceActivity_T *aDeviceActivity)
1847{
1848 if (!aDeviceActivity)
1849 return E_INVALIDARG;
1850
1851 AutoCaller autoCaller (this);
1852 CheckComRCReturnRC (autoCaller.rc());
1853
1854 /*
1855 * Note: we don't lock the console object here because
1856 * readAndClearLed() should be thread safe.
1857 */
1858
1859 /* Get LED array to read */
1860 PDMLEDCORE SumLed = {0};
1861 switch (aDeviceType)
1862 {
1863 case DeviceType_FloppyDevice:
1864 {
1865 for (unsigned i = 0; i < ELEMENTS(mapFDLeds); i++)
1866 SumLed.u32 |= readAndClearLed(mapFDLeds[i]);
1867 break;
1868 }
1869
1870 case DeviceType_DVDDevice:
1871 {
1872 SumLed.u32 |= readAndClearLed(mapIDELeds[2]);
1873 break;
1874 }
1875
1876 case DeviceType_HardDiskDevice:
1877 {
1878 SumLed.u32 |= readAndClearLed(mapIDELeds[0]);
1879 SumLed.u32 |= readAndClearLed(mapIDELeds[1]);
1880 SumLed.u32 |= readAndClearLed(mapIDELeds[3]);
1881 break;
1882 }
1883
1884 case DeviceType_NetworkDevice:
1885 {
1886 for (unsigned i = 0; i < ELEMENTS(mapNetworkLeds); i++)
1887 SumLed.u32 |= readAndClearLed(mapNetworkLeds[i]);
1888 break;
1889 }
1890
1891 case DeviceType_USBDevice:
1892 {
1893 SumLed.u32 |= readAndClearLed(mapUSBLed);
1894 break;
1895 }
1896
1897 case DeviceType_SharedFolderDevice:
1898 {
1899 SumLed.u32 |= readAndClearLed(mapSharedFolderLed);
1900 break;
1901 }
1902
1903 default:
1904 return setError (E_INVALIDARG,
1905 tr ("Invalid device type: %d"), aDeviceType);
1906 }
1907
1908 /* Compose the result */
1909 switch (SumLed.u32 & (PDMLED_READING | PDMLED_WRITING))
1910 {
1911 case 0:
1912 *aDeviceActivity = DeviceActivity_DeviceIdle;
1913 break;
1914 case PDMLED_READING:
1915 *aDeviceActivity = DeviceActivity_DeviceReading;
1916 break;
1917 case PDMLED_WRITING:
1918 case PDMLED_READING | PDMLED_WRITING:
1919 *aDeviceActivity = DeviceActivity_DeviceWriting;
1920 break;
1921 }
1922
1923 return S_OK;
1924}
1925
1926STDMETHODIMP Console::AttachUSBDevice (INPTR GUIDPARAM aId)
1927{
1928 AutoCaller autoCaller (this);
1929 CheckComRCReturnRC (autoCaller.rc());
1930
1931 AutoLock alock (this);
1932
1933 /// @todo (r=dmik) is it legal to attach USB devices when the machine is
1934 // Paused, Starting, Saving, Stopping, etc? if not, we should make a
1935 // stricter check (mMachineState != MachineState_Running).
1936 //
1937 // I'm changing it to the semi-strict check for the time being. We'll
1938 // consider the below later.
1939 //
1940 /* bird: It is not permitted to attach or detach while the VM is saving,
1941 * is restoring or has stopped - definintly not.
1942 *
1943 * Attaching while starting, well, if you don't create any deadlock it
1944 * should work... Paused should work I guess, but we shouldn't push our
1945 * luck if we're pausing because an runtime error condition was raised
1946 * (which is one of the reasons there better be a separate state for that
1947 * in the VMM).
1948 */
1949 if (mMachineState != MachineState_Running &&
1950 mMachineState != MachineState_Paused)
1951 return setError (E_FAIL,
1952 tr ("Cannot attach a USB device to the machine which is not running"
1953 "(machine state: %d)"),
1954 mMachineState);
1955
1956 /* protect mpVM */
1957 AutoVMCaller autoVMCaller (this);
1958 CheckComRCReturnRC (autoVMCaller.rc());
1959
1960 /* Don't proceed unless we've found the usb controller. */
1961 PPDMIBASE pBase = NULL;
1962 int vrc = PDMR3QueryLun (mpVM, "usb-ohci", 0, 0, &pBase);
1963 if (VBOX_FAILURE (vrc))
1964 return setError (E_FAIL,
1965 tr ("The virtual machine does not have a USB controller"));
1966
1967 /* leave the lock because the USB Proxy service may call us back
1968 * (via onUSBDeviceAttach()) */
1969 alock.leave();
1970
1971 /* Request the device capture */
1972 HRESULT rc = mControl->CaptureUSBDevice (aId);
1973 CheckComRCReturnRC (rc);
1974
1975 return rc;
1976}
1977
1978STDMETHODIMP Console::DetachUSBDevice (INPTR GUIDPARAM aId, IUSBDevice **aDevice)
1979{
1980 if (!aDevice)
1981 return E_POINTER;
1982
1983 AutoCaller autoCaller (this);
1984 CheckComRCReturnRC (autoCaller.rc());
1985
1986 AutoLock alock (this);
1987
1988 /* Find it. */
1989 ComObjPtr <OUSBDevice> device;
1990 USBDeviceList::iterator it = mUSBDevices.begin();
1991 while (it != mUSBDevices.end())
1992 {
1993 if ((*it)->id() == aId)
1994 {
1995 device = *it;
1996 break;
1997 }
1998 ++ it;
1999 }
2000
2001 if (!device)
2002 return setError (E_INVALIDARG,
2003 tr ("USB device with UUID {%Vuuid} is not attached to this machine"),
2004 Guid (aId).raw());
2005
2006#ifdef RT_OS_DARWIN
2007 /* Notify the USB Proxy that we're about to detach the device. Since
2008 * we don't dare do IPC when holding the console lock, so we'll have
2009 * to revalidate the device when we get back. */
2010 alock.leave();
2011 HRESULT rc2 = mControl->DetachUSBDevice (aId, false /* aDone */);
2012 if (FAILED (rc2))
2013 return rc2;
2014 alock.enter();
2015
2016 for (it = mUSBDevices.begin(); it != mUSBDevices.end(); ++ it)
2017 if ((*it)->id() == aId)
2018 break;
2019 if (it == mUSBDevices.end())
2020 return S_OK;
2021#endif
2022
2023 /* First, request VMM to detach the device */
2024 HRESULT rc = detachUSBDevice (it);
2025
2026 if (SUCCEEDED (rc))
2027 {
2028 /* leave the lock since we don't need it any more (note though that
2029 * the USB Proxy service must not call us back here) */
2030 alock.leave();
2031
2032 /* Request the device release. Even if it fails, the device will
2033 * remain as held by proxy, which is OK for us (the VM process). */
2034 rc = mControl->DetachUSBDevice (aId, true /* aDone */);
2035 }
2036
2037 return rc;
2038}
2039
2040STDMETHODIMP
2041Console::CreateSharedFolder (INPTR BSTR aName, INPTR BSTR aHostPath)
2042{
2043 if (!aName || !aHostPath)
2044 return E_INVALIDARG;
2045
2046 AutoCaller autoCaller (this);
2047 CheckComRCReturnRC (autoCaller.rc());
2048
2049 AutoLock alock (this);
2050
2051 /// @todo see @todo in AttachUSBDevice() about the Paused state
2052 if (mMachineState == MachineState_Saved)
2053 return setError (E_FAIL,
2054 tr ("Cannot create a transient shared folder on the "
2055 "machine in the saved state"));
2056 if (mMachineState > MachineState_Paused)
2057 return setError (E_FAIL,
2058 tr ("Cannot create a transient shared folder on the "
2059 "machine while it is changing the state (machine state: %d)"),
2060 mMachineState);
2061
2062 ComObjPtr <SharedFolder> sharedFolder;
2063 HRESULT rc = findSharedFolder (aName, sharedFolder, false /* aSetError */);
2064 if (SUCCEEDED (rc))
2065 return setError (E_FAIL,
2066 tr ("Shared folder named '%ls' already exists"), aName);
2067
2068 sharedFolder.createObject();
2069 rc = sharedFolder->init (this, aName, aHostPath);
2070 CheckComRCReturnRC (rc);
2071
2072 BOOL accessible = FALSE;
2073 rc = sharedFolder->COMGETTER(Accessible) (&accessible);
2074 CheckComRCReturnRC (rc);
2075
2076 if (!accessible)
2077 return setError (E_FAIL,
2078 tr ("Shared folder host path '%ls' is not accessible"), aHostPath);
2079
2080 /* protect mpVM (if not NULL) */
2081 AutoVMCallerQuietWeak autoVMCaller (this);
2082
2083 if (mpVM && autoVMCaller.isOk() && mVMMDev->isShFlActive())
2084 {
2085 /* If the VM is online and supports shared folders, share this folder
2086 * under the specified name. */
2087
2088 /* first, remove the machine or the global folder if there is any */
2089 SharedFolderDataMap::const_iterator it;
2090 if (findOtherSharedFolder (aName, it))
2091 {
2092 rc = removeSharedFolder (aName);
2093 CheckComRCReturnRC (rc);
2094 }
2095
2096 /* second, create the given folder */
2097 rc = createSharedFolder (aName, aHostPath);
2098 CheckComRCReturnRC (rc);
2099 }
2100
2101 mSharedFolders.insert (std::make_pair (aName, sharedFolder));
2102
2103 /* notify console callbacks after the folder is added to the list */
2104 {
2105 CallbackList::iterator it = mCallbacks.begin();
2106 while (it != mCallbacks.end())
2107 (*it++)->OnSharedFolderChange (Scope_SessionScope);
2108 }
2109
2110 return rc;
2111}
2112
2113STDMETHODIMP Console::RemoveSharedFolder (INPTR BSTR aName)
2114{
2115 if (!aName)
2116 return E_INVALIDARG;
2117
2118 AutoCaller autoCaller (this);
2119 CheckComRCReturnRC (autoCaller.rc());
2120
2121 AutoLock alock (this);
2122
2123 /// @todo see @todo in AttachUSBDevice() about the Paused state
2124 if (mMachineState == MachineState_Saved)
2125 return setError (E_FAIL,
2126 tr ("Cannot remove a transient shared folder from the "
2127 "machine in the saved state"));
2128 if (mMachineState > MachineState_Paused)
2129 return setError (E_FAIL,
2130 tr ("Cannot remove a transient shared folder from the "
2131 "machine while it is changing the state (machine state: %d)"),
2132 mMachineState);
2133
2134 ComObjPtr <SharedFolder> sharedFolder;
2135 HRESULT rc = findSharedFolder (aName, sharedFolder, true /* aSetError */);
2136 CheckComRCReturnRC (rc);
2137
2138 /* protect mpVM (if not NULL) */
2139 AutoVMCallerQuietWeak autoVMCaller (this);
2140
2141 if (mpVM && autoVMCaller.isOk() && mVMMDev->isShFlActive())
2142 {
2143 /* if the VM is online and supports shared folders, UNshare this
2144 * folder. */
2145
2146 /* first, remove the given folder */
2147 rc = removeSharedFolder (aName);
2148 CheckComRCReturnRC (rc);
2149
2150 /* first, remove the machine or the global folder if there is any */
2151 SharedFolderDataMap::const_iterator it;
2152 if (findOtherSharedFolder (aName, it))
2153 {
2154 rc = createSharedFolder (aName, it->second);
2155 /* don't check rc here because we need to remove the console
2156 * folder from the collection even on failure */
2157 }
2158 }
2159
2160 mSharedFolders.erase (aName);
2161
2162 /* notify console callbacks after the folder is removed to the list */
2163 {
2164 CallbackList::iterator it = mCallbacks.begin();
2165 while (it != mCallbacks.end())
2166 (*it++)->OnSharedFolderChange (Scope_SessionScope);
2167 }
2168
2169 return rc;
2170}
2171
2172STDMETHODIMP Console::TakeSnapshot (INPTR BSTR aName, INPTR BSTR aDescription,
2173 IProgress **aProgress)
2174{
2175 LogFlowThisFuncEnter();
2176 LogFlowThisFunc (("aName='%ls' mMachineState=%08X\n", aName, mMachineState));
2177
2178 if (!aName)
2179 return E_INVALIDARG;
2180 if (!aProgress)
2181 return E_POINTER;
2182
2183 AutoCaller autoCaller (this);
2184 CheckComRCReturnRC (autoCaller.rc());
2185
2186 AutoLock alock (this);
2187
2188 if (mMachineState > MachineState_Paused)
2189 {
2190 return setError (E_FAIL,
2191 tr ("Cannot take a snapshot of the machine "
2192 "while it is changing the state (machine state: %d)"),
2193 mMachineState);
2194 }
2195
2196 /* memorize the current machine state */
2197 MachineState_T lastMachineState = mMachineState;
2198
2199 if (mMachineState == MachineState_Running)
2200 {
2201 HRESULT rc = Pause();
2202 CheckComRCReturnRC (rc);
2203 }
2204
2205 HRESULT rc = S_OK;
2206
2207 bool takingSnapshotOnline = mMachineState == MachineState_Paused;
2208
2209 /*
2210 * create a descriptionless VM-side progress object
2211 * (only when creating a snapshot online)
2212 */
2213 ComObjPtr <Progress> saveProgress;
2214 if (takingSnapshotOnline)
2215 {
2216 saveProgress.createObject();
2217 rc = saveProgress->init (FALSE, 1, Bstr (tr ("Saving the execution state")));
2218 AssertComRCReturn (rc, rc);
2219 }
2220
2221 bool beganTakingSnapshot = false;
2222 bool taskCreationFailed = false;
2223
2224 do
2225 {
2226 /* create a task object early to ensure mpVM protection is successful */
2227 std::auto_ptr <VMSaveTask> task;
2228 if (takingSnapshotOnline)
2229 {
2230 task.reset (new VMSaveTask (this, saveProgress));
2231 rc = task->rc();
2232 /*
2233 * If we fail here it means a PowerDown() call happened on another
2234 * thread while we were doing Pause() (which leaves the Console lock).
2235 * We assign PowerDown() a higher precendence than TakeSnapshot(),
2236 * therefore just return the error to the caller.
2237 */
2238 if (FAILED (rc))
2239 {
2240 taskCreationFailed = true;
2241 break;
2242 }
2243 }
2244
2245 Bstr stateFilePath;
2246 ComPtr <IProgress> serverProgress;
2247
2248 /*
2249 * request taking a new snapshot object on the server
2250 * (this will set the machine state to Saving on the server to block
2251 * others from accessing this machine)
2252 */
2253 rc = mControl->BeginTakingSnapshot (this, aName, aDescription,
2254 saveProgress, stateFilePath.asOutParam(),
2255 serverProgress.asOutParam());
2256 if (FAILED (rc))
2257 break;
2258
2259 /*
2260 * state file is non-null only when the VM is paused
2261 * (i.e. createing a snapshot online)
2262 */
2263 ComAssertBreak (
2264 (!stateFilePath.isNull() && takingSnapshotOnline) ||
2265 (stateFilePath.isNull() && !takingSnapshotOnline),
2266 rc = E_FAIL);
2267
2268 beganTakingSnapshot = true;
2269
2270 /* sync the state with the server */
2271 setMachineStateLocally (MachineState_Saving);
2272
2273 /*
2274 * create a combined VM-side progress object and start the save task
2275 * (only when creating a snapshot online)
2276 */
2277 ComObjPtr <CombinedProgress> combinedProgress;
2278 if (takingSnapshotOnline)
2279 {
2280 combinedProgress.createObject();
2281 rc = combinedProgress->init ((IConsole *) this,
2282 Bstr (tr ("Taking snapshot of virtual machine")),
2283 serverProgress, saveProgress);
2284 AssertComRCBreakRC (rc);
2285
2286 /* setup task object and thread to carry out the operation asynchronously */
2287 task->mIsSnapshot = true;
2288 task->mSavedStateFile = stateFilePath;
2289 task->mServerProgress = serverProgress;
2290 /* set the state the operation thread will restore when it is finished */
2291 task->mLastMachineState = lastMachineState;
2292
2293 /* create a thread to wait until the VM state is saved */
2294 int vrc = RTThreadCreate (NULL, Console::saveStateThread, (void *) task.get(),
2295 0, RTTHREADTYPE_MAIN_WORKER, 0, "VMTakeSnap");
2296
2297 ComAssertMsgRCBreak (vrc, ("Could not create VMTakeSnap thread (%Vrc)\n", vrc),
2298 rc = E_FAIL);
2299
2300 /* task is now owned by saveStateThread(), so release it */
2301 task.release();
2302 }
2303
2304 if (SUCCEEDED (rc))
2305 {
2306 /* return the correct progress to the caller */
2307 if (combinedProgress)
2308 combinedProgress.queryInterfaceTo (aProgress);
2309 else
2310 serverProgress.queryInterfaceTo (aProgress);
2311 }
2312 }
2313 while (0);
2314
2315 if (FAILED (rc) && !taskCreationFailed)
2316 {
2317 /* preserve existing error info */
2318 ErrorInfoKeeper eik;
2319
2320 if (beganTakingSnapshot && takingSnapshotOnline)
2321 {
2322 /*
2323 * cancel the requested snapshot (only when creating a snapshot
2324 * online, otherwise the server will cancel the snapshot itself).
2325 * This will reset the machine state to the state it had right
2326 * before calling mControl->BeginTakingSnapshot().
2327 */
2328 mControl->EndTakingSnapshot (FALSE);
2329 }
2330
2331 if (lastMachineState == MachineState_Running)
2332 {
2333 /* restore the paused state if appropriate */
2334 setMachineStateLocally (MachineState_Paused);
2335 /* restore the running state if appropriate */
2336 Resume();
2337 }
2338 else
2339 setMachineStateLocally (lastMachineState);
2340 }
2341
2342 LogFlowThisFunc (("rc=%08X\n", rc));
2343 LogFlowThisFuncLeave();
2344 return rc;
2345}
2346
2347STDMETHODIMP Console::DiscardSnapshot (INPTR GUIDPARAM aId, IProgress **aProgress)
2348{
2349 if (Guid (aId).isEmpty())
2350 return E_INVALIDARG;
2351 if (!aProgress)
2352 return E_POINTER;
2353
2354 AutoCaller autoCaller (this);
2355 CheckComRCReturnRC (autoCaller.rc());
2356
2357 AutoLock alock (this);
2358
2359 if (mMachineState >= MachineState_Running)
2360 return setError (E_FAIL,
2361 tr ("Cannot discard a snapshot of the running machine "
2362 "(machine state: %d)"),
2363 mMachineState);
2364
2365 MachineState_T machineState = MachineState_InvalidMachineState;
2366 HRESULT rc = mControl->DiscardSnapshot (this, aId, &machineState, aProgress);
2367 CheckComRCReturnRC (rc);
2368
2369 setMachineStateLocally (machineState);
2370 return S_OK;
2371}
2372
2373STDMETHODIMP Console::DiscardCurrentState (IProgress **aProgress)
2374{
2375 AutoCaller autoCaller (this);
2376 CheckComRCReturnRC (autoCaller.rc());
2377
2378 AutoLock alock (this);
2379
2380 if (mMachineState >= MachineState_Running)
2381 return setError (E_FAIL,
2382 tr ("Cannot discard the current state of the running machine "
2383 "(nachine state: %d)"),
2384 mMachineState);
2385
2386 MachineState_T machineState = MachineState_InvalidMachineState;
2387 HRESULT rc = mControl->DiscardCurrentState (this, &machineState, aProgress);
2388 CheckComRCReturnRC (rc);
2389
2390 setMachineStateLocally (machineState);
2391 return S_OK;
2392}
2393
2394STDMETHODIMP Console::DiscardCurrentSnapshotAndState (IProgress **aProgress)
2395{
2396 AutoCaller autoCaller (this);
2397 CheckComRCReturnRC (autoCaller.rc());
2398
2399 AutoLock alock (this);
2400
2401 if (mMachineState >= MachineState_Running)
2402 return setError (E_FAIL,
2403 tr ("Cannot discard the current snapshot and state of the "
2404 "running machine (machine state: %d)"),
2405 mMachineState);
2406
2407 MachineState_T machineState = MachineState_InvalidMachineState;
2408 HRESULT rc =
2409 mControl->DiscardCurrentSnapshotAndState (this, &machineState, aProgress);
2410 CheckComRCReturnRC (rc);
2411
2412 setMachineStateLocally (machineState);
2413 return S_OK;
2414}
2415
2416STDMETHODIMP Console::RegisterCallback (IConsoleCallback *aCallback)
2417{
2418 if (!aCallback)
2419 return E_INVALIDARG;
2420
2421 AutoCaller autoCaller (this);
2422 CheckComRCReturnRC (autoCaller.rc());
2423
2424 AutoLock alock (this);
2425
2426 mCallbacks.push_back (CallbackList::value_type (aCallback));
2427
2428 /* Inform the callback about the current status (for example, the new
2429 * callback must know the current mouse capabilities and the pointer
2430 * shape in order to properly integrate the mouse pointer). */
2431
2432 if (mCallbackData.mpsc.valid)
2433 aCallback->OnMousePointerShapeChange (mCallbackData.mpsc.visible,
2434 mCallbackData.mpsc.alpha,
2435 mCallbackData.mpsc.xHot,
2436 mCallbackData.mpsc.yHot,
2437 mCallbackData.mpsc.width,
2438 mCallbackData.mpsc.height,
2439 mCallbackData.mpsc.shape);
2440 if (mCallbackData.mcc.valid)
2441 aCallback->OnMouseCapabilityChange (mCallbackData.mcc.supportsAbsolute,
2442 mCallbackData.mcc.needsHostCursor);
2443
2444 aCallback->OnAdditionsStateChange();
2445
2446 if (mCallbackData.klc.valid)
2447 aCallback->OnKeyboardLedsChange (mCallbackData.klc.numLock,
2448 mCallbackData.klc.capsLock,
2449 mCallbackData.klc.scrollLock);
2450
2451 /* Note: we don't call OnStateChange for new callbacks because the
2452 * machine state is a) not actually changed on callback registration
2453 * and b) can be always queried from Console. */
2454
2455 return S_OK;
2456}
2457
2458STDMETHODIMP Console::UnregisterCallback (IConsoleCallback *aCallback)
2459{
2460 if (!aCallback)
2461 return E_INVALIDARG;
2462
2463 AutoCaller autoCaller (this);
2464 CheckComRCReturnRC (autoCaller.rc());
2465
2466 AutoLock alock (this);
2467
2468 CallbackList::iterator it;
2469 it = std::find (mCallbacks.begin(),
2470 mCallbacks.end(),
2471 CallbackList::value_type (aCallback));
2472 if (it == mCallbacks.end())
2473 return setError (E_INVALIDARG,
2474 tr ("The given callback handler is not registered"));
2475
2476 mCallbacks.erase (it);
2477 return S_OK;
2478}
2479
2480// Non-interface public methods
2481/////////////////////////////////////////////////////////////////////////////
2482
2483/**
2484 * Called by IInternalSessionControl::OnDVDDriveChange().
2485 *
2486 * @note Locks this object for reading.
2487 */
2488HRESULT Console::onDVDDriveChange()
2489{
2490 LogFlowThisFunc (("\n"));
2491
2492 AutoCaller autoCaller (this);
2493 AssertComRCReturnRC (autoCaller.rc());
2494
2495 AutoReaderLock alock (this);
2496
2497 /* Ignore callbacks when there's no VM around */
2498 if (!mpVM)
2499 return S_OK;
2500
2501 /* protect mpVM */
2502 AutoVMCaller autoVMCaller (this);
2503 CheckComRCReturnRC (autoVMCaller.rc());
2504
2505 /* Get the current DVD state */
2506 HRESULT rc;
2507 DriveState_T eState;
2508
2509 rc = mDVDDrive->COMGETTER (State) (&eState);
2510 ComAssertComRCRetRC (rc);
2511
2512 /* Paranoia */
2513 if ( eState == DriveState_NotMounted
2514 && meDVDState == DriveState_NotMounted)
2515 {
2516 LogFlowThisFunc (("Returns (NotMounted -> NotMounted)\n"));
2517 return S_OK;
2518 }
2519
2520 /* Get the path string and other relevant properties */
2521 Bstr Path;
2522 bool fPassthrough = false;
2523 switch (eState)
2524 {
2525 case DriveState_ImageMounted:
2526 {
2527 ComPtr <IDVDImage> ImagePtr;
2528 rc = mDVDDrive->GetImage (ImagePtr.asOutParam());
2529 if (SUCCEEDED (rc))
2530 rc = ImagePtr->COMGETTER(FilePath) (Path.asOutParam());
2531 break;
2532 }
2533
2534 case DriveState_HostDriveCaptured:
2535 {
2536 ComPtr <IHostDVDDrive> DrivePtr;
2537 BOOL enabled;
2538 rc = mDVDDrive->GetHostDrive (DrivePtr.asOutParam());
2539 if (SUCCEEDED (rc))
2540 rc = DrivePtr->COMGETTER (Name) (Path.asOutParam());
2541 if (SUCCEEDED (rc))
2542 rc = mDVDDrive->COMGETTER (Passthrough) (&enabled);
2543 if (SUCCEEDED (rc))
2544 fPassthrough = !!enabled;
2545 break;
2546 }
2547
2548 case DriveState_NotMounted:
2549 break;
2550
2551 default:
2552 AssertMsgFailed (("Invalid DriveState: %d\n", eState));
2553 rc = E_FAIL;
2554 break;
2555 }
2556
2557 AssertComRC (rc);
2558 if (FAILED (rc))
2559 {
2560 LogFlowThisFunc (("Returns %#x\n", rc));
2561 return rc;
2562 }
2563
2564 rc = doDriveChange ("piix3ide", 0, 2, eState, &meDVDState,
2565 Utf8Str (Path).raw(), fPassthrough);
2566
2567 /* notify console callbacks on success */
2568 if (SUCCEEDED (rc))
2569 {
2570 CallbackList::iterator it = mCallbacks.begin();
2571 while (it != mCallbacks.end())
2572 (*it++)->OnDVDDriveChange();
2573 }
2574
2575 return rc;
2576}
2577
2578
2579/**
2580 * Called by IInternalSessionControl::OnFloppyDriveChange().
2581 *
2582 * @note Locks this object for reading.
2583 */
2584HRESULT Console::onFloppyDriveChange()
2585{
2586 LogFlowThisFunc (("\n"));
2587
2588 AutoCaller autoCaller (this);
2589 AssertComRCReturnRC (autoCaller.rc());
2590
2591 AutoReaderLock alock (this);
2592
2593 /* Ignore callbacks when there's no VM around */
2594 if (!mpVM)
2595 return S_OK;
2596
2597 /* protect mpVM */
2598 AutoVMCaller autoVMCaller (this);
2599 CheckComRCReturnRC (autoVMCaller.rc());
2600
2601 /* Get the current floppy state */
2602 HRESULT rc;
2603 DriveState_T eState;
2604
2605 /* If the floppy drive is disabled, we're not interested */
2606 BOOL fEnabled;
2607 rc = mFloppyDrive->COMGETTER (Enabled) (&fEnabled);
2608 ComAssertComRCRetRC (rc);
2609
2610 if (!fEnabled)
2611 return S_OK;
2612
2613 rc = mFloppyDrive->COMGETTER (State) (&eState);
2614 ComAssertComRCRetRC (rc);
2615
2616 Log2 (("onFloppyDriveChange: eState=%d meFloppyState=%d\n", eState, meFloppyState));
2617
2618
2619 /* Paranoia */
2620 if ( eState == DriveState_NotMounted
2621 && meFloppyState == DriveState_NotMounted)
2622 {
2623 LogFlowThisFunc (("Returns (NotMounted -> NotMounted)\n"));
2624 return S_OK;
2625 }
2626
2627 /* Get the path string and other relevant properties */
2628 Bstr Path;
2629 switch (eState)
2630 {
2631 case DriveState_ImageMounted:
2632 {
2633 ComPtr <IFloppyImage> ImagePtr;
2634 rc = mFloppyDrive->GetImage (ImagePtr.asOutParam());
2635 if (SUCCEEDED (rc))
2636 rc = ImagePtr->COMGETTER(FilePath) (Path.asOutParam());
2637 break;
2638 }
2639
2640 case DriveState_HostDriveCaptured:
2641 {
2642 ComPtr <IHostFloppyDrive> DrivePtr;
2643 rc = mFloppyDrive->GetHostDrive (DrivePtr.asOutParam());
2644 if (SUCCEEDED (rc))
2645 rc = DrivePtr->COMGETTER (Name) (Path.asOutParam());
2646 break;
2647 }
2648
2649 case DriveState_NotMounted:
2650 break;
2651
2652 default:
2653 AssertMsgFailed (("Invalid DriveState: %d\n", eState));
2654 rc = E_FAIL;
2655 break;
2656 }
2657
2658 AssertComRC (rc);
2659 if (FAILED (rc))
2660 {
2661 LogFlowThisFunc (("Returns %#x\n", rc));
2662 return rc;
2663 }
2664
2665 rc = doDriveChange ("i82078", 0, 0, eState, &meFloppyState,
2666 Utf8Str (Path).raw(), false);
2667
2668 /* notify console callbacks on success */
2669 if (SUCCEEDED (rc))
2670 {
2671 CallbackList::iterator it = mCallbacks.begin();
2672 while (it != mCallbacks.end())
2673 (*it++)->OnFloppyDriveChange();
2674 }
2675
2676 return rc;
2677}
2678
2679
2680/**
2681 * Process a floppy or dvd change.
2682 *
2683 * @returns COM status code.
2684 *
2685 * @param pszDevice The PDM device name.
2686 * @param uInstance The PDM device instance.
2687 * @param uLun The PDM LUN number of the drive.
2688 * @param eState The new state.
2689 * @param peState Pointer to the variable keeping the actual state of the drive.
2690 * This will be both read and updated to eState or other appropriate state.
2691 * @param pszPath The path to the media / drive which is now being mounted / captured.
2692 * If NULL no media or drive is attached and the lun will be configured with
2693 * the default block driver with no media. This will also be the state if
2694 * mounting / capturing the specified media / drive fails.
2695 * @param fPassthrough Enables using passthrough mode of the host DVD drive if applicable.
2696 *
2697 * @note Locks this object for reading.
2698 */
2699HRESULT Console::doDriveChange (const char *pszDevice, unsigned uInstance, unsigned uLun, DriveState_T eState,
2700 DriveState_T *peState, const char *pszPath, bool fPassthrough)
2701{
2702 LogFlowThisFunc (("pszDevice=%p:{%s} uInstance=%u uLun=%u eState=%d "
2703 "peState=%p:{%d} pszPath=%p:{%s} fPassthrough=%d\n",
2704 pszDevice, pszDevice, uInstance, uLun, eState,
2705 peState, *peState, pszPath, pszPath, fPassthrough));
2706
2707 AutoCaller autoCaller (this);
2708 AssertComRCReturnRC (autoCaller.rc());
2709
2710 AutoReaderLock alock (this);
2711
2712 /* protect mpVM */
2713 AutoVMCaller autoVMCaller (this);
2714 CheckComRCReturnRC (autoVMCaller.rc());
2715
2716 /*
2717 * Call worker in EMT, that's faster and safer than doing everything
2718 * using VM3ReqCall. Note that we separate VMR3ReqCall from VMR3ReqWait
2719 * here to make requests from under the lock in order to serialize them.
2720 */
2721 PVMREQ pReq;
2722 int vrc = VMR3ReqCall (mpVM, &pReq, 0 /* no wait! */,
2723 (PFNRT) Console::changeDrive, 8,
2724 this, pszDevice, uInstance, uLun, eState, peState,
2725 pszPath, fPassthrough);
2726 /// @todo (r=dmik) bird, it would be nice to have a special VMR3Req method
2727 // for that purpose, that doesn't return useless VERR_TIMEOUT
2728 if (vrc == VERR_TIMEOUT)
2729 vrc = VINF_SUCCESS;
2730
2731 /* leave the lock before waiting for a result (EMT will call us back!) */
2732 alock.leave();
2733
2734 if (VBOX_SUCCESS (vrc))
2735 {
2736 vrc = VMR3ReqWait (pReq, RT_INDEFINITE_WAIT);
2737 AssertRC (vrc);
2738 if (VBOX_SUCCESS (vrc))
2739 vrc = pReq->iStatus;
2740 }
2741 VMR3ReqFree (pReq);
2742
2743 if (VBOX_SUCCESS (vrc))
2744 {
2745 LogFlowThisFunc (("Returns S_OK\n"));
2746 return S_OK;
2747 }
2748
2749 if (pszPath)
2750 return setError (E_FAIL,
2751 tr ("Could not mount the media/drive '%s' (%Vrc)"), pszPath, vrc);
2752
2753 return setError (E_FAIL,
2754 tr ("Could not unmount the currently mounted media/drive (%Vrc)"), vrc);
2755}
2756
2757
2758/**
2759 * Performs the Floppy/DVD change in EMT.
2760 *
2761 * @returns VBox status code.
2762 *
2763 * @param pThis Pointer to the Console object.
2764 * @param pszDevice The PDM device name.
2765 * @param uInstance The PDM device instance.
2766 * @param uLun The PDM LUN number of the drive.
2767 * @param eState The new state.
2768 * @param peState Pointer to the variable keeping the actual state of the drive.
2769 * This will be both read and updated to eState or other appropriate state.
2770 * @param pszPath The path to the media / drive which is now being mounted / captured.
2771 * If NULL no media or drive is attached and the lun will be configured with
2772 * the default block driver with no media. This will also be the state if
2773 * mounting / capturing the specified media / drive fails.
2774 * @param fPassthrough Enables using passthrough mode of the host DVD drive if applicable.
2775 *
2776 * @thread EMT
2777 * @note Locks the Console object for writing
2778 */
2779DECLCALLBACK(int) Console::changeDrive (Console *pThis, const char *pszDevice, unsigned uInstance, unsigned uLun,
2780 DriveState_T eState, DriveState_T *peState,
2781 const char *pszPath, bool fPassthrough)
2782{
2783 LogFlowFunc (("pThis=%p pszDevice=%p:{%s} uInstance=%u uLun=%u eState=%d "
2784 "peState=%p:{%d} pszPath=%p:{%s} fPassthrough=%d\n",
2785 pThis, pszDevice, pszDevice, uInstance, uLun, eState,
2786 peState, *peState, pszPath, pszPath, fPassthrough));
2787
2788 AssertReturn (pThis, VERR_INVALID_PARAMETER);
2789
2790 AssertMsg ( (!strcmp (pszDevice, "i82078") && uLun == 0 && uInstance == 0)
2791 || (!strcmp (pszDevice, "piix3ide") && uLun == 2 && uInstance == 0),
2792 ("pszDevice=%s uLun=%d uInstance=%d\n", pszDevice, uLun, uInstance));
2793
2794 AutoCaller autoCaller (pThis);
2795 AssertComRCReturn (autoCaller.rc(), VERR_ACCESS_DENIED);
2796
2797 /*
2798 * Locking the object before doing VMR3* calls is quite safe here,
2799 * since we're on EMT. Write lock is necessary because we're indirectly
2800 * modify the meDVDState/meFloppyState members (pointed to by peState).
2801 */
2802 AutoLock alock (pThis);
2803
2804 /* protect mpVM */
2805 AutoVMCaller autoVMCaller (pThis);
2806 CheckComRCReturnRC (autoVMCaller.rc());
2807
2808 PVM pVM = pThis->mpVM;
2809
2810 /*
2811 * Suspend the VM first.
2812 *
2813 * The VM must not be running since it might have pending I/O to
2814 * the drive which is being changed.
2815 */
2816 bool fResume;
2817 VMSTATE enmVMState = VMR3GetState (pVM);
2818 switch (enmVMState)
2819 {
2820 case VMSTATE_RESETTING:
2821 case VMSTATE_RUNNING:
2822 {
2823 LogFlowFunc (("Suspending the VM...\n"));
2824 /* disable the callback to prevent Console-level state change */
2825 pThis->mVMStateChangeCallbackDisabled = true;
2826 int rc = VMR3Suspend (pVM);
2827 pThis->mVMStateChangeCallbackDisabled = false;
2828 AssertRCReturn (rc, rc);
2829 fResume = true;
2830 break;
2831 }
2832
2833 case VMSTATE_SUSPENDED:
2834 case VMSTATE_CREATED:
2835 case VMSTATE_OFF:
2836 fResume = false;
2837 break;
2838
2839 default:
2840 AssertMsgFailedReturn (("enmVMState=%d\n", enmVMState), VERR_ACCESS_DENIED);
2841 }
2842
2843 int rc = VINF_SUCCESS;
2844 int rcRet = VINF_SUCCESS;
2845
2846 do
2847 {
2848 /*
2849 * Unmount existing media / detach host drive.
2850 */
2851 PPDMIMOUNT pIMount = NULL;
2852 switch (*peState)
2853 {
2854
2855 case DriveState_ImageMounted:
2856 {
2857 /*
2858 * Resolve the interface.
2859 */
2860 PPDMIBASE pBase;
2861 rc = PDMR3QueryLun (pVM, pszDevice, uInstance, uLun, &pBase);
2862 if (VBOX_FAILURE (rc))
2863 {
2864 if (rc == VERR_PDM_LUN_NOT_FOUND)
2865 rc = VINF_SUCCESS;
2866 AssertRC (rc);
2867 break;
2868 }
2869
2870 pIMount = (PPDMIMOUNT) pBase->pfnQueryInterface (pBase, PDMINTERFACE_MOUNT);
2871 AssertBreak (pIMount, rc = VERR_INVALID_POINTER);
2872
2873 /*
2874 * Unmount the media.
2875 */
2876 rc = pIMount->pfnUnmount (pIMount, false);
2877 if (rc == VERR_PDM_MEDIA_NOT_MOUNTED)
2878 rc = VINF_SUCCESS;
2879 break;
2880 }
2881
2882 case DriveState_HostDriveCaptured:
2883 {
2884 rc = PDMR3DeviceDetach (pVM, pszDevice, uInstance, uLun);
2885 if (rc == VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN)
2886 rc = VINF_SUCCESS;
2887 AssertRC (rc);
2888 break;
2889 }
2890
2891 case DriveState_NotMounted:
2892 break;
2893
2894 default:
2895 AssertMsgFailed (("Invalid *peState: %d\n", peState));
2896 break;
2897 }
2898
2899 if (VBOX_FAILURE (rc))
2900 {
2901 rcRet = rc;
2902 break;
2903 }
2904
2905 /*
2906 * Nothing is currently mounted.
2907 */
2908 *peState = DriveState_NotMounted;
2909
2910
2911 /*
2912 * Process the HostDriveCaptured state first, as the fallback path
2913 * means mounting the normal block driver without media.
2914 */
2915 if (eState == DriveState_HostDriveCaptured)
2916 {
2917 /*
2918 * Detach existing driver chain (block).
2919 */
2920 int rc = PDMR3DeviceDetach (pVM, pszDevice, uInstance, uLun);
2921 if (VBOX_FAILURE (rc))
2922 {
2923 if (rc == VERR_PDM_LUN_NOT_FOUND)
2924 rc = VINF_SUCCESS;
2925 AssertReleaseRC (rc);
2926 break; /* we're toast */
2927 }
2928 pIMount = NULL;
2929
2930 /*
2931 * Construct a new driver configuration.
2932 */
2933 PCFGMNODE pInst = CFGMR3GetChildF (CFGMR3GetRoot (pVM), "Devices/%s/%d/", pszDevice, uInstance);
2934 AssertRelease (pInst);
2935 /* nuke anything which might have been left behind. */
2936 CFGMR3RemoveNode (CFGMR3GetChildF (pInst, "LUN#%d", uLun));
2937
2938 /* create a new block driver config */
2939 PCFGMNODE pLunL0;
2940 PCFGMNODE pCfg;
2941 if ( VBOX_SUCCESS (rc = CFGMR3InsertNodeF (pInst, &pLunL0, "LUN#%u", uLun))
2942 && VBOX_SUCCESS (rc = CFGMR3InsertString (pLunL0, "Driver", !strcmp (pszDevice, "i82078") ? "HostFloppy" : "HostDVD"))
2943 && VBOX_SUCCESS (rc = CFGMR3InsertNode (pLunL0, "Config", &pCfg))
2944 && VBOX_SUCCESS (rc = CFGMR3InsertString (pCfg, "Path", pszPath))
2945 && VBOX_SUCCESS (rc = !strcmp (pszDevice, "i82078") ? VINF_SUCCESS : CFGMR3InsertInteger(pCfg, "Passthrough", fPassthrough)))
2946 {
2947 /*
2948 * Attempt to attach the driver.
2949 */
2950 rc = PDMR3DeviceAttach (pVM, pszDevice, uInstance, uLun, NULL);
2951 AssertRC (rc);
2952 }
2953 if (VBOX_FAILURE (rc))
2954 rcRet = rc;
2955 }
2956
2957 /*
2958 * Process the ImageMounted, NotMounted and failed HostDriveCapture cases.
2959 */
2960 rc = VINF_SUCCESS;
2961 switch (eState)
2962 {
2963#define RC_CHECK() do { if (VBOX_FAILURE (rc)) { AssertReleaseRC (rc); break; } } while (0)
2964
2965 case DriveState_HostDriveCaptured:
2966 if (VBOX_SUCCESS (rcRet))
2967 break;
2968 /* fallback: umounted block driver. */
2969 pszPath = NULL;
2970 eState = DriveState_NotMounted;
2971 /* fallthru */
2972 case DriveState_ImageMounted:
2973 case DriveState_NotMounted:
2974 {
2975 /*
2976 * Resolve the drive interface / create the driver.
2977 */
2978 if (!pIMount)
2979 {
2980 PPDMIBASE pBase;
2981 rc = PDMR3QueryLun (pVM, pszDevice, uInstance, uLun, &pBase);
2982 if (rc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
2983 {
2984 /*
2985 * We have to create it, so we'll do the full config setup and everything.
2986 */
2987 PCFGMNODE pIdeInst = CFGMR3GetChildF (CFGMR3GetRoot (pVM), "Devices/%s/%d/", pszDevice, uInstance);
2988 AssertRelease (pIdeInst);
2989
2990 /* nuke anything which might have been left behind. */
2991 CFGMR3RemoveNode (CFGMR3GetChildF (pIdeInst, "LUN#%d", uLun));
2992
2993 /* create a new block driver config */
2994 PCFGMNODE pLunL0;
2995 rc = CFGMR3InsertNodeF (pIdeInst, &pLunL0, "LUN#%d", uLun); RC_CHECK();
2996 rc = CFGMR3InsertString (pLunL0, "Driver", "Block"); RC_CHECK();
2997 PCFGMNODE pCfg;
2998 rc = CFGMR3InsertNode (pLunL0, "Config", &pCfg); RC_CHECK();
2999 rc = CFGMR3InsertString (pCfg, "Type", !strcmp (pszDevice, "i82078") ? "Floppy 1.44" : "DVD");
3000 RC_CHECK();
3001 rc = CFGMR3InsertInteger (pCfg, "Mountable", 1); RC_CHECK();
3002
3003 /*
3004 * Attach the driver.
3005 */
3006 rc = PDMR3DeviceAttach (pVM, pszDevice, uInstance, uLun, &pBase);
3007 RC_CHECK();
3008 }
3009 else if (VBOX_FAILURE(rc))
3010 {
3011 AssertRC (rc);
3012 return rc;
3013 }
3014
3015 pIMount = (PPDMIMOUNT) pBase->pfnQueryInterface (pBase, PDMINTERFACE_MOUNT);
3016 if (!pIMount)
3017 {
3018 AssertFailed();
3019 return rc;
3020 }
3021 }
3022
3023 /*
3024 * If we've got an image, let's mount it.
3025 */
3026 if (pszPath && *pszPath)
3027 {
3028 rc = pIMount->pfnMount (pIMount, pszPath, strcmp (pszDevice, "i82078") ? "MediaISO" : "RawImage");
3029 if (VBOX_FAILURE (rc))
3030 eState = DriveState_NotMounted;
3031 }
3032 break;
3033 }
3034
3035 default:
3036 AssertMsgFailed (("Invalid eState: %d\n", eState));
3037 break;
3038
3039#undef RC_CHECK
3040 }
3041
3042 if (VBOX_FAILURE (rc) && VBOX_SUCCESS (rcRet))
3043 rcRet = rc;
3044
3045 *peState = eState;
3046 }
3047 while (0);
3048
3049 /*
3050 * Resume the VM if necessary.
3051 */
3052 if (fResume)
3053 {
3054 LogFlowFunc (("Resuming the VM...\n"));
3055 /* disable the callback to prevent Console-level state change */
3056 pThis->mVMStateChangeCallbackDisabled = true;
3057 rc = VMR3Resume (pVM);
3058 pThis->mVMStateChangeCallbackDisabled = false;
3059 AssertRC (rc);
3060 if (VBOX_FAILURE (rc))
3061 {
3062 /* too bad, we failed. try to sync the console state with the VMM state */
3063 vmstateChangeCallback (pVM, VMSTATE_SUSPENDED, enmVMState, pThis);
3064 }
3065 /// @todo (r=dmik) if we failed with drive mount, then the VMR3Resume
3066 // error (if any) will be hidden from the caller. For proper reporting
3067 // of such multiple errors to the caller we need to enhance the
3068 // IVurtualBoxError interface. For now, give the first error the higher
3069 // priority.
3070 if (VBOX_SUCCESS (rcRet))
3071 rcRet = rc;
3072 }
3073
3074 LogFlowFunc (("Returning %Vrc\n", rcRet));
3075 return rcRet;
3076}
3077
3078
3079/**
3080 * Called by IInternalSessionControl::OnNetworkAdapterChange().
3081 *
3082 * @note Locks this object for writing.
3083 */
3084HRESULT Console::onNetworkAdapterChange (INetworkAdapter *aNetworkAdapter)
3085{
3086 LogFlowThisFunc (("\n"));
3087
3088 AutoCaller autoCaller (this);
3089 AssertComRCReturnRC (autoCaller.rc());
3090
3091 AutoLock alock (this);
3092
3093 /* Don't do anything if the VM isn't running */
3094 if (!mpVM)
3095 return S_OK;
3096
3097 /* protect mpVM */
3098 AutoVMCaller autoVMCaller (this);
3099 CheckComRCReturnRC (autoVMCaller.rc());
3100
3101 /* Get the properties we need from the adapter */
3102 BOOL fCableConnected;
3103 HRESULT rc = aNetworkAdapter->COMGETTER(CableConnected) (&fCableConnected);
3104 AssertComRC(rc);
3105 if (SUCCEEDED(rc))
3106 {
3107 ULONG ulInstance;
3108 rc = aNetworkAdapter->COMGETTER(Slot) (&ulInstance);
3109 AssertComRC (rc);
3110 if (SUCCEEDED (rc))
3111 {
3112 /*
3113 * Find the pcnet instance, get the config interface and update
3114 * the link state.
3115 */
3116 PPDMIBASE pBase;
3117 int vrc = PDMR3QueryDeviceLun (mpVM, "pcnet", (unsigned) ulInstance,
3118 0, &pBase);
3119 ComAssertRC (vrc);
3120 if (VBOX_SUCCESS (vrc))
3121 {
3122 Assert(pBase);
3123 PPDMINETWORKCONFIG pINetCfg = (PPDMINETWORKCONFIG) pBase->
3124 pfnQueryInterface(pBase, PDMINTERFACE_NETWORK_CONFIG);
3125 if (pINetCfg)
3126 {
3127 Log (("Console::onNetworkAdapterChange: setting link state to %d\n",
3128 fCableConnected));
3129 vrc = pINetCfg->pfnSetLinkState (pINetCfg,
3130 fCableConnected ? PDMNETWORKLINKSTATE_UP
3131 : PDMNETWORKLINKSTATE_DOWN);
3132 ComAssertRC (vrc);
3133 }
3134 }
3135
3136 if (VBOX_FAILURE (vrc))
3137 rc = E_FAIL;
3138 }
3139 }
3140
3141 /* notify console callbacks on success */
3142 if (SUCCEEDED (rc))
3143 {
3144 CallbackList::iterator it = mCallbacks.begin();
3145 while (it != mCallbacks.end())
3146 (*it++)->OnNetworkAdapterChange (aNetworkAdapter);
3147 }
3148
3149 LogFlowThisFunc (("Leaving rc=%#x\n", rc));
3150 return rc;
3151}
3152
3153/**
3154 * Called by IInternalSessionControl::OnSerialPortChange().
3155 *
3156 * @note Locks this object for writing.
3157 */
3158HRESULT Console::onSerialPortChange (ISerialPort *aSerialPort)
3159{
3160 LogFlowThisFunc (("\n"));
3161
3162 AutoCaller autoCaller (this);
3163 AssertComRCReturnRC (autoCaller.rc());
3164
3165 AutoLock alock (this);
3166
3167 /* Don't do anything if the VM isn't running */
3168 if (!mpVM)
3169 return S_OK;
3170
3171 HRESULT rc = S_OK;
3172
3173 /* protect mpVM */
3174 AutoVMCaller autoVMCaller (this);
3175 CheckComRCReturnRC (autoVMCaller.rc());
3176
3177 /* nothing to do so far */
3178
3179 /* notify console callbacks on success */
3180 if (SUCCEEDED (rc))
3181 {
3182 CallbackList::iterator it = mCallbacks.begin();
3183 while (it != mCallbacks.end())
3184 (*it++)->OnSerialPortChange (aSerialPort);
3185 }
3186
3187 LogFlowThisFunc (("Leaving rc=%#x\n", rc));
3188 return rc;
3189}
3190
3191/**
3192 * Called by IInternalSessionControl::OnParallelPortChange().
3193 *
3194 * @note Locks this object for writing.
3195 */
3196HRESULT Console::onParallelPortChange (IParallelPort *aParallelPort)
3197{
3198 LogFlowThisFunc (("\n"));
3199
3200 AutoCaller autoCaller (this);
3201 AssertComRCReturnRC (autoCaller.rc());
3202
3203 AutoLock alock (this);
3204
3205 /* Don't do anything if the VM isn't running */
3206 if (!mpVM)
3207 return S_OK;
3208
3209 HRESULT rc = S_OK;
3210
3211 /* protect mpVM */
3212 AutoVMCaller autoVMCaller (this);
3213 CheckComRCReturnRC (autoVMCaller.rc());
3214
3215 /* nothing to do so far */
3216
3217 /* notify console callbacks on success */
3218 if (SUCCEEDED (rc))
3219 {
3220 CallbackList::iterator it = mCallbacks.begin();
3221 while (it != mCallbacks.end())
3222 (*it++)->OnParallelPortChange (aParallelPort);
3223 }
3224
3225 LogFlowThisFunc (("Leaving rc=%#x\n", rc));
3226 return rc;
3227}
3228
3229/**
3230 * Called by IInternalSessionControl::OnVRDPServerChange().
3231 *
3232 * @note Locks this object for writing.
3233 */
3234HRESULT Console::onVRDPServerChange()
3235{
3236 AutoCaller autoCaller (this);
3237 AssertComRCReturnRC (autoCaller.rc());
3238
3239 AutoLock alock (this);
3240
3241 HRESULT rc = S_OK;
3242
3243 if (mVRDPServer && mMachineState == MachineState_Running)
3244 {
3245 BOOL vrdpEnabled = FALSE;
3246
3247 rc = mVRDPServer->COMGETTER(Enabled) (&vrdpEnabled);
3248 ComAssertComRCRetRC (rc);
3249
3250 if (vrdpEnabled)
3251 {
3252 // If there was no VRDP server started the 'stop' will do nothing.
3253 // However if a server was started and this notification was called,
3254 // we have to restart the server.
3255 mConsoleVRDPServer->Stop ();
3256
3257 if (VBOX_FAILURE(mConsoleVRDPServer->Launch ()))
3258 {
3259 rc = E_FAIL;
3260 }
3261 else
3262 {
3263#ifdef VRDP_NO_COM
3264 mConsoleVRDPServer->EnableConnections ();
3265#else
3266 mConsoleVRDPServer->SetCallback ();
3267#endif /* VRDP_NO_COM */
3268 }
3269 }
3270 else
3271 {
3272 mConsoleVRDPServer->Stop ();
3273 }
3274 }
3275
3276 /* notify console callbacks on success */
3277 if (SUCCEEDED (rc))
3278 {
3279 CallbackList::iterator it = mCallbacks.begin();
3280 while (it != mCallbacks.end())
3281 (*it++)->OnVRDPServerChange();
3282 }
3283
3284 return rc;
3285}
3286
3287/**
3288 * Called by IInternalSessionControl::OnUSBControllerChange().
3289 *
3290 * @note Locks this object for writing.
3291 */
3292HRESULT Console::onUSBControllerChange()
3293{
3294 LogFlowThisFunc (("\n"));
3295
3296 AutoCaller autoCaller (this);
3297 AssertComRCReturnRC (autoCaller.rc());
3298
3299 AutoLock alock (this);
3300
3301 /* Ignore if no VM is running yet. */
3302 if (!mpVM)
3303 return S_OK;
3304
3305 HRESULT rc = S_OK;
3306
3307/// @todo (dmik)
3308// check for the Enabled state and disable virtual USB controller??
3309// Anyway, if we want to query the machine's USB Controller we need to cache
3310// it to to mUSBController in #init() (as it is done with mDVDDrive).
3311//
3312// bird: While the VM supports hot-plugging, I doubt any guest can handle it at this time... :-)
3313//
3314// /* protect mpVM */
3315// AutoVMCaller autoVMCaller (this);
3316// CheckComRCReturnRC (autoVMCaller.rc());
3317
3318 /* notify console callbacks on success */
3319 if (SUCCEEDED (rc))
3320 {
3321 CallbackList::iterator it = mCallbacks.begin();
3322 while (it != mCallbacks.end())
3323 (*it++)->OnUSBControllerChange();
3324 }
3325
3326 return rc;
3327}
3328
3329/**
3330 * Called by IInternalSessionControl::OnSharedFolderChange().
3331 *
3332 * @note Locks this object for writing.
3333 */
3334HRESULT Console::onSharedFolderChange (BOOL aGlobal)
3335{
3336 LogFlowThisFunc (("aGlobal=%RTbool\n", aGlobal));
3337
3338 AutoCaller autoCaller (this);
3339 AssertComRCReturnRC (autoCaller.rc());
3340
3341 AutoLock alock (this);
3342
3343 HRESULT rc = fetchSharedFolders (aGlobal);
3344
3345 /* notify console callbacks on success */
3346 if (SUCCEEDED (rc))
3347 {
3348 CallbackList::iterator it = mCallbacks.begin();
3349 while (it != mCallbacks.end())
3350 (*it++)->OnSharedFolderChange (aGlobal ? (Scope_T)Scope_GlobalScope
3351 : (Scope_T)Scope_MachineScope);
3352 }
3353
3354 return rc;
3355}
3356
3357/**
3358 * Called by IInternalSessionControl::OnUSBDeviceAttach() or locally by
3359 * processRemoteUSBDevices() after IInternalMachineControl::RunUSBDeviceFilters()
3360 * returns TRUE for a given remote USB device.
3361 *
3362 * @return S_OK if the device was attached to the VM.
3363 * @return failure if not attached.
3364 *
3365 * @param aDevice
3366 * The device in question.
3367 * @param aMaskedIfs
3368 * The interfaces to hide from the guest.
3369 *
3370 * @note Locks this object for writing.
3371 */
3372HRESULT Console::onUSBDeviceAttach (IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError, ULONG aMaskedIfs)
3373{
3374 LogFlowThisFunc (("aDevice=%p aError=%p\n", aDevice, aError));
3375
3376 AutoCaller autoCaller (this);
3377 ComAssertComRCRetRC (autoCaller.rc());
3378
3379 AutoLock alock (this);
3380
3381 /* protect mpVM (we don't need error info, since it's a callback) */
3382 AutoVMCallerQuiet autoVMCaller (this);
3383 if (FAILED (autoVMCaller.rc()))
3384 {
3385 /* The VM may be no more operational when this message arrives
3386 * (e.g. it may be Saving or Stopping or just PoweredOff) --
3387 * autoVMCaller.rc() will return a failure in this case. */
3388 LogFlowThisFunc (("Attach request ignored (mMachineState=%d).\n",
3389 mMachineState));
3390 return autoVMCaller.rc();
3391 }
3392
3393 if (aError != NULL)
3394 {
3395 /* notify callbacks about the error */
3396 onUSBDeviceStateChange (aDevice, true /* aAttached */, aError);
3397 return S_OK;
3398 }
3399
3400 /* Don't proceed unless there's at least one USB hub. */
3401 if (!PDMR3USBHasHub (mpVM))
3402 {
3403 LogFlowThisFunc (("Attach request ignored (no USB controller).\n"));
3404 return E_FAIL;
3405 }
3406
3407 HRESULT rc = attachUSBDevice (aDevice, aMaskedIfs);
3408 if (FAILED (rc))
3409 {
3410 /* take the current error info */
3411 com::ErrorInfoKeeper eik;
3412 /* the error must be a VirtualBoxErrorInfo instance */
3413 ComPtr <IVirtualBoxErrorInfo> error = eik.takeError();
3414 Assert (!error.isNull());
3415 if (!error.isNull())
3416 {
3417 /* notify callbacks about the error */
3418 onUSBDeviceStateChange (aDevice, true /* aAttached */, error);
3419 }
3420 }
3421
3422 return rc;
3423}
3424
3425/**
3426 * Called by IInternalSessionControl::OnUSBDeviceDetach() and locally by
3427 * processRemoteUSBDevices().
3428 *
3429 * @note Locks this object for writing.
3430 */
3431HRESULT Console::onUSBDeviceDetach (INPTR GUIDPARAM aId,
3432 IVirtualBoxErrorInfo *aError)
3433{
3434 Guid Uuid (aId);
3435 LogFlowThisFunc (("aId={%Vuuid} aError=%p\n", Uuid.raw(), aError));
3436
3437 AutoCaller autoCaller (this);
3438 AssertComRCReturnRC (autoCaller.rc());
3439
3440 AutoLock alock (this);
3441
3442 /* Find the device. */
3443 ComObjPtr <OUSBDevice> device;
3444 USBDeviceList::iterator it = mUSBDevices.begin();
3445 while (it != mUSBDevices.end())
3446 {
3447 LogFlowThisFunc (("it={%Vuuid}\n", (*it)->id().raw()));
3448 if ((*it)->id() == Uuid)
3449 {
3450 device = *it;
3451 break;
3452 }
3453 ++ it;
3454 }
3455
3456
3457 if (device.isNull())
3458 {
3459 LogFlowThisFunc (("USB device not found.\n"));
3460
3461 /* The VM may be no more operational when this message arrives
3462 * (e.g. it may be Saving or Stopping or just PoweredOff). Use
3463 * AutoVMCaller to detect it -- AutoVMCaller::rc() will return a
3464 * failure in this case. */
3465
3466 AutoVMCallerQuiet autoVMCaller (this);
3467 if (FAILED (autoVMCaller.rc()))
3468 {
3469 LogFlowThisFunc (("Detach request ignored (mMachineState=%d).\n",
3470 mMachineState));
3471 return autoVMCaller.rc();
3472 }
3473
3474 /* the device must be in the list otherwise */
3475 AssertFailedReturn (E_FAIL);
3476 }
3477
3478 if (aError != NULL)
3479 {
3480 /* notify callback about an error */
3481 onUSBDeviceStateChange (device, false /* aAttached */, aError);
3482 return S_OK;
3483 }
3484
3485 HRESULT rc = detachUSBDevice (it);
3486
3487 if (FAILED (rc))
3488 {
3489 /* take the current error info */
3490 com::ErrorInfoKeeper eik;
3491 /* the error must be a VirtualBoxErrorInfo instance */
3492 ComPtr <IVirtualBoxErrorInfo> error = eik.takeError();
3493 Assert (!error.isNull());
3494 if (!error.isNull())
3495 {
3496 /* notify callbacks about the error */
3497 onUSBDeviceStateChange (device, false /* aAttached */, error);
3498 }
3499 }
3500
3501 return rc;
3502}
3503
3504/**
3505 * Gets called by Session::UpdateMachineState()
3506 * (IInternalSessionControl::updateMachineState()).
3507 *
3508 * Must be called only in certain cases (see the implementation).
3509 *
3510 * @note Locks this object for writing.
3511 */
3512HRESULT Console::updateMachineState (MachineState_T aMachineState)
3513{
3514 AutoCaller autoCaller (this);
3515 AssertComRCReturnRC (autoCaller.rc());
3516
3517 AutoLock alock (this);
3518
3519 AssertReturn (mMachineState == MachineState_Saving ||
3520 mMachineState == MachineState_Discarding,
3521 E_FAIL);
3522
3523 return setMachineStateLocally (aMachineState);
3524}
3525
3526/**
3527 * @note Locks this object for writing.
3528 */
3529void Console::onMousePointerShapeChange(bool fVisible, bool fAlpha,
3530 uint32_t xHot, uint32_t yHot,
3531 uint32_t width, uint32_t height,
3532 void *pShape)
3533{
3534#if 0
3535 LogFlowThisFuncEnter();
3536 LogFlowThisFunc (("fVisible=%d, fAlpha=%d, xHot = %d, yHot = %d, width=%d, "
3537 "height=%d, shape=%p\n",
3538 fVisible, fAlpha, xHot, yHot, width, height, pShape));
3539#endif
3540
3541 AutoCaller autoCaller (this);
3542 AssertComRCReturnVoid (autoCaller.rc());
3543
3544 /* We need a write lock because we alter the cached callback data */
3545 AutoLock alock (this);
3546
3547 /* Save the callback arguments */
3548 mCallbackData.mpsc.visible = fVisible;
3549 mCallbackData.mpsc.alpha = fAlpha;
3550 mCallbackData.mpsc.xHot = xHot;
3551 mCallbackData.mpsc.yHot = yHot;
3552 mCallbackData.mpsc.width = width;
3553 mCallbackData.mpsc.height = height;
3554
3555 /* start with not valid */
3556 bool wasValid = mCallbackData.mpsc.valid;
3557 mCallbackData.mpsc.valid = false;
3558
3559 if (pShape != NULL)
3560 {
3561 size_t cb = (width + 7) / 8 * height; /* size of the AND mask */
3562 cb = ((cb + 3) & ~3) + width * 4 * height; /* + gap + size of the XOR mask */
3563 /* try to reuse the old shape buffer if the size is the same */
3564 if (!wasValid)
3565 mCallbackData.mpsc.shape = NULL;
3566 else
3567 if (mCallbackData.mpsc.shape != NULL && mCallbackData.mpsc.shapeSize != cb)
3568 {
3569 RTMemFree (mCallbackData.mpsc.shape);
3570 mCallbackData.mpsc.shape = NULL;
3571 }
3572 if (mCallbackData.mpsc.shape == NULL)
3573 {
3574 mCallbackData.mpsc.shape = (BYTE *) RTMemAllocZ (cb);
3575 AssertReturnVoid (mCallbackData.mpsc.shape);
3576 }
3577 mCallbackData.mpsc.shapeSize = cb;
3578 memcpy (mCallbackData.mpsc.shape, pShape, cb);
3579 }
3580 else
3581 {
3582 if (wasValid && mCallbackData.mpsc.shape != NULL)
3583 RTMemFree (mCallbackData.mpsc.shape);
3584 mCallbackData.mpsc.shape = NULL;
3585 mCallbackData.mpsc.shapeSize = 0;
3586 }
3587
3588 mCallbackData.mpsc.valid = true;
3589
3590 CallbackList::iterator it = mCallbacks.begin();
3591 while (it != mCallbacks.end())
3592 (*it++)->OnMousePointerShapeChange (fVisible, fAlpha, xHot, yHot,
3593 width, height, (BYTE *) pShape);
3594
3595#if 0
3596 LogFlowThisFuncLeave();
3597#endif
3598}
3599
3600/**
3601 * @note Locks this object for writing.
3602 */
3603void Console::onMouseCapabilityChange (BOOL supportsAbsolute, BOOL needsHostCursor)
3604{
3605 LogFlowThisFunc (("supportsAbsolute=%d needsHostCursor=%d\n",
3606 supportsAbsolute, needsHostCursor));
3607
3608 AutoCaller autoCaller (this);
3609 AssertComRCReturnVoid (autoCaller.rc());
3610
3611 /* We need a write lock because we alter the cached callback data */
3612 AutoLock alock (this);
3613
3614 /* save the callback arguments */
3615 mCallbackData.mcc.supportsAbsolute = supportsAbsolute;
3616 mCallbackData.mcc.needsHostCursor = needsHostCursor;
3617 mCallbackData.mcc.valid = true;
3618
3619 CallbackList::iterator it = mCallbacks.begin();
3620 while (it != mCallbacks.end())
3621 {
3622 Log2(("Console::onMouseCapabilityChange: calling %p\n", (void*)*it));
3623 (*it++)->OnMouseCapabilityChange (supportsAbsolute, needsHostCursor);
3624 }
3625}
3626
3627/**
3628 * @note Locks this object for reading.
3629 */
3630void Console::onStateChange (MachineState_T machineState)
3631{
3632 AutoCaller autoCaller (this);
3633 AssertComRCReturnVoid (autoCaller.rc());
3634
3635 AutoReaderLock alock (this);
3636
3637 CallbackList::iterator it = mCallbacks.begin();
3638 while (it != mCallbacks.end())
3639 (*it++)->OnStateChange (machineState);
3640}
3641
3642/**
3643 * @note Locks this object for reading.
3644 */
3645void Console::onAdditionsStateChange()
3646{
3647 AutoCaller autoCaller (this);
3648 AssertComRCReturnVoid (autoCaller.rc());
3649
3650 AutoReaderLock alock (this);
3651
3652 CallbackList::iterator it = mCallbacks.begin();
3653 while (it != mCallbacks.end())
3654 (*it++)->OnAdditionsStateChange();
3655}
3656
3657/**
3658 * @note Locks this object for reading.
3659 */
3660void Console::onAdditionsOutdated()
3661{
3662 AutoCaller autoCaller (this);
3663 AssertComRCReturnVoid (autoCaller.rc());
3664
3665 AutoReaderLock alock (this);
3666
3667 /** @todo Use the On-Screen Display feature to report the fact.
3668 * The user should be told to install additions that are
3669 * provided with the current VBox build:
3670 * VBOX_VERSION_MAJOR.VBOX_VERSION_MINOR.VBOX_VERSION_BUILD
3671 */
3672}
3673
3674/**
3675 * @note Locks this object for writing.
3676 */
3677void Console::onKeyboardLedsChange(bool fNumLock, bool fCapsLock, bool fScrollLock)
3678{
3679 AutoCaller autoCaller (this);
3680 AssertComRCReturnVoid (autoCaller.rc());
3681
3682 /* We need a write lock because we alter the cached callback data */
3683 AutoLock alock (this);
3684
3685 /* save the callback arguments */
3686 mCallbackData.klc.numLock = fNumLock;
3687 mCallbackData.klc.capsLock = fCapsLock;
3688 mCallbackData.klc.scrollLock = fScrollLock;
3689 mCallbackData.klc.valid = true;
3690
3691 CallbackList::iterator it = mCallbacks.begin();
3692 while (it != mCallbacks.end())
3693 (*it++)->OnKeyboardLedsChange(fNumLock, fCapsLock, fScrollLock);
3694}
3695
3696/**
3697 * @note Locks this object for reading.
3698 */
3699void Console::onUSBDeviceStateChange (IUSBDevice *aDevice, bool aAttached,
3700 IVirtualBoxErrorInfo *aError)
3701{
3702 AutoCaller autoCaller (this);
3703 AssertComRCReturnVoid (autoCaller.rc());
3704
3705 AutoReaderLock alock (this);
3706
3707 CallbackList::iterator it = mCallbacks.begin();
3708 while (it != mCallbacks.end())
3709 (*it++)->OnUSBDeviceStateChange (aDevice, aAttached, aError);
3710}
3711
3712/**
3713 * @note Locks this object for reading.
3714 */
3715void Console::onRuntimeError (BOOL aFatal, INPTR BSTR aErrorID, INPTR BSTR aMessage)
3716{
3717 AutoCaller autoCaller (this);
3718 AssertComRCReturnVoid (autoCaller.rc());
3719
3720 AutoReaderLock alock (this);
3721
3722 CallbackList::iterator it = mCallbacks.begin();
3723 while (it != mCallbacks.end())
3724 (*it++)->OnRuntimeError (aFatal, aErrorID, aMessage);
3725}
3726
3727/**
3728 * @note Locks this object for reading.
3729 */
3730HRESULT Console::onShowWindow (BOOL aCheck, BOOL *aCanShow, ULONG64 *aWinId)
3731{
3732 AssertReturn (aCanShow, E_POINTER);
3733 AssertReturn (aWinId, E_POINTER);
3734
3735 *aCanShow = FALSE;
3736 *aWinId = 0;
3737
3738 AutoCaller autoCaller (this);
3739 AssertComRCReturnRC (autoCaller.rc());
3740
3741 AutoReaderLock alock (this);
3742
3743 HRESULT rc = S_OK;
3744 CallbackList::iterator it = mCallbacks.begin();
3745
3746 if (aCheck)
3747 {
3748 while (it != mCallbacks.end())
3749 {
3750 BOOL canShow = FALSE;
3751 rc = (*it++)->OnCanShowWindow (&canShow);
3752 AssertComRC (rc);
3753 if (FAILED (rc) || !canShow)
3754 return rc;
3755 }
3756 *aCanShow = TRUE;
3757 }
3758 else
3759 {
3760 while (it != mCallbacks.end())
3761 {
3762 ULONG64 winId = 0;
3763 rc = (*it++)->OnShowWindow (&winId);
3764 AssertComRC (rc);
3765 if (FAILED (rc))
3766 return rc;
3767 /* only one callback may return non-null winId */
3768 Assert (*aWinId == 0 || winId == 0);
3769 if (*aWinId == 0)
3770 *aWinId = winId;
3771 }
3772 }
3773
3774 return S_OK;
3775}
3776
3777// private mehtods
3778////////////////////////////////////////////////////////////////////////////////
3779
3780/**
3781 * Increases the usage counter of the mpVM pointer. Guarantees that
3782 * VMR3Destroy() will not be called on it at least until releaseVMCaller()
3783 * is called.
3784 *
3785 * If this method returns a failure, the caller is not allowed to use mpVM
3786 * and may return the failed result code to the upper level. This method sets
3787 * the extended error info on failure if \a aQuiet is false.
3788 *
3789 * Setting \a aQuiet to true is useful for methods that don't want to return
3790 * the failed result code to the caller when this method fails (e.g. need to
3791 * silently check for the mpVM avaliability).
3792 *
3793 * When mpVM is NULL but \a aAllowNullVM is true, a corresponding error will be
3794 * returned instead of asserting. Having it false is intended as a sanity check
3795 * for methods that have checked mMachineState and expect mpVM *NOT* to be NULL.
3796 *
3797 * @param aQuiet true to suppress setting error info
3798 * @param aAllowNullVM true to accept mpVM being NULL and return a failure
3799 * (otherwise this method will assert if mpVM is NULL)
3800 *
3801 * @note Locks this object for writing.
3802 */
3803HRESULT Console::addVMCaller (bool aQuiet /* = false */,
3804 bool aAllowNullVM /* = false */)
3805{
3806 AutoCaller autoCaller (this);
3807 AssertComRCReturnRC (autoCaller.rc());
3808
3809 AutoLock alock (this);
3810
3811 if (mVMDestroying)
3812 {
3813 /* powerDown() is waiting for all callers to finish */
3814 return aQuiet ? E_ACCESSDENIED : setError (E_ACCESSDENIED,
3815 tr ("Virtual machine is being powered down"));
3816 }
3817
3818 if (mpVM == NULL)
3819 {
3820 Assert (aAllowNullVM == true);
3821
3822 /* The machine is not powered up */
3823 return aQuiet ? E_ACCESSDENIED : setError (E_ACCESSDENIED,
3824 tr ("Virtual machine is not powered up"));
3825 }
3826
3827 ++ mVMCallers;
3828
3829 return S_OK;
3830}
3831
3832/**
3833 * Decreases the usage counter of the mpVM pointer. Must always complete
3834 * the addVMCaller() call after the mpVM pointer is no more necessary.
3835 *
3836 * @note Locks this object for writing.
3837 */
3838void Console::releaseVMCaller()
3839{
3840 AutoCaller autoCaller (this);
3841 AssertComRCReturnVoid (autoCaller.rc());
3842
3843 AutoLock alock (this);
3844
3845 AssertReturnVoid (mpVM != NULL);
3846
3847 Assert (mVMCallers > 0);
3848 -- mVMCallers;
3849
3850 if (mVMCallers == 0 && mVMDestroying)
3851 {
3852 /* inform powerDown() there are no more callers */
3853 RTSemEventSignal (mVMZeroCallersSem);
3854 }
3855}
3856
3857/**
3858 * Internal power off worker routine.
3859 *
3860 * This method may be called only at certain places with the folliwing meaning
3861 * as shown below:
3862 *
3863 * - if the machine state is either Running or Paused, a normal
3864 * Console-initiated powerdown takes place (e.g. PowerDown());
3865 * - if the machine state is Saving, saveStateThread() has successfully
3866 * done its job;
3867 * - if the machine state is Starting or Restoring, powerUpThread() has
3868 * failed to start/load the VM;
3869 * - if the machine state is Stopping, the VM has powered itself off
3870 * (i.e. not as a result of the powerDown() call).
3871 *
3872 * Calling it in situations other than the above will cause unexpected
3873 * behavior.
3874 *
3875 * Note that this method should be the only one that destroys mpVM and sets
3876 * it to NULL.
3877 *
3878 * @note Locks this object for writing.
3879 *
3880 * @note Never call this method from a thread that called addVMCaller() or
3881 * instantiated an AutoVMCaller object; first call releaseVMCaller() or
3882 * release(). Otherwise it will deadlock.
3883 */
3884HRESULT Console::powerDown()
3885{
3886 LogFlowThisFuncEnter();
3887
3888 AutoCaller autoCaller (this);
3889 AssertComRCReturnRC (autoCaller.rc());
3890
3891 AutoLock alock (this);
3892
3893 /* sanity */
3894 AssertReturn (mVMDestroying == false, E_FAIL);
3895
3896 LogRel (("Console::powerDown(): a request to power off the VM has been issued "
3897 "(mMachineState=%d, InUninit=%d)\n",
3898 mMachineState, autoCaller.state() == InUninit));
3899
3900 /*
3901 * Stop the VRDP server to prevent new clients connection while VM is being powered off.
3902 */
3903 if (mConsoleVRDPServer)
3904 {
3905 LogFlowThisFunc (("Stopping VRDP server...\n"));
3906
3907 /* Leave the lock since EMT will call us back as addVMCaller in updateDisplayData(). */
3908 alock.leave();
3909
3910 mConsoleVRDPServer->Stop();
3911
3912 alock.enter();
3913 }
3914
3915
3916#ifdef VBOX_HGCM
3917 /*
3918 * Shutdown HGCM services before stopping the guest, because they might need a cleanup.
3919 */
3920 if (mVMMDev)
3921 {
3922 LogFlowThisFunc (("Shutdown HGCM...\n"));
3923
3924 /* Leave the lock. */
3925 alock.leave();
3926
3927 mVMMDev->hgcmShutdown ();
3928
3929 alock.enter();
3930 }
3931#endif /* VBOX_HGCM */
3932
3933 /* First, wait for all mpVM callers to finish their work if necessary */
3934 if (mVMCallers > 0)
3935 {
3936 /* go to the destroying state to prevent from adding new callers */
3937 mVMDestroying = true;
3938
3939 /* lazy creation */
3940 if (mVMZeroCallersSem == NIL_RTSEMEVENT)
3941 RTSemEventCreate (&mVMZeroCallersSem);
3942
3943 LogFlowThisFunc (("Waiting for mpVM callers (%d) to drop to zero...\n",
3944 mVMCallers));
3945
3946 alock.leave();
3947
3948 RTSemEventWait (mVMZeroCallersSem, RT_INDEFINITE_WAIT);
3949
3950 alock.enter();
3951 }
3952
3953 AssertReturn (mpVM, E_FAIL);
3954
3955 AssertMsg (mMachineState == MachineState_Running ||
3956 mMachineState == MachineState_Paused ||
3957 mMachineState == MachineState_Stuck ||
3958 mMachineState == MachineState_Saving ||
3959 mMachineState == MachineState_Starting ||
3960 mMachineState == MachineState_Restoring ||
3961 mMachineState == MachineState_Stopping,
3962 ("Invalid machine state: %d\n", mMachineState));
3963
3964 HRESULT rc = S_OK;
3965 int vrc = VINF_SUCCESS;
3966
3967 /*
3968 * Power off the VM if not already done that. In case of Stopping, the VM
3969 * has powered itself off and notified Console in vmstateChangeCallback().
3970 * In case of Starting or Restoring, powerUpThread() is calling us on
3971 * failure, so the VM is already off at that point.
3972 */
3973 if (mMachineState != MachineState_Stopping &&
3974 mMachineState != MachineState_Starting &&
3975 mMachineState != MachineState_Restoring)
3976 {
3977 /*
3978 * don't go from Saving to Stopping, vmstateChangeCallback needs it
3979 * to set the state to Saved on VMSTATE_TERMINATED.
3980 */
3981 if (mMachineState != MachineState_Saving)
3982 setMachineState (MachineState_Stopping);
3983
3984 LogFlowThisFunc (("Powering off the VM...\n"));
3985
3986 /* Leave the lock since EMT will call us back on VMR3PowerOff() */
3987 alock.leave();
3988
3989 vrc = VMR3PowerOff (mpVM);
3990 /*
3991 * Note that VMR3PowerOff() may fail here (invalid VMSTATE) if the
3992 * VM-(guest-)initiated power off happened in parallel a ms before
3993 * this call. So far, we let this error pop up on the user's side.
3994 */
3995
3996 alock.enter();
3997 }
3998
3999 LogFlowThisFunc (("Ready for VM destruction\n"));
4000
4001 /*
4002 * If we are called from Console::uninit(), then try to destroy the VM
4003 * even on failure (this will most likely fail too, but what to do?..)
4004 */
4005 if (VBOX_SUCCESS (vrc) || autoCaller.state() == InUninit)
4006 {
4007 /* If the machine has an USB comtroller, release all USB devices
4008 * (symmetric to the code in captureUSBDevices()) */
4009 bool fHasUSBController = false;
4010 {
4011 PPDMIBASE pBase;
4012 int vrc = PDMR3QueryLun (mpVM, "usb-ohci", 0, 0, &pBase);
4013 if (VBOX_SUCCESS (vrc))
4014 {
4015 fHasUSBController = true;
4016 detachAllUSBDevices (false /* aDone */);
4017 }
4018 }
4019
4020 /*
4021 * Now we've got to destroy the VM as well. (mpVM is not valid
4022 * beyond this point). We leave the lock before calling VMR3Destroy()
4023 * because it will result into calling destructors of drivers
4024 * associated with Console children which may in turn try to lock
4025 * Console (e.g. by instantiating SafeVMPtr to access mpVM). It's safe
4026 * here because mVMDestroying is set which should prevent any activity.
4027 */
4028
4029 /*
4030 * Set mpVM to NULL early just in case if some old code is not using
4031 * addVMCaller()/releaseVMCaller().
4032 */
4033 PVM pVM = mpVM;
4034 mpVM = NULL;
4035
4036 LogFlowThisFunc (("Destroying the VM...\n"));
4037
4038 alock.leave();
4039
4040 vrc = VMR3Destroy (pVM);
4041
4042 /* take the lock again */
4043 alock.enter();
4044
4045 if (VBOX_SUCCESS (vrc))
4046 {
4047 LogFlowThisFunc (("Machine has been destroyed (mMachineState=%d)\n",
4048 mMachineState));
4049 /*
4050 * Note: the Console-level machine state change happens on the
4051 * VMSTATE_TERMINATE state change in vmstateChangeCallback(). If
4052 * powerDown() is called from EMT (i.e. from vmstateChangeCallback()
4053 * on receiving VM-initiated VMSTATE_OFF), VMSTATE_TERMINATE hasn't
4054 * occured yet. This is okay, because mMachineState is already
4055 * Stopping in this case, so any other attempt to call PowerDown()
4056 * will be rejected.
4057 */
4058 }
4059 else
4060 {
4061 /* bad bad bad, but what to do? */
4062 mpVM = pVM;
4063 rc = setError (E_FAIL,
4064 tr ("Could not destroy the machine. (Error: %Vrc)"), vrc);
4065 }
4066
4067 /*
4068 * Complete the detaching of the USB devices.
4069 */
4070 if (fHasUSBController)
4071 detachAllUSBDevices (true /* aDone */);
4072 }
4073 else
4074 {
4075 rc = setError (E_FAIL,
4076 tr ("Could not power off the machine. (Error: %Vrc)"), vrc);
4077 }
4078
4079 /*
4080 * Finished with destruction. Note that if something impossible happened
4081 * and we've failed to destroy the VM, mVMDestroying will remain false and
4082 * mMachineState will be something like Stopping, so most Console methods
4083 * will return an error to the caller.
4084 */
4085 if (mpVM == NULL)
4086 mVMDestroying = false;
4087
4088 if (SUCCEEDED (rc))
4089 {
4090 /* uninit dynamically allocated members of mCallbackData */
4091 if (mCallbackData.mpsc.valid)
4092 {
4093 if (mCallbackData.mpsc.shape != NULL)
4094 RTMemFree (mCallbackData.mpsc.shape);
4095 }
4096 memset (&mCallbackData, 0, sizeof (mCallbackData));
4097 }
4098
4099 LogFlowThisFuncLeave();
4100 return rc;
4101}
4102
4103/**
4104 * @note Locks this object for writing.
4105 */
4106HRESULT Console::setMachineState (MachineState_T aMachineState,
4107 bool aUpdateServer /* = true */)
4108{
4109 AutoCaller autoCaller (this);
4110 AssertComRCReturnRC (autoCaller.rc());
4111
4112 AutoLock alock (this);
4113
4114 HRESULT rc = S_OK;
4115
4116 if (mMachineState != aMachineState)
4117 {
4118 LogFlowThisFunc (("machineState=%d\n", aMachineState));
4119 mMachineState = aMachineState;
4120
4121 /// @todo (dmik)
4122 // possibly, we need to redo onStateChange() using the dedicated
4123 // Event thread, like it is done in VirtualBox. This will make it
4124 // much safer (no deadlocks possible if someone tries to use the
4125 // console from the callback), however, listeners will lose the
4126 // ability to synchronously react to state changes (is it really
4127 // necessary??)
4128 LogFlowThisFunc (("Doing onStateChange()...\n"));
4129 onStateChange (aMachineState);
4130 LogFlowThisFunc (("Done onStateChange()\n"));
4131
4132 if (aUpdateServer)
4133 {
4134 /*
4135 * Server notification MUST be done from under the lock; otherwise
4136 * the machine state here and on the server might go out of sync, that
4137 * can lead to various unexpected results (like the machine state being
4138 * >= MachineState_Running on the server, while the session state is
4139 * already SessionState_SessionClosed at the same time there).
4140 *
4141 * Cross-lock conditions should be carefully watched out: calling
4142 * UpdateState we will require Machine and SessionMachine locks
4143 * (remember that here we're holding the Console lock here, and
4144 * also all locks that have been entered by the thread before calling
4145 * this method).
4146 */
4147 LogFlowThisFunc (("Doing mControl->UpdateState()...\n"));
4148 rc = mControl->UpdateState (aMachineState);
4149 LogFlowThisFunc (("mControl->UpdateState()=%08X\n", rc));
4150 }
4151 }
4152
4153 return rc;
4154}
4155
4156/**
4157 * Searches for a shared folder with the given logical name
4158 * in the collection of shared folders.
4159 *
4160 * @param aName logical name of the shared folder
4161 * @param aSharedFolder where to return the found object
4162 * @param aSetError whether to set the error info if the folder is
4163 * not found
4164 * @return
4165 * S_OK when found or E_INVALIDARG when not found
4166 *
4167 * @note The caller must lock this object for writing.
4168 */
4169HRESULT Console::findSharedFolder (const BSTR aName,
4170 ComObjPtr <SharedFolder> &aSharedFolder,
4171 bool aSetError /* = false */)
4172{
4173 /* sanity check */
4174 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
4175
4176 SharedFolderMap::const_iterator it = mSharedFolders.find (aName);
4177 if (it != mSharedFolders.end())
4178 {
4179 aSharedFolder = it->second;
4180 return S_OK;
4181 }
4182
4183 if (aSetError)
4184 setError (E_INVALIDARG,
4185 tr ("Could not find a shared folder named '%ls'."), aName);
4186
4187 return E_INVALIDARG;
4188}
4189
4190/**
4191 * Fetches the list of global or machine shared folders from the server.
4192 *
4193 * @param aGlobal true to fetch global folders.
4194 *
4195 * @note The caller must lock this object for writing.
4196 */
4197HRESULT Console::fetchSharedFolders (BOOL aGlobal)
4198{
4199 /* sanity check */
4200 AssertReturn (AutoCaller (this).state() == InInit ||
4201 isLockedOnCurrentThread(), E_FAIL);
4202
4203 /* protect mpVM (if not NULL) */
4204 AutoVMCallerQuietWeak autoVMCaller (this);
4205
4206 HRESULT rc = S_OK;
4207
4208 bool online = mpVM && autoVMCaller.isOk() && mVMMDev->isShFlActive();
4209
4210 if (aGlobal)
4211 {
4212 /// @todo grab & process global folders when they are done
4213 }
4214 else
4215 {
4216 SharedFolderDataMap oldFolders;
4217 if (online)
4218 oldFolders = mMachineSharedFolders;
4219
4220 mMachineSharedFolders.clear();
4221
4222 ComPtr <ISharedFolderCollection> coll;
4223 rc = mMachine->COMGETTER(SharedFolders) (coll.asOutParam());
4224 AssertComRCReturnRC (rc);
4225
4226 ComPtr <ISharedFolderEnumerator> en;
4227 rc = coll->Enumerate (en.asOutParam());
4228 AssertComRCReturnRC (rc);
4229
4230 BOOL hasMore = FALSE;
4231 while (SUCCEEDED (rc = en->HasMore (&hasMore)) && hasMore)
4232 {
4233 ComPtr <ISharedFolder> folder;
4234 rc = en->GetNext (folder.asOutParam());
4235 CheckComRCBreakRC (rc);
4236
4237 Bstr name;
4238 Bstr hostPath;
4239
4240 rc = folder->COMGETTER(Name) (name.asOutParam());
4241 CheckComRCBreakRC (rc);
4242 rc = folder->COMGETTER(HostPath) (hostPath.asOutParam());
4243 CheckComRCBreakRC (rc);
4244
4245 mMachineSharedFolders.insert (std::make_pair (name, hostPath));
4246
4247 /* send changes to HGCM if the VM is running */
4248 /// @todo report errors as runtime warnings through VMSetError
4249 if (online)
4250 {
4251 SharedFolderDataMap::iterator it = oldFolders.find (name);
4252 if (it == oldFolders.end() || it->second != hostPath)
4253 {
4254 /* a new machine folder is added or
4255 * the existing machine folder is changed */
4256 if (mSharedFolders.find (name) != mSharedFolders.end())
4257 ; /* the console folder exists, nothing to do */
4258 else
4259 {
4260 /* remove the old machhine folder (when changed)
4261 * or the global folder if any (when new) */
4262 if (it != oldFolders.end() ||
4263 mGlobalSharedFolders.find (name) !=
4264 mGlobalSharedFolders.end())
4265 rc = removeSharedFolder (name);
4266 /* create the new machine folder */
4267 rc = createSharedFolder (name, hostPath);
4268 }
4269 }
4270 /* forget the processed (or identical) folder */
4271 if (it != oldFolders.end())
4272 oldFolders.erase (it);
4273
4274 rc = S_OK;
4275 }
4276 }
4277
4278 AssertComRCReturnRC (rc);
4279
4280 /* process outdated (removed) folders */
4281 /// @todo report errors as runtime warnings through VMSetError
4282 if (online)
4283 {
4284 for (SharedFolderDataMap::const_iterator it = oldFolders.begin();
4285 it != oldFolders.end(); ++ it)
4286 {
4287 if (mSharedFolders.find (it->first) != mSharedFolders.end())
4288 ; /* the console folder exists, nothing to do */
4289 else
4290 {
4291 /* remove the outdated machine folder */
4292 rc = removeSharedFolder (it->first);
4293 /* create the global folder if there is any */
4294 SharedFolderDataMap::const_iterator git =
4295 mGlobalSharedFolders.find (it->first);
4296 if (git != mGlobalSharedFolders.end())
4297 rc = createSharedFolder (git->first, git->second);
4298 }
4299 }
4300
4301 rc = S_OK;
4302 }
4303 }
4304
4305 return rc;
4306}
4307
4308/**
4309 * Searches for a shared folder with the given name in the list of machine
4310 * shared folders and then in the list of the global shared folders.
4311 *
4312 * @param aName Name of the folder to search for.
4313 * @param aIt Where to store the pointer to the found folder.
4314 * @return @c true if the folder was found and @c false otherwise.
4315 *
4316 * @note The caller must lock this object for reading.
4317 */
4318bool Console::findOtherSharedFolder (INPTR BSTR aName,
4319 SharedFolderDataMap::const_iterator &aIt)
4320{
4321 /* sanity check */
4322 AssertReturn (isLockedOnCurrentThread(), false);
4323
4324 /* first, search machine folders */
4325 aIt = mMachineSharedFolders.find (aName);
4326 if (aIt != mMachineSharedFolders.end())
4327 return true;
4328
4329 /* second, search machine folders */
4330 aIt = mGlobalSharedFolders.find (aName);
4331 if (aIt != mGlobalSharedFolders.end())
4332 return true;
4333
4334 return false;
4335}
4336
4337/**
4338 * Calls the HGCM service to add a shared folder definition.
4339 *
4340 * @param aName Shared folder name.
4341 * @param aHostPath Shared folder path.
4342 *
4343 * @note Must be called from under AutoVMCaller and when mpVM != NULL!
4344 * @note Doesn't lock anything.
4345 */
4346HRESULT Console::createSharedFolder (INPTR BSTR aName, INPTR BSTR aHostPath)
4347{
4348 ComAssertRet (aName && *aName, E_FAIL);
4349 ComAssertRet (aHostPath && *aHostPath, E_FAIL);
4350
4351 /* sanity checks */
4352 AssertReturn (mpVM, E_FAIL);
4353 AssertReturn (mVMMDev->isShFlActive(), E_FAIL);
4354
4355 VBOXHGCMSVCPARM parms[2];
4356 SHFLSTRING *pFolderName, *pMapName;
4357 size_t cbString;
4358
4359 Log (("Adding shared folder '%ls' -> '%ls'\n", aName, aHostPath));
4360
4361 cbString = (RTStrUcs2Len (aHostPath) + 1) * sizeof (RTUCS2);
4362 if (cbString >= UINT16_MAX)
4363 return setError (E_INVALIDARG, tr ("The name is too long"));
4364 pFolderName = (SHFLSTRING *) RTMemAllocZ (sizeof (SHFLSTRING) + cbString);
4365 Assert (pFolderName);
4366 memcpy (pFolderName->String.ucs2, aHostPath, cbString);
4367
4368 pFolderName->u16Size = (uint16_t)cbString;
4369 pFolderName->u16Length = (uint16_t)cbString - sizeof(RTUCS2);
4370
4371 parms[0].type = VBOX_HGCM_SVC_PARM_PTR;
4372 parms[0].u.pointer.addr = pFolderName;
4373 parms[0].u.pointer.size = sizeof (SHFLSTRING) + (uint16_t)cbString;
4374
4375 cbString = (RTStrUcs2Len (aName) + 1) * sizeof (RTUCS2);
4376 if (cbString >= UINT16_MAX)
4377 {
4378 RTMemFree (pFolderName);
4379 return setError (E_INVALIDARG, tr ("The host path is too long"));
4380 }
4381 pMapName = (SHFLSTRING *) RTMemAllocZ (sizeof(SHFLSTRING) + cbString);
4382 Assert (pMapName);
4383 memcpy (pMapName->String.ucs2, aName, cbString);
4384
4385 pMapName->u16Size = (uint16_t)cbString;
4386 pMapName->u16Length = (uint16_t)cbString - sizeof (RTUCS2);
4387
4388 parms[1].type = VBOX_HGCM_SVC_PARM_PTR;
4389 parms[1].u.pointer.addr = pMapName;
4390 parms[1].u.pointer.size = sizeof (SHFLSTRING) + (uint16_t)cbString;
4391
4392 int vrc = mVMMDev->hgcmHostCall ("VBoxSharedFolders",
4393 SHFL_FN_ADD_MAPPING,
4394 2, &parms[0]);
4395 RTMemFree (pFolderName);
4396 RTMemFree (pMapName);
4397
4398 if (VBOX_FAILURE (vrc))
4399 return setError (E_FAIL,
4400 tr ("Could not create a shared folder '%ls' "
4401 "mapped to '%ls' (%Vrc)"),
4402 aName, aHostPath, vrc);
4403
4404 return S_OK;
4405}
4406
4407/**
4408 * Calls the HGCM service to remove the shared folder definition.
4409 *
4410 * @param aName Shared folder name.
4411 *
4412 * @note Must be called from under AutoVMCaller and when mpVM != NULL!
4413 * @note Doesn't lock anything.
4414 */
4415HRESULT Console::removeSharedFolder (INPTR BSTR aName)
4416{
4417 ComAssertRet (aName && *aName, E_FAIL);
4418
4419 /* sanity checks */
4420 AssertReturn (mpVM, E_FAIL);
4421 AssertReturn (mVMMDev->isShFlActive(), E_FAIL);
4422
4423 VBOXHGCMSVCPARM parms;
4424 SHFLSTRING *pMapName;
4425 size_t cbString;
4426
4427 Log (("Removing shared folder '%ls'\n", aName));
4428
4429 cbString = (RTStrUcs2Len (aName) + 1) * sizeof (RTUCS2);
4430 if (cbString >= UINT16_MAX)
4431 return setError (E_INVALIDARG, tr ("The name is too long"));
4432 pMapName = (SHFLSTRING *) RTMemAllocZ (sizeof (SHFLSTRING) + cbString);
4433 Assert (pMapName);
4434 memcpy (pMapName->String.ucs2, aName, cbString);
4435
4436 pMapName->u16Size = (uint16_t)cbString;
4437 pMapName->u16Length = (uint16_t)cbString - sizeof (RTUCS2);
4438
4439 parms.type = VBOX_HGCM_SVC_PARM_PTR;
4440 parms.u.pointer.addr = pMapName;
4441 parms.u.pointer.size = sizeof (SHFLSTRING) + (uint16_t)cbString;
4442
4443 int vrc = mVMMDev->hgcmHostCall ("VBoxSharedFolders",
4444 SHFL_FN_REMOVE_MAPPING,
4445 1, &parms);
4446 RTMemFree(pMapName);
4447 if (VBOX_FAILURE (vrc))
4448 return setError (E_FAIL,
4449 tr ("Could not remove the shared folder '%ls' (%Vrc)"),
4450 aName, vrc);
4451
4452 return S_OK;
4453}
4454
4455/**
4456 * VM state callback function. Called by the VMM
4457 * using its state machine states.
4458 *
4459 * Primarily used to handle VM initiated power off, suspend and state saving,
4460 * but also for doing termination completed work (VMSTATE_TERMINATE).
4461 *
4462 * In general this function is called in the context of the EMT.
4463 *
4464 * @param aVM The VM handle.
4465 * @param aState The new state.
4466 * @param aOldState The old state.
4467 * @param aUser The user argument (pointer to the Console object).
4468 *
4469 * @note Locks the Console object for writing.
4470 */
4471DECLCALLBACK(void)
4472Console::vmstateChangeCallback (PVM aVM, VMSTATE aState, VMSTATE aOldState,
4473 void *aUser)
4474{
4475 LogFlowFunc (("Changing state from %d to %d (aVM=%p)\n",
4476 aOldState, aState, aVM));
4477
4478 Console *that = static_cast <Console *> (aUser);
4479 AssertReturnVoid (that);
4480
4481 AutoCaller autoCaller (that);
4482 /*
4483 * Note that we must let this method proceed even if Console::uninit() has
4484 * been already called. In such case this VMSTATE change is a result of:
4485 * 1) powerDown() called from uninit() itself, or
4486 * 2) VM-(guest-)initiated power off.
4487 */
4488 AssertReturnVoid (autoCaller.isOk() ||
4489 autoCaller.state() == InUninit);
4490
4491 switch (aState)
4492 {
4493 /*
4494 * The VM has terminated
4495 */
4496 case VMSTATE_OFF:
4497 {
4498 AutoLock alock (that);
4499
4500 if (that->mVMStateChangeCallbackDisabled)
4501 break;
4502
4503 /*
4504 * Do we still think that it is running? It may happen if this is
4505 * a VM-(guest-)initiated shutdown/poweroff.
4506 */
4507 if (that->mMachineState != MachineState_Stopping &&
4508 that->mMachineState != MachineState_Saving &&
4509 that->mMachineState != MachineState_Restoring)
4510 {
4511 LogFlowFunc (("VM has powered itself off but Console still "
4512 "thinks it is running. Notifying.\n"));
4513
4514 /* prevent powerDown() from calling VMR3PowerOff() again */
4515 that->setMachineState (MachineState_Stopping);
4516
4517 /*
4518 * Setup task object and thread to carry out the operation
4519 * asynchronously (if we call powerDown() right here but there
4520 * is one or more mpVM callers (added with addVMCaller()) we'll
4521 * deadlock.
4522 */
4523 std::auto_ptr <VMTask> task (new VMTask (that, true /* aUsesVMPtr */));
4524 /*
4525 * If creating a task is falied, this can currently mean one
4526 * of two: either Console::uninit() has been called just a ms
4527 * before (so a powerDown() call is already on the way), or
4528 * powerDown() itself is being already executed. Just do
4529 * nothing .
4530 */
4531 if (!task->isOk())
4532 {
4533 LogFlowFunc (("Console is already being uninitialized.\n"));
4534 break;
4535 }
4536
4537 int vrc = RTThreadCreate (NULL, Console::powerDownThread,
4538 (void *) task.get(), 0,
4539 RTTHREADTYPE_MAIN_WORKER, 0,
4540 "VMPowerDowm");
4541
4542 AssertMsgRC (vrc, ("Could not create VMPowerUp thread (%Vrc)\n", vrc));
4543 if (VBOX_FAILURE (vrc))
4544 break;
4545
4546 /* task is now owned by powerDownThread(), so release it */
4547 task.release();
4548 }
4549 break;
4550 }
4551
4552 /*
4553 * The VM has been completely destroyed.
4554 *
4555 * Note: This state change can happen at two points:
4556 * 1) At the end of VMR3Destroy() if it was not called from EMT.
4557 * 2) At the end of vmR3EmulationThread if VMR3Destroy() was
4558 * called by EMT.
4559 */
4560 case VMSTATE_TERMINATED:
4561 {
4562 AutoLock alock (that);
4563
4564 if (that->mVMStateChangeCallbackDisabled)
4565 break;
4566
4567 /*
4568 * Terminate host interface networking. If aVM is NULL, we've been
4569 * manually called from powerUpThread() either before calling
4570 * VMR3Create() or after VMR3Create() failed, so no need to touch
4571 * networking.
4572 */
4573 if (aVM)
4574 that->powerDownHostInterfaces();
4575
4576 /*
4577 * From now on the machine is officially powered down or
4578 * remains in the Saved state.
4579 */
4580 switch (that->mMachineState)
4581 {
4582 default:
4583 AssertFailed();
4584 /* fall through */
4585 case MachineState_Stopping:
4586 /* successfully powered down */
4587 that->setMachineState (MachineState_PoweredOff);
4588 break;
4589 case MachineState_Saving:
4590 /*
4591 * successfully saved (note that the machine is already
4592 * in the Saved state on the server due to EndSavingState()
4593 * called from saveStateThread(), so only change the local
4594 * state)
4595 */
4596 that->setMachineStateLocally (MachineState_Saved);
4597 break;
4598 case MachineState_Starting:
4599 /*
4600 * failed to start, but be patient: set back to PoweredOff
4601 * (for similarity with the below)
4602 */
4603 that->setMachineState (MachineState_PoweredOff);
4604 break;
4605 case MachineState_Restoring:
4606 /*
4607 * failed to load the saved state file, but be patient:
4608 * set back to Saved (to preserve the saved state file)
4609 */
4610 that->setMachineState (MachineState_Saved);
4611 break;
4612 }
4613
4614 break;
4615 }
4616
4617 case VMSTATE_SUSPENDED:
4618 {
4619 if (aOldState == VMSTATE_RUNNING)
4620 {
4621 AutoLock alock (that);
4622
4623 if (that->mVMStateChangeCallbackDisabled)
4624 break;
4625
4626 /* Change the machine state from Running to Paused */
4627 Assert (that->mMachineState == MachineState_Running);
4628 that->setMachineState (MachineState_Paused);
4629 }
4630
4631 break;
4632 }
4633
4634 case VMSTATE_RUNNING:
4635 {
4636 if (aOldState == VMSTATE_CREATED ||
4637 aOldState == VMSTATE_SUSPENDED)
4638 {
4639 AutoLock alock (that);
4640
4641 if (that->mVMStateChangeCallbackDisabled)
4642 break;
4643
4644 /*
4645 * Change the machine state from Starting, Restoring or Paused
4646 * to Running
4647 */
4648 Assert ((that->mMachineState == MachineState_Starting &&
4649 aOldState == VMSTATE_CREATED) ||
4650 ((that->mMachineState == MachineState_Restoring ||
4651 that->mMachineState == MachineState_Paused) &&
4652 aOldState == VMSTATE_SUSPENDED));
4653
4654 that->setMachineState (MachineState_Running);
4655 }
4656
4657 break;
4658 }
4659
4660 case VMSTATE_GURU_MEDITATION:
4661 {
4662 AutoLock alock (that);
4663
4664 if (that->mVMStateChangeCallbackDisabled)
4665 break;
4666
4667 /* Guru respects only running VMs */
4668 Assert ((that->mMachineState >= MachineState_Running));
4669
4670 that->setMachineState (MachineState_Stuck);
4671
4672 break;
4673 }
4674
4675 default: /* shut up gcc */
4676 break;
4677 }
4678}
4679
4680/**
4681 * Sends a request to VMM to attach the given host device.
4682 * After this method succeeds, the attached device will appear in the
4683 * mUSBDevices collection.
4684 *
4685 * @param aHostDevice device to attach
4686 *
4687 * @note Synchronously calls EMT.
4688 * @note Must be called from under this object's lock.
4689 */
4690HRESULT Console::attachUSBDevice (IUSBDevice *aHostDevice, ULONG aMaskedIfs)
4691{
4692 AssertReturn (aHostDevice, E_FAIL);
4693 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
4694
4695 /* still want a lock object because we need to leave it */
4696 AutoLock alock (this);
4697
4698 HRESULT hrc;
4699
4700 /*
4701 * Get the address and the Uuid, and call the pfnCreateProxyDevice roothub
4702 * method in EMT (using usbAttachCallback()).
4703 */
4704 Bstr BstrAddress;
4705 hrc = aHostDevice->COMGETTER (Address) (BstrAddress.asOutParam());
4706 ComAssertComRCRetRC (hrc);
4707
4708 Utf8Str Address (BstrAddress);
4709
4710 Guid Uuid;
4711 hrc = aHostDevice->COMGETTER (Id) (Uuid.asOutParam());
4712 ComAssertComRCRetRC (hrc);
4713
4714 BOOL fRemote = FALSE;
4715 hrc = aHostDevice->COMGETTER (Remote) (&fRemote);
4716 ComAssertComRCRetRC (hrc);
4717
4718 /* protect mpVM */
4719 AutoVMCaller autoVMCaller (this);
4720 CheckComRCReturnRC (autoVMCaller.rc());
4721
4722 LogFlowThisFunc (("Proxying USB device '%s' {%Vuuid}...\n",
4723 Address.raw(), Uuid.ptr()));
4724
4725 /* leave the lock before a VMR3* call (EMT will call us back)! */
4726 alock.leave();
4727
4728/**@todo just do everything here */
4729 PVMREQ pReq = NULL;
4730 int vrc = VMR3ReqCall (mpVM, &pReq, RT_INDEFINITE_WAIT,
4731 (PFNRT) usbAttachCallback, 6, this, aHostDevice, Uuid.ptr(), fRemote, Address.raw(), aMaskedIfs);
4732 if (VBOX_SUCCESS (vrc))
4733 vrc = pReq->iStatus;
4734 VMR3ReqFree (pReq);
4735
4736 /* restore the lock */
4737 alock.enter();
4738
4739 /* hrc is S_OK here */
4740
4741 if (VBOX_FAILURE (vrc))
4742 {
4743 LogWarningThisFunc (("Failed to create proxy device for '%s' {%Vuuid} (%Vrc)\n",
4744 Address.raw(), Uuid.ptr(), vrc));
4745
4746 switch (vrc)
4747 {
4748 case VERR_VUSB_NO_PORTS:
4749 hrc = setError (E_FAIL,
4750 tr ("Failed to attach the USB device. (No available ports on the USB controller)."));
4751 break;
4752 case VERR_VUSB_USBFS_PERMISSION:
4753 hrc = setError (E_FAIL,
4754 tr ("Not permitted to open the USB device, check usbfs options"));
4755 break;
4756 default:
4757 hrc = setError (E_FAIL,
4758 tr ("Failed to create a proxy device for the USB device. (Error: %Vrc)"), vrc);
4759 break;
4760 }
4761 }
4762
4763 return hrc;
4764}
4765
4766/**
4767 * USB device attach callback used by AttachUSBDevice().
4768 * Note that AttachUSBDevice() doesn't return until this callback is executed,
4769 * so we don't use AutoCaller and don't care about reference counters of
4770 * interface pointers passed in.
4771 *
4772 * @thread EMT
4773 * @note Locks the console object for writing.
4774 */
4775//static
4776DECLCALLBACK(int)
4777Console::usbAttachCallback (Console *that, IUSBDevice *aHostDevice, PCRTUUID aUuid, bool aRemote, const char *aAddress, ULONG aMaskedIfs)
4778{
4779 LogFlowFuncEnter();
4780 LogFlowFunc (("that={%p}\n", that));
4781
4782 AssertReturn (that && aUuid, VERR_INVALID_PARAMETER);
4783
4784 void *pvRemoteBackend = NULL;
4785 if (aRemote)
4786 {
4787 RemoteUSBDevice *pRemoteUSBDevice = static_cast <RemoteUSBDevice *> (aHostDevice);
4788 Guid guid (*aUuid);
4789
4790 pvRemoteBackend = that->consoleVRDPServer ()->USBBackendRequestPointer (pRemoteUSBDevice->clientId (), &guid);
4791 if (!pvRemoteBackend)
4792 return VERR_INVALID_PARAMETER; /* The clientId is invalid then. */
4793 }
4794
4795 USHORT portVersion = 1;
4796 HRESULT hrc = aHostDevice->COMGETTER(PortVersion)(&portVersion);
4797 AssertComRCReturn(hrc, VERR_GENERAL_FAILURE);
4798 Assert(portVersion == 1 || portVersion == 2);
4799
4800 int vrc = PDMR3USBCreateProxyDevice (that->mpVM, aUuid, aRemote, aAddress, pvRemoteBackend,
4801 portVersion == 1 ? VUSB_STDVER_11 : VUSB_STDVER_20, aMaskedIfs);
4802 if (VBOX_SUCCESS (vrc))
4803 {
4804 /* Create a OUSBDevice and add it to the device list */
4805 ComObjPtr <OUSBDevice> device;
4806 device.createObject();
4807 HRESULT hrc = device->init (aHostDevice);
4808 AssertComRC (hrc);
4809
4810 AutoLock alock (that);
4811 that->mUSBDevices.push_back (device);
4812 LogFlowFunc (("Attached device {%Vuuid}\n", device->id().raw()));
4813
4814 /* notify callbacks */
4815 that->onUSBDeviceStateChange (device, true /* aAttached */, NULL);
4816 }
4817
4818 LogFlowFunc (("vrc=%Vrc\n", vrc));
4819 LogFlowFuncLeave();
4820 return vrc;
4821}
4822
4823/**
4824 * Sends a request to VMM to detach the given host device. After this method
4825 * succeeds, the detached device will disappear from the mUSBDevices
4826 * collection.
4827 *
4828 * @param aIt Iterator pointing to the device to detach.
4829 *
4830 * @note Synchronously calls EMT.
4831 * @note Must be called from under this object's lock.
4832 */
4833HRESULT Console::detachUSBDevice (USBDeviceList::iterator &aIt)
4834{
4835 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
4836
4837 /* still want a lock object because we need to leave it */
4838 AutoLock alock (this);
4839
4840 /* protect mpVM */
4841 AutoVMCaller autoVMCaller (this);
4842 CheckComRCReturnRC (autoVMCaller.rc());
4843
4844 /* if the device is attached, then there must at least one USB hub. */
4845 AssertReturn (PDMR3USBHasHub (mpVM), E_FAIL);
4846
4847 LogFlowThisFunc (("Detaching USB proxy device {%Vuuid}...\n",
4848 (*aIt)->id().raw()));
4849
4850 /* leave the lock before a VMR3* call (EMT will call us back)! */
4851 alock.leave();
4852
4853 PVMREQ pReq;
4854/** @todo just do everything here */
4855 int vrc = VMR3ReqCall (mpVM, &pReq, RT_INDEFINITE_WAIT,
4856 (PFNRT) usbDetachCallback, 4,
4857 this, &aIt, (*aIt)->id().raw());
4858 if (VBOX_SUCCESS (vrc))
4859 vrc = pReq->iStatus;
4860 VMR3ReqFree (pReq);
4861
4862 ComAssertRCRet (vrc, E_FAIL);
4863
4864 return S_OK;
4865}
4866
4867/**
4868 * USB device detach callback used by DetachUSBDevice().
4869 * Note that DetachUSBDevice() doesn't return until this callback is executed,
4870 * so we don't use AutoCaller and don't care about reference counters of
4871 * interface pointers passed in.
4872 *
4873 * @thread EMT
4874 * @note Locks the console object for writing.
4875 */
4876//static
4877DECLCALLBACK(int)
4878Console::usbDetachCallback (Console *that, USBDeviceList::iterator *aIt, PCRTUUID aUuid)
4879{
4880 LogFlowFuncEnter();
4881 LogFlowFunc (("that={%p}\n", that));
4882
4883 AssertReturn (that && aUuid, VERR_INVALID_PARAMETER);
4884
4885 /*
4886 * If that was a remote device, release the backend pointer.
4887 * The pointer was requested in usbAttachCallback.
4888 */
4889 BOOL fRemote = FALSE;
4890
4891 HRESULT hrc2 = (**aIt)->COMGETTER (Remote) (&fRemote);
4892 ComAssertComRC (hrc2);
4893
4894 if (fRemote)
4895 {
4896 Guid guid (*aUuid);
4897 that->consoleVRDPServer ()->USBBackendReleasePointer (&guid);
4898 }
4899
4900 int vrc = PDMR3USBDetachDevice (that->mpVM, aUuid);
4901
4902 if (VBOX_SUCCESS (vrc))
4903 {
4904 AutoLock alock (that);
4905
4906 /* Remove the device from the collection */
4907 that->mUSBDevices.erase (*aIt);
4908 LogFlowFunc (("Detached device {%Vuuid}\n", (**aIt)->id().raw()));
4909
4910 /* notify callbacks */
4911 that->onUSBDeviceStateChange (**aIt, false /* aAttached */, NULL);
4912 }
4913
4914 LogFlowFunc (("vrc=%Vrc\n", vrc));
4915 LogFlowFuncLeave();
4916 return vrc;
4917}
4918
4919/**
4920 * Call the initialisation script for a dynamic TAP interface.
4921 *
4922 * The initialisation script should create a TAP interface, set it up and write its name to
4923 * standard output followed by a carriage return. Anything further written to standard
4924 * output will be ignored. If it returns a non-zero exit code, or does not write an
4925 * intelligable interface name to standard output, it will be treated as having failed.
4926 * For now, this method only works on Linux.
4927 *
4928 * @returns COM status code
4929 * @param tapDevice string to store the name of the tap device created to
4930 * @param tapSetupApplication the name of the setup script
4931 */
4932HRESULT Console::callTapSetupApplication(bool isStatic, RTFILE tapFD, Bstr &tapDevice,
4933 Bstr &tapSetupApplication)
4934{
4935 LogFlowThisFunc(("\n"));
4936#ifdef RT_OS_LINUX
4937 /* Command line to start the script with. */
4938 char szCommand[4096];
4939 /* Result code */
4940 int rc;
4941
4942 /* Get the script name. */
4943 Utf8Str tapSetupAppUtf8(tapSetupApplication), tapDeviceUtf8(tapDevice);
4944 RTStrPrintf(szCommand, sizeof(szCommand), "%s %d %s", tapSetupAppUtf8.raw(),
4945 isStatic ? tapFD : 0, isStatic ? tapDeviceUtf8.raw() : "");
4946 /*
4947 * Create the process and read its output.
4948 */
4949 Log2(("About to start the TAP setup script with the following command line: %s\n",
4950 szCommand));
4951 FILE *pfScriptHandle = popen(szCommand, "r");
4952 if (pfScriptHandle == 0)
4953 {
4954 int iErr = errno;
4955 LogRel(("Failed to start the TAP interface setup script %s, error text: %s\n",
4956 szCommand, strerror(iErr)));
4957 LogFlowThisFunc(("rc=E_FAIL\n"));
4958 return setError(E_FAIL, tr ("Failed to run the host networking set up command %s: %s"),
4959 szCommand, strerror(iErr));
4960 }
4961 /* If we are using a dynamic TAP interface, we need to get the interface name. */
4962 if (!isStatic)
4963 {
4964 /* Buffer to read the application output to. It doesn't have to be long, as we are only
4965 interested in the first few (normally 5 or 6) bytes. */
4966 char acBuffer[64];
4967 /* The length of the string returned by the application. We only accept strings of 63
4968 characters or less. */
4969 size_t cBufSize;
4970
4971 /* Read the name of the device from the application. */
4972 fgets(acBuffer, sizeof(acBuffer), pfScriptHandle);
4973 cBufSize = strlen(acBuffer);
4974 /* The script must return the name of the interface followed by a carriage return as the
4975 first line of its output. We need a null-terminated string. */
4976 if ((cBufSize < 2) || (acBuffer[cBufSize - 1] != '\n'))
4977 {
4978 pclose(pfScriptHandle);
4979 LogRel(("The TAP interface setup script did not return the name of a TAP device.\n"));
4980 LogFlowThisFunc(("rc=E_FAIL\n"));
4981 return setError(E_FAIL, tr ("The host networking set up command did not supply an interface name"));
4982 }
4983 /* Overwrite the terminating newline character. */
4984 acBuffer[cBufSize - 1] = 0;
4985 tapDevice = acBuffer;
4986 }
4987 rc = pclose(pfScriptHandle);
4988 if (!WIFEXITED(rc))
4989 {
4990 LogRel(("The TAP interface setup script terminated abnormally.\n"));
4991 LogFlowThisFunc(("rc=E_FAIL\n"));
4992 return setError(E_FAIL, tr ("The host networking set up command did not run correctly"));
4993 }
4994 if (WEXITSTATUS(rc) != 0)
4995 {
4996 LogRel(("The TAP interface setup script returned a non-zero exit code.\n"));
4997 LogFlowThisFunc(("rc=E_FAIL\n"));
4998 return setError(E_FAIL, tr ("The host networking set up command returned a non-zero exit code"));
4999 }
5000 LogFlowThisFunc(("rc=S_OK\n"));
5001 return S_OK;
5002#else /* RT_OS_LINUX not defined */
5003 LogFlowThisFunc(("rc=E_NOTIMPL\n"));
5004 return E_NOTIMPL; /* not yet supported */
5005#endif
5006}
5007
5008/**
5009 * Helper function to handle host interface device creation and attachment.
5010 *
5011 * @param networkAdapter the network adapter which attachment should be reset
5012 * @return COM status code
5013 *
5014 * @note The caller must lock this object for writing.
5015 */
5016HRESULT Console::attachToHostInterface(INetworkAdapter *networkAdapter)
5017{
5018 LogFlowThisFunc(("\n"));
5019 /* sanity check */
5020 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
5021
5022#ifdef DEBUG
5023 /* paranoia */
5024 NetworkAttachmentType_T attachment;
5025 networkAdapter->COMGETTER(AttachmentType)(&attachment);
5026 Assert(attachment == NetworkAttachmentType_HostInterfaceNetworkAttachment);
5027#endif /* DEBUG */
5028
5029 HRESULT rc = S_OK;
5030
5031#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
5032 ULONG slot = 0;
5033 rc = networkAdapter->COMGETTER(Slot)(&slot);
5034 AssertComRC(rc);
5035
5036 /*
5037 * Try get the FD.
5038 */
5039 LONG ltapFD;
5040 rc = networkAdapter->COMGETTER(TAPFileDescriptor)(&ltapFD);
5041 if (SUCCEEDED(rc))
5042 maTapFD[slot] = (RTFILE)ltapFD;
5043 else
5044 maTapFD[slot] = NIL_RTFILE;
5045
5046 /*
5047 * Are we supposed to use an existing TAP interface?
5048 */
5049 if (maTapFD[slot] != NIL_RTFILE)
5050 {
5051 /* nothing to do */
5052 Assert(ltapFD >= 0);
5053 Assert((LONG)maTapFD[slot] == ltapFD);
5054 rc = S_OK;
5055 }
5056 else
5057#endif /* VBOX_WITH_UNIXY_TAP_NETWORKING */
5058 {
5059 /*
5060 * Allocate a host interface device
5061 */
5062#ifdef RT_OS_WINDOWS
5063 /* nothing to do */
5064 int rcVBox = VINF_SUCCESS;
5065#elif defined(RT_OS_LINUX)
5066 int rcVBox = RTFileOpen(&maTapFD[slot], "/dev/net/tun",
5067 RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE | RTFILE_O_INHERIT);
5068 if (VBOX_SUCCESS(rcVBox))
5069 {
5070 /*
5071 * Set/obtain the tap interface.
5072 */
5073 bool isStatic = false;
5074 struct ifreq IfReq;
5075 memset(&IfReq, 0, sizeof(IfReq));
5076 /* The name of the TAP interface we are using and the TAP setup script resp. */
5077 Bstr tapDeviceName, tapSetupApplication;
5078 rc = networkAdapter->COMGETTER(HostInterface)(tapDeviceName.asOutParam());
5079 if (FAILED(rc))
5080 {
5081 tapDeviceName.setNull(); /* Is this necessary? */
5082 }
5083 else if (!tapDeviceName.isEmpty())
5084 {
5085 isStatic = true;
5086 /* If we are using a static TAP device then try to open it. */
5087 Utf8Str str(tapDeviceName);
5088 if (str.length() <= sizeof(IfReq.ifr_name))
5089 strcpy(IfReq.ifr_name, str.raw());
5090 else
5091 memcpy(IfReq.ifr_name, str.raw(), sizeof(IfReq.ifr_name) - 1); /** @todo bitch about names which are too long... */
5092 IfReq.ifr_flags = IFF_TAP | IFF_NO_PI;
5093 rcVBox = ioctl(maTapFD[slot], TUNSETIFF, &IfReq);
5094 if (rcVBox != 0)
5095 {
5096 LogRel(("Failed to open the host network interface %ls\n", tapDeviceName.raw()));
5097 rc = setError(E_FAIL, tr ("Failed to open the host network interface %ls"),
5098 tapDeviceName.raw());
5099 }
5100 }
5101 if (SUCCEEDED(rc))
5102 {
5103 networkAdapter->COMGETTER(TAPSetupApplication)(tapSetupApplication.asOutParam());
5104 if (tapSetupApplication.isEmpty())
5105 {
5106 if (tapDeviceName.isEmpty())
5107 {
5108 LogRel(("No setup application was supplied for the TAP interface.\n"));
5109 rc = setError(E_FAIL, tr ("No setup application was supplied for the host networking interface"));
5110 }
5111 }
5112 else
5113 {
5114 rc = callTapSetupApplication(isStatic, maTapFD[slot], tapDeviceName,
5115 tapSetupApplication);
5116 }
5117 }
5118 if (SUCCEEDED(rc))
5119 {
5120 if (!isStatic)
5121 {
5122 Utf8Str str(tapDeviceName);
5123 if (str.length() <= sizeof(IfReq.ifr_name))
5124 strcpy(IfReq.ifr_name, str.raw());
5125 else
5126 memcpy(IfReq.ifr_name, str.raw(), sizeof(IfReq.ifr_name) - 1); /** @todo bitch about names which are too long... */
5127 IfReq.ifr_flags = IFF_TAP | IFF_NO_PI;
5128 rcVBox = ioctl(maTapFD[slot], TUNSETIFF, &IfReq);
5129 if (rcVBox != 0)
5130 {
5131 LogRel(("Failed to open the host network interface %ls returned by the setup script", tapDeviceName.raw()));
5132 rc = setError(E_FAIL, tr ("Failed to open the host network interface %ls returned by the setup script"), tapDeviceName.raw());
5133 }
5134 }
5135 if (SUCCEEDED(rc))
5136 {
5137 /*
5138 * Make it pollable.
5139 */
5140 if (fcntl(maTapFD[slot], F_SETFL, O_NONBLOCK) != -1)
5141 {
5142 Log(("attachToHostInterface: %RTfile %ls\n", maTapFD[slot], tapDeviceName.raw()));
5143
5144 /*
5145 * Here is the right place to communicate the TAP file descriptor and
5146 * the host interface name to the server if/when it becomes really
5147 * necessary.
5148 */
5149 maTAPDeviceName[slot] = tapDeviceName;
5150 rcVBox = VINF_SUCCESS;
5151 }
5152 else
5153 {
5154 int iErr = errno;
5155
5156 LogRel(("Configuration error: Failed to configure /dev/net/tun non blocking. Error: %s\n", strerror(iErr)));
5157 rcVBox = VERR_HOSTIF_BLOCKING;
5158 rc = setError(E_FAIL, tr ("could not set up the host networking device for non blocking access: %s"),
5159 strerror(errno));
5160 }
5161 }
5162 }
5163 }
5164 else
5165 {
5166 LogRel(("Configuration error: Failed to open /dev/net/tun rc=%Vrc\n", rcVBox));
5167 switch (rcVBox)
5168 {
5169 case VERR_ACCESS_DENIED:
5170 /* will be handled by our caller */
5171 rc = rcVBox;
5172 break;
5173 default:
5174 rc = setError(E_FAIL, tr ("Could not set up the host networking device: %Vrc"), rcVBox);
5175 break;
5176 }
5177 }
5178#elif defined(RT_OS_DARWIN)
5179 /** @todo Implement tap networking for Darwin. */
5180 int rcVBox = VERR_NOT_IMPLEMENTED;
5181#elif defined(RT_OS_FREEBSD)
5182 /** @todo Implement tap networking for FreeBSD. */
5183 int rcVBox = VERR_NOT_IMPLEMENTED;
5184#elif defined(RT_OS_OS2)
5185 /** @todo Implement tap networking for OS/2. */
5186 int rcVBox = VERR_NOT_IMPLEMENTED;
5187#elif defined(RT_OS_SOLARIS)
5188 /* nothing to do */
5189 int rcVBox = VINF_SUCCESS;
5190#elif defined(VBOX_WITH_UNIXY_TAP_NETWORKING)
5191# error "PORTME: Implement OS specific TAP interface open/creation."
5192#else
5193# error "Unknown host OS"
5194#endif
5195 /* in case of failure, cleanup. */
5196 if (VBOX_FAILURE(rcVBox) && SUCCEEDED(rc))
5197 {
5198 LogRel(("General failure attaching to host interface\n"));
5199 rc = setError(E_FAIL, tr ("General failure attaching to host interface"));
5200 }
5201 }
5202 LogFlowThisFunc(("rc=%d\n", rc));
5203 return rc;
5204}
5205
5206/**
5207 * Helper function to handle detachment from a host interface
5208 *
5209 * @param networkAdapter the network adapter which attachment should be reset
5210 * @return COM status code
5211 *
5212 * @note The caller must lock this object for writing.
5213 */
5214HRESULT Console::detachFromHostInterface(INetworkAdapter *networkAdapter)
5215{
5216 /* sanity check */
5217 LogFlowThisFunc(("\n"));
5218 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
5219
5220 HRESULT rc = S_OK;
5221#ifdef DEBUG
5222 /* paranoia */
5223 NetworkAttachmentType_T attachment;
5224 networkAdapter->COMGETTER(AttachmentType)(&attachment);
5225 Assert(attachment == NetworkAttachmentType_HostInterfaceNetworkAttachment);
5226#endif /* DEBUG */
5227
5228#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
5229
5230 ULONG slot = 0;
5231 rc = networkAdapter->COMGETTER(Slot)(&slot);
5232 AssertComRC(rc);
5233
5234 /* is there an open TAP device? */
5235 if (maTapFD[slot] != NIL_RTFILE)
5236 {
5237 /*
5238 * Close the file handle.
5239 */
5240 Bstr tapDeviceName, tapTerminateApplication;
5241 bool isStatic = true;
5242 rc = networkAdapter->COMGETTER(HostInterface)(tapDeviceName.asOutParam());
5243 if (FAILED(rc) || tapDeviceName.isEmpty())
5244 {
5245 /* If the name is empty, this is a dynamic TAP device, so close it now,
5246 so that the termination script can remove the interface. Otherwise we still
5247 need the FD to pass to the termination script. */
5248 isStatic = false;
5249 int rcVBox = RTFileClose(maTapFD[slot]);
5250 AssertRC(rcVBox);
5251 maTapFD[slot] = NIL_RTFILE;
5252 }
5253 /*
5254 * Execute the termination command.
5255 */
5256 networkAdapter->COMGETTER(TAPTerminateApplication)(tapTerminateApplication.asOutParam());
5257 if (tapTerminateApplication)
5258 {
5259 /* Get the program name. */
5260 Utf8Str tapTermAppUtf8(tapTerminateApplication);
5261
5262 /* Build the command line. */
5263 char szCommand[4096];
5264 RTStrPrintf(szCommand, sizeof(szCommand), "%s %d %s", tapTermAppUtf8.raw(),
5265 isStatic ? maTapFD[slot] : 0, maTAPDeviceName[slot].raw());
5266
5267 /*
5268 * Create the process and wait for it to complete.
5269 */
5270 Log(("Calling the termination command: %s\n", szCommand));
5271 int rcCommand = system(szCommand);
5272 if (rcCommand == -1)
5273 {
5274 LogRel(("Failed to execute the clean up script for the TAP interface"));
5275 rc = setError(E_FAIL, tr ("Failed to execute the clean up script for the TAP interface"));
5276 }
5277 if (!WIFEXITED(rc))
5278 {
5279 LogRel(("The TAP interface clean up script terminated abnormally.\n"));
5280 rc = setError(E_FAIL, tr ("The TAP interface clean up script terminated abnormally"));
5281 }
5282 if (WEXITSTATUS(rc) != 0)
5283 {
5284 LogRel(("The TAP interface clean up script returned a non-zero exit code.\n"));
5285 rc = setError(E_FAIL, tr ("The TAP interface clean up script returned a non-zero exit code"));
5286 }
5287 }
5288
5289 if (isStatic)
5290 {
5291 /* If we are using a static TAP device, we close it now, after having called the
5292 termination script. */
5293 int rcVBox = RTFileClose(maTapFD[slot]);
5294 AssertRC(rcVBox);
5295 }
5296 /* the TAP device name and handle are no longer valid */
5297 maTapFD[slot] = NIL_RTFILE;
5298 maTAPDeviceName[slot] = "";
5299 }
5300#endif
5301 LogFlowThisFunc(("returning %d\n", rc));
5302 return rc;
5303}
5304
5305
5306/**
5307 * Called at power down to terminate host interface networking.
5308 *
5309 * @note The caller must lock this object for writing.
5310 */
5311HRESULT Console::powerDownHostInterfaces()
5312{
5313 LogFlowThisFunc (("\n"));
5314
5315 /* sanity check */
5316 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
5317
5318 /*
5319 * host interface termination handling
5320 */
5321 HRESULT rc;
5322 for (ULONG slot = 0; slot < SchemaDefs::NetworkAdapterCount; slot ++)
5323 {
5324 ComPtr<INetworkAdapter> networkAdapter;
5325 rc = mMachine->GetNetworkAdapter(slot, networkAdapter.asOutParam());
5326 CheckComRCBreakRC (rc);
5327
5328 BOOL enabled = FALSE;
5329 networkAdapter->COMGETTER(Enabled) (&enabled);
5330 if (!enabled)
5331 continue;
5332
5333 NetworkAttachmentType_T attachment;
5334 networkAdapter->COMGETTER(AttachmentType)(&attachment);
5335 if (attachment == NetworkAttachmentType_HostInterfaceNetworkAttachment)
5336 {
5337 HRESULT rc2 = detachFromHostInterface(networkAdapter);
5338 if (FAILED(rc2) && SUCCEEDED(rc))
5339 rc = rc2;
5340 }
5341 }
5342
5343 return rc;
5344}
5345
5346
5347/**
5348 * Process callback handler for VMR3Load and VMR3Save.
5349 *
5350 * @param pVM The VM handle.
5351 * @param uPercent Completetion precentage (0-100).
5352 * @param pvUser Pointer to the VMProgressTask structure.
5353 * @return VINF_SUCCESS.
5354 */
5355/*static*/ DECLCALLBACK (int)
5356Console::stateProgressCallback (PVM pVM, unsigned uPercent, void *pvUser)
5357{
5358 VMProgressTask *task = static_cast <VMProgressTask *> (pvUser);
5359 AssertReturn (task, VERR_INVALID_PARAMETER);
5360
5361 /* update the progress object */
5362 if (task->mProgress)
5363 task->mProgress->notifyProgress (uPercent);
5364
5365 return VINF_SUCCESS;
5366}
5367
5368/**
5369 * VM error callback function. Called by the various VM components.
5370 *
5371 * @param pVM The VM handle. Can be NULL if an error occurred before
5372 * successfully creating a VM.
5373 * @param pvUser Pointer to the VMProgressTask structure.
5374 * @param rc VBox status code.
5375 * @param pszFormat The error message.
5376 * @thread EMT.
5377 */
5378/* static */ DECLCALLBACK (void)
5379Console::setVMErrorCallback (PVM pVM, void *pvUser, int rc, RT_SRC_POS_DECL,
5380 const char *pszFormat, va_list args)
5381{
5382 VMProgressTask *task = static_cast <VMProgressTask *> (pvUser);
5383 AssertReturnVoid (task);
5384
5385 /* we ignore RT_SRC_POS_DECL arguments to avoid confusion of end-users */
5386 va_list va2;
5387 va_copy(va2, args); /* Have to make a copy here or GCC will break. */
5388 HRESULT hrc = setError (E_FAIL, tr ("%N.\n"
5389 "VBox status code: %d (%Vrc)"),
5390 tr (pszFormat), &va2,
5391 rc, rc);
5392 task->mProgress->notifyComplete (hrc);
5393 va_end(va2);
5394}
5395
5396/**
5397 * VM runtime error callback function.
5398 * See VMSetRuntimeError for the detailed description of parameters.
5399 *
5400 * @param pVM The VM handle.
5401 * @param pvUser The user argument.
5402 * @param fFatal Whether it is a fatal error or not.
5403 * @param pszErrorID Error ID string.
5404 * @param pszFormat Error message format string.
5405 * @param args Error message arguments.
5406 * @thread EMT.
5407 */
5408/* static */ DECLCALLBACK(void)
5409Console::setVMRuntimeErrorCallback (PVM pVM, void *pvUser, bool fFatal,
5410 const char *pszErrorID,
5411 const char *pszFormat, va_list args)
5412{
5413 LogFlowFuncEnter();
5414
5415 Console *that = static_cast <Console *> (pvUser);
5416 AssertReturnVoid (that);
5417
5418 Utf8Str message = Utf8StrFmtVA (pszFormat, args);
5419
5420 LogRel (("Console: VM runtime error: fatal=%RTbool, "
5421 "errorID=%s message=\"%s\"\n",
5422 fFatal, pszErrorID, message.raw()));
5423
5424 that->onRuntimeError (BOOL (fFatal), Bstr (pszErrorID), Bstr (message));
5425
5426 LogFlowFuncLeave();
5427}
5428
5429/**
5430 * Captures USB devices that match filters of the VM.
5431 * Called at VM startup.
5432 *
5433 * @param pVM The VM handle.
5434 *
5435 * @note The caller must lock this object for writing.
5436 */
5437HRESULT Console::captureUSBDevices (PVM pVM)
5438{
5439 LogFlowThisFunc (("\n"));
5440
5441 /* sanity check */
5442 ComAssertRet (isLockedOnCurrentThread(), E_FAIL);
5443
5444 /* If the machine has an USB controller, ask the USB proxy service to
5445 * capture devices */
5446 PPDMIBASE pBase;
5447 int vrc = PDMR3QueryLun (pVM, "usb-ohci", 0, 0, &pBase);
5448 if (VBOX_SUCCESS (vrc))
5449 {
5450 /* leave the lock before calling Host in VBoxSVC since Host may call
5451 * us back from under its lock (e.g. onUSBDeviceAttach()) which would
5452 * produce an inter-process dead-lock otherwise. */
5453 AutoLock alock (this);
5454 alock.leave();
5455
5456 HRESULT hrc = mControl->AutoCaptureUSBDevices();
5457 ComAssertComRCRetRC (hrc);
5458 }
5459 else if ( vrc == VERR_PDM_DEVICE_NOT_FOUND
5460 || vrc == VERR_PDM_DEVICE_INSTANCE_NOT_FOUND)
5461 vrc = VINF_SUCCESS;
5462 else
5463 AssertRC (vrc);
5464
5465 return VBOX_SUCCESS (vrc) ? S_OK : E_FAIL;
5466}
5467
5468
5469/**
5470 * Detach all USB device which are attached to the VM for the
5471 * purpose of clean up and such like.
5472 *
5473 * @note The caller must lock this object for writing.
5474 */
5475void Console::detachAllUSBDevices (bool aDone)
5476{
5477 LogFlowThisFunc (("\n"));
5478
5479 /* sanity check */
5480 AssertReturnVoid (isLockedOnCurrentThread());
5481
5482 mUSBDevices.clear();
5483
5484 /* leave the lock before calling Host in VBoxSVC since Host may call
5485 * us back from under its lock (e.g. onUSBDeviceAttach()) which would
5486 * produce an inter-process dead-lock otherwise. */
5487 AutoLock alock (this);
5488 alock.leave();
5489
5490 mControl->DetachAllUSBDevices (aDone);
5491}
5492
5493/**
5494 * @note Locks this object for writing.
5495 */
5496void Console::processRemoteUSBDevices (uint32_t u32ClientId, VRDPUSBDEVICEDESC *pDevList, uint32_t cbDevList)
5497{
5498 LogFlowThisFuncEnter();
5499 LogFlowThisFunc (("u32ClientId = %d, pDevList=%p, cbDevList = %d\n", u32ClientId, pDevList, cbDevList));
5500
5501 AutoCaller autoCaller (this);
5502 if (!autoCaller.isOk())
5503 {
5504 /* Console has been already uninitialized, deny request */
5505 AssertMsgFailed (("Temporary assertion to prove that it happens, "
5506 "please report to dmik\n"));
5507 LogFlowThisFunc (("Console is already uninitialized\n"));
5508 LogFlowThisFuncLeave();
5509 return;
5510 }
5511
5512 AutoLock alock (this);
5513
5514 /*
5515 * Mark all existing remote USB devices as dirty.
5516 */
5517 RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
5518 while (it != mRemoteUSBDevices.end())
5519 {
5520 (*it)->dirty (true);
5521 ++ it;
5522 }
5523
5524 /*
5525 * Process the pDevList and add devices those are not already in the mRemoteUSBDevices list.
5526 */
5527 /** @todo (sunlover) REMOTE_USB Strict validation of the pDevList. */
5528 VRDPUSBDEVICEDESC *e = pDevList;
5529
5530 /* The cbDevList condition must be checked first, because the function can
5531 * receive pDevList = NULL and cbDevList = 0 on client disconnect.
5532 */
5533 while (cbDevList >= 2 && e->oNext)
5534 {
5535 LogFlowThisFunc (("vendor %04X, product %04X, name = %s\n",
5536 e->idVendor, e->idProduct,
5537 e->oProduct? (char *)e + e->oProduct: ""));
5538
5539 bool fNewDevice = true;
5540
5541 it = mRemoteUSBDevices.begin();
5542 while (it != mRemoteUSBDevices.end())
5543 {
5544 if ((*it)->devId () == e->id
5545 && (*it)->clientId () == u32ClientId)
5546 {
5547 /* The device is already in the list. */
5548 (*it)->dirty (false);
5549 fNewDevice = false;
5550 break;
5551 }
5552
5553 ++ it;
5554 }
5555
5556 if (fNewDevice)
5557 {
5558 LogRel(("Remote USB: ++++ Vendor %04X. Product %04X. Name = [%s].\n",
5559 e->idVendor, e->idProduct, e->oProduct? (char *)e + e->oProduct: ""
5560 ));
5561
5562 /* Create the device object and add the new device to list. */
5563 ComObjPtr <RemoteUSBDevice> device;
5564 device.createObject();
5565 device->init (u32ClientId, e);
5566
5567 mRemoteUSBDevices.push_back (device);
5568
5569 /* Check if the device is ok for current USB filters. */
5570 BOOL fMatched = FALSE;
5571 ULONG fMaskedIfs = 0;
5572
5573 HRESULT hrc = mControl->RunUSBDeviceFilters(device, &fMatched, &fMaskedIfs);
5574
5575 AssertComRC (hrc);
5576
5577 LogFlowThisFunc (("USB filters return %d %#x\n", fMatched, fMaskedIfs));
5578
5579 if (fMatched)
5580 {
5581 hrc = onUSBDeviceAttach (device, NULL, fMaskedIfs);
5582
5583 /// @todo (r=dmik) warning reporting subsystem
5584
5585 if (hrc == S_OK)
5586 {
5587 LogFlowThisFunc (("Device attached\n"));
5588 device->captured (true);
5589 }
5590 }
5591 }
5592
5593 if (cbDevList < e->oNext)
5594 {
5595 LogWarningThisFunc (("cbDevList %d > oNext %d\n",
5596 cbDevList, e->oNext));
5597 break;
5598 }
5599
5600 cbDevList -= e->oNext;
5601
5602 e = (VRDPUSBDEVICEDESC *)((uint8_t *)e + e->oNext);
5603 }
5604
5605 /*
5606 * Remove dirty devices, that is those which are not reported by the server anymore.
5607 */
5608 for (;;)
5609 {
5610 ComObjPtr <RemoteUSBDevice> device;
5611
5612 RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
5613 while (it != mRemoteUSBDevices.end())
5614 {
5615 if ((*it)->dirty ())
5616 {
5617 device = *it;
5618 break;
5619 }
5620
5621 ++ it;
5622 }
5623
5624 if (!device)
5625 {
5626 break;
5627 }
5628
5629 USHORT vendorId = 0;
5630 device->COMGETTER(VendorId) (&vendorId);
5631
5632 USHORT productId = 0;
5633 device->COMGETTER(ProductId) (&productId);
5634
5635 Bstr product;
5636 device->COMGETTER(Product) (product.asOutParam());
5637
5638 LogRel(("Remote USB: ---- Vendor %04X. Product %04X. Name = [%ls].\n",
5639 vendorId, productId, product.raw ()
5640 ));
5641
5642 /* Detach the device from VM. */
5643 if (device->captured ())
5644 {
5645 Guid uuid;
5646 device->COMGETTER (Id) (uuid.asOutParam());
5647 onUSBDeviceDetach (uuid, NULL);
5648 }
5649
5650 /* And remove it from the list. */
5651 mRemoteUSBDevices.erase (it);
5652 }
5653
5654 LogFlowThisFuncLeave();
5655}
5656
5657
5658
5659/**
5660 * Thread function which starts the VM (also from saved state) and
5661 * track progress.
5662 *
5663 * @param Thread The thread id.
5664 * @param pvUser Pointer to a VMPowerUpTask structure.
5665 * @return VINF_SUCCESS (ignored).
5666 *
5667 * @note Locks the Console object for writing.
5668 */
5669/*static*/
5670DECLCALLBACK (int) Console::powerUpThread (RTTHREAD Thread, void *pvUser)
5671{
5672 LogFlowFuncEnter();
5673
5674 std::auto_ptr <VMPowerUpTask> task (static_cast <VMPowerUpTask *> (pvUser));
5675 AssertReturn (task.get(), VERR_INVALID_PARAMETER);
5676
5677 AssertReturn (!task->mConsole.isNull(), VERR_INVALID_PARAMETER);
5678 AssertReturn (!task->mProgress.isNull(), VERR_INVALID_PARAMETER);
5679
5680#if defined(RT_OS_WINDOWS)
5681 {
5682 /* initialize COM */
5683 HRESULT hrc = CoInitializeEx (NULL,
5684 COINIT_MULTITHREADED | COINIT_DISABLE_OLE1DDE |
5685 COINIT_SPEED_OVER_MEMORY);
5686 LogFlowFunc (("CoInitializeEx()=%08X\n", hrc));
5687 }
5688#endif
5689
5690 HRESULT hrc = S_OK;
5691 int vrc = VINF_SUCCESS;
5692
5693 /* Set up a build identifier so that it can be seen from core dumps what
5694 * exact build was used to produce the core. */
5695 static char saBuildID[40];
5696 RTStrPrintf(saBuildID, sizeof(saBuildID), "%s%s%s%s VirtualBox %s r%d %s%s%s%s",
5697 "BU", "IL", "DI", "D", VBOX_VERSION_STRING, VBoxSVNRev (), "BU", "IL", "DI", "D");
5698
5699 ComObjPtr <Console> console = task->mConsole;
5700
5701 /* Note: no need to use addCaller() because VMPowerUpTask does that */
5702
5703 AutoLock alock (console);
5704
5705 /* sanity */
5706 Assert (console->mpVM == NULL);
5707
5708 do
5709 {
5710 /*
5711 * Initialize the release logging facility. In case something
5712 * goes wrong, there will be no release logging. Maybe in the future
5713 * we can add some logic to use different file names in this case.
5714 * Note that the logic must be in sync with Machine::DeleteSettings().
5715 */
5716
5717 Bstr logFolder;
5718 hrc = console->mMachine->COMGETTER(LogFolder) (logFolder.asOutParam());
5719 CheckComRCBreakRC (hrc);
5720
5721 Utf8Str logDir = logFolder;
5722
5723 /* make sure the Logs folder exists */
5724 Assert (!logDir.isEmpty());
5725 if (!RTDirExists (logDir))
5726 RTDirCreateFullPath (logDir, 0777);
5727
5728 Utf8Str logFile = Utf8StrFmt ("%s%cVBox.log",
5729 logDir.raw(), RTPATH_DELIMITER);
5730 Utf8Str pngFile = Utf8StrFmt ("%s%cVBox.png",
5731 logDir.raw(), RTPATH_DELIMITER);
5732
5733 /*
5734 * Age the old log files
5735 * Rename .(n-1) to .(n), .(n-2) to .(n-1), ..., and the last log file to .1
5736 * Overwrite target files in case they exist.
5737 */
5738 ComPtr<IVirtualBox> virtualBox;
5739 console->mMachine->COMGETTER(Parent)(virtualBox.asOutParam());
5740 ComPtr <ISystemProperties> systemProperties;
5741 virtualBox->COMGETTER(SystemProperties)(systemProperties.asOutParam());
5742 ULONG uLogHistoryCount = 3;
5743 systemProperties->COMGETTER(LogHistoryCount)(&uLogHistoryCount);
5744 if (uLogHistoryCount)
5745 {
5746 for (int i = uLogHistoryCount-1; i >= 0; i--)
5747 {
5748 Utf8Str *files[] = { &logFile, &pngFile };
5749 Utf8Str oldName, newName;
5750
5751 for (unsigned int j = 0; j < ELEMENTS (files); ++ j)
5752 {
5753 if (i > 0)
5754 oldName = Utf8StrFmt ("%s.%d", files [j]->raw(), i);
5755 else
5756 oldName = *files [j];
5757 newName = Utf8StrFmt ("%s.%d", files [j]->raw(), i + 1);
5758 /* If the old file doesn't exist, delete the new file (if it
5759 * exists) to provide correct rotation even if the sequence is
5760 * broken */
5761 if (RTFileRename (oldName, newName, RTFILEMOVE_FLAGS_REPLACE) ==
5762 VERR_FILE_NOT_FOUND)
5763 RTFileDelete (newName);
5764 }
5765 }
5766 }
5767
5768 PRTLOGGER loggerRelease;
5769 static const char * const s_apszGroups[] = VBOX_LOGGROUP_NAMES;
5770 RTUINT fFlags = RTLOGFLAGS_PREFIX_TIME_PROG;
5771#if defined (RT_OS_WINDOWS) || defined (RT_OS_OS2)
5772 fFlags |= RTLOGFLAGS_USECRLF;
5773#endif
5774 char szError[RTPATH_MAX + 128] = "";
5775 vrc = RTLogCreateEx(&loggerRelease, fFlags, "all",
5776 "VBOX_RELEASE_LOG", ELEMENTS(s_apszGroups), s_apszGroups,
5777 RTLOGDEST_FILE, szError, sizeof(szError), logFile.raw());
5778 if (VBOX_SUCCESS(vrc))
5779 {
5780 /* some introductory information */
5781 RTTIMESPEC timeSpec;
5782 char nowUct[64];
5783 RTTimeSpecToString(RTTimeNow(&timeSpec), nowUct, sizeof(nowUct));
5784 RTLogRelLogger(loggerRelease, 0, ~0U,
5785 "VirtualBox %s r%d %s (%s %s) release log\n"
5786 "Log opened %s\n",
5787 VBOX_VERSION_STRING, VBoxSVNRev (), VBOX_BUILD_TARGET,
5788 __DATE__, __TIME__, nowUct);
5789
5790 /* register this logger as the release logger */
5791 RTLogRelSetDefaultInstance(loggerRelease);
5792 }
5793 else
5794 {
5795 hrc = setError (E_FAIL,
5796 tr ("Failed to open release log (%s, %Vrc)"), szError, vrc);
5797 break;
5798 }
5799
5800#ifdef VBOX_VRDP
5801 if (VBOX_SUCCESS (vrc))
5802 {
5803 /* Create the VRDP server. In case of headless operation, this will
5804 * also create the framebuffer, required at VM creation.
5805 */
5806 ConsoleVRDPServer *server = console->consoleVRDPServer();
5807 Assert (server);
5808 /// @todo (dmik)
5809 // does VRDP server call Console from the other thread?
5810 // Not sure, so leave the lock just in case
5811 alock.leave();
5812 vrc = server->Launch();
5813 alock.enter();
5814 if (VBOX_FAILURE (vrc))
5815 {
5816 Utf8Str errMsg;
5817 switch (vrc)
5818 {
5819 case VERR_NET_ADDRESS_IN_USE:
5820 {
5821 ULONG port = 0;
5822 console->mVRDPServer->COMGETTER(Port) (&port);
5823 errMsg = Utf8StrFmt (tr ("VRDP server port %d is already in use"),
5824 port);
5825 break;
5826 }
5827 default:
5828 errMsg = Utf8StrFmt (tr ("Failed to launch VRDP server (%Vrc)"),
5829 vrc);
5830 }
5831 LogRel (("Failed to launch VRDP server (%Vrc), error message: '%s'\n",
5832 vrc, errMsg.raw()));
5833 hrc = setError (E_FAIL, errMsg);
5834 break;
5835 }
5836 }
5837#endif /* VBOX_VRDP */
5838
5839 /*
5840 * Create the VM
5841 */
5842 PVM pVM;
5843 /*
5844 * leave the lock since EMT will call Console. It's safe because
5845 * mMachineState is either Starting or Restoring state here.
5846 */
5847 alock.leave();
5848
5849 vrc = VMR3Create (task->mSetVMErrorCallback, task.get(),
5850 task->mConfigConstructor, static_cast <Console *> (console),
5851 &pVM);
5852
5853 alock.enter();
5854
5855#ifdef VBOX_VRDP
5856 {
5857 /* Enable client connections to the server. */
5858 ConsoleVRDPServer *server = console->consoleVRDPServer();
5859#ifdef VRDP_NO_COM
5860 server->EnableConnections ();
5861#else
5862 server->SetCallback ();
5863#endif /* VRDP_NO_COM */
5864 }
5865#endif /* VBOX_VRDP */
5866
5867 if (VBOX_SUCCESS (vrc))
5868 {
5869 do
5870 {
5871 /*
5872 * Register our load/save state file handlers
5873 */
5874 vrc = SSMR3RegisterExternal (pVM,
5875 sSSMConsoleUnit, 0 /* iInstance */, sSSMConsoleVer,
5876 0 /* cbGuess */,
5877 NULL, saveStateFileExec, NULL, NULL, loadStateFileExec, NULL,
5878 static_cast <Console *> (console));
5879 AssertRC (vrc);
5880 if (VBOX_FAILURE (vrc))
5881 break;
5882
5883 /*
5884 * Synchronize debugger settings
5885 */
5886 MachineDebugger *machineDebugger = console->getMachineDebugger();
5887 if (machineDebugger)
5888 {
5889 machineDebugger->flushQueuedSettings();
5890 }
5891
5892 /*
5893 * Shared Folders
5894 */
5895 if (console->getVMMDev()->isShFlActive())
5896 {
5897 /// @todo (dmik)
5898 // does the code below call Console from the other thread?
5899 // Not sure, so leave the lock just in case
5900 alock.leave();
5901
5902 for (SharedFolderDataMap::const_iterator
5903 it = task->mSharedFolders.begin();
5904 it != task->mSharedFolders.end();
5905 ++ it)
5906 {
5907 hrc = console->createSharedFolder ((*it).first, (*it).second);
5908 CheckComRCBreakRC (hrc);
5909 }
5910
5911 /* enter the lock again */
5912 alock.enter();
5913
5914 CheckComRCBreakRC (hrc);
5915 }
5916
5917 /*
5918 * Capture USB devices.
5919 */
5920 hrc = console->captureUSBDevices (pVM);
5921 CheckComRCBreakRC (hrc);
5922
5923 /* leave the lock before a lengthy operation */
5924 alock.leave();
5925
5926 /* Load saved state? */
5927 if (!!task->mSavedStateFile)
5928 {
5929 LogFlowFunc (("Restoring saved state from '%s'...\n",
5930 task->mSavedStateFile.raw()));
5931
5932 vrc = VMR3Load (pVM, task->mSavedStateFile,
5933 Console::stateProgressCallback,
5934 static_cast <VMProgressTask *> (task.get()));
5935
5936 /* Start/Resume the VM execution */
5937 if (VBOX_SUCCESS (vrc))
5938 {
5939 vrc = VMR3Resume (pVM);
5940 AssertRC (vrc);
5941 }
5942
5943 /* Power off in case we failed loading or resuming the VM */
5944 if (VBOX_FAILURE (vrc))
5945 {
5946 int vrc2 = VMR3PowerOff (pVM);
5947 AssertRC (vrc2);
5948 }
5949 }
5950 else
5951 {
5952 /* Power on the VM (i.e. start executing) */
5953 vrc = VMR3PowerOn(pVM);
5954 AssertRC (vrc);
5955 }
5956
5957 /* enter the lock again */
5958 alock.enter();
5959 }
5960 while (0);
5961
5962 /* On failure, destroy the VM */
5963 if (FAILED (hrc) || VBOX_FAILURE (vrc))
5964 {
5965 /* preserve existing error info */
5966 ErrorInfoKeeper eik;
5967
5968 /*
5969 * powerDown() will call VMR3Destroy() and do all necessary
5970 * cleanup (VRDP, USB devices)
5971 */
5972 HRESULT hrc2 = console->powerDown();
5973 AssertComRC (hrc2);
5974 }
5975 }
5976 else
5977 {
5978 /*
5979 * If VMR3Create() failed it has released the VM memory.
5980 */
5981 console->mpVM = NULL;
5982 }
5983
5984 if (SUCCEEDED (hrc) && VBOX_FAILURE (vrc))
5985 {
5986 /*
5987 * If VMR3Create() or one of the other calls in this function fail,
5988 * an appropriate error message has been already set. However since
5989 * that happens via a callback, the status code in this function is
5990 * not updated.
5991 */
5992 if (!task->mProgress->completed())
5993 {
5994 /*
5995 * If the COM error info is not yet set but we've got a
5996 * failure, convert the VBox status code into a meaningful
5997 * error message. This becomes unused once all the sources of
5998 * errors set the appropriate error message themselves.
5999 * Note that we don't use VMSetError() below because pVM is
6000 * either invalid or NULL here.
6001 */
6002 AssertMsgFailed (("Missing error message during powerup for "
6003 "status code %Vrc\n", vrc));
6004 hrc = setError (E_FAIL,
6005 tr ("Failed to start VM execution (%Vrc)"), vrc);
6006 }
6007 else
6008 hrc = task->mProgress->resultCode();
6009
6010 Assert (FAILED (hrc));
6011 break;
6012 }
6013 }
6014 while (0);
6015
6016 if (console->mMachineState == MachineState_Starting ||
6017 console->mMachineState == MachineState_Restoring)
6018 {
6019 /*
6020 * We are still in the Starting/Restoring state. This means one of:
6021 * 1) we failed before VMR3Create() was called;
6022 * 2) VMR3Create() failed.
6023 * In both cases, there is no need to call powerDown(), but we still
6024 * need to go back to the PoweredOff/Saved state. Reuse
6025 * vmstateChangeCallback() for that purpose.
6026 */
6027
6028 /* preserve existing error info */
6029 ErrorInfoKeeper eik;
6030
6031 Assert (console->mpVM == NULL);
6032 vmstateChangeCallback (NULL, VMSTATE_TERMINATED, VMSTATE_CREATING,
6033 console);
6034 }
6035
6036 /*
6037 * Evaluate the final result.
6038 * Note that the appropriate mMachineState value is already set by
6039 * vmstateChangeCallback() in all cases.
6040 */
6041
6042 /* leave the lock, don't need it any more */
6043 alock.leave();
6044
6045 if (SUCCEEDED (hrc))
6046 {
6047 /* Notify the progress object of the success */
6048 task->mProgress->notifyComplete (S_OK);
6049 }
6050 else
6051 {
6052 if (!task->mProgress->completed())
6053 {
6054 /* The progress object will fetch the current error info. This
6055 * gets the errors signalled by using setError(). The ones
6056 * signalled via VMSetError() immediately notify the progress
6057 * object that the operation is completed. */
6058 task->mProgress->notifyComplete (hrc);
6059 }
6060
6061 LogRel (("Power up failed (vrc=%Vrc, hrc=0x%08X)\n", vrc, hrc));
6062 }
6063
6064#if defined(RT_OS_WINDOWS)
6065 /* uninitialize COM */
6066 CoUninitialize();
6067#endif
6068
6069 LogFlowFuncLeave();
6070
6071 return VINF_SUCCESS;
6072}
6073
6074
6075/**
6076 * Reconfigures a VDI.
6077 *
6078 * @param pVM The VM handle.
6079 * @param hda The harddisk attachment.
6080 * @param phrc Where to store com error - only valid if we return VERR_GENERAL_FAILURE.
6081 * @return VBox status code.
6082 */
6083static DECLCALLBACK(int) reconfigureVDI(PVM pVM, IHardDiskAttachment *hda, HRESULT *phrc)
6084{
6085 LogFlowFunc (("pVM=%p hda=%p phrc=%p\n", pVM, hda, phrc));
6086
6087 int rc;
6088 HRESULT hrc;
6089 char *psz = NULL;
6090 BSTR str = NULL;
6091 *phrc = S_OK;
6092#define STR_CONV() do { rc = RTStrUcs2ToUtf8(&psz, str); RC_CHECK(); } while (0)
6093#define STR_FREE() do { if (str) { SysFreeString(str); str = NULL; } if (psz) { RTStrFree(psz); psz = NULL; } } while (0)
6094#define RC_CHECK() do { if (VBOX_FAILURE(rc)) { AssertMsgFailed(("rc=%Vrc\n", rc)); STR_FREE(); return rc; } } while (0)
6095#define H() do { if (FAILED(hrc)) { AssertMsgFailed(("hrc=%#x\n", hrc)); STR_FREE(); *phrc = hrc; return VERR_GENERAL_FAILURE; } } while (0)
6096
6097 /*
6098 * Figure out which IDE device this is.
6099 */
6100 ComPtr<IHardDisk> hardDisk;
6101 hrc = hda->COMGETTER(HardDisk)(hardDisk.asOutParam()); H();
6102 DiskControllerType_T enmCtl;
6103 hrc = hda->COMGETTER(Controller)(&enmCtl); H();
6104 LONG lDev;
6105 hrc = hda->COMGETTER(DeviceNumber)(&lDev); H();
6106
6107 int i;
6108 switch (enmCtl)
6109 {
6110 case DiskControllerType_IDE0Controller:
6111 i = 0;
6112 break;
6113 case DiskControllerType_IDE1Controller:
6114 i = 2;
6115 break;
6116 default:
6117 AssertMsgFailed(("invalid disk controller type: %d\n", enmCtl));
6118 return VERR_GENERAL_FAILURE;
6119 }
6120
6121 if (lDev < 0 || lDev >= 2)
6122 {
6123 AssertMsgFailed(("invalid controller device number: %d\n", lDev));
6124 return VERR_GENERAL_FAILURE;
6125 }
6126
6127 i = i + lDev;
6128
6129 /*
6130 * Is there an existing LUN? If not create it.
6131 * We ASSUME that this will NEVER collide with the DVD.
6132 */
6133 PCFGMNODE pCfg;
6134 PCFGMNODE pLunL1 = CFGMR3GetChildF(CFGMR3GetRoot(pVM), "Devices/piix3ide/0/LUN#%d/AttachedDriver/", i);
6135 if (!pLunL1)
6136 {
6137 PCFGMNODE pInst = CFGMR3GetChild(CFGMR3GetRoot(pVM), "Devices/piix3ide/0/");
6138 AssertReturn(pInst, VERR_INTERNAL_ERROR);
6139
6140 PCFGMNODE pLunL0;
6141 rc = CFGMR3InsertNodeF(pInst, &pLunL0, "LUN#%d", i); RC_CHECK();
6142 rc = CFGMR3InsertString(pLunL0, "Driver", "Block"); RC_CHECK();
6143 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
6144 rc = CFGMR3InsertString(pCfg, "Type", "HardDisk"); RC_CHECK();
6145 rc = CFGMR3InsertInteger(pCfg, "Mountable", 0); RC_CHECK();
6146
6147 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
6148 rc = CFGMR3InsertString(pLunL1, "Driver", "VBoxHDD"); RC_CHECK();
6149 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
6150 }
6151 else
6152 {
6153#ifdef VBOX_STRICT
6154 char *pszDriver;
6155 rc = CFGMR3QueryStringAlloc(pLunL1, "Driver", &pszDriver); RC_CHECK();
6156 Assert(!strcmp(pszDriver, "VBoxHDD"));
6157 MMR3HeapFree(pszDriver);
6158#endif
6159
6160 /*
6161 * Check if things has changed.
6162 */
6163 pCfg = CFGMR3GetChild(pLunL1, "Config");
6164 AssertReturn(pCfg, VERR_INTERNAL_ERROR);
6165
6166 /* the image */
6167 /// @todo (dmik) we temporarily use the location property to
6168 // determine the image file name. This is subject to change
6169 // when iSCSI disks are here (we should either query a
6170 // storage-specific interface from IHardDisk, or "standardize"
6171 // the location property)
6172 hrc = hardDisk->COMGETTER(Location)(&str); H();
6173 STR_CONV();
6174 char *pszPath;
6175 rc = CFGMR3QueryStringAlloc(pCfg, "Path", &pszPath); RC_CHECK();
6176 if (!strcmp(psz, pszPath))
6177 {
6178 /* parent images. */
6179 ComPtr<IHardDisk> parentHardDisk = hardDisk;
6180 for (PCFGMNODE pParent = pCfg;;)
6181 {
6182 MMR3HeapFree(pszPath);
6183 pszPath = NULL;
6184 STR_FREE();
6185
6186 /* get parent */
6187 ComPtr<IHardDisk> curHardDisk;
6188 hrc = parentHardDisk->COMGETTER(Parent)(curHardDisk.asOutParam()); H();
6189 PCFGMNODE pCur;
6190 pCur = CFGMR3GetChild(pParent, "Parent");
6191 if (!pCur && !curHardDisk)
6192 {
6193 /* no change */
6194 LogFlowFunc (("No change!\n"));
6195 return VINF_SUCCESS;
6196 }
6197 if (!pCur || !curHardDisk)
6198 break;
6199
6200 /* compare paths. */
6201 /// @todo (dmik) we temporarily use the location property to
6202 // determine the image file name. This is subject to change
6203 // when iSCSI disks are here (we should either query a
6204 // storage-specific interface from IHardDisk, or "standardize"
6205 // the location property)
6206 hrc = curHardDisk->COMGETTER(Location)(&str); H();
6207 STR_CONV();
6208 rc = CFGMR3QueryStringAlloc(pCfg, "Path", &pszPath); RC_CHECK();
6209 if (strcmp(psz, pszPath))
6210 break;
6211
6212 /* next */
6213 pParent = pCur;
6214 parentHardDisk = curHardDisk;
6215 }
6216
6217 }
6218 else
6219 LogFlowFunc (("LUN#%d: old leaf image '%s'\n", i, pszPath));
6220
6221 MMR3HeapFree(pszPath);
6222 STR_FREE();
6223
6224 /*
6225 * Detach the driver and replace the config node.
6226 */
6227 rc = PDMR3DeviceDetach(pVM, "piix3ide", 0, i); RC_CHECK();
6228 CFGMR3RemoveNode(pCfg);
6229 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
6230 }
6231
6232 /*
6233 * Create the driver configuration.
6234 */
6235 /// @todo (dmik) we temporarily use the location property to
6236 // determine the image file name. This is subject to change
6237 // when iSCSI disks are here (we should either query a
6238 // storage-specific interface from IHardDisk, or "standardize"
6239 // the location property)
6240 hrc = hardDisk->COMGETTER(Location)(&str); H();
6241 STR_CONV();
6242 LogFlowFunc (("LUN#%d: leaf image '%s'\n", i, psz));
6243 rc = CFGMR3InsertString(pCfg, "Path", psz); RC_CHECK();
6244 STR_FREE();
6245 /* Create an inversed tree of parents. */
6246 ComPtr<IHardDisk> parentHardDisk = hardDisk;
6247 for (PCFGMNODE pParent = pCfg;;)
6248 {
6249 ComPtr<IHardDisk> curHardDisk;
6250 hrc = parentHardDisk->COMGETTER(Parent)(curHardDisk.asOutParam()); H();
6251 if (!curHardDisk)
6252 break;
6253
6254 PCFGMNODE pCur;
6255 rc = CFGMR3InsertNode(pParent, "Parent", &pCur); RC_CHECK();
6256 /// @todo (dmik) we temporarily use the location property to
6257 // determine the image file name. This is subject to change
6258 // when iSCSI disks are here (we should either query a
6259 // storage-specific interface from IHardDisk, or "standardize"
6260 // the location property)
6261 hrc = curHardDisk->COMGETTER(Location)(&str); H();
6262 STR_CONV();
6263 rc = CFGMR3InsertString(pCur, "Path", psz); RC_CHECK();
6264 STR_FREE();
6265
6266 /* next */
6267 pParent = pCur;
6268 parentHardDisk = curHardDisk;
6269 }
6270
6271 /*
6272 * Attach the new driver.
6273 */
6274 rc = PDMR3DeviceAttach(pVM, "piix3ide", 0, i, NULL); RC_CHECK();
6275
6276 LogFlowFunc (("Returns success\n"));
6277 return rc;
6278}
6279
6280
6281/**
6282 * Thread for executing the saved state operation.
6283 *
6284 * @param Thread The thread handle.
6285 * @param pvUser Pointer to a VMSaveTask structure.
6286 * @return VINF_SUCCESS (ignored).
6287 *
6288 * @note Locks the Console object for writing.
6289 */
6290/*static*/
6291DECLCALLBACK (int) Console::saveStateThread (RTTHREAD Thread, void *pvUser)
6292{
6293 LogFlowFuncEnter();
6294
6295 std::auto_ptr <VMSaveTask> task (static_cast <VMSaveTask *> (pvUser));
6296 AssertReturn (task.get(), VERR_INVALID_PARAMETER);
6297
6298 Assert (!task->mSavedStateFile.isNull());
6299 Assert (!task->mProgress.isNull());
6300
6301 const ComObjPtr <Console> &that = task->mConsole;
6302
6303 /*
6304 * Note: no need to use addCaller() to protect Console or addVMCaller() to
6305 * protect mpVM because VMSaveTask does that
6306 */
6307
6308 Utf8Str errMsg;
6309 HRESULT rc = S_OK;
6310
6311 if (task->mIsSnapshot)
6312 {
6313 Assert (!task->mServerProgress.isNull());
6314 LogFlowFunc (("Waiting until the server creates differencing VDIs...\n"));
6315
6316 rc = task->mServerProgress->WaitForCompletion (-1);
6317 if (SUCCEEDED (rc))
6318 {
6319 HRESULT result = S_OK;
6320 rc = task->mServerProgress->COMGETTER(ResultCode) (&result);
6321 if (SUCCEEDED (rc))
6322 rc = result;
6323 }
6324 }
6325
6326 if (SUCCEEDED (rc))
6327 {
6328 LogFlowFunc (("Saving the state to '%s'...\n", task->mSavedStateFile.raw()));
6329
6330 int vrc = VMR3Save (that->mpVM, task->mSavedStateFile,
6331 Console::stateProgressCallback,
6332 static_cast <VMProgressTask *> (task.get()));
6333 if (VBOX_FAILURE (vrc))
6334 {
6335 errMsg = Utf8StrFmt (
6336 Console::tr ("Failed to save the machine state to '%s' (%Vrc)"),
6337 task->mSavedStateFile.raw(), vrc);
6338 rc = E_FAIL;
6339 }
6340 }
6341
6342 /* lock the console sonce we're going to access it */
6343 AutoLock thatLock (that);
6344
6345 if (SUCCEEDED (rc))
6346 {
6347 if (task->mIsSnapshot)
6348 do
6349 {
6350 LogFlowFunc (("Reattaching new differencing VDIs...\n"));
6351
6352 ComPtr <IHardDiskAttachmentCollection> hdaColl;
6353 rc = that->mMachine->COMGETTER(HardDiskAttachments) (hdaColl.asOutParam());
6354 if (FAILED (rc))
6355 break;
6356 ComPtr <IHardDiskAttachmentEnumerator> hdaEn;
6357 rc = hdaColl->Enumerate (hdaEn.asOutParam());
6358 if (FAILED (rc))
6359 break;
6360 BOOL more = FALSE;
6361 while (SUCCEEDED (rc = hdaEn->HasMore (&more)) && more)
6362 {
6363 ComPtr <IHardDiskAttachment> hda;
6364 rc = hdaEn->GetNext (hda.asOutParam());
6365 if (FAILED (rc))
6366 break;
6367
6368 PVMREQ pReq;
6369 IHardDiskAttachment *pHda = hda;
6370 /*
6371 * don't leave the lock since reconfigureVDI isn't going to
6372 * access Console.
6373 */
6374 int vrc = VMR3ReqCall (that->mpVM, &pReq, RT_INDEFINITE_WAIT,
6375 (PFNRT)reconfigureVDI, 3, that->mpVM,
6376 pHda, &rc);
6377 if (VBOX_SUCCESS (rc))
6378 rc = pReq->iStatus;
6379 VMR3ReqFree (pReq);
6380 if (FAILED (rc))
6381 break;
6382 if (VBOX_FAILURE (vrc))
6383 {
6384 errMsg = Utf8StrFmt (Console::tr ("%Vrc"), vrc);
6385 rc = E_FAIL;
6386 break;
6387 }
6388 }
6389 }
6390 while (0);
6391 }
6392
6393 /* finalize the procedure regardless of the result */
6394 if (task->mIsSnapshot)
6395 {
6396 /*
6397 * finalize the requested snapshot object.
6398 * This will reset the machine state to the state it had right
6399 * before calling mControl->BeginTakingSnapshot().
6400 */
6401 that->mControl->EndTakingSnapshot (SUCCEEDED (rc));
6402 }
6403 else
6404 {
6405 /*
6406 * finalize the requested save state procedure.
6407 * In case of success, the server will set the machine state to Saved;
6408 * in case of failure it will reset the it to the state it had right
6409 * before calling mControl->BeginSavingState().
6410 */
6411 that->mControl->EndSavingState (SUCCEEDED (rc));
6412 }
6413
6414 /* synchronize the state with the server */
6415 if (task->mIsSnapshot || FAILED (rc))
6416 {
6417 if (task->mLastMachineState == MachineState_Running)
6418 {
6419 /* restore the paused state if appropriate */
6420 that->setMachineStateLocally (MachineState_Paused);
6421 /* restore the running state if appropriate */
6422 that->Resume();
6423 }
6424 else
6425 that->setMachineStateLocally (task->mLastMachineState);
6426 }
6427 else
6428 {
6429 /*
6430 * The machine has been successfully saved, so power it down
6431 * (vmstateChangeCallback() will set state to Saved on success).
6432 * Note: we release the task's VM caller, otherwise it will
6433 * deadlock.
6434 */
6435 task->releaseVMCaller();
6436
6437 rc = that->powerDown();
6438 }
6439
6440 /* notify the progress object about operation completion */
6441 if (SUCCEEDED (rc))
6442 task->mProgress->notifyComplete (S_OK);
6443 else
6444 {
6445 if (!errMsg.isNull())
6446 task->mProgress->notifyComplete (rc,
6447 COM_IIDOF(IConsole), Console::getComponentName(), errMsg);
6448 else
6449 task->mProgress->notifyComplete (rc);
6450 }
6451
6452 LogFlowFuncLeave();
6453 return VINF_SUCCESS;
6454}
6455
6456/**
6457 * Thread for powering down the Console.
6458 *
6459 * @param Thread The thread handle.
6460 * @param pvUser Pointer to the VMTask structure.
6461 * @return VINF_SUCCESS (ignored).
6462 *
6463 * @note Locks the Console object for writing.
6464 */
6465/*static*/
6466DECLCALLBACK (int) Console::powerDownThread (RTTHREAD Thread, void *pvUser)
6467{
6468 LogFlowFuncEnter();
6469
6470 std::auto_ptr <VMTask> task (static_cast <VMTask *> (pvUser));
6471 AssertReturn (task.get(), VERR_INVALID_PARAMETER);
6472
6473 AssertReturn (task->isOk(), VERR_GENERAL_FAILURE);
6474
6475 const ComObjPtr <Console> &that = task->mConsole;
6476
6477 /*
6478 * Note: no need to use addCaller() to protect Console
6479 * because VMTask does that
6480 */
6481
6482 /* release VM caller to let powerDown() proceed */
6483 task->releaseVMCaller();
6484
6485 HRESULT rc = that->powerDown();
6486 AssertComRC (rc);
6487
6488 LogFlowFuncLeave();
6489 return VINF_SUCCESS;
6490}
6491
6492/**
6493 * The Main status driver instance data.
6494 */
6495typedef struct DRVMAINSTATUS
6496{
6497 /** The LED connectors. */
6498 PDMILEDCONNECTORS ILedConnectors;
6499 /** Pointer to the LED ports interface above us. */
6500 PPDMILEDPORTS pLedPorts;
6501 /** Pointer to the array of LED pointers. */
6502 PPDMLED *papLeds;
6503 /** The unit number corresponding to the first entry in the LED array. */
6504 RTUINT iFirstLUN;
6505 /** The unit number corresponding to the last entry in the LED array.
6506 * (The size of the LED array is iLastLUN - iFirstLUN + 1.) */
6507 RTUINT iLastLUN;
6508} DRVMAINSTATUS, *PDRVMAINSTATUS;
6509
6510
6511/**
6512 * Notification about a unit which have been changed.
6513 *
6514 * The driver must discard any pointers to data owned by
6515 * the unit and requery it.
6516 *
6517 * @param pInterface Pointer to the interface structure containing the called function pointer.
6518 * @param iLUN The unit number.
6519 */
6520DECLCALLBACK(void) Console::drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN)
6521{
6522 PDRVMAINSTATUS pData = (PDRVMAINSTATUS)(void *)pInterface;
6523 if (iLUN >= pData->iFirstLUN && iLUN <= pData->iLastLUN)
6524 {
6525 PPDMLED pLed;
6526 int rc = pData->pLedPorts->pfnQueryStatusLed(pData->pLedPorts, iLUN, &pLed);
6527 if (VBOX_FAILURE(rc))
6528 pLed = NULL;
6529 ASMAtomicXchgPtr((void * volatile *)&pData->papLeds[iLUN - pData->iFirstLUN], pLed);
6530 Log(("drvStatus_UnitChanged: iLUN=%d pLed=%p\n", iLUN, pLed));
6531 }
6532}
6533
6534
6535/**
6536 * Queries an interface to the driver.
6537 *
6538 * @returns Pointer to interface.
6539 * @returns NULL if the interface was not supported by the driver.
6540 * @param pInterface Pointer to this interface structure.
6541 * @param enmInterface The requested interface identification.
6542 */
6543DECLCALLBACK(void *) Console::drvStatus_QueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface)
6544{
6545 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
6546 PDRVMAINSTATUS pDrv = PDMINS2DATA(pDrvIns, PDRVMAINSTATUS);
6547 switch (enmInterface)
6548 {
6549 case PDMINTERFACE_BASE:
6550 return &pDrvIns->IBase;
6551 case PDMINTERFACE_LED_CONNECTORS:
6552 return &pDrv->ILedConnectors;
6553 default:
6554 return NULL;
6555 }
6556}
6557
6558
6559/**
6560 * Destruct a status driver instance.
6561 *
6562 * @returns VBox status.
6563 * @param pDrvIns The driver instance data.
6564 */
6565DECLCALLBACK(void) Console::drvStatus_Destruct(PPDMDRVINS pDrvIns)
6566{
6567 PDRVMAINSTATUS pData = PDMINS2DATA(pDrvIns, PDRVMAINSTATUS);
6568 LogFlowFunc(("iInstance=%d\n", pDrvIns->iInstance));
6569 if (pData->papLeds)
6570 {
6571 unsigned iLed = pData->iLastLUN - pData->iFirstLUN + 1;
6572 while (iLed-- > 0)
6573 ASMAtomicXchgPtr((void * volatile *)&pData->papLeds[iLed], NULL);
6574 }
6575}
6576
6577
6578/**
6579 * Construct a status driver instance.
6580 *
6581 * @returns VBox status.
6582 * @param pDrvIns The driver instance data.
6583 * If the registration structure is needed, pDrvIns->pDrvReg points to it.
6584 * @param pCfgHandle Configuration node handle for the driver. Use this to obtain the configuration
6585 * of the driver instance. It's also found in pDrvIns->pCfgHandle, but like
6586 * iInstance it's expected to be used a bit in this function.
6587 */
6588DECLCALLBACK(int) Console::drvStatus_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle)
6589{
6590 PDRVMAINSTATUS pData = PDMINS2DATA(pDrvIns, PDRVMAINSTATUS);
6591 LogFlowFunc(("iInstance=%d\n", pDrvIns->iInstance));
6592
6593 /*
6594 * Validate configuration.
6595 */
6596 if (!CFGMR3AreValuesValid(pCfgHandle, "papLeds\0First\0Last\0"))
6597 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
6598 PPDMIBASE pBaseIgnore;
6599 int rc = pDrvIns->pDrvHlp->pfnAttach(pDrvIns, &pBaseIgnore);
6600 if (rc != VERR_PDM_NO_ATTACHED_DRIVER)
6601 {
6602 AssertMsgFailed(("Configuration error: Not possible to attach anything to this driver!\n"));
6603 return VERR_PDM_DRVINS_NO_ATTACH;
6604 }
6605
6606 /*
6607 * Data.
6608 */
6609 pDrvIns->IBase.pfnQueryInterface = Console::drvStatus_QueryInterface;
6610 pData->ILedConnectors.pfnUnitChanged = Console::drvStatus_UnitChanged;
6611
6612 /*
6613 * Read config.
6614 */
6615 rc = CFGMR3QueryPtr(pCfgHandle, "papLeds", (void **)&pData->papLeds);
6616 if (VBOX_FAILURE(rc))
6617 {
6618 AssertMsgFailed(("Configuration error: Failed to query the \"papLeds\" value! rc=%Vrc\n", rc));
6619 return rc;
6620 }
6621
6622 rc = CFGMR3QueryU32(pCfgHandle, "First", &pData->iFirstLUN);
6623 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
6624 pData->iFirstLUN = 0;
6625 else if (VBOX_FAILURE(rc))
6626 {
6627 AssertMsgFailed(("Configuration error: Failed to query the \"First\" value! rc=%Vrc\n", rc));
6628 return rc;
6629 }
6630
6631 rc = CFGMR3QueryU32(pCfgHandle, "Last", &pData->iLastLUN);
6632 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
6633 pData->iLastLUN = 0;
6634 else if (VBOX_FAILURE(rc))
6635 {
6636 AssertMsgFailed(("Configuration error: Failed to query the \"Last\" value! rc=%Vrc\n", rc));
6637 return rc;
6638 }
6639 if (pData->iFirstLUN > pData->iLastLUN)
6640 {
6641 AssertMsgFailed(("Configuration error: Invalid unit range %u-%u\n", pData->iFirstLUN, pData->iLastLUN));
6642 return VERR_GENERAL_FAILURE;
6643 }
6644
6645 /*
6646 * Get the ILedPorts interface of the above driver/device and
6647 * query the LEDs we want.
6648 */
6649 pData->pLedPorts = (PPDMILEDPORTS)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_LED_PORTS);
6650 if (!pData->pLedPorts)
6651 {
6652 AssertMsgFailed(("Configuration error: No led ports interface above!\n"));
6653 return VERR_PDM_MISSING_INTERFACE_ABOVE;
6654 }
6655
6656 for (unsigned i = pData->iFirstLUN; i <= pData->iLastLUN; i++)
6657 Console::drvStatus_UnitChanged(&pData->ILedConnectors, i);
6658
6659 return VINF_SUCCESS;
6660}
6661
6662
6663/**
6664 * Keyboard driver registration record.
6665 */
6666const PDMDRVREG Console::DrvStatusReg =
6667{
6668 /* u32Version */
6669 PDM_DRVREG_VERSION,
6670 /* szDriverName */
6671 "MainStatus",
6672 /* pszDescription */
6673 "Main status driver (Main as in the API).",
6674 /* fFlags */
6675 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
6676 /* fClass. */
6677 PDM_DRVREG_CLASS_STATUS,
6678 /* cMaxInstances */
6679 ~0,
6680 /* cbInstance */
6681 sizeof(DRVMAINSTATUS),
6682 /* pfnConstruct */
6683 Console::drvStatus_Construct,
6684 /* pfnDestruct */
6685 Console::drvStatus_Destruct,
6686 /* pfnIOCtl */
6687 NULL,
6688 /* pfnPowerOn */
6689 NULL,
6690 /* pfnReset */
6691 NULL,
6692 /* pfnSuspend */
6693 NULL,
6694 /* pfnResume */
6695 NULL,
6696 /* pfnDetach */
6697 NULL
6698};
6699
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