VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/ConsoleImpl.cpp@ 70772

Last change on this file since 70772 was 70766, checked in by vboxsync, 6 years ago

Main,FE/VBoxManage: Allow changing the serial port attachment type during runtime

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 358.4 KB
Line 
1/* $Id: ConsoleImpl.cpp 70766 2018-01-28 20:53:14Z vboxsync $ */
2/** @file
3 * VBox Console COM Class implementation
4 */
5
6/*
7 * Copyright (C) 2005-2018 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#define LOG_GROUP LOG_GROUP_MAIN_CONSOLE
19#include "LoggingNew.h"
20
21/** @todo Move the TAP mess back into the driver! */
22#if defined(RT_OS_WINDOWS)
23#elif defined(RT_OS_LINUX)
24# include <errno.h>
25# include <sys/ioctl.h>
26# include <sys/poll.h>
27# include <sys/fcntl.h>
28# include <sys/types.h>
29# include <sys/wait.h>
30# include <net/if.h>
31# include <linux/if_tun.h>
32# include <stdio.h>
33# include <stdlib.h>
34# include <string.h>
35#elif defined(RT_OS_FREEBSD)
36# include <errno.h>
37# include <sys/ioctl.h>
38# include <sys/poll.h>
39# include <sys/fcntl.h>
40# include <sys/types.h>
41# include <sys/wait.h>
42# include <stdio.h>
43# include <stdlib.h>
44# include <string.h>
45#elif defined(RT_OS_SOLARIS)
46# include <iprt/coredumper.h>
47#endif
48
49#include "ConsoleImpl.h"
50
51#include "Global.h"
52#include "VirtualBoxErrorInfoImpl.h"
53#include "GuestImpl.h"
54#include "KeyboardImpl.h"
55#include "MouseImpl.h"
56#include "DisplayImpl.h"
57#include "MachineDebuggerImpl.h"
58#include "USBDeviceImpl.h"
59#include "RemoteUSBDeviceImpl.h"
60#include "SharedFolderImpl.h"
61#ifdef VBOX_WITH_AUDIO_VRDE
62# include "DrvAudioVRDE.h"
63#endif
64#ifdef VBOX_WITH_AUDIO_VIDEOREC
65# include "DrvAudioVideoRec.h"
66#endif
67#include "Nvram.h"
68#ifdef VBOX_WITH_USB_CARDREADER
69# include "UsbCardReader.h"
70#endif
71#include "ProgressImpl.h"
72#include "ConsoleVRDPServer.h"
73#include "VMMDev.h"
74#ifdef VBOX_WITH_EXTPACK
75# include "ExtPackManagerImpl.h"
76#endif
77#include "BusAssignmentManager.h"
78#include "PCIDeviceAttachmentImpl.h"
79#include "EmulatedUSBImpl.h"
80
81#include "VBoxEvents.h"
82#include "AutoCaller.h"
83#include "ThreadTask.h"
84
85#ifdef VBOX_WITH_VIDEOREC
86# include "VideoRec.h"
87#endif
88
89#include <VBox/com/array.h>
90#include "VBox/com/ErrorInfo.h"
91#include <VBox/com/listeners.h>
92
93#include <iprt/asm.h>
94#include <iprt/buildconfig.h>
95#include <iprt/cpp/utils.h>
96#include <iprt/dir.h>
97#include <iprt/file.h>
98#include <iprt/ldr.h>
99#include <iprt/path.h>
100#include <iprt/process.h>
101#include <iprt/string.h>
102#include <iprt/system.h>
103#include <iprt/base64.h>
104#include <iprt/memsafer.h>
105
106#include <VBox/vmm/vmapi.h>
107#include <VBox/vmm/vmm.h>
108#include <VBox/vmm/pdmapi.h>
109#include <VBox/vmm/pdmaudioifs.h>
110#include <VBox/vmm/pdmasynccompletion.h>
111#include <VBox/vmm/pdmnetifs.h>
112#include <VBox/vmm/pdmstorageifs.h>
113#ifdef VBOX_WITH_USB
114# include <VBox/vmm/pdmusb.h>
115#endif
116#ifdef VBOX_WITH_NETSHAPER
117# include <VBox/vmm/pdmnetshaper.h>
118#endif /* VBOX_WITH_NETSHAPER */
119#include <VBox/vmm/mm.h>
120#include <VBox/vmm/ftm.h>
121#include <VBox/vmm/ssm.h>
122#include <VBox/err.h>
123#include <VBox/param.h>
124#include <VBox/vusb.h>
125
126#include <VBox/VMMDev.h>
127
128#include <VBox/HostServices/VBoxClipboardSvc.h>
129#include <VBox/HostServices/DragAndDropSvc.h>
130#ifdef VBOX_WITH_GUEST_PROPS
131# include <VBox/HostServices/GuestPropertySvc.h>
132# include <VBox/com/array.h>
133#endif
134
135#ifdef VBOX_OPENSSL_FIPS
136# include <openssl/crypto.h>
137#endif
138
139#include <set>
140#include <algorithm>
141#include <memory> // for auto_ptr
142#include <vector>
143#include <exception>// std::exception
144
145// VMTask and friends
146////////////////////////////////////////////////////////////////////////////////
147
148/**
149 * Task structure for asynchronous VM operations.
150 *
151 * Once created, the task structure adds itself as a Console caller. This means:
152 *
153 * 1. The user must check for #rc() before using the created structure
154 * (e.g. passing it as a thread function argument). If #rc() returns a
155 * failure, the Console object may not be used by the task.
156 * 2. On successful initialization, the structure keeps the Console caller
157 * until destruction (to ensure Console remains in the Ready state and won't
158 * be accidentally uninitialized). Forgetting to delete the created task
159 * will lead to Console::uninit() stuck waiting for releasing all added
160 * callers.
161 *
162 * If \a aUsesVMPtr parameter is true, the task structure will also add itself
163 * as a Console::mpUVM caller with the same meaning as above. See
164 * Console::addVMCaller() for more info.
165 */
166class VMTask: public ThreadTask
167{
168public:
169 VMTask(Console *aConsole,
170 Progress *aProgress,
171 const ComPtr<IProgress> &aServerProgress,
172 bool aUsesVMPtr)
173 : ThreadTask("GenericVMTask"),
174 mConsole(aConsole),
175 mConsoleCaller(aConsole),
176 mProgress(aProgress),
177 mServerProgress(aServerProgress),
178 mRC(E_FAIL),
179 mpSafeVMPtr(NULL)
180 {
181 AssertReturnVoid(aConsole);
182 mRC = mConsoleCaller.rc();
183 if (FAILED(mRC))
184 return;
185 if (aUsesVMPtr)
186 {
187 mpSafeVMPtr = new Console::SafeVMPtr(aConsole);
188 if (!mpSafeVMPtr->isOk())
189 mRC = mpSafeVMPtr->rc();
190 }
191 }
192
193 virtual ~VMTask()
194 {
195 releaseVMCaller();
196 }
197
198 HRESULT rc() const { return mRC; }
199 bool isOk() const { return SUCCEEDED(rc()); }
200
201 /** Releases the VM caller before destruction. Not normally necessary. */
202 void releaseVMCaller()
203 {
204 if (mpSafeVMPtr)
205 {
206 delete mpSafeVMPtr;
207 mpSafeVMPtr = NULL;
208 }
209 }
210
211 const ComObjPtr<Console> mConsole;
212 AutoCaller mConsoleCaller;
213 const ComObjPtr<Progress> mProgress;
214 Utf8Str mErrorMsg;
215 const ComPtr<IProgress> mServerProgress;
216
217private:
218 HRESULT mRC;
219 Console::SafeVMPtr *mpSafeVMPtr;
220};
221
222
223class VMPowerUpTask : public VMTask
224{
225public:
226 VMPowerUpTask(Console *aConsole,
227 Progress *aProgress)
228 : VMTask(aConsole, aProgress, NULL /* aServerProgress */,
229 false /* aUsesVMPtr */),
230 mConfigConstructor(NULL),
231 mStartPaused(false),
232 mTeleporterEnabled(FALSE),
233 mEnmFaultToleranceState(FaultToleranceState_Inactive)
234 {
235 m_strTaskName = "VMPwrUp";
236 }
237
238 PFNCFGMCONSTRUCTOR mConfigConstructor;
239 Utf8Str mSavedStateFile;
240 Console::SharedFolderDataMap mSharedFolders;
241 bool mStartPaused;
242 BOOL mTeleporterEnabled;
243 FaultToleranceState_T mEnmFaultToleranceState;
244
245 /* array of progress objects for hard disk reset operations */
246 typedef std::list<ComPtr<IProgress> > ProgressList;
247 ProgressList hardDiskProgresses;
248
249 void handler()
250 {
251 Console::i_powerUpThreadTask(this);
252 }
253
254};
255
256class VMPowerDownTask : public VMTask
257{
258public:
259 VMPowerDownTask(Console *aConsole,
260 const ComPtr<IProgress> &aServerProgress)
261 : VMTask(aConsole, NULL /* aProgress */, aServerProgress,
262 true /* aUsesVMPtr */)
263 {
264 m_strTaskName = "VMPwrDwn";
265 }
266
267 void handler()
268 {
269 Console::i_powerDownThreadTask(this);
270 }
271};
272
273// Handler for global events
274////////////////////////////////////////////////////////////////////////////////
275inline static const char *networkAdapterTypeToName(NetworkAdapterType_T adapterType);
276
277class VmEventListener {
278public:
279 VmEventListener()
280 {}
281
282
283 HRESULT init(Console *aConsole)
284 {
285 mConsole = aConsole;
286 return S_OK;
287 }
288
289 void uninit()
290 {
291 }
292
293 virtual ~VmEventListener()
294 {
295 }
296
297 STDMETHOD(HandleEvent)(VBoxEventType_T aType, IEvent *aEvent)
298 {
299 switch(aType)
300 {
301 case VBoxEventType_OnNATRedirect:
302 {
303 Bstr id;
304 ComPtr<IMachine> pMachine = mConsole->i_machine();
305 ComPtr<INATRedirectEvent> pNREv = aEvent;
306 HRESULT rc = E_FAIL;
307 Assert(pNREv);
308
309 rc = pNREv->COMGETTER(MachineId)(id.asOutParam());
310 AssertComRC(rc);
311 if (id != mConsole->i_getId())
312 break;
313 /* now we can operate with redirects */
314 NATProtocol_T proto;
315 pNREv->COMGETTER(Proto)(&proto);
316 BOOL fRemove;
317 pNREv->COMGETTER(Remove)(&fRemove);
318 Bstr hostIp, guestIp;
319 LONG hostPort, guestPort;
320 pNREv->COMGETTER(HostIP)(hostIp.asOutParam());
321 pNREv->COMGETTER(HostPort)(&hostPort);
322 pNREv->COMGETTER(GuestIP)(guestIp.asOutParam());
323 pNREv->COMGETTER(GuestPort)(&guestPort);
324 ULONG ulSlot;
325 rc = pNREv->COMGETTER(Slot)(&ulSlot);
326 AssertComRC(rc);
327 if (FAILED(rc))
328 break;
329 mConsole->i_onNATRedirectRuleChange(ulSlot, fRemove, proto, hostIp.raw(), hostPort, guestIp.raw(), guestPort);
330 }
331 break;
332
333 case VBoxEventType_OnHostNameResolutionConfigurationChange:
334 {
335 mConsole->i_onNATDnsChanged();
336 break;
337 }
338
339 case VBoxEventType_OnHostPCIDevicePlug:
340 {
341 // handle if needed
342 break;
343 }
344
345 case VBoxEventType_OnExtraDataChanged:
346 {
347 ComPtr<IExtraDataChangedEvent> pEDCEv = aEvent;
348 Bstr strMachineId;
349 Bstr strKey;
350 Bstr strVal;
351 HRESULT hrc = S_OK;
352
353 hrc = pEDCEv->COMGETTER(MachineId)(strMachineId.asOutParam());
354 if (FAILED(hrc)) break;
355
356 hrc = pEDCEv->COMGETTER(Key)(strKey.asOutParam());
357 if (FAILED(hrc)) break;
358
359 hrc = pEDCEv->COMGETTER(Value)(strVal.asOutParam());
360 if (FAILED(hrc)) break;
361
362 mConsole->i_onExtraDataChange(strMachineId.raw(), strKey.raw(), strVal.raw());
363 break;
364 }
365
366 default:
367 AssertFailed();
368 }
369
370 return S_OK;
371 }
372private:
373 ComObjPtr<Console> mConsole;
374};
375
376typedef ListenerImpl<VmEventListener, Console*> VmEventListenerImpl;
377
378
379VBOX_LISTENER_DECLARE(VmEventListenerImpl)
380
381
382// constructor / destructor
383/////////////////////////////////////////////////////////////////////////////
384
385Console::Console()
386 : mSavedStateDataLoaded(false)
387 , mConsoleVRDPServer(NULL)
388 , mfVRDEChangeInProcess(false)
389 , mfVRDEChangePending(false)
390 , mpUVM(NULL)
391 , mVMCallers(0)
392 , mVMZeroCallersSem(NIL_RTSEMEVENT)
393 , mVMDestroying(false)
394 , mVMPoweredOff(false)
395 , mVMIsAlreadyPoweringOff(false)
396 , mfSnapshotFolderSizeWarningShown(false)
397 , mfSnapshotFolderExt4WarningShown(false)
398 , mfSnapshotFolderDiskTypeShown(false)
399 , mfVMHasUsbController(false)
400 , mfPowerOffCausedByReset(false)
401 , mpVmm2UserMethods(NULL)
402 , m_pVMMDev(NULL)
403 , mAudioVRDE(NULL)
404#ifdef VBOX_WITH_AUDIO_VIDEOREC
405 , mAudioVideoRec(NULL)
406#endif
407 , mNvram(NULL)
408#ifdef VBOX_WITH_USB_CARDREADER
409 , mUsbCardReader(NULL)
410#endif
411 , mBusMgr(NULL)
412 , m_pKeyStore(NULL)
413 , mpIfSecKey(NULL)
414 , mpIfSecKeyHlp(NULL)
415 , mVMStateChangeCallbackDisabled(false)
416 , mfUseHostClipboard(true)
417 , mMachineState(MachineState_PoweredOff)
418{
419}
420
421Console::~Console()
422{}
423
424HRESULT Console::FinalConstruct()
425{
426 LogFlowThisFunc(("\n"));
427
428 RT_ZERO(mapStorageLeds);
429 RT_ZERO(mapNetworkLeds);
430 RT_ZERO(mapUSBLed);
431 RT_ZERO(mapSharedFolderLed);
432 RT_ZERO(mapCrOglLed);
433
434 for (unsigned i = 0; i < RT_ELEMENTS(maStorageDevType); ++i)
435 maStorageDevType[i] = DeviceType_Null;
436
437 MYVMM2USERMETHODS *pVmm2UserMethods = (MYVMM2USERMETHODS *)RTMemAllocZ(sizeof(*mpVmm2UserMethods) + sizeof(Console *));
438 if (!pVmm2UserMethods)
439 return E_OUTOFMEMORY;
440 pVmm2UserMethods->u32Magic = VMM2USERMETHODS_MAGIC;
441 pVmm2UserMethods->u32Version = VMM2USERMETHODS_VERSION;
442 pVmm2UserMethods->pfnSaveState = Console::i_vmm2User_SaveState;
443 pVmm2UserMethods->pfnNotifyEmtInit = Console::i_vmm2User_NotifyEmtInit;
444 pVmm2UserMethods->pfnNotifyEmtTerm = Console::i_vmm2User_NotifyEmtTerm;
445 pVmm2UserMethods->pfnNotifyPdmtInit = Console::i_vmm2User_NotifyPdmtInit;
446 pVmm2UserMethods->pfnNotifyPdmtTerm = Console::i_vmm2User_NotifyPdmtTerm;
447 pVmm2UserMethods->pfnNotifyResetTurnedIntoPowerOff = Console::i_vmm2User_NotifyResetTurnedIntoPowerOff;
448 pVmm2UserMethods->pfnQueryGenericObject = Console::i_vmm2User_QueryGenericObject;
449 pVmm2UserMethods->u32EndMagic = VMM2USERMETHODS_MAGIC;
450 pVmm2UserMethods->pConsole = this;
451 mpVmm2UserMethods = pVmm2UserMethods;
452
453 MYPDMISECKEY *pIfSecKey = (MYPDMISECKEY *)RTMemAllocZ(sizeof(*mpIfSecKey) + sizeof(Console *));
454 if (!pIfSecKey)
455 return E_OUTOFMEMORY;
456 pIfSecKey->pfnKeyRetain = Console::i_pdmIfSecKey_KeyRetain;
457 pIfSecKey->pfnKeyRelease = Console::i_pdmIfSecKey_KeyRelease;
458 pIfSecKey->pfnPasswordRetain = Console::i_pdmIfSecKey_PasswordRetain;
459 pIfSecKey->pfnPasswordRelease = Console::i_pdmIfSecKey_PasswordRelease;
460 pIfSecKey->pConsole = this;
461 mpIfSecKey = pIfSecKey;
462
463 MYPDMISECKEYHLP *pIfSecKeyHlp = (MYPDMISECKEYHLP *)RTMemAllocZ(sizeof(*mpIfSecKeyHlp) + sizeof(Console *));
464 if (!pIfSecKeyHlp)
465 return E_OUTOFMEMORY;
466 pIfSecKeyHlp->pfnKeyMissingNotify = Console::i_pdmIfSecKeyHlp_KeyMissingNotify;
467 pIfSecKeyHlp->pConsole = this;
468 mpIfSecKeyHlp = pIfSecKeyHlp;
469
470 return BaseFinalConstruct();
471}
472
473void Console::FinalRelease()
474{
475 LogFlowThisFunc(("\n"));
476
477 uninit();
478
479 BaseFinalRelease();
480}
481
482// public initializer/uninitializer for internal purposes only
483/////////////////////////////////////////////////////////////////////////////
484
485HRESULT Console::init(IMachine *aMachine, IInternalMachineControl *aControl, LockType_T aLockType)
486{
487 AssertReturn(aMachine && aControl, E_INVALIDARG);
488
489 /* Enclose the state transition NotReady->InInit->Ready */
490 AutoInitSpan autoInitSpan(this);
491 AssertReturn(autoInitSpan.isOk(), E_FAIL);
492
493 LogFlowThisFuncEnter();
494 LogFlowThisFunc(("aMachine=%p, aControl=%p\n", aMachine, aControl));
495
496 HRESULT rc = E_FAIL;
497
498 unconst(mMachine) = aMachine;
499 unconst(mControl) = aControl;
500
501 /* Cache essential properties and objects, and create child objects */
502
503 rc = mMachine->COMGETTER(State)(&mMachineState);
504 AssertComRCReturnRC(rc);
505
506 rc = mMachine->COMGETTER(Id)(mstrUuid.asOutParam());
507 AssertComRCReturnRC(rc);
508
509#ifdef VBOX_WITH_EXTPACK
510 unconst(mptrExtPackManager).createObject();
511 rc = mptrExtPackManager->initExtPackManager(NULL, VBOXEXTPACKCTX_VM_PROCESS);
512 AssertComRCReturnRC(rc);
513#endif
514
515 // Event source may be needed by other children
516 unconst(mEventSource).createObject();
517 rc = mEventSource->init();
518 AssertComRCReturnRC(rc);
519
520 mcAudioRefs = 0;
521 mcVRDPClients = 0;
522 mu32SingleRDPClientId = 0;
523 mcGuestCredentialsProvided = false;
524
525 /* Now the VM specific parts */
526 if (aLockType == LockType_VM)
527 {
528 rc = mMachine->COMGETTER(VRDEServer)(unconst(mVRDEServer).asOutParam());
529 AssertComRCReturnRC(rc);
530
531 unconst(mGuest).createObject();
532 rc = mGuest->init(this);
533 AssertComRCReturnRC(rc);
534
535 ULONG cCpus = 1;
536 rc = mMachine->COMGETTER(CPUCount)(&cCpus);
537 mGuest->i_setCpuCount(cCpus);
538
539 unconst(mKeyboard).createObject();
540 rc = mKeyboard->init(this);
541 AssertComRCReturnRC(rc);
542
543 unconst(mMouse).createObject();
544 rc = mMouse->init(this);
545 AssertComRCReturnRC(rc);
546
547 unconst(mDisplay).createObject();
548 rc = mDisplay->init(this);
549 AssertComRCReturnRC(rc);
550
551 unconst(mVRDEServerInfo).createObject();
552 rc = mVRDEServerInfo->init(this);
553 AssertComRCReturnRC(rc);
554
555 unconst(mEmulatedUSB).createObject();
556 rc = mEmulatedUSB->init(this);
557 AssertComRCReturnRC(rc);
558
559 /* Grab global and machine shared folder lists */
560
561 rc = i_fetchSharedFolders(true /* aGlobal */);
562 AssertComRCReturnRC(rc);
563 rc = i_fetchSharedFolders(false /* aGlobal */);
564 AssertComRCReturnRC(rc);
565
566 /* Create other child objects */
567
568 unconst(mConsoleVRDPServer) = new ConsoleVRDPServer(this);
569 AssertReturn(mConsoleVRDPServer, E_FAIL);
570
571 /* Figure out size of meAttachmentType vector */
572 ComPtr<IVirtualBox> pVirtualBox;
573 rc = aMachine->COMGETTER(Parent)(pVirtualBox.asOutParam());
574 AssertComRC(rc);
575 ComPtr<ISystemProperties> pSystemProperties;
576 if (pVirtualBox)
577 pVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
578 ChipsetType_T chipsetType = ChipsetType_PIIX3;
579 aMachine->COMGETTER(ChipsetType)(&chipsetType);
580 ULONG maxNetworkAdapters = 0;
581 if (pSystemProperties)
582 pSystemProperties->GetMaxNetworkAdapters(chipsetType, &maxNetworkAdapters);
583 meAttachmentType.resize(maxNetworkAdapters);
584 for (ULONG slot = 0; slot < maxNetworkAdapters; ++slot)
585 meAttachmentType[slot] = NetworkAttachmentType_Null;
586
587#ifdef VBOX_WITH_AUDIO_VRDE
588 unconst(mAudioVRDE) = new AudioVRDE(this);
589 AssertReturn(mAudioVRDE, E_FAIL);
590#endif
591#ifdef VBOX_WITH_AUDIO_VIDEOREC
592 unconst(mAudioVideoRec) = new AudioVideoRec(this);
593 AssertReturn(mAudioVideoRec, E_FAIL);
594#endif
595 FirmwareType_T enmFirmwareType;
596 mMachine->COMGETTER(FirmwareType)(&enmFirmwareType);
597 if ( enmFirmwareType == FirmwareType_EFI
598 || enmFirmwareType == FirmwareType_EFI32
599 || enmFirmwareType == FirmwareType_EFI64
600 || enmFirmwareType == FirmwareType_EFIDUAL)
601 {
602 unconst(mNvram) = new Nvram(this);
603 AssertReturn(mNvram, E_FAIL);
604 }
605
606#ifdef VBOX_WITH_USB_CARDREADER
607 unconst(mUsbCardReader) = new UsbCardReader(this);
608 AssertReturn(mUsbCardReader, E_FAIL);
609#endif
610
611 m_cDisksPwProvided = 0;
612 m_cDisksEncrypted = 0;
613
614 unconst(m_pKeyStore) = new SecretKeyStore(true /* fKeyBufNonPageable */);
615 AssertReturn(m_pKeyStore, E_FAIL);
616
617 /* VirtualBox events registration. */
618 {
619 ComPtr<IEventSource> pES;
620 rc = pVirtualBox->COMGETTER(EventSource)(pES.asOutParam());
621 AssertComRC(rc);
622 ComObjPtr<VmEventListenerImpl> aVmListener;
623 aVmListener.createObject();
624 aVmListener->init(new VmEventListener(), this);
625 mVmListener = aVmListener;
626 com::SafeArray<VBoxEventType_T> eventTypes;
627 eventTypes.push_back(VBoxEventType_OnNATRedirect);
628 eventTypes.push_back(VBoxEventType_OnHostNameResolutionConfigurationChange);
629 eventTypes.push_back(VBoxEventType_OnHostPCIDevicePlug);
630 eventTypes.push_back(VBoxEventType_OnExtraDataChanged);
631 rc = pES->RegisterListener(aVmListener, ComSafeArrayAsInParam(eventTypes), true);
632 AssertComRC(rc);
633 }
634 }
635
636 /* Confirm a successful initialization when it's the case */
637 autoInitSpan.setSucceeded();
638
639#ifdef VBOX_WITH_EXTPACK
640 /* Let the extension packs have a go at things (hold no locks). */
641 if (SUCCEEDED(rc))
642 mptrExtPackManager->i_callAllConsoleReadyHooks(this);
643#endif
644
645 LogFlowThisFuncLeave();
646
647 return S_OK;
648}
649
650/**
651 * Uninitializes the Console object.
652 */
653void Console::uninit()
654{
655 LogFlowThisFuncEnter();
656
657 /* Enclose the state transition Ready->InUninit->NotReady */
658 AutoUninitSpan autoUninitSpan(this);
659 if (autoUninitSpan.uninitDone())
660 {
661 LogFlowThisFunc(("Already uninitialized.\n"));
662 LogFlowThisFuncLeave();
663 return;
664 }
665
666 LogFlowThisFunc(("initFailed()=%d\n", autoUninitSpan.initFailed()));
667 if (mVmListener)
668 {
669 ComPtr<IEventSource> pES;
670 ComPtr<IVirtualBox> pVirtualBox;
671 HRESULT rc = mMachine->COMGETTER(Parent)(pVirtualBox.asOutParam());
672 AssertComRC(rc);
673 if (SUCCEEDED(rc) && !pVirtualBox.isNull())
674 {
675 rc = pVirtualBox->COMGETTER(EventSource)(pES.asOutParam());
676 AssertComRC(rc);
677 if (!pES.isNull())
678 {
679 rc = pES->UnregisterListener(mVmListener);
680 AssertComRC(rc);
681 }
682 }
683 mVmListener.setNull();
684 }
685
686 /* power down the VM if necessary */
687 if (mpUVM)
688 {
689 i_powerDown();
690 Assert(mpUVM == NULL);
691 }
692
693 if (mVMZeroCallersSem != NIL_RTSEMEVENT)
694 {
695 RTSemEventDestroy(mVMZeroCallersSem);
696 mVMZeroCallersSem = NIL_RTSEMEVENT;
697 }
698
699 if (mpVmm2UserMethods)
700 {
701 RTMemFree((void *)mpVmm2UserMethods);
702 mpVmm2UserMethods = NULL;
703 }
704
705 if (mpIfSecKey)
706 {
707 RTMemFree((void *)mpIfSecKey);
708 mpIfSecKey = NULL;
709 }
710
711 if (mpIfSecKeyHlp)
712 {
713 RTMemFree((void *)mpIfSecKeyHlp);
714 mpIfSecKeyHlp = NULL;
715 }
716
717 if (mNvram)
718 {
719 delete mNvram;
720 unconst(mNvram) = NULL;
721 }
722
723#ifdef VBOX_WITH_USB_CARDREADER
724 if (mUsbCardReader)
725 {
726 delete mUsbCardReader;
727 unconst(mUsbCardReader) = NULL;
728 }
729#endif
730
731#ifdef VBOX_WITH_AUDIO_VRDE
732 if (mAudioVRDE)
733 {
734 delete mAudioVRDE;
735 unconst(mAudioVRDE) = NULL;
736 }
737#endif
738
739#ifdef VBOX_WITH_AUDIO_VIDEOREC
740 if (mAudioVideoRec)
741 {
742 delete mAudioVideoRec;
743 unconst(mAudioVideoRec) = NULL;
744 }
745#endif
746
747 // if the VM had a VMMDev with an HGCM thread, then remove that here
748 if (m_pVMMDev)
749 {
750 delete m_pVMMDev;
751 unconst(m_pVMMDev) = NULL;
752 }
753
754 if (mBusMgr)
755 {
756 mBusMgr->Release();
757 mBusMgr = NULL;
758 }
759
760 if (m_pKeyStore)
761 {
762 delete m_pKeyStore;
763 unconst(m_pKeyStore) = NULL;
764 }
765
766 m_mapGlobalSharedFolders.clear();
767 m_mapMachineSharedFolders.clear();
768 m_mapSharedFolders.clear(); // console instances
769
770 mRemoteUSBDevices.clear();
771 mUSBDevices.clear();
772
773 if (mVRDEServerInfo)
774 {
775 mVRDEServerInfo->uninit();
776 unconst(mVRDEServerInfo).setNull();
777 }
778
779 if (mEmulatedUSB)
780 {
781 mEmulatedUSB->uninit();
782 unconst(mEmulatedUSB).setNull();
783 }
784
785 if (mDebugger)
786 {
787 mDebugger->uninit();
788 unconst(mDebugger).setNull();
789 }
790
791 if (mDisplay)
792 {
793 mDisplay->uninit();
794 unconst(mDisplay).setNull();
795 }
796
797 if (mMouse)
798 {
799 mMouse->uninit();
800 unconst(mMouse).setNull();
801 }
802
803 if (mKeyboard)
804 {
805 mKeyboard->uninit();
806 unconst(mKeyboard).setNull();
807 }
808
809 if (mGuest)
810 {
811 mGuest->uninit();
812 unconst(mGuest).setNull();
813 }
814
815 if (mConsoleVRDPServer)
816 {
817 delete mConsoleVRDPServer;
818 unconst(mConsoleVRDPServer) = NULL;
819 }
820
821 unconst(mVRDEServer).setNull();
822
823 unconst(mControl).setNull();
824 unconst(mMachine).setNull();
825
826 // we don't perform uninit() as it's possible that some pending event refers to this source
827 unconst(mEventSource).setNull();
828
829#ifdef VBOX_WITH_EXTPACK
830 unconst(mptrExtPackManager).setNull();
831#endif
832
833 LogFlowThisFuncLeave();
834}
835
836#ifdef VBOX_WITH_GUEST_PROPS
837
838/**
839 * Handles guest properties on a VM reset.
840 *
841 * We must delete properties that are flagged TRANSRESET.
842 *
843 * @todo r=bird: Would be more efficient if we added a request to the HGCM
844 * service to do this instead of detouring thru VBoxSVC.
845 * (IMachine::SetGuestProperty ends up in VBoxSVC, which in turns calls
846 * back into the VM process and the HGCM service.)
847 */
848void Console::i_guestPropertiesHandleVMReset(void)
849{
850 std::vector<Utf8Str> names;
851 std::vector<Utf8Str> values;
852 std::vector<LONG64> timestamps;
853 std::vector<Utf8Str> flags;
854 HRESULT hrc = i_enumerateGuestProperties("*", names, values, timestamps, flags);
855 if (SUCCEEDED(hrc))
856 {
857 for (size_t i = 0; i < flags.size(); i++)
858 {
859 /* Delete all properties which have the flag "TRANSRESET". */
860 if (flags[i].contains("TRANSRESET", Utf8Str::CaseInsensitive))
861 {
862 hrc = mMachine->DeleteGuestProperty(Bstr(names[i]).raw());
863 if (FAILED(hrc))
864 LogRel(("RESET: Could not delete transient property \"%s\", rc=%Rhrc\n",
865 names[i].c_str(), hrc));
866 }
867 }
868 }
869 else
870 LogRel(("RESET: Unable to enumerate guest properties, rc=%Rhrc\n", hrc));
871}
872
873bool Console::i_guestPropertiesVRDPEnabled(void)
874{
875 Bstr value;
876 HRESULT hrc = mMachine->GetExtraData(Bstr("VBoxInternal2/EnableGuestPropertiesVRDP").raw(),
877 value.asOutParam());
878 if ( hrc == S_OK
879 && value == "1")
880 return true;
881 return false;
882}
883
884void Console::i_guestPropertiesVRDPUpdateLogon(uint32_t u32ClientId, const char *pszUser, const char *pszDomain)
885{
886 if (!i_guestPropertiesVRDPEnabled())
887 return;
888
889 LogFlowFunc(("\n"));
890
891 char szPropNm[256];
892 Bstr bstrReadOnlyGuest(L"RDONLYGUEST");
893
894 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Name", u32ClientId);
895 Bstr clientName;
896 mVRDEServerInfo->COMGETTER(ClientName)(clientName.asOutParam());
897
898 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
899 clientName.raw(),
900 bstrReadOnlyGuest.raw());
901
902 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/User", u32ClientId);
903 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
904 Bstr(pszUser).raw(),
905 bstrReadOnlyGuest.raw());
906
907 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Domain", u32ClientId);
908 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
909 Bstr(pszDomain).raw(),
910 bstrReadOnlyGuest.raw());
911
912 char szClientId[64];
913 RTStrPrintf(szClientId, sizeof(szClientId), "%u", u32ClientId);
914 mMachine->SetGuestProperty(Bstr("/VirtualBox/HostInfo/VRDP/LastConnectedClient").raw(),
915 Bstr(szClientId).raw(),
916 bstrReadOnlyGuest.raw());
917
918 return;
919}
920
921void Console::i_guestPropertiesVRDPUpdateActiveClient(uint32_t u32ClientId)
922{
923 if (!i_guestPropertiesVRDPEnabled())
924 return;
925
926 LogFlowFunc(("%d\n", u32ClientId));
927
928 Bstr bstrFlags(L"RDONLYGUEST,TRANSIENT");
929
930 char szClientId[64];
931 RTStrPrintf(szClientId, sizeof(szClientId), "%u", u32ClientId);
932
933 mMachine->SetGuestProperty(Bstr("/VirtualBox/HostInfo/VRDP/ActiveClient").raw(),
934 Bstr(szClientId).raw(),
935 bstrFlags.raw());
936
937 return;
938}
939
940void Console::i_guestPropertiesVRDPUpdateNameChange(uint32_t u32ClientId, const char *pszName)
941{
942 if (!i_guestPropertiesVRDPEnabled())
943 return;
944
945 LogFlowFunc(("\n"));
946
947 char szPropNm[256];
948 Bstr bstrReadOnlyGuest(L"RDONLYGUEST");
949
950 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Name", u32ClientId);
951 Bstr clientName(pszName);
952
953 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
954 clientName.raw(),
955 bstrReadOnlyGuest.raw());
956
957}
958
959void Console::i_guestPropertiesVRDPUpdateIPAddrChange(uint32_t u32ClientId, const char *pszIPAddr)
960{
961 if (!i_guestPropertiesVRDPEnabled())
962 return;
963
964 LogFlowFunc(("\n"));
965
966 char szPropNm[256];
967 Bstr bstrReadOnlyGuest(L"RDONLYGUEST");
968
969 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/IPAddr", u32ClientId);
970 Bstr clientIPAddr(pszIPAddr);
971
972 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
973 clientIPAddr.raw(),
974 bstrReadOnlyGuest.raw());
975
976}
977
978void Console::i_guestPropertiesVRDPUpdateLocationChange(uint32_t u32ClientId, const char *pszLocation)
979{
980 if (!i_guestPropertiesVRDPEnabled())
981 return;
982
983 LogFlowFunc(("\n"));
984
985 char szPropNm[256];
986 Bstr bstrReadOnlyGuest(L"RDONLYGUEST");
987
988 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Location", u32ClientId);
989 Bstr clientLocation(pszLocation);
990
991 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
992 clientLocation.raw(),
993 bstrReadOnlyGuest.raw());
994
995}
996
997void Console::i_guestPropertiesVRDPUpdateOtherInfoChange(uint32_t u32ClientId, const char *pszOtherInfo)
998{
999 if (!i_guestPropertiesVRDPEnabled())
1000 return;
1001
1002 LogFlowFunc(("\n"));
1003
1004 char szPropNm[256];
1005 Bstr bstrReadOnlyGuest(L"RDONLYGUEST");
1006
1007 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/OtherInfo", u32ClientId);
1008 Bstr clientOtherInfo(pszOtherInfo);
1009
1010 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
1011 clientOtherInfo.raw(),
1012 bstrReadOnlyGuest.raw());
1013
1014}
1015
1016void Console::i_guestPropertiesVRDPUpdateClientAttach(uint32_t u32ClientId, bool fAttached)
1017{
1018 if (!i_guestPropertiesVRDPEnabled())
1019 return;
1020
1021 LogFlowFunc(("\n"));
1022
1023 Bstr bstrReadOnlyGuest(L"RDONLYGUEST");
1024
1025 char szPropNm[256];
1026 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Attach", u32ClientId);
1027
1028 Bstr bstrValue = fAttached? "1": "0";
1029
1030 mMachine->SetGuestProperty(Bstr(szPropNm).raw(),
1031 bstrValue.raw(),
1032 bstrReadOnlyGuest.raw());
1033}
1034
1035void Console::i_guestPropertiesVRDPUpdateDisconnect(uint32_t u32ClientId)
1036{
1037 if (!i_guestPropertiesVRDPEnabled())
1038 return;
1039
1040 LogFlowFunc(("\n"));
1041
1042 Bstr bstrReadOnlyGuest(L"RDONLYGUEST");
1043
1044 char szPropNm[256];
1045 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Name", u32ClientId);
1046 mMachine->SetGuestProperty(Bstr(szPropNm).raw(), NULL,
1047 bstrReadOnlyGuest.raw());
1048
1049 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/User", u32ClientId);
1050 mMachine->SetGuestProperty(Bstr(szPropNm).raw(), NULL,
1051 bstrReadOnlyGuest.raw());
1052
1053 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Domain", u32ClientId);
1054 mMachine->SetGuestProperty(Bstr(szPropNm).raw(), NULL,
1055 bstrReadOnlyGuest.raw());
1056
1057 RTStrPrintf(szPropNm, sizeof(szPropNm), "/VirtualBox/HostInfo/VRDP/Client/%u/Attach", u32ClientId);
1058 mMachine->SetGuestProperty(Bstr(szPropNm).raw(), NULL,
1059 bstrReadOnlyGuest.raw());
1060
1061 char szClientId[64];
1062 RTStrPrintf(szClientId, sizeof(szClientId), "%d", u32ClientId);
1063 mMachine->SetGuestProperty(Bstr("/VirtualBox/HostInfo/VRDP/LastDisconnectedClient").raw(),
1064 Bstr(szClientId).raw(),
1065 bstrReadOnlyGuest.raw());
1066
1067 return;
1068}
1069
1070#endif /* VBOX_WITH_GUEST_PROPS */
1071
1072bool Console::i_isResetTurnedIntoPowerOff(void)
1073{
1074 Bstr value;
1075 HRESULT hrc = mMachine->GetExtraData(Bstr("VBoxInternal2/TurnResetIntoPowerOff").raw(),
1076 value.asOutParam());
1077 if ( hrc == S_OK
1078 && value == "1")
1079 return true;
1080 return false;
1081}
1082
1083#ifdef VBOX_WITH_EXTPACK
1084/**
1085 * Used by VRDEServer and others to talke to the extension pack manager.
1086 *
1087 * @returns The extension pack manager.
1088 */
1089ExtPackManager *Console::i_getExtPackManager()
1090{
1091 return mptrExtPackManager;
1092}
1093#endif
1094
1095
1096int Console::i_VRDPClientLogon(uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain)
1097{
1098 LogFlowFuncEnter();
1099 LogFlowFunc(("%d, %s, %s, %s\n", u32ClientId, pszUser, pszPassword, pszDomain));
1100
1101 AutoCaller autoCaller(this);
1102 if (!autoCaller.isOk())
1103 {
1104 /* Console has been already uninitialized, deny request */
1105 LogRel(("AUTH: Access denied (Console uninitialized).\n"));
1106 LogFlowFuncLeave();
1107 return VERR_ACCESS_DENIED;
1108 }
1109
1110 Guid uuid = Guid(i_getId());
1111
1112 AuthType_T authType = AuthType_Null;
1113 HRESULT hrc = mVRDEServer->COMGETTER(AuthType)(&authType);
1114 AssertComRCReturn(hrc, VERR_ACCESS_DENIED);
1115
1116 ULONG authTimeout = 0;
1117 hrc = mVRDEServer->COMGETTER(AuthTimeout)(&authTimeout);
1118 AssertComRCReturn(hrc, VERR_ACCESS_DENIED);
1119
1120 AuthResult result = AuthResultAccessDenied;
1121 AuthGuestJudgement guestJudgement = AuthGuestNotAsked;
1122
1123 LogFlowFunc(("Auth type %d\n", authType));
1124
1125 LogRel(("AUTH: User: [%s]. Domain: [%s]. Authentication type: [%s]\n",
1126 pszUser, pszDomain,
1127 authType == AuthType_Null?
1128 "Null":
1129 (authType == AuthType_External?
1130 "External":
1131 (authType == AuthType_Guest?
1132 "Guest":
1133 "INVALID"
1134 )
1135 )
1136 ));
1137
1138 switch (authType)
1139 {
1140 case AuthType_Null:
1141 {
1142 result = AuthResultAccessGranted;
1143 break;
1144 }
1145
1146 case AuthType_External:
1147 {
1148 /* Call the external library. */
1149 result = mConsoleVRDPServer->Authenticate(uuid, guestJudgement, pszUser, pszPassword, pszDomain, u32ClientId);
1150
1151 if (result != AuthResultDelegateToGuest)
1152 {
1153 break;
1154 }
1155
1156 LogRel(("AUTH: Delegated to guest.\n"));
1157
1158 LogFlowFunc(("External auth asked for guest judgement\n"));
1159 }
1160 RT_FALL_THRU();
1161
1162 case AuthType_Guest:
1163 {
1164 guestJudgement = AuthGuestNotReacted;
1165
1166 /** @todo r=dj locking required here for m_pVMMDev? */
1167 PPDMIVMMDEVPORT pDevPort;
1168 if ( (m_pVMMDev)
1169 && ((pDevPort = m_pVMMDev->getVMMDevPort()))
1170 )
1171 {
1172 /* Issue the request to guest. Assume that the call does not require EMT. It should not. */
1173
1174 /* Ask the guest to judge these credentials. */
1175 uint32_t u32GuestFlags = VMMDEV_SETCREDENTIALS_JUDGE;
1176
1177 int rc = pDevPort->pfnSetCredentials(pDevPort, pszUser, pszPassword, pszDomain, u32GuestFlags);
1178
1179 if (RT_SUCCESS(rc))
1180 {
1181 /* Wait for guest. */
1182 rc = m_pVMMDev->WaitCredentialsJudgement(authTimeout, &u32GuestFlags);
1183
1184 if (RT_SUCCESS(rc))
1185 {
1186 switch (u32GuestFlags & (VMMDEV_CREDENTIALS_JUDGE_OK | VMMDEV_CREDENTIALS_JUDGE_DENY |
1187 VMMDEV_CREDENTIALS_JUDGE_NOJUDGEMENT))
1188 {
1189 case VMMDEV_CREDENTIALS_JUDGE_DENY: guestJudgement = AuthGuestAccessDenied; break;
1190 case VMMDEV_CREDENTIALS_JUDGE_NOJUDGEMENT: guestJudgement = AuthGuestNoJudgement; break;
1191 case VMMDEV_CREDENTIALS_JUDGE_OK: guestJudgement = AuthGuestAccessGranted; break;
1192 default:
1193 LogFlowFunc(("Invalid guest flags %08X!!!\n", u32GuestFlags)); break;
1194 }
1195 }
1196 else
1197 {
1198 LogFlowFunc(("Wait for credentials judgement rc = %Rrc!!!\n", rc));
1199 }
1200
1201 LogFlowFunc(("Guest judgement %d\n", guestJudgement));
1202 }
1203 else
1204 {
1205 LogFlowFunc(("Could not set credentials rc = %Rrc!!!\n", rc));
1206 }
1207 }
1208
1209 if (authType == AuthType_External)
1210 {
1211 LogRel(("AUTH: Guest judgement %d.\n", guestJudgement));
1212 LogFlowFunc(("External auth called again with guest judgement = %d\n", guestJudgement));
1213 result = mConsoleVRDPServer->Authenticate(uuid, guestJudgement, pszUser, pszPassword, pszDomain, u32ClientId);
1214 }
1215 else
1216 {
1217 switch (guestJudgement)
1218 {
1219 case AuthGuestAccessGranted:
1220 result = AuthResultAccessGranted;
1221 break;
1222 default:
1223 result = AuthResultAccessDenied;
1224 break;
1225 }
1226 }
1227 } break;
1228
1229 default:
1230 AssertFailed();
1231 }
1232
1233 LogFlowFunc(("Result = %d\n", result));
1234 LogFlowFuncLeave();
1235
1236 if (result != AuthResultAccessGranted)
1237 {
1238 /* Reject. */
1239 LogRel(("AUTH: Access denied.\n"));
1240 return VERR_ACCESS_DENIED;
1241 }
1242
1243 LogRel(("AUTH: Access granted.\n"));
1244
1245 /* Multiconnection check must be made after authentication, so bad clients would not interfere with a good one. */
1246 BOOL allowMultiConnection = FALSE;
1247 hrc = mVRDEServer->COMGETTER(AllowMultiConnection)(&allowMultiConnection);
1248 AssertComRCReturn(hrc, VERR_ACCESS_DENIED);
1249
1250 BOOL reuseSingleConnection = FALSE;
1251 hrc = mVRDEServer->COMGETTER(ReuseSingleConnection)(&reuseSingleConnection);
1252 AssertComRCReturn(hrc, VERR_ACCESS_DENIED);
1253
1254 LogFlowFunc(("allowMultiConnection %d, reuseSingleConnection = %d, mcVRDPClients = %d, mu32SingleRDPClientId = %d\n",
1255 allowMultiConnection, reuseSingleConnection, mcVRDPClients, mu32SingleRDPClientId));
1256
1257 if (allowMultiConnection == FALSE)
1258 {
1259 /* Note: the 'mcVRDPClients' variable is incremented in ClientConnect callback, which is called when the client
1260 * is successfully connected, that is after the ClientLogon callback. Therefore the mcVRDPClients
1261 * value is 0 for first client.
1262 */
1263 if (mcVRDPClients != 0)
1264 {
1265 Assert(mcVRDPClients == 1);
1266 /* There is a client already.
1267 * If required drop the existing client connection and let the connecting one in.
1268 */
1269 if (reuseSingleConnection)
1270 {
1271 LogRel(("AUTH: Multiple connections are not enabled. Disconnecting existing client.\n"));
1272 mConsoleVRDPServer->DisconnectClient(mu32SingleRDPClientId, false);
1273 }
1274 else
1275 {
1276 /* Reject. */
1277 LogRel(("AUTH: Multiple connections are not enabled. Access denied.\n"));
1278 return VERR_ACCESS_DENIED;
1279 }
1280 }
1281
1282 /* Save the connected client id. From now on it will be necessary to disconnect this one. */
1283 mu32SingleRDPClientId = u32ClientId;
1284 }
1285
1286#ifdef VBOX_WITH_GUEST_PROPS
1287 i_guestPropertiesVRDPUpdateLogon(u32ClientId, pszUser, pszDomain);
1288#endif /* VBOX_WITH_GUEST_PROPS */
1289
1290 /* Check if the successfully verified credentials are to be sent to the guest. */
1291 BOOL fProvideGuestCredentials = FALSE;
1292
1293 Bstr value;
1294 hrc = mMachine->GetExtraData(Bstr("VRDP/ProvideGuestCredentials").raw(),
1295 value.asOutParam());
1296 if (SUCCEEDED(hrc) && value == "1")
1297 {
1298 /* Provide credentials only if there are no logged in users. */
1299 Utf8Str noLoggedInUsersValue;
1300 LONG64 ul64Timestamp = 0;
1301 Utf8Str flags;
1302
1303 hrc = i_getGuestProperty("/VirtualBox/GuestInfo/OS/NoLoggedInUsers",
1304 &noLoggedInUsersValue, &ul64Timestamp, &flags);
1305
1306 if (SUCCEEDED(hrc) && noLoggedInUsersValue != "false")
1307 {
1308 /* And only if there are no connected clients. */
1309 if (ASMAtomicCmpXchgBool(&mcGuestCredentialsProvided, true, false))
1310 {
1311 fProvideGuestCredentials = TRUE;
1312 }
1313 }
1314 }
1315
1316 /** @todo r=dj locking required here for m_pVMMDev? */
1317 if ( fProvideGuestCredentials
1318 && m_pVMMDev)
1319 {
1320 uint32_t u32GuestFlags = VMMDEV_SETCREDENTIALS_GUESTLOGON;
1321
1322 PPDMIVMMDEVPORT pDevPort = m_pVMMDev->getVMMDevPort();
1323 if (pDevPort)
1324 {
1325 int rc = pDevPort->pfnSetCredentials(m_pVMMDev->getVMMDevPort(),
1326 pszUser, pszPassword, pszDomain, u32GuestFlags);
1327 AssertRC(rc);
1328 }
1329 }
1330
1331 return VINF_SUCCESS;
1332}
1333
1334void Console::i_VRDPClientStatusChange(uint32_t u32ClientId, const char *pszStatus)
1335{
1336 LogFlowFuncEnter();
1337
1338 AutoCaller autoCaller(this);
1339 AssertComRCReturnVoid(autoCaller.rc());
1340
1341 LogFlowFunc(("%s\n", pszStatus));
1342
1343#ifdef VBOX_WITH_GUEST_PROPS
1344 /* Parse the status string. */
1345 if (RTStrICmp(pszStatus, "ATTACH") == 0)
1346 {
1347 i_guestPropertiesVRDPUpdateClientAttach(u32ClientId, true);
1348 }
1349 else if (RTStrICmp(pszStatus, "DETACH") == 0)
1350 {
1351 i_guestPropertiesVRDPUpdateClientAttach(u32ClientId, false);
1352 }
1353 else if (RTStrNICmp(pszStatus, "NAME=", strlen("NAME=")) == 0)
1354 {
1355 i_guestPropertiesVRDPUpdateNameChange(u32ClientId, pszStatus + strlen("NAME="));
1356 }
1357 else if (RTStrNICmp(pszStatus, "CIPA=", strlen("CIPA=")) == 0)
1358 {
1359 i_guestPropertiesVRDPUpdateIPAddrChange(u32ClientId, pszStatus + strlen("CIPA="));
1360 }
1361 else if (RTStrNICmp(pszStatus, "CLOCATION=", strlen("CLOCATION=")) == 0)
1362 {
1363 i_guestPropertiesVRDPUpdateLocationChange(u32ClientId, pszStatus + strlen("CLOCATION="));
1364 }
1365 else if (RTStrNICmp(pszStatus, "COINFO=", strlen("COINFO=")) == 0)
1366 {
1367 i_guestPropertiesVRDPUpdateOtherInfoChange(u32ClientId, pszStatus + strlen("COINFO="));
1368 }
1369#endif
1370
1371 LogFlowFuncLeave();
1372}
1373
1374void Console::i_VRDPClientConnect(uint32_t u32ClientId)
1375{
1376 LogFlowFuncEnter();
1377
1378 AutoCaller autoCaller(this);
1379 AssertComRCReturnVoid(autoCaller.rc());
1380
1381 uint32_t u32Clients = ASMAtomicIncU32(&mcVRDPClients);
1382 VMMDev *pDev;
1383 PPDMIVMMDEVPORT pPort;
1384 if ( (u32Clients == 1)
1385 && ((pDev = i_getVMMDev()))
1386 && ((pPort = pDev->getVMMDevPort()))
1387 )
1388 {
1389 pPort->pfnVRDPChange(pPort,
1390 true,
1391 VRDP_EXPERIENCE_LEVEL_FULL); /** @todo configurable */
1392 }
1393
1394 NOREF(u32ClientId);
1395 mDisplay->i_VideoAccelVRDP(true);
1396
1397#ifdef VBOX_WITH_GUEST_PROPS
1398 i_guestPropertiesVRDPUpdateActiveClient(u32ClientId);
1399#endif /* VBOX_WITH_GUEST_PROPS */
1400
1401 LogFlowFuncLeave();
1402 return;
1403}
1404
1405void Console::i_VRDPClientDisconnect(uint32_t u32ClientId,
1406 uint32_t fu32Intercepted)
1407{
1408 LogFlowFuncEnter();
1409
1410 AutoCaller autoCaller(this);
1411 AssertComRCReturnVoid(autoCaller.rc());
1412
1413 AssertReturnVoid(mConsoleVRDPServer);
1414
1415 uint32_t u32Clients = ASMAtomicDecU32(&mcVRDPClients);
1416 VMMDev *pDev;
1417 PPDMIVMMDEVPORT pPort;
1418
1419 if ( (u32Clients == 0)
1420 && ((pDev = i_getVMMDev()))
1421 && ((pPort = pDev->getVMMDevPort()))
1422 )
1423 {
1424 pPort->pfnVRDPChange(pPort,
1425 false,
1426 0);
1427 }
1428
1429 mDisplay->i_VideoAccelVRDP(false);
1430
1431 if (fu32Intercepted & VRDE_CLIENT_INTERCEPT_USB)
1432 {
1433 mConsoleVRDPServer->USBBackendDelete(u32ClientId);
1434 }
1435
1436 if (fu32Intercepted & VRDE_CLIENT_INTERCEPT_CLIPBOARD)
1437 {
1438 mConsoleVRDPServer->ClipboardDelete(u32ClientId);
1439 }
1440
1441#ifdef VBOX_WITH_AUDIO_VRDE
1442 if (fu32Intercepted & VRDE_CLIENT_INTERCEPT_AUDIO)
1443 {
1444 if (mAudioVRDE)
1445 mAudioVRDE->onVRDEControl(false /* fEnable */, 0 /* uFlags */);
1446 }
1447#endif
1448
1449 AuthType_T authType = AuthType_Null;
1450 HRESULT hrc = mVRDEServer->COMGETTER(AuthType)(&authType);
1451 AssertComRC(hrc);
1452
1453 if (authType == AuthType_External)
1454 mConsoleVRDPServer->AuthDisconnect(i_getId(), u32ClientId);
1455
1456#ifdef VBOX_WITH_GUEST_PROPS
1457 i_guestPropertiesVRDPUpdateDisconnect(u32ClientId);
1458 if (u32Clients == 0)
1459 i_guestPropertiesVRDPUpdateActiveClient(0);
1460#endif /* VBOX_WITH_GUEST_PROPS */
1461
1462 if (u32Clients == 0)
1463 mcGuestCredentialsProvided = false;
1464
1465 LogFlowFuncLeave();
1466 return;
1467}
1468
1469void Console::i_VRDPInterceptAudio(uint32_t u32ClientId)
1470{
1471 RT_NOREF(u32ClientId);
1472 LogFlowFuncEnter();
1473
1474 AutoCaller autoCaller(this);
1475 AssertComRCReturnVoid(autoCaller.rc());
1476
1477 LogFlowFunc(("u32ClientId=%RU32\n", u32ClientId));
1478
1479#ifdef VBOX_WITH_AUDIO_VRDE
1480 if (mAudioVRDE)
1481 mAudioVRDE->onVRDEControl(true /* fEnable */, 0 /* uFlags */);
1482#endif
1483
1484 LogFlowFuncLeave();
1485 return;
1486}
1487
1488void Console::i_VRDPInterceptUSB(uint32_t u32ClientId, void **ppvIntercept)
1489{
1490 LogFlowFuncEnter();
1491
1492 AutoCaller autoCaller(this);
1493 AssertComRCReturnVoid(autoCaller.rc());
1494
1495 AssertReturnVoid(mConsoleVRDPServer);
1496
1497 mConsoleVRDPServer->USBBackendCreate(u32ClientId, ppvIntercept);
1498
1499 LogFlowFuncLeave();
1500 return;
1501}
1502
1503void Console::i_VRDPInterceptClipboard(uint32_t u32ClientId)
1504{
1505 LogFlowFuncEnter();
1506
1507 AutoCaller autoCaller(this);
1508 AssertComRCReturnVoid(autoCaller.rc());
1509
1510 AssertReturnVoid(mConsoleVRDPServer);
1511
1512 mConsoleVRDPServer->ClipboardCreate(u32ClientId);
1513
1514 LogFlowFuncLeave();
1515 return;
1516}
1517
1518
1519//static
1520const char *Console::sSSMConsoleUnit = "ConsoleData";
1521//static
1522uint32_t Console::sSSMConsoleVer = 0x00010001;
1523
1524inline static const char *networkAdapterTypeToName(NetworkAdapterType_T adapterType)
1525{
1526 switch (adapterType)
1527 {
1528 case NetworkAdapterType_Am79C970A:
1529 case NetworkAdapterType_Am79C973:
1530 return "pcnet";
1531#ifdef VBOX_WITH_E1000
1532 case NetworkAdapterType_I82540EM:
1533 case NetworkAdapterType_I82543GC:
1534 case NetworkAdapterType_I82545EM:
1535 return "e1000";
1536#endif
1537#ifdef VBOX_WITH_VIRTIO
1538 case NetworkAdapterType_Virtio:
1539 return "virtio-net";
1540#endif
1541 default:
1542 AssertFailed();
1543 return "unknown";
1544 }
1545 /* not reached */
1546}
1547
1548/**
1549 * Loads various console data stored in the saved state file.
1550 * This method does validation of the state file and returns an error info
1551 * when appropriate.
1552 *
1553 * The method does nothing if the machine is not in the Saved file or if
1554 * console data from it has already been loaded.
1555 *
1556 * @note The caller must lock this object for writing.
1557 */
1558HRESULT Console::i_loadDataFromSavedState()
1559{
1560 if (mMachineState != MachineState_Saved || mSavedStateDataLoaded)
1561 return S_OK;
1562
1563 Bstr savedStateFile;
1564 HRESULT rc = mMachine->COMGETTER(StateFilePath)(savedStateFile.asOutParam());
1565 if (FAILED(rc))
1566 return rc;
1567
1568 PSSMHANDLE ssm;
1569 int vrc = SSMR3Open(Utf8Str(savedStateFile).c_str(), 0, &ssm);
1570 if (RT_SUCCESS(vrc))
1571 {
1572 uint32_t version = 0;
1573 vrc = SSMR3Seek(ssm, sSSMConsoleUnit, 0 /* iInstance */, &version);
1574 if (SSM_VERSION_MAJOR(version) == SSM_VERSION_MAJOR(sSSMConsoleVer))
1575 {
1576 if (RT_SUCCESS(vrc))
1577 vrc = i_loadStateFileExecInternal(ssm, version);
1578 else if (vrc == VERR_SSM_UNIT_NOT_FOUND)
1579 vrc = VINF_SUCCESS;
1580 }
1581 else
1582 vrc = VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
1583
1584 SSMR3Close(ssm);
1585 }
1586
1587 if (RT_FAILURE(vrc))
1588 rc = setError(VBOX_E_FILE_ERROR,
1589 tr("The saved state file '%ls' is invalid (%Rrc). Delete the saved state and try again"),
1590 savedStateFile.raw(), vrc);
1591
1592 mSavedStateDataLoaded = true;
1593
1594 return rc;
1595}
1596
1597/**
1598 * Callback handler to save various console data to the state file,
1599 * called when the user saves the VM state.
1600 *
1601 * @param pSSM SSM handle.
1602 * @param pvUser pointer to Console
1603 *
1604 * @note Locks the Console object for reading.
1605 */
1606//static
1607DECLCALLBACK(void) Console::i_saveStateFileExec(PSSMHANDLE pSSM, void *pvUser)
1608{
1609 LogFlowFunc(("\n"));
1610
1611 Console *that = static_cast<Console *>(pvUser);
1612 AssertReturnVoid(that);
1613
1614 AutoCaller autoCaller(that);
1615 AssertComRCReturnVoid(autoCaller.rc());
1616
1617 AutoReadLock alock(that COMMA_LOCKVAL_SRC_POS);
1618
1619 int vrc = SSMR3PutU32(pSSM, (uint32_t)that->m_mapSharedFolders.size());
1620 AssertRC(vrc);
1621
1622 for (SharedFolderMap::const_iterator it = that->m_mapSharedFolders.begin();
1623 it != that->m_mapSharedFolders.end();
1624 ++it)
1625 {
1626 SharedFolder *pSF = (*it).second;
1627 AutoCaller sfCaller(pSF);
1628 AutoReadLock sfLock(pSF COMMA_LOCKVAL_SRC_POS);
1629
1630 Utf8Str name = pSF->i_getName();
1631 vrc = SSMR3PutU32(pSSM, (uint32_t)name.length() + 1 /* term. 0 */);
1632 AssertRC(vrc);
1633 vrc = SSMR3PutStrZ(pSSM, name.c_str());
1634 AssertRC(vrc);
1635
1636 Utf8Str hostPath = pSF->i_getHostPath();
1637 vrc = SSMR3PutU32(pSSM, (uint32_t)hostPath.length() + 1 /* term. 0 */);
1638 AssertRC(vrc);
1639 vrc = SSMR3PutStrZ(pSSM, hostPath.c_str());
1640 AssertRC(vrc);
1641
1642 vrc = SSMR3PutBool(pSSM, !!pSF->i_isWritable());
1643 AssertRC(vrc);
1644
1645 vrc = SSMR3PutBool(pSSM, !!pSF->i_isAutoMounted());
1646 AssertRC(vrc);
1647 }
1648
1649 return;
1650}
1651
1652/**
1653 * Callback handler to load various console data from the state file.
1654 * Called when the VM is being restored from the saved state.
1655 *
1656 * @param pSSM SSM handle.
1657 * @param pvUser pointer to Console
1658 * @param uVersion Console unit version.
1659 * Should match sSSMConsoleVer.
1660 * @param uPass The data pass.
1661 *
1662 * @note Should locks the Console object for writing, if necessary.
1663 */
1664//static
1665DECLCALLBACK(int)
1666Console::i_loadStateFileExec(PSSMHANDLE pSSM, void *pvUser, uint32_t uVersion, uint32_t uPass)
1667{
1668 LogFlowFunc(("\n"));
1669
1670 if (SSM_VERSION_MAJOR_CHANGED(uVersion, sSSMConsoleVer))
1671 return VERR_VERSION_MISMATCH;
1672 Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
1673
1674 Console *that = static_cast<Console *>(pvUser);
1675 AssertReturn(that, VERR_INVALID_PARAMETER);
1676
1677 /* Currently, nothing to do when we've been called from VMR3Load*. */
1678 return SSMR3SkipToEndOfUnit(pSSM);
1679}
1680
1681/**
1682 * Method to load various console data from the state file.
1683 * Called from #i_loadDataFromSavedState.
1684 *
1685 * @param pSSM SSM handle.
1686 * @param u32Version Console unit version.
1687 * Should match sSSMConsoleVer.
1688 *
1689 * @note Locks the Console object for writing.
1690 */
1691int Console::i_loadStateFileExecInternal(PSSMHANDLE pSSM, uint32_t u32Version)
1692{
1693 AutoCaller autoCaller(this);
1694 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
1695
1696 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1697
1698 AssertReturn(m_mapSharedFolders.size() == 0, VERR_INTERNAL_ERROR);
1699
1700 uint32_t size = 0;
1701 int vrc = SSMR3GetU32(pSSM, &size);
1702 AssertRCReturn(vrc, vrc);
1703
1704 for (uint32_t i = 0; i < size; ++i)
1705 {
1706 Utf8Str strName;
1707 Utf8Str strHostPath;
1708 bool writable = true;
1709 bool autoMount = false;
1710
1711 uint32_t szBuf = 0;
1712 char *buf = NULL;
1713
1714 vrc = SSMR3GetU32(pSSM, &szBuf);
1715 AssertRCReturn(vrc, vrc);
1716 buf = new char[szBuf];
1717 vrc = SSMR3GetStrZ(pSSM, buf, szBuf);
1718 AssertRC(vrc);
1719 strName = buf;
1720 delete[] buf;
1721
1722 vrc = SSMR3GetU32(pSSM, &szBuf);
1723 AssertRCReturn(vrc, vrc);
1724 buf = new char[szBuf];
1725 vrc = SSMR3GetStrZ(pSSM, buf, szBuf);
1726 AssertRC(vrc);
1727 strHostPath = buf;
1728 delete[] buf;
1729
1730 if (u32Version > 0x00010000)
1731 SSMR3GetBool(pSSM, &writable);
1732
1733 if (u32Version > 0x00010000) // ???
1734 SSMR3GetBool(pSSM, &autoMount);
1735
1736 ComObjPtr<SharedFolder> pSharedFolder;
1737 pSharedFolder.createObject();
1738 HRESULT rc = pSharedFolder->init(this,
1739 strName,
1740 strHostPath,
1741 writable,
1742 autoMount,
1743 false /* fFailOnError */);
1744 AssertComRCReturn(rc, VERR_INTERNAL_ERROR);
1745
1746 m_mapSharedFolders.insert(std::make_pair(strName, pSharedFolder));
1747 }
1748
1749 return VINF_SUCCESS;
1750}
1751
1752#ifdef VBOX_WITH_GUEST_PROPS
1753
1754// static
1755DECLCALLBACK(int) Console::i_doGuestPropNotification(void *pvExtension,
1756 uint32_t u32Function,
1757 void *pvParms,
1758 uint32_t cbParms)
1759{
1760 Assert(u32Function == 0); NOREF(u32Function);
1761
1762 /*
1763 * No locking, as this is purely a notification which does not make any
1764 * changes to the object state.
1765 */
1766 PGUESTPROPHOSTCALLBACKDATA pCBData = reinterpret_cast<PGUESTPROPHOSTCALLBACKDATA>(pvParms);
1767 AssertReturn(sizeof(GUESTPROPHOSTCALLBACKDATA) == cbParms, VERR_INVALID_PARAMETER);
1768 AssertReturn(pCBData->u32Magic == GUESTPROPHOSTCALLBACKDATA_MAGIC, VERR_INVALID_PARAMETER);
1769 LogFlow(("Console::doGuestPropNotification: pCBData={.pcszName=%s, .pcszValue=%s, .pcszFlags=%s}\n",
1770 pCBData->pcszName, pCBData->pcszValue, pCBData->pcszFlags));
1771
1772 int rc;
1773 Bstr name(pCBData->pcszName);
1774 Bstr value(pCBData->pcszValue);
1775 Bstr flags(pCBData->pcszFlags);
1776 ComObjPtr<Console> pConsole = reinterpret_cast<Console *>(pvExtension);
1777 HRESULT hrc = pConsole->mControl->PushGuestProperty(name.raw(),
1778 value.raw(),
1779 pCBData->u64Timestamp,
1780 flags.raw());
1781 if (SUCCEEDED(hrc))
1782 {
1783 fireGuestPropertyChangedEvent(pConsole->mEventSource, pConsole->i_getId().raw(), name.raw(), value.raw(), flags.raw());
1784 rc = VINF_SUCCESS;
1785 }
1786 else
1787 {
1788 LogFlow(("Console::doGuestPropNotification: hrc=%Rhrc pCBData={.pcszName=%s, .pcszValue=%s, .pcszFlags=%s}\n",
1789 hrc, pCBData->pcszName, pCBData->pcszValue, pCBData->pcszFlags));
1790 rc = Global::vboxStatusCodeFromCOM(hrc);
1791 }
1792 return rc;
1793}
1794
1795HRESULT Console::i_doEnumerateGuestProperties(const Utf8Str &aPatterns,
1796 std::vector<Utf8Str> &aNames,
1797 std::vector<Utf8Str> &aValues,
1798 std::vector<LONG64> &aTimestamps,
1799 std::vector<Utf8Str> &aFlags)
1800{
1801 AssertReturn(m_pVMMDev, E_FAIL);
1802
1803 VBOXHGCMSVCPARM parm[3];
1804 parm[0].type = VBOX_HGCM_SVC_PARM_PTR;
1805 parm[0].u.pointer.addr = (void*)aPatterns.c_str();
1806 parm[0].u.pointer.size = (uint32_t)aPatterns.length() + 1;
1807
1808 /*
1809 * Now things get slightly complicated. Due to a race with the guest adding
1810 * properties, there is no good way to know how much to enlarge a buffer for
1811 * the service to enumerate into. We choose a decent starting size and loop a
1812 * few times, each time retrying with the size suggested by the service plus
1813 * one Kb.
1814 */
1815 size_t cchBuf = 4096;
1816 Utf8Str Utf8Buf;
1817 int vrc = VERR_BUFFER_OVERFLOW;
1818 for (unsigned i = 0; i < 10 && (VERR_BUFFER_OVERFLOW == vrc); ++i)
1819 {
1820 try
1821 {
1822 Utf8Buf.reserve(cchBuf + 1024);
1823 }
1824 catch(...)
1825 {
1826 return E_OUTOFMEMORY;
1827 }
1828
1829 parm[1].type = VBOX_HGCM_SVC_PARM_PTR;
1830 parm[1].u.pointer.addr = Utf8Buf.mutableRaw();
1831 parm[1].u.pointer.size = (uint32_t)cchBuf + 1024;
1832
1833 parm[2].type = VBOX_HGCM_SVC_PARM_32BIT;
1834 parm[2].u.uint32 = 0;
1835
1836 vrc = m_pVMMDev->hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_ENUM_PROPS, 3, &parm[0]);
1837 Utf8Buf.jolt();
1838 if (parm[2].type != VBOX_HGCM_SVC_PARM_32BIT)
1839 return setError(E_FAIL, tr("Internal application error"));
1840 cchBuf = parm[2].u.uint32;
1841 }
1842 if (VERR_BUFFER_OVERFLOW == vrc)
1843 return setError(E_UNEXPECTED,
1844 tr("Temporary failure due to guest activity, please retry"));
1845
1846 /*
1847 * Finally we have to unpack the data returned by the service into the safe
1848 * arrays supplied by the caller. We start by counting the number of entries.
1849 */
1850 const char *pszBuf
1851 = reinterpret_cast<const char *>(parm[1].u.pointer.addr);
1852 unsigned cEntries = 0;
1853 /* The list is terminated by a zero-length string at the end of a set
1854 * of four strings. */
1855 for (size_t i = 0; strlen(pszBuf + i) != 0; )
1856 {
1857 /* We are counting sets of four strings. */
1858 for (unsigned j = 0; j < 4; ++j)
1859 i += strlen(pszBuf + i) + 1;
1860 ++cEntries;
1861 }
1862
1863 aNames.resize(cEntries);
1864 aValues.resize(cEntries);
1865 aTimestamps.resize(cEntries);
1866 aFlags.resize(cEntries);
1867
1868 size_t iBuf = 0;
1869 /* Rely on the service to have formated the data correctly. */
1870 for (unsigned i = 0; i < cEntries; ++i)
1871 {
1872 size_t cchName = strlen(pszBuf + iBuf);
1873 aNames[i] = &pszBuf[iBuf];
1874 iBuf += cchName + 1;
1875
1876 size_t cchValue = strlen(pszBuf + iBuf);
1877 aValues[i] = &pszBuf[iBuf];
1878 iBuf += cchValue + 1;
1879
1880 size_t cchTimestamp = strlen(pszBuf + iBuf);
1881 aTimestamps[i] = RTStrToUInt64(&pszBuf[iBuf]);
1882 iBuf += cchTimestamp + 1;
1883
1884 size_t cchFlags = strlen(pszBuf + iBuf);
1885 aFlags[i] = &pszBuf[iBuf];
1886 iBuf += cchFlags + 1;
1887 }
1888
1889 return S_OK;
1890}
1891
1892#endif /* VBOX_WITH_GUEST_PROPS */
1893
1894
1895// IConsole properties
1896/////////////////////////////////////////////////////////////////////////////
1897HRESULT Console::getMachine(ComPtr<IMachine> &aMachine)
1898{
1899 /* mMachine is constant during life time, no need to lock */
1900 mMachine.queryInterfaceTo(aMachine.asOutParam());
1901
1902 /* callers expect to get a valid reference, better fail than crash them */
1903 if (mMachine.isNull())
1904 return E_FAIL;
1905
1906 return S_OK;
1907}
1908
1909HRESULT Console::getState(MachineState_T *aState)
1910{
1911 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1912
1913 /* we return our local state (since it's always the same as on the server) */
1914 *aState = mMachineState;
1915
1916 return S_OK;
1917}
1918
1919HRESULT Console::getGuest(ComPtr<IGuest> &aGuest)
1920{
1921 /* mGuest is constant during life time, no need to lock */
1922 mGuest.queryInterfaceTo(aGuest.asOutParam());
1923
1924 return S_OK;
1925}
1926
1927HRESULT Console::getKeyboard(ComPtr<IKeyboard> &aKeyboard)
1928{
1929 /* mKeyboard is constant during life time, no need to lock */
1930 mKeyboard.queryInterfaceTo(aKeyboard.asOutParam());
1931
1932 return S_OK;
1933}
1934
1935HRESULT Console::getMouse(ComPtr<IMouse> &aMouse)
1936{
1937 /* mMouse is constant during life time, no need to lock */
1938 mMouse.queryInterfaceTo(aMouse.asOutParam());
1939
1940 return S_OK;
1941}
1942
1943HRESULT Console::getDisplay(ComPtr<IDisplay> &aDisplay)
1944{
1945 /* mDisplay is constant during life time, no need to lock */
1946 mDisplay.queryInterfaceTo(aDisplay.asOutParam());
1947
1948 return S_OK;
1949}
1950
1951HRESULT Console::getDebugger(ComPtr<IMachineDebugger> &aDebugger)
1952{
1953 /* we need a write lock because of the lazy mDebugger initialization*/
1954 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1955
1956 /* check if we have to create the debugger object */
1957 if (!mDebugger)
1958 {
1959 unconst(mDebugger).createObject();
1960 mDebugger->init(this);
1961 }
1962
1963 mDebugger.queryInterfaceTo(aDebugger.asOutParam());
1964
1965 return S_OK;
1966}
1967
1968HRESULT Console::getUSBDevices(std::vector<ComPtr<IUSBDevice> > &aUSBDevices)
1969{
1970 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1971
1972 size_t i = 0;
1973 aUSBDevices.resize(mUSBDevices.size());
1974 for (USBDeviceList::const_iterator it = mUSBDevices.begin(); it != mUSBDevices.end(); ++i, ++it)
1975 (*it).queryInterfaceTo(aUSBDevices[i].asOutParam());
1976
1977 return S_OK;
1978}
1979
1980
1981HRESULT Console::getRemoteUSBDevices(std::vector<ComPtr<IHostUSBDevice> > &aRemoteUSBDevices)
1982{
1983 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1984
1985 size_t i = 0;
1986 aRemoteUSBDevices.resize(mRemoteUSBDevices.size());
1987 for (RemoteUSBDeviceList::const_iterator it = mRemoteUSBDevices.begin(); it != mRemoteUSBDevices.end(); ++i, ++it)
1988 (*it).queryInterfaceTo(aRemoteUSBDevices[i].asOutParam());
1989
1990 return S_OK;
1991}
1992
1993HRESULT Console::getVRDEServerInfo(ComPtr<IVRDEServerInfo> &aVRDEServerInfo)
1994{
1995 /* mVRDEServerInfo is constant during life time, no need to lock */
1996 mVRDEServerInfo.queryInterfaceTo(aVRDEServerInfo.asOutParam());
1997
1998 return S_OK;
1999}
2000
2001HRESULT Console::getEmulatedUSB(ComPtr<IEmulatedUSB> &aEmulatedUSB)
2002{
2003 /* mEmulatedUSB is constant during life time, no need to lock */
2004 mEmulatedUSB.queryInterfaceTo(aEmulatedUSB.asOutParam());
2005
2006 return S_OK;
2007}
2008
2009HRESULT Console::getSharedFolders(std::vector<ComPtr<ISharedFolder> > &aSharedFolders)
2010{
2011 /* loadDataFromSavedState() needs a write lock */
2012 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2013
2014 /* Read console data stored in the saved state file (if not yet done) */
2015 HRESULT rc = i_loadDataFromSavedState();
2016 if (FAILED(rc)) return rc;
2017
2018 size_t i = 0;
2019 aSharedFolders.resize(m_mapSharedFolders.size());
2020 for (SharedFolderMap::const_iterator it = m_mapSharedFolders.begin(); it != m_mapSharedFolders.end(); ++i, ++it)
2021 (it)->second.queryInterfaceTo(aSharedFolders[i].asOutParam());
2022
2023 return S_OK;
2024}
2025
2026HRESULT Console::getEventSource(ComPtr<IEventSource> &aEventSource)
2027{
2028 // no need to lock - lifetime constant
2029 mEventSource.queryInterfaceTo(aEventSource.asOutParam());
2030
2031 return S_OK;
2032}
2033
2034HRESULT Console::getAttachedPCIDevices(std::vector<ComPtr<IPCIDeviceAttachment> > &aAttachedPCIDevices)
2035{
2036 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2037
2038 if (mBusMgr)
2039 {
2040 std::vector<BusAssignmentManager::PCIDeviceInfo> devInfos;
2041 mBusMgr->listAttachedPCIDevices(devInfos);
2042 ComObjPtr<PCIDeviceAttachment> dev;
2043 aAttachedPCIDevices.resize(devInfos.size());
2044 for (size_t i = 0; i < devInfos.size(); i++)
2045 {
2046 const BusAssignmentManager::PCIDeviceInfo &devInfo = devInfos[i];
2047 dev.createObject();
2048 dev->init(NULL, devInfo.strDeviceName,
2049 devInfo.hostAddress.valid() ? devInfo.hostAddress.asLong() : -1,
2050 devInfo.guestAddress.asLong(),
2051 devInfo.hostAddress.valid());
2052 dev.queryInterfaceTo(aAttachedPCIDevices[i].asOutParam());
2053 }
2054 }
2055 else
2056 aAttachedPCIDevices.resize(0);
2057
2058 return S_OK;
2059}
2060
2061HRESULT Console::getUseHostClipboard(BOOL *aUseHostClipboard)
2062{
2063 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2064
2065 *aUseHostClipboard = mfUseHostClipboard;
2066
2067 return S_OK;
2068}
2069
2070HRESULT Console::setUseHostClipboard(BOOL aUseHostClipboard)
2071{
2072 mfUseHostClipboard = !!aUseHostClipboard;
2073
2074 return S_OK;
2075}
2076
2077// IConsole methods
2078/////////////////////////////////////////////////////////////////////////////
2079
2080HRESULT Console::powerUp(ComPtr<IProgress> &aProgress)
2081{
2082 return i_powerUp(aProgress.asOutParam(), false /* aPaused */);
2083}
2084
2085HRESULT Console::powerUpPaused(ComPtr<IProgress> &aProgress)
2086{
2087 return i_powerUp(aProgress.asOutParam(), true /* aPaused */);
2088}
2089
2090HRESULT Console::powerDown(ComPtr<IProgress> &aProgress)
2091{
2092 LogFlowThisFuncEnter();
2093
2094 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2095
2096 LogFlowThisFunc(("mMachineState=%d\n", mMachineState));
2097 switch (mMachineState)
2098 {
2099 case MachineState_Running:
2100 case MachineState_Paused:
2101 case MachineState_Stuck:
2102 break;
2103
2104 /* Try cancel the save state. */
2105 case MachineState_Saving:
2106 if (!mptrCancelableProgress.isNull())
2107 {
2108 HRESULT hrc = mptrCancelableProgress->Cancel();
2109 if (SUCCEEDED(hrc))
2110 break;
2111 }
2112 return setError(VBOX_E_INVALID_VM_STATE, tr("Cannot power down at this point during a save state"));
2113
2114 /* Try cancel the teleportation. */
2115 case MachineState_Teleporting:
2116 case MachineState_TeleportingPausedVM:
2117 if (!mptrCancelableProgress.isNull())
2118 {
2119 HRESULT hrc = mptrCancelableProgress->Cancel();
2120 if (SUCCEEDED(hrc))
2121 break;
2122 }
2123 return setError(VBOX_E_INVALID_VM_STATE, tr("Cannot power down at this point in a teleportation"));
2124
2125 /* Try cancel the online snapshot. */
2126 case MachineState_OnlineSnapshotting:
2127 if (!mptrCancelableProgress.isNull())
2128 {
2129 HRESULT hrc = mptrCancelableProgress->Cancel();
2130 if (SUCCEEDED(hrc))
2131 break;
2132 }
2133 return setError(VBOX_E_INVALID_VM_STATE, tr("Cannot power down at this point in an online snapshot"));
2134
2135 /* Try cancel the live snapshot. */
2136 case MachineState_LiveSnapshotting:
2137 if (!mptrCancelableProgress.isNull())
2138 {
2139 HRESULT hrc = mptrCancelableProgress->Cancel();
2140 if (SUCCEEDED(hrc))
2141 break;
2142 }
2143 return setError(VBOX_E_INVALID_VM_STATE, tr("Cannot power down at this point in a live snapshot"));
2144
2145 /* Try cancel the FT sync. */
2146 case MachineState_FaultTolerantSyncing:
2147 if (!mptrCancelableProgress.isNull())
2148 {
2149 HRESULT hrc = mptrCancelableProgress->Cancel();
2150 if (SUCCEEDED(hrc))
2151 break;
2152 }
2153 return setError(VBOX_E_INVALID_VM_STATE, tr("Cannot power down at this point in a fault tolerant sync"));
2154
2155 /* extra nice error message for a common case */
2156 case MachineState_Saved:
2157 return setError(VBOX_E_INVALID_VM_STATE, tr("Cannot power down a saved virtual machine"));
2158 case MachineState_Stopping:
2159 return setError(VBOX_E_INVALID_VM_STATE, tr("The virtual machine is being powered down"));
2160 default:
2161 return setError(VBOX_E_INVALID_VM_STATE,
2162 tr("Invalid machine state: %s (must be Running, Paused or Stuck)"),
2163 Global::stringifyMachineState(mMachineState));
2164 }
2165 LogFlowThisFunc(("Initiating SHUTDOWN request...\n"));
2166
2167 /* memorize the current machine state */
2168 MachineState_T lastMachineState = mMachineState;
2169
2170 HRESULT rc = S_OK;
2171 bool fBeganPowerDown = false;
2172 VMPowerDownTask* task = NULL;
2173
2174 do
2175 {
2176 ComPtr<IProgress> pProgress;
2177
2178#ifdef VBOX_WITH_GUEST_PROPS
2179 alock.release();
2180
2181 if (i_isResetTurnedIntoPowerOff())
2182 {
2183 mMachine->DeleteGuestProperty(Bstr("/VirtualBox/HostInfo/VMPowerOffReason").raw());
2184 mMachine->SetGuestProperty(Bstr("/VirtualBox/HostInfo/VMPowerOffReason").raw(),
2185 Bstr("PowerOff").raw(), Bstr("RDONLYGUEST").raw());
2186 mMachine->SaveSettings();
2187 }
2188
2189 alock.acquire();
2190#endif
2191
2192 /*
2193 * request a progress object from the server
2194 * (this will set the machine state to Stopping on the server to block
2195 * others from accessing this machine)
2196 */
2197 rc = mControl->BeginPoweringDown(pProgress.asOutParam());
2198 if (FAILED(rc))
2199 break;
2200
2201 fBeganPowerDown = true;
2202
2203 /* sync the state with the server */
2204 i_setMachineStateLocally(MachineState_Stopping);
2205 try
2206 {
2207 task = new VMPowerDownTask(this, pProgress);
2208 if (!task->isOk())
2209 {
2210 throw E_FAIL;
2211 }
2212 }
2213 catch(...)
2214 {
2215 delete task;
2216 rc = setError(E_FAIL, "Could not create VMPowerDownTask object \n");
2217 break;
2218 }
2219
2220 rc = task->createThread();
2221
2222 /* pass the progress to the caller */
2223 pProgress.queryInterfaceTo(aProgress.asOutParam());
2224 }
2225 while (0);
2226
2227 if (FAILED(rc))
2228 {
2229 /* preserve existing error info */
2230 ErrorInfoKeeper eik;
2231
2232 if (fBeganPowerDown)
2233 {
2234 /*
2235 * cancel the requested power down procedure.
2236 * This will reset the machine state to the state it had right
2237 * before calling mControl->BeginPoweringDown().
2238 */
2239 mControl->EndPoweringDown(eik.getResultCode(), eik.getText().raw()); }
2240
2241 i_setMachineStateLocally(lastMachineState);
2242 }
2243
2244 LogFlowThisFunc(("rc=%Rhrc\n", rc));
2245 LogFlowThisFuncLeave();
2246
2247 return rc;
2248}
2249
2250HRESULT Console::reset()
2251{
2252 LogFlowThisFuncEnter();
2253
2254 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2255
2256 LogFlowThisFunc(("mMachineState=%d\n", mMachineState));
2257 if ( mMachineState != MachineState_Running
2258 && mMachineState != MachineState_Teleporting
2259 && mMachineState != MachineState_LiveSnapshotting
2260 /** @todo r=bird: This should be allowed on paused VMs as well. Later. */
2261 )
2262 return i_setInvalidMachineStateError();
2263
2264 /* protect mpUVM */
2265 SafeVMPtr ptrVM(this);
2266 if (!ptrVM.isOk())
2267 return ptrVM.rc();
2268
2269 /* release the lock before a VMR3* call (EMT might wait for it, @bugref{7648})! */
2270 alock.release();
2271
2272 int vrc = VMR3Reset(ptrVM.rawUVM());
2273
2274 HRESULT rc = RT_SUCCESS(vrc) ? S_OK :
2275 setError(VBOX_E_VM_ERROR,
2276 tr("Could not reset the machine (%Rrc)"),
2277 vrc);
2278
2279 LogFlowThisFunc(("mMachineState=%d, rc=%Rhrc\n", mMachineState, rc));
2280 LogFlowThisFuncLeave();
2281 return rc;
2282}
2283
2284/*static*/ DECLCALLBACK(int) Console::i_unplugCpu(Console *pThis, PUVM pUVM, VMCPUID idCpu)
2285{
2286 LogFlowFunc(("pThis=%p pVM=%p idCpu=%u\n", pThis, pUVM, idCpu));
2287
2288 AssertReturn(pThis, VERR_INVALID_PARAMETER);
2289
2290 int vrc = PDMR3DeviceDetach(pUVM, "acpi", 0, idCpu, 0);
2291 Log(("UnplugCpu: rc=%Rrc\n", vrc));
2292
2293 return vrc;
2294}
2295
2296HRESULT Console::i_doCPURemove(ULONG aCpu, PUVM pUVM)
2297{
2298 HRESULT rc = S_OK;
2299
2300 LogFlowThisFuncEnter();
2301
2302 AutoCaller autoCaller(this);
2303 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2304
2305 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2306
2307 LogFlowThisFunc(("mMachineState=%d\n", mMachineState));
2308 AssertReturn(m_pVMMDev, E_FAIL);
2309 PPDMIVMMDEVPORT pVmmDevPort = m_pVMMDev->getVMMDevPort();
2310 AssertReturn(pVmmDevPort, E_FAIL);
2311
2312 if ( mMachineState != MachineState_Running
2313 && mMachineState != MachineState_Teleporting
2314 && mMachineState != MachineState_LiveSnapshotting
2315 )
2316 return i_setInvalidMachineStateError();
2317
2318 /* Check if the CPU is present */
2319 BOOL fCpuAttached;
2320 rc = mMachine->GetCPUStatus(aCpu, &fCpuAttached);
2321 if (FAILED(rc))
2322 return rc;
2323 if (!fCpuAttached)
2324 return setError(E_FAIL, tr("CPU %d is not attached"), aCpu);
2325
2326 /* Leave the lock before any EMT/VMMDev call. */
2327 alock.release();
2328 bool fLocked = true;
2329
2330 /* Check if the CPU is unlocked */
2331 PPDMIBASE pBase;
2332 int vrc = PDMR3QueryDeviceLun(pUVM, "acpi", 0, aCpu, &pBase);
2333 if (RT_SUCCESS(vrc))
2334 {
2335 Assert(pBase);
2336 PPDMIACPIPORT pApicPort = PDMIBASE_QUERY_INTERFACE(pBase, PDMIACPIPORT);
2337
2338 /* Notify the guest if possible. */
2339 uint32_t idCpuCore, idCpuPackage;
2340 vrc = VMR3GetCpuCoreAndPackageIdFromCpuId(pUVM, aCpu, &idCpuCore, &idCpuPackage); AssertRC(vrc);
2341 if (RT_SUCCESS(vrc))
2342 vrc = pVmmDevPort->pfnCpuHotUnplug(pVmmDevPort, idCpuCore, idCpuPackage);
2343 if (RT_SUCCESS(vrc))
2344 {
2345 unsigned cTries = 100;
2346 do
2347 {
2348 /* It will take some time until the event is processed in the guest. Wait... */
2349 vrc = pApicPort ? pApicPort->pfnGetCpuStatus(pApicPort, aCpu, &fLocked) : VERR_INVALID_POINTER;
2350 if (RT_SUCCESS(vrc) && !fLocked)
2351 break;
2352
2353 /* Sleep a bit */
2354 RTThreadSleep(100);
2355 } while (cTries-- > 0);
2356 }
2357 else if (vrc == VERR_VMMDEV_CPU_HOTPLUG_NOT_MONITORED_BY_GUEST)
2358 {
2359 /* Query one time. It is possible that the user ejected the CPU. */
2360 vrc = pApicPort ? pApicPort->pfnGetCpuStatus(pApicPort, aCpu, &fLocked) : VERR_INVALID_POINTER;
2361 }
2362 }
2363
2364 /* If the CPU was unlocked we can detach it now. */
2365 if (RT_SUCCESS(vrc) && !fLocked)
2366 {
2367 /*
2368 * Call worker in EMT, that's faster and safer than doing everything
2369 * using VMR3ReqCall.
2370 */
2371 PVMREQ pReq;
2372 vrc = VMR3ReqCallU(pUVM, 0, &pReq, 0 /* no wait! */, VMREQFLAGS_VBOX_STATUS,
2373 (PFNRT)i_unplugCpu, 3,
2374 this, pUVM, (VMCPUID)aCpu);
2375
2376 if (vrc == VERR_TIMEOUT)
2377 vrc = VMR3ReqWait(pReq, RT_INDEFINITE_WAIT);
2378 AssertRC(vrc);
2379 if (RT_SUCCESS(vrc))
2380 vrc = pReq->iStatus;
2381 VMR3ReqFree(pReq);
2382
2383 if (RT_SUCCESS(vrc))
2384 {
2385 /* Detach it from the VM */
2386 vrc = VMR3HotUnplugCpu(pUVM, aCpu);
2387 AssertRC(vrc);
2388 }
2389 else
2390 rc = setError(VBOX_E_VM_ERROR,
2391 tr("Hot-Remove failed (rc=%Rrc)"), vrc);
2392 }
2393 else
2394 rc = setError(VBOX_E_VM_ERROR,
2395 tr("Hot-Remove was aborted because the CPU may still be used by the guest"), VERR_RESOURCE_BUSY);
2396
2397 LogFlowThisFunc(("mMachineState=%d, rc=%Rhrc\n", mMachineState, rc));
2398 LogFlowThisFuncLeave();
2399 return rc;
2400}
2401
2402/*static*/ DECLCALLBACK(int) Console::i_plugCpu(Console *pThis, PUVM pUVM, VMCPUID idCpu)
2403{
2404 LogFlowFunc(("pThis=%p uCpu=%u\n", pThis, idCpu));
2405
2406 AssertReturn(pThis, VERR_INVALID_PARAMETER);
2407
2408 int rc = VMR3HotPlugCpu(pUVM, idCpu);
2409 AssertRC(rc);
2410
2411 PCFGMNODE pInst = CFGMR3GetChild(CFGMR3GetRootU(pUVM), "Devices/acpi/0/");
2412 AssertRelease(pInst);
2413 /* nuke anything which might have been left behind. */
2414 CFGMR3RemoveNode(CFGMR3GetChildF(pInst, "LUN#%u", idCpu));
2415
2416#define RC_CHECK() do { if (RT_FAILURE(rc)) { AssertReleaseRC(rc); break; } } while (0)
2417
2418 PCFGMNODE pLunL0;
2419 PCFGMNODE pCfg;
2420 rc = CFGMR3InsertNodeF(pInst, &pLunL0, "LUN#%u", idCpu); RC_CHECK();
2421 rc = CFGMR3InsertString(pLunL0, "Driver", "ACPICpu"); RC_CHECK();
2422 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
2423
2424 /*
2425 * Attach the driver.
2426 */
2427 PPDMIBASE pBase;
2428 rc = PDMR3DeviceAttach(pUVM, "acpi", 0, idCpu, 0, &pBase); RC_CHECK();
2429
2430 Log(("PlugCpu: rc=%Rrc\n", rc));
2431
2432 CFGMR3Dump(pInst);
2433
2434#undef RC_CHECK
2435
2436 return VINF_SUCCESS;
2437}
2438
2439HRESULT Console::i_doCPUAdd(ULONG aCpu, PUVM pUVM)
2440{
2441 HRESULT rc = S_OK;
2442
2443 LogFlowThisFuncEnter();
2444
2445 AutoCaller autoCaller(this);
2446 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2447
2448 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2449
2450 LogFlowThisFunc(("mMachineState=%d\n", mMachineState));
2451 if ( mMachineState != MachineState_Running
2452 && mMachineState != MachineState_Teleporting
2453 && mMachineState != MachineState_LiveSnapshotting
2454 /** @todo r=bird: This should be allowed on paused VMs as well. Later. */
2455 )
2456 return i_setInvalidMachineStateError();
2457
2458 AssertReturn(m_pVMMDev, E_FAIL);
2459 PPDMIVMMDEVPORT pDevPort = m_pVMMDev->getVMMDevPort();
2460 AssertReturn(pDevPort, E_FAIL);
2461
2462 /* Check if the CPU is present */
2463 BOOL fCpuAttached;
2464 rc = mMachine->GetCPUStatus(aCpu, &fCpuAttached);
2465 if (FAILED(rc)) return rc;
2466
2467 if (fCpuAttached)
2468 return setError(E_FAIL,
2469 tr("CPU %d is already attached"), aCpu);
2470
2471 /*
2472 * Call worker in EMT, that's faster and safer than doing everything
2473 * using VMR3ReqCall. Note that we separate VMR3ReqCall from VMR3ReqWait
2474 * here to make requests from under the lock in order to serialize them.
2475 */
2476 PVMREQ pReq;
2477 int vrc = VMR3ReqCallU(pUVM, 0, &pReq, 0 /* no wait! */, VMREQFLAGS_VBOX_STATUS,
2478 (PFNRT)i_plugCpu, 3,
2479 this, pUVM, aCpu);
2480
2481 /* release the lock before a VMR3* call (EMT might wait for it, @bugref{7648})! */
2482 alock.release();
2483
2484 if (vrc == VERR_TIMEOUT)
2485 vrc = VMR3ReqWait(pReq, RT_INDEFINITE_WAIT);
2486 AssertRC(vrc);
2487 if (RT_SUCCESS(vrc))
2488 vrc = pReq->iStatus;
2489 VMR3ReqFree(pReq);
2490
2491 if (RT_SUCCESS(vrc))
2492 {
2493 /* Notify the guest if possible. */
2494 uint32_t idCpuCore, idCpuPackage;
2495 vrc = VMR3GetCpuCoreAndPackageIdFromCpuId(pUVM, aCpu, &idCpuCore, &idCpuPackage); AssertRC(vrc);
2496 if (RT_SUCCESS(vrc))
2497 vrc = pDevPort->pfnCpuHotPlug(pDevPort, idCpuCore, idCpuPackage);
2498 /** @todo warning if the guest doesn't support it */
2499 }
2500 else
2501 rc = setError(VBOX_E_VM_ERROR,
2502 tr("Could not add CPU to the machine (%Rrc)"),
2503 vrc);
2504
2505 LogFlowThisFunc(("mMachineState=%d, rc=%Rhrc\n", mMachineState, rc));
2506 LogFlowThisFuncLeave();
2507 return rc;
2508}
2509
2510HRESULT Console::pause()
2511{
2512 LogFlowThisFuncEnter();
2513
2514 HRESULT rc = i_pause(Reason_Unspecified);
2515
2516 LogFlowThisFunc(("rc=%Rhrc\n", rc));
2517 LogFlowThisFuncLeave();
2518 return rc;
2519}
2520
2521HRESULT Console::resume()
2522{
2523 LogFlowThisFuncEnter();
2524
2525 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2526
2527 if (mMachineState != MachineState_Paused)
2528 return setError(VBOX_E_INVALID_VM_STATE,
2529 tr("Cannot resume the machine as it is not paused (machine state: %s)"),
2530 Global::stringifyMachineState(mMachineState));
2531
2532 HRESULT rc = i_resume(Reason_Unspecified, alock);
2533
2534 LogFlowThisFunc(("rc=%Rhrc\n", rc));
2535 LogFlowThisFuncLeave();
2536 return rc;
2537}
2538
2539HRESULT Console::powerButton()
2540{
2541 LogFlowThisFuncEnter();
2542
2543 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2544
2545 if ( mMachineState != MachineState_Running
2546 && mMachineState != MachineState_Teleporting
2547 && mMachineState != MachineState_LiveSnapshotting
2548 )
2549 return i_setInvalidMachineStateError();
2550
2551 /* get the VM handle. */
2552 SafeVMPtr ptrVM(this);
2553 if (!ptrVM.isOk())
2554 return ptrVM.rc();
2555
2556 // no need to release lock, as there are no cross-thread callbacks
2557
2558 /* get the acpi device interface and press the button. */
2559 PPDMIBASE pBase;
2560 int vrc = PDMR3QueryDeviceLun(ptrVM.rawUVM(), "acpi", 0, 0, &pBase);
2561 if (RT_SUCCESS(vrc))
2562 {
2563 Assert(pBase);
2564 PPDMIACPIPORT pPort = PDMIBASE_QUERY_INTERFACE(pBase, PDMIACPIPORT);
2565 if (pPort)
2566 vrc = pPort->pfnPowerButtonPress(pPort);
2567 else
2568 vrc = VERR_PDM_MISSING_INTERFACE;
2569 }
2570
2571 HRESULT rc = RT_SUCCESS(vrc) ? S_OK :
2572 setError(VBOX_E_PDM_ERROR,
2573 tr("Controlled power off failed (%Rrc)"),
2574 vrc);
2575
2576 LogFlowThisFunc(("rc=%Rhrc\n", rc));
2577 LogFlowThisFuncLeave();
2578 return rc;
2579}
2580
2581HRESULT Console::getPowerButtonHandled(BOOL *aHandled)
2582{
2583 LogFlowThisFuncEnter();
2584
2585 *aHandled = FALSE;
2586
2587 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2588
2589 if ( mMachineState != MachineState_Running
2590 && mMachineState != MachineState_Teleporting
2591 && mMachineState != MachineState_LiveSnapshotting
2592 )
2593 return i_setInvalidMachineStateError();
2594
2595 /* get the VM handle. */
2596 SafeVMPtr ptrVM(this);
2597 if (!ptrVM.isOk())
2598 return ptrVM.rc();
2599
2600 // no need to release lock, as there are no cross-thread callbacks
2601
2602 /* get the acpi device interface and check if the button press was handled. */
2603 PPDMIBASE pBase;
2604 int vrc = PDMR3QueryDeviceLun(ptrVM.rawUVM(), "acpi", 0, 0, &pBase);
2605 if (RT_SUCCESS(vrc))
2606 {
2607 Assert(pBase);
2608 PPDMIACPIPORT pPort = PDMIBASE_QUERY_INTERFACE(pBase, PDMIACPIPORT);
2609 if (pPort)
2610 {
2611 bool fHandled = false;
2612 vrc = pPort->pfnGetPowerButtonHandled(pPort, &fHandled);
2613 if (RT_SUCCESS(vrc))
2614 *aHandled = fHandled;
2615 }
2616 else
2617 vrc = VERR_PDM_MISSING_INTERFACE;
2618 }
2619
2620 HRESULT rc = RT_SUCCESS(vrc) ? S_OK :
2621 setError(VBOX_E_PDM_ERROR,
2622 tr("Checking if the ACPI Power Button event was handled by the guest OS failed (%Rrc)"),
2623 vrc);
2624
2625 LogFlowThisFunc(("rc=%Rhrc\n", rc));
2626 LogFlowThisFuncLeave();
2627 return rc;
2628}
2629
2630HRESULT Console::getGuestEnteredACPIMode(BOOL *aEntered)
2631{
2632 LogFlowThisFuncEnter();
2633
2634 *aEntered = FALSE;
2635
2636 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2637
2638 if ( mMachineState != MachineState_Running
2639 && mMachineState != MachineState_Teleporting
2640 && mMachineState != MachineState_LiveSnapshotting
2641 )
2642 return setError(VBOX_E_INVALID_VM_STATE,
2643 tr("Invalid machine state %s when checking if the guest entered the ACPI mode)"),
2644 Global::stringifyMachineState(mMachineState));
2645
2646 /* get the VM handle. */
2647 SafeVMPtr ptrVM(this);
2648 if (!ptrVM.isOk())
2649 return ptrVM.rc();
2650
2651 // no need to release lock, as there are no cross-thread callbacks
2652
2653 /* get the acpi device interface and query the information. */
2654 PPDMIBASE pBase;
2655 int vrc = PDMR3QueryDeviceLun(ptrVM.rawUVM(), "acpi", 0, 0, &pBase);
2656 if (RT_SUCCESS(vrc))
2657 {
2658 Assert(pBase);
2659 PPDMIACPIPORT pPort = PDMIBASE_QUERY_INTERFACE(pBase, PDMIACPIPORT);
2660 if (pPort)
2661 {
2662 bool fEntered = false;
2663 vrc = pPort->pfnGetGuestEnteredACPIMode(pPort, &fEntered);
2664 if (RT_SUCCESS(vrc))
2665 *aEntered = fEntered;
2666 }
2667 else
2668 vrc = VERR_PDM_MISSING_INTERFACE;
2669 }
2670
2671 LogFlowThisFuncLeave();
2672 return S_OK;
2673}
2674
2675HRESULT Console::sleepButton()
2676{
2677 LogFlowThisFuncEnter();
2678
2679 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2680
2681 if ( mMachineState != MachineState_Running
2682 && mMachineState != MachineState_Teleporting
2683 && mMachineState != MachineState_LiveSnapshotting)
2684 return i_setInvalidMachineStateError();
2685
2686 /* get the VM handle. */
2687 SafeVMPtr ptrVM(this);
2688 if (!ptrVM.isOk())
2689 return ptrVM.rc();
2690
2691 // no need to release lock, as there are no cross-thread callbacks
2692
2693 /* get the acpi device interface and press the sleep button. */
2694 PPDMIBASE pBase;
2695 int vrc = PDMR3QueryDeviceLun(ptrVM.rawUVM(), "acpi", 0, 0, &pBase);
2696 if (RT_SUCCESS(vrc))
2697 {
2698 Assert(pBase);
2699 PPDMIACPIPORT pPort = PDMIBASE_QUERY_INTERFACE(pBase, PDMIACPIPORT);
2700 if (pPort)
2701 vrc = pPort->pfnSleepButtonPress(pPort);
2702 else
2703 vrc = VERR_PDM_MISSING_INTERFACE;
2704 }
2705
2706 HRESULT rc = RT_SUCCESS(vrc) ? S_OK :
2707 setError(VBOX_E_PDM_ERROR,
2708 tr("Sending sleep button event failed (%Rrc)"),
2709 vrc);
2710
2711 LogFlowThisFunc(("rc=%Rhrc\n", rc));
2712 LogFlowThisFuncLeave();
2713 return rc;
2714}
2715
2716/** read the value of a LED. */
2717inline uint32_t readAndClearLed(PPDMLED pLed)
2718{
2719 if (!pLed)
2720 return 0;
2721 uint32_t u32 = pLed->Actual.u32 | pLed->Asserted.u32;
2722 pLed->Asserted.u32 = 0;
2723 return u32;
2724}
2725
2726HRESULT Console::getDeviceActivity(const std::vector<DeviceType_T> &aType,
2727 std::vector<DeviceActivity_T> &aActivity)
2728{
2729 /*
2730 * Note: we don't lock the console object here because
2731 * readAndClearLed() should be thread safe.
2732 */
2733
2734 aActivity.resize(aType.size());
2735
2736 size_t iType;
2737 for (iType = 0; iType < aType.size(); ++iType)
2738 {
2739 /* Get LED array to read */
2740 PDMLEDCORE SumLed = {0};
2741 switch (aType[iType])
2742 {
2743 case DeviceType_Floppy:
2744 case DeviceType_DVD:
2745 case DeviceType_HardDisk:
2746 {
2747 for (unsigned i = 0; i < RT_ELEMENTS(mapStorageLeds); ++i)
2748 if (maStorageDevType[i] == aType[iType])
2749 SumLed.u32 |= readAndClearLed(mapStorageLeds[i]);
2750 break;
2751 }
2752
2753 case DeviceType_Network:
2754 {
2755 for (unsigned i = 0; i < RT_ELEMENTS(mapNetworkLeds); ++i)
2756 SumLed.u32 |= readAndClearLed(mapNetworkLeds[i]);
2757 break;
2758 }
2759
2760 case DeviceType_USB:
2761 {
2762 for (unsigned i = 0; i < RT_ELEMENTS(mapUSBLed); ++i)
2763 SumLed.u32 |= readAndClearLed(mapUSBLed[i]);
2764 break;
2765 }
2766
2767 case DeviceType_SharedFolder:
2768 {
2769 SumLed.u32 |= readAndClearLed(mapSharedFolderLed);
2770 break;
2771 }
2772
2773 case DeviceType_Graphics3D:
2774 {
2775 SumLed.u32 |= readAndClearLed(mapCrOglLed);
2776 break;
2777 }
2778
2779 default:
2780 return setError(E_INVALIDARG,
2781 tr("Invalid device type: %d"),
2782 aType[iType]);
2783 }
2784
2785 /* Compose the result */
2786 switch (SumLed.u32 & (PDMLED_READING | PDMLED_WRITING))
2787 {
2788 case 0:
2789 aActivity[iType] = DeviceActivity_Idle;
2790 break;
2791 case PDMLED_READING:
2792 aActivity[iType] = DeviceActivity_Reading;
2793 break;
2794 case PDMLED_WRITING:
2795 case PDMLED_READING | PDMLED_WRITING:
2796 aActivity[iType] = DeviceActivity_Writing;
2797 break;
2798 }
2799 }
2800
2801 return S_OK;
2802}
2803
2804HRESULT Console::attachUSBDevice(const com::Guid &aId, const com::Utf8Str &aCaptureFilename)
2805{
2806#ifdef VBOX_WITH_USB
2807 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2808
2809 if ( mMachineState != MachineState_Running
2810 && mMachineState != MachineState_Paused)
2811 return setError(VBOX_E_INVALID_VM_STATE,
2812 tr("Cannot attach a USB device to the machine which is not running or paused (machine state: %s)"),
2813 Global::stringifyMachineState(mMachineState));
2814
2815 /* Get the VM handle. */
2816 SafeVMPtr ptrVM(this);
2817 if (!ptrVM.isOk())
2818 return ptrVM.rc();
2819
2820 /* Don't proceed unless we have a USB controller. */
2821 if (!mfVMHasUsbController)
2822 return setError(VBOX_E_PDM_ERROR,
2823 tr("The virtual machine does not have a USB controller"));
2824
2825 /* release the lock because the USB Proxy service may call us back
2826 * (via onUSBDeviceAttach()) */
2827 alock.release();
2828
2829 /* Request the device capture */
2830 return mControl->CaptureUSBDevice(Bstr(aId.toString()).raw(), Bstr(aCaptureFilename).raw());
2831
2832#else /* !VBOX_WITH_USB */
2833 return setError(VBOX_E_PDM_ERROR,
2834 tr("The virtual machine does not have a USB controller"));
2835#endif /* !VBOX_WITH_USB */
2836}
2837
2838HRESULT Console::detachUSBDevice(const com::Guid &aId, ComPtr<IUSBDevice> &aDevice)
2839{
2840 RT_NOREF(aDevice);
2841#ifdef VBOX_WITH_USB
2842
2843 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2844
2845 /* Find it. */
2846 ComObjPtr<OUSBDevice> pUSBDevice;
2847 USBDeviceList::iterator it = mUSBDevices.begin();
2848 while (it != mUSBDevices.end())
2849 {
2850 if ((*it)->i_id() == aId)
2851 {
2852 pUSBDevice = *it;
2853 break;
2854 }
2855 ++it;
2856 }
2857
2858 if (!pUSBDevice)
2859 return setError(E_INVALIDARG,
2860 tr("USB device with UUID {%RTuuid} is not attached to this machine"),
2861 aId.raw());
2862
2863 /* Remove the device from the collection, it is re-added below for failures */
2864 mUSBDevices.erase(it);
2865
2866 /*
2867 * Inform the USB device and USB proxy about what's cooking.
2868 */
2869 alock.release();
2870 HRESULT rc = mControl->DetachUSBDevice(Bstr(aId.toString()).raw(), false /* aDone */);
2871 if (FAILED(rc))
2872 {
2873 /* Re-add the device to the collection */
2874 alock.acquire();
2875 mUSBDevices.push_back(pUSBDevice);
2876 return rc;
2877 }
2878
2879 /* Request the PDM to detach the USB device. */
2880 rc = i_detachUSBDevice(pUSBDevice);
2881 if (SUCCEEDED(rc))
2882 {
2883 /* Request the device release. Even if it fails, the device will
2884 * remain as held by proxy, which is OK for us (the VM process). */
2885 rc = mControl->DetachUSBDevice(Bstr(aId.toString()).raw(), true /* aDone */);
2886 }
2887 else
2888 {
2889 /* Re-add the device to the collection */
2890 alock.acquire();
2891 mUSBDevices.push_back(pUSBDevice);
2892 }
2893
2894 return rc;
2895
2896
2897#else /* !VBOX_WITH_USB */
2898 return setError(VBOX_E_PDM_ERROR,
2899 tr("The virtual machine does not have a USB controller"));
2900#endif /* !VBOX_WITH_USB */
2901}
2902
2903
2904HRESULT Console::findUSBDeviceByAddress(const com::Utf8Str &aName, ComPtr<IUSBDevice> &aDevice)
2905{
2906#ifdef VBOX_WITH_USB
2907
2908 aDevice = NULL;
2909
2910 SafeIfaceArray<IUSBDevice> devsvec;
2911 HRESULT rc = COMGETTER(USBDevices)(ComSafeArrayAsOutParam(devsvec));
2912 if (FAILED(rc)) return rc;
2913
2914 for (size_t i = 0; i < devsvec.size(); ++i)
2915 {
2916 Bstr address;
2917 rc = devsvec[i]->COMGETTER(Address)(address.asOutParam());
2918 if (FAILED(rc)) return rc;
2919 if (address == Bstr(aName))
2920 {
2921 ComObjPtr<OUSBDevice> pUSBDevice;
2922 pUSBDevice.createObject();
2923 pUSBDevice->init(devsvec[i]);
2924 return pUSBDevice.queryInterfaceTo(aDevice.asOutParam());
2925 }
2926 }
2927
2928 return setErrorNoLog(VBOX_E_OBJECT_NOT_FOUND,
2929 tr("Could not find a USB device with address '%s'"),
2930 aName.c_str());
2931
2932#else /* !VBOX_WITH_USB */
2933 return E_NOTIMPL;
2934#endif /* !VBOX_WITH_USB */
2935}
2936
2937HRESULT Console::findUSBDeviceById(const com::Guid &aId, ComPtr<IUSBDevice> &aDevice)
2938{
2939#ifdef VBOX_WITH_USB
2940
2941 aDevice = NULL;
2942
2943 SafeIfaceArray<IUSBDevice> devsvec;
2944 HRESULT rc = COMGETTER(USBDevices)(ComSafeArrayAsOutParam(devsvec));
2945 if (FAILED(rc)) return rc;
2946
2947 for (size_t i = 0; i < devsvec.size(); ++i)
2948 {
2949 Bstr id;
2950 rc = devsvec[i]->COMGETTER(Id)(id.asOutParam());
2951 if (FAILED(rc)) return rc;
2952 if (Utf8Str(id) == aId.toString())
2953 {
2954 ComObjPtr<OUSBDevice> pUSBDevice;
2955 pUSBDevice.createObject();
2956 pUSBDevice->init(devsvec[i]);
2957 ComObjPtr<IUSBDevice> iUSBDevice = static_cast <ComObjPtr<IUSBDevice> > (pUSBDevice);
2958 return iUSBDevice.queryInterfaceTo(aDevice.asOutParam());
2959 }
2960 }
2961
2962 return setErrorNoLog(VBOX_E_OBJECT_NOT_FOUND,
2963 tr("Could not find a USB device with uuid {%RTuuid}"),
2964 Guid(aId).raw());
2965
2966#else /* !VBOX_WITH_USB */
2967 return E_NOTIMPL;
2968#endif /* !VBOX_WITH_USB */
2969}
2970
2971HRESULT Console::createSharedFolder(const com::Utf8Str &aName, const com::Utf8Str &aHostPath, BOOL aWritable, BOOL aAutomount)
2972{
2973 LogFlowThisFunc(("Entering for '%s' -> '%s'\n", aName.c_str(), aHostPath.c_str()));
2974
2975 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2976
2977 /// @todo see @todo in AttachUSBDevice() about the Paused state
2978 if (mMachineState == MachineState_Saved)
2979 return setError(VBOX_E_INVALID_VM_STATE,
2980 tr("Cannot create a transient shared folder on the machine in the saved state"));
2981 if ( mMachineState != MachineState_PoweredOff
2982 && mMachineState != MachineState_Teleported
2983 && mMachineState != MachineState_Aborted
2984 && mMachineState != MachineState_Running
2985 && mMachineState != MachineState_Paused
2986 )
2987 return setError(VBOX_E_INVALID_VM_STATE,
2988 tr("Cannot create a transient shared folder on the machine while it is changing the state (machine state: %s)"),
2989 Global::stringifyMachineState(mMachineState));
2990
2991 ComObjPtr<SharedFolder> pSharedFolder;
2992 HRESULT rc = i_findSharedFolder(aName, pSharedFolder, false /* aSetError */);
2993 if (SUCCEEDED(rc))
2994 return setError(VBOX_E_FILE_ERROR,
2995 tr("Shared folder named '%s' already exists"),
2996 aName.c_str());
2997
2998 pSharedFolder.createObject();
2999 rc = pSharedFolder->init(this,
3000 aName,
3001 aHostPath,
3002 !!aWritable,
3003 !!aAutomount,
3004 true /* fFailOnError */);
3005 if (FAILED(rc)) return rc;
3006
3007 /* If the VM is online and supports shared folders, share this folder
3008 * under the specified name. (Ignore any failure to obtain the VM handle.) */
3009 SafeVMPtrQuiet ptrVM(this);
3010 if ( ptrVM.isOk()
3011 && m_pVMMDev
3012 && m_pVMMDev->isShFlActive()
3013 )
3014 {
3015 /* first, remove the machine or the global folder if there is any */
3016 SharedFolderDataMap::const_iterator it;
3017 if (i_findOtherSharedFolder(aName, it))
3018 {
3019 rc = i_removeSharedFolder(aName);
3020 if (FAILED(rc))
3021 return rc;
3022 }
3023
3024 /* second, create the given folder */
3025 rc = i_createSharedFolder(aName, SharedFolderData(aHostPath, !!aWritable, !!aAutomount));
3026 if (FAILED(rc))
3027 return rc;
3028 }
3029
3030 m_mapSharedFolders.insert(std::make_pair(aName, pSharedFolder));
3031
3032 /* Notify console callbacks after the folder is added to the list. */
3033 alock.release();
3034 fireSharedFolderChangedEvent(mEventSource, Scope_Session);
3035
3036 LogFlowThisFunc(("Leaving for '%s' -> '%s'\n", aName.c_str(), aHostPath.c_str()));
3037
3038 return rc;
3039}
3040
3041HRESULT Console::removeSharedFolder(const com::Utf8Str &aName)
3042{
3043 LogFlowThisFunc(("Entering for '%s'\n", aName.c_str()));
3044
3045 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3046
3047 /// @todo see @todo in AttachUSBDevice() about the Paused state
3048 if (mMachineState == MachineState_Saved)
3049 return setError(VBOX_E_INVALID_VM_STATE,
3050 tr("Cannot remove a transient shared folder from the machine in the saved state"));
3051 if ( mMachineState != MachineState_PoweredOff
3052 && mMachineState != MachineState_Teleported
3053 && mMachineState != MachineState_Aborted
3054 && mMachineState != MachineState_Running
3055 && mMachineState != MachineState_Paused
3056 )
3057 return setError(VBOX_E_INVALID_VM_STATE,
3058 tr("Cannot remove a transient shared folder from the machine while it is changing the state (machine state: %s)"),
3059 Global::stringifyMachineState(mMachineState));
3060
3061 ComObjPtr<SharedFolder> pSharedFolder;
3062 HRESULT rc = i_findSharedFolder(aName, pSharedFolder, true /* aSetError */);
3063 if (FAILED(rc)) return rc;
3064
3065 /* protect the VM handle (if not NULL) */
3066 SafeVMPtrQuiet ptrVM(this);
3067 if ( ptrVM.isOk()
3068 && m_pVMMDev
3069 && m_pVMMDev->isShFlActive()
3070 )
3071 {
3072 /* if the VM is online and supports shared folders, UNshare this
3073 * folder. */
3074
3075 /* first, remove the given folder */
3076 rc = i_removeSharedFolder(aName);
3077 if (FAILED(rc)) return rc;
3078
3079 /* first, remove the machine or the global folder if there is any */
3080 SharedFolderDataMap::const_iterator it;
3081 if (i_findOtherSharedFolder(aName, it))
3082 {
3083 rc = i_createSharedFolder(aName, it->second);
3084 /* don't check rc here because we need to remove the console
3085 * folder from the collection even on failure */
3086 }
3087 }
3088
3089 m_mapSharedFolders.erase(aName);
3090
3091 /* Notify console callbacks after the folder is removed from the list. */
3092 alock.release();
3093 fireSharedFolderChangedEvent(mEventSource, Scope_Session);
3094
3095 LogFlowThisFunc(("Leaving for '%s'\n", aName.c_str()));
3096
3097 return rc;
3098}
3099
3100HRESULT Console::addDiskEncryptionPassword(const com::Utf8Str &aId, const com::Utf8Str &aPassword,
3101 BOOL aClearOnSuspend)
3102{
3103 if ( aId.isEmpty()
3104 || aPassword.isEmpty())
3105 return setError(E_FAIL, tr("The ID and password must be both valid"));
3106
3107 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3108
3109 HRESULT hrc = S_OK;
3110 size_t cbKey = aPassword.length() + 1; /* Include terminator */
3111 const uint8_t *pbKey = (const uint8_t *)aPassword.c_str();
3112
3113 int rc = m_pKeyStore->addSecretKey(aId, pbKey, cbKey);
3114 if (RT_SUCCESS(rc))
3115 {
3116 unsigned cDisksConfigured = 0;
3117
3118 hrc = i_configureEncryptionForDisk(aId, &cDisksConfigured);
3119 if (SUCCEEDED(hrc))
3120 {
3121 SecretKey *pKey = NULL;
3122 rc = m_pKeyStore->retainSecretKey(aId, &pKey);
3123 AssertRCReturn(rc, E_FAIL);
3124
3125 pKey->setUsers(cDisksConfigured);
3126 pKey->setRemoveOnSuspend(!!aClearOnSuspend);
3127 m_pKeyStore->releaseSecretKey(aId);
3128 m_cDisksPwProvided += cDisksConfigured;
3129
3130 if ( m_cDisksPwProvided == m_cDisksEncrypted
3131 && mMachineState == MachineState_Paused)
3132 {
3133 /* get the VM handle. */
3134 SafeVMPtr ptrVM(this);
3135 if (!ptrVM.isOk())
3136 return ptrVM.rc();
3137
3138 alock.release();
3139 int vrc = VMR3Resume(ptrVM.rawUVM(), VMRESUMEREASON_RECONFIG);
3140
3141 hrc = RT_SUCCESS(vrc) ? S_OK :
3142 setError(VBOX_E_VM_ERROR,
3143 tr("Could not resume the machine execution (%Rrc)"),
3144 vrc);
3145 }
3146 }
3147 }
3148 else if (rc == VERR_ALREADY_EXISTS)
3149 hrc = setError(VBOX_E_OBJECT_IN_USE, tr("A password with the given ID already exists"));
3150 else if (rc == VERR_NO_MEMORY)
3151 hrc = setError(E_FAIL, tr("Failed to allocate enough secure memory for the key"));
3152 else
3153 hrc = setError(E_FAIL, tr("Unknown error happened while adding a password (%Rrc)"), rc);
3154
3155 return hrc;
3156}
3157
3158HRESULT Console::addDiskEncryptionPasswords(const std::vector<com::Utf8Str> &aIds, const std::vector<com::Utf8Str> &aPasswords,
3159 BOOL aClearOnSuspend)
3160{
3161 HRESULT hrc = S_OK;
3162
3163 if ( !aIds.size()
3164 || !aPasswords.size())
3165 return setError(E_FAIL, tr("IDs and passwords must not be empty"));
3166
3167 if (aIds.size() != aPasswords.size())
3168 return setError(E_FAIL, tr("The number of entries in the id and password arguments must match"));
3169
3170 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3171
3172 /* Check that the IDs do not exist already before changing anything. */
3173 for (unsigned i = 0; i < aIds.size(); i++)
3174 {
3175 SecretKey *pKey = NULL;
3176 int rc = m_pKeyStore->retainSecretKey(aIds[i], &pKey);
3177 if (rc != VERR_NOT_FOUND)
3178 {
3179 AssertPtr(pKey);
3180 if (pKey)
3181 pKey->release();
3182 return setError(VBOX_E_OBJECT_IN_USE, tr("A password with the given ID already exists"));
3183 }
3184 }
3185
3186 for (unsigned i = 0; i < aIds.size(); i++)
3187 {
3188 hrc = addDiskEncryptionPassword(aIds[i], aPasswords[i], aClearOnSuspend);
3189 if (FAILED(hrc))
3190 {
3191 /*
3192 * Try to remove already successfully added passwords from the map to not
3193 * change the state of the Console object.
3194 */
3195 ErrorInfoKeeper eik; /* Keep current error info or it gets deestroyed in the IPC methods below. */
3196 for (unsigned ii = 0; ii < i; ii++)
3197 {
3198 i_clearDiskEncryptionKeysOnAllAttachmentsWithKeyId(aIds[ii]);
3199 removeDiskEncryptionPassword(aIds[ii]);
3200 }
3201
3202 break;
3203 }
3204 }
3205
3206 return hrc;
3207}
3208
3209HRESULT Console::removeDiskEncryptionPassword(const com::Utf8Str &aId)
3210{
3211 if (aId.isEmpty())
3212 return setError(E_FAIL, tr("The ID must be valid"));
3213
3214 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3215
3216 SecretKey *pKey = NULL;
3217 int rc = m_pKeyStore->retainSecretKey(aId, &pKey);
3218 if (RT_SUCCESS(rc))
3219 {
3220 m_cDisksPwProvided -= pKey->getUsers();
3221 m_pKeyStore->releaseSecretKey(aId);
3222 rc = m_pKeyStore->deleteSecretKey(aId);
3223 AssertRCReturn(rc, E_FAIL);
3224 }
3225 else if (rc == VERR_NOT_FOUND)
3226 return setError(VBOX_E_OBJECT_NOT_FOUND, tr("A password with the ID \"%s\" does not exist"),
3227 aId.c_str());
3228 else
3229 return setError(E_FAIL, tr("Failed to remove password with ID \"%s\" (%Rrc)"),
3230 aId.c_str(), rc);
3231
3232 return S_OK;
3233}
3234
3235HRESULT Console::clearAllDiskEncryptionPasswords()
3236{
3237 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3238
3239 int rc = m_pKeyStore->deleteAllSecretKeys(false /* fSuspend */, false /* fForce */);
3240 if (rc == VERR_RESOURCE_IN_USE)
3241 return setError(VBOX_E_OBJECT_IN_USE, tr("A password is still in use by the VM"));
3242 else if (RT_FAILURE(rc))
3243 return setError(E_FAIL, tr("Deleting all passwords failed (%Rrc)"));
3244
3245 m_cDisksPwProvided = 0;
3246 return S_OK;
3247}
3248
3249// Non-interface public methods
3250/////////////////////////////////////////////////////////////////////////////
3251
3252/*static*/
3253HRESULT Console::i_setErrorStatic(HRESULT aResultCode, const char *pcsz, ...)
3254{
3255 va_list args;
3256 va_start(args, pcsz);
3257 HRESULT rc = setErrorInternal(aResultCode,
3258 getStaticClassIID(),
3259 getStaticComponentName(),
3260 Utf8Str(pcsz, args),
3261 false /* aWarning */,
3262 true /* aLogIt */);
3263 va_end(args);
3264 return rc;
3265}
3266
3267HRESULT Console::i_setInvalidMachineStateError()
3268{
3269 return setError(VBOX_E_INVALID_VM_STATE,
3270 tr("Invalid machine state: %s"),
3271 Global::stringifyMachineState(mMachineState));
3272}
3273
3274
3275/* static */
3276const char *Console::i_storageControllerTypeToStr(StorageControllerType_T enmCtrlType)
3277{
3278 switch (enmCtrlType)
3279 {
3280 case StorageControllerType_LsiLogic:
3281 return "lsilogicscsi";
3282 case StorageControllerType_BusLogic:
3283 return "buslogic";
3284 case StorageControllerType_LsiLogicSas:
3285 return "lsilogicsas";
3286 case StorageControllerType_IntelAhci:
3287 return "ahci";
3288 case StorageControllerType_PIIX3:
3289 case StorageControllerType_PIIX4:
3290 case StorageControllerType_ICH6:
3291 return "piix3ide";
3292 case StorageControllerType_I82078:
3293 return "i82078";
3294 case StorageControllerType_USB:
3295 return "Msd";
3296 case StorageControllerType_NVMe:
3297 return "nvme";
3298 default:
3299 return NULL;
3300 }
3301}
3302
3303HRESULT Console::i_storageBusPortDeviceToLun(StorageBus_T enmBus, LONG port, LONG device, unsigned &uLun)
3304{
3305 switch (enmBus)
3306 {
3307 case StorageBus_IDE:
3308 case StorageBus_Floppy:
3309 {
3310 AssertMsgReturn(port < 2 && port >= 0, ("%d\n", port), E_INVALIDARG);
3311 AssertMsgReturn(device < 2 && device >= 0, ("%d\n", device), E_INVALIDARG);
3312 uLun = 2 * port + device;
3313 return S_OK;
3314 }
3315 case StorageBus_SATA:
3316 case StorageBus_SCSI:
3317 case StorageBus_SAS:
3318 case StorageBus_PCIe:
3319 {
3320 uLun = port;
3321 return S_OK;
3322 }
3323 case StorageBus_USB:
3324 {
3325 /*
3326 * It is always the first lun, the port denotes the device instance
3327 * for the Msd device.
3328 */
3329 uLun = 0;
3330 return S_OK;
3331 }
3332 default:
3333 uLun = 0;
3334 AssertMsgFailedReturn(("%d\n", enmBus), E_INVALIDARG);
3335 }
3336}
3337
3338// private methods
3339/////////////////////////////////////////////////////////////////////////////
3340
3341/**
3342 * Suspend the VM before we do any medium or network attachment change.
3343 *
3344 * @param pUVM Safe VM handle.
3345 * @param pAlock The automatic lock instance. This is for when we have
3346 * to leave it in order to avoid deadlocks.
3347 * @param pfResume where to store the information if we need to resume
3348 * afterwards.
3349 */
3350HRESULT Console::i_suspendBeforeConfigChange(PUVM pUVM, AutoWriteLock *pAlock, bool *pfResume)
3351{
3352 *pfResume = false;
3353 VMSTATE enmVMState = VMR3GetStateU(pUVM);
3354 switch (enmVMState)
3355 {
3356 case VMSTATE_RUNNING:
3357 case VMSTATE_RESETTING:
3358 case VMSTATE_SOFT_RESETTING:
3359 {
3360 LogFlowFunc(("Suspending the VM...\n"));
3361 /* disable the callback to prevent Console-level state change */
3362 mVMStateChangeCallbackDisabled = true;
3363 if (pAlock)
3364 pAlock->release();
3365 int rc = VMR3Suspend(pUVM, VMSUSPENDREASON_RECONFIG);
3366 if (pAlock)
3367 pAlock->acquire();
3368 mVMStateChangeCallbackDisabled = false;
3369 if (RT_FAILURE(rc))
3370 return setErrorInternal(VBOX_E_INVALID_VM_STATE,
3371 COM_IIDOF(IConsole),
3372 getStaticComponentName(),
3373 Utf8StrFmt("Could suspend VM for medium change (%Rrc)", rc),
3374 false /*aWarning*/,
3375 true /*aLogIt*/);
3376 *pfResume = true;
3377 break;
3378 }
3379 case VMSTATE_SUSPENDED:
3380 break;
3381 default:
3382 return setErrorInternal(VBOX_E_INVALID_VM_STATE,
3383 COM_IIDOF(IConsole),
3384 getStaticComponentName(),
3385 Utf8StrFmt("Invalid state '%s' for changing medium",
3386 VMR3GetStateName(enmVMState)),
3387 false /*aWarning*/,
3388 true /*aLogIt*/);
3389 }
3390
3391 return S_OK;
3392}
3393
3394/**
3395 * Resume the VM after we did any medium or network attachment change.
3396 * This is the counterpart to Console::suspendBeforeConfigChange().
3397 *
3398 * @param pUVM Safe VM handle.
3399 */
3400void Console::i_resumeAfterConfigChange(PUVM pUVM)
3401{
3402 LogFlowFunc(("Resuming the VM...\n"));
3403 /* disable the callback to prevent Console-level state change */
3404 mVMStateChangeCallbackDisabled = true;
3405 int rc = VMR3Resume(pUVM, VMRESUMEREASON_RECONFIG);
3406 mVMStateChangeCallbackDisabled = false;
3407 AssertRC(rc);
3408 if (RT_FAILURE(rc))
3409 {
3410 VMSTATE enmVMState = VMR3GetStateU(pUVM);
3411 if (enmVMState == VMSTATE_SUSPENDED)
3412 {
3413 /* too bad, we failed. try to sync the console state with the VMM state */
3414 i_vmstateChangeCallback(pUVM, VMSTATE_SUSPENDED, enmVMState, this);
3415 }
3416 }
3417}
3418
3419/**
3420 * Process a medium change.
3421 *
3422 * @param aMediumAttachment The medium attachment with the new medium state.
3423 * @param fForce Force medium chance, if it is locked or not.
3424 * @param pUVM Safe VM handle.
3425 *
3426 * @note Locks this object for writing.
3427 */
3428HRESULT Console::i_doMediumChange(IMediumAttachment *aMediumAttachment, bool fForce, PUVM pUVM)
3429{
3430 AutoCaller autoCaller(this);
3431 AssertComRCReturnRC(autoCaller.rc());
3432
3433 /* We will need to release the write lock before calling EMT */
3434 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3435
3436 HRESULT rc = S_OK;
3437 const char *pszDevice = NULL;
3438
3439 SafeIfaceArray<IStorageController> ctrls;
3440 rc = mMachine->COMGETTER(StorageControllers)(ComSafeArrayAsOutParam(ctrls));
3441 AssertComRC(rc);
3442 IMedium *pMedium;
3443 rc = aMediumAttachment->COMGETTER(Medium)(&pMedium);
3444 AssertComRC(rc);
3445 Bstr mediumLocation;
3446 if (pMedium)
3447 {
3448 rc = pMedium->COMGETTER(Location)(mediumLocation.asOutParam());
3449 AssertComRC(rc);
3450 }
3451
3452 Bstr attCtrlName;
3453 rc = aMediumAttachment->COMGETTER(Controller)(attCtrlName.asOutParam());
3454 AssertComRC(rc);
3455 ComPtr<IStorageController> pStorageController;
3456 for (size_t i = 0; i < ctrls.size(); ++i)
3457 {
3458 Bstr ctrlName;
3459 rc = ctrls[i]->COMGETTER(Name)(ctrlName.asOutParam());
3460 AssertComRC(rc);
3461 if (attCtrlName == ctrlName)
3462 {
3463 pStorageController = ctrls[i];
3464 break;
3465 }
3466 }
3467 if (pStorageController.isNull())
3468 return setError(E_FAIL,
3469 tr("Could not find storage controller '%ls'"), attCtrlName.raw());
3470
3471 StorageControllerType_T enmCtrlType;
3472 rc = pStorageController->COMGETTER(ControllerType)(&enmCtrlType);
3473 AssertComRC(rc);
3474 pszDevice = i_storageControllerTypeToStr(enmCtrlType);
3475
3476 StorageBus_T enmBus;
3477 rc = pStorageController->COMGETTER(Bus)(&enmBus);
3478 AssertComRC(rc);
3479 ULONG uInstance;
3480 rc = pStorageController->COMGETTER(Instance)(&uInstance);
3481 AssertComRC(rc);
3482 BOOL fUseHostIOCache;
3483 rc = pStorageController->COMGETTER(UseHostIOCache)(&fUseHostIOCache);
3484 AssertComRC(rc);
3485
3486 /*
3487 * Suspend the VM first. The VM must not be running since it might have
3488 * pending I/O to the drive which is being changed.
3489 */
3490 bool fResume = false;
3491 rc = i_suspendBeforeConfigChange(pUVM, &alock, &fResume);
3492 if (FAILED(rc))
3493 return rc;
3494
3495 /*
3496 * Call worker in EMT, that's faster and safer than doing everything
3497 * using VMR3ReqCall. Note that we separate VMR3ReqCall from VMR3ReqWait
3498 * here to make requests from under the lock in order to serialize them.
3499 */
3500 PVMREQ pReq;
3501 int vrc = VMR3ReqCallU(pUVM, VMCPUID_ANY, &pReq, 0 /* no wait! */, VMREQFLAGS_VBOX_STATUS,
3502 (PFNRT)i_changeRemovableMedium, 8,
3503 this, pUVM, pszDevice, uInstance, enmBus, fUseHostIOCache, aMediumAttachment, fForce);
3504
3505 /* release the lock before waiting for a result (EMT might wait for it, @bugref{7648})! */
3506 alock.release();
3507
3508 if (vrc == VERR_TIMEOUT)
3509 vrc = VMR3ReqWait(pReq, RT_INDEFINITE_WAIT);
3510 AssertRC(vrc);
3511 if (RT_SUCCESS(vrc))
3512 vrc = pReq->iStatus;
3513 VMR3ReqFree(pReq);
3514
3515 if (fResume)
3516 i_resumeAfterConfigChange(pUVM);
3517
3518 if (RT_SUCCESS(vrc))
3519 {
3520 LogFlowThisFunc(("Returns S_OK\n"));
3521 return S_OK;
3522 }
3523
3524 if (pMedium)
3525 return setError(E_FAIL,
3526 tr("Could not mount the media/drive '%ls' (%Rrc)"),
3527 mediumLocation.raw(), vrc);
3528
3529 return setError(E_FAIL,
3530 tr("Could not unmount the currently mounted media/drive (%Rrc)"),
3531 vrc);
3532}
3533
3534/**
3535 * Performs the medium change in EMT.
3536 *
3537 * @returns VBox status code.
3538 *
3539 * @param pThis Pointer to the Console object.
3540 * @param pUVM The VM handle.
3541 * @param pcszDevice The PDM device name.
3542 * @param uInstance The PDM device instance.
3543 * @param enmBus The storage bus type of the controller.
3544 * @param fUseHostIOCache Whether to use the host I/O cache (disable async I/O).
3545 * @param aMediumAtt The medium attachment.
3546 * @param fForce Force unmounting.
3547 *
3548 * @thread EMT
3549 * @note The VM must not be running since it might have pending I/O to the drive which is being changed.
3550 */
3551DECLCALLBACK(int) Console::i_changeRemovableMedium(Console *pThis,
3552 PUVM pUVM,
3553 const char *pcszDevice,
3554 unsigned uInstance,
3555 StorageBus_T enmBus,
3556 bool fUseHostIOCache,
3557 IMediumAttachment *aMediumAtt,
3558 bool fForce)
3559{
3560 LogFlowFunc(("pThis=%p uInstance=%u pszDevice=%p:{%s} enmBus=%u, aMediumAtt=%p, fForce=%d\n",
3561 pThis, uInstance, pcszDevice, pcszDevice, enmBus, aMediumAtt, fForce));
3562
3563 AssertReturn(pThis, VERR_INVALID_PARAMETER);
3564
3565 AutoCaller autoCaller(pThis);
3566 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
3567
3568 /*
3569 * Check the VM for correct state.
3570 */
3571 VMSTATE enmVMState = VMR3GetStateU(pUVM);
3572 AssertReturn(enmVMState == VMSTATE_SUSPENDED, VERR_INVALID_STATE);
3573
3574 int rc = pThis->i_configMediumAttachment(pcszDevice,
3575 uInstance,
3576 enmBus,
3577 fUseHostIOCache,
3578 false /* fSetupMerge */,
3579 false /* fBuiltinIOCache */,
3580 false /* fInsertDiskIntegrityDrv. */,
3581 0 /* uMergeSource */,
3582 0 /* uMergeTarget */,
3583 aMediumAtt,
3584 pThis->mMachineState,
3585 NULL /* phrc */,
3586 true /* fAttachDetach */,
3587 fForce /* fForceUnmount */,
3588 false /* fHotplug */,
3589 pUVM,
3590 NULL /* paLedDevType */,
3591 NULL /* ppLunL0 */);
3592 LogFlowFunc(("Returning %Rrc\n", rc));
3593 return rc;
3594}
3595
3596
3597/**
3598 * Attach a new storage device to the VM.
3599 *
3600 * @param aMediumAttachment The medium attachment which is added.
3601 * @param pUVM Safe VM handle.
3602 * @param fSilent Flag whether to notify the guest about the attached device.
3603 *
3604 * @note Locks this object for writing.
3605 */
3606HRESULT Console::i_doStorageDeviceAttach(IMediumAttachment *aMediumAttachment, PUVM pUVM, bool fSilent)
3607{
3608 AutoCaller autoCaller(this);
3609 AssertComRCReturnRC(autoCaller.rc());
3610
3611 /* We will need to release the write lock before calling EMT */
3612 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3613
3614 HRESULT rc = S_OK;
3615 const char *pszDevice = NULL;
3616
3617 SafeIfaceArray<IStorageController> ctrls;
3618 rc = mMachine->COMGETTER(StorageControllers)(ComSafeArrayAsOutParam(ctrls));
3619 AssertComRC(rc);
3620 IMedium *pMedium;
3621 rc = aMediumAttachment->COMGETTER(Medium)(&pMedium);
3622 AssertComRC(rc);
3623 Bstr mediumLocation;
3624 if (pMedium)
3625 {
3626 rc = pMedium->COMGETTER(Location)(mediumLocation.asOutParam());
3627 AssertComRC(rc);
3628 }
3629
3630 Bstr attCtrlName;
3631 rc = aMediumAttachment->COMGETTER(Controller)(attCtrlName.asOutParam());
3632 AssertComRC(rc);
3633 ComPtr<IStorageController> pStorageController;
3634 for (size_t i = 0; i < ctrls.size(); ++i)
3635 {
3636 Bstr ctrlName;
3637 rc = ctrls[i]->COMGETTER(Name)(ctrlName.asOutParam());
3638 AssertComRC(rc);
3639 if (attCtrlName == ctrlName)
3640 {
3641 pStorageController = ctrls[i];
3642 break;
3643 }
3644 }
3645 if (pStorageController.isNull())
3646 return setError(E_FAIL,
3647 tr("Could not find storage controller '%ls'"), attCtrlName.raw());
3648
3649 StorageControllerType_T enmCtrlType;
3650 rc = pStorageController->COMGETTER(ControllerType)(&enmCtrlType);
3651 AssertComRC(rc);
3652 pszDevice = i_storageControllerTypeToStr(enmCtrlType);
3653
3654 StorageBus_T enmBus;
3655 rc = pStorageController->COMGETTER(Bus)(&enmBus);
3656 AssertComRC(rc);
3657 ULONG uInstance;
3658 rc = pStorageController->COMGETTER(Instance)(&uInstance);
3659 AssertComRC(rc);
3660 BOOL fUseHostIOCache;
3661 rc = pStorageController->COMGETTER(UseHostIOCache)(&fUseHostIOCache);
3662 AssertComRC(rc);
3663
3664 /*
3665 * Suspend the VM first. The VM must not be running since it might have
3666 * pending I/O to the drive which is being changed.
3667 */
3668 bool fResume = false;
3669 rc = i_suspendBeforeConfigChange(pUVM, &alock, &fResume);
3670 if (FAILED(rc))
3671 return rc;
3672
3673 /*
3674 * Call worker in EMT, that's faster and safer than doing everything
3675 * using VMR3ReqCall. Note that we separate VMR3ReqCall from VMR3ReqWait
3676 * here to make requests from under the lock in order to serialize them.
3677 */
3678 PVMREQ pReq;
3679 int vrc = VMR3ReqCallU(pUVM, VMCPUID_ANY, &pReq, 0 /* no wait! */, VMREQFLAGS_VBOX_STATUS,
3680 (PFNRT)i_attachStorageDevice, 8,
3681 this, pUVM, pszDevice, uInstance, enmBus, fUseHostIOCache, aMediumAttachment, fSilent);
3682
3683 /* release the lock before waiting for a result (EMT might wait for it, @bugref{7648})! */
3684 alock.release();
3685
3686 if (vrc == VERR_TIMEOUT)
3687 vrc = VMR3ReqWait(pReq, RT_INDEFINITE_WAIT);
3688 AssertRC(vrc);
3689 if (RT_SUCCESS(vrc))
3690 vrc = pReq->iStatus;
3691 VMR3ReqFree(pReq);
3692
3693 if (fResume)
3694 i_resumeAfterConfigChange(pUVM);
3695
3696 if (RT_SUCCESS(vrc))
3697 {
3698 LogFlowThisFunc(("Returns S_OK\n"));
3699 return S_OK;
3700 }
3701
3702 if (!pMedium)
3703 return setError(E_FAIL,
3704 tr("Could not mount the media/drive '%ls' (%Rrc)"),
3705 mediumLocation.raw(), vrc);
3706
3707 return setError(E_FAIL,
3708 tr("Could not unmount the currently mounted media/drive (%Rrc)"),
3709 vrc);
3710}
3711
3712
3713/**
3714 * Performs the storage attach operation in EMT.
3715 *
3716 * @returns VBox status code.
3717 *
3718 * @param pThis Pointer to the Console object.
3719 * @param pUVM The VM handle.
3720 * @param pcszDevice The PDM device name.
3721 * @param uInstance The PDM device instance.
3722 * @param enmBus The storage bus type of the controller.
3723 * @param fUseHostIOCache Whether to use the host I/O cache (disable async I/O).
3724 * @param aMediumAtt The medium attachment.
3725 * @param fSilent Flag whether to inform the guest about the attached device.
3726 *
3727 * @thread EMT
3728 * @note The VM must not be running since it might have pending I/O to the drive which is being changed.
3729 */
3730DECLCALLBACK(int) Console::i_attachStorageDevice(Console *pThis,
3731 PUVM pUVM,
3732 const char *pcszDevice,
3733 unsigned uInstance,
3734 StorageBus_T enmBus,
3735 bool fUseHostIOCache,
3736 IMediumAttachment *aMediumAtt,
3737 bool fSilent)
3738{
3739 LogFlowFunc(("pThis=%p uInstance=%u pszDevice=%p:{%s} enmBus=%u, aMediumAtt=%p\n",
3740 pThis, uInstance, pcszDevice, pcszDevice, enmBus, aMediumAtt));
3741
3742 AssertReturn(pThis, VERR_INVALID_PARAMETER);
3743
3744 AutoCaller autoCaller(pThis);
3745 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
3746
3747 /*
3748 * Check the VM for correct state.
3749 */
3750 VMSTATE enmVMState = VMR3GetStateU(pUVM);
3751 AssertReturn(enmVMState == VMSTATE_SUSPENDED, VERR_INVALID_STATE);
3752
3753 int rc = pThis->i_configMediumAttachment(pcszDevice,
3754 uInstance,
3755 enmBus,
3756 fUseHostIOCache,
3757 false /* fSetupMerge */,
3758 false /* fBuiltinIOCache */,
3759 false /* fInsertDiskIntegrityDrv. */,
3760 0 /* uMergeSource */,
3761 0 /* uMergeTarget */,
3762 aMediumAtt,
3763 pThis->mMachineState,
3764 NULL /* phrc */,
3765 true /* fAttachDetach */,
3766 false /* fForceUnmount */,
3767 !fSilent /* fHotplug */,
3768 pUVM,
3769 NULL /* paLedDevType */,
3770 NULL);
3771 LogFlowFunc(("Returning %Rrc\n", rc));
3772 return rc;
3773}
3774
3775/**
3776 * Attach a new storage device to the VM.
3777 *
3778 * @param aMediumAttachment The medium attachment which is added.
3779 * @param pUVM Safe VM handle.
3780 * @param fSilent Flag whether to notify the guest about the detached device.
3781 *
3782 * @note Locks this object for writing.
3783 */
3784HRESULT Console::i_doStorageDeviceDetach(IMediumAttachment *aMediumAttachment, PUVM pUVM, bool fSilent)
3785{
3786 AutoCaller autoCaller(this);
3787 AssertComRCReturnRC(autoCaller.rc());
3788
3789 /* We will need to release the write lock before calling EMT */
3790 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3791
3792 HRESULT rc = S_OK;
3793 const char *pszDevice = NULL;
3794
3795 SafeIfaceArray<IStorageController> ctrls;
3796 rc = mMachine->COMGETTER(StorageControllers)(ComSafeArrayAsOutParam(ctrls));
3797 AssertComRC(rc);
3798 IMedium *pMedium;
3799 rc = aMediumAttachment->COMGETTER(Medium)(&pMedium);
3800 AssertComRC(rc);
3801 Bstr mediumLocation;
3802 if (pMedium)
3803 {
3804 rc = pMedium->COMGETTER(Location)(mediumLocation.asOutParam());
3805 AssertComRC(rc);
3806 }
3807
3808 Bstr attCtrlName;
3809 rc = aMediumAttachment->COMGETTER(Controller)(attCtrlName.asOutParam());
3810 AssertComRC(rc);
3811 ComPtr<IStorageController> pStorageController;
3812 for (size_t i = 0; i < ctrls.size(); ++i)
3813 {
3814 Bstr ctrlName;
3815 rc = ctrls[i]->COMGETTER(Name)(ctrlName.asOutParam());
3816 AssertComRC(rc);
3817 if (attCtrlName == ctrlName)
3818 {
3819 pStorageController = ctrls[i];
3820 break;
3821 }
3822 }
3823 if (pStorageController.isNull())
3824 return setError(E_FAIL,
3825 tr("Could not find storage controller '%ls'"), attCtrlName.raw());
3826
3827 StorageControllerType_T enmCtrlType;
3828 rc = pStorageController->COMGETTER(ControllerType)(&enmCtrlType);
3829 AssertComRC(rc);
3830 pszDevice = i_storageControllerTypeToStr(enmCtrlType);
3831
3832 StorageBus_T enmBus;
3833 rc = pStorageController->COMGETTER(Bus)(&enmBus);
3834 AssertComRC(rc);
3835 ULONG uInstance;
3836 rc = pStorageController->COMGETTER(Instance)(&uInstance);
3837 AssertComRC(rc);
3838
3839 /*
3840 * Suspend the VM first. The VM must not be running since it might have
3841 * pending I/O to the drive which is being changed.
3842 */
3843 bool fResume = false;
3844 rc = i_suspendBeforeConfigChange(pUVM, &alock, &fResume);
3845 if (FAILED(rc))
3846 return rc;
3847
3848 /*
3849 * Call worker in EMT, that's faster and safer than doing everything
3850 * using VMR3ReqCall. Note that we separate VMR3ReqCall from VMR3ReqWait
3851 * here to make requests from under the lock in order to serialize them.
3852 */
3853 PVMREQ pReq;
3854 int vrc = VMR3ReqCallU(pUVM, VMCPUID_ANY, &pReq, 0 /* no wait! */, VMREQFLAGS_VBOX_STATUS,
3855 (PFNRT)i_detachStorageDevice, 7,
3856 this, pUVM, pszDevice, uInstance, enmBus, aMediumAttachment, fSilent);
3857
3858 /* release the lock before waiting for a result (EMT might wait for it, @bugref{7648})! */
3859 alock.release();
3860
3861 if (vrc == VERR_TIMEOUT)
3862 vrc = VMR3ReqWait(pReq, RT_INDEFINITE_WAIT);
3863 AssertRC(vrc);
3864 if (RT_SUCCESS(vrc))
3865 vrc = pReq->iStatus;
3866 VMR3ReqFree(pReq);
3867
3868 if (fResume)
3869 i_resumeAfterConfigChange(pUVM);
3870
3871 if (RT_SUCCESS(vrc))
3872 {
3873 LogFlowThisFunc(("Returns S_OK\n"));
3874 return S_OK;
3875 }
3876
3877 if (!pMedium)
3878 return setError(E_FAIL,
3879 tr("Could not mount the media/drive '%ls' (%Rrc)"),
3880 mediumLocation.raw(), vrc);
3881
3882 return setError(E_FAIL,
3883 tr("Could not unmount the currently mounted media/drive (%Rrc)"),
3884 vrc);
3885}
3886
3887/**
3888 * Performs the storage detach operation in EMT.
3889 *
3890 * @returns VBox status code.
3891 *
3892 * @param pThis Pointer to the Console object.
3893 * @param pUVM The VM handle.
3894 * @param pcszDevice The PDM device name.
3895 * @param uInstance The PDM device instance.
3896 * @param enmBus The storage bus type of the controller.
3897 * @param pMediumAtt Pointer to the medium attachment.
3898 * @param fSilent Flag whether to notify the guest about the detached device.
3899 *
3900 * @thread EMT
3901 * @note The VM must not be running since it might have pending I/O to the drive which is being changed.
3902 */
3903DECLCALLBACK(int) Console::i_detachStorageDevice(Console *pThis,
3904 PUVM pUVM,
3905 const char *pcszDevice,
3906 unsigned uInstance,
3907 StorageBus_T enmBus,
3908 IMediumAttachment *pMediumAtt,
3909 bool fSilent)
3910{
3911 LogFlowFunc(("pThis=%p uInstance=%u pszDevice=%p:{%s} enmBus=%u, pMediumAtt=%p\n",
3912 pThis, uInstance, pcszDevice, pcszDevice, enmBus, pMediumAtt));
3913
3914 AssertReturn(pThis, VERR_INVALID_PARAMETER);
3915
3916 AutoCaller autoCaller(pThis);
3917 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
3918
3919 /*
3920 * Check the VM for correct state.
3921 */
3922 VMSTATE enmVMState = VMR3GetStateU(pUVM);
3923 AssertReturn(enmVMState == VMSTATE_SUSPENDED, VERR_INVALID_STATE);
3924
3925 /* Determine the base path for the device instance. */
3926 PCFGMNODE pCtlInst;
3927 pCtlInst = CFGMR3GetChildF(CFGMR3GetRootU(pUVM), "Devices/%s/%u/", pcszDevice, uInstance);
3928 AssertReturn(pCtlInst || enmBus == StorageBus_USB, VERR_INTERNAL_ERROR);
3929
3930#define H() AssertMsgReturn(!FAILED(hrc), ("hrc=%Rhrc\n", hrc), VERR_GENERAL_FAILURE)
3931
3932 HRESULT hrc;
3933 int rc = VINF_SUCCESS;
3934 int rcRet = VINF_SUCCESS;
3935 unsigned uLUN;
3936 LONG lDev;
3937 LONG lPort;
3938 DeviceType_T lType;
3939 PCFGMNODE pLunL0 = NULL;
3940
3941 hrc = pMediumAtt->COMGETTER(Device)(&lDev); H();
3942 hrc = pMediumAtt->COMGETTER(Port)(&lPort); H();
3943 hrc = pMediumAtt->COMGETTER(Type)(&lType); H();
3944 hrc = Console::i_storageBusPortDeviceToLun(enmBus, lPort, lDev, uLUN); H();
3945
3946#undef H
3947
3948 if (enmBus != StorageBus_USB)
3949 {
3950 /* First check if the LUN really exists. */
3951 pLunL0 = CFGMR3GetChildF(pCtlInst, "LUN#%u", uLUN);
3952 if (pLunL0)
3953 {
3954 uint32_t fFlags = 0;
3955
3956 if (fSilent)
3957 fFlags |= PDM_TACH_FLAGS_NOT_HOT_PLUG;
3958
3959 rc = PDMR3DeviceDetach(pUVM, pcszDevice, uInstance, uLUN, fFlags);
3960 if (rc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
3961 rc = VINF_SUCCESS;
3962 AssertRCReturn(rc, rc);
3963 CFGMR3RemoveNode(pLunL0);
3964
3965 Utf8Str devicePath = Utf8StrFmt("%s/%u/LUN#%u", pcszDevice, uInstance, uLUN);
3966 pThis->mapMediumAttachments.erase(devicePath);
3967
3968 }
3969 else
3970 AssertFailedReturn(VERR_INTERNAL_ERROR);
3971
3972 CFGMR3Dump(pCtlInst);
3973 }
3974#ifdef VBOX_WITH_USB
3975 else
3976 {
3977 /* Find the correct USB device in the list. */
3978 USBStorageDeviceList::iterator it;
3979 for (it = pThis->mUSBStorageDevices.begin(); it != pThis->mUSBStorageDevices.end(); ++it)
3980 {
3981 if (it->iPort == lPort)
3982 break;
3983 }
3984
3985 AssertReturn(it != pThis->mUSBStorageDevices.end(), VERR_INTERNAL_ERROR);
3986 rc = PDMR3UsbDetachDevice(pUVM, &it->mUuid);
3987 AssertRCReturn(rc, rc);
3988 pThis->mUSBStorageDevices.erase(it);
3989 }
3990#endif
3991
3992 LogFlowFunc(("Returning %Rrc\n", rcRet));
3993 return rcRet;
3994}
3995
3996/**
3997 * Called by IInternalSessionControl::OnNetworkAdapterChange().
3998 *
3999 * @note Locks this object for writing.
4000 */
4001HRESULT Console::i_onNetworkAdapterChange(INetworkAdapter *aNetworkAdapter, BOOL changeAdapter)
4002{
4003 LogFlowThisFunc(("\n"));
4004
4005 AutoCaller autoCaller(this);
4006 AssertComRCReturnRC(autoCaller.rc());
4007
4008 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4009
4010 HRESULT rc = S_OK;
4011
4012 /* don't trigger network changes if the VM isn't running */
4013 SafeVMPtrQuiet ptrVM(this);
4014 if (ptrVM.isOk())
4015 {
4016 /* Get the properties we need from the adapter */
4017 BOOL fCableConnected, fTraceEnabled;
4018 rc = aNetworkAdapter->COMGETTER(CableConnected)(&fCableConnected);
4019 AssertComRC(rc);
4020 if (SUCCEEDED(rc))
4021 {
4022 rc = aNetworkAdapter->COMGETTER(TraceEnabled)(&fTraceEnabled);
4023 AssertComRC(rc);
4024 if (SUCCEEDED(rc))
4025 {
4026 ULONG ulInstance;
4027 rc = aNetworkAdapter->COMGETTER(Slot)(&ulInstance);
4028 AssertComRC(rc);
4029 if (SUCCEEDED(rc))
4030 {
4031 /*
4032 * Find the adapter instance, get the config interface and update
4033 * the link state.
4034 */
4035 NetworkAdapterType_T adapterType;
4036 rc = aNetworkAdapter->COMGETTER(AdapterType)(&adapterType);
4037 AssertComRC(rc);
4038 const char *pszAdapterName = networkAdapterTypeToName(adapterType);
4039
4040 // prevent cross-thread deadlocks, don't need the lock any more
4041 alock.release();
4042
4043 PPDMIBASE pBase;
4044 int vrc = PDMR3QueryDeviceLun(ptrVM.rawUVM(), pszAdapterName, ulInstance, 0, &pBase);
4045 if (RT_SUCCESS(vrc))
4046 {
4047 Assert(pBase);
4048 PPDMINETWORKCONFIG pINetCfg;
4049 pINetCfg = PDMIBASE_QUERY_INTERFACE(pBase, PDMINETWORKCONFIG);
4050 if (pINetCfg)
4051 {
4052 Log(("Console::onNetworkAdapterChange: setting link state to %d\n",
4053 fCableConnected));
4054 vrc = pINetCfg->pfnSetLinkState(pINetCfg,
4055 fCableConnected ? PDMNETWORKLINKSTATE_UP
4056 : PDMNETWORKLINKSTATE_DOWN);
4057 ComAssertRC(vrc);
4058 }
4059 if (RT_SUCCESS(vrc) && changeAdapter)
4060 {
4061 VMSTATE enmVMState = VMR3GetStateU(ptrVM.rawUVM());
4062 if ( enmVMState == VMSTATE_RUNNING /** @todo LiveMigration: Forbid or deal
4063 correctly with the _LS variants */
4064 || enmVMState == VMSTATE_SUSPENDED)
4065 {
4066 if (fTraceEnabled && fCableConnected && pINetCfg)
4067 {
4068 vrc = pINetCfg->pfnSetLinkState(pINetCfg, PDMNETWORKLINKSTATE_DOWN);
4069 ComAssertRC(vrc);
4070 }
4071
4072 rc = i_doNetworkAdapterChange(ptrVM.rawUVM(), pszAdapterName, ulInstance, 0, aNetworkAdapter);
4073
4074 if (fTraceEnabled && fCableConnected && pINetCfg)
4075 {
4076 vrc = pINetCfg->pfnSetLinkState(pINetCfg, PDMNETWORKLINKSTATE_UP);
4077 ComAssertRC(vrc);
4078 }
4079 }
4080 }
4081 }
4082 else if (vrc == VERR_PDM_DEVICE_INSTANCE_NOT_FOUND)
4083 return setError(E_FAIL,
4084 tr("The network adapter #%u is not enabled"), ulInstance);
4085 else
4086 ComAssertRC(vrc);
4087
4088 if (RT_FAILURE(vrc))
4089 rc = E_FAIL;
4090
4091 alock.acquire();
4092 }
4093 }
4094 }
4095 ptrVM.release();
4096 }
4097
4098 // definitely don't need the lock any more
4099 alock.release();
4100
4101 /* notify console callbacks on success */
4102 if (SUCCEEDED(rc))
4103 fireNetworkAdapterChangedEvent(mEventSource, aNetworkAdapter);
4104
4105 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
4106 return rc;
4107}
4108
4109/**
4110 * Called by IInternalSessionControl::OnNATEngineChange().
4111 *
4112 * @note Locks this object for writing.
4113 */
4114HRESULT Console::i_onNATRedirectRuleChange(ULONG ulInstance, BOOL aNatRuleRemove,
4115 NATProtocol_T aProto, IN_BSTR aHostIP,
4116 LONG aHostPort, IN_BSTR aGuestIP,
4117 LONG aGuestPort)
4118{
4119 LogFlowThisFunc(("\n"));
4120
4121 AutoCaller autoCaller(this);
4122 AssertComRCReturnRC(autoCaller.rc());
4123
4124 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4125
4126 HRESULT rc = S_OK;
4127
4128 /* don't trigger NAT engine changes if the VM isn't running */
4129 SafeVMPtrQuiet ptrVM(this);
4130 if (ptrVM.isOk())
4131 {
4132 do
4133 {
4134 ComPtr<INetworkAdapter> pNetworkAdapter;
4135 rc = i_machine()->GetNetworkAdapter(ulInstance, pNetworkAdapter.asOutParam());
4136 if ( FAILED(rc)
4137 || pNetworkAdapter.isNull())
4138 break;
4139
4140 /*
4141 * Find the adapter instance, get the config interface and update
4142 * the link state.
4143 */
4144 NetworkAdapterType_T adapterType;
4145 rc = pNetworkAdapter->COMGETTER(AdapterType)(&adapterType);
4146 if (FAILED(rc))
4147 {
4148 AssertComRC(rc);
4149 rc = E_FAIL;
4150 break;
4151 }
4152
4153 const char *pszAdapterName = networkAdapterTypeToName(adapterType);
4154 PPDMIBASE pBase;
4155 int vrc = PDMR3QueryLun(ptrVM.rawUVM(), pszAdapterName, ulInstance, 0, &pBase);
4156 if (RT_FAILURE(vrc))
4157 {
4158 /* This may happen if the NAT network adapter is currently not attached.
4159 * This is a valid condition. */
4160 if (vrc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
4161 break;
4162 ComAssertRC(vrc);
4163 rc = E_FAIL;
4164 break;
4165 }
4166
4167 NetworkAttachmentType_T attachmentType;
4168 rc = pNetworkAdapter->COMGETTER(AttachmentType)(&attachmentType);
4169 if ( FAILED(rc)
4170 || attachmentType != NetworkAttachmentType_NAT)
4171 {
4172 rc = E_FAIL;
4173 break;
4174 }
4175
4176 /* look down for PDMINETWORKNATCONFIG interface */
4177 PPDMINETWORKNATCONFIG pNetNatCfg = NULL;
4178 while (pBase)
4179 {
4180 pNetNatCfg = (PPDMINETWORKNATCONFIG)pBase->pfnQueryInterface(pBase, PDMINETWORKNATCONFIG_IID);
4181 if (pNetNatCfg)
4182 break;
4183 /** @todo r=bird: This stinks! */
4184 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pBase);
4185 pBase = pDrvIns->pDownBase;
4186 }
4187 if (!pNetNatCfg)
4188 break;
4189
4190 bool fUdp = aProto == NATProtocol_UDP;
4191 vrc = pNetNatCfg->pfnRedirectRuleCommand(pNetNatCfg, !!aNatRuleRemove, fUdp,
4192 Utf8Str(aHostIP).c_str(), (uint16_t)aHostPort, Utf8Str(aGuestIP).c_str(),
4193 (uint16_t)aGuestPort);
4194 if (RT_FAILURE(vrc))
4195 rc = E_FAIL;
4196 } while (0); /* break loop */
4197 ptrVM.release();
4198 }
4199
4200 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
4201 return rc;
4202}
4203
4204
4205/*
4206 * IHostNameResolutionConfigurationChangeEvent
4207 *
4208 * Currently this event doesn't carry actual resolver configuration,
4209 * so we have to go back to VBoxSVC and ask... This is not ideal.
4210 */
4211HRESULT Console::i_onNATDnsChanged()
4212{
4213 HRESULT hrc;
4214
4215 AutoCaller autoCaller(this);
4216 AssertComRCReturnRC(autoCaller.rc());
4217
4218 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4219
4220#if 0 /* XXX: We don't yet pass this down to pfnNotifyDnsChanged */
4221 ComPtr<IVirtualBox> pVirtualBox;
4222 hrc = mMachine->COMGETTER(Parent)(pVirtualBox.asOutParam());
4223 if (FAILED(hrc))
4224 return S_OK;
4225
4226 ComPtr<IHost> pHost;
4227 hrc = pVirtualBox->COMGETTER(Host)(pHost.asOutParam());
4228 if (FAILED(hrc))
4229 return S_OK;
4230
4231 SafeArray<BSTR> aNameServers;
4232 hrc = pHost->COMGETTER(NameServers)(ComSafeArrayAsOutParam(aNameServers));
4233 if (FAILED(hrc))
4234 return S_OK;
4235
4236 const size_t cNameServers = aNameServers.size();
4237 Log(("DNS change - %zu nameservers\n", cNameServers));
4238
4239 for (size_t i = 0; i < cNameServers; ++i)
4240 {
4241 com::Utf8Str strNameServer(aNameServers[i]);
4242 Log(("- nameserver[%zu] = \"%s\"\n", i, strNameServer.c_str()));
4243 }
4244
4245 com::Bstr domain;
4246 pHost->COMGETTER(DomainName)(domain.asOutParam());
4247 Log(("domain name = \"%s\"\n", com::Utf8Str(domain).c_str()));
4248#endif /* 0 */
4249
4250 ChipsetType_T enmChipsetType;
4251 hrc = mMachine->COMGETTER(ChipsetType)(&enmChipsetType);
4252 if (!FAILED(hrc))
4253 {
4254 SafeVMPtrQuiet ptrVM(this);
4255 if (ptrVM.isOk())
4256 {
4257 ULONG ulInstanceMax = (ULONG)Global::getMaxNetworkAdapters(enmChipsetType);
4258
4259 notifyNatDnsChange(ptrVM.rawUVM(), "pcnet", ulInstanceMax);
4260 notifyNatDnsChange(ptrVM.rawUVM(), "e1000", ulInstanceMax);
4261 notifyNatDnsChange(ptrVM.rawUVM(), "virtio-net", ulInstanceMax);
4262 }
4263 }
4264
4265 return S_OK;
4266}
4267
4268
4269/*
4270 * This routine walks over all network device instances, checking if
4271 * device instance has DrvNAT attachment and triggering DrvNAT DNS
4272 * change callback.
4273 */
4274void Console::notifyNatDnsChange(PUVM pUVM, const char *pszDevice, ULONG ulInstanceMax)
4275{
4276 Log(("notifyNatDnsChange: looking for DrvNAT attachment on %s device instances\n", pszDevice));
4277 for (ULONG ulInstance = 0; ulInstance < ulInstanceMax; ulInstance++)
4278 {
4279 PPDMIBASE pBase;
4280 int rc = PDMR3QueryDriverOnLun(pUVM, pszDevice, ulInstance, 0 /* iLun */, "NAT", &pBase);
4281 if (RT_FAILURE(rc))
4282 continue;
4283
4284 Log(("Instance %s#%d has DrvNAT attachment; do actual notify\n", pszDevice, ulInstance));
4285 if (pBase)
4286 {
4287 PPDMINETWORKNATCONFIG pNetNatCfg = NULL;
4288 pNetNatCfg = (PPDMINETWORKNATCONFIG)pBase->pfnQueryInterface(pBase, PDMINETWORKNATCONFIG_IID);
4289 if (pNetNatCfg && pNetNatCfg->pfnNotifyDnsChanged)
4290 pNetNatCfg->pfnNotifyDnsChanged(pNetNatCfg);
4291 }
4292 }
4293}
4294
4295
4296VMMDevMouseInterface *Console::i_getVMMDevMouseInterface()
4297{
4298 return m_pVMMDev;
4299}
4300
4301DisplayMouseInterface *Console::i_getDisplayMouseInterface()
4302{
4303 return mDisplay;
4304}
4305
4306/**
4307 * Parses one key value pair.
4308 *
4309 * @returns VBox status code.
4310 * @param psz Configuration string.
4311 * @param ppszEnd Where to store the pointer to the string following the key value pair.
4312 * @param ppszKey Where to store the key on success.
4313 * @param ppszVal Where to store the value on success.
4314 */
4315int Console::i_consoleParseKeyValue(const char *psz, const char **ppszEnd,
4316 char **ppszKey, char **ppszVal)
4317{
4318 int rc = VINF_SUCCESS;
4319 const char *pszKeyStart = psz;
4320 const char *pszValStart = NULL;
4321 size_t cchKey = 0;
4322 size_t cchVal = 0;
4323
4324 while ( *psz != '='
4325 && *psz)
4326 psz++;
4327
4328 /* End of string at this point is invalid. */
4329 if (*psz == '\0')
4330 return VERR_INVALID_PARAMETER;
4331
4332 cchKey = psz - pszKeyStart;
4333 psz++; /* Skip = character */
4334 pszValStart = psz;
4335
4336 while ( *psz != ','
4337 && *psz != '\n'
4338 && *psz != '\r'
4339 && *psz)
4340 psz++;
4341
4342 cchVal = psz - pszValStart;
4343
4344 if (cchKey && cchVal)
4345 {
4346 *ppszKey = RTStrDupN(pszKeyStart, cchKey);
4347 if (*ppszKey)
4348 {
4349 *ppszVal = RTStrDupN(pszValStart, cchVal);
4350 if (!*ppszVal)
4351 {
4352 RTStrFree(*ppszKey);
4353 rc = VERR_NO_MEMORY;
4354 }
4355 }
4356 else
4357 rc = VERR_NO_MEMORY;
4358 }
4359 else
4360 rc = VERR_INVALID_PARAMETER;
4361
4362 if (RT_SUCCESS(rc))
4363 *ppszEnd = psz;
4364
4365 return rc;
4366}
4367
4368/**
4369 * Initializes the secret key interface on all configured attachments.
4370 *
4371 * @returns COM status code.
4372 */
4373HRESULT Console::i_initSecretKeyIfOnAllAttachments(void)
4374{
4375 HRESULT hrc = S_OK;
4376 SafeIfaceArray<IMediumAttachment> sfaAttachments;
4377
4378 AutoCaller autoCaller(this);
4379 AssertComRCReturnRC(autoCaller.rc());
4380
4381 /* Get the VM - must be done before the read-locking. */
4382 SafeVMPtr ptrVM(this);
4383 if (!ptrVM.isOk())
4384 return ptrVM.rc();
4385
4386 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4387
4388 hrc = mMachine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(sfaAttachments));
4389 AssertComRCReturnRC(hrc);
4390
4391 /* Find the correct attachment. */
4392 for (unsigned i = 0; i < sfaAttachments.size(); i++)
4393 {
4394 const ComPtr<IMediumAttachment> &pAtt = sfaAttachments[i];
4395 /*
4396 * Query storage controller, port and device
4397 * to identify the correct driver.
4398 */
4399 ComPtr<IStorageController> pStorageCtrl;
4400 Bstr storageCtrlName;
4401 LONG lPort, lDev;
4402 ULONG ulStorageCtrlInst;
4403
4404 hrc = pAtt->COMGETTER(Controller)(storageCtrlName.asOutParam());
4405 AssertComRC(hrc);
4406
4407 hrc = pAtt->COMGETTER(Port)(&lPort);
4408 AssertComRC(hrc);
4409
4410 hrc = pAtt->COMGETTER(Device)(&lDev);
4411 AssertComRC(hrc);
4412
4413 hrc = mMachine->GetStorageControllerByName(storageCtrlName.raw(), pStorageCtrl.asOutParam());
4414 AssertComRC(hrc);
4415
4416 hrc = pStorageCtrl->COMGETTER(Instance)(&ulStorageCtrlInst);
4417 AssertComRC(hrc);
4418
4419 StorageControllerType_T enmCtrlType;
4420 hrc = pStorageCtrl->COMGETTER(ControllerType)(&enmCtrlType);
4421 AssertComRC(hrc);
4422 const char *pcszDevice = i_storageControllerTypeToStr(enmCtrlType);
4423
4424 StorageBus_T enmBus;
4425 hrc = pStorageCtrl->COMGETTER(Bus)(&enmBus);
4426 AssertComRC(hrc);
4427
4428 unsigned uLUN;
4429 hrc = Console::i_storageBusPortDeviceToLun(enmBus, lPort, lDev, uLUN);
4430 AssertComRC(hrc);
4431
4432 PPDMIBASE pIBase = NULL;
4433 PPDMIMEDIA pIMedium = NULL;
4434 int rc = PDMR3QueryDriverOnLun(ptrVM.rawUVM(), pcszDevice, ulStorageCtrlInst, uLUN, "VD", &pIBase);
4435 if (RT_SUCCESS(rc))
4436 {
4437 if (pIBase)
4438 {
4439 pIMedium = (PPDMIMEDIA)pIBase->pfnQueryInterface(pIBase, PDMIMEDIA_IID);
4440 if (pIMedium)
4441 {
4442 rc = pIMedium->pfnSetSecKeyIf(pIMedium, NULL, mpIfSecKeyHlp);
4443 Assert(RT_SUCCESS(rc) || rc == VERR_NOT_SUPPORTED);
4444 }
4445 }
4446 }
4447 }
4448
4449 return hrc;
4450}
4451
4452/**
4453 * Removes the key interfaces from all disk attachments with the given key ID.
4454 * Useful when changing the key store or dropping it.
4455 *
4456 * @returns COM status code.
4457 * @param strId The ID to look for.
4458 */
4459HRESULT Console::i_clearDiskEncryptionKeysOnAllAttachmentsWithKeyId(const Utf8Str &strId)
4460{
4461 HRESULT hrc = S_OK;
4462 SafeIfaceArray<IMediumAttachment> sfaAttachments;
4463
4464 /* Get the VM - must be done before the read-locking. */
4465 SafeVMPtr ptrVM(this);
4466 if (!ptrVM.isOk())
4467 return ptrVM.rc();
4468
4469 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4470
4471 hrc = mMachine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(sfaAttachments));
4472 AssertComRCReturnRC(hrc);
4473
4474 /* Find the correct attachment. */
4475 for (unsigned i = 0; i < sfaAttachments.size(); i++)
4476 {
4477 const ComPtr<IMediumAttachment> &pAtt = sfaAttachments[i];
4478 ComPtr<IMedium> pMedium;
4479 ComPtr<IMedium> pBase;
4480 Bstr bstrKeyId;
4481
4482 hrc = pAtt->COMGETTER(Medium)(pMedium.asOutParam());
4483 if (FAILED(hrc))
4484 break;
4485
4486 /* Skip non hard disk attachments. */
4487 if (pMedium.isNull())
4488 continue;
4489
4490 /* Get the UUID of the base medium and compare. */
4491 hrc = pMedium->COMGETTER(Base)(pBase.asOutParam());
4492 if (FAILED(hrc))
4493 break;
4494
4495 hrc = pBase->GetProperty(Bstr("CRYPT/KeyId").raw(), bstrKeyId.asOutParam());
4496 if (hrc == VBOX_E_OBJECT_NOT_FOUND)
4497 {
4498 hrc = S_OK;
4499 continue;
4500 }
4501 else if (FAILED(hrc))
4502 break;
4503
4504 if (strId.equals(Utf8Str(bstrKeyId)))
4505 {
4506
4507 /*
4508 * Query storage controller, port and device
4509 * to identify the correct driver.
4510 */
4511 ComPtr<IStorageController> pStorageCtrl;
4512 Bstr storageCtrlName;
4513 LONG lPort, lDev;
4514 ULONG ulStorageCtrlInst;
4515
4516 hrc = pAtt->COMGETTER(Controller)(storageCtrlName.asOutParam());
4517 AssertComRC(hrc);
4518
4519 hrc = pAtt->COMGETTER(Port)(&lPort);
4520 AssertComRC(hrc);
4521
4522 hrc = pAtt->COMGETTER(Device)(&lDev);
4523 AssertComRC(hrc);
4524
4525 hrc = mMachine->GetStorageControllerByName(storageCtrlName.raw(), pStorageCtrl.asOutParam());
4526 AssertComRC(hrc);
4527
4528 hrc = pStorageCtrl->COMGETTER(Instance)(&ulStorageCtrlInst);
4529 AssertComRC(hrc);
4530
4531 StorageControllerType_T enmCtrlType;
4532 hrc = pStorageCtrl->COMGETTER(ControllerType)(&enmCtrlType);
4533 AssertComRC(hrc);
4534 const char *pcszDevice = i_storageControllerTypeToStr(enmCtrlType);
4535
4536 StorageBus_T enmBus;
4537 hrc = pStorageCtrl->COMGETTER(Bus)(&enmBus);
4538 AssertComRC(hrc);
4539
4540 unsigned uLUN;
4541 hrc = Console::i_storageBusPortDeviceToLun(enmBus, lPort, lDev, uLUN);
4542 AssertComRC(hrc);
4543
4544 PPDMIBASE pIBase = NULL;
4545 PPDMIMEDIA pIMedium = NULL;
4546 int rc = PDMR3QueryDriverOnLun(ptrVM.rawUVM(), pcszDevice, ulStorageCtrlInst, uLUN, "VD", &pIBase);
4547 if (RT_SUCCESS(rc))
4548 {
4549 if (pIBase)
4550 {
4551 pIMedium = (PPDMIMEDIA)pIBase->pfnQueryInterface(pIBase, PDMIMEDIA_IID);
4552 if (pIMedium)
4553 {
4554 rc = pIMedium->pfnSetSecKeyIf(pIMedium, NULL, mpIfSecKeyHlp);
4555 Assert(RT_SUCCESS(rc) || rc == VERR_NOT_SUPPORTED);
4556 }
4557 }
4558 }
4559 }
4560 }
4561
4562 return hrc;
4563}
4564
4565/**
4566 * Configures the encryption support for the disk which have encryption conigured
4567 * with the configured key.
4568 *
4569 * @returns COM status code.
4570 * @param strId The ID of the password.
4571 * @param pcDisksConfigured Where to store the number of disks configured for the given ID.
4572 */
4573HRESULT Console::i_configureEncryptionForDisk(const com::Utf8Str &strId, unsigned *pcDisksConfigured)
4574{
4575 unsigned cDisksConfigured = 0;
4576 HRESULT hrc = S_OK;
4577 SafeIfaceArray<IMediumAttachment> sfaAttachments;
4578
4579 AutoCaller autoCaller(this);
4580 AssertComRCReturnRC(autoCaller.rc());
4581
4582 /* Get the VM - must be done before the read-locking. */
4583 SafeVMPtr ptrVM(this);
4584 if (!ptrVM.isOk())
4585 return ptrVM.rc();
4586
4587 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4588
4589 hrc = mMachine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(sfaAttachments));
4590 if (FAILED(hrc))
4591 return hrc;
4592
4593 /* Find the correct attachment. */
4594 for (unsigned i = 0; i < sfaAttachments.size(); i++)
4595 {
4596 const ComPtr<IMediumAttachment> &pAtt = sfaAttachments[i];
4597 ComPtr<IMedium> pMedium;
4598 ComPtr<IMedium> pBase;
4599 Bstr bstrKeyId;
4600
4601 hrc = pAtt->COMGETTER(Medium)(pMedium.asOutParam());
4602 if (FAILED(hrc))
4603 break;
4604
4605 /* Skip non hard disk attachments. */
4606 if (pMedium.isNull())
4607 continue;
4608
4609 /* Get the UUID of the base medium and compare. */
4610 hrc = pMedium->COMGETTER(Base)(pBase.asOutParam());
4611 if (FAILED(hrc))
4612 break;
4613
4614 hrc = pBase->GetProperty(Bstr("CRYPT/KeyId").raw(), bstrKeyId.asOutParam());
4615 if (hrc == VBOX_E_OBJECT_NOT_FOUND)
4616 {
4617 hrc = S_OK;
4618 continue;
4619 }
4620 else if (FAILED(hrc))
4621 break;
4622
4623 if (strId.equals(Utf8Str(bstrKeyId)))
4624 {
4625 /*
4626 * Found the matching medium, query storage controller, port and device
4627 * to identify the correct driver.
4628 */
4629 ComPtr<IStorageController> pStorageCtrl;
4630 Bstr storageCtrlName;
4631 LONG lPort, lDev;
4632 ULONG ulStorageCtrlInst;
4633
4634 hrc = pAtt->COMGETTER(Controller)(storageCtrlName.asOutParam());
4635 if (FAILED(hrc))
4636 break;
4637
4638 hrc = pAtt->COMGETTER(Port)(&lPort);
4639 if (FAILED(hrc))
4640 break;
4641
4642 hrc = pAtt->COMGETTER(Device)(&lDev);
4643 if (FAILED(hrc))
4644 break;
4645
4646 hrc = mMachine->GetStorageControllerByName(storageCtrlName.raw(), pStorageCtrl.asOutParam());
4647 if (FAILED(hrc))
4648 break;
4649
4650 hrc = pStorageCtrl->COMGETTER(Instance)(&ulStorageCtrlInst);
4651 if (FAILED(hrc))
4652 break;
4653
4654 StorageControllerType_T enmCtrlType;
4655 hrc = pStorageCtrl->COMGETTER(ControllerType)(&enmCtrlType);
4656 AssertComRC(hrc);
4657 const char *pcszDevice = i_storageControllerTypeToStr(enmCtrlType);
4658
4659 StorageBus_T enmBus;
4660 hrc = pStorageCtrl->COMGETTER(Bus)(&enmBus);
4661 AssertComRC(hrc);
4662
4663 unsigned uLUN;
4664 hrc = Console::i_storageBusPortDeviceToLun(enmBus, lPort, lDev, uLUN);
4665 AssertComRCReturnRC(hrc);
4666
4667 PPDMIBASE pIBase = NULL;
4668 PPDMIMEDIA pIMedium = NULL;
4669 int rc = PDMR3QueryDriverOnLun(ptrVM.rawUVM(), pcszDevice, ulStorageCtrlInst, uLUN, "VD", &pIBase);
4670 if (RT_SUCCESS(rc))
4671 {
4672 if (pIBase)
4673 {
4674 pIMedium = (PPDMIMEDIA)pIBase->pfnQueryInterface(pIBase, PDMIMEDIA_IID);
4675 if (!pIMedium)
4676 return setError(E_FAIL, tr("could not query medium interface of controller"));
4677 else
4678 {
4679 rc = pIMedium->pfnSetSecKeyIf(pIMedium, mpIfSecKey, mpIfSecKeyHlp);
4680 if (rc == VERR_VD_PASSWORD_INCORRECT)
4681 {
4682 hrc = setError(VBOX_E_PASSWORD_INCORRECT, tr("The provided password for ID \"%s\" is not correct for at least one disk using this ID"),
4683 strId.c_str());
4684 break;
4685 }
4686 else if (RT_FAILURE(rc))
4687 {
4688 hrc = setError(E_FAIL, tr("Failed to set the encryption key (%Rrc)"), rc);
4689 break;
4690 }
4691
4692 if (RT_SUCCESS(rc))
4693 cDisksConfigured++;
4694 }
4695 }
4696 else
4697 return setError(E_FAIL, tr("could not query base interface of controller"));
4698 }
4699 }
4700 }
4701
4702 if ( SUCCEEDED(hrc)
4703 && pcDisksConfigured)
4704 *pcDisksConfigured = cDisksConfigured;
4705 else if (FAILED(hrc))
4706 {
4707 /* Clear disk encryption setup on successfully configured attachments. */
4708 ErrorInfoKeeper eik; /* Keep current error info or it gets deestroyed in the IPC methods below. */
4709 i_clearDiskEncryptionKeysOnAllAttachmentsWithKeyId(strId);
4710 }
4711
4712 return hrc;
4713}
4714
4715/**
4716 * Parses the encryption configuration for one disk.
4717 *
4718 * @returns COM status code.
4719 * @param psz Pointer to the configuration for the encryption of one disk.
4720 * @param ppszEnd Pointer to the string following encrpytion configuration.
4721 */
4722HRESULT Console::i_consoleParseDiskEncryption(const char *psz, const char **ppszEnd)
4723{
4724 char *pszUuid = NULL;
4725 char *pszKeyEnc = NULL;
4726 int rc = VINF_SUCCESS;
4727 HRESULT hrc = S_OK;
4728
4729 while ( *psz
4730 && RT_SUCCESS(rc))
4731 {
4732 char *pszKey = NULL;
4733 char *pszVal = NULL;
4734 const char *pszEnd = NULL;
4735
4736 rc = i_consoleParseKeyValue(psz, &pszEnd, &pszKey, &pszVal);
4737 if (RT_SUCCESS(rc))
4738 {
4739 if (!RTStrCmp(pszKey, "uuid"))
4740 pszUuid = pszVal;
4741 else if (!RTStrCmp(pszKey, "dek"))
4742 pszKeyEnc = pszVal;
4743 else
4744 rc = VERR_INVALID_PARAMETER;
4745
4746 RTStrFree(pszKey);
4747
4748 if (*pszEnd == ',')
4749 psz = pszEnd + 1;
4750 else
4751 {
4752 /*
4753 * End of the configuration for the current disk, skip linefeed and
4754 * carriage returns.
4755 */
4756 while ( *pszEnd == '\n'
4757 || *pszEnd == '\r')
4758 pszEnd++;
4759
4760 psz = pszEnd;
4761 break; /* Stop parsing */
4762 }
4763
4764 }
4765 }
4766
4767 if ( RT_SUCCESS(rc)
4768 && pszUuid
4769 && pszKeyEnc)
4770 {
4771 ssize_t cbKey = 0;
4772
4773 /* Decode the key. */
4774 cbKey = RTBase64DecodedSize(pszKeyEnc, NULL);
4775 if (cbKey != -1)
4776 {
4777 uint8_t *pbKey;
4778 rc = RTMemSaferAllocZEx((void **)&pbKey, cbKey, RTMEMSAFER_F_REQUIRE_NOT_PAGABLE);
4779 if (RT_SUCCESS(rc))
4780 {
4781 rc = RTBase64Decode(pszKeyEnc, pbKey, cbKey, NULL, NULL);
4782 if (RT_SUCCESS(rc))
4783 {
4784 rc = m_pKeyStore->addSecretKey(Utf8Str(pszUuid), pbKey, cbKey);
4785 if (RT_SUCCESS(rc))
4786 {
4787 hrc = i_configureEncryptionForDisk(Utf8Str(pszUuid), NULL);
4788 if (FAILED(hrc))
4789 {
4790 /* Delete the key from the map. */
4791 rc = m_pKeyStore->deleteSecretKey(Utf8Str(pszUuid));
4792 AssertRC(rc);
4793 }
4794 }
4795 }
4796 else
4797 hrc = setError(E_FAIL,
4798 tr("Failed to decode the key (%Rrc)"),
4799 rc);
4800
4801 RTMemSaferFree(pbKey, cbKey);
4802 }
4803 else
4804 hrc = setError(E_FAIL,
4805 tr("Failed to allocate secure memory for the key (%Rrc)"), rc);
4806 }
4807 else
4808 hrc = setError(E_FAIL,
4809 tr("The base64 encoding of the passed key is incorrect"));
4810 }
4811 else if (RT_SUCCESS(rc))
4812 hrc = setError(E_FAIL,
4813 tr("The encryption configuration is incomplete"));
4814
4815 if (pszUuid)
4816 RTStrFree(pszUuid);
4817 if (pszKeyEnc)
4818 {
4819 RTMemWipeThoroughly(pszKeyEnc, strlen(pszKeyEnc), 10 /* cMinPasses */);
4820 RTStrFree(pszKeyEnc);
4821 }
4822
4823 if (ppszEnd)
4824 *ppszEnd = psz;
4825
4826 return hrc;
4827}
4828
4829HRESULT Console::i_setDiskEncryptionKeys(const Utf8Str &strCfg)
4830{
4831 HRESULT hrc = S_OK;
4832 const char *pszCfg = strCfg.c_str();
4833
4834 while ( *pszCfg
4835 && SUCCEEDED(hrc))
4836 {
4837 const char *pszNext = NULL;
4838 hrc = i_consoleParseDiskEncryption(pszCfg, &pszNext);
4839 pszCfg = pszNext;
4840 }
4841
4842 return hrc;
4843}
4844
4845void Console::i_removeSecretKeysOnSuspend()
4846{
4847 /* Remove keys which are supposed to be removed on a suspend. */
4848 int rc = m_pKeyStore->deleteAllSecretKeys(true /* fSuspend */, true /* fForce */);
4849 AssertRC(rc); NOREF(rc);
4850}
4851
4852/**
4853 * Process a network adaptor change.
4854 *
4855 * @returns COM status code.
4856 *
4857 * @param pUVM The VM handle (caller hold this safely).
4858 * @param pszDevice The PDM device name.
4859 * @param uInstance The PDM device instance.
4860 * @param uLun The PDM LUN number of the drive.
4861 * @param aNetworkAdapter The network adapter whose attachment needs to be changed
4862 */
4863HRESULT Console::i_doNetworkAdapterChange(PUVM pUVM,
4864 const char *pszDevice,
4865 unsigned uInstance,
4866 unsigned uLun,
4867 INetworkAdapter *aNetworkAdapter)
4868{
4869 LogFlowThisFunc(("pszDevice=%p:{%s} uInstance=%u uLun=%u aNetworkAdapter=%p\n",
4870 pszDevice, pszDevice, uInstance, uLun, aNetworkAdapter));
4871
4872 AutoCaller autoCaller(this);
4873 AssertComRCReturnRC(autoCaller.rc());
4874
4875 /*
4876 * Suspend the VM first.
4877 */
4878 bool fResume = false;
4879 HRESULT hr = i_suspendBeforeConfigChange(pUVM, NULL, &fResume);
4880 if (FAILED(hr))
4881 return hr;
4882
4883 /*
4884 * Call worker in EMT, that's faster and safer than doing everything
4885 * using VM3ReqCall. Note that we separate VMR3ReqCall from VMR3ReqWait
4886 * here to make requests from under the lock in order to serialize them.
4887 */
4888 int rc = VMR3ReqCallWaitU(pUVM, 0 /*idDstCpu*/,
4889 (PFNRT)i_changeNetworkAttachment, 6,
4890 this, pUVM, pszDevice, uInstance, uLun, aNetworkAdapter);
4891
4892 if (fResume)
4893 i_resumeAfterConfigChange(pUVM);
4894
4895 if (RT_SUCCESS(rc))
4896 return S_OK;
4897
4898 return setError(E_FAIL,
4899 tr("Could not change the network adaptor attachement type (%Rrc)"), rc);
4900}
4901
4902
4903/**
4904 * Performs the Network Adaptor change in EMT.
4905 *
4906 * @returns VBox status code.
4907 *
4908 * @param pThis Pointer to the Console object.
4909 * @param pUVM The VM handle.
4910 * @param pszDevice The PDM device name.
4911 * @param uInstance The PDM device instance.
4912 * @param uLun The PDM LUN number of the drive.
4913 * @param aNetworkAdapter The network adapter whose attachment needs to be changed
4914 *
4915 * @thread EMT
4916 * @note Locks the Console object for writing.
4917 * @note The VM must not be running.
4918 */
4919DECLCALLBACK(int) Console::i_changeNetworkAttachment(Console *pThis,
4920 PUVM pUVM,
4921 const char *pszDevice,
4922 unsigned uInstance,
4923 unsigned uLun,
4924 INetworkAdapter *aNetworkAdapter)
4925{
4926 LogFlowFunc(("pThis=%p pszDevice=%p:{%s} uInstance=%u uLun=%u aNetworkAdapter=%p\n",
4927 pThis, pszDevice, pszDevice, uInstance, uLun, aNetworkAdapter));
4928
4929 AssertReturn(pThis, VERR_INVALID_PARAMETER);
4930
4931 AutoCaller autoCaller(pThis);
4932 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
4933
4934 ComPtr<IVirtualBox> pVirtualBox;
4935 pThis->mMachine->COMGETTER(Parent)(pVirtualBox.asOutParam());
4936 ComPtr<ISystemProperties> pSystemProperties;
4937 if (pVirtualBox)
4938 pVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
4939 ChipsetType_T chipsetType = ChipsetType_PIIX3;
4940 pThis->mMachine->COMGETTER(ChipsetType)(&chipsetType);
4941 ULONG maxNetworkAdapters = 0;
4942 if (pSystemProperties)
4943 pSystemProperties->GetMaxNetworkAdapters(chipsetType, &maxNetworkAdapters);
4944 AssertMsg( ( !strcmp(pszDevice, "pcnet")
4945 || !strcmp(pszDevice, "e1000")
4946 || !strcmp(pszDevice, "virtio-net"))
4947 && uLun == 0
4948 && uInstance < maxNetworkAdapters,
4949 ("pszDevice=%s uLun=%d uInstance=%d\n", pszDevice, uLun, uInstance));
4950 Log(("pszDevice=%s uLun=%d uInstance=%d\n", pszDevice, uLun, uInstance));
4951
4952 /*
4953 * Check the VM for correct state.
4954 */
4955 VMSTATE enmVMState = VMR3GetStateU(pUVM);
4956 AssertReturn(enmVMState == VMSTATE_SUSPENDED, VERR_INVALID_STATE);
4957
4958 PCFGMNODE pCfg = NULL; /* /Devices/Dev/.../Config/ */
4959 PCFGMNODE pLunL0 = NULL; /* /Devices/Dev/0/LUN#0/ */
4960 PCFGMNODE pInst = CFGMR3GetChildF(CFGMR3GetRootU(pUVM), "Devices/%s/%d/", pszDevice, uInstance);
4961 AssertRelease(pInst);
4962
4963 int rc = pThis->i_configNetwork(pszDevice, uInstance, uLun, aNetworkAdapter, pCfg, pLunL0, pInst,
4964 true /*fAttachDetach*/, false /*fIgnoreConnectFailure*/);
4965
4966 LogFlowFunc(("Returning %Rrc\n", rc));
4967 return rc;
4968}
4969
4970/**
4971 * Returns the device name of a given audio adapter.
4972 *
4973 * @returns Device name, or an empty string if no device is configured.
4974 * @param aAudioAdapter Audio adapter to return device name for.
4975 */
4976Utf8Str Console::i_getAudioAdapterDeviceName(IAudioAdapter *aAudioAdapter)
4977{
4978 Utf8Str strDevice;
4979
4980 AudioControllerType_T audioController;
4981 HRESULT hrc = aAudioAdapter->COMGETTER(AudioController)(&audioController);
4982 AssertComRC(hrc);
4983 if (SUCCEEDED(hrc))
4984 {
4985 switch (audioController)
4986 {
4987 case AudioControllerType_HDA: strDevice = "hda"; break;
4988 case AudioControllerType_AC97: strDevice = "ichac97"; break;
4989 case AudioControllerType_SB16: strDevice = "sb16"; break;
4990 default: break; /* None. */
4991 }
4992 }
4993
4994 return strDevice;
4995}
4996
4997/**
4998 * Called by IInternalSessionControl::OnAudioAdapterChange().
4999 */
5000HRESULT Console::i_onAudioAdapterChange(IAudioAdapter *aAudioAdapter)
5001{
5002 LogFlowThisFunc(("\n"));
5003
5004 AutoCaller autoCaller(this);
5005 AssertComRCReturnRC(autoCaller.rc());
5006
5007 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5008
5009 HRESULT hrc = S_OK;
5010
5011 /* don't trigger audio changes if the VM isn't running */
5012 SafeVMPtrQuiet ptrVM(this);
5013 if (ptrVM.isOk())
5014 {
5015 BOOL fEnabledIn, fEnabledOut;
5016 hrc = aAudioAdapter->COMGETTER(EnabledIn)(&fEnabledIn);
5017 AssertComRC(hrc);
5018 if (SUCCEEDED(hrc))
5019 {
5020 hrc = aAudioAdapter->COMGETTER(EnabledOut)(&fEnabledOut);
5021 AssertComRC(hrc);
5022 if (SUCCEEDED(hrc))
5023 {
5024 int rc = VINF_SUCCESS;
5025
5026 for (ULONG ulLUN = 0; ulLUN < 16 /** @todo Use a define */; ulLUN++)
5027 {
5028 PPDMIBASE pBase;
5029 int rc2 = PDMR3QueryDriverOnLun(ptrVM.rawUVM(),
5030 i_getAudioAdapterDeviceName(aAudioAdapter).c_str(), 0 /* iInstance */,
5031 ulLUN, "AUDIO", &pBase);
5032 if (RT_FAILURE(rc2))
5033 continue;
5034
5035 if (pBase)
5036 {
5037 PPDMIAUDIOCONNECTOR pAudioCon =
5038 (PPDMIAUDIOCONNECTOR)pBase->pfnQueryInterface(pBase, PDMIAUDIOCONNECTOR_IID);
5039
5040 if ( pAudioCon
5041 && pAudioCon->pfnEnable)
5042 {
5043 int rcIn = pAudioCon->pfnEnable(pAudioCon, PDMAUDIODIR_IN, RT_BOOL(fEnabledIn));
5044 if (RT_FAILURE(rcIn))
5045 LogRel(("Audio: Failed to %s input of LUN#%RU32, rc=%Rrc\n",
5046 fEnabledIn ? "enable" : "disable", ulLUN, rcIn));
5047
5048 if (RT_SUCCESS(rc))
5049 rc = rcIn;
5050
5051 int rcOut = pAudioCon->pfnEnable(pAudioCon, PDMAUDIODIR_OUT, RT_BOOL(fEnabledOut));
5052 if (RT_FAILURE(rcOut))
5053 LogRel(("Audio: Failed to %s output of LUN#%RU32, rc=%Rrc\n",
5054 fEnabledIn ? "enable" : "disable", ulLUN, rcOut));
5055
5056 if (RT_SUCCESS(rc))
5057 rc = rcOut;
5058 }
5059 }
5060 }
5061
5062 if (RT_SUCCESS(rc))
5063 LogRel(("Audio: Status has changed (input is %s, output is %s)\n",
5064 fEnabledIn ? "enabled" : "disabled", fEnabledOut ? "enabled" : "disabled"));
5065 }
5066 }
5067
5068 ptrVM.release();
5069 }
5070
5071 alock.release();
5072
5073 /* notify console callbacks on success */
5074 if (SUCCEEDED(hrc))
5075 fireAudioAdapterChangedEvent(mEventSource, aAudioAdapter);
5076
5077 LogFlowThisFunc(("Leaving rc=%#x\n", S_OK));
5078 return S_OK;
5079}
5080
5081
5082/**
5083 * Performs the Serial Port attachment change in EMT.
5084 *
5085 * @returns VBox status code.
5086 *
5087 * @param pThis Pointer to the Console object.
5088 * @param pUVM The VM handle.
5089 * @param pSerialPort The serial port whose attachment needs to be changed
5090 *
5091 * @thread EMT
5092 * @note Locks the Console object for writing.
5093 * @note The VM must not be running.
5094 */
5095DECLCALLBACK(int) Console::i_changeSerialPortAttachment(Console *pThis, PUVM pUVM,
5096 ISerialPort *pSerialPort)
5097{
5098 LogFlowFunc(("pThis=%p pUVM=%p pSerialPort=%p\n", pThis, pUVM, pSerialPort));
5099
5100 AssertReturn(pThis, VERR_INVALID_PARAMETER);
5101
5102 AutoCaller autoCaller(pThis);
5103 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
5104
5105 AutoWriteLock alock(pThis COMMA_LOCKVAL_SRC_POS);
5106
5107 /*
5108 * Check the VM for correct state.
5109 */
5110 VMSTATE enmVMState = VMR3GetStateU(pUVM);
5111 AssertReturn(enmVMState == VMSTATE_SUSPENDED, VERR_INVALID_STATE);
5112
5113 HRESULT hrc = S_OK;
5114 int rc = VINF_SUCCESS;
5115 ULONG ulSlot;
5116 hrc = pSerialPort->COMGETTER(Slot)(&ulSlot);
5117 if (SUCCEEDED(hrc))
5118 {
5119 /* Check whether the port mode changed and act accordingly. */
5120 Assert(ulSlot < 4);
5121
5122 PortMode_T eHostMode;
5123 hrc = pSerialPort->COMGETTER(HostMode)(&eHostMode);
5124 if (SUCCEEDED(hrc))
5125 {
5126 PCFGMNODE pInst = CFGMR3GetChildF(CFGMR3GetRootU(pUVM), "Devices/serial/%d/", ulSlot);
5127 AssertRelease(pInst);
5128
5129 /* Remove old driver. */
5130 if (pThis->m_aeSerialPortMode[ulSlot] != PortMode_Disconnected)
5131 {
5132 rc = PDMR3DeviceDetach(pUVM, "serial", ulSlot, 0, 0);
5133 PCFGMNODE pLunL0 = CFGMR3GetChildF(pInst, "LUN#0");
5134 CFGMR3RemoveNode(pLunL0);
5135 }
5136
5137 if (RT_SUCCESS(rc))
5138 {
5139 BOOL fServer;
5140 Bstr bstrPath;
5141 hrc = pSerialPort->COMGETTER(Server)(&fServer);
5142 if (SUCCEEDED(hrc))
5143 hrc = pSerialPort->COMGETTER(Path)(bstrPath.asOutParam());
5144
5145 /* Configure new driver. */
5146 if ( SUCCEEDED(hrc)
5147 && eHostMode != PortMode_Disconnected)
5148 {
5149 rc = pThis->i_configSerialPort(pInst, eHostMode, Utf8Str(bstrPath).c_str(), RT_BOOL(fServer));
5150 if (RT_SUCCESS(rc))
5151 {
5152 /*
5153 * Attach the driver.
5154 */
5155 PPDMIBASE pBase;
5156 rc = PDMR3DeviceAttach(pUVM, "serial", ulSlot, 0, 0, &pBase);
5157
5158 CFGMR3Dump(pInst);
5159 }
5160 }
5161 }
5162 }
5163 }
5164
5165 if (RT_SUCCESS(rc) && FAILED(hrc))
5166 rc = VERR_INTERNAL_ERROR;
5167
5168 LogFlowFunc(("Returning %Rrc\n", rc));
5169 return rc;
5170}
5171
5172
5173/**
5174 * Called by IInternalSessionControl::OnSerialPortChange().
5175 */
5176HRESULT Console::i_onSerialPortChange(ISerialPort *aSerialPort)
5177{
5178 LogFlowThisFunc(("\n"));
5179
5180 AutoCaller autoCaller(this);
5181 AssertComRCReturnRC(autoCaller.rc());
5182
5183 HRESULT hrc = S_OK;
5184
5185 /* don't trigger audio changes if the VM isn't running */
5186 SafeVMPtrQuiet ptrVM(this);
5187 if (ptrVM.isOk())
5188 {
5189 ULONG ulSlot;
5190 BOOL fEnabled;
5191 hrc = aSerialPort->COMGETTER(Slot)(&ulSlot);
5192 if (SUCCEEDED(hrc))
5193 hrc = aSerialPort->COMGETTER(Enabled)(&fEnabled);
5194 if (SUCCEEDED(hrc) && fEnabled)
5195 {
5196 /* Check whether the port mode changed and act accordingly. */
5197 Assert(ulSlot < 4);
5198
5199 PortMode_T eHostMode;
5200 hrc = aSerialPort->COMGETTER(HostMode)(&eHostMode);
5201 if (m_aeSerialPortMode[ulSlot] != eHostMode)
5202 {
5203 /*
5204 * Suspend the VM first.
5205 */
5206 bool fResume = false;
5207 HRESULT hr = i_suspendBeforeConfigChange(ptrVM.rawUVM(), NULL, &fResume);
5208 if (FAILED(hr))
5209 return hr;
5210
5211 /*
5212 * Call worker in EMT, that's faster and safer than doing everything
5213 * using VM3ReqCallWait.
5214 */
5215 int rc = VMR3ReqCallWaitU(ptrVM.rawUVM(), 0 /*idDstCpu*/,
5216 (PFNRT)i_changeSerialPortAttachment, 6,
5217 this, ptrVM.rawUVM(), aSerialPort);
5218
5219 if (fResume)
5220 i_resumeAfterConfigChange(ptrVM.rawUVM());
5221 if (RT_SUCCESS(rc))
5222 m_aeSerialPortMode[ulSlot] = eHostMode;
5223 else
5224 hrc = setError(E_FAIL,
5225 tr("Failed to change the serial port attachment (%Rrc)"), rc);
5226 }
5227 }
5228 }
5229
5230 if (SUCCEEDED(hrc))
5231 fireSerialPortChangedEvent(mEventSource, aSerialPort);
5232
5233 LogFlowThisFunc(("Leaving rc=%#x\n", S_OK));
5234 return hrc;
5235}
5236
5237/**
5238 * Called by IInternalSessionControl::OnParallelPortChange().
5239 */
5240HRESULT Console::i_onParallelPortChange(IParallelPort *aParallelPort)
5241{
5242 LogFlowThisFunc(("\n"));
5243
5244 AutoCaller autoCaller(this);
5245 AssertComRCReturnRC(autoCaller.rc());
5246
5247 fireParallelPortChangedEvent(mEventSource, aParallelPort);
5248
5249 LogFlowThisFunc(("Leaving rc=%#x\n", S_OK));
5250 return S_OK;
5251}
5252
5253/**
5254 * Called by IInternalSessionControl::OnStorageControllerChange().
5255 */
5256HRESULT Console::i_onStorageControllerChange()
5257{
5258 LogFlowThisFunc(("\n"));
5259
5260 AutoCaller autoCaller(this);
5261 AssertComRCReturnRC(autoCaller.rc());
5262
5263 fireStorageControllerChangedEvent(mEventSource);
5264
5265 LogFlowThisFunc(("Leaving rc=%#x\n", S_OK));
5266 return S_OK;
5267}
5268
5269/**
5270 * Called by IInternalSessionControl::OnMediumChange().
5271 */
5272HRESULT Console::i_onMediumChange(IMediumAttachment *aMediumAttachment, BOOL aForce)
5273{
5274 LogFlowThisFunc(("\n"));
5275
5276 AutoCaller autoCaller(this);
5277 AssertComRCReturnRC(autoCaller.rc());
5278
5279 HRESULT rc = S_OK;
5280
5281 /* don't trigger medium changes if the VM isn't running */
5282 SafeVMPtrQuiet ptrVM(this);
5283 if (ptrVM.isOk())
5284 {
5285 rc = i_doMediumChange(aMediumAttachment, !!aForce, ptrVM.rawUVM());
5286 ptrVM.release();
5287 }
5288
5289 /* notify console callbacks on success */
5290 if (SUCCEEDED(rc))
5291 fireMediumChangedEvent(mEventSource, aMediumAttachment);
5292
5293 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
5294 return rc;
5295}
5296
5297/**
5298 * Called by IInternalSessionControl::OnCPUChange().
5299 *
5300 * @note Locks this object for writing.
5301 */
5302HRESULT Console::i_onCPUChange(ULONG aCPU, BOOL aRemove)
5303{
5304 LogFlowThisFunc(("\n"));
5305
5306 AutoCaller autoCaller(this);
5307 AssertComRCReturnRC(autoCaller.rc());
5308
5309 HRESULT rc = S_OK;
5310
5311 /* don't trigger CPU changes if the VM isn't running */
5312 SafeVMPtrQuiet ptrVM(this);
5313 if (ptrVM.isOk())
5314 {
5315 if (aRemove)
5316 rc = i_doCPURemove(aCPU, ptrVM.rawUVM());
5317 else
5318 rc = i_doCPUAdd(aCPU, ptrVM.rawUVM());
5319 ptrVM.release();
5320 }
5321
5322 /* notify console callbacks on success */
5323 if (SUCCEEDED(rc))
5324 fireCPUChangedEvent(mEventSource, aCPU, aRemove);
5325
5326 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
5327 return rc;
5328}
5329
5330/**
5331 * Called by IInternalSessionControl::OnCpuExecutionCapChange().
5332 *
5333 * @note Locks this object for writing.
5334 */
5335HRESULT Console::i_onCPUExecutionCapChange(ULONG aExecutionCap)
5336{
5337 LogFlowThisFunc(("\n"));
5338
5339 AutoCaller autoCaller(this);
5340 AssertComRCReturnRC(autoCaller.rc());
5341
5342 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5343
5344 HRESULT rc = S_OK;
5345
5346 /* don't trigger the CPU priority change if the VM isn't running */
5347 SafeVMPtrQuiet ptrVM(this);
5348 if (ptrVM.isOk())
5349 {
5350 if ( mMachineState == MachineState_Running
5351 || mMachineState == MachineState_Teleporting
5352 || mMachineState == MachineState_LiveSnapshotting
5353 )
5354 {
5355 /* No need to call in the EMT thread. */
5356 rc = VMR3SetCpuExecutionCap(ptrVM.rawUVM(), aExecutionCap);
5357 }
5358 else
5359 rc = i_setInvalidMachineStateError();
5360 ptrVM.release();
5361 }
5362
5363 /* notify console callbacks on success */
5364 if (SUCCEEDED(rc))
5365 {
5366 alock.release();
5367 fireCPUExecutionCapChangedEvent(mEventSource, aExecutionCap);
5368 }
5369
5370 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
5371 return rc;
5372}
5373
5374/**
5375 * Called by IInternalSessionControl::OnClipboardModeChange().
5376 *
5377 * @note Locks this object for writing.
5378 */
5379HRESULT Console::i_onClipboardModeChange(ClipboardMode_T aClipboardMode)
5380{
5381 LogFlowThisFunc(("\n"));
5382
5383 AutoCaller autoCaller(this);
5384 AssertComRCReturnRC(autoCaller.rc());
5385
5386 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5387
5388 HRESULT rc = S_OK;
5389
5390 /* don't trigger the clipboard mode change if the VM isn't running */
5391 SafeVMPtrQuiet ptrVM(this);
5392 if (ptrVM.isOk())
5393 {
5394 if ( mMachineState == MachineState_Running
5395 || mMachineState == MachineState_Teleporting
5396 || mMachineState == MachineState_LiveSnapshotting)
5397 i_changeClipboardMode(aClipboardMode);
5398 else
5399 rc = i_setInvalidMachineStateError();
5400 ptrVM.release();
5401 }
5402
5403 /* notify console callbacks on success */
5404 if (SUCCEEDED(rc))
5405 {
5406 alock.release();
5407 fireClipboardModeChangedEvent(mEventSource, aClipboardMode);
5408 }
5409
5410 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
5411 return rc;
5412}
5413
5414/**
5415 * Called by IInternalSessionControl::OnDnDModeChange().
5416 *
5417 * @note Locks this object for writing.
5418 */
5419HRESULT Console::i_onDnDModeChange(DnDMode_T aDnDMode)
5420{
5421 LogFlowThisFunc(("\n"));
5422
5423 AutoCaller autoCaller(this);
5424 AssertComRCReturnRC(autoCaller.rc());
5425
5426 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5427
5428 HRESULT rc = S_OK;
5429
5430 /* don't trigger the drag and drop mode change if the VM isn't running */
5431 SafeVMPtrQuiet ptrVM(this);
5432 if (ptrVM.isOk())
5433 {
5434 if ( mMachineState == MachineState_Running
5435 || mMachineState == MachineState_Teleporting
5436 || mMachineState == MachineState_LiveSnapshotting)
5437 i_changeDnDMode(aDnDMode);
5438 else
5439 rc = i_setInvalidMachineStateError();
5440 ptrVM.release();
5441 }
5442
5443 /* notify console callbacks on success */
5444 if (SUCCEEDED(rc))
5445 {
5446 alock.release();
5447 fireDnDModeChangedEvent(mEventSource, aDnDMode);
5448 }
5449
5450 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
5451 return rc;
5452}
5453
5454/**
5455 * Check the return code of mConsoleVRDPServer->Launch. LogRel() the error reason and
5456 * return an error message appropriate for setError().
5457 */
5458Utf8Str Console::VRDPServerErrorToMsg(int vrc)
5459{
5460 Utf8Str errMsg;
5461 if (vrc == VERR_NET_ADDRESS_IN_USE)
5462 {
5463 /* Not fatal if we start the VM, fatal if the VM is already running. */
5464 Bstr bstr;
5465 mVRDEServer->GetVRDEProperty(Bstr("TCP/Ports").raw(), bstr.asOutParam());
5466 errMsg = Utf8StrFmt(tr("VirtualBox Remote Desktop Extension server can't bind to the port(s): %s"),
5467 Utf8Str(bstr).c_str());
5468 LogRel(("VRDE: Warning: failed to launch VRDE server (%Rrc): %s\n", vrc, errMsg.c_str()));
5469 }
5470 else if (vrc == VINF_NOT_SUPPORTED)
5471 {
5472 /* This means that the VRDE is not installed.
5473 * Not fatal if we start the VM, fatal if the VM is already running. */
5474 LogRel(("VRDE: VirtualBox Remote Desktop Extension is not available.\n"));
5475 errMsg = Utf8Str("VirtualBox Remote Desktop Extension is not available");
5476 }
5477 else if (RT_FAILURE(vrc))
5478 {
5479 /* Fail if the server is installed but can't start. Always fatal. */
5480 switch (vrc)
5481 {
5482 case VERR_FILE_NOT_FOUND:
5483 errMsg = Utf8StrFmt(tr("Could not find the VirtualBox Remote Desktop Extension library"));
5484 break;
5485 default:
5486 errMsg = Utf8StrFmt(tr("Failed to launch the Remote Desktop Extension server (%Rrc)"), vrc);
5487 break;
5488 }
5489 LogRel(("VRDE: Failed: (%Rrc): %s\n", vrc, errMsg.c_str()));
5490 }
5491
5492 return errMsg;
5493}
5494
5495/**
5496 * Called by IInternalSessionControl::OnVRDEServerChange().
5497 *
5498 * @note Locks this object for writing.
5499 */
5500HRESULT Console::i_onVRDEServerChange(BOOL aRestart)
5501{
5502 AutoCaller autoCaller(this);
5503 AssertComRCReturnRC(autoCaller.rc());
5504
5505 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5506
5507 HRESULT rc = S_OK;
5508
5509 /* don't trigger VRDE server changes if the VM isn't running */
5510 SafeVMPtrQuiet ptrVM(this);
5511 if (ptrVM.isOk())
5512 {
5513 /* Serialize. */
5514 if (mfVRDEChangeInProcess)
5515 mfVRDEChangePending = true;
5516 else
5517 {
5518 do {
5519 mfVRDEChangeInProcess = true;
5520 mfVRDEChangePending = false;
5521
5522 if ( mVRDEServer
5523 && ( mMachineState == MachineState_Running
5524 || mMachineState == MachineState_Teleporting
5525 || mMachineState == MachineState_LiveSnapshotting
5526 || mMachineState == MachineState_Paused
5527 )
5528 )
5529 {
5530 BOOL vrdpEnabled = FALSE;
5531
5532 rc = mVRDEServer->COMGETTER(Enabled)(&vrdpEnabled);
5533 ComAssertComRCRetRC(rc);
5534
5535 if (aRestart)
5536 {
5537 /* VRDP server may call this Console object back from other threads (VRDP INPUT or OUTPUT). */
5538 alock.release();
5539
5540 if (vrdpEnabled)
5541 {
5542 // If there was no VRDP server started the 'stop' will do nothing.
5543 // However if a server was started and this notification was called,
5544 // we have to restart the server.
5545 mConsoleVRDPServer->Stop();
5546
5547 int vrc = mConsoleVRDPServer->Launch();
5548 if (vrc != VINF_SUCCESS)
5549 {
5550 Utf8Str errMsg = VRDPServerErrorToMsg(vrc);
5551 rc = setError(E_FAIL, errMsg.c_str());
5552 }
5553 else
5554 {
5555#ifdef VBOX_WITH_AUDIO_VRDE
5556 mAudioVRDE->doAttachDriverViaEmt(mpUVM, NULL /*alock is not held*/);
5557#endif
5558 mConsoleVRDPServer->EnableConnections();
5559 }
5560 }
5561 else
5562 {
5563 mConsoleVRDPServer->Stop();
5564#ifdef VBOX_WITH_AUDIO_VRDE
5565 mAudioVRDE->doDetachDriverViaEmt(mpUVM, NULL /*alock is not held*/);
5566#endif
5567 }
5568
5569 alock.acquire();
5570 }
5571 }
5572 else
5573 rc = i_setInvalidMachineStateError();
5574
5575 mfVRDEChangeInProcess = false;
5576 } while (mfVRDEChangePending && SUCCEEDED(rc));
5577 }
5578
5579 ptrVM.release();
5580 }
5581
5582 /* notify console callbacks on success */
5583 if (SUCCEEDED(rc))
5584 {
5585 alock.release();
5586 fireVRDEServerChangedEvent(mEventSource);
5587 }
5588
5589 return rc;
5590}
5591
5592void Console::i_onVRDEServerInfoChange()
5593{
5594 AutoCaller autoCaller(this);
5595 AssertComRCReturnVoid(autoCaller.rc());
5596
5597 fireVRDEServerInfoChangedEvent(mEventSource);
5598}
5599
5600HRESULT Console::i_sendACPIMonitorHotPlugEvent()
5601{
5602 LogFlowThisFuncEnter();
5603
5604 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5605
5606 if ( mMachineState != MachineState_Running
5607 && mMachineState != MachineState_Teleporting
5608 && mMachineState != MachineState_LiveSnapshotting)
5609 return i_setInvalidMachineStateError();
5610
5611 /* get the VM handle. */
5612 SafeVMPtr ptrVM(this);
5613 if (!ptrVM.isOk())
5614 return ptrVM.rc();
5615
5616 // no need to release lock, as there are no cross-thread callbacks
5617
5618 /* get the acpi device interface and press the sleep button. */
5619 PPDMIBASE pBase;
5620 int vrc = PDMR3QueryDeviceLun(ptrVM.rawUVM(), "acpi", 0, 0, &pBase);
5621 if (RT_SUCCESS(vrc))
5622 {
5623 Assert(pBase);
5624 PPDMIACPIPORT pPort = PDMIBASE_QUERY_INTERFACE(pBase, PDMIACPIPORT);
5625 if (pPort)
5626 vrc = pPort->pfnMonitorHotPlugEvent(pPort);
5627 else
5628 vrc = VERR_PDM_MISSING_INTERFACE;
5629 }
5630
5631 HRESULT rc = RT_SUCCESS(vrc) ? S_OK :
5632 setError(VBOX_E_PDM_ERROR,
5633 tr("Sending monitor hot-plug event failed (%Rrc)"),
5634 vrc);
5635
5636 LogFlowThisFunc(("rc=%Rhrc\n", rc));
5637 LogFlowThisFuncLeave();
5638 return rc;
5639}
5640
5641HRESULT Console::i_onVideoCaptureChange()
5642{
5643 AutoCaller autoCaller(this);
5644 AssertComRCReturnRC(autoCaller.rc());
5645
5646 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5647
5648 HRESULT rc = S_OK;
5649
5650#ifdef VBOX_WITH_VIDEOREC
5651 /* Don't trigger video capture changes if the VM isn't running. */
5652 SafeVMPtrQuiet ptrVM(this);
5653 if (ptrVM.isOk())
5654 {
5655 if (mDisplay)
5656 {
5657 Display *pDisplay = mDisplay;
5658 AssertPtr(pDisplay);
5659
5660 pDisplay->i_videoRecInvalidate();
5661
5662 int vrc;
5663
5664 if (!mDisplay->i_videoRecStarted())
5665 {
5666# ifdef VBOX_WITH_AUDIO_VIDEOREC
5667 /* Attach the video recording audio driver if required. */
5668 if (mDisplay->i_videoRecGetEnabled() & VIDEORECFEATURE_AUDIO)
5669 mAudioVideoRec->doAttachDriverViaEmt(mpUVM, &alock);
5670# endif
5671 vrc = mDisplay->i_videoRecStart();
5672 if (RT_FAILURE(vrc))
5673 rc = setError(E_FAIL, tr("Unable to start video capturing (%Rrc)"), vrc);
5674 }
5675 else
5676 {
5677 mDisplay->i_videoRecStop();
5678# ifdef VBOX_WITH_AUDIO_VIDEOREC
5679 mAudioVideoRec->doDetachDriverViaEmt(mpUVM, &alock);
5680# endif
5681 }
5682 }
5683
5684 ptrVM.release();
5685 }
5686#endif /* VBOX_WITH_VIDEOREC */
5687
5688 /* Notify console callbacks on success. */
5689 if (SUCCEEDED(rc))
5690 {
5691 alock.release();
5692 fireVideoCaptureChangedEvent(mEventSource);
5693 }
5694
5695 return rc;
5696}
5697
5698/**
5699 * Called by IInternalSessionControl::OnUSBControllerChange().
5700 */
5701HRESULT Console::i_onUSBControllerChange()
5702{
5703 LogFlowThisFunc(("\n"));
5704
5705 AutoCaller autoCaller(this);
5706 AssertComRCReturnRC(autoCaller.rc());
5707
5708 fireUSBControllerChangedEvent(mEventSource);
5709
5710 return S_OK;
5711}
5712
5713/**
5714 * Called by IInternalSessionControl::OnSharedFolderChange().
5715 *
5716 * @note Locks this object for writing.
5717 */
5718HRESULT Console::i_onSharedFolderChange(BOOL aGlobal)
5719{
5720 LogFlowThisFunc(("aGlobal=%RTbool\n", aGlobal));
5721
5722 AutoCaller autoCaller(this);
5723 AssertComRCReturnRC(autoCaller.rc());
5724
5725 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5726
5727 HRESULT rc = i_fetchSharedFolders(aGlobal);
5728
5729 /* notify console callbacks on success */
5730 if (SUCCEEDED(rc))
5731 {
5732 alock.release();
5733 fireSharedFolderChangedEvent(mEventSource, aGlobal ? (Scope_T)Scope_Global : (Scope_T)Scope_Machine);
5734 }
5735
5736 return rc;
5737}
5738
5739/**
5740 * Called by IInternalSessionControl::OnUSBDeviceAttach() or locally by
5741 * processRemoteUSBDevices() after IInternalMachineControl::RunUSBDeviceFilters()
5742 * returns TRUE for a given remote USB device.
5743 *
5744 * @return S_OK if the device was attached to the VM.
5745 * @return failure if not attached.
5746 *
5747 * @param aDevice The device in question.
5748 * @param aError Error information.
5749 * @param aMaskedIfs The interfaces to hide from the guest.
5750 * @param aCaptureFilename File name where to store the USB traffic.
5751 *
5752 * @note Locks this object for writing.
5753 */
5754HRESULT Console::i_onUSBDeviceAttach(IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError, ULONG aMaskedIfs,
5755 const Utf8Str &aCaptureFilename)
5756{
5757#ifdef VBOX_WITH_USB
5758 LogFlowThisFunc(("aDevice=%p aError=%p\n", aDevice, aError));
5759
5760 AutoCaller autoCaller(this);
5761 ComAssertComRCRetRC(autoCaller.rc());
5762
5763 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5764
5765 /* Get the VM pointer (we don't need error info, since it's a callback). */
5766 SafeVMPtrQuiet ptrVM(this);
5767 if (!ptrVM.isOk())
5768 {
5769 /* The VM may be no more operational when this message arrives
5770 * (e.g. it may be Saving or Stopping or just PoweredOff) --
5771 * autoVMCaller.rc() will return a failure in this case. */
5772 LogFlowThisFunc(("Attach request ignored (mMachineState=%d).\n",
5773 mMachineState));
5774 return ptrVM.rc();
5775 }
5776
5777 if (aError != NULL)
5778 {
5779 /* notify callbacks about the error */
5780 alock.release();
5781 i_onUSBDeviceStateChange(aDevice, true /* aAttached */, aError);
5782 return S_OK;
5783 }
5784
5785 /* Don't proceed unless there's at least one USB hub. */
5786 if (!PDMR3UsbHasHub(ptrVM.rawUVM()))
5787 {
5788 LogFlowThisFunc(("Attach request ignored (no USB controller).\n"));
5789 return E_FAIL;
5790 }
5791
5792 alock.release();
5793 HRESULT rc = i_attachUSBDevice(aDevice, aMaskedIfs, aCaptureFilename);
5794 if (FAILED(rc))
5795 {
5796 /* take the current error info */
5797 com::ErrorInfoKeeper eik;
5798 /* the error must be a VirtualBoxErrorInfo instance */
5799 ComPtr<IVirtualBoxErrorInfo> pError = eik.takeError();
5800 Assert(!pError.isNull());
5801 if (!pError.isNull())
5802 {
5803 /* notify callbacks about the error */
5804 i_onUSBDeviceStateChange(aDevice, true /* aAttached */, pError);
5805 }
5806 }
5807
5808 return rc;
5809
5810#else /* !VBOX_WITH_USB */
5811 return E_FAIL;
5812#endif /* !VBOX_WITH_USB */
5813}
5814
5815/**
5816 * Called by IInternalSessionControl::OnUSBDeviceDetach() and locally by
5817 * processRemoteUSBDevices().
5818 *
5819 * @note Locks this object for writing.
5820 */
5821HRESULT Console::i_onUSBDeviceDetach(IN_BSTR aId,
5822 IVirtualBoxErrorInfo *aError)
5823{
5824#ifdef VBOX_WITH_USB
5825 Guid Uuid(aId);
5826 LogFlowThisFunc(("aId={%RTuuid} aError=%p\n", Uuid.raw(), aError));
5827
5828 AutoCaller autoCaller(this);
5829 AssertComRCReturnRC(autoCaller.rc());
5830
5831 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5832
5833 /* Find the device. */
5834 ComObjPtr<OUSBDevice> pUSBDevice;
5835 USBDeviceList::iterator it = mUSBDevices.begin();
5836 while (it != mUSBDevices.end())
5837 {
5838 LogFlowThisFunc(("it={%RTuuid}\n", (*it)->i_id().raw()));
5839 if ((*it)->i_id() == Uuid)
5840 {
5841 pUSBDevice = *it;
5842 break;
5843 }
5844 ++it;
5845 }
5846
5847
5848 if (pUSBDevice.isNull())
5849 {
5850 LogFlowThisFunc(("USB device not found.\n"));
5851
5852 /* The VM may be no more operational when this message arrives
5853 * (e.g. it may be Saving or Stopping or just PoweredOff). Use
5854 * AutoVMCaller to detect it -- AutoVMCaller::rc() will return a
5855 * failure in this case. */
5856
5857 AutoVMCallerQuiet autoVMCaller(this);
5858 if (FAILED(autoVMCaller.rc()))
5859 {
5860 LogFlowThisFunc(("Detach request ignored (mMachineState=%d).\n",
5861 mMachineState));
5862 return autoVMCaller.rc();
5863 }
5864
5865 /* the device must be in the list otherwise */
5866 AssertFailedReturn(E_FAIL);
5867 }
5868
5869 if (aError != NULL)
5870 {
5871 /* notify callback about an error */
5872 alock.release();
5873 i_onUSBDeviceStateChange(pUSBDevice, false /* aAttached */, aError);
5874 return S_OK;
5875 }
5876
5877 /* Remove the device from the collection, it is re-added below for failures */
5878 mUSBDevices.erase(it);
5879
5880 alock.release();
5881 HRESULT rc = i_detachUSBDevice(pUSBDevice);
5882 if (FAILED(rc))
5883 {
5884 /* Re-add the device to the collection */
5885 alock.acquire();
5886 mUSBDevices.push_back(pUSBDevice);
5887 alock.release();
5888 /* take the current error info */
5889 com::ErrorInfoKeeper eik;
5890 /* the error must be a VirtualBoxErrorInfo instance */
5891 ComPtr<IVirtualBoxErrorInfo> pError = eik.takeError();
5892 Assert(!pError.isNull());
5893 if (!pError.isNull())
5894 {
5895 /* notify callbacks about the error */
5896 i_onUSBDeviceStateChange(pUSBDevice, false /* aAttached */, pError);
5897 }
5898 }
5899
5900 return rc;
5901
5902#else /* !VBOX_WITH_USB */
5903 return E_FAIL;
5904#endif /* !VBOX_WITH_USB */
5905}
5906
5907/**
5908 * Called by IInternalSessionControl::OnBandwidthGroupChange().
5909 *
5910 * @note Locks this object for writing.
5911 */
5912HRESULT Console::i_onBandwidthGroupChange(IBandwidthGroup *aBandwidthGroup)
5913{
5914 LogFlowThisFunc(("\n"));
5915
5916 AutoCaller autoCaller(this);
5917 AssertComRCReturnRC(autoCaller.rc());
5918
5919 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5920
5921 HRESULT rc = S_OK;
5922
5923 /* don't trigger bandwidth group changes if the VM isn't running */
5924 SafeVMPtrQuiet ptrVM(this);
5925 if (ptrVM.isOk())
5926 {
5927 if ( mMachineState == MachineState_Running
5928 || mMachineState == MachineState_Teleporting
5929 || mMachineState == MachineState_LiveSnapshotting
5930 )
5931 {
5932 /* No need to call in the EMT thread. */
5933 Bstr strName;
5934 rc = aBandwidthGroup->COMGETTER(Name)(strName.asOutParam());
5935 if (SUCCEEDED(rc))
5936 {
5937 LONG64 cMax;
5938 rc = aBandwidthGroup->COMGETTER(MaxBytesPerSec)(&cMax);
5939 if (SUCCEEDED(rc))
5940 {
5941 BandwidthGroupType_T enmType;
5942 rc = aBandwidthGroup->COMGETTER(Type)(&enmType);
5943 if (SUCCEEDED(rc))
5944 {
5945 int vrc = VINF_SUCCESS;
5946 if (enmType == BandwidthGroupType_Disk)
5947 vrc = PDMR3AsyncCompletionBwMgrSetMaxForFile(ptrVM.rawUVM(), Utf8Str(strName).c_str(), (uint32_t)cMax);
5948#ifdef VBOX_WITH_NETSHAPER
5949 else if (enmType == BandwidthGroupType_Network)
5950 vrc = PDMR3NsBwGroupSetLimit(ptrVM.rawUVM(), Utf8Str(strName).c_str(), cMax);
5951 else
5952 rc = E_NOTIMPL;
5953#endif
5954 AssertRC(vrc);
5955 }
5956 }
5957 }
5958 }
5959 else
5960 rc = i_setInvalidMachineStateError();
5961 ptrVM.release();
5962 }
5963
5964 /* notify console callbacks on success */
5965 if (SUCCEEDED(rc))
5966 {
5967 alock.release();
5968 fireBandwidthGroupChangedEvent(mEventSource, aBandwidthGroup);
5969 }
5970
5971 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
5972 return rc;
5973}
5974
5975/**
5976 * Called by IInternalSessionControl::OnStorageDeviceChange().
5977 *
5978 * @note Locks this object for writing.
5979 */
5980HRESULT Console::i_onStorageDeviceChange(IMediumAttachment *aMediumAttachment, BOOL aRemove, BOOL aSilent)
5981{
5982 LogFlowThisFunc(("\n"));
5983
5984 AutoCaller autoCaller(this);
5985 AssertComRCReturnRC(autoCaller.rc());
5986
5987 HRESULT rc = S_OK;
5988
5989 /* don't trigger medium changes if the VM isn't running */
5990 SafeVMPtrQuiet ptrVM(this);
5991 if (ptrVM.isOk())
5992 {
5993 if (aRemove)
5994 rc = i_doStorageDeviceDetach(aMediumAttachment, ptrVM.rawUVM(), RT_BOOL(aSilent));
5995 else
5996 rc = i_doStorageDeviceAttach(aMediumAttachment, ptrVM.rawUVM(), RT_BOOL(aSilent));
5997 ptrVM.release();
5998 }
5999
6000 /* notify console callbacks on success */
6001 if (SUCCEEDED(rc))
6002 fireStorageDeviceChangedEvent(mEventSource, aMediumAttachment, aRemove, aSilent);
6003
6004 LogFlowThisFunc(("Leaving rc=%#x\n", rc));
6005 return rc;
6006}
6007
6008HRESULT Console::i_onExtraDataChange(IN_BSTR aMachineId, IN_BSTR aKey, IN_BSTR aVal)
6009{
6010 LogFlowThisFunc(("\n"));
6011
6012 AutoCaller autoCaller(this);
6013 if (FAILED(autoCaller.rc()))
6014 return autoCaller.rc();
6015
6016 if (!aMachineId)
6017 return S_OK;
6018
6019 HRESULT hrc = S_OK;
6020 Bstr idMachine(aMachineId);
6021 if ( FAILED(hrc)
6022 || idMachine != i_getId())
6023 return hrc;
6024
6025 /* don't do anything if the VM isn't running */
6026 SafeVMPtrQuiet ptrVM(this);
6027 if (ptrVM.isOk())
6028 {
6029 Bstr strKey(aKey);
6030 Bstr strVal(aVal);
6031
6032 if (strKey == "VBoxInternal2/TurnResetIntoPowerOff")
6033 {
6034 int vrc = VMR3SetPowerOffInsteadOfReset(ptrVM.rawUVM(), strVal == "1");
6035 AssertRC(vrc);
6036 }
6037
6038 ptrVM.release();
6039 }
6040
6041 /* notify console callbacks on success */
6042 if (SUCCEEDED(hrc))
6043 fireExtraDataChangedEvent(mEventSource, aMachineId, aKey, aVal);
6044
6045 LogFlowThisFunc(("Leaving hrc=%#x\n", hrc));
6046 return hrc;
6047}
6048
6049/**
6050 * @note Temporarily locks this object for writing.
6051 */
6052HRESULT Console::i_getGuestProperty(const Utf8Str &aName, Utf8Str *aValue, LONG64 *aTimestamp, Utf8Str *aFlags)
6053{
6054#ifndef VBOX_WITH_GUEST_PROPS
6055 ReturnComNotImplemented();
6056#else /* VBOX_WITH_GUEST_PROPS */
6057 if (!RT_VALID_PTR(aValue))
6058 return E_POINTER;
6059 if (aTimestamp != NULL && !RT_VALID_PTR(aTimestamp))
6060 return E_POINTER;
6061 if (aFlags != NULL && !RT_VALID_PTR(aFlags))
6062 return E_POINTER;
6063
6064 AutoCaller autoCaller(this);
6065 AssertComRCReturnRC(autoCaller.rc());
6066
6067 /* protect mpUVM (if not NULL) */
6068 SafeVMPtrQuiet ptrVM(this);
6069 if (FAILED(ptrVM.rc()))
6070 return ptrVM.rc();
6071
6072 /* Note: validity of mVMMDev which is bound to uninit() is guaranteed by
6073 * ptrVM, so there is no need to hold a lock of this */
6074
6075 HRESULT rc = E_UNEXPECTED;
6076 try
6077 {
6078 VBOXHGCMSVCPARM parm[4];
6079 char szBuffer[GUEST_PROP_MAX_VALUE_LEN + GUEST_PROP_MAX_FLAGS_LEN];
6080
6081 parm[0].type = VBOX_HGCM_SVC_PARM_PTR;
6082 parm[0].u.pointer.addr = (void*)aName.c_str();
6083 parm[0].u.pointer.size = (uint32_t)aName.length() + 1; /* The + 1 is the null terminator */
6084
6085 parm[1].type = VBOX_HGCM_SVC_PARM_PTR;
6086 parm[1].u.pointer.addr = szBuffer;
6087 parm[1].u.pointer.size = sizeof(szBuffer);
6088
6089 parm[2].type = VBOX_HGCM_SVC_PARM_64BIT;
6090 parm[2].u.uint64 = 0;
6091
6092 parm[3].type = VBOX_HGCM_SVC_PARM_32BIT;
6093 parm[3].u.uint32 = 0;
6094
6095 int vrc = m_pVMMDev->hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_GET_PROP,
6096 4, &parm[0]);
6097 /* The returned string should never be able to be greater than our buffer */
6098 AssertLogRel(vrc != VERR_BUFFER_OVERFLOW);
6099 AssertLogRel(RT_FAILURE(vrc) || parm[2].type == VBOX_HGCM_SVC_PARM_64BIT);
6100 if (RT_SUCCESS(vrc))
6101 {
6102 *aValue = szBuffer;
6103
6104 if (aTimestamp)
6105 *aTimestamp = parm[2].u.uint64;
6106
6107 if (aFlags)
6108 *aFlags = &szBuffer[strlen(szBuffer) + 1];
6109
6110 rc = S_OK;
6111 }
6112 else if (vrc == VERR_NOT_FOUND)
6113 {
6114 *aValue = "";
6115 rc = S_OK;
6116 }
6117 else
6118 rc = setError(VBOX_E_IPRT_ERROR,
6119 tr("The VBoxGuestPropSvc service call failed with the error %Rrc"),
6120 vrc);
6121 }
6122 catch(std::bad_alloc & /*e*/)
6123 {
6124 rc = E_OUTOFMEMORY;
6125 }
6126
6127 return rc;
6128#endif /* VBOX_WITH_GUEST_PROPS */
6129}
6130
6131/**
6132 * @note Temporarily locks this object for writing.
6133 */
6134HRESULT Console::i_setGuestProperty(const Utf8Str &aName, const Utf8Str &aValue, const Utf8Str &aFlags)
6135{
6136#ifndef VBOX_WITH_GUEST_PROPS
6137 ReturnComNotImplemented();
6138#else /* VBOX_WITH_GUEST_PROPS */
6139
6140 AutoCaller autoCaller(this);
6141 AssertComRCReturnRC(autoCaller.rc());
6142
6143 /* protect mpUVM (if not NULL) */
6144 SafeVMPtrQuiet ptrVM(this);
6145 if (FAILED(ptrVM.rc()))
6146 return ptrVM.rc();
6147
6148 /* Note: validity of mVMMDev which is bound to uninit() is guaranteed by
6149 * ptrVM, so there is no need to hold a lock of this */
6150
6151 VBOXHGCMSVCPARM parm[3];
6152
6153 parm[0].type = VBOX_HGCM_SVC_PARM_PTR;
6154 parm[0].u.pointer.addr = (void*)aName.c_str();
6155 parm[0].u.pointer.size = (uint32_t)aName.length() + 1; /* The + 1 is the null terminator */
6156
6157 parm[1].type = VBOX_HGCM_SVC_PARM_PTR;
6158 parm[1].u.pointer.addr = (void *)aValue.c_str();
6159 parm[1].u.pointer.size = (uint32_t)aValue.length() + 1; /* The + 1 is the null terminator */
6160
6161 int vrc;
6162 if (aFlags.isEmpty())
6163 {
6164 vrc = m_pVMMDev->hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_SET_PROP_VALUE, 2, &parm[0]);
6165 }
6166 else
6167 {
6168 parm[2].type = VBOX_HGCM_SVC_PARM_PTR;
6169 parm[2].u.pointer.addr = (void*)aFlags.c_str();
6170 parm[2].u.pointer.size = (uint32_t)aFlags.length() + 1; /* The + 1 is the null terminator */
6171
6172 vrc = m_pVMMDev->hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_SET_PROP, 3, &parm[0]);
6173 }
6174
6175 HRESULT hrc = S_OK;
6176 if (RT_FAILURE(vrc))
6177 hrc = setError(VBOX_E_IPRT_ERROR, tr("The VBoxGuestPropSvc service call failed with the error %Rrc"), vrc);
6178 return hrc;
6179#endif /* VBOX_WITH_GUEST_PROPS */
6180}
6181
6182HRESULT Console::i_deleteGuestProperty(const Utf8Str &aName)
6183{
6184#ifndef VBOX_WITH_GUEST_PROPS
6185 ReturnComNotImplemented();
6186#else /* VBOX_WITH_GUEST_PROPS */
6187
6188 AutoCaller autoCaller(this);
6189 AssertComRCReturnRC(autoCaller.rc());
6190
6191 /* protect mpUVM (if not NULL) */
6192 SafeVMPtrQuiet ptrVM(this);
6193 if (FAILED(ptrVM.rc()))
6194 return ptrVM.rc();
6195
6196 /* Note: validity of mVMMDev which is bound to uninit() is guaranteed by
6197 * ptrVM, so there is no need to hold a lock of this */
6198
6199 VBOXHGCMSVCPARM parm[1];
6200 parm[0].type = VBOX_HGCM_SVC_PARM_PTR;
6201 parm[0].u.pointer.addr = (void*)aName.c_str();
6202 parm[0].u.pointer.size = (uint32_t)aName.length() + 1; /* The + 1 is the null terminator */
6203
6204 int vrc = m_pVMMDev->hgcmHostCall("VBoxGuestPropSvc", GUEST_PROP_FN_HOST_DEL_PROP, 1, &parm[0]);
6205
6206 HRESULT hrc = S_OK;
6207 if (RT_FAILURE(vrc))
6208 hrc = setError(VBOX_E_IPRT_ERROR, tr("The VBoxGuestPropSvc service call failed with the error %Rrc"), vrc);
6209 return hrc;
6210#endif /* VBOX_WITH_GUEST_PROPS */
6211}
6212
6213/**
6214 * @note Temporarily locks this object for writing.
6215 */
6216HRESULT Console::i_enumerateGuestProperties(const Utf8Str &aPatterns,
6217 std::vector<Utf8Str> &aNames,
6218 std::vector<Utf8Str> &aValues,
6219 std::vector<LONG64> &aTimestamps,
6220 std::vector<Utf8Str> &aFlags)
6221{
6222#ifndef VBOX_WITH_GUEST_PROPS
6223 ReturnComNotImplemented();
6224#else /* VBOX_WITH_GUEST_PROPS */
6225
6226 AutoCaller autoCaller(this);
6227 AssertComRCReturnRC(autoCaller.rc());
6228
6229 /* protect mpUVM (if not NULL) */
6230 AutoVMCallerWeak autoVMCaller(this);
6231 if (FAILED(autoVMCaller.rc()))
6232 return autoVMCaller.rc();
6233
6234 /* Note: validity of mVMMDev which is bound to uninit() is guaranteed by
6235 * autoVMCaller, so there is no need to hold a lock of this */
6236
6237 return i_doEnumerateGuestProperties(aPatterns, aNames, aValues, aTimestamps, aFlags);
6238#endif /* VBOX_WITH_GUEST_PROPS */
6239}
6240
6241
6242/*
6243 * Internal: helper function for connecting progress reporting
6244 */
6245static DECLCALLBACK(int) onlineMergeMediumProgress(void *pvUser, unsigned uPercentage)
6246{
6247 HRESULT rc = S_OK;
6248 IProgress *pProgress = static_cast<IProgress *>(pvUser);
6249 if (pProgress)
6250 rc = pProgress->SetCurrentOperationProgress(uPercentage);
6251 return SUCCEEDED(rc) ? VINF_SUCCESS : VERR_GENERAL_FAILURE;
6252}
6253
6254/**
6255 * @note Temporarily locks this object for writing. bird: And/or reading?
6256 */
6257HRESULT Console::i_onlineMergeMedium(IMediumAttachment *aMediumAttachment,
6258 ULONG aSourceIdx, ULONG aTargetIdx,
6259 IProgress *aProgress)
6260{
6261 AutoCaller autoCaller(this);
6262 AssertComRCReturnRC(autoCaller.rc());
6263
6264 HRESULT rc = S_OK;
6265 int vrc = VINF_SUCCESS;
6266
6267 /* Get the VM - must be done before the read-locking. */
6268 SafeVMPtr ptrVM(this);
6269 if (!ptrVM.isOk())
6270 return ptrVM.rc();
6271
6272 /* We will need to release the lock before doing the actual merge */
6273 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
6274
6275 /* paranoia - we don't want merges to happen while teleporting etc. */
6276 switch (mMachineState)
6277 {
6278 case MachineState_DeletingSnapshotOnline:
6279 case MachineState_DeletingSnapshotPaused:
6280 break;
6281
6282 default:
6283 return i_setInvalidMachineStateError();
6284 }
6285
6286 /** @todo AssertComRC -> AssertComRCReturn! Could potentially end up
6287 * using uninitialized variables here. */
6288 BOOL fBuiltinIOCache;
6289 rc = mMachine->COMGETTER(IOCacheEnabled)(&fBuiltinIOCache);
6290 AssertComRC(rc);
6291 SafeIfaceArray<IStorageController> ctrls;
6292 rc = mMachine->COMGETTER(StorageControllers)(ComSafeArrayAsOutParam(ctrls));
6293 AssertComRC(rc);
6294 LONG lDev;
6295 rc = aMediumAttachment->COMGETTER(Device)(&lDev);
6296 AssertComRC(rc);
6297 LONG lPort;
6298 rc = aMediumAttachment->COMGETTER(Port)(&lPort);
6299 AssertComRC(rc);
6300 IMedium *pMedium;
6301 rc = aMediumAttachment->COMGETTER(Medium)(&pMedium);
6302 AssertComRC(rc);
6303 Bstr mediumLocation;
6304 if (pMedium)
6305 {
6306 rc = pMedium->COMGETTER(Location)(mediumLocation.asOutParam());
6307 AssertComRC(rc);
6308 }
6309
6310 Bstr attCtrlName;
6311 rc = aMediumAttachment->COMGETTER(Controller)(attCtrlName.asOutParam());
6312 AssertComRC(rc);
6313 ComPtr<IStorageController> pStorageController;
6314 for (size_t i = 0; i < ctrls.size(); ++i)
6315 {
6316 Bstr ctrlName;
6317 rc = ctrls[i]->COMGETTER(Name)(ctrlName.asOutParam());
6318 AssertComRC(rc);
6319 if (attCtrlName == ctrlName)
6320 {
6321 pStorageController = ctrls[i];
6322 break;
6323 }
6324 }
6325 if (pStorageController.isNull())
6326 return setError(E_FAIL,
6327 tr("Could not find storage controller '%ls'"),
6328 attCtrlName.raw());
6329
6330 StorageControllerType_T enmCtrlType;
6331 rc = pStorageController->COMGETTER(ControllerType)(&enmCtrlType);
6332 AssertComRC(rc);
6333 const char *pcszDevice = i_storageControllerTypeToStr(enmCtrlType);
6334
6335 StorageBus_T enmBus;
6336 rc = pStorageController->COMGETTER(Bus)(&enmBus);
6337 AssertComRC(rc);
6338 ULONG uInstance;
6339 rc = pStorageController->COMGETTER(Instance)(&uInstance);
6340 AssertComRC(rc);
6341 BOOL fUseHostIOCache;
6342 rc = pStorageController->COMGETTER(UseHostIOCache)(&fUseHostIOCache);
6343 AssertComRC(rc);
6344
6345 unsigned uLUN;
6346 rc = Console::i_storageBusPortDeviceToLun(enmBus, lPort, lDev, uLUN);
6347 AssertComRCReturnRC(rc);
6348
6349 Assert(mMachineState == MachineState_DeletingSnapshotOnline);
6350
6351 /* Pause the VM, as it might have pending IO on this drive */
6352 bool fResume = false;
6353 rc = i_suspendBeforeConfigChange(ptrVM.rawUVM(), &alock, &fResume);
6354 if (FAILED(rc))
6355 return rc;
6356
6357 bool fInsertDiskIntegrityDrv = false;
6358 Bstr strDiskIntegrityFlag;
6359 rc = mMachine->GetExtraData(Bstr("VBoxInternal2/EnableDiskIntegrityDriver").raw(),
6360 strDiskIntegrityFlag.asOutParam());
6361 if ( rc == S_OK
6362 && strDiskIntegrityFlag == "1")
6363 fInsertDiskIntegrityDrv = true;
6364
6365 alock.release();
6366 vrc = VMR3ReqCallWaitU(ptrVM.rawUVM(), VMCPUID_ANY,
6367 (PFNRT)i_reconfigureMediumAttachment, 14,
6368 this, ptrVM.rawUVM(), pcszDevice, uInstance, enmBus, fUseHostIOCache,
6369 fBuiltinIOCache, fInsertDiskIntegrityDrv, true /* fSetupMerge */,
6370 aSourceIdx, aTargetIdx, aMediumAttachment, mMachineState, &rc);
6371 /* error handling is after resuming the VM */
6372
6373 if (fResume)
6374 i_resumeAfterConfigChange(ptrVM.rawUVM());
6375
6376 if (RT_FAILURE(vrc))
6377 return setError(E_FAIL, tr("%Rrc"), vrc);
6378 if (FAILED(rc))
6379 return rc;
6380
6381 PPDMIBASE pIBase = NULL;
6382 PPDMIMEDIA pIMedium = NULL;
6383 vrc = PDMR3QueryDriverOnLun(ptrVM.rawUVM(), pcszDevice, uInstance, uLUN, "VD", &pIBase);
6384 if (RT_SUCCESS(vrc))
6385 {
6386 if (pIBase)
6387 {
6388 pIMedium = (PPDMIMEDIA)pIBase->pfnQueryInterface(pIBase, PDMIMEDIA_IID);
6389 if (!pIMedium)
6390 return setError(E_FAIL, tr("could not query medium interface of controller"));
6391 }
6392 else
6393 return setError(E_FAIL, tr("could not query base interface of controller"));
6394 }
6395
6396 /* Finally trigger the merge. */
6397 vrc = pIMedium->pfnMerge(pIMedium, onlineMergeMediumProgress, aProgress);
6398 if (RT_FAILURE(vrc))
6399 return setError(E_FAIL, tr("Failed to perform an online medium merge (%Rrc)"), vrc);
6400
6401 alock.acquire();
6402 /* Pause the VM, as it might have pending IO on this drive */
6403 rc = i_suspendBeforeConfigChange(ptrVM.rawUVM(), &alock, &fResume);
6404 if (FAILED(rc))
6405 return rc;
6406 alock.release();
6407
6408 /* Update medium chain and state now, so that the VM can continue. */
6409 rc = mControl->FinishOnlineMergeMedium();
6410
6411 vrc = VMR3ReqCallWaitU(ptrVM.rawUVM(), VMCPUID_ANY,
6412 (PFNRT)i_reconfigureMediumAttachment, 14,
6413 this, ptrVM.rawUVM(), pcszDevice, uInstance, enmBus, fUseHostIOCache,
6414 fBuiltinIOCache, fInsertDiskIntegrityDrv, false /* fSetupMerge */,
6415 0 /* uMergeSource */, 0 /* uMergeTarget */, aMediumAttachment,
6416 mMachineState, &rc);
6417 /* error handling is after resuming the VM */
6418
6419 if (fResume)
6420 i_resumeAfterConfigChange(ptrVM.rawUVM());
6421
6422 if (RT_FAILURE(vrc))
6423 return setError(E_FAIL, tr("%Rrc"), vrc);
6424 if (FAILED(rc))
6425 return rc;
6426
6427 return rc;
6428}
6429
6430HRESULT Console::i_reconfigureMediumAttachments(const std::vector<ComPtr<IMediumAttachment> > &aAttachments)
6431{
6432 HRESULT rc = S_OK;
6433
6434 AutoCaller autoCaller(this);
6435 if (FAILED(autoCaller.rc())) return autoCaller.rc();
6436
6437 /* get the VM handle. */
6438 SafeVMPtr ptrVM(this);
6439 if (!ptrVM.isOk())
6440 return ptrVM.rc();
6441
6442 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
6443
6444 for (size_t i = 0; i < aAttachments.size(); ++i)
6445 {
6446 ComPtr<IStorageController> pStorageController;
6447 Bstr controllerName;
6448 ULONG lInstance;
6449 StorageControllerType_T enmController;
6450 StorageBus_T enmBus;
6451 BOOL fUseHostIOCache;
6452
6453 /*
6454 * We could pass the objects, but then EMT would have to do lots of
6455 * IPC (to VBoxSVC) which takes a significant amount of time.
6456 * Better query needed values here and pass them.
6457 */
6458 rc = aAttachments[i]->COMGETTER(Controller)(controllerName.asOutParam());
6459 if (FAILED(rc))
6460 throw rc;
6461
6462 rc = mMachine->GetStorageControllerByName(controllerName.raw(),
6463 pStorageController.asOutParam());
6464 if (FAILED(rc))
6465 throw rc;
6466
6467 rc = pStorageController->COMGETTER(ControllerType)(&enmController);
6468 if (FAILED(rc))
6469 throw rc;
6470 rc = pStorageController->COMGETTER(Instance)(&lInstance);
6471 if (FAILED(rc))
6472 throw rc;
6473 rc = pStorageController->COMGETTER(Bus)(&enmBus);
6474 if (FAILED(rc))
6475 throw rc;
6476 rc = pStorageController->COMGETTER(UseHostIOCache)(&fUseHostIOCache);
6477 if (FAILED(rc))
6478 throw rc;
6479
6480 const char *pcszDevice = i_storageControllerTypeToStr(enmController);
6481
6482 BOOL fBuiltinIOCache;
6483 rc = mMachine->COMGETTER(IOCacheEnabled)(&fBuiltinIOCache);
6484 if (FAILED(rc))
6485 throw rc;
6486
6487 bool fInsertDiskIntegrityDrv = false;
6488 Bstr strDiskIntegrityFlag;
6489 rc = mMachine->GetExtraData(Bstr("VBoxInternal2/EnableDiskIntegrityDriver").raw(),
6490 strDiskIntegrityFlag.asOutParam());
6491 if ( rc == S_OK
6492 && strDiskIntegrityFlag == "1")
6493 fInsertDiskIntegrityDrv = true;
6494
6495 alock.release();
6496
6497 IMediumAttachment *pAttachment = aAttachments[i];
6498 int vrc = VMR3ReqCallWaitU(ptrVM.rawUVM(), VMCPUID_ANY,
6499 (PFNRT)i_reconfigureMediumAttachment, 14,
6500 this, ptrVM.rawUVM(), pcszDevice, lInstance, enmBus, fUseHostIOCache,
6501 fBuiltinIOCache, fInsertDiskIntegrityDrv,
6502 false /* fSetupMerge */, 0 /* uMergeSource */, 0 /* uMergeTarget */,
6503 pAttachment, mMachineState, &rc);
6504 if (RT_FAILURE(vrc))
6505 throw setError(E_FAIL, tr("%Rrc"), vrc);
6506 if (FAILED(rc))
6507 throw rc;
6508
6509 alock.acquire();
6510 }
6511
6512 return rc;
6513}
6514
6515
6516/**
6517 * Load an HGCM service.
6518 *
6519 * Main purpose of this method is to allow extension packs to load HGCM
6520 * service modules, which they can't, because the HGCM functionality lives
6521 * in module VBoxC (and ConsoleImpl.cpp is part of it and thus can call it).
6522 * Extension modules must not link directly against VBoxC, (XP)COM is
6523 * handling this.
6524 */
6525int Console::i_hgcmLoadService(const char *pszServiceLibrary, const char *pszServiceName)
6526{
6527 /* Everyone seems to delegate all HGCM calls to VMMDev, so stick to this
6528 * convention. Adds one level of indirection for no obvious reason. */
6529 AssertPtrReturn(m_pVMMDev, VERR_INVALID_STATE);
6530 return m_pVMMDev->hgcmLoadService(pszServiceLibrary, pszServiceName);
6531}
6532
6533/**
6534 * Merely passes the call to Guest::enableVMMStatistics().
6535 */
6536void Console::i_enableVMMStatistics(BOOL aEnable)
6537{
6538 if (mGuest)
6539 mGuest->i_enableVMMStatistics(aEnable);
6540}
6541
6542/**
6543 * Worker for Console::Pause and internal entry point for pausing a VM for
6544 * a specific reason.
6545 */
6546HRESULT Console::i_pause(Reason_T aReason)
6547{
6548 LogFlowThisFuncEnter();
6549
6550 AutoCaller autoCaller(this);
6551 if (FAILED(autoCaller.rc())) return autoCaller.rc();
6552
6553 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
6554
6555 switch (mMachineState)
6556 {
6557 case MachineState_Running:
6558 case MachineState_Teleporting:
6559 case MachineState_LiveSnapshotting:
6560 break;
6561
6562 case MachineState_Paused:
6563 case MachineState_TeleportingPausedVM:
6564 case MachineState_OnlineSnapshotting:
6565 /* Remove any keys which are supposed to be removed on a suspend. */
6566 if ( aReason == Reason_HostSuspend
6567 || aReason == Reason_HostBatteryLow)
6568 {
6569 i_removeSecretKeysOnSuspend();
6570 return S_OK;
6571 }
6572 return setError(VBOX_E_INVALID_VM_STATE, tr("Already paused"));
6573
6574 default:
6575 return i_setInvalidMachineStateError();
6576 }
6577
6578 /* get the VM handle. */
6579 SafeVMPtr ptrVM(this);
6580 if (!ptrVM.isOk())
6581 return ptrVM.rc();
6582
6583 /* release the lock before a VMR3* call (EMT might wait for it, @bugref{7648})! */
6584 alock.release();
6585
6586 LogFlowThisFunc(("Sending PAUSE request...\n"));
6587 if (aReason != Reason_Unspecified)
6588 LogRel(("Pausing VM execution, reason '%s'\n", Global::stringifyReason(aReason)));
6589
6590 /** @todo r=klaus make use of aReason */
6591 VMSUSPENDREASON enmReason = VMSUSPENDREASON_USER;
6592 if (aReason == Reason_HostSuspend)
6593 enmReason = VMSUSPENDREASON_HOST_SUSPEND;
6594 else if (aReason == Reason_HostBatteryLow)
6595 enmReason = VMSUSPENDREASON_HOST_BATTERY_LOW;
6596 int vrc = VMR3Suspend(ptrVM.rawUVM(), enmReason);
6597
6598 HRESULT hrc = S_OK;
6599 if (RT_FAILURE(vrc))
6600 hrc = setError(VBOX_E_VM_ERROR, tr("Could not suspend the machine execution (%Rrc)"), vrc);
6601 else if ( aReason == Reason_HostSuspend
6602 || aReason == Reason_HostBatteryLow)
6603 {
6604 alock.acquire();
6605 i_removeSecretKeysOnSuspend();
6606 }
6607
6608 LogFlowThisFunc(("hrc=%Rhrc\n", hrc));
6609 LogFlowThisFuncLeave();
6610 return hrc;
6611}
6612
6613/**
6614 * Worker for Console::Resume and internal entry point for resuming a VM for
6615 * a specific reason.
6616 */
6617HRESULT Console::i_resume(Reason_T aReason, AutoWriteLock &alock)
6618{
6619 LogFlowThisFuncEnter();
6620
6621 AutoCaller autoCaller(this);
6622 if (FAILED(autoCaller.rc())) return autoCaller.rc();
6623
6624 /* get the VM handle. */
6625 SafeVMPtr ptrVM(this);
6626 if (!ptrVM.isOk())
6627 return ptrVM.rc();
6628
6629 /* release the lock before a VMR3* call (EMT might wait for it, @bugref{7648})! */
6630 alock.release();
6631
6632 LogFlowThisFunc(("Sending RESUME request...\n"));
6633 if (aReason != Reason_Unspecified)
6634 LogRel(("Resuming VM execution, reason '%s'\n", Global::stringifyReason(aReason)));
6635
6636 int vrc;
6637 if (VMR3GetStateU(ptrVM.rawUVM()) == VMSTATE_CREATED)
6638 {
6639#ifdef VBOX_WITH_EXTPACK
6640 vrc = mptrExtPackManager->i_callAllVmPowerOnHooks(this, VMR3GetVM(ptrVM.rawUVM()));
6641#else
6642 vrc = VINF_SUCCESS;
6643#endif
6644 if (RT_SUCCESS(vrc))
6645 vrc = VMR3PowerOn(ptrVM.rawUVM()); /* (PowerUpPaused) */
6646 }
6647 else
6648 {
6649 VMRESUMEREASON enmReason;
6650 if (aReason == Reason_HostResume)
6651 {
6652 /*
6653 * Host resume may be called multiple times successively. We don't want to VMR3Resume->vmR3Resume->vmR3TrySetState()
6654 * to assert on us, hence check for the VM state here and bail if it's not in the 'suspended' state.
6655 * See @bugref{3495}.
6656 *
6657 * Also, don't resume the VM through a host-resume unless it was suspended due to a host-suspend.
6658 */
6659 if (VMR3GetStateU(ptrVM.rawUVM()) != VMSTATE_SUSPENDED)
6660 {
6661 LogRel(("Ignoring VM resume request, VM is currently not suspended\n"));
6662 return S_OK;
6663 }
6664 if (VMR3GetSuspendReason(ptrVM.rawUVM()) != VMSUSPENDREASON_HOST_SUSPEND)
6665 {
6666 LogRel(("Ignoring VM resume request, VM was not suspended due to host-suspend\n"));
6667 return S_OK;
6668 }
6669
6670 enmReason = VMRESUMEREASON_HOST_RESUME;
6671 }
6672 else
6673 {
6674 /*
6675 * Any other reason to resume the VM throws an error when the VM was suspended due to a host suspend.
6676 * See @bugref{7836}.
6677 */
6678 if ( VMR3GetStateU(ptrVM.rawUVM()) == VMSTATE_SUSPENDED
6679 && VMR3GetSuspendReason(ptrVM.rawUVM()) == VMSUSPENDREASON_HOST_SUSPEND)
6680 return setError(VBOX_E_INVALID_VM_STATE, tr("VM is paused due to host power management"));
6681
6682 enmReason = aReason == Reason_Snapshot ? VMRESUMEREASON_STATE_SAVED : VMRESUMEREASON_USER;
6683 }
6684
6685 // for snapshots: no state change callback, VBoxSVC does everything
6686 if (aReason == Reason_Snapshot)
6687 mVMStateChangeCallbackDisabled = true;
6688 vrc = VMR3Resume(ptrVM.rawUVM(), enmReason);
6689 if (aReason == Reason_Snapshot)
6690 mVMStateChangeCallbackDisabled = false;
6691 }
6692
6693 HRESULT rc = RT_SUCCESS(vrc) ? S_OK :
6694 setError(VBOX_E_VM_ERROR,
6695 tr("Could not resume the machine execution (%Rrc)"),
6696 vrc);
6697
6698 LogFlowThisFunc(("rc=%Rhrc\n", rc));
6699 LogFlowThisFuncLeave();
6700 return rc;
6701}
6702
6703/**
6704 * Internal entry point for saving state of a VM for a specific reason. This
6705 * method is completely synchronous.
6706 *
6707 * The machine state is already set appropriately. It is only changed when
6708 * saving state actually paused the VM (happens with live snapshots and
6709 * teleportation), and in this case reflects the now paused variant.
6710 *
6711 * @note Locks this object for writing.
6712 */
6713HRESULT Console::i_saveState(Reason_T aReason, const ComPtr<IProgress> &aProgress,
6714 const ComPtr<ISnapshot> &aSnapshot,
6715 const Utf8Str &aStateFilePath, bool aPauseVM, bool &aLeftPaused)
6716{
6717 LogFlowThisFuncEnter();
6718 aLeftPaused = false;
6719
6720 AssertReturn(!aProgress.isNull(), E_INVALIDARG);
6721 AssertReturn(!aStateFilePath.isEmpty(), E_INVALIDARG);
6722 Assert(aSnapshot.isNull() || aReason == Reason_Snapshot);
6723
6724 AutoCaller autoCaller(this);
6725 if (FAILED(autoCaller.rc())) return autoCaller.rc();
6726
6727 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
6728
6729 LogFlowThisFunc(("mMachineState=%d\n", mMachineState));
6730 if ( mMachineState != MachineState_Saving
6731 && mMachineState != MachineState_LiveSnapshotting
6732 && mMachineState != MachineState_OnlineSnapshotting
6733 && mMachineState != MachineState_Teleporting
6734 && mMachineState != MachineState_TeleportingPausedVM)
6735 {
6736 return setError(VBOX_E_INVALID_VM_STATE,
6737 tr("Cannot save the execution state as the machine is not running or paused (machine state: %s)"),
6738 Global::stringifyMachineState(mMachineState));
6739 }
6740 bool fContinueAfterwards = mMachineState != MachineState_Saving;
6741
6742 Bstr strDisableSaveState;
6743 mMachine->GetExtraData(Bstr("VBoxInternal2/DisableSaveState").raw(), strDisableSaveState.asOutParam());
6744 if (strDisableSaveState == "1")
6745 return setError(VBOX_E_VM_ERROR,
6746 tr("Saving the execution state is disabled for this VM"));
6747
6748 if (aReason != Reason_Unspecified)
6749 LogRel(("Saving state of VM, reason '%s'\n", Global::stringifyReason(aReason)));
6750
6751 /* ensure the directory for the saved state file exists */
6752 {
6753 Utf8Str dir = aStateFilePath;
6754 dir.stripFilename();
6755 if (!RTDirExists(dir.c_str()))
6756 {
6757 int vrc = RTDirCreateFullPath(dir.c_str(), 0700);
6758 if (RT_FAILURE(vrc))
6759 return setError(VBOX_E_FILE_ERROR,
6760 tr("Could not create a directory '%s' to save the state to (%Rrc)"),
6761 dir.c_str(), vrc);
6762 }
6763 }
6764
6765 /* Get the VM handle early, we need it in several places. */
6766 SafeVMPtr ptrVM(this);
6767 if (!ptrVM.isOk())
6768 return ptrVM.rc();
6769
6770 bool fPaused = false;
6771 if (aPauseVM)
6772 {
6773 /* release the lock before a VMR3* call (EMT might wait for it, @bugref{7648})! */
6774 alock.release();
6775 VMSUSPENDREASON enmReason = VMSUSPENDREASON_USER;
6776 if (aReason == Reason_HostSuspend)
6777 enmReason = VMSUSPENDREASON_HOST_SUSPEND;
6778 else if (aReason == Reason_HostBatteryLow)
6779 enmReason = VMSUSPENDREASON_HOST_BATTERY_LOW;
6780 int vrc = VMR3Suspend(ptrVM.rawUVM(), enmReason);
6781 alock.acquire();
6782
6783 if (RT_FAILURE(vrc))
6784 return setError(VBOX_E_VM_ERROR, tr("Could not suspend the machine execution (%Rrc)"), vrc);
6785 fPaused = true;
6786 }
6787
6788 LogFlowFunc(("Saving the state to '%s'...\n", aStateFilePath.c_str()));
6789
6790 mpVmm2UserMethods->pISnapshot = aSnapshot;
6791 mptrCancelableProgress = aProgress;
6792 alock.release();
6793 int vrc = VMR3Save(ptrVM.rawUVM(),
6794 aStateFilePath.c_str(),
6795 fContinueAfterwards,
6796 Console::i_stateProgressCallback,
6797 static_cast<IProgress *>(aProgress),
6798 &aLeftPaused);
6799 alock.acquire();
6800 mpVmm2UserMethods->pISnapshot = NULL;
6801 mptrCancelableProgress.setNull();
6802 if (RT_FAILURE(vrc))
6803 {
6804 if (fPaused)
6805 {
6806 alock.release();
6807 VMR3Resume(ptrVM.rawUVM(), VMRESUMEREASON_STATE_RESTORED);
6808 alock.acquire();
6809 }
6810 return setError(E_FAIL, tr("Failed to save the machine state to '%s' (%Rrc)"),
6811 aStateFilePath.c_str(), vrc);
6812 }
6813 Assert(fContinueAfterwards || !aLeftPaused);
6814
6815 if (!fContinueAfterwards)
6816 {
6817 /*
6818 * The machine has been successfully saved, so power it down
6819 * (vmstateChangeCallback() will set state to Saved on success).
6820 * Note: we release the VM caller, otherwise it will deadlock.
6821 */
6822 ptrVM.release();
6823 alock.release();
6824 autoCaller.release();
6825 HRESULT rc = i_powerDown();
6826 AssertComRC(rc);
6827 autoCaller.add();
6828 alock.acquire();
6829 }
6830 else
6831 {
6832 if (fPaused)
6833 aLeftPaused = true;
6834 }
6835
6836 LogFlowFuncLeave();
6837 return S_OK;
6838}
6839
6840/**
6841 * Internal entry point for cancelling a VM save state.
6842 *
6843 * @note Locks this object for writing.
6844 */
6845HRESULT Console::i_cancelSaveState()
6846{
6847 LogFlowThisFuncEnter();
6848
6849 AutoCaller autoCaller(this);
6850 if (FAILED(autoCaller.rc())) return autoCaller.rc();
6851
6852 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
6853
6854 /* Get the VM handle. */
6855 SafeVMPtr ptrVM(this);
6856 if (!ptrVM.isOk())
6857 return ptrVM.rc();
6858
6859 SSMR3Cancel(ptrVM.rawUVM());
6860
6861 LogFlowFuncLeave();
6862 return S_OK;
6863}
6864
6865#ifdef VBOX_WITH_AUDIO_VIDEOREC
6866/**
6867 * Sends audio (frame) data to the display's video capturing routines.
6868 *
6869 * @returns HRESULT
6870 * @param pvData Audio data to send.
6871 * @param cbData Size (in bytes) of audio data to send.
6872 * @param uDurationMs Duration (in ms) of audio data.
6873 */
6874HRESULT Console::i_audioVideoRecSendAudio(const void *pvData, size_t cbData, uint64_t uDurationMs)
6875{
6876 if (mDisplay)
6877 {
6878 int rc2 = mDisplay->i_videoRecSendAudio(pvData, cbData, uDurationMs);
6879 AssertRC(rc2);
6880 }
6881
6882 return S_OK;
6883}
6884#endif /* VBOX_WITH_AUDIO_VIDEOREC */
6885
6886/**
6887 * Gets called by Session::UpdateMachineState()
6888 * (IInternalSessionControl::updateMachineState()).
6889 *
6890 * Must be called only in certain cases (see the implementation).
6891 *
6892 * @note Locks this object for writing.
6893 */
6894HRESULT Console::i_updateMachineState(MachineState_T aMachineState)
6895{
6896 AutoCaller autoCaller(this);
6897 AssertComRCReturnRC(autoCaller.rc());
6898
6899 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
6900
6901 AssertReturn( mMachineState == MachineState_Saving
6902 || mMachineState == MachineState_OnlineSnapshotting
6903 || mMachineState == MachineState_LiveSnapshotting
6904 || mMachineState == MachineState_DeletingSnapshotOnline
6905 || mMachineState == MachineState_DeletingSnapshotPaused
6906 || aMachineState == MachineState_Saving
6907 || aMachineState == MachineState_OnlineSnapshotting
6908 || aMachineState == MachineState_LiveSnapshotting
6909 || aMachineState == MachineState_DeletingSnapshotOnline
6910 || aMachineState == MachineState_DeletingSnapshotPaused
6911 , E_FAIL);
6912
6913 return i_setMachineStateLocally(aMachineState);
6914}
6915
6916/**
6917 * Gets called by Session::COMGETTER(NominalState)()
6918 * (IInternalSessionControl::getNominalState()).
6919 *
6920 * @note Locks this object for reading.
6921 */
6922HRESULT Console::i_getNominalState(MachineState_T &aNominalState)
6923{
6924 LogFlowThisFuncEnter();
6925
6926 AutoCaller autoCaller(this);
6927 AssertComRCReturnRC(autoCaller.rc());
6928
6929 /* Get the VM handle. */
6930 SafeVMPtr ptrVM(this);
6931 if (!ptrVM.isOk())
6932 return ptrVM.rc();
6933
6934 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
6935
6936 MachineState_T enmMachineState = MachineState_Null;
6937 VMSTATE enmVMState = VMR3GetStateU(ptrVM.rawUVM());
6938 switch (enmVMState)
6939 {
6940 case VMSTATE_CREATING:
6941 case VMSTATE_CREATED:
6942 case VMSTATE_POWERING_ON:
6943 enmMachineState = MachineState_Starting;
6944 break;
6945 case VMSTATE_LOADING:
6946 enmMachineState = MachineState_Restoring;
6947 break;
6948 case VMSTATE_RESUMING:
6949 case VMSTATE_SUSPENDING:
6950 case VMSTATE_SUSPENDING_LS:
6951 case VMSTATE_SUSPENDING_EXT_LS:
6952 case VMSTATE_SUSPENDED:
6953 case VMSTATE_SUSPENDED_LS:
6954 case VMSTATE_SUSPENDED_EXT_LS:
6955 enmMachineState = MachineState_Paused;
6956 break;
6957 case VMSTATE_RUNNING:
6958 case VMSTATE_RUNNING_LS:
6959 case VMSTATE_RUNNING_FT:
6960 case VMSTATE_RESETTING:
6961 case VMSTATE_RESETTING_LS:
6962 case VMSTATE_SOFT_RESETTING:
6963 case VMSTATE_SOFT_RESETTING_LS:
6964 case VMSTATE_DEBUGGING:
6965 case VMSTATE_DEBUGGING_LS:
6966 enmMachineState = MachineState_Running;
6967 break;
6968 case VMSTATE_SAVING:
6969 enmMachineState = MachineState_Saving;
6970 break;
6971 case VMSTATE_POWERING_OFF:
6972 case VMSTATE_POWERING_OFF_LS:
6973 case VMSTATE_DESTROYING:
6974 enmMachineState = MachineState_Stopping;
6975 break;
6976 case VMSTATE_OFF:
6977 case VMSTATE_OFF_LS:
6978 case VMSTATE_FATAL_ERROR:
6979 case VMSTATE_FATAL_ERROR_LS:
6980 case VMSTATE_LOAD_FAILURE:
6981 case VMSTATE_TERMINATED:
6982 enmMachineState = MachineState_PoweredOff;
6983 break;
6984 case VMSTATE_GURU_MEDITATION:
6985 case VMSTATE_GURU_MEDITATION_LS:
6986 enmMachineState = MachineState_Stuck;
6987 break;
6988 default:
6989 AssertMsgFailed(("%s\n", VMR3GetStateName(enmVMState)));
6990 enmMachineState = MachineState_PoweredOff;
6991 }
6992 aNominalState = enmMachineState;
6993
6994 LogFlowFuncLeave();
6995 return S_OK;
6996}
6997
6998void Console::i_onMousePointerShapeChange(bool fVisible, bool fAlpha,
6999 uint32_t xHot, uint32_t yHot,
7000 uint32_t width, uint32_t height,
7001 const uint8_t *pu8Shape,
7002 uint32_t cbShape)
7003{
7004#if 0
7005 LogFlowThisFuncEnter();
7006 LogFlowThisFunc(("fVisible=%d, fAlpha=%d, xHot = %d, yHot = %d, width=%d, height=%d, shape=%p\n",
7007 fVisible, fAlpha, xHot, yHot, width, height, pShape));
7008#endif
7009
7010 AutoCaller autoCaller(this);
7011 AssertComRCReturnVoid(autoCaller.rc());
7012
7013 if (!mMouse.isNull())
7014 mMouse->updateMousePointerShape(fVisible, fAlpha, xHot, yHot, width, height,
7015 pu8Shape, cbShape);
7016
7017 com::SafeArray<BYTE> shape(cbShape);
7018 if (pu8Shape)
7019 memcpy(shape.raw(), pu8Shape, cbShape);
7020 fireMousePointerShapeChangedEvent(mEventSource, fVisible, fAlpha, xHot, yHot, width, height, ComSafeArrayAsInParam(shape));
7021
7022#if 0
7023 LogFlowThisFuncLeave();
7024#endif
7025}
7026
7027void Console::i_onMouseCapabilityChange(BOOL supportsAbsolute, BOOL supportsRelative,
7028 BOOL supportsMT, BOOL needsHostCursor)
7029{
7030 LogFlowThisFunc(("supportsAbsolute=%d supportsRelative=%d needsHostCursor=%d\n",
7031 supportsAbsolute, supportsRelative, needsHostCursor));
7032
7033 AutoCaller autoCaller(this);
7034 AssertComRCReturnVoid(autoCaller.rc());
7035
7036 fireMouseCapabilityChangedEvent(mEventSource, supportsAbsolute, supportsRelative, supportsMT, needsHostCursor);
7037}
7038
7039void Console::i_onStateChange(MachineState_T machineState)
7040{
7041 AutoCaller autoCaller(this);
7042 AssertComRCReturnVoid(autoCaller.rc());
7043 fireStateChangedEvent(mEventSource, machineState);
7044}
7045
7046void Console::i_onAdditionsStateChange()
7047{
7048 AutoCaller autoCaller(this);
7049 AssertComRCReturnVoid(autoCaller.rc());
7050
7051 fireAdditionsStateChangedEvent(mEventSource);
7052}
7053
7054/**
7055 * @remarks This notification only is for reporting an incompatible
7056 * Guest Additions interface, *not* the Guest Additions version!
7057 *
7058 * The user will be notified inside the guest if new Guest
7059 * Additions are available (via VBoxTray/VBoxClient).
7060 */
7061void Console::i_onAdditionsOutdated()
7062{
7063 AutoCaller autoCaller(this);
7064 AssertComRCReturnVoid(autoCaller.rc());
7065
7066 /** @todo implement this */
7067}
7068
7069void Console::i_onKeyboardLedsChange(bool fNumLock, bool fCapsLock, bool fScrollLock)
7070{
7071 AutoCaller autoCaller(this);
7072 AssertComRCReturnVoid(autoCaller.rc());
7073
7074 fireKeyboardLedsChangedEvent(mEventSource, fNumLock, fCapsLock, fScrollLock);
7075}
7076
7077void Console::i_onUSBDeviceStateChange(IUSBDevice *aDevice, bool aAttached,
7078 IVirtualBoxErrorInfo *aError)
7079{
7080 AutoCaller autoCaller(this);
7081 AssertComRCReturnVoid(autoCaller.rc());
7082
7083 fireUSBDeviceStateChangedEvent(mEventSource, aDevice, aAttached, aError);
7084}
7085
7086void Console::i_onRuntimeError(BOOL aFatal, IN_BSTR aErrorID, IN_BSTR aMessage)
7087{
7088 AutoCaller autoCaller(this);
7089 AssertComRCReturnVoid(autoCaller.rc());
7090
7091 fireRuntimeErrorEvent(mEventSource, aFatal, aErrorID, aMessage);
7092}
7093
7094HRESULT Console::i_onShowWindow(BOOL aCheck, BOOL *aCanShow, LONG64 *aWinId)
7095{
7096 AssertReturn(aCanShow, E_POINTER);
7097 AssertReturn(aWinId, E_POINTER);
7098
7099 *aCanShow = FALSE;
7100 *aWinId = 0;
7101
7102 AutoCaller autoCaller(this);
7103 AssertComRCReturnRC(autoCaller.rc());
7104
7105 VBoxEventDesc evDesc;
7106 if (aCheck)
7107 {
7108 evDesc.init(mEventSource, VBoxEventType_OnCanShowWindow);
7109 BOOL fDelivered = evDesc.fire(5000); /* Wait up to 5 secs for delivery */
7110 //Assert(fDelivered);
7111 if (fDelivered)
7112 {
7113 ComPtr<IEvent> pEvent;
7114 evDesc.getEvent(pEvent.asOutParam());
7115 // bit clumsy
7116 ComPtr<ICanShowWindowEvent> pCanShowEvent = pEvent;
7117 if (pCanShowEvent)
7118 {
7119 BOOL fVetoed = FALSE;
7120 BOOL fApproved = FALSE;
7121 pCanShowEvent->IsVetoed(&fVetoed);
7122 pCanShowEvent->IsApproved(&fApproved);
7123 *aCanShow = fApproved || !fVetoed;
7124 }
7125 else
7126 {
7127 AssertFailed();
7128 *aCanShow = TRUE;
7129 }
7130 }
7131 else
7132 *aCanShow = TRUE;
7133 }
7134 else
7135 {
7136 evDesc.init(mEventSource, VBoxEventType_OnShowWindow, INT64_C(0));
7137 BOOL fDelivered = evDesc.fire(5000); /* Wait up to 5 secs for delivery */
7138 //Assert(fDelivered);
7139 if (fDelivered)
7140 {
7141 ComPtr<IEvent> pEvent;
7142 evDesc.getEvent(pEvent.asOutParam());
7143 ComPtr<IShowWindowEvent> pShowEvent = pEvent;
7144 if (pShowEvent)
7145 {
7146 LONG64 iEvWinId = 0;
7147 pShowEvent->COMGETTER(WinId)(&iEvWinId);
7148 if (iEvWinId != 0 && *aWinId == 0)
7149 *aWinId = iEvWinId;
7150 }
7151 else
7152 AssertFailed();
7153 }
7154 }
7155
7156 return S_OK;
7157}
7158
7159// private methods
7160////////////////////////////////////////////////////////////////////////////////
7161
7162/**
7163 * Increases the usage counter of the mpUVM pointer.
7164 *
7165 * Guarantees that VMR3Destroy() will not be called on it at least until
7166 * releaseVMCaller() is called.
7167 *
7168 * If this method returns a failure, the caller is not allowed to use mpUVM and
7169 * may return the failed result code to the upper level. This method sets the
7170 * extended error info on failure if \a aQuiet is false.
7171 *
7172 * Setting \a aQuiet to true is useful for methods that don't want to return
7173 * the failed result code to the caller when this method fails (e.g. need to
7174 * silently check for the mpUVM availability).
7175 *
7176 * When mpUVM is NULL but \a aAllowNullVM is true, a corresponding error will be
7177 * returned instead of asserting. Having it false is intended as a sanity check
7178 * for methods that have checked mMachineState and expect mpUVM *NOT* to be
7179 * NULL.
7180 *
7181 * @param aQuiet true to suppress setting error info
7182 * @param aAllowNullVM true to accept mpUVM being NULL and return a failure
7183 * (otherwise this method will assert if mpUVM is NULL)
7184 *
7185 * @note Locks this object for writing.
7186 */
7187HRESULT Console::i_addVMCaller(bool aQuiet /* = false */,
7188 bool aAllowNullVM /* = false */)
7189{
7190 RT_NOREF(aAllowNullVM);
7191 AutoCaller autoCaller(this);
7192 /** @todo Fix race during console/VM reference destruction, refer @bugref{6318}
7193 * comment 25. */
7194 if (FAILED(autoCaller.rc()))
7195 return autoCaller.rc();
7196
7197 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
7198
7199 if (mVMDestroying)
7200 {
7201 /* powerDown() is waiting for all callers to finish */
7202 return aQuiet ? E_ACCESSDENIED : setError(E_ACCESSDENIED,
7203 tr("The virtual machine is being powered down"));
7204 }
7205
7206 if (mpUVM == NULL)
7207 {
7208 Assert(aAllowNullVM == true);
7209
7210 /* The machine is not powered up */
7211 return aQuiet ? E_ACCESSDENIED : setError(E_ACCESSDENIED,
7212 tr("The virtual machine is not powered up"));
7213 }
7214
7215 ++mVMCallers;
7216
7217 return S_OK;
7218}
7219
7220/**
7221 * Decreases the usage counter of the mpUVM pointer.
7222 *
7223 * Must always complete the addVMCaller() call after the mpUVM pointer is no
7224 * more necessary.
7225 *
7226 * @note Locks this object for writing.
7227 */
7228void Console::i_releaseVMCaller()
7229{
7230 AutoCaller autoCaller(this);
7231 AssertComRCReturnVoid(autoCaller.rc());
7232
7233 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
7234
7235 AssertReturnVoid(mpUVM != NULL);
7236
7237 Assert(mVMCallers > 0);
7238 --mVMCallers;
7239
7240 if (mVMCallers == 0 && mVMDestroying)
7241 {
7242 /* inform powerDown() there are no more callers */
7243 RTSemEventSignal(mVMZeroCallersSem);
7244 }
7245}
7246
7247
7248HRESULT Console::i_safeVMPtrRetainer(PUVM *a_ppUVM, bool a_Quiet)
7249{
7250 *a_ppUVM = NULL;
7251
7252 AutoCaller autoCaller(this);
7253 AssertComRCReturnRC(autoCaller.rc());
7254 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
7255
7256 /*
7257 * Repeat the checks done by addVMCaller.
7258 */
7259 if (mVMDestroying) /* powerDown() is waiting for all callers to finish */
7260 return a_Quiet
7261 ? E_ACCESSDENIED
7262 : setError(E_ACCESSDENIED, tr("The virtual machine is being powered down"));
7263 PUVM pUVM = mpUVM;
7264 if (!pUVM)
7265 return a_Quiet
7266 ? E_ACCESSDENIED
7267 : setError(E_ACCESSDENIED, tr("The virtual machine is powered off"));
7268
7269 /*
7270 * Retain a reference to the user mode VM handle and get the global handle.
7271 */
7272 uint32_t cRefs = VMR3RetainUVM(pUVM);
7273 if (cRefs == UINT32_MAX)
7274 return a_Quiet
7275 ? E_ACCESSDENIED
7276 : setError(E_ACCESSDENIED, tr("The virtual machine is powered off"));
7277
7278 /* done */
7279 *a_ppUVM = pUVM;
7280 return S_OK;
7281}
7282
7283void Console::i_safeVMPtrReleaser(PUVM *a_ppUVM)
7284{
7285 if (*a_ppUVM)
7286 VMR3ReleaseUVM(*a_ppUVM);
7287 *a_ppUVM = NULL;
7288}
7289
7290
7291/**
7292 * Initialize the release logging facility. In case something
7293 * goes wrong, there will be no release logging. Maybe in the future
7294 * we can add some logic to use different file names in this case.
7295 * Note that the logic must be in sync with Machine::DeleteSettings().
7296 */
7297HRESULT Console::i_consoleInitReleaseLog(const ComPtr<IMachine> aMachine)
7298{
7299 HRESULT hrc = S_OK;
7300
7301 Bstr logFolder;
7302 hrc = aMachine->COMGETTER(LogFolder)(logFolder.asOutParam());
7303 if (FAILED(hrc))
7304 return hrc;
7305
7306 Utf8Str logDir = logFolder;
7307
7308 /* make sure the Logs folder exists */
7309 Assert(logDir.length());
7310 if (!RTDirExists(logDir.c_str()))
7311 RTDirCreateFullPath(logDir.c_str(), 0700);
7312
7313 Utf8Str logFile = Utf8StrFmt("%s%cVBox.log",
7314 logDir.c_str(), RTPATH_DELIMITER);
7315 Utf8Str pngFile = Utf8StrFmt("%s%cVBox.png",
7316 logDir.c_str(), RTPATH_DELIMITER);
7317
7318 /*
7319 * Age the old log files
7320 * Rename .(n-1) to .(n), .(n-2) to .(n-1), ..., and the last log file to .1
7321 * Overwrite target files in case they exist.
7322 */
7323 ComPtr<IVirtualBox> pVirtualBox;
7324 aMachine->COMGETTER(Parent)(pVirtualBox.asOutParam());
7325 ComPtr<ISystemProperties> pSystemProperties;
7326 pVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
7327 ULONG cHistoryFiles = 3;
7328 pSystemProperties->COMGETTER(LogHistoryCount)(&cHistoryFiles);
7329 if (cHistoryFiles)
7330 {
7331 for (int i = cHistoryFiles-1; i >= 0; i--)
7332 {
7333 Utf8Str *files[] = { &logFile, &pngFile };
7334 Utf8Str oldName, newName;
7335
7336 for (unsigned int j = 0; j < RT_ELEMENTS(files); ++j)
7337 {
7338 if (i > 0)
7339 oldName = Utf8StrFmt("%s.%d", files[j]->c_str(), i);
7340 else
7341 oldName = *files[j];
7342 newName = Utf8StrFmt("%s.%d", files[j]->c_str(), i + 1);
7343 /* If the old file doesn't exist, delete the new file (if it
7344 * exists) to provide correct rotation even if the sequence is
7345 * broken */
7346 if ( RTFileRename(oldName.c_str(), newName.c_str(), RTFILEMOVE_FLAGS_REPLACE)
7347 == VERR_FILE_NOT_FOUND)
7348 RTFileDelete(newName.c_str());
7349 }
7350 }
7351 }
7352
7353 RTERRINFOSTATIC ErrInfo;
7354 int vrc = com::VBoxLogRelCreate("VM", logFile.c_str(),
7355 RTLOGFLAGS_PREFIX_TIME_PROG | RTLOGFLAGS_RESTRICT_GROUPS,
7356 "all all.restrict -default.restrict",
7357 "VBOX_RELEASE_LOG", RTLOGDEST_FILE,
7358 32768 /* cMaxEntriesPerGroup */,
7359 0 /* cHistory */, 0 /* uHistoryFileTime */,
7360 0 /* uHistoryFileSize */, RTErrInfoInitStatic(&ErrInfo));
7361 if (RT_FAILURE(vrc))
7362 hrc = setError(E_FAIL, tr("Failed to open release log (%s, %Rrc)"), ErrInfo.Core.pszMsg, vrc);
7363
7364 /* If we've made any directory changes, flush the directory to increase
7365 the likelihood that the log file will be usable after a system panic.
7366
7367 Tip: Try 'export VBOX_RELEASE_LOG_FLAGS=flush' if the last bits of the log
7368 is missing. Just don't have too high hopes for this to help. */
7369 if (SUCCEEDED(hrc) || cHistoryFiles)
7370 RTDirFlush(logDir.c_str());
7371
7372 return hrc;
7373}
7374
7375/**
7376 * Common worker for PowerUp and PowerUpPaused.
7377 *
7378 * @returns COM status code.
7379 *
7380 * @param aProgress Where to return the progress object.
7381 * @param aPaused true if PowerUpPaused called.
7382 */
7383HRESULT Console::i_powerUp(IProgress **aProgress, bool aPaused)
7384{
7385 LogFlowThisFuncEnter();
7386
7387 CheckComArgOutPointerValid(aProgress);
7388
7389 AutoCaller autoCaller(this);
7390 if (FAILED(autoCaller.rc())) return autoCaller.rc();
7391
7392 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
7393
7394 LogFlowThisFunc(("mMachineState=%d\n", mMachineState));
7395 HRESULT rc = S_OK;
7396 ComObjPtr<Progress> pPowerupProgress;
7397 bool fBeganPoweringUp = false;
7398
7399 LONG cOperations = 1;
7400 LONG ulTotalOperationsWeight = 1;
7401 VMPowerUpTask* task = NULL;
7402
7403 try
7404 {
7405 if (Global::IsOnlineOrTransient(mMachineState))
7406 throw setError(VBOX_E_INVALID_VM_STATE,
7407 tr("The virtual machine is already running or busy (machine state: %s)"),
7408 Global::stringifyMachineState(mMachineState));
7409
7410 /* Set up release logging as early as possible after the check if
7411 * there is already a running VM which we shouldn't disturb. */
7412 rc = i_consoleInitReleaseLog(mMachine);
7413 if (FAILED(rc))
7414 throw rc;
7415
7416#ifdef VBOX_OPENSSL_FIPS
7417 LogRel(("crypto: FIPS mode %s\n", FIPS_mode() ? "enabled" : "FAILED"));
7418#endif
7419
7420 /* test and clear the TeleporterEnabled property */
7421 BOOL fTeleporterEnabled;
7422 rc = mMachine->COMGETTER(TeleporterEnabled)(&fTeleporterEnabled);
7423 if (FAILED(rc))
7424 throw rc;
7425
7426#if 0 /** @todo we should save it afterwards, but that isn't necessarily a good idea. Find a better place for this (VBoxSVC). */
7427 if (fTeleporterEnabled)
7428 {
7429 rc = mMachine->COMSETTER(TeleporterEnabled)(FALSE);
7430 if (FAILED(rc))
7431 throw rc;
7432 }
7433#endif
7434
7435 /* test the FaultToleranceState property */
7436 FaultToleranceState_T enmFaultToleranceState;
7437 rc = mMachine->COMGETTER(FaultToleranceState)(&enmFaultToleranceState);
7438 if (FAILED(rc))
7439 throw rc;
7440 BOOL fFaultToleranceSyncEnabled = (enmFaultToleranceState == FaultToleranceState_Standby);
7441
7442 /* Create a progress object to track progress of this operation. Must
7443 * be done as early as possible (together with BeginPowerUp()) as this
7444 * is vital for communicating as much as possible early powerup
7445 * failure information to the API caller */
7446 pPowerupProgress.createObject();
7447 Bstr progressDesc;
7448 if (mMachineState == MachineState_Saved)
7449 progressDesc = tr("Restoring virtual machine");
7450 else if (fTeleporterEnabled)
7451 progressDesc = tr("Teleporting virtual machine");
7452 else if (fFaultToleranceSyncEnabled)
7453 progressDesc = tr("Fault Tolerance syncing of remote virtual machine");
7454 else
7455 progressDesc = tr("Starting virtual machine");
7456
7457 Bstr savedStateFile;
7458
7459 /*
7460 * Saved VMs will have to prove that their saved states seem kosher.
7461 */
7462 if (mMachineState == MachineState_Saved)
7463 {
7464 rc = mMachine->COMGETTER(StateFilePath)(savedStateFile.asOutParam());
7465 if (FAILED(rc))
7466 throw rc;
7467 ComAssertRet(!savedStateFile.isEmpty(), E_FAIL);
7468 int vrc = SSMR3ValidateFile(Utf8Str(savedStateFile).c_str(), false /* fChecksumIt */);
7469 if (RT_FAILURE(vrc))
7470 throw setError(VBOX_E_FILE_ERROR,
7471 tr("VM cannot start because the saved state file '%ls' is invalid (%Rrc). Delete the saved state prior to starting the VM"),
7472 savedStateFile.raw(), vrc);
7473 }
7474
7475 /* Read console data, including console shared folders, stored in the
7476 * saved state file (if not yet done).
7477 */
7478 rc = i_loadDataFromSavedState();
7479 if (FAILED(rc))
7480 throw rc;
7481
7482 /* Check all types of shared folders and compose a single list */
7483 SharedFolderDataMap sharedFolders;
7484 {
7485 /* first, insert global folders */
7486 for (SharedFolderDataMap::const_iterator it = m_mapGlobalSharedFolders.begin();
7487 it != m_mapGlobalSharedFolders.end();
7488 ++it)
7489 {
7490 const SharedFolderData &d = it->second;
7491 sharedFolders[it->first] = d;
7492 }
7493
7494 /* second, insert machine folders */
7495 for (SharedFolderDataMap::const_iterator it = m_mapMachineSharedFolders.begin();
7496 it != m_mapMachineSharedFolders.end();
7497 ++it)
7498 {
7499 const SharedFolderData &d = it->second;
7500 sharedFolders[it->first] = d;
7501 }
7502
7503 /* third, insert console folders */
7504 for (SharedFolderMap::const_iterator it = m_mapSharedFolders.begin();
7505 it != m_mapSharedFolders.end();
7506 ++it)
7507 {
7508 SharedFolder *pSF = it->second;
7509 AutoCaller sfCaller(pSF);
7510 AutoReadLock sfLock(pSF COMMA_LOCKVAL_SRC_POS);
7511 sharedFolders[it->first] = SharedFolderData(pSF->i_getHostPath(),
7512 pSF->i_isWritable(),
7513 pSF->i_isAutoMounted());
7514 }
7515 }
7516
7517
7518 /* Setup task object and thread to carry out the operation
7519 * asynchronously */
7520 try
7521 {
7522 task = new VMPowerUpTask(this, pPowerupProgress);
7523 if (!task->isOk())
7524 {
7525 throw E_FAIL;
7526 }
7527 }
7528 catch(...)
7529 {
7530 delete task;
7531 rc = setError(E_FAIL, "Could not create VMPowerUpTask object \n");
7532 throw rc;
7533 }
7534
7535 task->mConfigConstructor = i_configConstructor;
7536 task->mSharedFolders = sharedFolders;
7537 task->mStartPaused = aPaused;
7538 if (mMachineState == MachineState_Saved)
7539 task->mSavedStateFile = savedStateFile;
7540 task->mTeleporterEnabled = fTeleporterEnabled;
7541 task->mEnmFaultToleranceState = enmFaultToleranceState;
7542
7543 /* Reset differencing hard disks for which autoReset is true,
7544 * but only if the machine has no snapshots OR the current snapshot
7545 * is an OFFLINE snapshot; otherwise we would reset the current
7546 * differencing image of an ONLINE snapshot which contains the disk
7547 * state of the machine while it was previously running, but without
7548 * the corresponding machine state, which is equivalent to powering
7549 * off a running machine and not good idea
7550 */
7551 ComPtr<ISnapshot> pCurrentSnapshot;
7552 rc = mMachine->COMGETTER(CurrentSnapshot)(pCurrentSnapshot.asOutParam());
7553 if (FAILED(rc))
7554 throw rc;
7555
7556 BOOL fCurrentSnapshotIsOnline = false;
7557 if (pCurrentSnapshot)
7558 {
7559 rc = pCurrentSnapshot->COMGETTER(Online)(&fCurrentSnapshotIsOnline);
7560 if (FAILED(rc))
7561 throw rc;
7562 }
7563
7564 if (savedStateFile.isEmpty() && !fCurrentSnapshotIsOnline)
7565 {
7566 LogFlowThisFunc(("Looking for immutable images to reset\n"));
7567
7568 com::SafeIfaceArray<IMediumAttachment> atts;
7569 rc = mMachine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(atts));
7570 if (FAILED(rc))
7571 throw rc;
7572
7573 for (size_t i = 0;
7574 i < atts.size();
7575 ++i)
7576 {
7577 DeviceType_T devType;
7578 rc = atts[i]->COMGETTER(Type)(&devType);
7579 /** @todo later applies to floppies as well */
7580 if (devType == DeviceType_HardDisk)
7581 {
7582 ComPtr<IMedium> pMedium;
7583 rc = atts[i]->COMGETTER(Medium)(pMedium.asOutParam());
7584 if (FAILED(rc))
7585 throw rc;
7586
7587 /* needs autoreset? */
7588 BOOL autoReset = FALSE;
7589 rc = pMedium->COMGETTER(AutoReset)(&autoReset);
7590 if (FAILED(rc))
7591 throw rc;
7592
7593 if (autoReset)
7594 {
7595 ComPtr<IProgress> pResetProgress;
7596 rc = pMedium->Reset(pResetProgress.asOutParam());
7597 if (FAILED(rc))
7598 throw rc;
7599
7600 /* save for later use on the powerup thread */
7601 task->hardDiskProgresses.push_back(pResetProgress);
7602 }
7603 }
7604 }
7605 }
7606 else
7607 LogFlowThisFunc(("Machine has a current snapshot which is online, skipping immutable images reset\n"));
7608
7609 /* setup task object and thread to carry out the operation
7610 * asynchronously */
7611
7612#ifdef VBOX_WITH_EXTPACK
7613 mptrExtPackManager->i_dumpAllToReleaseLog();
7614#endif
7615
7616#ifdef RT_OS_SOLARIS
7617 /* setup host core dumper for the VM */
7618 Bstr value;
7619 HRESULT hrc = mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpEnabled").raw(), value.asOutParam());
7620 if (SUCCEEDED(hrc) && value == "1")
7621 {
7622 Bstr coreDumpDir, coreDumpReplaceSys, coreDumpLive;
7623 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpDir").raw(), coreDumpDir.asOutParam());
7624 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpReplaceSystemDump").raw(), coreDumpReplaceSys.asOutParam());
7625 mMachine->GetExtraData(Bstr("VBoxInternal2/CoreDumpLive").raw(), coreDumpLive.asOutParam());
7626
7627 uint32_t fCoreFlags = 0;
7628 if ( coreDumpReplaceSys.isEmpty() == false
7629 && Utf8Str(coreDumpReplaceSys).toUInt32() == 1)
7630 fCoreFlags |= RTCOREDUMPER_FLAGS_REPLACE_SYSTEM_DUMP;
7631
7632 if ( coreDumpLive.isEmpty() == false
7633 && Utf8Str(coreDumpLive).toUInt32() == 1)
7634 fCoreFlags |= RTCOREDUMPER_FLAGS_LIVE_CORE;
7635
7636 Utf8Str strDumpDir(coreDumpDir);
7637 const char *pszDumpDir = strDumpDir.c_str();
7638 if ( pszDumpDir
7639 && *pszDumpDir == '\0')
7640 pszDumpDir = NULL;
7641
7642 int vrc;
7643 if ( pszDumpDir
7644 && !RTDirExists(pszDumpDir))
7645 {
7646 /*
7647 * Try create the directory.
7648 */
7649 vrc = RTDirCreateFullPath(pszDumpDir, 0700);
7650 if (RT_FAILURE(vrc))
7651 throw setError(E_FAIL, "Failed to setup CoreDumper. Couldn't create dump directory '%s' (%Rrc)\n",
7652 pszDumpDir, vrc);
7653 }
7654
7655 vrc = RTCoreDumperSetup(pszDumpDir, fCoreFlags);
7656 if (RT_FAILURE(vrc))
7657 throw setError(E_FAIL, "Failed to setup CoreDumper (%Rrc)", vrc);
7658 else
7659 LogRel(("CoreDumper setup successful. pszDumpDir=%s fFlags=%#x\n", pszDumpDir ? pszDumpDir : ".", fCoreFlags));
7660 }
7661#endif
7662
7663
7664 // If there is immutable drive the process that.
7665 VMPowerUpTask::ProgressList progresses(task->hardDiskProgresses);
7666 if (aProgress && progresses.size() > 0)
7667 {
7668 for (VMPowerUpTask::ProgressList::const_iterator it = progresses.begin(); it != progresses.end(); ++it)
7669 {
7670 ++cOperations;
7671 ulTotalOperationsWeight += 1;
7672 }
7673 rc = pPowerupProgress->init(static_cast<IConsole *>(this),
7674 progressDesc.raw(),
7675 TRUE, // Cancelable
7676 cOperations,
7677 ulTotalOperationsWeight,
7678 Bstr(tr("Starting Hard Disk operations")).raw(),
7679 1);
7680 AssertComRCReturnRC(rc);
7681 }
7682 else if ( mMachineState == MachineState_Saved
7683 || (!fTeleporterEnabled && !fFaultToleranceSyncEnabled))
7684 {
7685 rc = pPowerupProgress->init(static_cast<IConsole *>(this),
7686 progressDesc.raw(),
7687 FALSE /* aCancelable */);
7688 }
7689 else if (fTeleporterEnabled)
7690 {
7691 rc = pPowerupProgress->init(static_cast<IConsole *>(this),
7692 progressDesc.raw(),
7693 TRUE /* aCancelable */,
7694 3 /* cOperations */,
7695 10 /* ulTotalOperationsWeight */,
7696 Bstr(tr("Teleporting virtual machine")).raw(),
7697 1 /* ulFirstOperationWeight */);
7698 }
7699 else if (fFaultToleranceSyncEnabled)
7700 {
7701 rc = pPowerupProgress->init(static_cast<IConsole *>(this),
7702 progressDesc.raw(),
7703 TRUE /* aCancelable */,
7704 3 /* cOperations */,
7705 10 /* ulTotalOperationsWeight */,
7706 Bstr(tr("Fault Tolerance syncing of remote virtual machine")).raw(),
7707 1 /* ulFirstOperationWeight */);
7708 }
7709
7710 if (FAILED(rc))
7711 throw rc;
7712
7713 /* Tell VBoxSVC and Machine about the progress object so they can
7714 combine/proxy it to any openRemoteSession caller. */
7715 LogFlowThisFunc(("Calling BeginPowerUp...\n"));
7716 rc = mControl->BeginPowerUp(pPowerupProgress);
7717 if (FAILED(rc))
7718 {
7719 LogFlowThisFunc(("BeginPowerUp failed\n"));
7720 throw rc;
7721 }
7722 fBeganPoweringUp = true;
7723
7724 LogFlowThisFunc(("Checking if canceled...\n"));
7725 BOOL fCanceled;
7726 rc = pPowerupProgress->COMGETTER(Canceled)(&fCanceled);
7727 if (FAILED(rc))
7728 throw rc;
7729
7730 if (fCanceled)
7731 {
7732 LogFlowThisFunc(("Canceled in BeginPowerUp\n"));
7733 throw setError(E_FAIL, tr("Powerup was canceled"));
7734 }
7735 LogFlowThisFunc(("Not canceled yet.\n"));
7736
7737 /** @todo this code prevents starting a VM with unavailable bridged
7738 * networking interface. The only benefit is a slightly better error
7739 * message, which should be moved to the driver code. This is the
7740 * only reason why I left the code in for now. The driver allows
7741 * unavailable bridged networking interfaces in certain circumstances,
7742 * and this is sabotaged by this check. The VM will initially have no
7743 * network connectivity, but the user can fix this at runtime. */
7744#if 0
7745 /* the network cards will undergo a quick consistency check */
7746 for (ULONG slot = 0;
7747 slot < maxNetworkAdapters;
7748 ++slot)
7749 {
7750 ComPtr<INetworkAdapter> pNetworkAdapter;
7751 mMachine->GetNetworkAdapter(slot, pNetworkAdapter.asOutParam());
7752 BOOL enabled = FALSE;
7753 pNetworkAdapter->COMGETTER(Enabled)(&enabled);
7754 if (!enabled)
7755 continue;
7756
7757 NetworkAttachmentType_T netattach;
7758 pNetworkAdapter->COMGETTER(AttachmentType)(&netattach);
7759 switch (netattach)
7760 {
7761 case NetworkAttachmentType_Bridged:
7762 {
7763 /* a valid host interface must have been set */
7764 Bstr hostif;
7765 pNetworkAdapter->COMGETTER(HostInterface)(hostif.asOutParam());
7766 if (hostif.isEmpty())
7767 {
7768 throw setError(VBOX_E_HOST_ERROR,
7769 tr("VM cannot start because host interface networking requires a host interface name to be set"));
7770 }
7771 ComPtr<IVirtualBox> pVirtualBox;
7772 mMachine->COMGETTER(Parent)(pVirtualBox.asOutParam());
7773 ComPtr<IHost> pHost;
7774 pVirtualBox->COMGETTER(Host)(pHost.asOutParam());
7775 ComPtr<IHostNetworkInterface> pHostInterface;
7776 if (!SUCCEEDED(pHost->FindHostNetworkInterfaceByName(hostif.raw(),
7777 pHostInterface.asOutParam())))
7778 {
7779 throw setError(VBOX_E_HOST_ERROR,
7780 tr("VM cannot start because the host interface '%ls' does not exist"),
7781 hostif.raw());
7782 }
7783 break;
7784 }
7785 default:
7786 break;
7787 }
7788 }
7789#endif // 0
7790
7791
7792 /* setup task object and thread to carry out the operation
7793 * asynchronously */
7794 if (aProgress){
7795 rc = pPowerupProgress.queryInterfaceTo(aProgress);
7796 AssertComRCReturnRC(rc);
7797 }
7798
7799 rc = task->createThread();
7800
7801 if (FAILED(rc))
7802 throw rc;
7803
7804 /* finally, set the state: no right to fail in this method afterwards
7805 * since we've already started the thread and it is now responsible for
7806 * any error reporting and appropriate state change! */
7807 if (mMachineState == MachineState_Saved)
7808 i_setMachineState(MachineState_Restoring);
7809 else if (fTeleporterEnabled)
7810 i_setMachineState(MachineState_TeleportingIn);
7811 else if (enmFaultToleranceState == FaultToleranceState_Standby)
7812 i_setMachineState(MachineState_FaultTolerantSyncing);
7813 else
7814 i_setMachineState(MachineState_Starting);
7815 }
7816 catch (HRESULT aRC) { rc = aRC; }
7817
7818 if (FAILED(rc) && fBeganPoweringUp)
7819 {
7820
7821 /* The progress object will fetch the current error info */
7822 if (!pPowerupProgress.isNull())
7823 pPowerupProgress->i_notifyComplete(rc);
7824
7825 /* Save the error info across the IPC below. Can't be done before the
7826 * progress notification above, as saving the error info deletes it
7827 * from the current context, and thus the progress object wouldn't be
7828 * updated correctly. */
7829 ErrorInfoKeeper eik;
7830
7831 /* signal end of operation */
7832 mControl->EndPowerUp(rc);
7833 }
7834
7835 LogFlowThisFunc(("mMachineState=%d, rc=%Rhrc\n", mMachineState, rc));
7836 LogFlowThisFuncLeave();
7837 return rc;
7838}
7839
7840/**
7841 * Internal power off worker routine.
7842 *
7843 * This method may be called only at certain places with the following meaning
7844 * as shown below:
7845 *
7846 * - if the machine state is either Running or Paused, a normal
7847 * Console-initiated powerdown takes place (e.g. PowerDown());
7848 * - if the machine state is Saving, saveStateThread() has successfully done its
7849 * job;
7850 * - if the machine state is Starting or Restoring, powerUpThread() has failed
7851 * to start/load the VM;
7852 * - if the machine state is Stopping, the VM has powered itself off (i.e. not
7853 * as a result of the powerDown() call).
7854 *
7855 * Calling it in situations other than the above will cause unexpected behavior.
7856 *
7857 * Note that this method should be the only one that destroys mpUVM and sets it
7858 * to NULL.
7859 *
7860 * @param aProgress Progress object to run (may be NULL).
7861 *
7862 * @note Locks this object for writing.
7863 *
7864 * @note Never call this method from a thread that called addVMCaller() or
7865 * instantiated an AutoVMCaller object; first call releaseVMCaller() or
7866 * release(). Otherwise it will deadlock.
7867 */
7868HRESULT Console::i_powerDown(IProgress *aProgress /*= NULL*/)
7869{
7870 LogFlowThisFuncEnter();
7871
7872 AutoCaller autoCaller(this);
7873 AssertComRCReturnRC(autoCaller.rc());
7874
7875 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
7876
7877 /* Total # of steps for the progress object. Must correspond to the
7878 * number of "advance percent count" comments in this method! */
7879 enum { StepCount = 7 };
7880 /* current step */
7881 ULONG step = 0;
7882
7883 HRESULT rc = S_OK;
7884 int vrc = VINF_SUCCESS;
7885
7886 /* sanity */
7887 Assert(mVMDestroying == false);
7888
7889 PUVM pUVM = mpUVM; Assert(pUVM != NULL);
7890 uint32_t cRefs = VMR3RetainUVM(pUVM); Assert(cRefs != UINT32_MAX); NOREF(cRefs);
7891
7892 AssertMsg( mMachineState == MachineState_Running
7893 || mMachineState == MachineState_Paused
7894 || mMachineState == MachineState_Stuck
7895 || mMachineState == MachineState_Starting
7896 || mMachineState == MachineState_Stopping
7897 || mMachineState == MachineState_Saving
7898 || mMachineState == MachineState_Restoring
7899 || mMachineState == MachineState_TeleportingPausedVM
7900 || mMachineState == MachineState_FaultTolerantSyncing
7901 || mMachineState == MachineState_TeleportingIn
7902 , ("Invalid machine state: %s\n", Global::stringifyMachineState(mMachineState)));
7903
7904 LogRel(("Console::powerDown(): A request to power off the VM has been issued (mMachineState=%s, InUninit=%d)\n",
7905 Global::stringifyMachineState(mMachineState), getObjectState().getState() == ObjectState::InUninit));
7906
7907 /* Check if we need to power off the VM. In case of mVMPoweredOff=true, the
7908 * VM has already powered itself off in vmstateChangeCallback() and is just
7909 * notifying Console about that. In case of Starting or Restoring,
7910 * powerUpThread() is calling us on failure, so the VM is already off at
7911 * that point. */
7912 if ( !mVMPoweredOff
7913 && ( mMachineState == MachineState_Starting
7914 || mMachineState == MachineState_Restoring
7915 || mMachineState == MachineState_FaultTolerantSyncing
7916 || mMachineState == MachineState_TeleportingIn)
7917 )
7918 mVMPoweredOff = true;
7919
7920 /*
7921 * Go to Stopping state if not already there.
7922 *
7923 * Note that we don't go from Saving/Restoring to Stopping because
7924 * vmstateChangeCallback() needs it to set the state to Saved on
7925 * VMSTATE_TERMINATED. In terms of protecting from inappropriate operations
7926 * while leaving the lock below, Saving or Restoring should be fine too.
7927 * Ditto for TeleportingPausedVM -> Teleported.
7928 */
7929 if ( mMachineState != MachineState_Saving
7930 && mMachineState != MachineState_Restoring
7931 && mMachineState != MachineState_Stopping
7932 && mMachineState != MachineState_TeleportingIn
7933 && mMachineState != MachineState_TeleportingPausedVM
7934 && mMachineState != MachineState_FaultTolerantSyncing
7935 )
7936 i_setMachineState(MachineState_Stopping);
7937
7938 /* ----------------------------------------------------------------------
7939 * DONE with necessary state changes, perform the power down actions (it's
7940 * safe to release the object lock now if needed)
7941 * ---------------------------------------------------------------------- */
7942
7943 if (mDisplay)
7944 {
7945 alock.release();
7946
7947 mDisplay->i_notifyPowerDown();
7948
7949 alock.acquire();
7950 }
7951
7952 /* Stop the VRDP server to prevent new clients connection while VM is being
7953 * powered off. */
7954 if (mConsoleVRDPServer)
7955 {
7956 LogFlowThisFunc(("Stopping VRDP server...\n"));
7957
7958 /* Leave the lock since EMT could call us back as addVMCaller() */
7959 alock.release();
7960
7961 mConsoleVRDPServer->Stop();
7962
7963 alock.acquire();
7964 }
7965
7966 /* advance percent count */
7967 if (aProgress)
7968 aProgress->SetCurrentOperationProgress(99 * (++step) / StepCount );
7969
7970
7971 /* ----------------------------------------------------------------------
7972 * Now, wait for all mpUVM callers to finish their work if there are still
7973 * some on other threads. NO methods that need mpUVM (or initiate other calls
7974 * that need it) may be called after this point
7975 * ---------------------------------------------------------------------- */
7976
7977 /* go to the destroying state to prevent from adding new callers */
7978 mVMDestroying = true;
7979
7980 if (mVMCallers > 0)
7981 {
7982 /* lazy creation */
7983 if (mVMZeroCallersSem == NIL_RTSEMEVENT)
7984 RTSemEventCreate(&mVMZeroCallersSem);
7985
7986 LogFlowThisFunc(("Waiting for mpUVM callers (%d) to drop to zero...\n", mVMCallers));
7987
7988 alock.release();
7989
7990 RTSemEventWait(mVMZeroCallersSem, RT_INDEFINITE_WAIT);
7991
7992 alock.acquire();
7993 }
7994
7995 /* advance percent count */
7996 if (aProgress)
7997 aProgress->SetCurrentOperationProgress(99 * (++step) / StepCount );
7998
7999 vrc = VINF_SUCCESS;
8000
8001 /*
8002 * Power off the VM if not already done that.
8003 * Leave the lock since EMT will call vmstateChangeCallback.
8004 *
8005 * Note that VMR3PowerOff() may fail here (invalid VMSTATE) if the
8006 * VM-(guest-)initiated power off happened in parallel a ms before this
8007 * call. So far, we let this error pop up on the user's side.
8008 */
8009 if (!mVMPoweredOff)
8010 {
8011 LogFlowThisFunc(("Powering off the VM...\n"));
8012 alock.release();
8013 vrc = VMR3PowerOff(pUVM);
8014#ifdef VBOX_WITH_EXTPACK
8015 mptrExtPackManager->i_callAllVmPowerOffHooks(this, VMR3GetVM(pUVM));
8016#endif
8017 alock.acquire();
8018 }
8019
8020 /* advance percent count */
8021 if (aProgress)
8022 aProgress->SetCurrentOperationProgress(99 * (++step) / StepCount );
8023
8024#ifdef VBOX_WITH_HGCM
8025 /* Shutdown HGCM services before destroying the VM. */
8026 if (m_pVMMDev)
8027 {
8028 LogFlowThisFunc(("Shutdown HGCM...\n"));
8029
8030 /* Leave the lock since EMT might wait for it and will call us back as addVMCaller() */
8031 alock.release();
8032
8033 m_pVMMDev->hgcmShutdown();
8034
8035 alock.acquire();
8036 }
8037
8038 /* advance percent count */
8039 if (aProgress)
8040 aProgress->SetCurrentOperationProgress(99 * (++step) / StepCount);
8041
8042#endif /* VBOX_WITH_HGCM */
8043
8044 LogFlowThisFunc(("Ready for VM destruction.\n"));
8045
8046 /* If we are called from Console::uninit(), then try to destroy the VM even
8047 * on failure (this will most likely fail too, but what to do?..) */
8048 if (RT_SUCCESS(vrc) || getObjectState().getState() == ObjectState::InUninit)
8049 {
8050 /* If the machine has a USB controller, release all USB devices
8051 * (symmetric to the code in captureUSBDevices()) */
8052 if (mfVMHasUsbController)
8053 {
8054 alock.release();
8055 i_detachAllUSBDevices(false /* aDone */);
8056 alock.acquire();
8057 }
8058
8059 /* Now we've got to destroy the VM as well. (mpUVM is not valid beyond
8060 * this point). We release the lock before calling VMR3Destroy() because
8061 * it will result into calling destructors of drivers associated with
8062 * Console children which may in turn try to lock Console (e.g. by
8063 * instantiating SafeVMPtr to access mpUVM). It's safe here because
8064 * mVMDestroying is set which should prevent any activity. */
8065
8066 /* Set mpUVM to NULL early just in case if some old code is not using
8067 * addVMCaller()/releaseVMCaller(). (We have our own ref on pUVM.) */
8068 VMR3ReleaseUVM(mpUVM);
8069 mpUVM = NULL;
8070
8071 LogFlowThisFunc(("Destroying the VM...\n"));
8072
8073 alock.release();
8074
8075 vrc = VMR3Destroy(pUVM);
8076
8077 /* take the lock again */
8078 alock.acquire();
8079
8080 /* advance percent count */
8081 if (aProgress)
8082 aProgress->SetCurrentOperationProgress(99 * (++step) / StepCount);
8083
8084 if (RT_SUCCESS(vrc))
8085 {
8086 LogFlowThisFunc(("Machine has been destroyed (mMachineState=%d)\n",
8087 mMachineState));
8088 /* Note: the Console-level machine state change happens on the
8089 * VMSTATE_TERMINATE state change in vmstateChangeCallback(). If
8090 * powerDown() is called from EMT (i.e. from vmstateChangeCallback()
8091 * on receiving VM-initiated VMSTATE_OFF), VMSTATE_TERMINATE hasn't
8092 * occurred yet. This is okay, because mMachineState is already
8093 * Stopping in this case, so any other attempt to call PowerDown()
8094 * will be rejected. */
8095 }
8096 else
8097 {
8098 /* bad bad bad, but what to do? (Give Console our UVM ref.) */
8099 mpUVM = pUVM;
8100 pUVM = NULL;
8101 rc = setError(VBOX_E_VM_ERROR,
8102 tr("Could not destroy the machine. (Error: %Rrc)"),
8103 vrc);
8104 }
8105
8106 /* Complete the detaching of the USB devices. */
8107 if (mfVMHasUsbController)
8108 {
8109 alock.release();
8110 i_detachAllUSBDevices(true /* aDone */);
8111 alock.acquire();
8112 }
8113
8114 /* advance percent count */
8115 if (aProgress)
8116 aProgress->SetCurrentOperationProgress(99 * (++step) / StepCount);
8117 }
8118 else
8119 {
8120 rc = setError(VBOX_E_VM_ERROR,
8121 tr("Could not power off the machine. (Error: %Rrc)"),
8122 vrc);
8123 }
8124
8125 /*
8126 * Finished with the destruction.
8127 *
8128 * Note that if something impossible happened and we've failed to destroy
8129 * the VM, mVMDestroying will remain true and mMachineState will be
8130 * something like Stopping, so most Console methods will return an error
8131 * to the caller.
8132 */
8133 if (pUVM != NULL)
8134 VMR3ReleaseUVM(pUVM);
8135 else
8136 mVMDestroying = false;
8137
8138 LogFlowThisFuncLeave();
8139 return rc;
8140}
8141
8142/**
8143 * @note Locks this object for writing.
8144 */
8145HRESULT Console::i_setMachineState(MachineState_T aMachineState,
8146 bool aUpdateServer /* = true */)
8147{
8148 AutoCaller autoCaller(this);
8149 AssertComRCReturnRC(autoCaller.rc());
8150
8151 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
8152
8153 HRESULT rc = S_OK;
8154
8155 if (mMachineState != aMachineState)
8156 {
8157 LogThisFunc(("machineState=%s -> %s aUpdateServer=%RTbool\n",
8158 Global::stringifyMachineState(mMachineState), Global::stringifyMachineState(aMachineState), aUpdateServer));
8159 LogRel(("Console: Machine state changed to '%s'\n", Global::stringifyMachineState(aMachineState)));
8160 mMachineState = aMachineState;
8161
8162 /// @todo (dmik)
8163 // possibly, we need to redo onStateChange() using the dedicated
8164 // Event thread, like it is done in VirtualBox. This will make it
8165 // much safer (no deadlocks possible if someone tries to use the
8166 // console from the callback), however, listeners will lose the
8167 // ability to synchronously react to state changes (is it really
8168 // necessary??)
8169 LogFlowThisFunc(("Doing onStateChange()...\n"));
8170 i_onStateChange(aMachineState);
8171 LogFlowThisFunc(("Done onStateChange()\n"));
8172
8173 if (aUpdateServer)
8174 {
8175 /* Server notification MUST be done from under the lock; otherwise
8176 * the machine state here and on the server might go out of sync
8177 * which can lead to various unexpected results (like the machine
8178 * state being >= MachineState_Running on the server, while the
8179 * session state is already SessionState_Unlocked at the same time
8180 * there).
8181 *
8182 * Cross-lock conditions should be carefully watched out: calling
8183 * UpdateState we will require Machine and SessionMachine locks
8184 * (remember that here we're holding the Console lock here, and also
8185 * all locks that have been acquire by the thread before calling
8186 * this method).
8187 */
8188 LogFlowThisFunc(("Doing mControl->UpdateState()...\n"));
8189 rc = mControl->UpdateState(aMachineState);
8190 LogFlowThisFunc(("mControl->UpdateState()=%Rhrc\n", rc));
8191 }
8192 }
8193
8194 return rc;
8195}
8196
8197/**
8198 * Searches for a shared folder with the given logical name
8199 * in the collection of shared folders.
8200 *
8201 * @param strName logical name of the shared folder
8202 * @param aSharedFolder where to return the found object
8203 * @param aSetError whether to set the error info if the folder is
8204 * not found
8205 * @return
8206 * S_OK when found or E_INVALIDARG when not found
8207 *
8208 * @note The caller must lock this object for writing.
8209 */
8210HRESULT Console::i_findSharedFolder(const Utf8Str &strName,
8211 ComObjPtr<SharedFolder> &aSharedFolder,
8212 bool aSetError /* = false */)
8213{
8214 /* sanity check */
8215 AssertReturn(isWriteLockOnCurrentThread(), E_FAIL);
8216
8217 SharedFolderMap::const_iterator it = m_mapSharedFolders.find(strName);
8218 if (it != m_mapSharedFolders.end())
8219 {
8220 aSharedFolder = it->second;
8221 return S_OK;
8222 }
8223
8224 if (aSetError)
8225 setError(VBOX_E_FILE_ERROR,
8226 tr("Could not find a shared folder named '%s'."),
8227 strName.c_str());
8228
8229 return VBOX_E_FILE_ERROR;
8230}
8231
8232/**
8233 * Fetches the list of global or machine shared folders from the server.
8234 *
8235 * @param aGlobal true to fetch global folders.
8236 *
8237 * @note The caller must lock this object for writing.
8238 */
8239HRESULT Console::i_fetchSharedFolders(BOOL aGlobal)
8240{
8241 /* sanity check */
8242 AssertReturn( getObjectState().getState() == ObjectState::InInit
8243 || isWriteLockOnCurrentThread(), E_FAIL);
8244
8245 LogFlowThisFunc(("Entering\n"));
8246
8247 /* Check if we're online and keep it that way. */
8248 SafeVMPtrQuiet ptrVM(this);
8249 AutoVMCallerQuietWeak autoVMCaller(this);
8250 bool const online = ptrVM.isOk()
8251 && m_pVMMDev
8252 && m_pVMMDev->isShFlActive();
8253
8254 HRESULT rc = S_OK;
8255
8256 try
8257 {
8258 if (aGlobal)
8259 {
8260 /// @todo grab & process global folders when they are done
8261 }
8262 else
8263 {
8264 SharedFolderDataMap oldFolders;
8265 if (online)
8266 oldFolders = m_mapMachineSharedFolders;
8267
8268 m_mapMachineSharedFolders.clear();
8269
8270 SafeIfaceArray<ISharedFolder> folders;
8271 rc = mMachine->COMGETTER(SharedFolders)(ComSafeArrayAsOutParam(folders));
8272 if (FAILED(rc)) throw rc;
8273
8274 for (size_t i = 0; i < folders.size(); ++i)
8275 {
8276 ComPtr<ISharedFolder> pSharedFolder = folders[i];
8277
8278 Bstr bstrName;
8279 Bstr bstrHostPath;
8280 BOOL writable;
8281 BOOL autoMount;
8282
8283 rc = pSharedFolder->COMGETTER(Name)(bstrName.asOutParam());
8284 if (FAILED(rc)) throw rc;
8285 Utf8Str strName(bstrName);
8286
8287 rc = pSharedFolder->COMGETTER(HostPath)(bstrHostPath.asOutParam());
8288 if (FAILED(rc)) throw rc;
8289 Utf8Str strHostPath(bstrHostPath);
8290
8291 rc = pSharedFolder->COMGETTER(Writable)(&writable);
8292 if (FAILED(rc)) throw rc;
8293
8294 rc = pSharedFolder->COMGETTER(AutoMount)(&autoMount);
8295 if (FAILED(rc)) throw rc;
8296
8297 m_mapMachineSharedFolders.insert(std::make_pair(strName,
8298 SharedFolderData(strHostPath, !!writable, !!autoMount)));
8299
8300 /* send changes to HGCM if the VM is running */
8301 if (online)
8302 {
8303 SharedFolderDataMap::iterator it = oldFolders.find(strName);
8304 if ( it == oldFolders.end()
8305 || it->second.m_strHostPath != strHostPath)
8306 {
8307 /* a new machine folder is added or
8308 * the existing machine folder is changed */
8309 if (m_mapSharedFolders.find(strName) != m_mapSharedFolders.end())
8310 ; /* the console folder exists, nothing to do */
8311 else
8312 {
8313 /* remove the old machine folder (when changed)
8314 * or the global folder if any (when new) */
8315 if ( it != oldFolders.end()
8316 || m_mapGlobalSharedFolders.find(strName) != m_mapGlobalSharedFolders.end()
8317 )
8318 {
8319 rc = i_removeSharedFolder(strName);
8320 if (FAILED(rc)) throw rc;
8321 }
8322
8323 /* create the new machine folder */
8324 rc = i_createSharedFolder(strName,
8325 SharedFolderData(strHostPath, !!writable, !!autoMount));
8326 if (FAILED(rc)) throw rc;
8327 }
8328 }
8329 /* forget the processed (or identical) folder */
8330 if (it != oldFolders.end())
8331 oldFolders.erase(it);
8332 }
8333 }
8334
8335 /* process outdated (removed) folders */
8336 if (online)
8337 {
8338 for (SharedFolderDataMap::const_iterator it = oldFolders.begin();
8339 it != oldFolders.end(); ++it)
8340 {
8341 if (m_mapSharedFolders.find(it->first) != m_mapSharedFolders.end())
8342 ; /* the console folder exists, nothing to do */
8343 else
8344 {
8345 /* remove the outdated machine folder */
8346 rc = i_removeSharedFolder(it->first);
8347 if (FAILED(rc)) throw rc;
8348
8349 /* create the global folder if there is any */
8350 SharedFolderDataMap::const_iterator git =
8351 m_mapGlobalSharedFolders.find(it->first);
8352 if (git != m_mapGlobalSharedFolders.end())
8353 {
8354 rc = i_createSharedFolder(git->first, git->second);
8355 if (FAILED(rc)) throw rc;
8356 }
8357 }
8358 }
8359 }
8360 }
8361 }
8362 catch (HRESULT rc2)
8363 {
8364 rc = rc2;
8365 if (online)
8366 i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder", N_("Broken shared folder!"));
8367 }
8368
8369 LogFlowThisFunc(("Leaving\n"));
8370
8371 return rc;
8372}
8373
8374/**
8375 * Searches for a shared folder with the given name in the list of machine
8376 * shared folders and then in the list of the global shared folders.
8377 *
8378 * @param strName Name of the folder to search for.
8379 * @param aIt Where to store the pointer to the found folder.
8380 * @return @c true if the folder was found and @c false otherwise.
8381 *
8382 * @note The caller must lock this object for reading.
8383 */
8384bool Console::i_findOtherSharedFolder(const Utf8Str &strName,
8385 SharedFolderDataMap::const_iterator &aIt)
8386{
8387 /* sanity check */
8388 AssertReturn(isWriteLockOnCurrentThread(), false);
8389
8390 /* first, search machine folders */
8391 aIt = m_mapMachineSharedFolders.find(strName);
8392 if (aIt != m_mapMachineSharedFolders.end())
8393 return true;
8394
8395 /* second, search machine folders */
8396 aIt = m_mapGlobalSharedFolders.find(strName);
8397 if (aIt != m_mapGlobalSharedFolders.end())
8398 return true;
8399
8400 return false;
8401}
8402
8403/**
8404 * Calls the HGCM service to add a shared folder definition.
8405 *
8406 * @param strName Shared folder name.
8407 * @param aData Shared folder data.
8408 *
8409 * @note Must be called from under AutoVMCaller and when mpUVM != NULL!
8410 * @note Doesn't lock anything.
8411 */
8412HRESULT Console::i_createSharedFolder(const Utf8Str &strName, const SharedFolderData &aData)
8413{
8414 ComAssertRet(strName.isNotEmpty(), E_FAIL);
8415 ComAssertRet(aData.m_strHostPath.isNotEmpty(), E_FAIL);
8416
8417 /* sanity checks */
8418 AssertReturn(mpUVM, E_FAIL);
8419 AssertReturn(m_pVMMDev && m_pVMMDev->isShFlActive(), E_FAIL);
8420
8421 VBOXHGCMSVCPARM parms[SHFL_CPARMS_ADD_MAPPING];
8422 SHFLSTRING *pFolderName, *pMapName;
8423 size_t cbString;
8424
8425 Bstr value;
8426 HRESULT hrc = mMachine->GetExtraData(BstrFmt("VBoxInternal2/SharedFoldersEnableSymlinksCreate/%s",
8427 strName.c_str()).raw(),
8428 value.asOutParam());
8429 bool fSymlinksCreate = hrc == S_OK && value == "1";
8430
8431 Log(("Adding shared folder '%s' -> '%s'\n", strName.c_str(), aData.m_strHostPath.c_str()));
8432
8433 // check whether the path is valid and exists
8434 char hostPathFull[RTPATH_MAX];
8435 int vrc = RTPathAbsEx(NULL,
8436 aData.m_strHostPath.c_str(),
8437 hostPathFull,
8438 sizeof(hostPathFull));
8439
8440 bool fMissing = false;
8441 if (RT_FAILURE(vrc))
8442 return setError(E_INVALIDARG,
8443 tr("Invalid shared folder path: '%s' (%Rrc)"),
8444 aData.m_strHostPath.c_str(), vrc);
8445 if (!RTPathExists(hostPathFull))
8446 fMissing = true;
8447
8448 /* Check whether the path is full (absolute) */
8449 if (RTPathCompare(aData.m_strHostPath.c_str(), hostPathFull) != 0)
8450 return setError(E_INVALIDARG,
8451 tr("Shared folder path '%s' is not absolute"),
8452 aData.m_strHostPath.c_str());
8453
8454 // now that we know the path is good, give it to HGCM
8455
8456 Bstr bstrName(strName);
8457 Bstr bstrHostPath(aData.m_strHostPath);
8458
8459 cbString = (bstrHostPath.length() + 1) * sizeof(RTUTF16);
8460 if (cbString >= UINT16_MAX)
8461 return setError(E_INVALIDARG, tr("The name is too long"));
8462 pFolderName = (SHFLSTRING*)RTMemAllocZ(SHFLSTRING_HEADER_SIZE + cbString);
8463 Assert(pFolderName);
8464 memcpy(pFolderName->String.ucs2, bstrHostPath.raw(), cbString);
8465
8466 pFolderName->u16Size = (uint16_t)cbString;
8467 pFolderName->u16Length = (uint16_t)(cbString - sizeof(RTUTF16));
8468
8469 parms[0].type = VBOX_HGCM_SVC_PARM_PTR;
8470 parms[0].u.pointer.addr = pFolderName;
8471 parms[0].u.pointer.size = ShflStringSizeOfBuffer(pFolderName);
8472
8473 cbString = (bstrName.length() + 1) * sizeof(RTUTF16);
8474 if (cbString >= UINT16_MAX)
8475 {
8476 RTMemFree(pFolderName);
8477 return setError(E_INVALIDARG, tr("The host path is too long"));
8478 }
8479 pMapName = (SHFLSTRING*)RTMemAllocZ(SHFLSTRING_HEADER_SIZE + cbString);
8480 Assert(pMapName);
8481 memcpy(pMapName->String.ucs2, bstrName.raw(), cbString);
8482
8483 pMapName->u16Size = (uint16_t)cbString;
8484 pMapName->u16Length = (uint16_t)(cbString - sizeof(RTUTF16));
8485
8486 parms[1].type = VBOX_HGCM_SVC_PARM_PTR;
8487 parms[1].u.pointer.addr = pMapName;
8488 parms[1].u.pointer.size = ShflStringSizeOfBuffer(pMapName);
8489
8490 parms[2].type = VBOX_HGCM_SVC_PARM_32BIT;
8491 parms[2].u.uint32 = (aData.m_fWritable ? SHFL_ADD_MAPPING_F_WRITABLE : 0)
8492 | (aData.m_fAutoMount ? SHFL_ADD_MAPPING_F_AUTOMOUNT : 0)
8493 | (fSymlinksCreate ? SHFL_ADD_MAPPING_F_CREATE_SYMLINKS : 0)
8494 | (fMissing ? SHFL_ADD_MAPPING_F_MISSING : 0)
8495 ;
8496
8497 vrc = m_pVMMDev->hgcmHostCall("VBoxSharedFolders",
8498 SHFL_FN_ADD_MAPPING,
8499 SHFL_CPARMS_ADD_MAPPING, &parms[0]);
8500 RTMemFree(pFolderName);
8501 RTMemFree(pMapName);
8502
8503 if (RT_FAILURE(vrc))
8504 return setError(E_FAIL,
8505 tr("Could not create a shared folder '%s' mapped to '%s' (%Rrc)"),
8506 strName.c_str(), aData.m_strHostPath.c_str(), vrc);
8507
8508 if (fMissing)
8509 return setError(E_INVALIDARG,
8510 tr("Shared folder path '%s' does not exist on the host"),
8511 aData.m_strHostPath.c_str());
8512
8513 return S_OK;
8514}
8515
8516/**
8517 * Calls the HGCM service to remove the shared folder definition.
8518 *
8519 * @param strName Shared folder name.
8520 *
8521 * @note Must be called from under AutoVMCaller and when mpUVM != NULL!
8522 * @note Doesn't lock anything.
8523 */
8524HRESULT Console::i_removeSharedFolder(const Utf8Str &strName)
8525{
8526 ComAssertRet(strName.isNotEmpty(), E_FAIL);
8527
8528 /* sanity checks */
8529 AssertReturn(mpUVM, E_FAIL);
8530 AssertReturn(m_pVMMDev && m_pVMMDev->isShFlActive(), E_FAIL);
8531
8532 VBOXHGCMSVCPARM parms;
8533 SHFLSTRING *pMapName;
8534 size_t cbString;
8535
8536 Log(("Removing shared folder '%s'\n", strName.c_str()));
8537
8538 Bstr bstrName(strName);
8539 cbString = (bstrName.length() + 1) * sizeof(RTUTF16);
8540 if (cbString >= UINT16_MAX)
8541 return setError(E_INVALIDARG, tr("The name is too long"));
8542 pMapName = (SHFLSTRING *) RTMemAllocZ(SHFLSTRING_HEADER_SIZE + cbString);
8543 Assert(pMapName);
8544 memcpy(pMapName->String.ucs2, bstrName.raw(), cbString);
8545
8546 pMapName->u16Size = (uint16_t)cbString;
8547 pMapName->u16Length = (uint16_t)(cbString - sizeof(RTUTF16));
8548
8549 parms.type = VBOX_HGCM_SVC_PARM_PTR;
8550 parms.u.pointer.addr = pMapName;
8551 parms.u.pointer.size = ShflStringSizeOfBuffer(pMapName);
8552
8553 int vrc = m_pVMMDev->hgcmHostCall("VBoxSharedFolders",
8554 SHFL_FN_REMOVE_MAPPING,
8555 1, &parms);
8556 RTMemFree(pMapName);
8557 if (RT_FAILURE(vrc))
8558 return setError(E_FAIL,
8559 tr("Could not remove the shared folder '%s' (%Rrc)"),
8560 strName.c_str(), vrc);
8561
8562 return S_OK;
8563}
8564
8565/** @callback_method_impl{FNVMATSTATE}
8566 *
8567 * @note Locks the Console object for writing.
8568 * @remarks The @a pUVM parameter can be NULL in one case where powerUpThread()
8569 * calls after the VM was destroyed.
8570 */
8571DECLCALLBACK(void) Console::i_vmstateChangeCallback(PUVM pUVM, VMSTATE enmState, VMSTATE enmOldState, void *pvUser)
8572{
8573 LogFlowFunc(("Changing state from %s to %s (pUVM=%p)\n",
8574 VMR3GetStateName(enmOldState), VMR3GetStateName(enmState), pUVM));
8575
8576 Console *that = static_cast<Console *>(pvUser);
8577 AssertReturnVoid(that);
8578
8579 AutoCaller autoCaller(that);
8580
8581 /* Note that we must let this method proceed even if Console::uninit() has
8582 * been already called. In such case this VMSTATE change is a result of:
8583 * 1) powerDown() called from uninit() itself, or
8584 * 2) VM-(guest-)initiated power off. */
8585 AssertReturnVoid( autoCaller.isOk()
8586 || that->getObjectState().getState() == ObjectState::InUninit);
8587
8588 switch (enmState)
8589 {
8590 /*
8591 * The VM has terminated
8592 */
8593 case VMSTATE_OFF:
8594 {
8595#ifdef VBOX_WITH_GUEST_PROPS
8596 if (that->i_isResetTurnedIntoPowerOff())
8597 {
8598 Bstr strPowerOffReason;
8599
8600 if (that->mfPowerOffCausedByReset)
8601 strPowerOffReason = Bstr("Reset");
8602 else
8603 strPowerOffReason = Bstr("PowerOff");
8604
8605 that->mMachine->DeleteGuestProperty(Bstr("/VirtualBox/HostInfo/VMPowerOffReason").raw());
8606 that->mMachine->SetGuestProperty(Bstr("/VirtualBox/HostInfo/VMPowerOffReason").raw(),
8607 strPowerOffReason.raw(), Bstr("RDONLYGUEST").raw());
8608 that->mMachine->SaveSettings();
8609 }
8610#endif
8611
8612 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
8613
8614 if (that->mVMStateChangeCallbackDisabled)
8615 return;
8616
8617 /* Do we still think that it is running? It may happen if this is a
8618 * VM-(guest-)initiated shutdown/poweroff.
8619 */
8620 if ( that->mMachineState != MachineState_Stopping
8621 && that->mMachineState != MachineState_Saving
8622 && that->mMachineState != MachineState_Restoring
8623 && that->mMachineState != MachineState_TeleportingIn
8624 && that->mMachineState != MachineState_FaultTolerantSyncing
8625 && that->mMachineState != MachineState_TeleportingPausedVM
8626 && !that->mVMIsAlreadyPoweringOff
8627 )
8628 {
8629 LogFlowFunc(("VM has powered itself off but Console still thinks it is running. Notifying.\n"));
8630
8631 /*
8632 * Prevent powerDown() from calling VMR3PowerOff() again if this was called from
8633 * the power off state change.
8634 * When called from the Reset state make sure to call VMR3PowerOff() first.
8635 */
8636 Assert(that->mVMPoweredOff == false);
8637 that->mVMPoweredOff = true;
8638
8639 /*
8640 * request a progress object from the server
8641 * (this will set the machine state to Stopping on the server
8642 * to block others from accessing this machine)
8643 */
8644 ComPtr<IProgress> pProgress;
8645 HRESULT rc = that->mControl->BeginPoweringDown(pProgress.asOutParam());
8646 AssertComRC(rc);
8647
8648 /* sync the state with the server */
8649 that->i_setMachineStateLocally(MachineState_Stopping);
8650
8651 /* Setup task object and thread to carry out the operation
8652 * asynchronously (if we call powerDown() right here but there
8653 * is one or more mpUVM callers (added with addVMCaller()) we'll
8654 * deadlock).
8655 */
8656 VMPowerDownTask* task = NULL;
8657 try
8658 {
8659 task = new VMPowerDownTask(that, pProgress);
8660 /* If creating a task failed, this can currently mean one of
8661 * two: either Console::uninit() has been called just a ms
8662 * before (so a powerDown() call is already on the way), or
8663 * powerDown() itself is being already executed. Just do
8664 * nothing.
8665 */
8666 if (!task->isOk())
8667 {
8668 LogFlowFunc(("Console is already being uninitialized. \n"));
8669 throw E_FAIL;
8670 }
8671 }
8672 catch(...)
8673 {
8674 delete task;
8675 LogFlowFunc(("Problem with creating VMPowerDownTask object. \n"));
8676 }
8677
8678 rc = task->createThread();
8679
8680 if (FAILED(rc))
8681 {
8682 LogFlowFunc(("Problem with creating thread for VMPowerDownTask. \n"));
8683 }
8684
8685 }
8686 break;
8687 }
8688
8689 /* The VM has been completely destroyed.
8690 *
8691 * Note: This state change can happen at two points:
8692 * 1) At the end of VMR3Destroy() if it was not called from EMT.
8693 * 2) At the end of vmR3EmulationThread if VMR3Destroy() was
8694 * called by EMT.
8695 */
8696 case VMSTATE_TERMINATED:
8697 {
8698 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
8699
8700 if (that->mVMStateChangeCallbackDisabled)
8701 break;
8702
8703 /* Terminate host interface networking. If pUVM is NULL, we've been
8704 * manually called from powerUpThread() either before calling
8705 * VMR3Create() or after VMR3Create() failed, so no need to touch
8706 * networking.
8707 */
8708 if (pUVM)
8709 that->i_powerDownHostInterfaces();
8710
8711 /* From now on the machine is officially powered down or remains in
8712 * the Saved state.
8713 */
8714 switch (that->mMachineState)
8715 {
8716 default:
8717 AssertFailed();
8718 RT_FALL_THRU();
8719 case MachineState_Stopping:
8720 /* successfully powered down */
8721 that->i_setMachineState(MachineState_PoweredOff);
8722 break;
8723 case MachineState_Saving:
8724 /* successfully saved */
8725 that->i_setMachineState(MachineState_Saved);
8726 break;
8727 case MachineState_Starting:
8728 /* failed to start, but be patient: set back to PoweredOff
8729 * (for similarity with the below) */
8730 that->i_setMachineState(MachineState_PoweredOff);
8731 break;
8732 case MachineState_Restoring:
8733 /* failed to load the saved state file, but be patient: set
8734 * back to Saved (to preserve the saved state file) */
8735 that->i_setMachineState(MachineState_Saved);
8736 break;
8737 case MachineState_TeleportingIn:
8738 /* Teleportation failed or was canceled. Back to powered off. */
8739 that->i_setMachineState(MachineState_PoweredOff);
8740 break;
8741 case MachineState_TeleportingPausedVM:
8742 /* Successfully teleported the VM. */
8743 that->i_setMachineState(MachineState_Teleported);
8744 break;
8745 case MachineState_FaultTolerantSyncing:
8746 /* Fault tolerant sync failed or was canceled. Back to powered off. */
8747 that->i_setMachineState(MachineState_PoweredOff);
8748 break;
8749 }
8750 break;
8751 }
8752
8753 case VMSTATE_RESETTING:
8754 /** @todo shouldn't VMSTATE_RESETTING_LS be here? */
8755 {
8756#ifdef VBOX_WITH_GUEST_PROPS
8757 /* Do not take any read/write locks here! */
8758 that->i_guestPropertiesHandleVMReset();
8759#endif
8760 break;
8761 }
8762
8763 case VMSTATE_SOFT_RESETTING:
8764 case VMSTATE_SOFT_RESETTING_LS:
8765 /* Shouldn't do anything here! */
8766 break;
8767
8768 case VMSTATE_SUSPENDED:
8769 {
8770 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
8771
8772 if (that->mVMStateChangeCallbackDisabled)
8773 break;
8774
8775 switch (that->mMachineState)
8776 {
8777 case MachineState_Teleporting:
8778 that->i_setMachineState(MachineState_TeleportingPausedVM);
8779 break;
8780
8781 case MachineState_LiveSnapshotting:
8782 that->i_setMachineState(MachineState_OnlineSnapshotting);
8783 break;
8784
8785 case MachineState_TeleportingPausedVM:
8786 case MachineState_Saving:
8787 case MachineState_Restoring:
8788 case MachineState_Stopping:
8789 case MachineState_TeleportingIn:
8790 case MachineState_FaultTolerantSyncing:
8791 case MachineState_OnlineSnapshotting:
8792 /* The worker thread handles the transition. */
8793 break;
8794
8795 case MachineState_Running:
8796 that->i_setMachineState(MachineState_Paused);
8797 break;
8798
8799 case MachineState_Paused:
8800 /* Nothing to do. */
8801 break;
8802
8803 default:
8804 AssertMsgFailed(("%s\n", Global::stringifyMachineState(that->mMachineState)));
8805 }
8806 break;
8807 }
8808
8809 case VMSTATE_SUSPENDED_LS:
8810 case VMSTATE_SUSPENDED_EXT_LS:
8811 {
8812 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
8813 if (that->mVMStateChangeCallbackDisabled)
8814 break;
8815 switch (that->mMachineState)
8816 {
8817 case MachineState_Teleporting:
8818 that->i_setMachineState(MachineState_TeleportingPausedVM);
8819 break;
8820
8821 case MachineState_LiveSnapshotting:
8822 that->i_setMachineState(MachineState_OnlineSnapshotting);
8823 break;
8824
8825 case MachineState_TeleportingPausedVM:
8826 case MachineState_Saving:
8827 /* ignore */
8828 break;
8829
8830 default:
8831 AssertMsgFailed(("%s/%s -> %s\n", Global::stringifyMachineState(that->mMachineState),
8832 VMR3GetStateName(enmOldState), VMR3GetStateName(enmState) ));
8833 that->i_setMachineState(MachineState_Paused);
8834 break;
8835 }
8836 break;
8837 }
8838
8839 case VMSTATE_RUNNING:
8840 {
8841 if ( enmOldState == VMSTATE_POWERING_ON
8842 || enmOldState == VMSTATE_RESUMING
8843 || enmOldState == VMSTATE_RUNNING_FT)
8844 {
8845 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
8846
8847 if (that->mVMStateChangeCallbackDisabled)
8848 break;
8849
8850 Assert( ( ( that->mMachineState == MachineState_Starting
8851 || that->mMachineState == MachineState_Paused)
8852 && enmOldState == VMSTATE_POWERING_ON)
8853 || ( ( that->mMachineState == MachineState_Restoring
8854 || that->mMachineState == MachineState_TeleportingIn
8855 || that->mMachineState == MachineState_Paused
8856 || that->mMachineState == MachineState_Saving
8857 )
8858 && enmOldState == VMSTATE_RESUMING)
8859 || ( that->mMachineState == MachineState_FaultTolerantSyncing
8860 && enmOldState == VMSTATE_RUNNING_FT));
8861
8862 that->i_setMachineState(MachineState_Running);
8863 }
8864
8865 break;
8866 }
8867
8868 case VMSTATE_RUNNING_LS:
8869 AssertMsg( that->mMachineState == MachineState_LiveSnapshotting
8870 || that->mMachineState == MachineState_Teleporting,
8871 ("%s/%s -> %s\n", Global::stringifyMachineState(that->mMachineState),
8872 VMR3GetStateName(enmOldState), VMR3GetStateName(enmState) ));
8873 break;
8874
8875 case VMSTATE_RUNNING_FT:
8876 AssertMsg(that->mMachineState == MachineState_FaultTolerantSyncing,
8877 ("%s/%s -> %s\n", Global::stringifyMachineState(that->mMachineState),
8878 VMR3GetStateName(enmOldState), VMR3GetStateName(enmState) ));
8879 break;
8880
8881 case VMSTATE_FATAL_ERROR:
8882 {
8883 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
8884
8885 if (that->mVMStateChangeCallbackDisabled)
8886 break;
8887
8888 /* Fatal errors are only for running VMs. */
8889 Assert(Global::IsOnline(that->mMachineState));
8890
8891 /* Note! 'Pause' is used here in want of something better. There
8892 * are currently only two places where fatal errors might be
8893 * raised, so it is not worth adding a new externally
8894 * visible state for this yet. */
8895 that->i_setMachineState(MachineState_Paused);
8896 break;
8897 }
8898
8899 case VMSTATE_GURU_MEDITATION:
8900 {
8901 AutoWriteLock alock(that COMMA_LOCKVAL_SRC_POS);
8902
8903 if (that->mVMStateChangeCallbackDisabled)
8904 break;
8905
8906 /* Guru are only for running VMs */
8907 Assert(Global::IsOnline(that->mMachineState));
8908
8909 that->i_setMachineState(MachineState_Stuck);
8910 break;
8911 }
8912
8913 case VMSTATE_CREATED:
8914 {
8915 /*
8916 * We have to set the secret key helper interface for the VD drivers to
8917 * get notified about missing keys.
8918 */
8919 that->i_initSecretKeyIfOnAllAttachments();
8920 break;
8921 }
8922
8923 default: /* shut up gcc */
8924 break;
8925 }
8926}
8927
8928/**
8929 * Changes the clipboard mode.
8930 *
8931 * @param aClipboardMode new clipboard mode.
8932 */
8933void Console::i_changeClipboardMode(ClipboardMode_T aClipboardMode)
8934{
8935 VMMDev *pVMMDev = m_pVMMDev;
8936 Assert(pVMMDev);
8937
8938 VBOXHGCMSVCPARM parm;
8939 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
8940
8941 switch (aClipboardMode)
8942 {
8943 default:
8944 case ClipboardMode_Disabled:
8945 LogRel(("Shared clipboard mode: Off\n"));
8946 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_OFF;
8947 break;
8948 case ClipboardMode_GuestToHost:
8949 LogRel(("Shared clipboard mode: Guest to Host\n"));
8950 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_GUEST_TO_HOST;
8951 break;
8952 case ClipboardMode_HostToGuest:
8953 LogRel(("Shared clipboard mode: Host to Guest\n"));
8954 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_HOST_TO_GUEST;
8955 break;
8956 case ClipboardMode_Bidirectional:
8957 LogRel(("Shared clipboard mode: Bidirectional\n"));
8958 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_BIDIRECTIONAL;
8959 break;
8960 }
8961
8962 pVMMDev->hgcmHostCall("VBoxSharedClipboard", VBOX_SHARED_CLIPBOARD_HOST_FN_SET_MODE, 1, &parm);
8963}
8964
8965/**
8966 * Changes the drag and drop mode.
8967 *
8968 * @param aDnDMode new drag and drop mode.
8969 */
8970int Console::i_changeDnDMode(DnDMode_T aDnDMode)
8971{
8972 VMMDev *pVMMDev = m_pVMMDev;
8973 AssertPtrReturn(pVMMDev, VERR_INVALID_POINTER);
8974
8975 VBOXHGCMSVCPARM parm;
8976 RT_ZERO(parm);
8977 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
8978
8979 switch (aDnDMode)
8980 {
8981 default:
8982 case DnDMode_Disabled:
8983 LogRel(("Drag and drop mode: Off\n"));
8984 parm.u.uint32 = VBOX_DRAG_AND_DROP_MODE_OFF;
8985 break;
8986 case DnDMode_GuestToHost:
8987 LogRel(("Drag and drop mode: Guest to Host\n"));
8988 parm.u.uint32 = VBOX_DRAG_AND_DROP_MODE_GUEST_TO_HOST;
8989 break;
8990 case DnDMode_HostToGuest:
8991 LogRel(("Drag and drop mode: Host to Guest\n"));
8992 parm.u.uint32 = VBOX_DRAG_AND_DROP_MODE_HOST_TO_GUEST;
8993 break;
8994 case DnDMode_Bidirectional:
8995 LogRel(("Drag and drop mode: Bidirectional\n"));
8996 parm.u.uint32 = VBOX_DRAG_AND_DROP_MODE_BIDIRECTIONAL;
8997 break;
8998 }
8999
9000 int rc = pVMMDev->hgcmHostCall("VBoxDragAndDropSvc",
9001 DragAndDropSvc::HOST_DND_SET_MODE, 1 /* cParms */, &parm);
9002 if (RT_FAILURE(rc))
9003 LogRel(("Error changing drag and drop mode: %Rrc\n", rc));
9004
9005 return rc;
9006}
9007
9008#ifdef VBOX_WITH_USB
9009/**
9010 * Sends a request to VMM to attach the given host device.
9011 * After this method succeeds, the attached device will appear in the
9012 * mUSBDevices collection.
9013 *
9014 * @param aHostDevice device to attach
9015 *
9016 * @note Synchronously calls EMT.
9017 */
9018HRESULT Console::i_attachUSBDevice(IUSBDevice *aHostDevice, ULONG aMaskedIfs,
9019 const Utf8Str &aCaptureFilename)
9020{
9021 AssertReturn(aHostDevice, E_FAIL);
9022 AssertReturn(!isWriteLockOnCurrentThread(), E_FAIL);
9023
9024 HRESULT hrc;
9025
9026 /*
9027 * Get the address and the Uuid, and call the pfnCreateProxyDevice roothub
9028 * method in EMT (using usbAttachCallback()).
9029 */
9030 Bstr BstrAddress;
9031 hrc = aHostDevice->COMGETTER(Address)(BstrAddress.asOutParam());
9032 ComAssertComRCRetRC(hrc);
9033
9034 Utf8Str Address(BstrAddress);
9035
9036 Bstr id;
9037 hrc = aHostDevice->COMGETTER(Id)(id.asOutParam());
9038 ComAssertComRCRetRC(hrc);
9039 Guid uuid(id);
9040
9041 BOOL fRemote = FALSE;
9042 hrc = aHostDevice->COMGETTER(Remote)(&fRemote);
9043 ComAssertComRCRetRC(hrc);
9044
9045 Bstr BstrBackend;
9046 hrc = aHostDevice->COMGETTER(Backend)(BstrBackend.asOutParam());
9047 ComAssertComRCRetRC(hrc);
9048
9049 Utf8Str Backend(BstrBackend);
9050
9051 /* Get the VM handle. */
9052 SafeVMPtr ptrVM(this);
9053 if (!ptrVM.isOk())
9054 return ptrVM.rc();
9055
9056 LogFlowThisFunc(("Proxying USB device '%s' {%RTuuid}...\n",
9057 Address.c_str(), uuid.raw()));
9058
9059 void *pvRemoteBackend = NULL;
9060 if (fRemote)
9061 {
9062 RemoteUSBDevice *pRemoteUSBDevice = static_cast<RemoteUSBDevice *>(aHostDevice);
9063 pvRemoteBackend = i_consoleVRDPServer()->USBBackendRequestPointer(pRemoteUSBDevice->clientId(), &uuid);
9064 if (!pvRemoteBackend)
9065 return E_INVALIDARG; /* The clientId is invalid then. */
9066 }
9067
9068 USBConnectionSpeed_T enmSpeed;
9069 hrc = aHostDevice->COMGETTER(Speed)(&enmSpeed);
9070 AssertComRCReturnRC(hrc);
9071
9072 int vrc = VMR3ReqCallWaitU(ptrVM.rawUVM(), 0 /* idDstCpu (saved state, see #6232) */,
9073 (PFNRT)i_usbAttachCallback, 10,
9074 this, ptrVM.rawUVM(), aHostDevice, uuid.raw(), Backend.c_str(),
9075 Address.c_str(), pvRemoteBackend, enmSpeed, aMaskedIfs,
9076 aCaptureFilename.isEmpty() ? NULL : aCaptureFilename.c_str());
9077 if (RT_SUCCESS(vrc))
9078 {
9079 /* Create a OUSBDevice and add it to the device list */
9080 ComObjPtr<OUSBDevice> pUSBDevice;
9081 pUSBDevice.createObject();
9082 hrc = pUSBDevice->init(aHostDevice);
9083 AssertComRC(hrc);
9084
9085 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
9086 mUSBDevices.push_back(pUSBDevice);
9087 LogFlowFunc(("Attached device {%RTuuid}\n", pUSBDevice->i_id().raw()));
9088
9089 /* notify callbacks */
9090 alock.release();
9091 i_onUSBDeviceStateChange(pUSBDevice, true /* aAttached */, NULL);
9092 }
9093 else
9094 {
9095 Log1WarningThisFunc(("Failed to create proxy device for '%s' {%RTuuid} (%Rrc)\n", Address.c_str(), uuid.raw(), vrc));
9096
9097 switch (vrc)
9098 {
9099 case VERR_VUSB_NO_PORTS:
9100 hrc = setError(E_FAIL, tr("Failed to attach the USB device. (No available ports on the USB controller)."));
9101 break;
9102 case VERR_VUSB_USBFS_PERMISSION:
9103 hrc = setError(E_FAIL, tr("Not permitted to open the USB device, check usbfs options"));
9104 break;
9105 default:
9106 hrc = setError(E_FAIL, tr("Failed to create a proxy device for the USB device. (Error: %Rrc)"), vrc);
9107 break;
9108 }
9109 }
9110
9111 return hrc;
9112}
9113
9114/**
9115 * USB device attach callback used by AttachUSBDevice().
9116 * Note that AttachUSBDevice() doesn't return until this callback is executed,
9117 * so we don't use AutoCaller and don't care about reference counters of
9118 * interface pointers passed in.
9119 *
9120 * @thread EMT
9121 * @note Locks the console object for writing.
9122 */
9123//static
9124DECLCALLBACK(int)
9125Console::i_usbAttachCallback(Console *that, PUVM pUVM, IUSBDevice *aHostDevice, PCRTUUID aUuid, const char *pszBackend,
9126 const char *aAddress, void *pvRemoteBackend, USBConnectionSpeed_T aEnmSpeed, ULONG aMaskedIfs,
9127 const char *pszCaptureFilename)
9128{
9129 RT_NOREF(aHostDevice);
9130 LogFlowFuncEnter();
9131 LogFlowFunc(("that={%p} aUuid={%RTuuid}\n", that, aUuid));
9132
9133 AssertReturn(that && aUuid, VERR_INVALID_PARAMETER);
9134 AssertReturn(!that->isWriteLockOnCurrentThread(), VERR_GENERAL_FAILURE);
9135
9136 VUSBSPEED enmSpeed = VUSB_SPEED_UNKNOWN;
9137 switch (aEnmSpeed)
9138 {
9139 case USBConnectionSpeed_Low: enmSpeed = VUSB_SPEED_LOW; break;
9140 case USBConnectionSpeed_Full: enmSpeed = VUSB_SPEED_FULL; break;
9141 case USBConnectionSpeed_High: enmSpeed = VUSB_SPEED_HIGH; break;
9142 case USBConnectionSpeed_Super: enmSpeed = VUSB_SPEED_SUPER; break;
9143 case USBConnectionSpeed_SuperPlus: enmSpeed = VUSB_SPEED_SUPERPLUS; break;
9144 default: AssertFailed(); break;
9145 }
9146
9147 int vrc = PDMR3UsbCreateProxyDevice(pUVM, aUuid, pszBackend, aAddress, pvRemoteBackend,
9148 enmSpeed, aMaskedIfs, pszCaptureFilename);
9149 LogFlowFunc(("vrc=%Rrc\n", vrc));
9150 LogFlowFuncLeave();
9151 return vrc;
9152}
9153
9154/**
9155 * Sends a request to VMM to detach the given host device. After this method
9156 * succeeds, the detached device will disappear from the mUSBDevices
9157 * collection.
9158 *
9159 * @param aHostDevice device to attach
9160 *
9161 * @note Synchronously calls EMT.
9162 */
9163HRESULT Console::i_detachUSBDevice(const ComObjPtr<OUSBDevice> &aHostDevice)
9164{
9165 AssertReturn(!isWriteLockOnCurrentThread(), E_FAIL);
9166
9167 /* Get the VM handle. */
9168 SafeVMPtr ptrVM(this);
9169 if (!ptrVM.isOk())
9170 return ptrVM.rc();
9171
9172 /* if the device is attached, then there must at least one USB hub. */
9173 AssertReturn(PDMR3UsbHasHub(ptrVM.rawUVM()), E_FAIL);
9174
9175 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
9176 LogFlowThisFunc(("Detaching USB proxy device {%RTuuid}...\n",
9177 aHostDevice->i_id().raw()));
9178
9179 /*
9180 * If this was a remote device, release the backend pointer.
9181 * The pointer was requested in usbAttachCallback.
9182 */
9183 BOOL fRemote = FALSE;
9184
9185 HRESULT hrc2 = aHostDevice->COMGETTER(Remote)(&fRemote);
9186 if (FAILED(hrc2))
9187 i_setErrorStatic(hrc2, "GetRemote() failed");
9188
9189 PCRTUUID pUuid = aHostDevice->i_id().raw();
9190 if (fRemote)
9191 {
9192 Guid guid(*pUuid);
9193 i_consoleVRDPServer()->USBBackendReleasePointer(&guid);
9194 }
9195
9196 alock.release();
9197 int vrc = VMR3ReqCallWaitU(ptrVM.rawUVM(), 0 /* idDstCpu (saved state, see #6232) */,
9198 (PFNRT)i_usbDetachCallback, 5,
9199 this, ptrVM.rawUVM(), pUuid);
9200 if (RT_SUCCESS(vrc))
9201 {
9202 LogFlowFunc(("Detached device {%RTuuid}\n", pUuid));
9203
9204 /* notify callbacks */
9205 i_onUSBDeviceStateChange(aHostDevice, false /* aAttached */, NULL);
9206 }
9207
9208 ComAssertRCRet(vrc, E_FAIL);
9209
9210 return S_OK;
9211}
9212
9213/**
9214 * USB device detach callback used by DetachUSBDevice().
9215 *
9216 * Note that DetachUSBDevice() doesn't return until this callback is executed,
9217 * so we don't use AutoCaller and don't care about reference counters of
9218 * interface pointers passed in.
9219 *
9220 * @thread EMT
9221 */
9222//static
9223DECLCALLBACK(int)
9224Console::i_usbDetachCallback(Console *that, PUVM pUVM, PCRTUUID aUuid)
9225{
9226 LogFlowFuncEnter();
9227 LogFlowFunc(("that={%p} aUuid={%RTuuid}\n", that, aUuid));
9228
9229 AssertReturn(that && aUuid, VERR_INVALID_PARAMETER);
9230 AssertReturn(!that->isWriteLockOnCurrentThread(), VERR_GENERAL_FAILURE);
9231
9232 int vrc = PDMR3UsbDetachDevice(pUVM, aUuid);
9233
9234 LogFlowFunc(("vrc=%Rrc\n", vrc));
9235 LogFlowFuncLeave();
9236 return vrc;
9237}
9238#endif /* VBOX_WITH_USB */
9239
9240/* Note: FreeBSD needs this whether netflt is used or not. */
9241#if ((defined(RT_OS_LINUX) && !defined(VBOX_WITH_NETFLT)) || defined(RT_OS_FREEBSD))
9242/**
9243 * Helper function to handle host interface device creation and attachment.
9244 *
9245 * @param networkAdapter the network adapter which attachment should be reset
9246 * @return COM status code
9247 *
9248 * @note The caller must lock this object for writing.
9249 *
9250 * @todo Move this back into the driver!
9251 */
9252HRESULT Console::i_attachToTapInterface(INetworkAdapter *networkAdapter)
9253{
9254 LogFlowThisFunc(("\n"));
9255 /* sanity check */
9256 AssertReturn(isWriteLockOnCurrentThread(), E_FAIL);
9257
9258# ifdef VBOX_STRICT
9259 /* paranoia */
9260 NetworkAttachmentType_T attachment;
9261 networkAdapter->COMGETTER(AttachmentType)(&attachment);
9262 Assert(attachment == NetworkAttachmentType_Bridged);
9263# endif /* VBOX_STRICT */
9264
9265 HRESULT rc = S_OK;
9266
9267 ULONG slot = 0;
9268 rc = networkAdapter->COMGETTER(Slot)(&slot);
9269 AssertComRC(rc);
9270
9271# ifdef RT_OS_LINUX
9272 /*
9273 * Allocate a host interface device
9274 */
9275 int rcVBox = RTFileOpen(&maTapFD[slot], "/dev/net/tun",
9276 RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE | RTFILE_O_INHERIT);
9277 if (RT_SUCCESS(rcVBox))
9278 {
9279 /*
9280 * Set/obtain the tap interface.
9281 */
9282 struct ifreq IfReq;
9283 RT_ZERO(IfReq);
9284 /* The name of the TAP interface we are using */
9285 Bstr tapDeviceName;
9286 rc = networkAdapter->COMGETTER(BridgedInterface)(tapDeviceName.asOutParam());
9287 if (FAILED(rc))
9288 tapDeviceName.setNull(); /* Is this necessary? */
9289 if (tapDeviceName.isEmpty())
9290 {
9291 LogRel(("No TAP device name was supplied.\n"));
9292 rc = setError(E_FAIL, tr("No TAP device name was supplied for the host networking interface"));
9293 }
9294
9295 if (SUCCEEDED(rc))
9296 {
9297 /* If we are using a static TAP device then try to open it. */
9298 Utf8Str str(tapDeviceName);
9299 RTStrCopy(IfReq.ifr_name, sizeof(IfReq.ifr_name), str.c_str()); /** @todo bitch about names which are too long... */
9300 IfReq.ifr_flags = IFF_TAP | IFF_NO_PI;
9301 rcVBox = ioctl(RTFileToNative(maTapFD[slot]), TUNSETIFF, &IfReq);
9302 if (rcVBox != 0)
9303 {
9304 LogRel(("Failed to open the host network interface %ls\n", tapDeviceName.raw()));
9305 rc = setError(E_FAIL,
9306 tr("Failed to open the host network interface %ls"),
9307 tapDeviceName.raw());
9308 }
9309 }
9310 if (SUCCEEDED(rc))
9311 {
9312 /*
9313 * Make it pollable.
9314 */
9315 if (fcntl(RTFileToNative(maTapFD[slot]), F_SETFL, O_NONBLOCK) != -1)
9316 {
9317 Log(("i_attachToTapInterface: %RTfile %ls\n", maTapFD[slot], tapDeviceName.raw()));
9318 /*
9319 * Here is the right place to communicate the TAP file descriptor and
9320 * the host interface name to the server if/when it becomes really
9321 * necessary.
9322 */
9323 maTAPDeviceName[slot] = tapDeviceName;
9324 rcVBox = VINF_SUCCESS;
9325 }
9326 else
9327 {
9328 int iErr = errno;
9329
9330 LogRel(("Configuration error: Failed to configure /dev/net/tun non blocking. Error: %s\n", strerror(iErr)));
9331 rcVBox = VERR_HOSTIF_BLOCKING;
9332 rc = setError(E_FAIL,
9333 tr("could not set up the host networking device for non blocking access: %s"),
9334 strerror(errno));
9335 }
9336 }
9337 }
9338 else
9339 {
9340 LogRel(("Configuration error: Failed to open /dev/net/tun rc=%Rrc\n", rcVBox));
9341 switch (rcVBox)
9342 {
9343 case VERR_ACCESS_DENIED:
9344 /* will be handled by our caller */
9345 rc = rcVBox;
9346 break;
9347 default:
9348 rc = setError(E_FAIL,
9349 tr("Could not set up the host networking device: %Rrc"),
9350 rcVBox);
9351 break;
9352 }
9353 }
9354
9355# elif defined(RT_OS_FREEBSD)
9356 /*
9357 * Set/obtain the tap interface.
9358 */
9359 /* The name of the TAP interface we are using */
9360 Bstr tapDeviceName;
9361 rc = networkAdapter->COMGETTER(BridgedInterface)(tapDeviceName.asOutParam());
9362 if (FAILED(rc))
9363 tapDeviceName.setNull(); /* Is this necessary? */
9364 if (tapDeviceName.isEmpty())
9365 {
9366 LogRel(("No TAP device name was supplied.\n"));
9367 rc = setError(E_FAIL, tr("No TAP device name was supplied for the host networking interface"));
9368 }
9369 char szTapdev[1024] = "/dev/";
9370 /* If we are using a static TAP device then try to open it. */
9371 Utf8Str str(tapDeviceName);
9372 if (str.length() + strlen(szTapdev) <= sizeof(szTapdev))
9373 strcat(szTapdev, str.c_str());
9374 else
9375 memcpy(szTapdev + strlen(szTapdev), str.c_str(),
9376 sizeof(szTapdev) - strlen(szTapdev) - 1); /** @todo bitch about names which are too long... */
9377 int rcVBox = RTFileOpen(&maTapFD[slot], szTapdev,
9378 RTFILE_O_READWRITE | RTFILE_O_OPEN | RTFILE_O_DENY_NONE | RTFILE_O_INHERIT | RTFILE_O_NON_BLOCK);
9379
9380 if (RT_SUCCESS(rcVBox))
9381 maTAPDeviceName[slot] = tapDeviceName;
9382 else
9383 {
9384 switch (rcVBox)
9385 {
9386 case VERR_ACCESS_DENIED:
9387 /* will be handled by our caller */
9388 rc = rcVBox;
9389 break;
9390 default:
9391 rc = setError(E_FAIL,
9392 tr("Failed to open the host network interface %ls"),
9393 tapDeviceName.raw());
9394 break;
9395 }
9396 }
9397# else
9398# error "huh?"
9399# endif
9400 /* in case of failure, cleanup. */
9401 if (RT_FAILURE(rcVBox) && SUCCEEDED(rc))
9402 {
9403 LogRel(("General failure attaching to host interface\n"));
9404 rc = setError(E_FAIL,
9405 tr("General failure attaching to host interface"));
9406 }
9407 LogFlowThisFunc(("rc=%Rhrc\n", rc));
9408 return rc;
9409}
9410
9411
9412/**
9413 * Helper function to handle detachment from a host interface
9414 *
9415 * @param networkAdapter the network adapter which attachment should be reset
9416 * @return COM status code
9417 *
9418 * @note The caller must lock this object for writing.
9419 *
9420 * @todo Move this back into the driver!
9421 */
9422HRESULT Console::i_detachFromTapInterface(INetworkAdapter *networkAdapter)
9423{
9424 /* sanity check */
9425 LogFlowThisFunc(("\n"));
9426 AssertReturn(isWriteLockOnCurrentThread(), E_FAIL);
9427
9428 HRESULT rc = S_OK;
9429# ifdef VBOX_STRICT
9430 /* paranoia */
9431 NetworkAttachmentType_T attachment;
9432 networkAdapter->COMGETTER(AttachmentType)(&attachment);
9433 Assert(attachment == NetworkAttachmentType_Bridged);
9434# endif /* VBOX_STRICT */
9435
9436 ULONG slot = 0;
9437 rc = networkAdapter->COMGETTER(Slot)(&slot);
9438 AssertComRC(rc);
9439
9440 /* is there an open TAP device? */
9441 if (maTapFD[slot] != NIL_RTFILE)
9442 {
9443 /*
9444 * Close the file handle.
9445 */
9446 Bstr tapDeviceName, tapTerminateApplication;
9447 bool isStatic = true;
9448 rc = networkAdapter->COMGETTER(BridgedInterface)(tapDeviceName.asOutParam());
9449 if (FAILED(rc) || tapDeviceName.isEmpty())
9450 {
9451 /* If the name is empty, this is a dynamic TAP device, so close it now,
9452 so that the termination script can remove the interface. Otherwise we still
9453 need the FD to pass to the termination script. */
9454 isStatic = false;
9455 int rcVBox = RTFileClose(maTapFD[slot]);
9456 AssertRC(rcVBox);
9457 maTapFD[slot] = NIL_RTFILE;
9458 }
9459 if (isStatic)
9460 {
9461 /* If we are using a static TAP device, we close it now, after having called the
9462 termination script. */
9463 int rcVBox = RTFileClose(maTapFD[slot]);
9464 AssertRC(rcVBox);
9465 }
9466 /* the TAP device name and handle are no longer valid */
9467 maTapFD[slot] = NIL_RTFILE;
9468 maTAPDeviceName[slot] = "";
9469 }
9470 LogFlowThisFunc(("returning %d\n", rc));
9471 return rc;
9472}
9473#endif /* (RT_OS_LINUX || RT_OS_FREEBSD) && !VBOX_WITH_NETFLT */
9474
9475/**
9476 * Called at power down to terminate host interface networking.
9477 *
9478 * @note The caller must lock this object for writing.
9479 */
9480HRESULT Console::i_powerDownHostInterfaces()
9481{
9482 LogFlowThisFunc(("\n"));
9483
9484 /* sanity check */
9485 AssertReturn(isWriteLockOnCurrentThread(), E_FAIL);
9486
9487 /*
9488 * host interface termination handling
9489 */
9490 HRESULT rc = S_OK;
9491 ComPtr<IVirtualBox> pVirtualBox;
9492 mMachine->COMGETTER(Parent)(pVirtualBox.asOutParam());
9493 ComPtr<ISystemProperties> pSystemProperties;
9494 if (pVirtualBox)
9495 pVirtualBox->COMGETTER(SystemProperties)(pSystemProperties.asOutParam());
9496 ChipsetType_T chipsetType = ChipsetType_PIIX3;
9497 mMachine->COMGETTER(ChipsetType)(&chipsetType);
9498 ULONG maxNetworkAdapters = 0;
9499 if (pSystemProperties)
9500 pSystemProperties->GetMaxNetworkAdapters(chipsetType, &maxNetworkAdapters);
9501
9502 for (ULONG slot = 0; slot < maxNetworkAdapters; slot++)
9503 {
9504 ComPtr<INetworkAdapter> pNetworkAdapter;
9505 rc = mMachine->GetNetworkAdapter(slot, pNetworkAdapter.asOutParam());
9506 if (FAILED(rc)) break;
9507
9508 BOOL enabled = FALSE;
9509 pNetworkAdapter->COMGETTER(Enabled)(&enabled);
9510 if (!enabled)
9511 continue;
9512
9513 NetworkAttachmentType_T attachment;
9514 pNetworkAdapter->COMGETTER(AttachmentType)(&attachment);
9515 if (attachment == NetworkAttachmentType_Bridged)
9516 {
9517#if ((defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)) && !defined(VBOX_WITH_NETFLT))
9518 HRESULT rc2 = i_detachFromTapInterface(pNetworkAdapter);
9519 if (FAILED(rc2) && SUCCEEDED(rc))
9520 rc = rc2;
9521#endif /* (RT_OS_LINUX || RT_OS_FREEBSD) && !VBOX_WITH_NETFLT */
9522 }
9523 }
9524
9525 return rc;
9526}
9527
9528
9529/**
9530 * Process callback handler for VMR3LoadFromFile, VMR3LoadFromStream, VMR3Save
9531 * and VMR3Teleport.
9532 *
9533 * @param pUVM The user mode VM handle.
9534 * @param uPercent Completion percentage (0-100).
9535 * @param pvUser Pointer to an IProgress instance.
9536 * @return VINF_SUCCESS.
9537 */
9538/*static*/
9539DECLCALLBACK(int) Console::i_stateProgressCallback(PUVM pUVM, unsigned uPercent, void *pvUser)
9540{
9541 IProgress *pProgress = static_cast<IProgress *>(pvUser);
9542
9543 /* update the progress object */
9544 if (pProgress)
9545 pProgress->SetCurrentOperationProgress(uPercent);
9546
9547 NOREF(pUVM);
9548 return VINF_SUCCESS;
9549}
9550
9551/**
9552 * @copydoc FNVMATERROR
9553 *
9554 * @remarks Might be some tiny serialization concerns with access to the string
9555 * object here...
9556 */
9557/*static*/ DECLCALLBACK(void)
9558Console::i_genericVMSetErrorCallback(PUVM pUVM, void *pvUser, int rc, RT_SRC_POS_DECL,
9559 const char *pszFormat, va_list args)
9560{
9561 RT_SRC_POS_NOREF();
9562 Utf8Str *pErrorText = (Utf8Str *)pvUser;
9563 AssertPtr(pErrorText);
9564
9565 /* We ignore RT_SRC_POS_DECL arguments to avoid confusion of end-users. */
9566 va_list va2;
9567 va_copy(va2, args);
9568
9569 /* Append to any the existing error message. */
9570 if (pErrorText->length())
9571 *pErrorText = Utf8StrFmt("%s.\n%N (%Rrc)", pErrorText->c_str(),
9572 pszFormat, &va2, rc, rc);
9573 else
9574 *pErrorText = Utf8StrFmt("%N (%Rrc)", pszFormat, &va2, rc, rc);
9575
9576 va_end(va2);
9577
9578 NOREF(pUVM);
9579}
9580
9581/**
9582 * VM runtime error callback function (FNVMATRUNTIMEERROR).
9583 *
9584 * See VMSetRuntimeError for the detailed description of parameters.
9585 *
9586 * @param pUVM The user mode VM handle. Ignored, so passing NULL
9587 * is fine.
9588 * @param pvUser The user argument, pointer to the Console instance.
9589 * @param fFlags The action flags. See VMSETRTERR_FLAGS_*.
9590 * @param pszErrorId Error ID string.
9591 * @param pszFormat Error message format string.
9592 * @param va Error message arguments.
9593 * @thread EMT.
9594 */
9595/* static */ DECLCALLBACK(void)
9596Console::i_atVMRuntimeErrorCallback(PUVM pUVM, void *pvUser, uint32_t fFlags,
9597 const char *pszErrorId, const char *pszFormat, va_list va)
9598{
9599 bool const fFatal = !!(fFlags & VMSETRTERR_FLAGS_FATAL);
9600 LogFlowFuncEnter();
9601
9602 Console *that = static_cast<Console *>(pvUser);
9603 AssertReturnVoid(that);
9604
9605 Utf8Str message(pszFormat, va);
9606
9607 LogRel(("Console: VM runtime error: fatal=%RTbool, errorID=%s message=\"%s\"\n",
9608 fFatal, pszErrorId, message.c_str()));
9609
9610 that->i_onRuntimeError(BOOL(fFatal), Bstr(pszErrorId).raw(), Bstr(message).raw());
9611
9612 LogFlowFuncLeave(); NOREF(pUVM);
9613}
9614
9615/**
9616 * Captures USB devices that match filters of the VM.
9617 * Called at VM startup.
9618 *
9619 * @param pUVM The VM handle.
9620 */
9621HRESULT Console::i_captureUSBDevices(PUVM pUVM)
9622{
9623 RT_NOREF(pUVM);
9624 LogFlowThisFunc(("\n"));
9625
9626 /* sanity check */
9627 AssertReturn(!isWriteLockOnCurrentThread(), E_FAIL);
9628 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
9629
9630 /* If the machine has a USB controller, ask the USB proxy service to
9631 * capture devices */
9632 if (mfVMHasUsbController)
9633 {
9634 /* release the lock before calling Host in VBoxSVC since Host may call
9635 * us back from under its lock (e.g. onUSBDeviceAttach()) which would
9636 * produce an inter-process dead-lock otherwise. */
9637 alock.release();
9638
9639 HRESULT hrc = mControl->AutoCaptureUSBDevices();
9640 ComAssertComRCRetRC(hrc);
9641 }
9642
9643 return S_OK;
9644}
9645
9646
9647/**
9648 * Detach all USB device which are attached to the VM for the
9649 * purpose of clean up and such like.
9650 */
9651void Console::i_detachAllUSBDevices(bool aDone)
9652{
9653 LogFlowThisFunc(("aDone=%RTbool\n", aDone));
9654
9655 /* sanity check */
9656 AssertReturnVoid(!isWriteLockOnCurrentThread());
9657 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
9658
9659 mUSBDevices.clear();
9660
9661 /* release the lock before calling Host in VBoxSVC since Host may call
9662 * us back from under its lock (e.g. onUSBDeviceAttach()) which would
9663 * produce an inter-process dead-lock otherwise. */
9664 alock.release();
9665
9666 mControl->DetachAllUSBDevices(aDone);
9667}
9668
9669/**
9670 * @note Locks this object for writing.
9671 */
9672void Console::i_processRemoteUSBDevices(uint32_t u32ClientId, VRDEUSBDEVICEDESC *pDevList, uint32_t cbDevList, bool fDescExt)
9673{
9674 LogFlowThisFuncEnter();
9675 LogFlowThisFunc(("u32ClientId = %d, pDevList=%p, cbDevList = %d, fDescExt = %d\n",
9676 u32ClientId, pDevList, cbDevList, fDescExt));
9677
9678 AutoCaller autoCaller(this);
9679 if (!autoCaller.isOk())
9680 {
9681 /* Console has been already uninitialized, deny request */
9682 AssertMsgFailed(("Console is already uninitialized\n"));
9683 LogFlowThisFunc(("Console is already uninitialized\n"));
9684 LogFlowThisFuncLeave();
9685 return;
9686 }
9687
9688 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
9689
9690 /*
9691 * Mark all existing remote USB devices as dirty.
9692 */
9693 for (RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
9694 it != mRemoteUSBDevices.end();
9695 ++it)
9696 {
9697 (*it)->dirty(true);
9698 }
9699
9700 /*
9701 * Process the pDevList and add devices those are not already in the mRemoteUSBDevices list.
9702 */
9703 /** @todo (sunlover) REMOTE_USB Strict validation of the pDevList. */
9704 VRDEUSBDEVICEDESC *e = pDevList;
9705
9706 /* The cbDevList condition must be checked first, because the function can
9707 * receive pDevList = NULL and cbDevList = 0 on client disconnect.
9708 */
9709 while (cbDevList >= 2 && e->oNext)
9710 {
9711 /* Sanitize incoming strings in case they aren't valid UTF-8. */
9712 if (e->oManufacturer)
9713 RTStrPurgeEncoding((char *)e + e->oManufacturer);
9714 if (e->oProduct)
9715 RTStrPurgeEncoding((char *)e + e->oProduct);
9716 if (e->oSerialNumber)
9717 RTStrPurgeEncoding((char *)e + e->oSerialNumber);
9718
9719 LogFlowThisFunc(("vendor %04X, product %04X, name = %s\n",
9720 e->idVendor, e->idProduct,
9721 e->oProduct? (char *)e + e->oProduct: ""));
9722
9723 bool fNewDevice = true;
9724
9725 for (RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
9726 it != mRemoteUSBDevices.end();
9727 ++it)
9728 {
9729 if ((*it)->devId() == e->id
9730 && (*it)->clientId() == u32ClientId)
9731 {
9732 /* The device is already in the list. */
9733 (*it)->dirty(false);
9734 fNewDevice = false;
9735 break;
9736 }
9737 }
9738
9739 if (fNewDevice)
9740 {
9741 LogRel(("Remote USB: ++++ Vendor %04X. Product %04X. Name = [%s].\n",
9742 e->idVendor, e->idProduct, e->oProduct? (char *)e + e->oProduct: ""));
9743
9744 /* Create the device object and add the new device to list. */
9745 ComObjPtr<RemoteUSBDevice> pUSBDevice;
9746 pUSBDevice.createObject();
9747 pUSBDevice->init(u32ClientId, e, fDescExt);
9748
9749 mRemoteUSBDevices.push_back(pUSBDevice);
9750
9751 /* Check if the device is ok for current USB filters. */
9752 BOOL fMatched = FALSE;
9753 ULONG fMaskedIfs = 0;
9754
9755 HRESULT hrc = mControl->RunUSBDeviceFilters(pUSBDevice, &fMatched, &fMaskedIfs);
9756
9757 AssertComRC(hrc);
9758
9759 LogFlowThisFunc(("USB filters return %d %#x\n", fMatched, fMaskedIfs));
9760
9761 if (fMatched)
9762 {
9763 alock.release();
9764 hrc = i_onUSBDeviceAttach(pUSBDevice, NULL, fMaskedIfs, Utf8Str());
9765 alock.acquire();
9766
9767 /// @todo (r=dmik) warning reporting subsystem
9768
9769 if (hrc == S_OK)
9770 {
9771 LogFlowThisFunc(("Device attached\n"));
9772 pUSBDevice->captured(true);
9773 }
9774 }
9775 }
9776
9777 if (cbDevList < e->oNext)
9778 {
9779 Log1WarningThisFunc(("cbDevList %d > oNext %d\n", cbDevList, e->oNext));
9780 break;
9781 }
9782
9783 cbDevList -= e->oNext;
9784
9785 e = (VRDEUSBDEVICEDESC *)((uint8_t *)e + e->oNext);
9786 }
9787
9788 /*
9789 * Remove dirty devices, that is those which are not reported by the server anymore.
9790 */
9791 for (;;)
9792 {
9793 ComObjPtr<RemoteUSBDevice> pUSBDevice;
9794
9795 RemoteUSBDeviceList::iterator it = mRemoteUSBDevices.begin();
9796 while (it != mRemoteUSBDevices.end())
9797 {
9798 if ((*it)->dirty())
9799 {
9800 pUSBDevice = *it;
9801 break;
9802 }
9803
9804 ++it;
9805 }
9806
9807 if (!pUSBDevice)
9808 {
9809 break;
9810 }
9811
9812 USHORT vendorId = 0;
9813 pUSBDevice->COMGETTER(VendorId)(&vendorId);
9814
9815 USHORT productId = 0;
9816 pUSBDevice->COMGETTER(ProductId)(&productId);
9817
9818 Bstr product;
9819 pUSBDevice->COMGETTER(Product)(product.asOutParam());
9820
9821 LogRel(("Remote USB: ---- Vendor %04X. Product %04X. Name = [%ls].\n",
9822 vendorId, productId, product.raw()));
9823
9824 /* Detach the device from VM. */
9825 if (pUSBDevice->captured())
9826 {
9827 Bstr uuid;
9828 pUSBDevice->COMGETTER(Id)(uuid.asOutParam());
9829 alock.release();
9830 i_onUSBDeviceDetach(uuid.raw(), NULL);
9831 alock.acquire();
9832 }
9833
9834 /* And remove it from the list. */
9835 mRemoteUSBDevices.erase(it);
9836 }
9837
9838 LogFlowThisFuncLeave();
9839}
9840
9841/**
9842 * Progress cancelation callback for fault tolerance VM poweron
9843 */
9844static void faultToleranceProgressCancelCallback(void *pvUser)
9845{
9846 PUVM pUVM = (PUVM)pvUser;
9847
9848 if (pUVM)
9849 FTMR3CancelStandby(pUVM);
9850}
9851
9852/**
9853 * Worker called by VMPowerUpTask::handler to start the VM (also from saved
9854 * state) and track progress.
9855 *
9856 * @param pTask The power up task.
9857 *
9858 * @note Locks the Console object for writing.
9859 */
9860/*static*/
9861void Console::i_powerUpThreadTask(VMPowerUpTask *pTask)
9862{
9863 LogFlowFuncEnter();
9864
9865 AssertReturnVoid(pTask);
9866 AssertReturnVoid(!pTask->mConsole.isNull());
9867 AssertReturnVoid(!pTask->mProgress.isNull());
9868
9869 VirtualBoxBase::initializeComForThread();
9870
9871 HRESULT rc = S_OK;
9872 int vrc = VINF_SUCCESS;
9873
9874 /* Set up a build identifier so that it can be seen from core dumps what
9875 * exact build was used to produce the core. */
9876 static char saBuildID[48];
9877 RTStrPrintf(saBuildID, sizeof(saBuildID), "%s%s%s%s VirtualBox %s r%u %s%s%s%s",
9878 "BU", "IL", "DI", "D", RTBldCfgVersion(), RTBldCfgRevision(), "BU", "IL", "DI", "D");
9879
9880 ComObjPtr<Console> pConsole = pTask->mConsole;
9881
9882 /* Note: no need to use AutoCaller because VMPowerUpTask does that */
9883
9884 /* The lock is also used as a signal from the task initiator (which
9885 * releases it only after RTThreadCreate()) that we can start the job */
9886 AutoWriteLock alock(pConsole COMMA_LOCKVAL_SRC_POS);
9887
9888 /* sanity */
9889 Assert(pConsole->mpUVM == NULL);
9890
9891 try
9892 {
9893 // Create the VMM device object, which starts the HGCM thread; do this only
9894 // once for the console, for the pathological case that the same console
9895 // object is used to power up a VM twice.
9896 if (!pConsole->m_pVMMDev)
9897 {
9898 pConsole->m_pVMMDev = new VMMDev(pConsole);
9899 AssertReturnVoid(pConsole->m_pVMMDev);
9900 }
9901
9902 /* wait for auto reset ops to complete so that we can successfully lock
9903 * the attached hard disks by calling LockMedia() below */
9904 for (VMPowerUpTask::ProgressList::const_iterator
9905 it = pTask->hardDiskProgresses.begin();
9906 it != pTask->hardDiskProgresses.end(); ++it)
9907 {
9908 HRESULT rc2 = (*it)->WaitForCompletion(-1);
9909 AssertComRC(rc2);
9910
9911 rc = pTask->mProgress->SetNextOperation(BstrFmt(tr("Disk Image Reset Operation - Immutable Image")).raw(), 1);
9912 AssertComRCReturnVoid(rc);
9913 }
9914
9915 /*
9916 * Lock attached media. This method will also check their accessibility.
9917 * If we're a teleporter, we'll have to postpone this action so we can
9918 * migrate between local processes.
9919 *
9920 * Note! The media will be unlocked automatically by
9921 * SessionMachine::i_setMachineState() when the VM is powered down.
9922 */
9923 if ( !pTask->mTeleporterEnabled
9924 && pTask->mEnmFaultToleranceState != FaultToleranceState_Standby)
9925 {
9926 rc = pConsole->mControl->LockMedia();
9927 if (FAILED(rc)) throw rc;
9928 }
9929
9930 /* Create the VRDP server. In case of headless operation, this will
9931 * also create the framebuffer, required at VM creation.
9932 */
9933 ConsoleVRDPServer *server = pConsole->i_consoleVRDPServer();
9934 Assert(server);
9935
9936 /* Does VRDP server call Console from the other thread?
9937 * Not sure (and can change), so release the lock just in case.
9938 */
9939 alock.release();
9940 vrc = server->Launch();
9941 alock.acquire();
9942
9943 if (vrc != VINF_SUCCESS)
9944 {
9945 Utf8Str errMsg = pConsole->VRDPServerErrorToMsg(vrc);
9946 if ( RT_FAILURE(vrc)
9947 && vrc != VERR_NET_ADDRESS_IN_USE) /* not fatal */
9948 throw i_setErrorStatic(E_FAIL, errMsg.c_str());
9949 }
9950
9951 ComPtr<IMachine> pMachine = pConsole->i_machine();
9952 ULONG cCpus = 1;
9953 pMachine->COMGETTER(CPUCount)(&cCpus);
9954
9955 /*
9956 * Create the VM
9957 *
9958 * Note! Release the lock since EMT will call Console. It's safe because
9959 * mMachineState is either Starting or Restoring state here.
9960 */
9961 alock.release();
9962
9963 PVM pVM;
9964 vrc = VMR3Create(cCpus,
9965 pConsole->mpVmm2UserMethods,
9966 Console::i_genericVMSetErrorCallback,
9967 &pTask->mErrorMsg,
9968 pTask->mConfigConstructor,
9969 static_cast<Console *>(pConsole),
9970 &pVM, NULL);
9971 alock.acquire();
9972
9973#ifdef VBOX_WITH_AUDIO_VRDE
9974 /* Attach the VRDE audio driver. */
9975 IVRDEServer *pVRDEServer = pConsole->i_getVRDEServer();
9976 if (pVRDEServer)
9977 {
9978 BOOL fVRDEEnabled = FALSE;
9979 rc = pVRDEServer->COMGETTER(Enabled)(&fVRDEEnabled);
9980 AssertComRCReturnVoid(rc);
9981
9982 if ( fVRDEEnabled
9983 && pConsole->mAudioVRDE)
9984 pConsole->mAudioVRDE->doAttachDriverViaEmt(pConsole->mpUVM, &alock);
9985 }
9986#endif
9987
9988 /* Enable client connections to the VRDP server. */
9989 pConsole->i_consoleVRDPServer()->EnableConnections();
9990
9991#ifdef VBOX_WITH_VIDEOREC
9992 Display *pDisplay = pConsole->i_getDisplay();
9993 AssertPtr(pDisplay);
9994 if (pDisplay)
9995 {
9996 pDisplay->i_videoRecInvalidate();
9997
9998 /* If video recording fails for whatever reason here, this is
9999 * non-critical and should not be returned at this point -- otherwise
10000 * the display driver construction fails completely. */
10001 int vrc2 = VINF_SUCCESS;
10002
10003#ifdef VBOX_WITH_AUDIO_VIDEOREC
10004 /* Attach the video recording audio driver if required. */
10005 if ( pDisplay->i_videoRecGetEnabled() & VIDEORECFEATURE_AUDIO
10006 && pConsole->mAudioVideoRec)
10007 vrc2 = pConsole->mAudioVideoRec->doAttachDriverViaEmt(pConsole->mpUVM, &alock);
10008#endif
10009 if ( RT_SUCCESS(vrc2)
10010 && pDisplay->i_videoRecGetEnabled()) /* Any video recording (audio and/or video) feature enabled? */
10011 {
10012 vrc2 = pDisplay->i_videoRecStart();
10013 if (RT_SUCCESS(vrc2))
10014 fireVideoCaptureChangedEvent(pConsole->i_getEventSource());
10015 }
10016 }
10017#endif
10018
10019 if (RT_SUCCESS(vrc))
10020 {
10021 do
10022 {
10023 /*
10024 * Register our load/save state file handlers
10025 */
10026 vrc = SSMR3RegisterExternal(pConsole->mpUVM, sSSMConsoleUnit, 0 /*iInstance*/, sSSMConsoleVer, 0 /* cbGuess */,
10027 NULL, NULL, NULL,
10028 NULL, i_saveStateFileExec, NULL,
10029 NULL, i_loadStateFileExec, NULL,
10030 static_cast<Console *>(pConsole));
10031 AssertRCBreak(vrc);
10032
10033 vrc = static_cast<Console *>(pConsole)->i_getDisplay()->i_registerSSM(pConsole->mpUVM);
10034 AssertRC(vrc);
10035 if (RT_FAILURE(vrc))
10036 break;
10037
10038 /*
10039 * Synchronize debugger settings
10040 */
10041 MachineDebugger *machineDebugger = pConsole->i_getMachineDebugger();
10042 if (machineDebugger)
10043 machineDebugger->i_flushQueuedSettings();
10044
10045 /*
10046 * Shared Folders
10047 */
10048 if (pConsole->m_pVMMDev->isShFlActive())
10049 {
10050 /* Does the code below call Console from the other thread?
10051 * Not sure, so release the lock just in case. */
10052 alock.release();
10053
10054 for (SharedFolderDataMap::const_iterator it = pTask->mSharedFolders.begin();
10055 it != pTask->mSharedFolders.end();
10056 ++it)
10057 {
10058 const SharedFolderData &d = it->second;
10059 rc = pConsole->i_createSharedFolder(it->first, d);
10060 if (FAILED(rc))
10061 {
10062 ErrorInfoKeeper eik;
10063 pConsole->i_atVMRuntimeErrorCallbackF(0, "BrokenSharedFolder",
10064 N_("The shared folder '%s' could not be set up: %ls.\n"
10065 "The shared folder setup will not be complete. It is recommended to power down the virtual "
10066 "machine and fix the shared folder settings while the machine is not running"),
10067 it->first.c_str(), eik.getText().raw());
10068 }
10069 }
10070 if (FAILED(rc))
10071 rc = S_OK; // do not fail with broken shared folders
10072
10073 /* acquire the lock again */
10074 alock.acquire();
10075 }
10076
10077 /* release the lock before a lengthy operation */
10078 alock.release();
10079
10080 /*
10081 * Capture USB devices.
10082 */
10083 rc = pConsole->i_captureUSBDevices(pConsole->mpUVM);
10084 if (FAILED(rc))
10085 {
10086 alock.acquire();
10087 break;
10088 }
10089
10090 /* Load saved state? */
10091 if (pTask->mSavedStateFile.length())
10092 {
10093 LogFlowFunc(("Restoring saved state from '%s'...\n", pTask->mSavedStateFile.c_str()));
10094
10095 vrc = VMR3LoadFromFile(pConsole->mpUVM,
10096 pTask->mSavedStateFile.c_str(),
10097 Console::i_stateProgressCallback,
10098 static_cast<IProgress *>(pTask->mProgress));
10099
10100 if (RT_SUCCESS(vrc))
10101 {
10102 if (pTask->mStartPaused)
10103 /* done */
10104 pConsole->i_setMachineState(MachineState_Paused);
10105 else
10106 {
10107 /* Start/Resume the VM execution */
10108#ifdef VBOX_WITH_EXTPACK
10109 vrc = pConsole->mptrExtPackManager->i_callAllVmPowerOnHooks(pConsole, pVM);
10110#endif
10111 if (RT_SUCCESS(vrc))
10112 vrc = VMR3Resume(pConsole->mpUVM, VMRESUMEREASON_STATE_RESTORED);
10113 AssertLogRelRC(vrc);
10114 }
10115 }
10116
10117 /* Power off in case we failed loading or resuming the VM */
10118 if (RT_FAILURE(vrc))
10119 {
10120 int vrc2 = VMR3PowerOff(pConsole->mpUVM); AssertLogRelRC(vrc2);
10121#ifdef VBOX_WITH_EXTPACK
10122 pConsole->mptrExtPackManager->i_callAllVmPowerOffHooks(pConsole, pVM);
10123#endif
10124 }
10125 }
10126 else if (pTask->mTeleporterEnabled)
10127 {
10128 /* -> ConsoleImplTeleporter.cpp */
10129 bool fPowerOffOnFailure;
10130 rc = pConsole->i_teleporterTrg(pConsole->mpUVM, pMachine, &pTask->mErrorMsg, pTask->mStartPaused,
10131 pTask->mProgress, &fPowerOffOnFailure);
10132 if (FAILED(rc) && fPowerOffOnFailure)
10133 {
10134 ErrorInfoKeeper eik;
10135 int vrc2 = VMR3PowerOff(pConsole->mpUVM); AssertLogRelRC(vrc2);
10136#ifdef VBOX_WITH_EXTPACK
10137 pConsole->mptrExtPackManager->i_callAllVmPowerOffHooks(pConsole, pVM);
10138#endif
10139 }
10140 }
10141 else if (pTask->mEnmFaultToleranceState != FaultToleranceState_Inactive)
10142 {
10143 /*
10144 * Get the config.
10145 */
10146 ULONG uPort;
10147 rc = pMachine->COMGETTER(FaultTolerancePort)(&uPort);
10148 if (SUCCEEDED(rc))
10149 {
10150 ULONG uInterval;
10151 rc = pMachine->COMGETTER(FaultToleranceSyncInterval)(&uInterval);
10152 if (SUCCEEDED(rc))
10153 {
10154 Bstr bstrAddress;
10155 rc = pMachine->COMGETTER(FaultToleranceAddress)(bstrAddress.asOutParam());
10156 if (SUCCEEDED(rc))
10157 {
10158 Bstr bstrPassword;
10159 rc = pMachine->COMGETTER(FaultTolerancePassword)(bstrPassword.asOutParam());
10160 if (SUCCEEDED(rc))
10161 {
10162 if (pTask->mProgress->i_setCancelCallback(faultToleranceProgressCancelCallback,
10163 pConsole->mpUVM))
10164 {
10165 if (SUCCEEDED(rc))
10166 {
10167 Utf8Str strAddress(bstrAddress);
10168 const char *pszAddress = strAddress.isEmpty() ? NULL : strAddress.c_str();
10169 Utf8Str strPassword(bstrPassword);
10170 const char *pszPassword = strPassword.isEmpty() ? NULL : strPassword.c_str();
10171
10172 /* Power on the FT enabled VM. */
10173#ifdef VBOX_WITH_EXTPACK
10174 vrc = pConsole->mptrExtPackManager->i_callAllVmPowerOnHooks(pConsole, pVM);
10175#endif
10176 if (RT_SUCCESS(vrc))
10177 vrc = FTMR3PowerOn(pConsole->mpUVM,
10178 pTask->mEnmFaultToleranceState == FaultToleranceState_Master /* fMaster */,
10179 uInterval,
10180 pszAddress,
10181 uPort,
10182 pszPassword);
10183 AssertLogRelRC(vrc);
10184 }
10185 pTask->mProgress->i_setCancelCallback(NULL, NULL);
10186 }
10187 else
10188 rc = E_FAIL;
10189
10190 }
10191 }
10192 }
10193 }
10194 }
10195 else if (pTask->mStartPaused)
10196 /* done */
10197 pConsole->i_setMachineState(MachineState_Paused);
10198 else
10199 {
10200 /* Power on the VM (i.e. start executing) */
10201#ifdef VBOX_WITH_EXTPACK
10202 vrc = pConsole->mptrExtPackManager->i_callAllVmPowerOnHooks(pConsole, pVM);
10203#endif
10204 if (RT_SUCCESS(vrc))
10205 vrc = VMR3PowerOn(pConsole->mpUVM);
10206 AssertLogRelRC(vrc);
10207 }
10208
10209 /* acquire the lock again */
10210 alock.acquire();
10211 }
10212 while (0);
10213
10214 /* On failure, destroy the VM */
10215 if (FAILED(rc) || RT_FAILURE(vrc))
10216 {
10217 /* preserve existing error info */
10218 ErrorInfoKeeper eik;
10219
10220 /* powerDown() will call VMR3Destroy() and do all necessary
10221 * cleanup (VRDP, USB devices) */
10222 alock.release();
10223 HRESULT rc2 = pConsole->i_powerDown();
10224 alock.acquire();
10225 AssertComRC(rc2);
10226 }
10227 else
10228 {
10229 /*
10230 * Deregister the VMSetError callback. This is necessary as the
10231 * pfnVMAtError() function passed to VMR3Create() is supposed to
10232 * be sticky but our error callback isn't.
10233 */
10234 alock.release();
10235 VMR3AtErrorDeregister(pConsole->mpUVM, Console::i_genericVMSetErrorCallback, &pTask->mErrorMsg);
10236 /** @todo register another VMSetError callback? */
10237 alock.acquire();
10238 }
10239 }
10240 else
10241 {
10242 /*
10243 * If VMR3Create() failed it has released the VM memory.
10244 */
10245 VMR3ReleaseUVM(pConsole->mpUVM);
10246 pConsole->mpUVM = NULL;
10247 }
10248
10249 if (SUCCEEDED(rc) && RT_FAILURE(vrc))
10250 {
10251 /* If VMR3Create() or one of the other calls in this function fail,
10252 * an appropriate error message has been set in pTask->mErrorMsg.
10253 * However since that happens via a callback, the rc status code in
10254 * this function is not updated.
10255 */
10256 if (!pTask->mErrorMsg.length())
10257 {
10258 /* If the error message is not set but we've got a failure,
10259 * convert the VBox status code into a meaningful error message.
10260 * This becomes unused once all the sources of errors set the
10261 * appropriate error message themselves.
10262 */
10263 AssertMsgFailed(("Missing error message during powerup for status code %Rrc\n", vrc));
10264 pTask->mErrorMsg = Utf8StrFmt(tr("Failed to start VM execution (%Rrc)"), vrc);
10265 }
10266
10267 /* Set the error message as the COM error.
10268 * Progress::notifyComplete() will pick it up later. */
10269 throw i_setErrorStatic(E_FAIL, pTask->mErrorMsg.c_str());
10270 }
10271 }
10272 catch (HRESULT aRC) { rc = aRC; }
10273
10274 if ( pConsole->mMachineState == MachineState_Starting
10275 || pConsole->mMachineState == MachineState_Restoring
10276 || pConsole->mMachineState == MachineState_TeleportingIn
10277 )
10278 {
10279 /* We are still in the Starting/Restoring state. This means one of:
10280 *
10281 * 1) we failed before VMR3Create() was called;
10282 * 2) VMR3Create() failed.
10283 *
10284 * In both cases, there is no need to call powerDown(), but we still
10285 * need to go back to the PoweredOff/Saved state. Reuse
10286 * vmstateChangeCallback() for that purpose.
10287 */
10288
10289 /* preserve existing error info */
10290 ErrorInfoKeeper eik;
10291
10292 Assert(pConsole->mpUVM == NULL);
10293 i_vmstateChangeCallback(NULL, VMSTATE_TERMINATED, VMSTATE_CREATING, pConsole);
10294 }
10295
10296 /*
10297 * Evaluate the final result. Note that the appropriate mMachineState value
10298 * is already set by vmstateChangeCallback() in all cases.
10299 */
10300
10301 /* release the lock, don't need it any more */
10302 alock.release();
10303
10304 if (SUCCEEDED(rc))
10305 {
10306 /* Notify the progress object of the success */
10307 pTask->mProgress->i_notifyComplete(S_OK);
10308 }
10309 else
10310 {
10311 /* The progress object will fetch the current error info */
10312 pTask->mProgress->i_notifyComplete(rc);
10313 LogRel(("Power up failed (vrc=%Rrc, rc=%Rhrc (%#08X))\n", vrc, rc, rc));
10314 }
10315
10316 /* Notify VBoxSVC and any waiting openRemoteSession progress object. */
10317 pConsole->mControl->EndPowerUp(rc);
10318
10319#if defined(RT_OS_WINDOWS)
10320 /* uninitialize COM */
10321 CoUninitialize();
10322#endif
10323
10324 LogFlowFuncLeave();
10325}
10326
10327
10328/**
10329 * Reconfigures a medium attachment (part of taking or deleting an online snapshot).
10330 *
10331 * @param pThis Reference to the console object.
10332 * @param pUVM The VM handle.
10333 * @param pcszDevice The name of the controller type.
10334 * @param uInstance The instance of the controller.
10335 * @param enmBus The storage bus type of the controller.
10336 * @param fUseHostIOCache Use the host I/O cache (disable async I/O).
10337 * @param fBuiltinIOCache Use the builtin I/O cache.
10338 * @param fInsertDiskIntegrityDrv Flag whether to insert the disk integrity driver into the chain
10339 * for additionalk debugging aids.
10340 * @param fSetupMerge Whether to set up a medium merge
10341 * @param uMergeSource Merge source image index
10342 * @param uMergeTarget Merge target image index
10343 * @param aMediumAtt The medium attachment.
10344 * @param aMachineState The current machine state.
10345 * @param phrc Where to store com error - only valid if we return VERR_GENERAL_FAILURE.
10346 * @return VBox status code.
10347 */
10348/* static */
10349DECLCALLBACK(int) Console::i_reconfigureMediumAttachment(Console *pThis,
10350 PUVM pUVM,
10351 const char *pcszDevice,
10352 unsigned uInstance,
10353 StorageBus_T enmBus,
10354 bool fUseHostIOCache,
10355 bool fBuiltinIOCache,
10356 bool fInsertDiskIntegrityDrv,
10357 bool fSetupMerge,
10358 unsigned uMergeSource,
10359 unsigned uMergeTarget,
10360 IMediumAttachment *aMediumAtt,
10361 MachineState_T aMachineState,
10362 HRESULT *phrc)
10363{
10364 LogFlowFunc(("pUVM=%p aMediumAtt=%p phrc=%p\n", pUVM, aMediumAtt, phrc));
10365
10366 HRESULT hrc;
10367 Bstr bstr;
10368 *phrc = S_OK;
10369#define H() do { if (FAILED(hrc)) { AssertMsgFailed(("hrc=%Rhrc (%#x)\n", hrc, hrc)); *phrc = hrc; return VERR_GENERAL_FAILURE; } } while (0)
10370
10371 /* Ignore attachments other than hard disks, since at the moment they are
10372 * not subject to snapshotting in general. */
10373 DeviceType_T lType;
10374 hrc = aMediumAtt->COMGETTER(Type)(&lType); H();
10375 if (lType != DeviceType_HardDisk)
10376 return VINF_SUCCESS;
10377
10378 /* Update the device instance configuration. */
10379 int rc = pThis->i_configMediumAttachment(pcszDevice,
10380 uInstance,
10381 enmBus,
10382 fUseHostIOCache,
10383 fBuiltinIOCache,
10384 fInsertDiskIntegrityDrv,
10385 fSetupMerge,
10386 uMergeSource,
10387 uMergeTarget,
10388 aMediumAtt,
10389 aMachineState,
10390 phrc,
10391 true /* fAttachDetach */,
10392 false /* fForceUnmount */,
10393 false /* fHotplug */,
10394 pUVM,
10395 NULL /* paLedDevType */,
10396 NULL /* ppLunL0)*/);
10397 if (RT_FAILURE(rc))
10398 {
10399 AssertMsgFailed(("rc=%Rrc\n", rc));
10400 return rc;
10401 }
10402
10403#undef H
10404
10405 LogFlowFunc(("Returns success\n"));
10406 return VINF_SUCCESS;
10407}
10408
10409/**
10410 * Thread for powering down the Console.
10411 *
10412 * @param pTask The power down task.
10413 *
10414 * @note Locks the Console object for writing.
10415 */
10416/*static*/
10417void Console::i_powerDownThreadTask(VMPowerDownTask *pTask)
10418{
10419 int rc = VINF_SUCCESS; /* only used in assertion */
10420 LogFlowFuncEnter();
10421 try
10422 {
10423 if (pTask->isOk() == false)
10424 rc = VERR_GENERAL_FAILURE;
10425
10426 const ComObjPtr<Console> &that = pTask->mConsole;
10427
10428 /* Note: no need to use AutoCaller to protect Console because VMTask does
10429 * that */
10430
10431 /* wait until the method tat started us returns */
10432 AutoWriteLock thatLock(that COMMA_LOCKVAL_SRC_POS);
10433
10434 /* release VM caller to avoid the powerDown() deadlock */
10435 pTask->releaseVMCaller();
10436
10437 thatLock.release();
10438
10439 that->i_powerDown(pTask->mServerProgress);
10440
10441 /* complete the operation */
10442 that->mControl->EndPoweringDown(S_OK, Bstr().raw());
10443
10444 }
10445 catch (const std::exception &e)
10446 {
10447 AssertMsgFailed(("Exception %s was caught, rc=%Rrc\n", e.what(), rc));
10448 NOREF(e); NOREF(rc);
10449 }
10450
10451 LogFlowFuncLeave();
10452}
10453
10454/**
10455 * @interface_method_impl{VMM2USERMETHODS,pfnSaveState}
10456 */
10457/*static*/ DECLCALLBACK(int)
10458Console::i_vmm2User_SaveState(PCVMM2USERMETHODS pThis, PUVM pUVM)
10459{
10460 Console *pConsole = ((MYVMM2USERMETHODS *)pThis)->pConsole;
10461 NOREF(pUVM);
10462
10463 /*
10464 * For now, just call SaveState. We should probably try notify the GUI so
10465 * it can pop up a progress object and stuff. The progress object created
10466 * by the call isn't returned to anyone and thus gets updated without
10467 * anyone noticing it.
10468 */
10469 ComPtr<IProgress> pProgress;
10470 HRESULT hrc = pConsole->mMachine->SaveState(pProgress.asOutParam());
10471 return SUCCEEDED(hrc) ? VINF_SUCCESS : Global::vboxStatusCodeFromCOM(hrc);
10472}
10473
10474/**
10475 * @interface_method_impl{VMM2USERMETHODS,pfnNotifyEmtInit}
10476 */
10477/*static*/ DECLCALLBACK(void)
10478Console::i_vmm2User_NotifyEmtInit(PCVMM2USERMETHODS pThis, PUVM pUVM, PUVMCPU pUVCpu)
10479{
10480 NOREF(pThis); NOREF(pUVM); NOREF(pUVCpu);
10481 VirtualBoxBase::initializeComForThread();
10482}
10483
10484/**
10485 * @interface_method_impl{VMM2USERMETHODS,pfnNotifyEmtTerm}
10486 */
10487/*static*/ DECLCALLBACK(void)
10488Console::i_vmm2User_NotifyEmtTerm(PCVMM2USERMETHODS pThis, PUVM pUVM, PUVMCPU pUVCpu)
10489{
10490 NOREF(pThis); NOREF(pUVM); NOREF(pUVCpu);
10491 VirtualBoxBase::uninitializeComForThread();
10492}
10493
10494/**
10495 * @interface_method_impl{VMM2USERMETHODS,pfnNotifyPdmtInit}
10496 */
10497/*static*/ DECLCALLBACK(void)
10498Console::i_vmm2User_NotifyPdmtInit(PCVMM2USERMETHODS pThis, PUVM pUVM)
10499{
10500 NOREF(pThis); NOREF(pUVM);
10501 VirtualBoxBase::initializeComForThread();
10502}
10503
10504/**
10505 * @interface_method_impl{VMM2USERMETHODS,pfnNotifyPdmtTerm}
10506 */
10507/*static*/ DECLCALLBACK(void)
10508Console::i_vmm2User_NotifyPdmtTerm(PCVMM2USERMETHODS pThis, PUVM pUVM)
10509{
10510 NOREF(pThis); NOREF(pUVM);
10511 VirtualBoxBase::uninitializeComForThread();
10512}
10513
10514/**
10515 * @interface_method_impl{VMM2USERMETHODS,pfnNotifyResetTurnedIntoPowerOff}
10516 */
10517/*static*/ DECLCALLBACK(void)
10518Console::i_vmm2User_NotifyResetTurnedIntoPowerOff(PCVMM2USERMETHODS pThis, PUVM pUVM)
10519{
10520 Console *pConsole = ((MYVMM2USERMETHODS *)pThis)->pConsole;
10521 NOREF(pUVM);
10522
10523 pConsole->mfPowerOffCausedByReset = true;
10524}
10525
10526/**
10527 * @interface_method_impl{VMM2USERMETHODS,pfnQueryGenericObject}
10528 */
10529/*static*/ DECLCALLBACK(void *)
10530Console::i_vmm2User_QueryGenericObject(PCVMM2USERMETHODS pThis, PUVM pUVM, PCRTUUID pUuid)
10531{
10532 Console *pConsole = ((MYVMM2USERMETHODS *)pThis)->pConsole;
10533 NOREF(pUVM);
10534
10535 /* To simplify comparison we copy the UUID into a com::Guid object. */
10536 com::Guid const UuidCopy(*pUuid);
10537
10538 if (UuidCopy == COM_IIDOF(IConsole))
10539 {
10540 IConsole *pIConsole = static_cast<IConsole *>(pConsole);
10541 return pIConsole;
10542 }
10543
10544 if (UuidCopy == COM_IIDOF(IMachine))
10545 {
10546 IMachine *pIMachine = pConsole->mMachine;
10547 return pIMachine;
10548 }
10549
10550 if (UuidCopy == COM_IIDOF(ISnapshot))
10551 return ((MYVMM2USERMETHODS *)pThis)->pISnapshot;
10552
10553 return NULL;
10554}
10555
10556
10557/**
10558 * @interface_method_impl{PDMISECKEY,pfnKeyRetain}
10559 */
10560/*static*/ DECLCALLBACK(int)
10561Console::i_pdmIfSecKey_KeyRetain(PPDMISECKEY pInterface, const char *pszId, const uint8_t **ppbKey,
10562 size_t *pcbKey)
10563{
10564 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10565
10566 AutoReadLock thatLock(pConsole COMMA_LOCKVAL_SRC_POS);
10567 SecretKey *pKey = NULL;
10568
10569 int rc = pConsole->m_pKeyStore->retainSecretKey(Utf8Str(pszId), &pKey);
10570 if (RT_SUCCESS(rc))
10571 {
10572 *ppbKey = (const uint8_t *)pKey->getKeyBuffer();
10573 *pcbKey = pKey->getKeySize();
10574 }
10575
10576 return rc;
10577}
10578
10579/**
10580 * @interface_method_impl{PDMISECKEY,pfnKeyRelease}
10581 */
10582/*static*/ DECLCALLBACK(int)
10583Console::i_pdmIfSecKey_KeyRelease(PPDMISECKEY pInterface, const char *pszId)
10584{
10585 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10586
10587 AutoReadLock thatLock(pConsole COMMA_LOCKVAL_SRC_POS);
10588 return pConsole->m_pKeyStore->releaseSecretKey(Utf8Str(pszId));
10589}
10590
10591/**
10592 * @interface_method_impl{PDMISECKEY,pfnPasswordRetain}
10593 */
10594/*static*/ DECLCALLBACK(int)
10595Console::i_pdmIfSecKey_PasswordRetain(PPDMISECKEY pInterface, const char *pszId, const char **ppszPassword)
10596{
10597 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10598
10599 AutoReadLock thatLock(pConsole COMMA_LOCKVAL_SRC_POS);
10600 SecretKey *pKey = NULL;
10601
10602 int rc = pConsole->m_pKeyStore->retainSecretKey(Utf8Str(pszId), &pKey);
10603 if (RT_SUCCESS(rc))
10604 *ppszPassword = (const char *)pKey->getKeyBuffer();
10605
10606 return rc;
10607}
10608
10609/**
10610 * @interface_method_impl{PDMISECKEY,pfnPasswordRelease}
10611 */
10612/*static*/ DECLCALLBACK(int)
10613Console::i_pdmIfSecKey_PasswordRelease(PPDMISECKEY pInterface, const char *pszId)
10614{
10615 Console *pConsole = ((MYPDMISECKEY *)pInterface)->pConsole;
10616
10617 AutoReadLock thatLock(pConsole COMMA_LOCKVAL_SRC_POS);
10618 return pConsole->m_pKeyStore->releaseSecretKey(Utf8Str(pszId));
10619}
10620
10621/**
10622 * @interface_method_impl{PDMISECKEYHLP,pfnKeyMissingNotify}
10623 */
10624/*static*/ DECLCALLBACK(int)
10625Console::i_pdmIfSecKeyHlp_KeyMissingNotify(PPDMISECKEYHLP pInterface)
10626{
10627 Console *pConsole = ((MYPDMISECKEYHLP *)pInterface)->pConsole;
10628
10629 /* Set guest property only, the VM is paused in the media driver calling us. */
10630 pConsole->mMachine->DeleteGuestProperty(Bstr("/VirtualBox/HostInfo/DekMissing").raw());
10631 pConsole->mMachine->SetGuestProperty(Bstr("/VirtualBox/HostInfo/DekMissing").raw(),
10632 Bstr("1").raw(), Bstr("RDONLYGUEST").raw());
10633 pConsole->mMachine->SaveSettings();
10634
10635 return VINF_SUCCESS;
10636}
10637
10638
10639
10640/**
10641 * The Main status driver instance data.
10642 */
10643typedef struct DRVMAINSTATUS
10644{
10645 /** The LED connectors. */
10646 PDMILEDCONNECTORS ILedConnectors;
10647 /** Pointer to the LED ports interface above us. */
10648 PPDMILEDPORTS pLedPorts;
10649 /** Pointer to the array of LED pointers. */
10650 PPDMLED *papLeds;
10651 /** The unit number corresponding to the first entry in the LED array. */
10652 RTUINT iFirstLUN;
10653 /** The unit number corresponding to the last entry in the LED array.
10654 * (The size of the LED array is iLastLUN - iFirstLUN + 1.) */
10655 RTUINT iLastLUN;
10656 /** Pointer to the driver instance. */
10657 PPDMDRVINS pDrvIns;
10658 /** The Media Notify interface. */
10659 PDMIMEDIANOTIFY IMediaNotify;
10660 /** Map for translating PDM storage controller/LUN information to
10661 * IMediumAttachment references. */
10662 Console::MediumAttachmentMap *pmapMediumAttachments;
10663 /** Device name+instance for mapping */
10664 char *pszDeviceInstance;
10665 /** Pointer to the Console object, for driver triggered activities. */
10666 Console *pConsole;
10667} DRVMAINSTATUS, *PDRVMAINSTATUS;
10668
10669
10670/**
10671 * Notification about a unit which have been changed.
10672 *
10673 * The driver must discard any pointers to data owned by
10674 * the unit and requery it.
10675 *
10676 * @param pInterface Pointer to the interface structure containing the called function pointer.
10677 * @param iLUN The unit number.
10678 */
10679DECLCALLBACK(void) Console::i_drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN)
10680{
10681 PDRVMAINSTATUS pThis = RT_FROM_MEMBER(pInterface, DRVMAINSTATUS, ILedConnectors);
10682 if (iLUN >= pThis->iFirstLUN && iLUN <= pThis->iLastLUN)
10683 {
10684 PPDMLED pLed;
10685 int rc = pThis->pLedPorts->pfnQueryStatusLed(pThis->pLedPorts, iLUN, &pLed);
10686 if (RT_FAILURE(rc))
10687 pLed = NULL;
10688 ASMAtomicWritePtr(&pThis->papLeds[iLUN - pThis->iFirstLUN], pLed);
10689 Log(("drvStatus_UnitChanged: iLUN=%d pLed=%p\n", iLUN, pLed));
10690 }
10691}
10692
10693
10694/**
10695 * Notification about a medium eject.
10696 *
10697 * @returns VBox status code.
10698 * @param pInterface Pointer to the interface structure containing the called function pointer.
10699 * @param uLUN The unit number.
10700 */
10701DECLCALLBACK(int) Console::i_drvStatus_MediumEjected(PPDMIMEDIANOTIFY pInterface, unsigned uLUN)
10702{
10703 PDRVMAINSTATUS pThis = RT_FROM_MEMBER(pInterface, DRVMAINSTATUS, IMediaNotify);
10704 LogFunc(("uLUN=%d\n", uLUN));
10705 if (pThis->pmapMediumAttachments)
10706 {
10707 AutoWriteLock alock(pThis->pConsole COMMA_LOCKVAL_SRC_POS);
10708
10709 ComPtr<IMediumAttachment> pMediumAtt;
10710 Utf8Str devicePath = Utf8StrFmt("%s/LUN#%u", pThis->pszDeviceInstance, uLUN);
10711 Console::MediumAttachmentMap::const_iterator end = pThis->pmapMediumAttachments->end();
10712 Console::MediumAttachmentMap::const_iterator it = pThis->pmapMediumAttachments->find(devicePath);
10713 if (it != end)
10714 pMediumAtt = it->second;
10715 Assert(!pMediumAtt.isNull());
10716 if (!pMediumAtt.isNull())
10717 {
10718 IMedium *pMedium = NULL;
10719 HRESULT rc = pMediumAtt->COMGETTER(Medium)(&pMedium);
10720 AssertComRC(rc);
10721 if (SUCCEEDED(rc) && pMedium)
10722 {
10723 BOOL fHostDrive = FALSE;
10724 rc = pMedium->COMGETTER(HostDrive)(&fHostDrive);
10725 AssertComRC(rc);
10726 if (!fHostDrive)
10727 {
10728 alock.release();
10729
10730 ComPtr<IMediumAttachment> pNewMediumAtt;
10731 rc = pThis->pConsole->mControl->EjectMedium(pMediumAtt, pNewMediumAtt.asOutParam());
10732 if (SUCCEEDED(rc))
10733 {
10734 pThis->pConsole->mMachine->SaveSettings();
10735 fireMediumChangedEvent(pThis->pConsole->mEventSource, pNewMediumAtt);
10736 }
10737
10738 alock.acquire();
10739 if (pNewMediumAtt != pMediumAtt)
10740 {
10741 pThis->pmapMediumAttachments->erase(devicePath);
10742 pThis->pmapMediumAttachments->insert(std::make_pair(devicePath, pNewMediumAtt));
10743 }
10744 }
10745 }
10746 }
10747 }
10748 return VINF_SUCCESS;
10749}
10750
10751
10752/**
10753 * @interface_method_impl{PDMIBASE,pfnQueryInterface}
10754 */
10755DECLCALLBACK(void *) Console::i_drvStatus_QueryInterface(PPDMIBASE pInterface, const char *pszIID)
10756{
10757 PPDMDRVINS pDrvIns = PDMIBASE_2_PDMDRV(pInterface);
10758 PDRVMAINSTATUS pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINSTATUS);
10759 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIBASE, &pDrvIns->IBase);
10760 PDMIBASE_RETURN_INTERFACE(pszIID, PDMILEDCONNECTORS, &pThis->ILedConnectors);
10761 PDMIBASE_RETURN_INTERFACE(pszIID, PDMIMEDIANOTIFY, &pThis->IMediaNotify);
10762 return NULL;
10763}
10764
10765
10766/**
10767 * Destruct a status driver instance.
10768 *
10769 * @returns VBox status code.
10770 * @param pDrvIns The driver instance data.
10771 */
10772DECLCALLBACK(void) Console::i_drvStatus_Destruct(PPDMDRVINS pDrvIns)
10773{
10774 PDMDRV_CHECK_VERSIONS_RETURN_VOID(pDrvIns);
10775 PDRVMAINSTATUS pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINSTATUS);
10776 LogFlowFunc(("iInstance=%d\n", pDrvIns->iInstance));
10777
10778 if (pThis->papLeds)
10779 {
10780 unsigned iLed = pThis->iLastLUN - pThis->iFirstLUN + 1;
10781 while (iLed-- > 0)
10782 ASMAtomicWriteNullPtr(&pThis->papLeds[iLed]);
10783 }
10784}
10785
10786
10787/**
10788 * Construct a status driver instance.
10789 *
10790 * @copydoc FNPDMDRVCONSTRUCT
10791 */
10792DECLCALLBACK(int) Console::i_drvStatus_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags)
10793{
10794 RT_NOREF(fFlags);
10795 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);
10796 PDRVMAINSTATUS pThis = PDMINS_2_DATA(pDrvIns, PDRVMAINSTATUS);
10797 LogFlowFunc(("iInstance=%d\n", pDrvIns->iInstance));
10798
10799 /*
10800 * Validate configuration.
10801 */
10802 if (!CFGMR3AreValuesValid(pCfg, "papLeds\0pmapMediumAttachments\0DeviceInstance\0pConsole\0First\0Last\0"))
10803 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES;
10804 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER,
10805 ("Configuration error: Not possible to attach anything to this driver!\n"),
10806 VERR_PDM_DRVINS_NO_ATTACH);
10807
10808 /*
10809 * Data.
10810 */
10811 pDrvIns->IBase.pfnQueryInterface = Console::i_drvStatus_QueryInterface;
10812 pThis->ILedConnectors.pfnUnitChanged = Console::i_drvStatus_UnitChanged;
10813 pThis->IMediaNotify.pfnEjected = Console::i_drvStatus_MediumEjected;
10814 pThis->pDrvIns = pDrvIns;
10815 pThis->pszDeviceInstance = NULL;
10816
10817 /*
10818 * Read config.
10819 */
10820 int rc = CFGMR3QueryPtr(pCfg, "papLeds", (void **)&pThis->papLeds);
10821 if (RT_FAILURE(rc))
10822 {
10823 AssertMsgFailed(("Configuration error: Failed to query the \"papLeds\" value! rc=%Rrc\n", rc));
10824 return rc;
10825 }
10826
10827 rc = CFGMR3QueryPtrDef(pCfg, "pmapMediumAttachments", (void **)&pThis->pmapMediumAttachments, NULL);
10828 if (RT_FAILURE(rc))
10829 {
10830 AssertMsgFailed(("Configuration error: Failed to query the \"pmapMediumAttachments\" value! rc=%Rrc\n", rc));
10831 return rc;
10832 }
10833 if (pThis->pmapMediumAttachments)
10834 {
10835 rc = CFGMR3QueryStringAlloc(pCfg, "DeviceInstance", &pThis->pszDeviceInstance);
10836 if (RT_FAILURE(rc))
10837 {
10838 AssertMsgFailed(("Configuration error: Failed to query the \"DeviceInstance\" value! rc=%Rrc\n", rc));
10839 return rc;
10840 }
10841 rc = CFGMR3QueryPtr(pCfg, "pConsole", (void **)&pThis->pConsole);
10842 if (RT_FAILURE(rc))
10843 {
10844 AssertMsgFailed(("Configuration error: Failed to query the \"pConsole\" value! rc=%Rrc\n", rc));
10845 return rc;
10846 }
10847 }
10848
10849 rc = CFGMR3QueryU32(pCfg, "First", &pThis->iFirstLUN);
10850 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
10851 pThis->iFirstLUN = 0;
10852 else if (RT_FAILURE(rc))
10853 {
10854 AssertMsgFailed(("Configuration error: Failed to query the \"First\" value! rc=%Rrc\n", rc));
10855 return rc;
10856 }
10857
10858 rc = CFGMR3QueryU32(pCfg, "Last", &pThis->iLastLUN);
10859 if (rc == VERR_CFGM_VALUE_NOT_FOUND)
10860 pThis->iLastLUN = 0;
10861 else if (RT_FAILURE(rc))
10862 {
10863 AssertMsgFailed(("Configuration error: Failed to query the \"Last\" value! rc=%Rrc\n", rc));
10864 return rc;
10865 }
10866 if (pThis->iFirstLUN > pThis->iLastLUN)
10867 {
10868 AssertMsgFailed(("Configuration error: Invalid unit range %u-%u\n", pThis->iFirstLUN, pThis->iLastLUN));
10869 return VERR_GENERAL_FAILURE;
10870 }
10871
10872 /*
10873 * Get the ILedPorts interface of the above driver/device and
10874 * query the LEDs we want.
10875 */
10876 pThis->pLedPorts = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMILEDPORTS);
10877 AssertMsgReturn(pThis->pLedPorts, ("Configuration error: No led ports interface above!\n"),
10878 VERR_PDM_MISSING_INTERFACE_ABOVE);
10879
10880 for (unsigned i = pThis->iFirstLUN; i <= pThis->iLastLUN; ++i)
10881 Console::i_drvStatus_UnitChanged(&pThis->ILedConnectors, i);
10882
10883 return VINF_SUCCESS;
10884}
10885
10886
10887/**
10888 * Console status driver (LED) registration record.
10889 */
10890const PDMDRVREG Console::DrvStatusReg =
10891{
10892 /* u32Version */
10893 PDM_DRVREG_VERSION,
10894 /* szName */
10895 "MainStatus",
10896 /* szRCMod */
10897 "",
10898 /* szR0Mod */
10899 "",
10900 /* pszDescription */
10901 "Main status driver (Main as in the API).",
10902 /* fFlags */
10903 PDM_DRVREG_FLAGS_HOST_BITS_DEFAULT,
10904 /* fClass. */
10905 PDM_DRVREG_CLASS_STATUS,
10906 /* cMaxInstances */
10907 ~0U,
10908 /* cbInstance */
10909 sizeof(DRVMAINSTATUS),
10910 /* pfnConstruct */
10911 Console::i_drvStatus_Construct,
10912 /* pfnDestruct */
10913 Console::i_drvStatus_Destruct,
10914 /* pfnRelocate */
10915 NULL,
10916 /* pfnIOCtl */
10917 NULL,
10918 /* pfnPowerOn */
10919 NULL,
10920 /* pfnReset */
10921 NULL,
10922 /* pfnSuspend */
10923 NULL,
10924 /* pfnResume */
10925 NULL,
10926 /* pfnAttach */
10927 NULL,
10928 /* pfnDetach */
10929 NULL,
10930 /* pfnPowerOff */
10931 NULL,
10932 /* pfnSoftReset */
10933 NULL,
10934 /* u32EndVersion */
10935 PDM_DRVREG_VERSION
10936};
10937
10938
10939
10940/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use