VirtualBox

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

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

Main: Implemented sending essential notifications (such as the current mouse shape and state) to a callback registered during the VM runtime (defect #1817).

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

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