VirtualBox

source: vbox/trunk/src/VBox/Main/MachineImpl.cpp@ 4663

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

Enabled guest setting saving to snapshot tree again

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 337.4 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#if defined(RT_OS_WINDOWS)
19#elif defined(RT_OS_LINUX)
20#endif
21
22#ifdef VBOX_WITH_SYS_V_IPC_SESSION_WATCHER
23# include <errno.h>
24# include <sys/types.h>
25# include <sys/stat.h>
26# include <sys/ipc.h>
27# include <sys/sem.h>
28#endif
29
30#include "VirtualBoxImpl.h"
31#include "MachineImpl.h"
32#include "HardDiskImpl.h"
33#include "HostDVDDriveImpl.h"
34#include "HostFloppyDriveImpl.h"
35#include "ProgressImpl.h"
36#include "HardDiskAttachmentImpl.h"
37#include "USBControllerImpl.h"
38#include "HostImpl.h"
39#include "SystemPropertiesImpl.h"
40#include "SharedFolderImpl.h"
41#include "GuestOSTypeImpl.h"
42#include "VirtualBoxErrorInfoImpl.h"
43#include "GuestImpl.h"
44
45#include "USBProxyService.h"
46
47#include "Logging.h"
48
49#include <stdio.h>
50#include <stdlib.h>
51
52#include <iprt/path.h>
53#include <iprt/dir.h>
54#include <iprt/asm.h>
55#include <iprt/process.h>
56#include <iprt/cpputils.h>
57#include <iprt/env.h>
58
59#include <VBox/err.h>
60#include <VBox/cfgldr.h>
61#include <VBox/param.h>
62
63#include <algorithm>
64
65#if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
66#define HOSTSUFF_EXE ".exe"
67#else /* !RT_OS_WINDOWS */
68#define HOSTSUFF_EXE ""
69#endif /* !RT_OS_WINDOWS */
70
71// defines / prototypes
72/////////////////////////////////////////////////////////////////////////////
73
74// globals
75/////////////////////////////////////////////////////////////////////////////
76
77/**
78 * @note The template is NOT completely valid according to VBOX_XML_SCHEMA
79 * (when loading a newly created settings file, validation will be turned off)
80 */
81static const char DefaultMachineConfig[] =
82{
83 "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>" RTFILE_LINEFEED
84 "<!-- innotek VirtualBox Machine Configuration -->" RTFILE_LINEFEED
85 "<VirtualBox xmlns=\"" VBOX_XML_NAMESPACE "\" "
86 "version=\"" VBOX_XML_VERSION "-" VBOX_XML_PLATFORM "\">" RTFILE_LINEFEED
87 "</VirtualBox>" RTFILE_LINEFEED
88};
89
90/**
91 * Progress callback handler for lengthy operations
92 * (corresponds to the FNRTPROGRESS typedef).
93 *
94 * @param uPercentage Completetion precentage (0-100).
95 * @param pvUser Pointer to the Progress instance.
96 */
97static DECLCALLBACK(int) progressCallback (unsigned uPercentage, void *pvUser)
98{
99 Progress *progress = static_cast <Progress *> (pvUser);
100
101 /* update the progress object */
102 if (progress)
103 progress->notifyProgress (uPercentage);
104
105 return VINF_SUCCESS;
106}
107
108/////////////////////////////////////////////////////////////////////////////
109// Machine::Data structure
110/////////////////////////////////////////////////////////////////////////////
111
112Machine::Data::Data()
113{
114 mRegistered = FALSE;
115 /* mUuid is initialized in Machine::init() */
116
117 mMachineState = MachineState_PoweredOff;
118 RTTIMESPEC time;
119 mLastStateChange = RTTimeSpecGetMilli (RTTimeNow (&time));
120
121 mMachineStateDeps = 0;
122 mZeroMachineStateDepsSem = NIL_RTSEMEVENT;
123 mWaitingStateDeps = FALSE;
124
125 mCurrentStateModified = TRUE;
126 mHandleCfgFile = NIL_RTFILE;
127
128 mSession.mPid = NIL_RTPROCESS;
129 mSession.mState = SessionState_SessionClosed;
130}
131
132Machine::Data::~Data()
133{
134 if (mZeroMachineStateDepsSem != NIL_RTSEMEVENT)
135 {
136 RTSemEventDestroy (mZeroMachineStateDepsSem);
137 mZeroMachineStateDepsSem = NIL_RTSEMEVENT;
138 }
139}
140
141/////////////////////////////////////////////////////////////////////////////
142// Machine::UserData structure
143/////////////////////////////////////////////////////////////////////////////
144
145Machine::UserData::UserData()
146{
147 /* default values for a newly created machine */
148
149 mNameSync = TRUE;
150
151 /* mName, mOSTypeId, mSnapshotFolder, mSnapshotFolderFull are initialized in
152 * Machine::init() */
153}
154
155Machine::UserData::~UserData()
156{
157}
158
159/////////////////////////////////////////////////////////////////////////////
160// Machine::HWData structure
161/////////////////////////////////////////////////////////////////////////////
162
163Machine::HWData::HWData()
164{
165 /* default values for a newly created machine */
166 mMemorySize = 128;
167 mMemoryBalloonSize = 0;
168 mStatisticsUpdateInterval = 0;
169 mVRAMSize = 8;
170 mMonitorCount = 1;
171 mHWVirtExEnabled = TriStateBool_False;
172
173 /* default boot order: floppy - DVD - HDD */
174 mBootOrder [0] = DeviceType_FloppyDevice;
175 mBootOrder [1] = DeviceType_DVDDevice;
176 mBootOrder [2] = DeviceType_HardDiskDevice;
177 for (size_t i = 3; i < ELEMENTS (mBootOrder); i++)
178 mBootOrder [i] = DeviceType_NoDevice;
179
180 mClipboardMode = ClipboardMode_ClipBidirectional;
181}
182
183Machine::HWData::~HWData()
184{
185}
186
187bool Machine::HWData::operator== (const HWData &that) const
188{
189 if (this == &that)
190 return true;
191
192 if (mMemorySize != that.mMemorySize ||
193 mMemoryBalloonSize != that.mMemoryBalloonSize ||
194 mStatisticsUpdateInterval != that.mStatisticsUpdateInterval ||
195 mVRAMSize != that.mVRAMSize ||
196 mMonitorCount != that.mMonitorCount ||
197 mHWVirtExEnabled != that.mHWVirtExEnabled ||
198 mClipboardMode != that.mClipboardMode)
199 return false;
200
201 for (size_t i = 0; i < ELEMENTS (mBootOrder); ++ i)
202 if (mBootOrder [i] != that.mBootOrder [i])
203 return false;
204
205 if (mSharedFolders.size() != that.mSharedFolders.size())
206 return false;
207
208 if (mSharedFolders.size() == 0)
209 return true;
210
211 /* Make copies to speed up comparison */
212 SharedFolderList folders = mSharedFolders;
213 SharedFolderList thatFolders = that.mSharedFolders;
214
215 SharedFolderList::iterator it = folders.begin();
216 while (it != folders.end())
217 {
218 bool found = false;
219 SharedFolderList::iterator thatIt = thatFolders.begin();
220 while (thatIt != thatFolders.end())
221 {
222 if ((*it)->name() == (*thatIt)->name() &&
223 RTPathCompare (Utf8Str ((*it)->hostPath()),
224 Utf8Str ((*thatIt)->hostPath())) == 0)
225 {
226 thatFolders.erase (thatIt);
227 found = true;
228 break;
229 }
230 else
231 ++ thatIt;
232 }
233 if (found)
234 it = folders.erase (it);
235 else
236 return false;
237 }
238
239 Assert (folders.size() == 0 && thatFolders.size() == 0);
240
241 return true;
242}
243
244/////////////////////////////////////////////////////////////////////////////
245// Machine::HDData structure
246/////////////////////////////////////////////////////////////////////////////
247
248Machine::HDData::HDData()
249{
250 /* default values for a newly created machine */
251 mHDAttachmentsChanged = false;
252}
253
254Machine::HDData::~HDData()
255{
256}
257
258bool Machine::HDData::operator== (const HDData &that) const
259{
260 if (this == &that)
261 return true;
262
263 if (mHDAttachments.size() != that.mHDAttachments.size())
264 return false;
265
266 if (mHDAttachments.size() == 0)
267 return true;
268
269 /* Make copies to speed up comparison */
270 HDAttachmentList atts = mHDAttachments;
271 HDAttachmentList thatAtts = that.mHDAttachments;
272
273 HDAttachmentList::iterator it = atts.begin();
274 while (it != atts.end())
275 {
276 bool found = false;
277 HDAttachmentList::iterator thatIt = thatAtts.begin();
278 while (thatIt != thatAtts.end())
279 {
280 if ((*it)->deviceNumber() == (*thatIt)->deviceNumber() &&
281 (*it)->controller() == (*thatIt)->controller() &&
282 (*it)->hardDisk().equalsTo ((*thatIt)->hardDisk()))
283 {
284 thatAtts.erase (thatIt);
285 found = true;
286 break;
287 }
288 else
289 ++ thatIt;
290 }
291 if (found)
292 it = atts.erase (it);
293 else
294 return false;
295 }
296
297 Assert (atts.size() == 0 && thatAtts.size() == 0);
298
299 return true;
300}
301
302/////////////////////////////////////////////////////////////////////////////
303// Machine class
304/////////////////////////////////////////////////////////////////////////////
305
306// constructor / destructor
307/////////////////////////////////////////////////////////////////////////////
308
309Machine::Machine() : mType (IsMachine) {}
310
311Machine::~Machine() {}
312
313HRESULT Machine::FinalConstruct()
314{
315 LogFlowThisFunc (("\n"));
316 return S_OK;
317}
318
319void Machine::FinalRelease()
320{
321 LogFlowThisFunc (("\n"));
322 uninit();
323}
324
325/**
326 * Initializes the instance.
327 *
328 * @param aParent Associated parent object
329 * @param aConfigFile Local file system path to the VM settings file (can
330 * be relative to the VirtualBox config directory).
331 * @param aMode Init_New, Init_Existing or Init_Registered
332 * @param aName name for the machine when aMode is Init_New
333 * (ignored otherwise)
334 * @param aNameSync |TRUE| to automatically sync settings dir and file
335 * name with the machine name. |FALSE| is used for legacy
336 * machines where the file name is specified by the
337 * user and should never change. Used only in Init_New
338 * mode (ignored otherwise).
339 * @param aId UUID of the machine (used only for consistency
340 * check when aMode is Init_Registered; must match UUID
341 * stored in the settings file).
342 *
343 * @return Success indicator. if not S_OK, the machine object is invalid
344 */
345HRESULT Machine::init (VirtualBox *aParent, const BSTR aConfigFile,
346 InitMode aMode, const BSTR aName /* = NULL */,
347 BOOL aNameSync /* = TRUE */,
348 const Guid *aId /* = NULL */)
349{
350 LogFlowThisFuncEnter();
351 LogFlowThisFunc (("aConfigFile='%ls', aMode=%d\n", aConfigFile, aMode));
352
353 AssertReturn (aParent, E_INVALIDARG);
354 AssertReturn (aConfigFile, E_INVALIDARG);
355 AssertReturn (aMode != Init_New || (aName != NULL && *aName != '\0'),
356 E_INVALIDARG);
357 AssertReturn (aMode != Init_Registered || aId != NULL, E_FAIL);
358
359 /* Enclose the state transition NotReady->InInit->Ready */
360 AutoInitSpan autoInitSpan (this);
361 AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
362
363 HRESULT rc = S_OK;
364
365 /* share the parent weakly */
366 unconst (mParent) = aParent;
367
368 /* register with parent early, since uninit() will unconditionally
369 * unregister on failure */
370 mParent->addDependentChild (this);
371
372 /* create machine data structures */
373 mData.allocate();
374 mSSData.allocate();
375
376 mUserData.allocate();
377 mHWData.allocate();
378 mHDData.allocate();
379
380 char configFileFull [RTPATH_MAX] = {0};
381
382 /* memorize the config file name (as provided) */
383 mData->mConfigFile = aConfigFile;
384
385 /* get the full file name */
386 int vrc = RTPathAbsEx (mParent->homeDir(), Utf8Str (aConfigFile),
387 configFileFull, sizeof (configFileFull));
388 if (VBOX_FAILURE (vrc))
389 return setError (E_FAIL,
390 tr ("Invalid settings file name: '%ls' (%Vrc)"),
391 aConfigFile, vrc);
392 mData->mConfigFileFull = configFileFull;
393
394 mData->mAccessible = TRUE;
395
396 if (aMode != Init_New)
397 {
398 /* lock the settings file */
399 rc = lockConfig();
400
401 if (aMode == Init_Registered && FAILED (rc))
402 {
403 /* If the machine is registered, then, instead of returning a
404 * failure, we mark it as inaccessible and set the result to
405 * success to give it a try later */
406 mData->mAccessible = FALSE;
407 /* fetch the current error info */
408 mData->mAccessError = com::ErrorInfo();
409 LogWarning (("Machine {%Vuuid} is inaccessible! [%ls]\n",
410 mData->mUuid.raw(),
411 mData->mAccessError.getText().raw()));
412 rc = S_OK;
413 }
414 }
415 else
416 {
417 /* check for the file existence */
418 RTFILE f = NIL_RTFILE;
419 int vrc = RTFileOpen (&f, configFileFull, RTFILE_O_READ);
420 if (VBOX_SUCCESS (vrc) || vrc == VERR_SHARING_VIOLATION)
421 {
422 rc = setError (E_FAIL,
423 tr ("Settings file '%s' already exists"), configFileFull);
424 if (VBOX_SUCCESS (vrc))
425 RTFileClose (f);
426 }
427 else
428 {
429 if (vrc != VERR_FILE_NOT_FOUND && vrc != VERR_PATH_NOT_FOUND)
430 rc = setError (E_FAIL,
431 tr ("Invalid settings file name: '%ls' (%Vrc)"),
432 mData->mConfigFileFull.raw(), vrc);
433 }
434 }
435
436 CheckComRCReturnRC (rc);
437
438 /* initialize mOSTypeId */
439 mUserData->mOSTypeId = mParent->getUnknownOSType()->id();
440
441 /* create associated BIOS settings object */
442 unconst (mBIOSSettings).createObject();
443 mBIOSSettings->init(this);
444
445#ifdef VBOX_VRDP
446 /* create an associated VRDPServer object (default is disabled) */
447 unconst (mVRDPServer).createObject();
448 mVRDPServer->init(this);
449#endif
450
451 /* create an associated DVD drive object */
452 unconst (mDVDDrive).createObject();
453 mDVDDrive->init (this);
454
455 /* create an associated floppy drive object */
456 unconst (mFloppyDrive).createObject();
457 mFloppyDrive->init (this);
458
459 /* create associated serial port objects */
460 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
461 {
462 unconst (mSerialPorts [slot]).createObject();
463 mSerialPorts [slot]->init (this, slot);
464 }
465
466 /* create associated parallel port objects */
467 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
468 {
469 unconst (mParallelPorts [slot]).createObject();
470 mParallelPorts [slot]->init (this, slot);
471 }
472
473 /* create the audio adapter object (always present, default is disabled) */
474 unconst (mAudioAdapter).createObject();
475 mAudioAdapter->init(this);
476
477 /* create the USB controller object (always present, default is disabled) */
478 unconst (mUSBController).createObject();
479 mUSBController->init(this);
480
481 /* create associated network adapter objects */
482 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
483 {
484 unconst (mNetworkAdapters [slot]).createObject();
485 mNetworkAdapters [slot]->init (this, slot);
486 }
487
488 if (aMode == Init_Registered)
489 {
490 /* store the supplied UUID (will be used to check for UUID consistency
491 * in loadSettings() */
492 unconst (mData->mUuid) = *aId;
493 /* try to load settings only if the settings file is accessible */
494 if (mData->mAccessible)
495 rc = registeredInit();
496 }
497 else
498 {
499 if (aMode != Init_New)
500 {
501 rc = loadSettings (false /* aRegistered */);
502 }
503 else
504 {
505 /* create the machine UUID */
506 unconst (mData->mUuid).create();
507
508 /* memorize the provided new machine's name */
509 mUserData->mName = aName;
510 mUserData->mNameSync = aNameSync;
511
512 /* initialize the default snapshots folder
513 * (note: depends on the name value set above!) */
514 rc = COMSETTER(SnapshotFolder) (NULL);
515 AssertComRC (rc);
516 }
517
518 /* commit all changes made during the initialization */
519 if (SUCCEEDED (rc))
520 commit();
521 }
522
523 /* Confirm a successful initialization when it's the case */
524 if (SUCCEEDED (rc))
525 {
526 if (mData->mAccessible)
527 autoInitSpan.setSucceeded();
528 else
529 autoInitSpan.setLimited();
530 }
531
532 LogFlowThisFunc (("mName='%ls', mRegistered=%RTbool, mAccessible=%RTbool "
533 "rc=%08X\n",
534 mUserData->mName.raw(), mData->mRegistered,
535 mData->mAccessible, rc));
536
537 LogFlowThisFuncLeave();
538
539 return rc;
540}
541
542/**
543 * Initializes the registered machine by loading the settings file.
544 * This method is separated from #init() in order to make it possible to
545 * retry the operation after VirtualBox startup instead of refusing to
546 * startup the whole VirtualBox server in case if the settings file of some
547 * registered VM is invalid or inaccessible.
548 *
549 * @note Must be always called from this object's write lock
550 * (unless called from #init() that doesn't need any locking).
551 * @note Locks the mUSBController method for writing.
552 * @note Subclasses must not call this method.
553 */
554HRESULT Machine::registeredInit()
555{
556 AssertReturn (mType == IsMachine, E_FAIL);
557 AssertReturn (!mData->mUuid.isEmpty(), E_FAIL);
558
559 HRESULT rc = S_OK;
560
561 if (!mData->mAccessible)
562 rc = lockConfig();
563
564 /* Temporarily reset the registered flag in order to let setters potentially
565 * called from loadSettings() succeed (isMutable() used in all setters
566 * will return FALSE for a Machine instance if mRegistered is TRUE). */
567 mData->mRegistered = FALSE;
568
569 if (SUCCEEDED (rc))
570 {
571 rc = loadSettings (true /* aRegistered */);
572
573 if (FAILED (rc))
574 unlockConfig();
575 }
576
577 if (SUCCEEDED (rc))
578 {
579 mData->mAccessible = TRUE;
580
581 /* commit all changes made during loading the settings file */
582 commit();
583
584 /* VirtualBox will not call trySetRegistered(), so
585 * inform the USB proxy about all attached USB filters */
586 mUSBController->onMachineRegistered (TRUE);
587 }
588 else
589 {
590 /* If the machine is registered, then, instead of returning a
591 * failure, we mark it as inaccessible and set the result to
592 * success to give it a try later */
593 mData->mAccessible = FALSE;
594 /* fetch the current error info */
595 mData->mAccessError = com::ErrorInfo();
596 LogWarning (("Machine {%Vuuid} is inaccessible! [%ls]\n",
597 mData->mUuid.raw(),
598 mData->mAccessError.getText().raw()));
599
600 /* rollback all changes */
601 rollback (false /* aNotify */);
602
603 rc = S_OK;
604 }
605
606 /* Restore the registered flag (even on failure) */
607 mData->mRegistered = TRUE;
608
609 return rc;
610}
611
612/**
613 * Uninitializes the instance.
614 * Called either from FinalRelease() or by the parent when it gets destroyed.
615 *
616 * @note The caller of this method must make sure that this object
617 * a) doesn't have active callers on the current thread and b) is not locked
618 * by the current thread; otherwise uninit() will hang either a) due to
619 * AutoUninitSpan waiting for a number of calls to drop to zero or b) due to
620 * a dead-lock caused by this thread waiting for all callers on the other
621 * threads are are done but preventing them from doing so by holding a lock.
622 */
623void Machine::uninit()
624{
625 LogFlowThisFuncEnter();
626
627 Assert (!isLockedOnCurrentThread());
628
629 /* Enclose the state transition Ready->InUninit->NotReady */
630 AutoUninitSpan autoUninitSpan (this);
631 if (autoUninitSpan.uninitDone())
632 return;
633
634 Assert (mType == IsMachine);
635 Assert (!!mData && !!mUserData && !!mHWData && !!mHDData && !!mSSData);
636
637 LogFlowThisFunc (("initFailed()=%d\n", autoUninitSpan.initFailed()));
638 LogFlowThisFunc (("mRegistered=%d\n", mData->mRegistered));
639
640 /*
641 * Enter this object's lock because there may be a SessionMachine instance
642 * somewhere around, that shares our data and lock but doesn't use our
643 * addCaller()/removeCaller(), and it may be also accessing the same
644 * data members. mParent lock is necessary as well because of
645 * SessionMachine::uninit(), etc.
646 */
647 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
648
649 if (!mData->mSession.mMachine.isNull())
650 {
651 /*
652 * Theoretically, this can only happen if the VirtualBox server has
653 * been terminated while there were clients running that owned open
654 * direct sessions. Since in this case we are definitely called by
655 * VirtualBox::uninit(), we may be sure that SessionMachine::uninit()
656 * won't happen on the client watcher thread (because it does
657 * VirtualBox::addCaller() for the duration of the
658 * SessionMachine::checkForDeath() call, so that VirtualBox::uninit()
659 * cannot happen until the VirtualBox caller is released). This is
660 * important, because SessionMachine::uninit() cannot correctly operate
661 * after we return from this method (it expects the Machine instance
662 * is still valid). We'll call it ourselves below.
663 */
664 LogWarningThisFunc (("Session machine is not NULL (%p), "
665 "the direct session is still open!\n",
666 (SessionMachine *) mData->mSession.mMachine));
667
668 if (mData->mMachineState >= MachineState_Running)
669 {
670 LogWarningThisFunc (("Setting state to Aborted!\n"));
671 /* set machine state using SessionMachine reimplementation */
672 static_cast <Machine *> (mData->mSession.mMachine)
673 ->setMachineState (MachineState_Aborted);
674 }
675
676 /*
677 * Uninitialize SessionMachine using public uninit() to indicate
678 * an unexpected uninitialization.
679 */
680 mData->mSession.mMachine->uninit();
681 /* SessionMachine::uninit() must set mSession.mMachine to null */
682 Assert (mData->mSession.mMachine.isNull());
683 }
684
685 /* the lock is no more necessary (SessionMachine is uninitialized) */
686 alock.leave();
687
688 /* make sure the configuration is unlocked */
689 unlockConfig();
690
691 if (isModified())
692 {
693 LogWarningThisFunc (("Discarding unsaved settings changes!\n"));
694 rollback (false /* aNotify */);
695 }
696
697 uninitDataAndChildObjects();
698
699 mParent->removeDependentChild (this);
700
701 LogFlowThisFuncLeave();
702}
703
704// IMachine properties
705/////////////////////////////////////////////////////////////////////////////
706
707STDMETHODIMP Machine::COMGETTER(Parent) (IVirtualBox **aParent)
708{
709 if (!aParent)
710 return E_POINTER;
711
712 AutoLimitedCaller autoCaller (this);
713 CheckComRCReturnRC (autoCaller.rc());
714
715 /* mParent is constant during life time, no need to lock */
716 mParent.queryInterfaceTo (aParent);
717
718 return S_OK;
719}
720
721STDMETHODIMP Machine::COMGETTER(Accessible) (BOOL *aAccessible)
722{
723 if (!aAccessible)
724 return E_POINTER;
725
726 AutoLimitedCaller autoCaller (this);
727 CheckComRCReturnRC (autoCaller.rc());
728
729 AutoLock alock (this);
730
731 HRESULT rc = S_OK;
732
733 if (!mData->mAccessible)
734 {
735 /* try to initialize the VM once more if not accessible */
736
737 AutoReadySpan autoReadySpan (this);
738 AssertReturn (autoReadySpan.isOk(), E_FAIL);
739
740 rc = registeredInit();
741
742 if (mData->mAccessible)
743 autoReadySpan.setSucceeded();
744 }
745
746 if (SUCCEEDED (rc))
747 *aAccessible = mData->mAccessible;
748
749 return rc;
750}
751
752STDMETHODIMP Machine::COMGETTER(AccessError) (IVirtualBoxErrorInfo **aAccessError)
753{
754 if (!aAccessError)
755 return E_POINTER;
756
757 AutoLimitedCaller autoCaller (this);
758 CheckComRCReturnRC (autoCaller.rc());
759
760 AutoReaderLock alock (this);
761
762 if (mData->mAccessible || !mData->mAccessError.isBasicAvailable())
763 {
764 /* return shortly */
765 aAccessError = NULL;
766 return S_OK;
767 }
768
769 HRESULT rc = S_OK;
770
771 ComObjPtr <VirtualBoxErrorInfo> errorInfo;
772 rc = errorInfo.createObject();
773 if (SUCCEEDED (rc))
774 {
775 errorInfo->init (mData->mAccessError.getResultCode(),
776 mData->mAccessError.getInterfaceID(),
777 mData->mAccessError.getComponent(),
778 mData->mAccessError.getText());
779 rc = errorInfo.queryInterfaceTo (aAccessError);
780 }
781
782 return rc;
783}
784
785STDMETHODIMP Machine::COMGETTER(Name) (BSTR *aName)
786{
787 if (!aName)
788 return E_POINTER;
789
790 AutoCaller autoCaller (this);
791 CheckComRCReturnRC (autoCaller.rc());
792
793 AutoReaderLock alock (this);
794
795 mUserData->mName.cloneTo (aName);
796
797 return S_OK;
798}
799
800STDMETHODIMP Machine::COMSETTER(Name) (INPTR BSTR aName)
801{
802 if (!aName)
803 return E_INVALIDARG;
804
805 if (!*aName)
806 return setError (E_INVALIDARG,
807 tr ("Machine name cannot be empty"));
808
809 AutoCaller autoCaller (this);
810 CheckComRCReturnRC (autoCaller.rc());
811
812 AutoLock alock (this);
813
814 HRESULT rc = checkStateDependency (MutableStateDep);
815 CheckComRCReturnRC (rc);
816
817 mUserData.backup();
818 mUserData->mName = aName;
819
820 return S_OK;
821}
822
823STDMETHODIMP Machine::COMGETTER(Description) (BSTR *aDescription)
824{
825 if (!aDescription)
826 return E_POINTER;
827
828 AutoCaller autoCaller (this);
829 CheckComRCReturnRC (autoCaller.rc());
830
831 AutoReaderLock alock (this);
832
833 mUserData->mDescription.cloneTo (aDescription);
834
835 return S_OK;
836}
837
838STDMETHODIMP Machine::COMSETTER(Description) (INPTR BSTR aDescription)
839{
840 AutoCaller autoCaller (this);
841 CheckComRCReturnRC (autoCaller.rc());
842
843 AutoLock alock (this);
844
845 HRESULT rc = checkStateDependency (MutableStateDep);
846 CheckComRCReturnRC (rc);
847
848 mUserData.backup();
849 mUserData->mDescription = aDescription;
850
851 return S_OK;
852}
853
854STDMETHODIMP Machine::COMGETTER(Id) (GUIDPARAMOUT aId)
855{
856 if (!aId)
857 return E_POINTER;
858
859 AutoLimitedCaller autoCaller (this);
860 CheckComRCReturnRC (autoCaller.rc());
861
862 AutoReaderLock alock (this);
863
864 mData->mUuid.cloneTo (aId);
865
866 return S_OK;
867}
868
869STDMETHODIMP Machine::COMGETTER(OSTypeId) (BSTR *aOSTypeId)
870{
871 if (!aOSTypeId)
872 return E_POINTER;
873
874 AutoCaller autoCaller (this);
875 CheckComRCReturnRC (autoCaller.rc());
876
877 AutoReaderLock alock (this);
878
879 mUserData->mOSTypeId.cloneTo (aOSTypeId);
880
881 return S_OK;
882}
883
884STDMETHODIMP Machine::COMSETTER(OSTypeId) (INPTR BSTR aOSTypeId)
885{
886 if (!aOSTypeId)
887 return E_INVALIDARG;
888
889 AutoCaller autoCaller (this);
890 CheckComRCReturnRC (autoCaller.rc());
891
892 /* look up the object by Id to check it is valid */
893 ComPtr <IGuestOSType> guestOSType;
894 HRESULT rc = mParent->GetGuestOSType (aOSTypeId,
895 guestOSType.asOutParam());
896 CheckComRCReturnRC (rc);
897
898 AutoLock alock (this);
899
900 rc = checkStateDependency (MutableStateDep);
901 CheckComRCReturnRC (rc);
902
903 mUserData.backup();
904 mUserData->mOSTypeId = aOSTypeId;
905
906 return S_OK;
907}
908
909STDMETHODIMP Machine::COMGETTER(MemorySize) (ULONG *memorySize)
910{
911 if (!memorySize)
912 return E_POINTER;
913
914 AutoCaller autoCaller (this);
915 CheckComRCReturnRC (autoCaller.rc());
916
917 AutoReaderLock alock (this);
918
919 *memorySize = mHWData->mMemorySize;
920
921 return S_OK;
922}
923
924STDMETHODIMP Machine::COMSETTER(MemorySize) (ULONG memorySize)
925{
926 /* check RAM limits */
927 if (memorySize < SchemaDefs::MinGuestRAM ||
928 memorySize > SchemaDefs::MaxGuestRAM)
929 return setError (E_INVALIDARG,
930 tr ("Invalid RAM size: %lu MB (must be in range [%lu, %lu] MB)"),
931 memorySize, SchemaDefs::MinGuestRAM, SchemaDefs::MaxGuestRAM);
932
933 AutoCaller autoCaller (this);
934 CheckComRCReturnRC (autoCaller.rc());
935
936 AutoLock alock (this);
937
938 HRESULT rc = checkStateDependency (MutableStateDep);
939 CheckComRCReturnRC (rc);
940
941 mHWData.backup();
942 mHWData->mMemorySize = memorySize;
943
944 return S_OK;
945}
946
947STDMETHODIMP Machine::COMGETTER(VRAMSize) (ULONG *memorySize)
948{
949 if (!memorySize)
950 return E_POINTER;
951
952 AutoCaller autoCaller (this);
953 CheckComRCReturnRC (autoCaller.rc());
954
955 AutoReaderLock alock (this);
956
957 *memorySize = mHWData->mVRAMSize;
958
959 return S_OK;
960}
961
962STDMETHODIMP Machine::COMSETTER(VRAMSize) (ULONG memorySize)
963{
964 /* check VRAM limits */
965 if (memorySize < SchemaDefs::MinGuestVRAM ||
966 memorySize > SchemaDefs::MaxGuestVRAM)
967 return setError (E_INVALIDARG,
968 tr ("Invalid VRAM size: %lu MB (must be in range [%lu, %lu] MB)"),
969 memorySize, SchemaDefs::MinGuestVRAM, SchemaDefs::MaxGuestVRAM);
970
971 AutoCaller autoCaller (this);
972 CheckComRCReturnRC (autoCaller.rc());
973
974 AutoLock alock (this);
975
976 HRESULT rc = checkStateDependency (MutableStateDep);
977 CheckComRCReturnRC (rc);
978
979 mHWData.backup();
980 mHWData->mVRAMSize = memorySize;
981
982 return S_OK;
983}
984
985/** @todo this method should not be public */
986STDMETHODIMP Machine::COMGETTER(MemoryBalloonSize) (ULONG *memoryBalloonSize)
987{
988 if (!memoryBalloonSize)
989 return E_POINTER;
990
991 AutoCaller autoCaller (this);
992 CheckComRCReturnRC (autoCaller.rc());
993
994 AutoReaderLock alock (this);
995
996 *memoryBalloonSize = mHWData->mMemoryBalloonSize;
997
998 return S_OK;
999}
1000
1001/** @todo this method should not be public */
1002STDMETHODIMP Machine::COMSETTER(MemoryBalloonSize) (ULONG memoryBalloonSize)
1003{
1004 /* check limits */
1005 if (memoryBalloonSize >= VMMDEV_MAX_MEMORY_BALLOON(mHWData->mMemorySize))
1006 return setError (E_INVALIDARG,
1007 tr ("Invalid memory balloon size: %lu MB (must be in range [%lu, %lu] MB)"),
1008 memoryBalloonSize, 0, VMMDEV_MAX_MEMORY_BALLOON(mHWData->mMemorySize));
1009
1010 AutoCaller autoCaller (this);
1011 CheckComRCReturnRC (autoCaller.rc());
1012
1013 AutoLock alock (this);
1014
1015 HRESULT rc = checkStateDependency (MutableStateDep);
1016 CheckComRCReturnRC (rc);
1017
1018 mHWData.backup();
1019 mHWData->mMemoryBalloonSize = memoryBalloonSize;
1020
1021 return S_OK;
1022}
1023
1024/** @todo this method should not be public */
1025STDMETHODIMP Machine::COMGETTER(StatisticsUpdateInterval) (ULONG *statisticsUpdateInterval)
1026{
1027 if (!statisticsUpdateInterval)
1028 return E_POINTER;
1029
1030 AutoCaller autoCaller (this);
1031 CheckComRCReturnRC (autoCaller.rc());
1032
1033 AutoReaderLock alock (this);
1034
1035 *statisticsUpdateInterval = mHWData->mStatisticsUpdateInterval;
1036
1037 return S_OK;
1038}
1039
1040/** @todo this method should not be public */
1041STDMETHODIMP Machine::COMSETTER(StatisticsUpdateInterval) (ULONG statisticsUpdateInterval)
1042{
1043 AutoCaller autoCaller (this);
1044 CheckComRCReturnRC (autoCaller.rc());
1045
1046 AutoLock alock (this);
1047
1048 HRESULT rc = checkStateDependency (MutableStateDep);
1049 CheckComRCReturnRC (rc);
1050
1051 mHWData.backup();
1052 mHWData->mStatisticsUpdateInterval = statisticsUpdateInterval;
1053
1054 return S_OK;
1055}
1056
1057
1058STDMETHODIMP Machine::COMGETTER(MonitorCount) (ULONG *monitorCount)
1059{
1060 if (!monitorCount)
1061 return E_POINTER;
1062
1063 AutoCaller autoCaller (this);
1064 CheckComRCReturnRC (autoCaller.rc());
1065
1066 AutoReaderLock alock (this);
1067
1068 *monitorCount = mHWData->mMonitorCount;
1069
1070 return S_OK;
1071}
1072
1073STDMETHODIMP Machine::COMSETTER(MonitorCount) (ULONG monitorCount)
1074{
1075 /* make sure monitor count is a sensible number */
1076 if (monitorCount < 1 || monitorCount > SchemaDefs::MaxGuestMonitors)
1077 return setError (E_INVALIDARG,
1078 tr ("Invalid monitor count: %lu (must be in range [%lu, %lu])"),
1079 monitorCount, 1, SchemaDefs::MaxGuestMonitors);
1080
1081 AutoCaller autoCaller (this);
1082 CheckComRCReturnRC (autoCaller.rc());
1083
1084 AutoLock alock (this);
1085
1086 HRESULT rc = checkStateDependency (MutableStateDep);
1087 CheckComRCReturnRC (rc);
1088
1089 mHWData.backup();
1090 mHWData->mMonitorCount = monitorCount;
1091
1092 return S_OK;
1093}
1094
1095STDMETHODIMP Machine::COMGETTER(BIOSSettings)(IBIOSSettings **biosSettings)
1096{
1097 if (!biosSettings)
1098 return E_POINTER;
1099
1100 AutoCaller autoCaller (this);
1101 CheckComRCReturnRC (autoCaller.rc());
1102
1103 /* mBIOSSettings is constant during life time, no need to lock */
1104 mBIOSSettings.queryInterfaceTo (biosSettings);
1105
1106 return S_OK;
1107}
1108
1109STDMETHODIMP Machine::COMGETTER(HWVirtExEnabled)(TriStateBool_T *enabled)
1110{
1111 if (!enabled)
1112 return E_POINTER;
1113
1114 AutoCaller autoCaller (this);
1115 CheckComRCReturnRC (autoCaller.rc());
1116
1117 AutoReaderLock alock (this);
1118
1119 *enabled = mHWData->mHWVirtExEnabled;
1120
1121 return S_OK;
1122}
1123
1124STDMETHODIMP Machine::COMSETTER(HWVirtExEnabled)(TriStateBool_T enable)
1125{
1126 AutoCaller autoCaller (this);
1127 CheckComRCReturnRC (autoCaller.rc());
1128
1129 AutoLock alock (this);
1130
1131 HRESULT rc = checkStateDependency (MutableStateDep);
1132 CheckComRCReturnRC (rc);
1133
1134 /** @todo check validity! */
1135
1136 mHWData.backup();
1137 mHWData->mHWVirtExEnabled = enable;
1138
1139 return S_OK;
1140}
1141
1142STDMETHODIMP Machine::COMGETTER(SnapshotFolder) (BSTR *aSnapshotFolder)
1143{
1144 if (!aSnapshotFolder)
1145 return E_POINTER;
1146
1147 AutoCaller autoCaller (this);
1148 CheckComRCReturnRC (autoCaller.rc());
1149
1150 AutoReaderLock alock (this);
1151
1152 mUserData->mSnapshotFolderFull.cloneTo (aSnapshotFolder);
1153
1154 return S_OK;
1155}
1156
1157STDMETHODIMP Machine::COMSETTER(SnapshotFolder) (INPTR BSTR aSnapshotFolder)
1158{
1159 /// @todo (r=dmik):
1160 // 1. Allow to change the name of the snapshot folder containing snapshots
1161 // 2. Rename the folder on disk instead of just changing the property
1162 // value (to be smart and not to leave garbage). Note that it cannot be
1163 // done here because the change may be rolled back. Thus, the right
1164 // place is #saveSettings().
1165
1166 AutoCaller autoCaller (this);
1167 CheckComRCReturnRC (autoCaller.rc());
1168
1169 AutoLock alock (this);
1170
1171 HRESULT rc = checkStateDependency (MutableStateDep);
1172 CheckComRCReturnRC (rc);
1173
1174 if (!mData->mCurrentSnapshot.isNull())
1175 return setError (E_FAIL,
1176 tr ("The snapshot folder of a machine with snapshots cannot "
1177 "be changed (please discard all snapshots first)"));
1178
1179 Utf8Str snapshotFolder = aSnapshotFolder;
1180
1181 if (snapshotFolder.isEmpty())
1182 {
1183 if (isInOwnDir())
1184 {
1185 /* the default snapshots folder is 'Snapshots' in the machine dir */
1186 snapshotFolder = Utf8Str ("Snapshots");
1187 }
1188 else
1189 {
1190 /* the default snapshots folder is {UUID}, for backwards
1191 * compatibility and to resolve conflicts */
1192 snapshotFolder = Utf8StrFmt ("{%Vuuid}", mData->mUuid.raw());
1193 }
1194 }
1195
1196 int vrc = calculateFullPath (snapshotFolder, snapshotFolder);
1197 if (VBOX_FAILURE (vrc))
1198 return setError (E_FAIL,
1199 tr ("Invalid snapshot folder: '%ls' (%Vrc)"),
1200 aSnapshotFolder, vrc);
1201
1202 mUserData.backup();
1203 mUserData->mSnapshotFolder = aSnapshotFolder;
1204 mUserData->mSnapshotFolderFull = snapshotFolder;
1205
1206 return S_OK;
1207}
1208
1209STDMETHODIMP Machine::COMGETTER(HardDiskAttachments) (IHardDiskAttachmentCollection **attachments)
1210{
1211 if (!attachments)
1212 return E_POINTER;
1213
1214 AutoCaller autoCaller (this);
1215 CheckComRCReturnRC (autoCaller.rc());
1216
1217 AutoReaderLock alock (this);
1218
1219 ComObjPtr <HardDiskAttachmentCollection> collection;
1220 collection.createObject();
1221 collection->init (mHDData->mHDAttachments);
1222 collection.queryInterfaceTo (attachments);
1223
1224 return S_OK;
1225}
1226
1227STDMETHODIMP Machine::COMGETTER(VRDPServer)(IVRDPServer **vrdpServer)
1228{
1229#ifdef VBOX_VRDP
1230 if (!vrdpServer)
1231 return E_POINTER;
1232
1233 AutoCaller autoCaller (this);
1234 CheckComRCReturnRC (autoCaller.rc());
1235
1236 AutoReaderLock alock (this);
1237
1238 Assert (!!mVRDPServer);
1239 mVRDPServer.queryInterfaceTo (vrdpServer);
1240
1241 return S_OK;
1242#else
1243 return E_NOTIMPL;
1244#endif
1245}
1246
1247STDMETHODIMP Machine::COMGETTER(DVDDrive) (IDVDDrive **dvdDrive)
1248{
1249 if (!dvdDrive)
1250 return E_POINTER;
1251
1252 AutoCaller autoCaller (this);
1253 CheckComRCReturnRC (autoCaller.rc());
1254
1255 AutoReaderLock alock (this);
1256
1257 Assert (!!mDVDDrive);
1258 mDVDDrive.queryInterfaceTo (dvdDrive);
1259 return S_OK;
1260}
1261
1262STDMETHODIMP Machine::COMGETTER(FloppyDrive) (IFloppyDrive **floppyDrive)
1263{
1264 if (!floppyDrive)
1265 return E_POINTER;
1266
1267 AutoCaller autoCaller (this);
1268 CheckComRCReturnRC (autoCaller.rc());
1269
1270 AutoReaderLock alock (this);
1271
1272 Assert (!!mFloppyDrive);
1273 mFloppyDrive.queryInterfaceTo (floppyDrive);
1274 return S_OK;
1275}
1276
1277STDMETHODIMP Machine::COMGETTER(AudioAdapter)(IAudioAdapter **audioAdapter)
1278{
1279 if (!audioAdapter)
1280 return E_POINTER;
1281
1282 AutoCaller autoCaller (this);
1283 CheckComRCReturnRC (autoCaller.rc());
1284
1285 AutoReaderLock alock (this);
1286
1287 mAudioAdapter.queryInterfaceTo (audioAdapter);
1288 return S_OK;
1289}
1290
1291STDMETHODIMP Machine::COMGETTER(USBController)(IUSBController * *a_ppUSBController)
1292{
1293#ifdef VBOX_WITH_USB
1294 if (!a_ppUSBController)
1295 return E_POINTER;
1296
1297 AutoCaller autoCaller (this);
1298 CheckComRCReturnRC (autoCaller.rc());
1299
1300 HRESULT rc = mParent->host()->checkUSBProxyService();
1301 CheckComRCReturnRC (rc);
1302
1303 AutoReaderLock alock (this);
1304
1305 mUSBController.queryInterfaceTo (a_ppUSBController);
1306 return S_OK;
1307#else
1308 /* Note: The GUI depends on this method returning E_NOTIMPL with no
1309 * extended error info to indicate that USB is simply not available
1310 * (w/o treting it as a failure), for example, as in OSE */
1311 return E_NOTIMPL;
1312#endif
1313}
1314
1315STDMETHODIMP Machine::COMGETTER(SettingsFilePath) (BSTR *filePath)
1316{
1317 if (!filePath)
1318 return E_POINTER;
1319
1320 AutoLimitedCaller autoCaller (this);
1321 CheckComRCReturnRC (autoCaller.rc());
1322
1323 AutoReaderLock alock (this);
1324
1325 mData->mConfigFileFull.cloneTo (filePath);
1326 return S_OK;
1327}
1328
1329STDMETHODIMP Machine::COMGETTER(SettingsModified) (BOOL *modified)
1330{
1331 if (!modified)
1332 return E_POINTER;
1333
1334 AutoCaller autoCaller (this);
1335 CheckComRCReturnRC (autoCaller.rc());
1336
1337 AutoLock alock (this);
1338
1339 HRESULT rc = checkStateDependency (MutableStateDep);
1340 CheckComRCReturnRC (rc);
1341
1342 if (!isConfigLocked())
1343 {
1344 /*
1345 * if we're ready and isConfigLocked() is FALSE then it means
1346 * that no config file exists yet, so always return TRUE
1347 */
1348 *modified = TRUE;
1349 }
1350 else
1351 {
1352 *modified = isModified();
1353 }
1354
1355 return S_OK;
1356}
1357
1358STDMETHODIMP Machine::COMGETTER(SessionState) (SessionState_T *aSessionState)
1359{
1360 if (!aSessionState)
1361 return E_POINTER;
1362
1363 AutoCaller autoCaller (this);
1364 CheckComRCReturnRC (autoCaller.rc());
1365
1366 AutoReaderLock alock (this);
1367
1368 *aSessionState = mData->mSession.mState;
1369
1370 return S_OK;
1371}
1372
1373STDMETHODIMP Machine::COMGETTER(SessionType) (BSTR *aSessionType)
1374{
1375 if (!aSessionType)
1376 return E_POINTER;
1377
1378 AutoCaller autoCaller (this);
1379 CheckComRCReturnRC (autoCaller.rc());
1380
1381 AutoReaderLock alock (this);
1382
1383 mData->mSession.mType.cloneTo (aSessionType);
1384
1385 return S_OK;
1386}
1387
1388STDMETHODIMP Machine::COMGETTER(SessionPid) (ULONG *aSessionPid)
1389{
1390 if (!aSessionPid)
1391 return E_POINTER;
1392
1393 AutoCaller autoCaller (this);
1394 CheckComRCReturnRC (autoCaller.rc());
1395
1396 AutoReaderLock alock (this);
1397
1398 *aSessionPid = mData->mSession.mPid;
1399
1400 return S_OK;
1401}
1402
1403STDMETHODIMP Machine::COMGETTER(State) (MachineState_T *machineState)
1404{
1405 if (!machineState)
1406 return E_POINTER;
1407
1408 AutoCaller autoCaller (this);
1409 CheckComRCReturnRC (autoCaller.rc());
1410
1411 AutoReaderLock alock (this);
1412
1413 *machineState = mData->mMachineState;
1414
1415 return S_OK;
1416}
1417
1418STDMETHODIMP Machine::COMGETTER(LastStateChange) (LONG64 *aLastStateChange)
1419{
1420 if (!aLastStateChange)
1421 return E_POINTER;
1422
1423 AutoCaller autoCaller (this);
1424 CheckComRCReturnRC (autoCaller.rc());
1425
1426 AutoReaderLock alock (this);
1427
1428 *aLastStateChange = mData->mLastStateChange;
1429
1430 return S_OK;
1431}
1432
1433STDMETHODIMP Machine::COMGETTER(StateFilePath) (BSTR *aStateFilePath)
1434{
1435 if (!aStateFilePath)
1436 return E_POINTER;
1437
1438 AutoCaller autoCaller (this);
1439 CheckComRCReturnRC (autoCaller.rc());
1440
1441 AutoReaderLock alock (this);
1442
1443 mSSData->mStateFilePath.cloneTo (aStateFilePath);
1444
1445 return S_OK;
1446}
1447
1448STDMETHODIMP Machine::COMGETTER(LogFolder) (BSTR *aLogFolder)
1449{
1450 if (!aLogFolder)
1451 return E_POINTER;
1452
1453 AutoCaller autoCaller (this);
1454 AssertComRCReturnRC (autoCaller.rc());
1455
1456 AutoReaderLock alock (this);
1457
1458 Utf8Str logFolder;
1459 getLogFolder (logFolder);
1460
1461 Bstr (logFolder).cloneTo (aLogFolder);
1462
1463 return S_OK;
1464}
1465
1466STDMETHODIMP Machine::COMGETTER(CurrentSnapshot) (ISnapshot **aCurrentSnapshot)
1467{
1468 if (!aCurrentSnapshot)
1469 return E_POINTER;
1470
1471 AutoCaller autoCaller (this);
1472 CheckComRCReturnRC (autoCaller.rc());
1473
1474 AutoReaderLock alock (this);
1475
1476 mData->mCurrentSnapshot.queryInterfaceTo (aCurrentSnapshot);
1477
1478 return S_OK;
1479}
1480
1481STDMETHODIMP Machine::COMGETTER(SnapshotCount) (ULONG *aSnapshotCount)
1482{
1483 if (!aSnapshotCount)
1484 return E_POINTER;
1485
1486 AutoCaller autoCaller (this);
1487 CheckComRCReturnRC (autoCaller.rc());
1488
1489 AutoReaderLock alock (this);
1490
1491 *aSnapshotCount = !mData->mFirstSnapshot ? 0 :
1492 mData->mFirstSnapshot->descendantCount() + 1 /* self */;
1493
1494 return S_OK;
1495}
1496
1497STDMETHODIMP Machine::COMGETTER(CurrentStateModified) (BOOL *aCurrentStateModified)
1498{
1499 if (!aCurrentStateModified)
1500 return E_POINTER;
1501
1502 AutoCaller autoCaller (this);
1503 CheckComRCReturnRC (autoCaller.rc());
1504
1505 AutoReaderLock alock (this);
1506
1507 /*
1508 * Note: for machines with no snapshots, we always return FALSE
1509 * (mData->mCurrentStateModified will be TRUE in this case, for historical
1510 * reasons :)
1511 */
1512
1513 *aCurrentStateModified = !mData->mFirstSnapshot ? FALSE :
1514 mData->mCurrentStateModified;
1515
1516 return S_OK;
1517}
1518
1519STDMETHODIMP
1520Machine::COMGETTER(SharedFolders) (ISharedFolderCollection **aSharedFolders)
1521{
1522 if (!aSharedFolders)
1523 return E_POINTER;
1524
1525 AutoCaller autoCaller (this);
1526 CheckComRCReturnRC (autoCaller.rc());
1527
1528 AutoReaderLock alock (this);
1529
1530 ComObjPtr <SharedFolderCollection> coll;
1531 coll.createObject();
1532 coll->init (mHWData->mSharedFolders);
1533 coll.queryInterfaceTo (aSharedFolders);
1534
1535 return S_OK;
1536}
1537
1538STDMETHODIMP
1539Machine::COMGETTER(ClipboardMode) (ClipboardMode_T *aClipboardMode)
1540{
1541 if (!aClipboardMode)
1542 return E_POINTER;
1543
1544 AutoCaller autoCaller (this);
1545 CheckComRCReturnRC (autoCaller.rc());
1546
1547 AutoReaderLock alock (this);
1548
1549 *aClipboardMode = mHWData->mClipboardMode;
1550
1551 return S_OK;
1552}
1553
1554STDMETHODIMP
1555Machine::COMSETTER(ClipboardMode) (ClipboardMode_T aClipboardMode)
1556{
1557 AutoCaller autoCaller (this);
1558 CheckComRCReturnRC (autoCaller.rc());
1559
1560 AutoLock alock (this);
1561
1562 HRESULT rc = checkStateDependency (MutableStateDep);
1563 CheckComRCReturnRC (rc);
1564
1565 mHWData.backup();
1566 mHWData->mClipboardMode = aClipboardMode;
1567
1568 return S_OK;
1569}
1570
1571// IMachine methods
1572/////////////////////////////////////////////////////////////////////////////
1573
1574STDMETHODIMP Machine::SetBootOrder (ULONG aPosition, DeviceType_T aDevice)
1575{
1576 if (aPosition < 1 || aPosition > SchemaDefs::MaxBootPosition)
1577 return setError (E_INVALIDARG,
1578 tr ("Invalid boot position: %lu (must be in range [1, %lu])"),
1579 aPosition, SchemaDefs::MaxBootPosition);
1580
1581 if (aDevice == DeviceType_USBDevice)
1582 return setError (E_FAIL,
1583 tr ("Booting from USB devices is not currently supported"));
1584
1585 AutoCaller autoCaller (this);
1586 CheckComRCReturnRC (autoCaller.rc());
1587
1588 AutoLock alock (this);
1589
1590 HRESULT rc = checkStateDependency (MutableStateDep);
1591 CheckComRCReturnRC (rc);
1592
1593 mHWData.backup();
1594 mHWData->mBootOrder [aPosition - 1] = aDevice;
1595
1596 return S_OK;
1597}
1598
1599STDMETHODIMP Machine::GetBootOrder (ULONG aPosition, DeviceType_T *aDevice)
1600{
1601 if (aPosition < 1 || aPosition > SchemaDefs::MaxBootPosition)
1602 return setError (E_INVALIDARG,
1603 tr ("Invalid boot position: %lu (must be in range [1, %lu])"),
1604 aPosition, SchemaDefs::MaxBootPosition);
1605
1606 AutoCaller autoCaller (this);
1607 CheckComRCReturnRC (autoCaller.rc());
1608
1609 AutoReaderLock alock (this);
1610
1611 *aDevice = mHWData->mBootOrder [aPosition - 1];
1612
1613 return S_OK;
1614}
1615
1616STDMETHODIMP Machine::AttachHardDisk (INPTR GUIDPARAM aId,
1617 DiskControllerType_T aCtl, LONG aDev)
1618{
1619 Guid id = aId;
1620
1621 if (id.isEmpty() ||
1622 aCtl == DiskControllerType_InvalidController ||
1623 aDev < 0 || aDev > 1)
1624 return E_INVALIDARG;
1625
1626 AutoCaller autoCaller (this);
1627 CheckComRCReturnRC (autoCaller.rc());
1628
1629 AutoLock alock (this);
1630
1631 HRESULT rc = checkStateDependency (MutableStateDep);
1632 CheckComRCReturnRC (rc);
1633
1634 if (!mData->mRegistered)
1635 return setError (E_FAIL,
1636 tr ("Cannot attach hard disks to an unregistered machine"));
1637
1638 AssertReturn (mData->mMachineState != MachineState_Saved, E_FAIL);
1639
1640 if (mData->mMachineState >= MachineState_Running)
1641 return setError (E_FAIL,
1642 tr ("Invalid machine state: %d"), mData->mMachineState);
1643
1644 /* see if the device on the controller is already busy */
1645 for (HDData::HDAttachmentList::const_iterator it = mHDData->mHDAttachments.begin();
1646 it != mHDData->mHDAttachments.end(); ++ it)
1647 {
1648 ComObjPtr <HardDiskAttachment> hda = *it;
1649 if (hda->controller() == aCtl && hda->deviceNumber() == aDev)
1650 {
1651 ComObjPtr <HardDisk> hd = hda->hardDisk();
1652 AutoLock hdLock (hd);
1653 return setError (E_FAIL,
1654 tr ("Hard disk '%ls' is already attached to device slot %d "
1655 "on controller %d"),
1656 hd->toString().raw(), aDev, aCtl);
1657 }
1658 }
1659
1660 /* find a hard disk by UUID */
1661 ComObjPtr <HardDisk> hd;
1662 rc = mParent->getHardDisk (id, hd);
1663 CheckComRCReturnRC (rc);
1664
1665 AutoLock hdLock (hd);
1666
1667 if (hd->isDifferencing())
1668 return setError (E_FAIL,
1669 tr ("Cannot attach the differencing hard disk '%ls'"),
1670 hd->toString().raw());
1671
1672 bool dirty = false;
1673
1674 switch (hd->type())
1675 {
1676 case HardDiskType_ImmutableHardDisk:
1677 {
1678 Assert (hd->machineId().isEmpty());
1679 /*
1680 * increase readers to protect from unregistration
1681 * until rollback()/commit() is done
1682 */
1683 hd->addReader();
1684 Log3 (("A: %ls proteced\n", hd->toString().raw()));
1685 dirty = true;
1686 break;
1687 }
1688 case HardDiskType_WritethroughHardDisk:
1689 {
1690 Assert (hd->children().size() == 0);
1691 Assert (hd->snapshotId().isEmpty());
1692 /* fall through */
1693 }
1694 case HardDiskType_NormalHardDisk:
1695 {
1696 if (hd->machineId().isEmpty())
1697 {
1698 /* attach directly */
1699 hd->setMachineId (mData->mUuid);
1700 Log3 (("A: %ls associated with %Vuuid\n",
1701 hd->toString().raw(), mData->mUuid.raw()));
1702 dirty = true;
1703 }
1704 else
1705 {
1706 /* determine what the hard disk is already attached to */
1707 if (hd->snapshotId().isEmpty())
1708 {
1709 /* attached to some VM in its current state */
1710 if (hd->machineId() == mData->mUuid)
1711 {
1712 /*
1713 * attached to us, either in the backed up list of the
1714 * attachments or in the current one; the former is ok
1715 * (reattachment takes place within the same
1716 * "transaction") the latter is an error so check for it
1717 */
1718 for (HDData::HDAttachmentList::const_iterator it =
1719 mHDData->mHDAttachments.begin();
1720 it != mHDData->mHDAttachments.end(); ++ it)
1721 {
1722 if ((*it)->hardDisk().equalsTo (hd))
1723 {
1724 return setError (E_FAIL,
1725 tr ("Normal/Writethrough hard disk '%ls' is "
1726 "currently attached to device slot %d "
1727 "on controller %d of this machine"),
1728 hd->toString().raw(),
1729 (*it)->deviceNumber(), (*it)->controller());
1730 }
1731 }
1732 /*
1733 * dirty = false to indicate we didn't set machineId
1734 * and prevent it from being reset in DetachHardDisk()
1735 */
1736 Log3 (("A: %ls found in old\n", hd->toString().raw()));
1737 }
1738 else
1739 {
1740 /* attached to other VM */
1741 return setError (E_FAIL,
1742 tr ("Normal/Writethrough hard disk '%ls' is "
1743 "currently attached to a machine with "
1744 "UUID {%Vuuid}"),
1745 hd->toString().raw(), hd->machineId().raw());
1746 }
1747 }
1748 else
1749 {
1750 /*
1751 * here we go when the HardDiskType_NormalHardDisk
1752 * is attached to some VM (probably to this one, too)
1753 * at some particular snapshot, so we can create a diff
1754 * based on it
1755 */
1756 Assert (!hd->machineId().isEmpty());
1757 /*
1758 * increase readers to protect from unregistration
1759 * until rollback()/commit() is done
1760 */
1761 hd->addReader();
1762 Log3 (("A: %ls proteced\n", hd->toString().raw()));
1763 dirty = true;
1764 }
1765 }
1766
1767 break;
1768 }
1769 }
1770
1771 ComObjPtr <HardDiskAttachment> attachment;
1772 attachment.createObject();
1773 attachment->init (hd, aCtl, aDev, dirty);
1774
1775 mHDData.backup();
1776 mHDData->mHDAttachments.push_back (attachment);
1777 Log3 (("A: %ls attached\n", hd->toString().raw()));
1778
1779 /* note: diff images are actually created only in commit() */
1780
1781 return S_OK;
1782}
1783
1784STDMETHODIMP Machine::GetHardDisk (DiskControllerType_T aCtl,
1785 LONG aDev, IHardDisk **aHardDisk)
1786{
1787 if (aCtl == DiskControllerType_InvalidController ||
1788 aDev < 0 || aDev > 1)
1789 return E_INVALIDARG;
1790
1791 AutoCaller autoCaller (this);
1792 CheckComRCReturnRC (autoCaller.rc());
1793
1794 AutoReaderLock alock (this);
1795
1796 *aHardDisk = NULL;
1797
1798 for (HDData::HDAttachmentList::const_iterator it = mHDData->mHDAttachments.begin();
1799 it != mHDData->mHDAttachments.end(); ++ it)
1800 {
1801 ComObjPtr <HardDiskAttachment> hda = *it;
1802 if (hda->controller() == aCtl && hda->deviceNumber() == aDev)
1803 {
1804 hda->hardDisk().queryInterfaceTo (aHardDisk);
1805 return S_OK;
1806 }
1807 }
1808
1809 return setError (E_INVALIDARG,
1810 tr ("No hard disk attached to device slot %d on controller %d"),
1811 aDev, aCtl);
1812}
1813
1814STDMETHODIMP Machine::DetachHardDisk (DiskControllerType_T aCtl, LONG aDev)
1815{
1816 if (aCtl == DiskControllerType_InvalidController ||
1817 aDev < 0 || aDev > 1)
1818 return E_INVALIDARG;
1819
1820 AutoCaller autoCaller (this);
1821 CheckComRCReturnRC (autoCaller.rc());
1822
1823 AutoLock alock (this);
1824
1825 HRESULT rc = checkStateDependency (MutableStateDep);
1826 CheckComRCReturnRC (rc);
1827
1828 AssertReturn (mData->mMachineState != MachineState_Saved, E_FAIL);
1829
1830 if (mData->mMachineState >= MachineState_Running)
1831 return setError (E_FAIL,
1832 tr ("Invalid machine state: %d"), mData->mMachineState);
1833
1834 for (HDData::HDAttachmentList::iterator it = mHDData->mHDAttachments.begin();
1835 it != mHDData->mHDAttachments.end(); ++ it)
1836 {
1837 ComObjPtr <HardDiskAttachment> hda = *it;
1838 if (hda->controller() == aCtl && hda->deviceNumber() == aDev)
1839 {
1840 ComObjPtr <HardDisk> hd = hda->hardDisk();
1841 AutoLock hdLock (hd);
1842
1843 ComAssertRet (hd->children().size() == 0 &&
1844 hd->machineId() == mData->mUuid, E_FAIL);
1845
1846 if (hda->isDirty())
1847 {
1848 switch (hd->type())
1849 {
1850 case HardDiskType_ImmutableHardDisk:
1851 {
1852 /* decrease readers increased in AttachHardDisk() */
1853 hd->releaseReader();
1854 Log3 (("D: %ls released\n", hd->toString().raw()));
1855 break;
1856 }
1857 case HardDiskType_WritethroughHardDisk:
1858 {
1859 /* deassociate from this machine */
1860 hd->setMachineId (Guid());
1861 Log3 (("D: %ls deassociated\n", hd->toString().raw()));
1862 break;
1863 }
1864 case HardDiskType_NormalHardDisk:
1865 {
1866 if (hd->snapshotId().isEmpty())
1867 {
1868 /* deassociate from this machine */
1869 hd->setMachineId (Guid());
1870 Log3 (("D: %ls deassociated\n", hd->toString().raw()));
1871 }
1872 else
1873 {
1874 /* decrease readers increased in AttachHardDisk() */
1875 hd->releaseReader();
1876 Log3 (("%ls released\n", hd->toString().raw()));
1877 }
1878
1879 break;
1880 }
1881 }
1882 }
1883
1884 mHDData.backup();
1885 /*
1886 * we cannot use erase (it) below because backup() above will create
1887 * a copy of the list and make this copy active, but the iterator
1888 * still refers to the original and is not valid for a copy
1889 */
1890 mHDData->mHDAttachments.remove (hda);
1891 Log3 (("D: %ls detached\n", hd->toString().raw()));
1892
1893 /*
1894 * note: Non-dirty hard disks are actually deassociated
1895 * and diff images are deleted only in commit()
1896 */
1897
1898 return S_OK;
1899 }
1900 }
1901
1902 return setError (E_INVALIDARG,
1903 tr ("No hard disk attached to device slot %d on controller %d"),
1904 aDev, aCtl);
1905}
1906
1907STDMETHODIMP Machine::GetSerialPort (ULONG slot, ISerialPort **port)
1908{
1909 if (!port)
1910 return E_POINTER;
1911 if (slot >= ELEMENTS (mSerialPorts))
1912 return setError (E_INVALIDARG, tr ("Invalid slot number: %d"), slot);
1913
1914 AutoCaller autoCaller (this);
1915 CheckComRCReturnRC (autoCaller.rc());
1916
1917 AutoReaderLock alock (this);
1918
1919 mSerialPorts [slot].queryInterfaceTo (port);
1920
1921 return S_OK;
1922}
1923
1924STDMETHODIMP Machine::GetParallelPort (ULONG slot, IParallelPort **port)
1925{
1926 if (!port)
1927 return E_POINTER;
1928 if (slot >= ELEMENTS (mParallelPorts))
1929 return setError (E_INVALIDARG, tr ("Invalid slot number: %d"), slot);
1930
1931 AutoCaller autoCaller (this);
1932 CheckComRCReturnRC (autoCaller.rc());
1933
1934 AutoReaderLock alock (this);
1935
1936 mParallelPorts [slot].queryInterfaceTo (port);
1937
1938 return S_OK;
1939}
1940
1941STDMETHODIMP Machine::GetNetworkAdapter (ULONG slot, INetworkAdapter **adapter)
1942{
1943 if (!adapter)
1944 return E_POINTER;
1945 if (slot >= ELEMENTS (mNetworkAdapters))
1946 return setError (E_INVALIDARG, tr ("Invalid slot number: %d"), slot);
1947
1948 AutoCaller autoCaller (this);
1949 CheckComRCReturnRC (autoCaller.rc());
1950
1951 AutoReaderLock alock (this);
1952
1953 mNetworkAdapters [slot].queryInterfaceTo (adapter);
1954
1955 return S_OK;
1956}
1957
1958STDMETHODIMP Machine::GetNextExtraDataKey (INPTR BSTR aKey, BSTR *aNextKey, BSTR *aNextValue)
1959{
1960 if (!aNextKey)
1961 return E_POINTER;
1962
1963 AutoCaller autoCaller (this);
1964 CheckComRCReturnRC (autoCaller.rc());
1965
1966 AutoReaderLock alock (this);
1967
1968 /* start with nothing found */
1969 *aNextKey = NULL;
1970
1971 /*
1972 * if we're ready and isConfigLocked() is FALSE then it means
1973 * that no config file exists yet, so return shortly
1974 */
1975 if (!isConfigLocked())
1976 return S_OK;
1977
1978 HRESULT rc = S_OK;
1979
1980 /* load the config file */
1981 CFGHANDLE configLoader = 0;
1982 rc = openConfigLoader (&configLoader);
1983 if (FAILED (rc))
1984 return E_FAIL;
1985
1986 CFGNODE machineNode;
1987 CFGNODE extraDataNode;
1988
1989 /* navigate to the right position */
1990 if (VBOX_SUCCESS(CFGLDRGetNode(configLoader, "VirtualBox/Machine", 0, &machineNode)) &&
1991 VBOX_SUCCESS(CFGLDRGetChildNode(machineNode, "ExtraData", 0, &extraDataNode)))
1992 {
1993 /* check if it exists */
1994 bool found = false;
1995 unsigned count;
1996 CFGNODE extraDataItemNode;
1997 CFGLDRCountChildren(extraDataNode, "ExtraDataItem", &count);
1998 for (unsigned i = 0; (i < count) && (found == false); i++)
1999 {
2000 Bstr name;
2001 CFGLDRGetChildNode(extraDataNode, "ExtraDataItem", i, &extraDataItemNode);
2002 CFGLDRQueryBSTR(extraDataItemNode, "name", name.asOutParam());
2003
2004 /* if we're supposed to return the first one */
2005 if (aKey == NULL)
2006 {
2007 name.cloneTo(aNextKey);
2008 if (aNextValue)
2009 CFGLDRQueryBSTR(extraDataItemNode, "value", aNextValue);
2010 found = true;
2011 }
2012 /* did we find the key we're looking for? */
2013 else if (name == aKey)
2014 {
2015 found = true;
2016 /* is there another item? */
2017 if (i + 1 < count)
2018 {
2019 CFGLDRGetChildNode(extraDataNode, "ExtraDataItem", i + 1, &extraDataItemNode);
2020 CFGLDRQueryBSTR(extraDataItemNode, "name", name.asOutParam());
2021 name.cloneTo(aNextKey);
2022 if (aNextValue)
2023 CFGLDRQueryBSTR(extraDataItemNode, "value", aNextValue);
2024 found = true;
2025 }
2026 else
2027 {
2028 /* it's the last one */
2029 *aNextKey = NULL;
2030 }
2031 }
2032 CFGLDRReleaseNode(extraDataItemNode);
2033 }
2034
2035 /* if we haven't found the key, it's an error */
2036 if (!found)
2037 rc = setError(E_FAIL, tr("Could not find extra data key"));
2038
2039 CFGLDRReleaseNode(extraDataNode);
2040 CFGLDRReleaseNode(machineNode);
2041 }
2042
2043 closeConfigLoader (configLoader, false /* aSaveBeforeClose */);
2044
2045 return rc;
2046}
2047
2048STDMETHODIMP Machine::GetExtraData (INPTR BSTR aKey, BSTR *aValue)
2049{
2050 if (!aKey)
2051 return E_INVALIDARG;
2052 if (!aValue)
2053 return E_POINTER;
2054
2055 AutoCaller autoCaller (this);
2056 CheckComRCReturnRC (autoCaller.rc());
2057
2058 AutoReaderLock alock (this);
2059
2060 /* start with nothing found */
2061 *aValue = NULL;
2062
2063 /*
2064 * if we're ready and isConfigLocked() is FALSE then it means
2065 * that no config file exists yet, so return shortly
2066 */
2067 if (!isConfigLocked())
2068 return S_OK;
2069
2070 HRESULT rc = S_OK;
2071
2072 /* load the config file */
2073 CFGHANDLE configLoader = 0;
2074 rc = openConfigLoader (&configLoader);
2075 if (FAILED (rc))
2076 return E_FAIL;
2077
2078 CFGNODE machineNode;
2079 CFGNODE extraDataNode;
2080
2081 /* navigate to the right position */
2082 if (VBOX_SUCCESS(CFGLDRGetNode(configLoader, "VirtualBox/Machine", 0, &machineNode)) &&
2083 VBOX_SUCCESS(CFGLDRGetChildNode(machineNode, "ExtraData", 0, &extraDataNode)))
2084 {
2085 /* check if it exists */
2086 bool found = false;
2087 unsigned count;
2088 CFGNODE extraDataItemNode;
2089 CFGLDRCountChildren(extraDataNode, "ExtraDataItem", &count);
2090 for (unsigned i = 0; (i < count) && (found == false); i++)
2091 {
2092 Bstr name;
2093 CFGLDRGetChildNode(extraDataNode, "ExtraDataItem", i, &extraDataItemNode);
2094 CFGLDRQueryBSTR(extraDataItemNode, "name", name.asOutParam());
2095 if (name == aKey)
2096 {
2097 found = true;
2098 CFGLDRQueryBSTR(extraDataItemNode, "value", aValue);
2099 }
2100 CFGLDRReleaseNode(extraDataItemNode);
2101 }
2102
2103 CFGLDRReleaseNode(extraDataNode);
2104 CFGLDRReleaseNode(machineNode);
2105 }
2106
2107 rc = closeConfigLoader (configLoader, false /* aSaveBeforeClose */);
2108
2109 return rc;
2110}
2111
2112/**
2113 * @note Locks mParent for reading + this object for writing.
2114 */
2115STDMETHODIMP Machine::SetExtraData (INPTR BSTR aKey, INPTR BSTR aValue)
2116{
2117 if (!aKey)
2118 return E_INVALIDARG;
2119
2120 AutoCaller autoCaller (this);
2121 CheckComRCReturnRC (autoCaller.rc());
2122
2123 /* VirtualBox::onExtraDataCanChange() needs mParent lock */
2124 AutoMultiLock <2> alock (mParent->rlock(), this->wlock());
2125
2126 if (mType == IsSnapshotMachine)
2127 {
2128 HRESULT rc = checkStateDependency (MutableStateDep);
2129 CheckComRCReturnRC (rc);
2130 }
2131
2132 bool changed = false;
2133 HRESULT rc = S_OK;
2134
2135 /*
2136 * if we're ready and isConfigLocked() is FALSE then it means
2137 * that no config file exists yet, so call saveSettings() to create one
2138 */
2139 if (!isConfigLocked())
2140 {
2141 rc = saveSettings (false /* aMarkCurStateAsModified */);
2142 if (FAILED (rc))
2143 return rc;
2144 }
2145
2146 /* load the config file */
2147 CFGHANDLE configLoader = 0;
2148 rc = openConfigLoader (&configLoader);
2149 if (FAILED (rc))
2150 return rc;
2151
2152 CFGNODE machineNode = 0;
2153 CFGNODE extraDataNode = 0;
2154
2155 int vrc = CFGLDRGetNode (configLoader, "VirtualBox/Machine", 0, &machineNode);
2156 if (VBOX_FAILURE (vrc))
2157 vrc = CFGLDRCreateNode (configLoader, "VirtualBox/Machine", &machineNode);
2158
2159 vrc = CFGLDRGetChildNode (machineNode, "ExtraData", 0, &extraDataNode);
2160 if (VBOX_FAILURE (vrc) && aValue)
2161 vrc = CFGLDRCreateChildNode (machineNode, "ExtraData", &extraDataNode);
2162
2163 if (extraDataNode)
2164 {
2165 CFGNODE extraDataItemNode = 0;
2166 Bstr oldVal;
2167
2168 unsigned count;
2169 CFGLDRCountChildren (extraDataNode, "ExtraDataItem", &count);
2170
2171 for (unsigned i = 0; i < count; i++)
2172 {
2173 CFGLDRGetChildNode (extraDataNode, "ExtraDataItem", i, &extraDataItemNode);
2174 Bstr name;
2175 CFGLDRQueryBSTR (extraDataItemNode, "name", name.asOutParam());
2176 if (name == aKey)
2177 {
2178 CFGLDRQueryBSTR (extraDataItemNode, "value", oldVal.asOutParam());
2179 break;
2180 }
2181 CFGLDRReleaseNode (extraDataItemNode);
2182 extraDataItemNode = 0;
2183 }
2184
2185 /*
2186 * When no key is found, oldVal is null
2187 * Note:
2188 * 1. when oldVal is null, |oldVal == (BSTR) NULL| is true
2189 * 2. we cannot do |oldVal != aValue| because it will compare
2190 * BSTR pointers instead of strings (due to type conversion ops)
2191 */
2192 changed = !(oldVal == aValue);
2193
2194 if (changed)
2195 {
2196 /* ask for permission from all listeners */
2197 Bstr error;
2198 if (!mParent->onExtraDataCanChange (mData->mUuid, aKey, aValue, error))
2199 {
2200 const char *sep = error.isEmpty() ? "" : ": ";
2201 const BSTR err = error.isNull() ? (const BSTR) L"" : error.raw();
2202 LogWarningFunc (("Someone vetoed! Change refused%s%ls\n",
2203 sep, err));
2204 rc = setError (E_ACCESSDENIED,
2205 tr ("Could not set extra data because someone refused "
2206 "the requested change of '%ls' to '%ls'%s%ls"),
2207 aKey, aValue, sep, err);
2208 }
2209 else
2210 {
2211 if (aValue)
2212 {
2213 if (!extraDataItemNode)
2214 {
2215 /* create a new item */
2216 CFGLDRAppendChildNode (extraDataNode, "ExtraDataItem",
2217 &extraDataItemNode);
2218 CFGLDRSetBSTR (extraDataItemNode, "name", aKey);
2219 }
2220 CFGLDRSetBSTR (extraDataItemNode, "value", aValue);
2221 }
2222 else
2223 {
2224 /* an old value does for sure exist here */
2225 CFGLDRDeleteNode (extraDataItemNode);
2226 extraDataItemNode = 0;
2227 }
2228 }
2229 }
2230
2231 if (extraDataItemNode)
2232 CFGLDRReleaseNode (extraDataItemNode);
2233
2234 CFGLDRReleaseNode (extraDataNode);
2235 }
2236
2237 CFGLDRReleaseNode (machineNode);
2238
2239 if (SUCCEEDED (rc) && changed)
2240 rc = closeConfigLoader (configLoader, true /* aSaveBeforeClose */);
2241 else
2242 closeConfigLoader (configLoader, false /* aSaveBeforeClose */);
2243
2244 /* fire an event */
2245 if (SUCCEEDED (rc) && changed)
2246 {
2247 mParent->onExtraDataChange (mData->mUuid, aKey, aValue);
2248 }
2249
2250 return rc;
2251}
2252
2253STDMETHODIMP Machine::SaveSettings()
2254{
2255 AutoCaller autoCaller (this);
2256 CheckComRCReturnRC (autoCaller.rc());
2257
2258 /* Under some circumstancies, saveSettings() needs mParent lock */
2259 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
2260
2261 HRESULT rc = checkStateDependency (MutableStateDep);
2262 CheckComRCReturnRC (rc);
2263
2264 /* the settings file path may never be null */
2265 ComAssertRet (mData->mConfigFileFull, E_FAIL);
2266
2267 /* save all VM data excluding snapshots */
2268 return saveSettings();
2269}
2270
2271STDMETHODIMP Machine::DiscardSettings()
2272{
2273 AutoCaller autoCaller (this);
2274 CheckComRCReturnRC (autoCaller.rc());
2275
2276 AutoLock alock (this);
2277
2278 HRESULT rc = checkStateDependency (MutableStateDep);
2279 CheckComRCReturnRC (rc);
2280
2281 /*
2282 * during this rollback, the session will be notified if data has
2283 * been actually changed
2284 */
2285 rollback (true /* aNotify */);
2286
2287 return S_OK;
2288}
2289
2290STDMETHODIMP Machine::DeleteSettings()
2291{
2292 AutoCaller autoCaller (this);
2293 CheckComRCReturnRC (autoCaller.rc());
2294
2295 AutoLock alock (this);
2296
2297 HRESULT rc = checkStateDependency (MutableStateDep);
2298 CheckComRCReturnRC (rc);
2299
2300 if (mData->mRegistered)
2301 return setError (E_FAIL,
2302 tr ("Cannot delete settings of a registered machine"));
2303
2304 /* delete the settings only when the file actually exists */
2305 if (isConfigLocked())
2306 {
2307 unlockConfig();
2308 int vrc = RTFileDelete (Utf8Str (mData->mConfigFileFull));
2309 if (VBOX_FAILURE (vrc))
2310 return setError (E_FAIL,
2311 tr ("Could not delete the settings file '%ls' (%Vrc)"),
2312 mData->mConfigFileFull.raw(), vrc);
2313
2314 /* delete the Logs folder, nothing important should be left
2315 * there (we don't check for errors because the user might have
2316 * some private files there that we don't want to delete) */
2317 Utf8Str logFolder;
2318 getLogFolder (logFolder);
2319 Assert (!logFolder.isEmpty());
2320 if (RTDirExists (logFolder))
2321 {
2322 /* Delete all VBox.log[.N] files from the Logs folder
2323 * (this must be in sync with the rotation logic in
2324 * Console::powerUpThread()). Also, delete the VBox.png[.N]
2325 * files that may have been created by the GUI. */
2326 Utf8Str log = Utf8StrFmt ("%s/VBox.log", logFolder.raw());
2327 RTFileDelete (log);
2328 log = Utf8StrFmt ("%s/VBox.png", logFolder.raw());
2329 RTFileDelete (log);
2330 for (int i = 3; i >= 0; i--)
2331 {
2332 log = Utf8StrFmt ("%s/VBox.log.%d", logFolder.raw(), i);
2333 RTFileDelete (log);
2334 log = Utf8StrFmt ("%s/VBox.png.%d", logFolder.raw(), i);
2335 RTFileDelete (log);
2336 }
2337
2338 RTDirRemove (logFolder);
2339 }
2340
2341 /* delete the Snapshots folder, nothing important should be left
2342 * there (we don't check for errors because the user might have
2343 * some private files there that we don't want to delete) */
2344 Utf8Str snapshotFolder = mUserData->mSnapshotFolderFull;
2345 Assert (!snapshotFolder.isEmpty());
2346 if (RTDirExists (snapshotFolder))
2347 RTDirRemove (snapshotFolder);
2348
2349 /* delete the directory that contains the settings file, but only
2350 * if it matches the VM name (i.e. a structure created by default in
2351 * openConfigLoader()) */
2352 {
2353 Utf8Str settingsDir;
2354 if (isInOwnDir (&settingsDir))
2355 RTDirRemove (settingsDir);
2356 }
2357 }
2358
2359 return S_OK;
2360}
2361
2362STDMETHODIMP Machine::GetSnapshot (INPTR GUIDPARAM aId, ISnapshot **aSnapshot)
2363{
2364 if (!aSnapshot)
2365 return E_POINTER;
2366
2367 AutoCaller autoCaller (this);
2368 CheckComRCReturnRC (autoCaller.rc());
2369
2370 AutoReaderLock alock (this);
2371
2372 Guid id = aId;
2373 ComObjPtr <Snapshot> snapshot;
2374
2375 HRESULT rc = findSnapshot (id, snapshot, true /* aSetError */);
2376 snapshot.queryInterfaceTo (aSnapshot);
2377
2378 return rc;
2379}
2380
2381STDMETHODIMP Machine::FindSnapshot (INPTR BSTR aName, ISnapshot **aSnapshot)
2382{
2383 if (!aName)
2384 return E_INVALIDARG;
2385 if (!aSnapshot)
2386 return E_POINTER;
2387
2388 AutoCaller autoCaller (this);
2389 CheckComRCReturnRC (autoCaller.rc());
2390
2391 AutoReaderLock alock (this);
2392
2393 ComObjPtr <Snapshot> snapshot;
2394
2395 HRESULT rc = findSnapshot (aName, snapshot, true /* aSetError */);
2396 snapshot.queryInterfaceTo (aSnapshot);
2397
2398 return rc;
2399}
2400
2401STDMETHODIMP Machine::SetCurrentSnapshot (INPTR GUIDPARAM aId)
2402{
2403 /// @todo (dmik) don't forget to set
2404 // mData->mCurrentStateModified to FALSE
2405
2406 return setError (E_NOTIMPL, "Not implemented");
2407}
2408
2409STDMETHODIMP
2410Machine::CreateSharedFolder (INPTR BSTR aName, INPTR BSTR aHostPath)
2411{
2412 if (!aName || !aHostPath)
2413 return E_INVALIDARG;
2414
2415 AutoCaller autoCaller (this);
2416 CheckComRCReturnRC (autoCaller.rc());
2417
2418 AutoLock alock (this);
2419
2420 HRESULT rc = checkStateDependency (MutableStateDep);
2421 CheckComRCReturnRC (rc);
2422
2423 ComObjPtr <SharedFolder> sharedFolder;
2424 rc = findSharedFolder (aName, sharedFolder, false /* aSetError */);
2425 if (SUCCEEDED (rc))
2426 return setError (E_FAIL,
2427 tr ("Shared folder named '%ls' already exists"), aName);
2428
2429 sharedFolder.createObject();
2430 rc = sharedFolder->init (machine(), aName, aHostPath);
2431 CheckComRCReturnRC (rc);
2432
2433 BOOL accessible = FALSE;
2434 rc = sharedFolder->COMGETTER(Accessible) (&accessible);
2435 CheckComRCReturnRC (rc);
2436
2437 if (!accessible)
2438 return setError (E_FAIL,
2439 tr ("Shared folder host path '%ls' is not accessible"), aHostPath);
2440
2441 mHWData.backup();
2442 mHWData->mSharedFolders.push_back (sharedFolder);
2443
2444 /* inform the direct session if any */
2445 alock.leave();
2446 onSharedFolderChange();
2447
2448 return S_OK;
2449}
2450
2451STDMETHODIMP Machine::RemoveSharedFolder (INPTR BSTR aName)
2452{
2453 if (!aName)
2454 return E_INVALIDARG;
2455
2456 AutoCaller autoCaller (this);
2457 CheckComRCReturnRC (autoCaller.rc());
2458
2459 AutoReaderLock alock (this);
2460
2461 HRESULT rc = checkStateDependency (MutableStateDep);
2462 CheckComRCReturnRC (rc);
2463
2464 ComObjPtr <SharedFolder> sharedFolder;
2465 rc = findSharedFolder (aName, sharedFolder, true /* aSetError */);
2466 CheckComRCReturnRC (rc);
2467
2468 mHWData.backup();
2469 mHWData->mSharedFolders.remove (sharedFolder);
2470
2471 /* inform the direct session if any */
2472 alock.leave();
2473 onSharedFolderChange();
2474
2475 return S_OK;
2476}
2477
2478STDMETHODIMP Machine::CanShowConsoleWindow (BOOL *aCanShow)
2479{
2480 if (!aCanShow)
2481 return E_POINTER;
2482
2483 /* start with No */
2484 *aCanShow = FALSE;
2485
2486 AutoCaller autoCaller (this);
2487 AssertComRCReturnRC (autoCaller.rc());
2488
2489 ComPtr <IInternalSessionControl> directControl;
2490 {
2491 AutoReaderLock alock (this);
2492
2493 if (mData->mSession.mState != SessionState_SessionOpen)
2494 return setError (E_FAIL,
2495 tr ("Machine session is not open (session state: %d)"),
2496 mData->mSession.mState);
2497
2498 directControl = mData->mSession.mDirectControl;
2499 }
2500
2501 /* ignore calls made after #OnSessionEnd() is called */
2502 if (!directControl)
2503 return S_OK;
2504
2505 ULONG64 dummy;
2506 return directControl->OnShowWindow (TRUE /* aCheck */, aCanShow, &dummy);
2507}
2508
2509STDMETHODIMP Machine::ShowConsoleWindow (ULONG64 *aWinId)
2510{
2511 if (!aWinId)
2512 return E_POINTER;
2513
2514 AutoCaller autoCaller (this);
2515 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
2516
2517 ComPtr <IInternalSessionControl> directControl;
2518 {
2519 AutoReaderLock alock (this);
2520
2521 if (mData->mSession.mState != SessionState_SessionOpen)
2522 return setError (E_FAIL,
2523 tr ("Machine session is not open (session state: %d)"),
2524 mData->mSession.mState);
2525
2526 directControl = mData->mSession.mDirectControl;
2527 }
2528
2529 /* ignore calls made after #OnSessionEnd() is called */
2530 if (!directControl)
2531 return S_OK;
2532
2533 BOOL dummy;
2534 return directControl->OnShowWindow (FALSE /* aCheck */, &dummy, aWinId);
2535}
2536
2537// public methods for internal purposes
2538/////////////////////////////////////////////////////////////////////////////
2539
2540/**
2541 * Returns the session machine object associated with the this machine.
2542 * The returned session machine is null if no direct session is currently open.
2543 *
2544 * @Note locks this object for reading.
2545 */
2546ComObjPtr <SessionMachine> Machine::sessionMachine()
2547{
2548 ComObjPtr <SessionMachine> sm;
2549
2550 AutoCaller autoCaller (this);
2551 /* the machine may be inaccessible, so don't assert below */
2552 if (FAILED (autoCaller.rc()))
2553 return sm;
2554
2555 AutoReaderLock alock (this);
2556
2557 sm = mData->mSession.mMachine;
2558 Assert (!sm.isNull() ||
2559 mData->mSession.mState != SessionState_SessionOpen);
2560
2561 return sm;
2562}
2563
2564/**
2565 * Calculates the absolute path of the given path taking the directory of
2566 * the machine settings file as the current directory.
2567 *
2568 * @param aPath path to calculate the absolute path for
2569 * @param aResult where to put the result (used only on success,
2570 * so can be the same Utf8Str instance as passed as \a aPath)
2571 * @return VirtualBox result
2572 *
2573 * @note Locks this object for reading.
2574 */
2575int Machine::calculateFullPath (const char *aPath, Utf8Str &aResult)
2576{
2577 AutoCaller autoCaller (this);
2578 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
2579
2580 AutoReaderLock alock (this);
2581
2582 AssertReturn (!mData->mConfigFileFull.isNull(), VERR_GENERAL_FAILURE);
2583
2584 Utf8Str settingsDir = mData->mConfigFileFull;
2585
2586 RTPathStripFilename (settingsDir.mutableRaw());
2587 char folder [RTPATH_MAX];
2588 int vrc = RTPathAbsEx (settingsDir, aPath,
2589 folder, sizeof (folder));
2590 if (VBOX_SUCCESS (vrc))
2591 aResult = folder;
2592
2593 return vrc;
2594}
2595
2596/**
2597 * Tries to calculate the relative path of the given absolute path using the
2598 * directory of the machine settings file as the base directory.
2599 *
2600 * @param aPath absolute path to calculate the relative path for
2601 * @param aResult where to put the result (used only when it's possible to
2602 * make a relative path from the given absolute path;
2603 * otherwise left untouched)
2604 *
2605 * @note Locks this object for reading.
2606 */
2607void Machine::calculateRelativePath (const char *aPath, Utf8Str &aResult)
2608{
2609 AutoCaller autoCaller (this);
2610 AssertComRCReturn (autoCaller.rc(), (void) 0);
2611
2612 AutoReaderLock alock (this);
2613
2614 AssertReturnVoid (!mData->mConfigFileFull.isNull());
2615
2616 Utf8Str settingsDir = mData->mConfigFileFull;
2617
2618 RTPathStripFilename (settingsDir.mutableRaw());
2619 if (RTPathStartsWith (aPath, settingsDir))
2620 {
2621 /* when assigning, we create a separate Utf8Str instance because both
2622 * aPath and aResult can point to the same memory location when this
2623 * func is called (if we just do aResult = aPath, aResult will be freed
2624 * first, and since its the same as aPath, an attempt to copy garbage
2625 * will be made. */
2626 aResult = Utf8Str (aPath + settingsDir.length() + 1);
2627 }
2628}
2629
2630/**
2631 * Returns the full path to the machine's log folder in the
2632 * \a aLogFolder argument.
2633 */
2634void Machine::getLogFolder (Utf8Str &aLogFolder)
2635{
2636 AutoCaller autoCaller (this);
2637 AssertComRCReturnVoid (autoCaller.rc());
2638
2639 AutoReaderLock alock (this);
2640
2641 Utf8Str settingsDir;
2642 if (isInOwnDir (&settingsDir))
2643 {
2644 /* Log folder is <Machines>/<VM_Name>/Logs */
2645 aLogFolder = Utf8StrFmt ("%s%cLogs", settingsDir.raw(), RTPATH_DELIMITER);
2646 }
2647 else
2648 {
2649 /* Log folder is <Machines>/<VM_SnapshotFolder>/Logs */
2650 Assert (!mUserData->mSnapshotFolderFull.isEmpty());
2651 aLogFolder = Utf8StrFmt ("%ls%cLogs", mUserData->mSnapshotFolderFull.raw(),
2652 RTPATH_DELIMITER);
2653 }
2654}
2655
2656/**
2657 * @note Locks mParent and this object for writing,
2658 * calls the client process (outside the lock).
2659 */
2660HRESULT Machine::openSession (IInternalSessionControl *aControl)
2661{
2662 LogFlowThisFuncEnter();
2663
2664 AssertReturn (aControl, E_FAIL);
2665
2666 AutoCaller autoCaller (this);
2667 CheckComRCReturnRC (autoCaller.rc());
2668
2669 /* We need VirtualBox lock because of Progress::notifyComplete() */
2670 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
2671
2672 if (!mData->mRegistered)
2673 return setError (E_UNEXPECTED,
2674 tr ("The machine '%ls' is not registered"), mUserData->mName.raw());
2675
2676 LogFlowThisFunc (("mSession.mState=%d\n", mData->mSession.mState));
2677
2678 if (mData->mSession.mState == SessionState_SessionOpen ||
2679 mData->mSession.mState == SessionState_SessionClosing)
2680 return setError (E_ACCESSDENIED,
2681 tr ("A session for the machine '%ls' is currently open "
2682 "(or being closed)"),
2683 mUserData->mName.raw());
2684
2685 /* may not be Running */
2686 AssertReturn (mData->mMachineState < MachineState_Running, E_FAIL);
2687
2688 /* get the sesion PID */
2689 RTPROCESS pid = NIL_RTPROCESS;
2690 AssertCompile (sizeof (ULONG) == sizeof (RTPROCESS));
2691 aControl->GetPID ((ULONG *) &pid);
2692 Assert (pid != NIL_RTPROCESS);
2693
2694 if (mData->mSession.mState == SessionState_SessionSpawning)
2695 {
2696 /* This machine is awaiting for a spawning session to be opened, so
2697 * reject any other open attempts from processes other than one
2698 * started by #openRemoteSession(). */
2699
2700 LogFlowThisFunc (("mSession.mPid=%d(0x%x)\n",
2701 mData->mSession.mPid, mData->mSession.mPid));
2702 LogFlowThisFunc (("session.pid=%d(0x%x)\n", pid, pid));
2703
2704 if (mData->mSession.mPid != pid)
2705 return setError (E_ACCESSDENIED,
2706 tr ("An unexpected process (PID=0x%08X) has tried to open a direct "
2707 "session with the machine named '%ls', while only a process "
2708 "started by OpenRemoteSession (PID=0x%08X) is allowed"),
2709 pid, mUserData->mName.raw(), mData->mSession.mPid);
2710 }
2711
2712 /* create a SessionMachine object */
2713 ComObjPtr <SessionMachine> sessionMachine;
2714 sessionMachine.createObject();
2715 HRESULT rc = sessionMachine->init (this);
2716 AssertComRC (rc);
2717
2718 if (SUCCEEDED (rc))
2719 {
2720 /*
2721 * Set the session state to Spawning to protect against subsequent
2722 * attempts to open a session and to unregister the machine after
2723 * we leave the lock.
2724 */
2725 SessionState_T origState = mData->mSession.mState;
2726 mData->mSession.mState = SessionState_SessionSpawning;
2727
2728 /*
2729 * Leave the lock before calling the client process -- it will call
2730 * Machine/SessionMachine methods. Leaving the lock here is quite safe
2731 * because the state is Spawning, so that openRemotesession() and
2732 * openExistingSession() calls will fail. This method, called before we
2733 * enter the lock again, will fail because of the wrong PID.
2734 *
2735 * Note that mData->mSession.mRemoteControls accessed outside
2736 * the lock may not be modified when state is Spawning, so it's safe.
2737 */
2738 alock.leave();
2739
2740 LogFlowThisFunc (("Calling AssignMachine()...\n"));
2741 rc = aControl->AssignMachine (sessionMachine);
2742 LogFlowThisFunc (("AssignMachine() returned %08X\n", rc));
2743
2744 /* The failure may w/o any error info (from RPC), so provide one */
2745 if (FAILED (rc))
2746 setError (rc,
2747 tr ("Failed to assign the machine to the session"));
2748
2749 if (SUCCEEDED (rc) && origState == SessionState_SessionSpawning)
2750 {
2751 /* complete the remote session initialization */
2752
2753 /* get the console from the direct session */
2754 ComPtr <IConsole> console;
2755 rc = aControl->GetRemoteConsole (console.asOutParam());
2756 ComAssertComRC (rc);
2757
2758 if (SUCCEEDED (rc) && !console)
2759 {
2760 ComAssert (!!console);
2761 rc = E_FAIL;
2762 }
2763
2764 /* assign machine & console to the remote sesion */
2765 if (SUCCEEDED (rc))
2766 {
2767 /*
2768 * after openRemoteSession(), the first and the only
2769 * entry in remoteControls is that remote session
2770 */
2771 LogFlowThisFunc (("Calling AssignRemoteMachine()...\n"));
2772 rc = mData->mSession.mRemoteControls.front()->
2773 AssignRemoteMachine (sessionMachine, console);
2774 LogFlowThisFunc (("AssignRemoteMachine() returned %08X\n", rc));
2775
2776 /* The failure may w/o any error info (from RPC), so provide one */
2777 if (FAILED (rc))
2778 setError (rc,
2779 tr ("Failed to assign the machine to the remote session"));
2780 }
2781
2782 if (FAILED (rc))
2783 aControl->Uninitialize();
2784 }
2785
2786 /* enter the lock again */
2787 alock.enter();
2788
2789 /* Restore the session state */
2790 mData->mSession.mState = origState;
2791 }
2792
2793 /* finalize spawning amyway (this is why we don't return on errors above) */
2794 if (mData->mSession.mState == SessionState_SessionSpawning)
2795 {
2796 /* Note that the progress object is finalized later */
2797
2798 /* We don't reset mSession.mPid and mType here because both are
2799 * necessary for SessionMachine::uninit() to reap the child process
2800 * later. */
2801
2802 if (FAILED (rc))
2803 {
2804 /* Remove the remote control from the list on failure
2805 * and reset session state to Closed. */
2806 mData->mSession.mRemoteControls.clear();
2807 mData->mSession.mState = SessionState_SessionClosed;
2808 }
2809 }
2810 else
2811 {
2812 /* memorize PID of the directly opened session */
2813 if (SUCCEEDED (rc))
2814 mData->mSession.mPid = pid;
2815 }
2816
2817 if (SUCCEEDED (rc))
2818 {
2819 /* memorize the direct session control */
2820 mData->mSession.mDirectControl = aControl;
2821 mData->mSession.mState = SessionState_SessionOpen;
2822 /* associate the SessionMachine with this Machine */
2823 mData->mSession.mMachine = sessionMachine;
2824 }
2825
2826 if (mData->mSession.mProgress)
2827 {
2828 /* finalize the progress after setting the state, for consistency */
2829 mData->mSession.mProgress->notifyComplete (rc);
2830 mData->mSession.mProgress.setNull();
2831 }
2832
2833 /* uninitialize the created session machine on failure */
2834 if (FAILED (rc))
2835 sessionMachine->uninit();
2836
2837 LogFlowThisFunc (("rc=%08X\n", rc));
2838 LogFlowThisFuncLeave();
2839 return rc;
2840}
2841
2842/**
2843 * @note Locks this object for writing, calls the client process
2844 * (inside the lock).
2845 */
2846HRESULT Machine::openRemoteSession (IInternalSessionControl *aControl,
2847 INPTR BSTR aType, INPTR BSTR aEnvironment,
2848 Progress *aProgress)
2849{
2850 LogFlowThisFuncEnter();
2851
2852 AssertReturn (aControl, E_FAIL);
2853 AssertReturn (aProgress, E_FAIL);
2854
2855 AutoCaller autoCaller (this);
2856 CheckComRCReturnRC (autoCaller.rc());
2857
2858 AutoLock alock (this);
2859
2860 if (!mData->mRegistered)
2861 return setError (E_UNEXPECTED,
2862 tr ("The machine '%ls' is not registered"), mUserData->mName.raw());
2863
2864 LogFlowThisFunc (("mSession.mState=%d\n", mData->mSession.mState));
2865
2866 if (mData->mSession.mState == SessionState_SessionOpen ||
2867 mData->mSession.mState == SessionState_SessionSpawning ||
2868 mData->mSession.mState == SessionState_SessionClosing)
2869 return setError (E_ACCESSDENIED,
2870 tr ("A session for the machine '%ls' is currently open "
2871 "(or being opened or closed)"),
2872 mUserData->mName.raw());
2873
2874 /* may not be Running */
2875 AssertReturn (mData->mMachineState < MachineState_Running, E_FAIL);
2876
2877 /* get the path to the executable */
2878 char path [RTPATH_MAX];
2879 RTPathAppPrivateArch (path, RTPATH_MAX);
2880 size_t sz = strlen (path);
2881 path [sz++] = RTPATH_DELIMITER;
2882 path [sz] = 0;
2883 char *cmd = path + sz;
2884 sz = RTPATH_MAX - sz;
2885
2886 int vrc = VINF_SUCCESS;
2887 RTPROCESS pid = NIL_RTPROCESS;
2888
2889 RTENV env = RTENV_DEFAULT;
2890
2891 if (aEnvironment)
2892 {
2893 char *newEnvStr = NULL;
2894
2895 do
2896 {
2897 /* clone the current environment */
2898 int vrc2 = RTEnvClone (&env, RTENV_DEFAULT);
2899 AssertRCBreak (vrc2, vrc = vrc2);
2900
2901 newEnvStr = RTStrDup(Utf8Str (aEnvironment));
2902 AssertPtrBreak (newEnvStr, vrc = vrc2);
2903
2904 /* put new variables to the environment
2905 * (ignore empty variable names here since RTEnv API
2906 * intentionally doesn't do that) */
2907 char *var = newEnvStr;
2908 for (char *p = newEnvStr; *p; ++ p)
2909 {
2910 if (*p == '\n' && (p == newEnvStr || *(p - 1) != '\\'))
2911 {
2912 *p = '\0';
2913 if (*var)
2914 {
2915 char *val = strchr (var, '=');
2916 if (val)
2917 {
2918 *val++ = '\0';
2919 vrc2 = RTEnvSetEx (env, var, val);
2920 }
2921 else
2922 vrc2 = RTEnvUnsetEx (env, var);
2923 if (VBOX_FAILURE (vrc2))
2924 break;
2925 }
2926 var = p + 1;
2927 }
2928 }
2929 if (VBOX_SUCCESS (vrc2) && *var)
2930 vrc2 = RTEnvPutEx (env, var);
2931
2932 AssertRCBreak (vrc2, vrc = vrc2);
2933 }
2934 while (0);
2935
2936 if (newEnvStr != NULL)
2937 RTStrFree(newEnvStr);
2938 }
2939
2940 Bstr type (aType);
2941 if (type == "gui")
2942 {
2943#ifdef RT_OS_DARWIN /* Avoid Lanuch Services confusing this with the selector by using a helper app. */
2944 const char VirtualBox_exe[] = "../Resources/VirtualBoxVM.app/Contents/MacOS/VirtualBoxVM";
2945#else
2946 const char VirtualBox_exe[] = "VirtualBox" HOSTSUFF_EXE;
2947#endif
2948 Assert (sz >= sizeof (VirtualBox_exe));
2949 strcpy (cmd, VirtualBox_exe);
2950
2951 Utf8Str idStr = mData->mUuid.toString();
2952#ifdef RT_OS_WINDOWS /** @todo drop this once the RTProcCreate bug has been fixed */
2953 const char * args[] = {path, "-startvm", idStr, 0 };
2954#else
2955 Utf8Str name = mUserData->mName;
2956 const char * args[] = {path, "-comment", name, "-startvm", idStr, 0 };
2957#endif
2958 vrc = RTProcCreate (path, args, env, 0, &pid);
2959 }
2960 else
2961#ifdef VBOX_VRDP
2962 if (type == "vrdp")
2963 {
2964 const char VBoxVRDP_exe[] = "VBoxVRDP" HOSTSUFF_EXE;
2965 Assert (sz >= sizeof (VBoxVRDP_exe));
2966 strcpy (cmd, VBoxVRDP_exe);
2967
2968 Utf8Str idStr = mData->mUuid.toString();
2969#ifdef RT_OS_WINDOWS
2970 const char * args[] = {path, "-startvm", idStr, 0 };
2971#else
2972 Utf8Str name = mUserData->mName;
2973 const char * args[] = {path, "-comment", name, "-startvm", idStr, 0 };
2974#endif
2975 vrc = RTProcCreate (path, args, env, 0, &pid);
2976 }
2977 else
2978#endif /* VBOX_VRDP */
2979 if (type == "capture")
2980 {
2981 const char VBoxVRDP_exe[] = "VBoxVRDP" HOSTSUFF_EXE;
2982 Assert (sz >= sizeof (VBoxVRDP_exe));
2983 strcpy (cmd, VBoxVRDP_exe);
2984
2985 Utf8Str idStr = mData->mUuid.toString();
2986#ifdef RT_OS_WINDOWS
2987 const char * args[] = {path, "-startvm", idStr, "-capture", 0 };
2988#else
2989 Utf8Str name = mUserData->mName;
2990 const char * args[] = {path, "-comment", name, "-startvm", idStr, "-capture", 0 };
2991#endif
2992 vrc = RTProcCreate (path, args, env, 0, &pid);
2993 }
2994 else
2995 {
2996 RTEnvDestroy (env);
2997 return setError (E_INVALIDARG,
2998 tr ("Invalid session type: '%ls'"), aType);
2999 }
3000
3001 RTEnvDestroy (env);
3002
3003 if (VBOX_FAILURE (vrc))
3004 return setError (E_FAIL,
3005 tr ("Could not launch a process for the machine '%ls' (%Vrc)"),
3006 mUserData->mName.raw(), vrc);
3007
3008 LogFlowThisFunc (("launched.pid=%d(0x%x)\n", pid, pid));
3009
3010 /*
3011 * Note that we don't leave the lock here before calling the client,
3012 * because it doesn't need to call us back if called with a NULL argument.
3013 * Leaving the lock herer is dangerous because we didn't prepare the
3014 * launch data yet, but the client we've just started may happen to be
3015 * too fast and call openSession() that will fail (because of PID, etc.),
3016 * so that the Machine will never get out of the Spawning session state.
3017 */
3018
3019 /* inform the session that it will be a remote one */
3020 LogFlowThisFunc (("Calling AssignMachine (NULL)...\n"));
3021 HRESULT rc = aControl->AssignMachine (NULL);
3022 LogFlowThisFunc (("AssignMachine (NULL) returned %08X\n", rc));
3023
3024 if (FAILED (rc))
3025 {
3026 /* restore the session state */
3027 mData->mSession.mState = SessionState_SessionClosed;
3028 /* The failure may w/o any error info (from RPC), so provide one */
3029 return setError (rc,
3030 tr ("Failed to assign the machine to the session"));
3031 }
3032
3033 /* attach launch data to the machine */
3034 Assert (mData->mSession.mPid == NIL_RTPROCESS);
3035 mData->mSession.mRemoteControls.push_back (aControl);
3036 mData->mSession.mProgress = aProgress;
3037 mData->mSession.mPid = pid;
3038 mData->mSession.mState = SessionState_SessionSpawning;
3039 mData->mSession.mType = type;
3040
3041 LogFlowThisFuncLeave();
3042 return S_OK;
3043}
3044
3045/**
3046 * @note Locks this object for writing, calls the client process
3047 * (outside the lock).
3048 */
3049HRESULT Machine::openExistingSession (IInternalSessionControl *aControl)
3050{
3051 LogFlowThisFuncEnter();
3052
3053 AssertReturn (aControl, E_FAIL);
3054
3055 AutoCaller autoCaller (this);
3056 CheckComRCReturnRC (autoCaller.rc());
3057
3058 AutoLock alock (this);
3059
3060 if (!mData->mRegistered)
3061 return setError (E_UNEXPECTED,
3062 tr ("The machine '%ls' is not registered"), mUserData->mName.raw());
3063
3064 LogFlowThisFunc (("mSession.state=%d\n", mData->mSession.mState));
3065
3066 if (mData->mSession.mState != SessionState_SessionOpen)
3067 return setError (E_ACCESSDENIED,
3068 tr ("The machine '%ls' does not have an open session"),
3069 mUserData->mName.raw());
3070
3071 ComAssertRet (!mData->mSession.mDirectControl.isNull(), E_FAIL);
3072
3073 /*
3074 * Get the console from the direct session (note that we don't leave the
3075 * lock here because GetRemoteConsole must not call us back).
3076 */
3077 ComPtr <IConsole> console;
3078 HRESULT rc = mData->mSession.mDirectControl->
3079 GetRemoteConsole (console.asOutParam());
3080 if (FAILED (rc))
3081 {
3082 /* The failure may w/o any error info (from RPC), so provide one */
3083 return setError (rc,
3084 tr ("Failed to get a console object from the direct session"));
3085 }
3086
3087 ComAssertRet (!console.isNull(), E_FAIL);
3088
3089 ComObjPtr <SessionMachine> sessionMachine = mData->mSession.mMachine;
3090 AssertReturn (!sessionMachine.isNull(), E_FAIL);
3091
3092 /*
3093 * Leave the lock before calling the client process. It's safe here
3094 * since the only thing to do after we get the lock again is to add
3095 * the remote control to the list (which doesn't directly influence
3096 * anything).
3097 */
3098 alock.leave();
3099
3100 /* attach the remote session to the machine */
3101 LogFlowThisFunc (("Calling AssignRemoteMachine()...\n"));
3102 rc = aControl->AssignRemoteMachine (sessionMachine, console);
3103 LogFlowThisFunc (("AssignRemoteMachine() returned %08X\n", rc));
3104
3105 /* The failure may w/o any error info (from RPC), so provide one */
3106 if (FAILED (rc))
3107 return setError (rc,
3108 tr ("Failed to assign the machine to the session"));
3109
3110 alock.enter();
3111
3112 /* need to revalidate the state after entering the lock again */
3113 if (mData->mSession.mState != SessionState_SessionOpen)
3114 {
3115 aControl->Uninitialize();
3116
3117 return setError (E_ACCESSDENIED,
3118 tr ("The machine '%ls' does not have an open session"),
3119 mUserData->mName.raw());
3120 }
3121
3122 /* store the control in the list */
3123 mData->mSession.mRemoteControls.push_back (aControl);
3124
3125 LogFlowThisFuncLeave();
3126 return S_OK;
3127}
3128
3129/**
3130 * Checks that the registered flag of the machine can be set according to
3131 * the argument and sets it. On success, commits and saves all settings.
3132 *
3133 * @note When this machine is inaccessible, the only valid value for \a
3134 * aRegistered is FALSE (i.e. unregister the machine) because unregistered
3135 * inaccessible machines are not currently supported. Note that unregistering
3136 * an inaccessible machine will \b uninitialize this machine object. Therefore,
3137 * the caller must make sure there are no active Machine::addCaller() calls
3138 * on the current thread because this will block Machine::uninit().
3139 *
3140 * @note Locks this object and children for writing!
3141 */
3142HRESULT Machine::trySetRegistered (BOOL aRegistered)
3143{
3144 AutoLimitedCaller autoCaller (this);
3145 AssertComRCReturnRC (autoCaller.rc());
3146
3147 AutoLock alock (this);
3148
3149 /* wait for state dependants to drop to zero */
3150 checkStateDependencies (alock);
3151
3152 ComAssertRet (mData->mRegistered != aRegistered, E_FAIL);
3153
3154 if (!mData->mAccessible)
3155 {
3156 /* A special case: the machine is not accessible. */
3157
3158 /* inaccessible machines can only be unregistered */
3159 AssertReturn (!aRegistered, E_FAIL);
3160
3161 /* Uninitialize ourselves here because currently there may be no
3162 * unregistered that are inaccessible (this state combination is not
3163 * supported). Note releasing the caller and leaving the lock before
3164 * calling uninit() */
3165
3166 alock.leave();
3167 autoCaller.release();
3168
3169 uninit();
3170
3171 return S_OK;
3172 }
3173
3174 AssertReturn (autoCaller.state() == Ready, E_FAIL);
3175
3176 if (aRegistered)
3177 {
3178 if (mData->mRegistered)
3179 return setError (E_FAIL,
3180 tr ("The machine '%ls' with UUID {%s} is already registered"),
3181 mUserData->mName.raw(),
3182 mData->mUuid.toString().raw());
3183 }
3184 else
3185 {
3186 if (mData->mMachineState == MachineState_Saved)
3187 return setError (E_FAIL,
3188 tr ("Cannot unregister the machine '%ls' because it "
3189 "is in the Saved state"),
3190 mUserData->mName.raw());
3191
3192 size_t snapshotCount = 0;
3193 if (mData->mFirstSnapshot)
3194 snapshotCount = mData->mFirstSnapshot->descendantCount() + 1;
3195 if (snapshotCount)
3196 return setError (E_FAIL,
3197 tr ("Cannot unregister the machine '%ls' because it "
3198 "has %d snapshots"),
3199 mUserData->mName.raw(), snapshotCount);
3200
3201 if (mData->mSession.mState != SessionState_SessionClosed)
3202 return setError (E_FAIL,
3203 tr ("Cannot unregister the machine '%ls' because it has an "
3204 "open session"),
3205 mUserData->mName.raw());
3206
3207 if (mHDData->mHDAttachments.size() != 0)
3208 return setError (E_FAIL,
3209 tr ("Cannot unregister the machine '%ls' because it "
3210 "has %d hard disks attached"),
3211 mUserData->mName.raw(), mHDData->mHDAttachments.size());
3212 }
3213
3214 /* Ensure the settings are saved. If we are going to be registered and
3215 * isConfigLocked() is FALSE then it means that no config file exists yet,
3216 * so create it. */
3217 if (isModified() || (aRegistered && !isConfigLocked()))
3218 {
3219 HRESULT rc = saveSettings();
3220 CheckComRCReturnRC (rc);
3221 }
3222
3223 mData->mRegistered = aRegistered;
3224
3225 /* inform the USB proxy about all attached/detached USB filters */
3226 mUSBController->onMachineRegistered (aRegistered);
3227
3228 return S_OK;
3229}
3230
3231/**
3232 * Increases the number of objects dependent on the machine state or on the
3233 * registered state. Guarantees that these two states will not change at
3234 * least until #releaseStateDependency() is called.
3235 *
3236 * Depending on the @a aDepType value, additional state checks may be
3237 * made. These checks will set extended error info on failure. See
3238 * #checkStateDependency() for more info.
3239 *
3240 * If this method returns a failure, the dependency is not added and the
3241 * caller is not allowed to rely on any particular machine state or
3242 * registration state value and may return the failed result code to the
3243 * upper level.
3244 *
3245 * @param aDepType Dependency type to add.
3246 * @param aState Current machine state (NULL if not interested).
3247 * @param aRegistered Current registered state (NULL if not interested).
3248 */
3249HRESULT Machine::addStateDependency (StateDependency aDepType /* = AnyStateDep */,
3250 MachineState_T *aState /* = NULL */,
3251 BOOL *aRegistered /* = NULL */)
3252{
3253 AutoCaller autoCaller (this);
3254 AssertComRCReturnRC (autoCaller.rc());
3255
3256 AutoLock alock (this);
3257
3258 if (mData->mWaitingStateDeps && mData->mMachineStateDeps == 0)
3259 {
3260 /* checkStateDependencies() is at the point after RTSemEventWait() but
3261 * before entering the lock. Report an error. It would be better to
3262 * leave the lock now and re-schedule ourselves, but we don't have a
3263 * framework that can guarantee such a behavior in 100% cases. */
3264
3265 AssertFailed(); /* <-- this is just to see how often it can happen */
3266
3267 return setError (E_ACCESSDENIED,
3268 tr ("The machine is busy: state transition is in progress. "
3269 "Retry the operation (state is %d)"),
3270 mData->mMachineState);
3271 }
3272
3273 HRESULT rc = checkStateDependency (aDepType);
3274 CheckComRCReturnRC (rc);
3275
3276 if (aState)
3277 *aState = mData->mMachineState;
3278 if (aRegistered)
3279 *aRegistered = mData->mRegistered;
3280
3281 ++ mData->mMachineStateDeps;
3282
3283 return S_OK;
3284}
3285
3286/**
3287 * Decreases the number of objects dependent on the machine state.
3288 * Must always complete the #addStateDependency() call after the state
3289 * dependency no more necessary.
3290 */
3291void Machine::releaseStateDependency()
3292{
3293 AutoCaller autoCaller (this);
3294 AssertComRCReturnVoid (autoCaller.rc());
3295
3296 AutoLock alock (this);
3297
3298 AssertReturnVoid (mData->mMachineStateDeps > 0);
3299 -- mData->mMachineStateDeps;
3300
3301 if (mData->mMachineStateDeps == 0 &&
3302 mData->mZeroMachineStateDepsSem != NIL_RTSEMEVENT)
3303 {
3304 /* inform checkStateDependencies() that there are no more deps */
3305 RTSemEventSignal (mData->mZeroMachineStateDepsSem);
3306 }
3307}
3308
3309// protected methods
3310/////////////////////////////////////////////////////////////////////////////
3311
3312/**
3313 * Performs machine state checks based on the @a aDepType value. If a check
3314 * fails, this method will set extended error info, otherwise it will return
3315 * S_OK. It is supposed, that on failure, the caller will immedieately return
3316 * the return value of this method to the upper level.
3317 *
3318 * When @a aDepType is AnyStateDep, this method always returns S_OK.
3319 *
3320 * When @a aDepType is MutableStateDep, this method returns S_OK only if the
3321 * current state of this machine object allows to change settings of the
3322 * machine (i.e. the machine is not registered, or registered but not running
3323 * and not saved). It is useful to call this method from Machine setters
3324 * before performing any change.
3325 *
3326 * When @a aDepType is MutableOrSavedStateDep, this method behaves the same
3327 * as for MutableStateDep except that if the machine is saved, S_OK is also
3328 * returned. This is useful in setters which allow changing machine
3329 * properties when it is in the saved state.
3330 *
3331 * @param aDepType Dependency type to check.
3332 *
3333 * @note External classes should use #addStateDependency() and
3334 * #releaseStateDependency() methods or the smart AutoStateDependency
3335 * template.
3336 *
3337 * @note This method must be called from under this object's lock.
3338 */
3339HRESULT Machine::checkStateDependency (StateDependency aDepType)
3340{
3341 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
3342
3343 switch (aDepType)
3344 {
3345 case AnyStateDep:
3346 {
3347 break;
3348 }
3349 case MutableStateDep:
3350 {
3351 if (mData->mRegistered &&
3352 (mType != IsSessionMachine ||
3353 mData->mMachineState > MachineState_Paused ||
3354 mData->mMachineState == MachineState_Saved))
3355 return setError (E_ACCESSDENIED,
3356 tr ("The machine is not mutable (state is %d)"),
3357 mData->mMachineState);
3358 break;
3359 }
3360 case MutableOrSavedStateDep:
3361 {
3362 if (mData->mRegistered &&
3363 (mType != IsSessionMachine ||
3364 mData->mMachineState > MachineState_Paused))
3365 return setError (E_ACCESSDENIED,
3366 tr ("The machine is not mutable (state is %d)"),
3367 mData->mMachineState);
3368 break;
3369 }
3370 }
3371
3372 return S_OK;
3373}
3374
3375/**
3376 * Helper to uninitialize all associated child objects
3377 * and to free all data structures.
3378 *
3379 * This method must be called as a part of the object's uninitialization
3380 * procedure (usually done in the uninit() method).
3381 *
3382 * @note Must be called only from uninit().
3383 */
3384void Machine::uninitDataAndChildObjects()
3385{
3386 AutoCaller autoCaller (this);
3387 AssertComRCReturn (autoCaller.rc(), (void) 0);
3388 AssertComRCReturn (autoCaller.state( ) == InUninit, (void) 0);
3389
3390 /* tell all our child objects we've been uninitialized */
3391
3392 /*
3393 * uninit all children using addDependentChild()/removeDependentChild()
3394 * in their init()/uninit() methods
3395 */
3396 uninitDependentChildren();
3397
3398 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
3399 {
3400 if (mNetworkAdapters [slot])
3401 {
3402 mNetworkAdapters [slot]->uninit();
3403 unconst (mNetworkAdapters [slot]).setNull();
3404 }
3405 }
3406
3407 if (mUSBController)
3408 {
3409 mUSBController->uninit();
3410 unconst (mUSBController).setNull();
3411 }
3412
3413 if (mAudioAdapter)
3414 {
3415 mAudioAdapter->uninit();
3416 unconst (mAudioAdapter).setNull();
3417 }
3418
3419 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
3420 {
3421 if (mSerialPorts [slot])
3422 {
3423 mSerialPorts [slot]->uninit();
3424 unconst (mSerialPorts [slot]).setNull();
3425 }
3426 }
3427
3428 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
3429 {
3430 if (mParallelPorts [slot])
3431 {
3432 mParallelPorts [slot]->uninit();
3433 unconst (mParallelPorts [slot]).setNull();
3434 }
3435 }
3436
3437 if (mFloppyDrive)
3438 {
3439 mFloppyDrive->uninit();
3440 unconst (mFloppyDrive).setNull();
3441 }
3442
3443 if (mDVDDrive)
3444 {
3445 mDVDDrive->uninit();
3446 unconst (mDVDDrive).setNull();
3447 }
3448
3449#ifdef VBOX_VRDP
3450 if (mVRDPServer)
3451 {
3452 mVRDPServer->uninit();
3453 unconst (mVRDPServer).setNull();
3454 }
3455#endif
3456
3457 if (mBIOSSettings)
3458 {
3459 mBIOSSettings->uninit();
3460 unconst (mBIOSSettings).setNull();
3461 }
3462
3463 /* free data structures */
3464 mSSData.free();
3465 mHDData.free();
3466 mHWData.free();
3467 mUserData.free();
3468 mData.free();
3469}
3470
3471
3472/**
3473 * Chhecks that there are no state dependants. If necessary, waits for the
3474 * number of dependants to drop to zero. Must be called from under
3475 * this object's lock.
3476 *
3477 * @param aLock This object's lock.
3478 *
3479 * @note This method may leave the object lock during its execution!
3480 */
3481void Machine::checkStateDependencies (AutoLock &aLock)
3482{
3483 AssertReturnVoid (isLockedOnCurrentThread());
3484 AssertReturnVoid (aLock.belongsTo (this));
3485
3486 /* Wait for all state dependants if necessary */
3487 if (mData->mMachineStateDeps > 0)
3488 {
3489 /* lazy creation */
3490 if (mData->mZeroMachineStateDepsSem == NIL_RTSEMEVENT)
3491 RTSemEventCreate (&mData->mZeroMachineStateDepsSem);
3492
3493 LogFlowThisFunc (("Waiting for state deps (%d) to drop to zero...\n",
3494 mData->mMachineStateDeps));
3495
3496 mData->mWaitingStateDeps = TRUE;
3497
3498 aLock.leave();
3499
3500 RTSemEventWait (mData->mZeroMachineStateDepsSem, RT_INDEFINITE_WAIT);
3501
3502 aLock.enter();
3503
3504 mData->mWaitingStateDeps = FALSE;
3505 }
3506}
3507
3508/**
3509 * Helper to change the machine state.
3510 *
3511 * @note Locks this object for writing.
3512 */
3513HRESULT Machine::setMachineState (MachineState_T aMachineState)
3514{
3515 LogFlowThisFuncEnter();
3516 LogFlowThisFunc (("aMachineState=%d\n", aMachineState));
3517
3518 AutoCaller autoCaller (this);
3519 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
3520
3521 AutoLock alock (this);
3522
3523 /* wait for state dependants to drop to zero */
3524 /// @todo it may be potentially unsafe to leave the lock here as
3525 // the below method does. Needs some thinking. The easiest solution may
3526 // be to provide a separate mutex for mMachineState and mRegistered.
3527 checkStateDependencies (alock);
3528
3529 if (mData->mMachineState != aMachineState)
3530 {
3531 mData->mMachineState = aMachineState;
3532
3533 RTTIMESPEC time;
3534 mData->mLastStateChange = RTTimeSpecGetMilli(RTTimeNow(&time));
3535
3536 mParent->onMachineStateChange (mData->mUuid, aMachineState);
3537 }
3538
3539 LogFlowThisFuncLeave();
3540 return S_OK;
3541}
3542
3543/**
3544 * Searches for a shared folder with the given logical name
3545 * in the collection of shared folders.
3546 *
3547 * @param aName logical name of the shared folder
3548 * @param aSharedFolder where to return the found object
3549 * @param aSetError whether to set the error info if the folder is
3550 * not found
3551 * @return
3552 * S_OK when found or E_INVALIDARG when not found
3553 *
3554 * @note
3555 * must be called from under the object's lock!
3556 */
3557HRESULT Machine::findSharedFolder (const BSTR aName,
3558 ComObjPtr <SharedFolder> &aSharedFolder,
3559 bool aSetError /* = false */)
3560{
3561 bool found = false;
3562 for (HWData::SharedFolderList::const_iterator it = mHWData->mSharedFolders.begin();
3563 !found && it != mHWData->mSharedFolders.end();
3564 ++ it)
3565 {
3566 AutoLock alock (*it);
3567 found = (*it)->name() == aName;
3568 if (found)
3569 aSharedFolder = *it;
3570 }
3571
3572 HRESULT rc = found ? S_OK : E_INVALIDARG;
3573
3574 if (aSetError && !found)
3575 setError (rc, tr ("Could not find a shared folder named '%ls'"), aName);
3576
3577 return rc;
3578}
3579
3580/**
3581 * Loads all the VM settings by walking down the <Machine> node.
3582 *
3583 * @param aRegistered true when the machine is being loaded on VirtualBox
3584 * startup
3585 *
3586 * @note This method is intended to be called only from init(), so it assumes
3587 * all machine data fields have appropriate default values when it is called.
3588 *
3589 * @note Doesn't lock any objects.
3590 */
3591HRESULT Machine::loadSettings (bool aRegistered)
3592{
3593 LogFlowThisFuncEnter();
3594 AssertReturn (mType == IsMachine, E_FAIL);
3595
3596 AutoCaller autoCaller (this);
3597 AssertReturn (autoCaller.state() == InInit, E_FAIL);
3598
3599 HRESULT rc = S_OK;
3600
3601 CFGHANDLE configLoader = NULL;
3602 char *loaderError = NULL;
3603 int vrc = CFGLDRLoad (&configLoader,
3604 Utf8Str (mData->mConfigFileFull), mData->mHandleCfgFile,
3605 XmlSchemaNS, true, cfgLdrEntityResolver,
3606 &loaderError);
3607 if (VBOX_FAILURE (vrc))
3608 {
3609 rc = setError (E_FAIL,
3610 tr ("Could not load the settings file '%ls' (%Vrc)%s%s"),
3611 mData->mConfigFileFull.raw(), vrc,
3612 loaderError ? ".\n" : "", loaderError ? loaderError : "");
3613
3614 if (loaderError)
3615 RTMemTmpFree (loaderError);
3616
3617 LogFlowThisFuncLeave();
3618 return rc;
3619 }
3620
3621 /*
3622 * When reading the XML, we assume it has been validated, so we don't
3623 * do any structural checks here, Just Assert() some things.
3624 */
3625
3626 CFGNODE machineNode = 0;
3627 CFGLDRGetNode (configLoader, "VirtualBox/Machine", 0, &machineNode);
3628
3629 do
3630 {
3631 ComAssertBreak (machineNode, rc = E_FAIL);
3632
3633 /* uuid (required) */
3634 Guid id;
3635 CFGLDRQueryUUID (machineNode, "uuid", id.ptr());
3636
3637 /* If the stored UUID is not empty, it means the registered machine
3638 * is being loaded. Compare the loaded UUID with the stored one taken
3639 * from the global registry. */
3640 if (!mData->mUuid.isEmpty())
3641 {
3642 if (mData->mUuid != id)
3643 {
3644 rc = setError (E_FAIL,
3645 tr ("Machine UUID {%Vuuid} in '%ls' doesn't match its "
3646 "UUID {%s} in the registry file '%ls'"),
3647 id.raw(), mData->mConfigFileFull.raw(),
3648 mData->mUuid.toString().raw(),
3649 mParent->settingsFileName().raw());
3650 break;
3651 }
3652 }
3653 else
3654 unconst (mData->mUuid) = id;
3655
3656 /* name (required) */
3657 CFGLDRQueryBSTR (machineNode, "name", mUserData->mName.asOutParam());
3658
3659 /* nameSync (optional, default is true) */
3660 {
3661 bool nameSync = true;
3662 CFGLDRQueryBool (machineNode, "nameSync", &nameSync);
3663 mUserData->mNameSync = nameSync;
3664 }
3665
3666 /* Description (optional, default is null) */
3667 {
3668 CFGNODE descNode = 0;
3669 CFGLDRGetChildNode (machineNode, "Description", 0, &descNode);
3670 if (descNode)
3671 {
3672 CFGLDRQueryBSTR (descNode, NULL,
3673 mUserData->mDescription.asOutParam());
3674 CFGLDRReleaseNode (descNode);
3675 }
3676 else
3677 mUserData->mDescription.setNull();
3678 }
3679
3680 /* OSType (required) */
3681 {
3682 CFGLDRQueryBSTR (machineNode, "OSType",
3683 mUserData->mOSTypeId.asOutParam());
3684
3685 /* look up the object by Id to check it is valid */
3686 ComPtr <IGuestOSType> guestOSType;
3687 rc = mParent->GetGuestOSType (mUserData->mOSTypeId,
3688 guestOSType.asOutParam());
3689 if (FAILED (rc))
3690 break;
3691 }
3692
3693 /* stateFile (optional) */
3694 {
3695 Bstr stateFilePath;
3696 CFGLDRQueryBSTR (machineNode, "stateFile", stateFilePath.asOutParam());
3697 if (stateFilePath)
3698 {
3699 Utf8Str stateFilePathFull = stateFilePath;
3700 int vrc = calculateFullPath (stateFilePathFull, stateFilePathFull);
3701 if (VBOX_FAILURE (vrc))
3702 {
3703 rc = setError (E_FAIL,
3704 tr ("Invalid saved state file path: '%ls' (%Vrc)"),
3705 stateFilePath.raw(), vrc);
3706 break;
3707 }
3708 mSSData->mStateFilePath = stateFilePathFull;
3709 }
3710 else
3711 mSSData->mStateFilePath.setNull();
3712 }
3713
3714 /*
3715 * currentSnapshot ID (optional)
3716 * Note that due to XML Schema constaraints this attribute, when present,
3717 * will guaranteedly refer to an existing snapshot definition in XML
3718 */
3719 Guid currentSnapshotId;
3720 CFGLDRQueryUUID (machineNode, "currentSnapshot", currentSnapshotId.ptr());
3721
3722 /* snapshotFolder (optional) */
3723 {
3724 Bstr folder;
3725 CFGLDRQueryBSTR (machineNode, "snapshotFolder", folder.asOutParam());
3726 rc = COMSETTER(SnapshotFolder) (folder);
3727 if (FAILED (rc))
3728 break;
3729 }
3730
3731 /* lastStateChange (optional, for compatiblity) */
3732 {
3733 int64_t lastStateChange = 0;
3734 CFGLDRQueryDateTime (machineNode, "lastStateChange", &lastStateChange);
3735 if (lastStateChange == 0)
3736 {
3737 /// @todo (dmik) until lastStateChange is the required attribute,
3738 // we simply set it to the current time if missing in the config
3739 RTTIMESPEC time;
3740 lastStateChange = RTTimeSpecGetMilli (RTTimeNow (&time));
3741 }
3742 mData->mLastStateChange = lastStateChange;
3743 }
3744
3745 /* aborted (optional) */
3746 bool aborted = false;
3747 CFGLDRQueryBool (machineNode, "aborted", &aborted);
3748
3749 /* currentStateModified (optional, default is true) */
3750 mData->mCurrentStateModified = TRUE;
3751 {
3752 bool val = true;
3753 CFGLDRQueryBool (machineNode, "currentStateModified", &val);
3754 mData->mCurrentStateModified = val;
3755 }
3756
3757 /*
3758 * note: all mUserData members must be assigned prior this point because
3759 * we need to commit changes in order to let mUserData be shared by all
3760 * snapshot machine instances.
3761 */
3762 mUserData.commitCopy();
3763
3764 /* Snapshot node (optional) */
3765 {
3766 CFGNODE snapshotNode = 0;
3767 CFGLDRGetChildNode (machineNode, "Snapshot", 0, &snapshotNode);
3768 if (snapshotNode)
3769 {
3770 /* read all snapshots recursively */
3771 rc = loadSnapshot (snapshotNode, currentSnapshotId, NULL);
3772 CFGLDRReleaseNode (snapshotNode);
3773 if (FAILED (rc))
3774 break;
3775 }
3776 }
3777
3778 /* Hardware node (required) */
3779 {
3780 CFGNODE hardwareNode = 0;
3781 CFGLDRGetChildNode (machineNode, "Hardware", 0, &hardwareNode);
3782 ComAssertBreak (hardwareNode, rc = E_FAIL);
3783 rc = loadHardware (hardwareNode);
3784 CFGLDRReleaseNode (hardwareNode);
3785 if (FAILED (rc))
3786 break;
3787 }
3788
3789 /* HardDiskAttachments node (required) */
3790 {
3791 CFGNODE hdasNode = 0;
3792 CFGLDRGetChildNode (machineNode, "HardDiskAttachments", 0, &hdasNode);
3793 ComAssertBreak (hdasNode, rc = E_FAIL);
3794
3795 rc = loadHardDisks (hdasNode, aRegistered);
3796 CFGLDRReleaseNode (hdasNode);
3797 if (FAILED (rc))
3798 break;
3799 }
3800
3801 /* Guest node (optional) */
3802 {
3803 CFGNODE GuestNode = 0;
3804 CFGLDRGetChildNode (machineNode, "Guest", 0, &GuestNode);
3805 if (GuestNode)
3806 {
3807 uint32_t memoryBalloonSize = 0;
3808 CFGLDRQueryUInt32 (GuestNode, "MemoryBalloonSize", &memoryBalloonSize);
3809 mHWData->mMemoryBalloonSize = memoryBalloonSize;
3810
3811 uint32_t statisticsUpdateInterval = 0;
3812 CFGLDRQueryUInt32 (GuestNode, "StatisticsUpdateInterval", &statisticsUpdateInterval);
3813 mHWData->mStatisticsUpdateInterval = statisticsUpdateInterval;
3814
3815 CFGLDRReleaseNode (GuestNode);
3816 }
3817 }
3818
3819 /*
3820 * NOTE: the assignment below must be the last thing to do,
3821 * otherwise it will be not possible to change the settings
3822 * somewehere in the code above because all setters will be
3823 * blocked by checkStateDependency (MutableStateDep).
3824 */
3825
3826 /* set the machine state to Aborted or Saved when appropriate */
3827 if (aborted)
3828 {
3829 Assert (!mSSData->mStateFilePath);
3830 mSSData->mStateFilePath.setNull();
3831
3832 /* no need to use setMachineState() during init() */
3833 mData->mMachineState = MachineState_Aborted;
3834 }
3835 else if (mSSData->mStateFilePath)
3836 {
3837 /* no need to use setMachineState() during init() */
3838 mData->mMachineState = MachineState_Saved;
3839 }
3840 }
3841 while (0);
3842
3843 if (machineNode)
3844 CFGLDRReleaseNode (machineNode);
3845
3846 CFGLDRFree (configLoader);
3847
3848 LogFlowThisFuncLeave();
3849 return rc;
3850}
3851
3852/**
3853 * Recursively loads all snapshots starting from the given.
3854 *
3855 * @param aNode <Snapshot> node
3856 * @param aCurSnapshotId current snapshot ID from the settings file
3857 * @param aParentSnapshot parent snapshot
3858 */
3859HRESULT Machine::loadSnapshot (CFGNODE aNode, const Guid &aCurSnapshotId,
3860 Snapshot *aParentSnapshot)
3861{
3862 AssertReturn (aNode, E_INVALIDARG);
3863 AssertReturn (mType == IsMachine, E_FAIL);
3864
3865 // create a snapshot machine object
3866 ComObjPtr <SnapshotMachine> snapshotMachine;
3867 snapshotMachine.createObject();
3868
3869 HRESULT rc = S_OK;
3870
3871 Guid uuid; // required
3872 CFGLDRQueryUUID (aNode, "uuid", uuid.ptr());
3873
3874 Bstr stateFilePath; // optional
3875 CFGLDRQueryBSTR (aNode, "stateFile", stateFilePath.asOutParam());
3876 if (stateFilePath)
3877 {
3878 Utf8Str stateFilePathFull = stateFilePath;
3879 int vrc = calculateFullPath (stateFilePathFull, stateFilePathFull);
3880 if (VBOX_FAILURE (vrc))
3881 return setError (E_FAIL,
3882 tr ("Invalid saved state file path: '%ls' (%Vrc)"),
3883 stateFilePath.raw(), vrc);
3884
3885 stateFilePath = stateFilePathFull;
3886 }
3887
3888 do
3889 {
3890 // Hardware node (required)
3891 CFGNODE hardwareNode = 0;
3892 CFGLDRGetChildNode (aNode, "Hardware", 0, &hardwareNode);
3893 ComAssertBreak (hardwareNode, rc = E_FAIL);
3894
3895 do
3896 {
3897 // HardDiskAttachments node (required)
3898 CFGNODE hdasNode = 0;
3899 CFGLDRGetChildNode (aNode, "HardDiskAttachments", 0, &hdasNode);
3900 ComAssertBreak (hdasNode, rc = E_FAIL);
3901
3902 // initialize the snapshot machine
3903 rc = snapshotMachine->init (this, hardwareNode, hdasNode,
3904 uuid, stateFilePath);
3905
3906 CFGLDRReleaseNode (hdasNode);
3907 }
3908 while (0);
3909
3910 /* Guest node (optional) */
3911 {
3912 CFGNODE GuestNode = 0;
3913 CFGLDRGetChildNode (aNode, "Guest", 0, &GuestNode);
3914 if (GuestNode)
3915 {
3916 uint32_t memoryBalloonSize = 0;
3917 CFGLDRQueryUInt32 (GuestNode, "MemoryBalloonSize", &memoryBalloonSize);
3918 mHWData->mMemoryBalloonSize = memoryBalloonSize;
3919
3920 uint32_t statisticsUpdateInterval = 0;
3921 CFGLDRQueryUInt32 (GuestNode, "StatisticsUpdateInterval", &statisticsUpdateInterval);
3922 mHWData->mStatisticsUpdateInterval = statisticsUpdateInterval;
3923
3924 CFGLDRReleaseNode (GuestNode);
3925 }
3926 }
3927 CFGLDRReleaseNode (hardwareNode);
3928 }
3929 while (0);
3930
3931 if (FAILED (rc))
3932 return rc;
3933
3934 // create a snapshot object
3935 ComObjPtr <Snapshot> snapshot;
3936 snapshot.createObject();
3937
3938 {
3939 Bstr name; // required
3940 CFGLDRQueryBSTR (aNode, "name", name.asOutParam());
3941
3942 LONG64 timeStamp = 0; // required
3943 CFGLDRQueryDateTime (aNode, "timeStamp", &timeStamp);
3944
3945 Bstr description; // optional
3946 {
3947 CFGNODE descNode = 0;
3948 CFGLDRGetChildNode (aNode, "Description", 0, &descNode);
3949 if (descNode)
3950 {
3951 CFGLDRQueryBSTR (descNode, NULL, description.asOutParam());
3952 CFGLDRReleaseNode (descNode);
3953 }
3954 }
3955
3956 // initialize the snapshot
3957 rc = snapshot->init (uuid, name, description, timeStamp,
3958 snapshotMachine, aParentSnapshot);
3959 if (FAILED (rc))
3960 return rc;
3961 }
3962
3963 // memorize the first snapshot if necessary
3964 if (!mData->mFirstSnapshot)
3965 mData->mFirstSnapshot = snapshot;
3966
3967 // memorize the current snapshot when appropriate
3968 if (!mData->mCurrentSnapshot && snapshot->data().mId == aCurSnapshotId)
3969 mData->mCurrentSnapshot = snapshot;
3970
3971 // Snapshots node (optional)
3972 {
3973 CFGNODE snapshotsNode = 0;
3974 CFGLDRGetChildNode (aNode, "Snapshots", 0, &snapshotsNode);
3975 if (snapshotsNode)
3976 {
3977 unsigned cbDisks = 0;
3978 CFGLDRCountChildren (snapshotsNode, "Snapshot", &cbDisks);
3979 for (unsigned i = 0; i < cbDisks && SUCCEEDED (rc); i++)
3980 {
3981 CFGNODE snapshotNode;
3982 CFGLDRGetChildNode (snapshotsNode, "Snapshot", i, &snapshotNode);
3983 ComAssertBreak (snapshotNode, rc = E_FAIL);
3984
3985 rc = loadSnapshot (snapshotNode, aCurSnapshotId, snapshot);
3986
3987 CFGLDRReleaseNode (snapshotNode);
3988 }
3989
3990 CFGLDRReleaseNode (snapshotsNode);
3991 }
3992 }
3993
3994 return rc;
3995}
3996
3997/**
3998 * @param aNode <Hardware> node
3999 */
4000HRESULT Machine::loadHardware (CFGNODE aNode)
4001{
4002 AssertReturn (aNode, E_INVALIDARG);
4003 AssertReturn (mType == IsMachine || mType == IsSnapshotMachine, E_FAIL);
4004
4005 /* CPU node (currently not required) */
4006 {
4007 /* default value in case the node is not there */
4008 mHWData->mHWVirtExEnabled = TriStateBool_Default;
4009
4010 CFGNODE cpuNode = 0;
4011 CFGLDRGetChildNode (aNode, "CPU", 0, &cpuNode);
4012 if (cpuNode)
4013 {
4014 CFGNODE hwVirtExNode = 0;
4015 CFGLDRGetChildNode (cpuNode, "HardwareVirtEx", 0, &hwVirtExNode);
4016 if (hwVirtExNode)
4017 {
4018 Bstr hwVirtExEnabled;
4019 CFGLDRQueryBSTR (hwVirtExNode, "enabled", hwVirtExEnabled.asOutParam());
4020 if (hwVirtExEnabled == L"false")
4021 mHWData->mHWVirtExEnabled = TriStateBool_False;
4022 else if (hwVirtExEnabled == L"true")
4023 mHWData->mHWVirtExEnabled = TriStateBool_True;
4024 else
4025 mHWData->mHWVirtExEnabled = TriStateBool_Default;
4026 CFGLDRReleaseNode (hwVirtExNode);
4027 }
4028 CFGLDRReleaseNode (cpuNode);
4029 }
4030 }
4031
4032 /* Memory node (required) */
4033 {
4034 CFGNODE memoryNode = 0;
4035 CFGLDRGetChildNode (aNode, "Memory", 0, &memoryNode);
4036 ComAssertRet (memoryNode, E_FAIL);
4037
4038 uint32_t RAMSize;
4039 CFGLDRQueryUInt32 (memoryNode, "RAMSize", &RAMSize);
4040 mHWData->mMemorySize = RAMSize;
4041 CFGLDRReleaseNode (memoryNode);
4042 }
4043
4044 /* Boot node (required) */
4045 {
4046 /* reset all boot order positions to NoDevice */
4047 for (size_t i = 0; i < ELEMENTS (mHWData->mBootOrder); i++)
4048 mHWData->mBootOrder [i] = DeviceType_NoDevice;
4049
4050 CFGNODE bootNode = 0;
4051 CFGLDRGetChildNode (aNode, "Boot", 0, &bootNode);
4052 ComAssertRet (bootNode, E_FAIL);
4053
4054 HRESULT rc = S_OK;
4055
4056 unsigned cOrder;
4057 CFGLDRCountChildren (bootNode, "Order", &cOrder);
4058 for (unsigned i = 0; i < cOrder; i++)
4059 {
4060 CFGNODE orderNode = 0;
4061 CFGLDRGetChildNode (bootNode, "Order", i, &orderNode);
4062 ComAssertBreak (orderNode, rc = E_FAIL);
4063
4064 /* position (required) */
4065 /* position unicity is guaranteed by XML Schema */
4066 uint32_t position = 0;
4067 CFGLDRQueryUInt32 (orderNode, "position", &position);
4068 -- position;
4069 Assert (position < ELEMENTS (mHWData->mBootOrder));
4070
4071 /* device (required) */
4072 Bstr device;
4073 CFGLDRQueryBSTR (orderNode, "device", device.asOutParam());
4074 if (device == L"None")
4075 mHWData->mBootOrder [position] = DeviceType_NoDevice;
4076 else if (device == L"Floppy")
4077 mHWData->mBootOrder [position] = DeviceType_FloppyDevice;
4078 else if (device == L"DVD")
4079 mHWData->mBootOrder [position] = DeviceType_DVDDevice;
4080 else if (device == L"HardDisk")
4081 mHWData->mBootOrder [position] = DeviceType_HardDiskDevice;
4082 else if (device == L"Network")
4083 mHWData->mBootOrder [position] = DeviceType_NetworkDevice;
4084 else
4085 ComAssertMsgFailed (("Invalid device: %ls\n", device.raw()));
4086
4087 CFGLDRReleaseNode (orderNode);
4088 }
4089
4090 CFGLDRReleaseNode (bootNode);
4091 if (FAILED (rc))
4092 return rc;
4093 }
4094
4095 /* Display node (required) */
4096 {
4097 CFGNODE displayNode = 0;
4098 CFGLDRGetChildNode (aNode, "Display", 0, &displayNode);
4099 ComAssertRet (displayNode, E_FAIL);
4100
4101 uint32_t VRAMSize;
4102 CFGLDRQueryUInt32 (displayNode, "VRAMSize", &VRAMSize);
4103 mHWData->mVRAMSize = VRAMSize;
4104
4105 uint32_t MonitorCount;
4106 CFGLDRQueryUInt32 (displayNode, "MonitorCount", &MonitorCount);
4107 mHWData->mMonitorCount = MonitorCount;
4108
4109 CFGLDRReleaseNode (displayNode);
4110 }
4111
4112#ifdef VBOX_VRDP
4113 /* RemoteDisplay node (optional) */
4114 {
4115 CFGNODE remoteDisplayNode = 0;
4116 CFGLDRGetChildNode (aNode, "RemoteDisplay", 0, &remoteDisplayNode);
4117 if (remoteDisplayNode)
4118 {
4119 HRESULT rc = mVRDPServer->loadSettings (remoteDisplayNode);
4120 CFGLDRReleaseNode (remoteDisplayNode);
4121 CheckComRCReturnRC (rc);
4122 }
4123 }
4124#endif
4125
4126 /* BIOS node (required) */
4127 {
4128 CFGNODE biosNode = 0;
4129 CFGLDRGetChildNode (aNode, "BIOS", 0, &biosNode);
4130 ComAssertRet (biosNode, E_FAIL);
4131
4132 HRESULT rc = S_OK;
4133
4134 do
4135 {
4136 /* ACPI */
4137 {
4138 CFGNODE acpiNode = 0;
4139 CFGLDRGetChildNode (biosNode, "ACPI", 0, &acpiNode);
4140 ComAssertBreak (acpiNode, rc = E_FAIL);
4141
4142 bool enabled;
4143 CFGLDRQueryBool (acpiNode, "enabled", &enabled);
4144 mBIOSSettings->COMSETTER(ACPIEnabled)(enabled);
4145 CFGLDRReleaseNode (acpiNode);
4146 }
4147
4148 /* IOAPIC */
4149 {
4150 CFGNODE ioapicNode = 0;
4151 CFGLDRGetChildNode (biosNode, "IOAPIC", 0, &ioapicNode);
4152 if (ioapicNode)
4153 {
4154 bool enabled;
4155 CFGLDRQueryBool (ioapicNode, "enabled", &enabled);
4156 mBIOSSettings->COMSETTER(IOAPICEnabled)(enabled);
4157 CFGLDRReleaseNode (ioapicNode);
4158 }
4159 }
4160
4161 /* Logo (optional) */
4162 {
4163 CFGNODE logoNode = 0;
4164 CFGLDRGetChildNode (biosNode, "Logo", 0, &logoNode);
4165 if (logoNode)
4166 {
4167 bool enabled = false;
4168 CFGLDRQueryBool (logoNode, "fadeIn", &enabled);
4169 mBIOSSettings->COMSETTER(LogoFadeIn)(enabled);
4170 CFGLDRQueryBool (logoNode, "fadeOut", &enabled);
4171 mBIOSSettings->COMSETTER(LogoFadeOut)(enabled);
4172
4173 uint32_t BIOSLogoDisplayTime;
4174 CFGLDRQueryUInt32 (logoNode, "displayTime", &BIOSLogoDisplayTime);
4175 mBIOSSettings->COMSETTER(LogoDisplayTime)(BIOSLogoDisplayTime);
4176
4177 Bstr logoPath;
4178 CFGLDRQueryBSTR (logoNode, "imagePath", logoPath.asOutParam());
4179 mBIOSSettings->COMSETTER(LogoImagePath)(logoPath);
4180
4181 CFGLDRReleaseNode (logoNode);
4182 }
4183 }
4184
4185 /* boot menu (optional) */
4186 {
4187 CFGNODE bootMenuNode = 0;
4188 CFGLDRGetChildNode (biosNode, "BootMenu", 0, &bootMenuNode);
4189 if (bootMenuNode)
4190 {
4191 Bstr modeStr;
4192 BIOSBootMenuMode_T mode;
4193 CFGLDRQueryBSTR (bootMenuNode, "mode", modeStr.asOutParam());
4194 if (modeStr == L"disabled")
4195 mode = BIOSBootMenuMode_Disabled;
4196 else if (modeStr == L"menuonly")
4197 mode = BIOSBootMenuMode_MenuOnly;
4198 else
4199 mode = BIOSBootMenuMode_MessageAndMenu;
4200 mBIOSSettings->COMSETTER(BootMenuMode)(mode);
4201
4202 CFGLDRReleaseNode (bootMenuNode);
4203 }
4204 }
4205
4206 /* time offset (optional) */
4207 {
4208 CFGNODE timeOffsetNode = 0;
4209 CFGLDRGetChildNode (biosNode, "TimeOffset", 0, &timeOffsetNode);
4210 if (timeOffsetNode)
4211 {
4212 LONG64 timeOffset;
4213 CFGLDRQueryInt64 (timeOffsetNode, "value", &timeOffset);
4214 mBIOSSettings->COMSETTER(TimeOffset)(timeOffset);
4215 CFGLDRReleaseNode (timeOffsetNode);
4216 }
4217 }
4218 }
4219 while (0);
4220
4221 CFGLDRReleaseNode (biosNode);
4222 if (FAILED (rc))
4223 return rc;
4224 }
4225
4226 /* DVD drive (contains either Image or HostDrive or nothing) */
4227 /// @todo (dmik) move the code to DVDDrive
4228 {
4229 HRESULT rc = S_OK;
4230
4231 CFGNODE dvdDriveNode = 0;
4232 CFGLDRGetChildNode (aNode, "DVDDrive", 0, &dvdDriveNode);
4233 ComAssertRet (dvdDriveNode, E_FAIL);
4234
4235 bool fPassthrough;
4236 CFGLDRQueryBool(dvdDriveNode, "passthrough", &fPassthrough);
4237 mDVDDrive->COMSETTER(Passthrough)(fPassthrough);
4238
4239 CFGNODE typeNode = 0;
4240
4241 do
4242 {
4243 CFGLDRGetChildNode (dvdDriveNode, "Image", 0, &typeNode);
4244 if (typeNode)
4245 {
4246 Guid uuid;
4247 CFGLDRQueryUUID (typeNode, "uuid", uuid.ptr());
4248 rc = mDVDDrive->MountImage (uuid);
4249 }
4250 else
4251 {
4252 CFGLDRGetChildNode (dvdDriveNode, "HostDrive", 0, &typeNode);
4253 if (typeNode)
4254 {
4255 Bstr src;
4256 CFGLDRQueryBSTR (typeNode, "src", src.asOutParam());
4257
4258 /* find the correspoding object */
4259 ComPtr <IHost> host;
4260 rc = mParent->COMGETTER(Host) (host.asOutParam());
4261 ComAssertComRCBreak (rc, rc = rc);
4262
4263 ComPtr <IHostDVDDriveCollection> coll;
4264 rc = host->COMGETTER(DVDDrives) (coll.asOutParam());
4265 ComAssertComRCBreak (rc, rc = rc);
4266
4267 ComPtr <IHostDVDDrive> drive;
4268 rc = coll->FindByName (src, drive.asOutParam());
4269 if (SUCCEEDED (rc))
4270 rc = mDVDDrive->CaptureHostDrive (drive);
4271 else if (rc == E_INVALIDARG)
4272 {
4273 /* the host DVD drive is not currently available. we
4274 * assume it will be available later and create an
4275 * extra object now */
4276 ComObjPtr <HostDVDDrive> hostDrive;
4277 hostDrive.createObject();
4278 rc = hostDrive->init (src);
4279 ComAssertComRCBreak (rc, rc = rc);
4280 rc = mDVDDrive->CaptureHostDrive (hostDrive);
4281 }
4282 else
4283 ComAssertComRCBreak (rc, rc = rc);
4284 }
4285 }
4286 }
4287 while (0);
4288
4289 if (typeNode)
4290 CFGLDRReleaseNode (typeNode);
4291 CFGLDRReleaseNode (dvdDriveNode);
4292
4293 if (FAILED (rc))
4294 return rc;
4295 }
4296
4297 /* Floppy drive (contains either Image or HostDrive or nothing) */
4298 /// @todo (dmik) move the code to FloppyDrive
4299 {
4300 HRESULT rc = S_OK;
4301
4302 CFGNODE driveNode = 0;
4303 CFGLDRGetChildNode (aNode, "FloppyDrive", 0, &driveNode);
4304 ComAssertRet (driveNode, E_FAIL);
4305
4306 BOOL fFloppyEnabled = TRUE;
4307 CFGLDRQueryBool (driveNode, "enabled", (bool*)&fFloppyEnabled);
4308 rc = mFloppyDrive->COMSETTER(Enabled)(fFloppyEnabled);
4309
4310 CFGNODE typeNode = 0;
4311 do
4312 {
4313 CFGLDRGetChildNode (driveNode, "Image", 0, &typeNode);
4314 if (typeNode)
4315 {
4316 Guid uuid;
4317 CFGLDRQueryUUID (typeNode, "uuid", uuid.ptr());
4318 rc = mFloppyDrive->MountImage (uuid);
4319 }
4320 else
4321 {
4322 CFGLDRGetChildNode (driveNode, "HostDrive", 0, &typeNode);
4323 if (typeNode)
4324 {
4325 Bstr src;
4326 CFGLDRQueryBSTR (typeNode, "src", src.asOutParam());
4327
4328 /* find the correspoding object */
4329 ComPtr <IHost> host;
4330 rc = mParent->COMGETTER(Host) (host.asOutParam());
4331 ComAssertComRCBreak (rc, rc = rc);
4332
4333 ComPtr <IHostFloppyDriveCollection> coll;
4334 rc = host->COMGETTER(FloppyDrives) (coll.asOutParam());
4335 ComAssertComRCBreak (rc, rc = rc);
4336
4337 ComPtr <IHostFloppyDrive> drive;
4338 rc = coll->FindByName (src, drive.asOutParam());
4339 if (SUCCEEDED (rc))
4340 rc = mFloppyDrive->CaptureHostDrive (drive);
4341 else if (rc == E_INVALIDARG)
4342 {
4343 /* the host Floppy drive is not currently available. we
4344 * assume it will be available later and create an
4345 * extra object now */
4346 ComObjPtr <HostFloppyDrive> hostDrive;
4347 hostDrive.createObject();
4348 rc = hostDrive->init (src);
4349 ComAssertComRCBreak (rc, rc = rc);
4350 rc = mFloppyDrive->CaptureHostDrive (hostDrive);
4351 }
4352 else
4353 ComAssertComRCBreak (rc, rc = rc);
4354 }
4355 }
4356 }
4357 while (0);
4358
4359 if (typeNode)
4360 CFGLDRReleaseNode (typeNode);
4361 CFGLDRReleaseNode (driveNode);
4362
4363 CheckComRCReturnRC (rc);
4364 }
4365
4366 /* USB Controller */
4367 {
4368 HRESULT rc = mUSBController->loadSettings (aNode);
4369 CheckComRCReturnRC (rc);
4370 }
4371
4372 /* Network node (required) */
4373 /// @todo (dmik) move the code to NetworkAdapter
4374 {
4375 /* we assume that all network adapters are initially disabled
4376 * and detached */
4377
4378 CFGNODE networkNode = 0;
4379 CFGLDRGetChildNode (aNode, "Network", 0, &networkNode);
4380 ComAssertRet (networkNode, E_FAIL);
4381
4382 HRESULT rc = S_OK;
4383
4384 unsigned cAdapters = 0;
4385 CFGLDRCountChildren (networkNode, "Adapter", &cAdapters);
4386 for (unsigned i = 0; i < cAdapters; i++)
4387 {
4388 CFGNODE adapterNode = 0;
4389 CFGLDRGetChildNode (networkNode, "Adapter", i, &adapterNode);
4390 ComAssertBreak (adapterNode, rc = E_FAIL);
4391
4392 /* slot number (required) */
4393 /* slot unicity is guaranteed by XML Schema */
4394 uint32_t slot = 0;
4395 CFGLDRQueryUInt32 (adapterNode, "slot", &slot);
4396 Assert (slot < ELEMENTS (mNetworkAdapters));
4397
4398 /* type */
4399 Bstr adapterType;
4400 CFGLDRQueryBSTR (adapterNode, "type", adapterType.asOutParam());
4401 ComAssertBreak (adapterType, rc = E_FAIL);
4402
4403 /* enabled (required) */
4404 bool enabled = false;
4405 CFGLDRQueryBool (adapterNode, "enabled", &enabled);
4406 /* MAC address (can be null) */
4407 Bstr macAddr;
4408 CFGLDRQueryBSTR (adapterNode, "MACAddress", macAddr.asOutParam());
4409 /* cable (required) */
4410 bool cableConnected;
4411 CFGLDRQueryBool (adapterNode, "cable", &cableConnected);
4412 /* tracing (defaults to false) */
4413 bool traceEnabled;
4414 CFGLDRQueryBool (adapterNode, "trace", &traceEnabled);
4415 Bstr traceFile;
4416 CFGLDRQueryBSTR (adapterNode, "tracefile", traceFile.asOutParam());
4417
4418 mNetworkAdapters [slot]->COMSETTER(Enabled) (enabled);
4419 mNetworkAdapters [slot]->COMSETTER(MACAddress) (macAddr);
4420 mNetworkAdapters [slot]->COMSETTER(CableConnected) (cableConnected);
4421 mNetworkAdapters [slot]->COMSETTER(TraceEnabled) (traceEnabled);
4422 mNetworkAdapters [slot]->COMSETTER(TraceFile) (traceFile);
4423
4424 if (adapterType.compare(Bstr("Am79C970A")) == 0)
4425 mNetworkAdapters [slot]->COMSETTER(AdapterType)(NetworkAdapterType_NetworkAdapterAm79C970A);
4426 else if (adapterType.compare(Bstr("Am79C973")) == 0)
4427 mNetworkAdapters [slot]->COMSETTER(AdapterType)(NetworkAdapterType_NetworkAdapterAm79C973);
4428 else
4429 ComAssertBreak (0, rc = E_FAIL);
4430
4431 CFGNODE attachmentNode = 0;
4432 if (CFGLDRGetChildNode (adapterNode, "NAT", 0, &attachmentNode), attachmentNode)
4433 {
4434 mNetworkAdapters [slot]->AttachToNAT();
4435 }
4436 else
4437 if (CFGLDRGetChildNode (adapterNode, "HostInterface", 0, &attachmentNode), attachmentNode)
4438 {
4439 /* Host Interface Networking */
4440 Bstr name;
4441 CFGLDRQueryBSTR (attachmentNode, "name", name.asOutParam());
4442#ifdef RT_OS_WINDOWS
4443 /* @name can be empty on Win32, but not null */
4444 ComAssertBreak (!name.isNull(), rc = E_FAIL);
4445#endif
4446 mNetworkAdapters [slot]->COMSETTER(HostInterface) (name);
4447#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
4448 Bstr tapSetupApp;
4449 CFGLDRQueryBSTR (attachmentNode, "TAPSetup", tapSetupApp.asOutParam());
4450 Bstr tapTerminateApp;
4451 CFGLDRQueryBSTR (attachmentNode, "TAPTerminate", tapTerminateApp.asOutParam());
4452
4453 mNetworkAdapters [slot]->COMSETTER(TAPSetupApplication) (tapSetupApp);
4454 mNetworkAdapters [slot]->COMSETTER(TAPTerminateApplication) (tapTerminateApp);
4455#endif // VBOX_WITH_UNIXY_TAP_NETWORKING
4456 mNetworkAdapters [slot]->AttachToHostInterface();
4457 }
4458 else
4459 if (CFGLDRGetChildNode(adapterNode, "InternalNetwork", 0, &attachmentNode), attachmentNode)
4460 {
4461 /* Internal Networking */
4462 Bstr name;
4463 CFGLDRQueryBSTR (attachmentNode, "name", name.asOutParam());
4464 ComAssertBreak (!name.isNull(), rc = E_FAIL);
4465 mNetworkAdapters[slot]->AttachToInternalNetwork();
4466 mNetworkAdapters[slot]->COMSETTER(InternalNetwork) (name);
4467 }
4468 else
4469 {
4470 /* Adapter has no children */
4471 mNetworkAdapters [slot]->Detach();
4472 }
4473 if (attachmentNode)
4474 CFGLDRReleaseNode (attachmentNode);
4475
4476 CFGLDRReleaseNode (adapterNode);
4477 }
4478
4479 CFGLDRReleaseNode (networkNode);
4480 if (FAILED (rc))
4481 return rc;
4482 }
4483
4484 /* Serial node (optional) */
4485 CFGNODE serialNode = 0;
4486 CFGLDRGetChildNode (aNode, "Uart", 0, &serialNode);
4487 if (serialNode)
4488 {
4489 HRESULT rc = S_OK;
4490 unsigned cPorts = 0;
4491 CFGLDRCountChildren (serialNode, "Port", &cPorts);
4492 for (unsigned slot = 0; slot < cPorts; slot++)
4493 {
4494 rc = mSerialPorts [slot]->loadSettings (serialNode, slot);
4495 CheckComRCReturnRC (rc);
4496 }
4497 CFGLDRReleaseNode (serialNode);
4498 }
4499
4500 /* Parallel node (optional) */
4501 CFGNODE parallelNode = 0;
4502 CFGLDRGetChildNode (aNode, "Lpt", 0, &parallelNode);
4503 if (parallelNode)
4504 {
4505 HRESULT rc = S_OK;
4506 unsigned cPorts = 0;
4507 CFGLDRCountChildren (parallelNode, "Port", &cPorts);
4508 for (unsigned slot = 0; slot < cPorts; slot++)
4509 {
4510 rc = mParallelPorts [slot]->loadSettings (parallelNode, slot);
4511 CheckComRCReturnRC (rc);
4512 }
4513 CFGLDRReleaseNode (parallelNode);
4514 }
4515
4516 /* AudioAdapter node (required) */
4517 /// @todo (dmik) move the code to AudioAdapter
4518 {
4519 CFGNODE audioAdapterNode = 0;
4520 CFGLDRGetChildNode (aNode, "AudioAdapter", 0, &audioAdapterNode);
4521 ComAssertRet (audioAdapterNode, E_FAIL);
4522
4523 // is the adapter enabled?
4524 bool enabled = false;
4525 CFGLDRQueryBool (audioAdapterNode, "enabled", &enabled);
4526 mAudioAdapter->COMSETTER(Enabled) (enabled);
4527 // now check the audio driver
4528 Bstr driver;
4529 CFGLDRQueryBSTR (audioAdapterNode, "driver", driver.asOutParam());
4530 AudioDriverType_T audioDriver;
4531 audioDriver = AudioDriverType_NullAudioDriver;
4532 if (driver == L"null")
4533 ; // Null has been set above
4534#ifdef RT_OS_WINDOWS
4535 else if (driver == L"winmm")
4536#ifdef VBOX_WITH_WINMM
4537 audioDriver = AudioDriverType_WINMMAudioDriver;
4538#else
4539 // fall back to dsound
4540 audioDriver = AudioDriverType_DSOUNDAudioDriver;
4541#endif
4542 else if (driver == L"dsound")
4543 audioDriver = AudioDriverType_DSOUNDAudioDriver;
4544#endif // RT_OS_WINDOWS
4545#ifdef RT_OS_LINUX
4546 else if (driver == L"oss")
4547 audioDriver = AudioDriverType_OSSAudioDriver;
4548 else if (driver == L"alsa")
4549#ifdef VBOX_WITH_ALSA
4550 audioDriver = AudioDriverType_ALSAAudioDriver;
4551#else
4552 // fall back to OSS
4553 audioDriver = AudioDriverType_OSSAudioDriver;
4554#endif
4555#endif // RT_OS_LINUX
4556#ifdef RT_OS_DARWIN
4557 else if (driver == L"coreaudio")
4558 audioDriver = AudioDriverType_CoreAudioDriver;
4559#endif
4560#ifdef RT_OS_OS2
4561 else if (driver == L"mmpm")
4562 audioDriver = AudioDriverType_MMPMAudioDriver;
4563#endif
4564 else
4565 AssertMsgFailed (("Invalid driver: %ls\n", driver.raw()));
4566 mAudioAdapter->COMSETTER(AudioDriver) (audioDriver);
4567
4568 CFGLDRReleaseNode (audioAdapterNode);
4569 }
4570
4571 /* Shared folders (optional) */
4572 /// @todo (dmik) make required on next format change!
4573 do
4574 {
4575 CFGNODE sharedFoldersNode = 0;
4576 CFGLDRGetChildNode (aNode, "SharedFolders", 0, &sharedFoldersNode);
4577
4578 if (!sharedFoldersNode)
4579 break;
4580
4581 HRESULT rc = S_OK;
4582
4583 unsigned cFolders = 0;
4584 CFGLDRCountChildren (sharedFoldersNode, "SharedFolder", &cFolders);
4585
4586 for (unsigned i = 0; i < cFolders; i++)
4587 {
4588 CFGNODE folderNode = 0;
4589 CFGLDRGetChildNode (sharedFoldersNode, "SharedFolder", i, &folderNode);
4590 ComAssertBreak (folderNode, rc = E_FAIL);
4591
4592 // folder logical name (required)
4593 Bstr name;
4594 CFGLDRQueryBSTR (folderNode, "name", name.asOutParam());
4595
4596 // folder host path (required)
4597 Bstr hostPath;
4598 CFGLDRQueryBSTR (folderNode, "hostPath", hostPath.asOutParam());
4599
4600 rc = CreateSharedFolder (name, hostPath);
4601 if (FAILED (rc))
4602 break;
4603
4604 CFGLDRReleaseNode (folderNode);
4605 }
4606
4607 CFGLDRReleaseNode (sharedFoldersNode);
4608 if (FAILED (rc))
4609 return rc;
4610 }
4611 while (0);
4612
4613 /* Clipboard node (currently not required) */
4614 /// @todo (dmik) make required on next format change!
4615 {
4616 /* default value in case the node is not there */
4617 mHWData->mClipboardMode = ClipboardMode_ClipDisabled;
4618
4619 CFGNODE clipNode = 0;
4620 CFGLDRGetChildNode (aNode, "Clipboard", 0, &clipNode);
4621 if (clipNode)
4622 {
4623 Bstr mode;
4624 CFGLDRQueryBSTR (clipNode, "mode", mode.asOutParam());
4625 if (mode == L"Disabled")
4626 mHWData->mClipboardMode = ClipboardMode_ClipDisabled;
4627 else if (mode == L"HostToGuest")
4628 mHWData->mClipboardMode = ClipboardMode_ClipHostToGuest;
4629 else if (mode == L"GuestToHost")
4630 mHWData->mClipboardMode = ClipboardMode_ClipGuestToHost;
4631 else if (mode == L"Bidirectional")
4632 mHWData->mClipboardMode = ClipboardMode_ClipBidirectional;
4633 else
4634 AssertMsgFailed (("%ls clipboard mode is invalid\n", mode.raw()));
4635 CFGLDRReleaseNode (clipNode);
4636 }
4637 }
4638
4639 return S_OK;
4640}
4641
4642/**
4643 * @param aNode <HardDiskAttachments> node
4644 * @param aRegistered true when the machine is being loaded on VirtualBox
4645 * startup, or when a snapshot is being loaded (wchich
4646 * currently can happen on startup only)
4647 * @param aSnapshotId pointer to the snapshot ID if this is a snapshot machine
4648 */
4649HRESULT Machine::loadHardDisks (CFGNODE aNode, bool aRegistered,
4650 const Guid *aSnapshotId /* = NULL */)
4651{
4652 AssertReturn (aNode, E_INVALIDARG);
4653 AssertReturn ((mType == IsMachine && aSnapshotId == NULL) ||
4654 (mType == IsSnapshotMachine && aSnapshotId != NULL), E_FAIL);
4655
4656 HRESULT rc = S_OK;
4657
4658 unsigned cbDisks = 0;
4659 CFGLDRCountChildren (aNode, "HardDiskAttachment", &cbDisks);
4660
4661 if (!aRegistered && cbDisks > 0)
4662 {
4663 /* when the machine is being loaded (opened) from a file, it cannot
4664 * have hard disks attached (this should not happen normally,
4665 * because we don't allow to attach hard disks to an unregistered
4666 * VM at all */
4667 return setError (E_FAIL,
4668 tr ("Unregistered machine '%ls' cannot have hard disks attached "
4669 "(found %d hard disk attachments)"),
4670 mUserData->mName.raw(), cbDisks);
4671 }
4672
4673 for (unsigned i = 0; i < cbDisks && SUCCEEDED (rc); ++ i)
4674 {
4675 CFGNODE hdNode;
4676 CFGLDRGetChildNode (aNode, "HardDiskAttachment", i, &hdNode);
4677 ComAssertRet (hdNode, E_FAIL);
4678
4679 do
4680 {
4681 /* hardDisk uuid (required) */
4682 Guid uuid;
4683 CFGLDRQueryUUID (hdNode, "hardDisk", uuid.ptr());
4684 /* bus (controller) type (required) */
4685 Bstr bus;
4686 CFGLDRQueryBSTR (hdNode, "bus", bus.asOutParam());
4687 /* device (required) */
4688 Bstr device;
4689 CFGLDRQueryBSTR (hdNode, "device", device.asOutParam());
4690
4691 /* find a hard disk by UUID */
4692 ComObjPtr <HardDisk> hd;
4693 rc = mParent->getHardDisk (uuid, hd);
4694 if (FAILED (rc))
4695 break;
4696
4697 AutoLock hdLock (hd);
4698
4699 if (!hd->machineId().isEmpty())
4700 {
4701 rc = setError (E_FAIL,
4702 tr ("Hard disk '%ls' with UUID {%s} is already "
4703 "attached to a machine with UUID {%s} (see '%ls')"),
4704 hd->toString().raw(), uuid.toString().raw(),
4705 hd->machineId().toString().raw(),
4706 mData->mConfigFileFull.raw());
4707 break;
4708 }
4709
4710 if (hd->type() == HardDiskType_ImmutableHardDisk)
4711 {
4712 rc = setError (E_FAIL,
4713 tr ("Immutable hard disk '%ls' with UUID {%s} cannot be "
4714 "directly attached to a machine (see '%ls')"),
4715 hd->toString().raw(), uuid.toString().raw(),
4716 mData->mConfigFileFull.raw());
4717 break;
4718 }
4719
4720 /* attach the device */
4721 DiskControllerType_T ctl = DiskControllerType_InvalidController;
4722 LONG dev = -1;
4723
4724 if (bus == L"ide0")
4725 {
4726 ctl = DiskControllerType_IDE0Controller;
4727 if (device == L"master")
4728 dev = 0;
4729 else if (device == L"slave")
4730 dev = 1;
4731 else
4732 ComAssertMsgFailedBreak (("Invalid device: %ls\n", device.raw()),
4733 rc = E_FAIL);
4734 }
4735 else if (bus == L"ide1")
4736 {
4737 ctl = DiskControllerType_IDE1Controller;
4738 if (device == L"master")
4739 rc = setError (E_FAIL, tr("Could not attach a disk as a master "
4740 "device on the secondary controller"));
4741 else if (device == L"slave")
4742 dev = 1;
4743 else
4744 ComAssertMsgFailedBreak (("Invalid device: %ls\n", device.raw()),
4745 rc = E_FAIL);
4746 }
4747 else
4748 ComAssertMsgFailedBreak (("Invalid bus: %ls\n", bus.raw()),
4749 rc = E_FAIL);
4750
4751 ComObjPtr <HardDiskAttachment> attachment;
4752 attachment.createObject();
4753 rc = attachment->init (hd, ctl, dev, false /* aDirty */);
4754 if (FAILED (rc))
4755 break;
4756
4757 /* associate the hard disk with this machine */
4758 hd->setMachineId (mData->mUuid);
4759
4760 /* associate the hard disk with the given snapshot ID */
4761 if (mType == IsSnapshotMachine)
4762 hd->setSnapshotId (*aSnapshotId);
4763
4764 mHDData->mHDAttachments.push_back (attachment);
4765 }
4766 while (0);
4767
4768 CFGLDRReleaseNode (hdNode);
4769 }
4770
4771 return rc;
4772}
4773
4774/**
4775 * Creates a config loader and loads the settings file.
4776 *
4777 * @param aIsNew |true| if a newly created settings file is to be opened
4778 * (must be the case only when called from #saveSettings())
4779 *
4780 * @note
4781 * XML Schema errors are not detected by this method because
4782 * it assumes that it will load settings from an exclusively locked
4783 * file (using a file handle) that was previously validated when opened
4784 * for the first time. Thus, this method should be used only when
4785 * it's necessary to modify (save) the settings file.
4786 *
4787 * @note The object must be locked at least for reading before calling
4788 * this method.
4789 */
4790HRESULT Machine::openConfigLoader (CFGHANDLE *aLoader, bool aIsNew /* = false */)
4791{
4792 AssertReturn (aLoader, E_FAIL);
4793
4794 /* The settings file must be created and locked at this point */
4795 ComAssertRet (isConfigLocked(), E_FAIL);
4796
4797 /* load the config file */
4798 int vrc = CFGLDRLoad (aLoader,
4799 Utf8Str (mData->mConfigFileFull), mData->mHandleCfgFile,
4800 aIsNew ? NULL : XmlSchemaNS, true, cfgLdrEntityResolver,
4801 NULL);
4802 ComAssertRCRet (vrc, E_FAIL);
4803
4804 return S_OK;
4805}
4806
4807/**
4808 * Closes the config loader previously created by #openConfigLoader().
4809 * If \a aSaveBeforeClose is true, then the config is saved to the settings file
4810 * before closing. If saving fails, a proper error message is set.
4811 *
4812 * @param aSaveBeforeClose whether to save the config before closing or not
4813 */
4814HRESULT Machine::closeConfigLoader (CFGHANDLE aLoader, bool aSaveBeforeClose)
4815{
4816 HRESULT rc = S_OK;
4817
4818 if (aSaveBeforeClose)
4819 {
4820 char *loaderError = NULL;
4821 int vrc = CFGLDRSave (aLoader, &loaderError);
4822 if (VBOX_FAILURE (vrc))
4823 {
4824 rc = setError (E_FAIL,
4825 tr ("Could not save the settings file '%ls' (%Vrc)%s%s"),
4826 mData->mConfigFileFull.raw(), vrc,
4827 loaderError ? ".\n" : "", loaderError ? loaderError : "");
4828 if (loaderError)
4829 RTMemTmpFree (loaderError);
4830 }
4831 }
4832
4833 CFGLDRFree (aLoader);
4834
4835 return rc;
4836}
4837
4838/**
4839 * Searches for a <Snapshot> node for the given snapshot.
4840 * If the search is successful, \a aSnapshotNode will contain the found node.
4841 * In this case, \a aSnapshotsNode can be NULL meaning the found node is a
4842 * direct child of \a aMachineNode.
4843 *
4844 * If the search fails, a failure is returned and both \a aSnapshotsNode and
4845 * \a aSnapshotNode are set to 0.
4846 *
4847 * @param aSnapshot snapshot to search for
4848 * @param aMachineNode <Machine> node to start from
4849 * @param aSnapshotsNode <Snapshots> node containing the found <Snapshot> node
4850 * (may be NULL if the caller is not interested)
4851 * @param aSnapshotNode found <Snapshot> node
4852 */
4853HRESULT Machine::findSnapshotNode (Snapshot *aSnapshot, CFGNODE aMachineNode,
4854 CFGNODE *aSnapshotsNode, CFGNODE *aSnapshotNode)
4855{
4856 AssertReturn (aSnapshot && aMachineNode && aSnapshotNode, E_FAIL);
4857
4858 if (aSnapshotsNode)
4859 *aSnapshotsNode = 0;
4860 *aSnapshotNode = 0;
4861
4862 // build the full uuid path (from the fist parent to the given snapshot)
4863 std::list <Guid> path;
4864 {
4865 ComObjPtr <Snapshot> parent = aSnapshot;
4866 while (parent)
4867 {
4868 path.push_front (parent->data().mId);
4869 parent = parent->parent();
4870 }
4871 }
4872
4873 CFGNODE snapshotsNode = aMachineNode;
4874 CFGNODE snapshotNode = 0;
4875
4876 for (std::list <Guid>::const_iterator it = path.begin();
4877 it != path.end();
4878 ++ it)
4879 {
4880 if (snapshotNode)
4881 {
4882 // proceed to the nested <Snapshots> node
4883 Assert (snapshotsNode);
4884 if (snapshotsNode != aMachineNode)
4885 {
4886 CFGLDRReleaseNode (snapshotsNode);
4887 snapshotsNode = 0;
4888 }
4889 CFGLDRGetChildNode (snapshotNode, "Snapshots", 0, &snapshotsNode);
4890 CFGLDRReleaseNode (snapshotNode);
4891 snapshotNode = 0;
4892 }
4893
4894 AssertReturn (snapshotsNode, E_FAIL);
4895
4896 unsigned count = 0, i = 0;
4897 CFGLDRCountChildren (snapshotsNode, "Snapshot", &count);
4898 for (; i < count; ++ i)
4899 {
4900 snapshotNode = 0;
4901 CFGLDRGetChildNode (snapshotsNode, "Snapshot", i, &snapshotNode);
4902 Guid id;
4903 CFGLDRQueryUUID (snapshotNode, "uuid", id.ptr());
4904 if (id == (*it))
4905 {
4906 // we keep (don't release) snapshotNode and snapshotsNode
4907 break;
4908 }
4909 CFGLDRReleaseNode (snapshotNode);
4910 snapshotNode = 0;
4911 }
4912
4913 if (i == count)
4914 {
4915 // the next uuid is not found, no need to continue...
4916 AssertFailed();
4917 if (snapshotsNode != aMachineNode)
4918 {
4919 CFGLDRReleaseNode (snapshotsNode);
4920 snapshotsNode = 0;
4921 }
4922 break;
4923 }
4924 }
4925
4926 // we must always succesfully find the node
4927 AssertReturn (snapshotNode, E_FAIL);
4928 AssertReturn (snapshotsNode, E_FAIL);
4929
4930 if (aSnapshotsNode)
4931 *aSnapshotsNode = snapshotsNode != aMachineNode ? snapshotsNode : 0;
4932 *aSnapshotNode = snapshotNode;
4933
4934 return S_OK;
4935}
4936
4937/**
4938 * Returns the snapshot with the given UUID or fails of no such snapshot.
4939 *
4940 * @param aId snapshot UUID to find (empty UUID refers the first snapshot)
4941 * @param aSnapshot where to return the found snapshot
4942 * @param aSetError true to set extended error info on failure
4943 */
4944HRESULT Machine::findSnapshot (const Guid &aId, ComObjPtr <Snapshot> &aSnapshot,
4945 bool aSetError /* = false */)
4946{
4947 if (!mData->mFirstSnapshot)
4948 {
4949 if (aSetError)
4950 return setError (E_FAIL,
4951 tr ("This machine does not have any snapshots"));
4952 return E_FAIL;
4953 }
4954
4955 if (aId.isEmpty())
4956 aSnapshot = mData->mFirstSnapshot;
4957 else
4958 aSnapshot = mData->mFirstSnapshot->findChildOrSelf (aId);
4959
4960 if (!aSnapshot)
4961 {
4962 if (aSetError)
4963 return setError (E_FAIL,
4964 tr ("Could not find a snapshot with UUID {%s}"),
4965 aId.toString().raw());
4966 return E_FAIL;
4967 }
4968
4969 return S_OK;
4970}
4971
4972/**
4973 * Returns the snapshot with the given name or fails of no such snapshot.
4974 *
4975 * @param aName snapshot name to find
4976 * @param aSnapshot where to return the found snapshot
4977 * @param aSetError true to set extended error info on failure
4978 */
4979HRESULT Machine::findSnapshot (const BSTR aName, ComObjPtr <Snapshot> &aSnapshot,
4980 bool aSetError /* = false */)
4981{
4982 AssertReturn (aName, E_INVALIDARG);
4983
4984 if (!mData->mFirstSnapshot)
4985 {
4986 if (aSetError)
4987 return setError (E_FAIL,
4988 tr ("This machine does not have any snapshots"));
4989 return E_FAIL;
4990 }
4991
4992 aSnapshot = mData->mFirstSnapshot->findChildOrSelf (aName);
4993
4994 if (!aSnapshot)
4995 {
4996 if (aSetError)
4997 return setError (E_FAIL,
4998 tr ("Could not find a snapshot named '%ls'"), aName);
4999 return E_FAIL;
5000 }
5001
5002 return S_OK;
5003}
5004
5005/**
5006 * Searches for an attachment that contains the given hard disk.
5007 * The hard disk must be associated with some VM and can be optionally
5008 * associated with some snapshot. If the attachment is stored in the snapshot
5009 * (i.e. the hard disk is associated with some snapshot), @a aSnapshot
5010 * will point to a non-null object on output.
5011 *
5012 * @param aHd hard disk to search an attachment for
5013 * @param aMachine where to store the hard disk's machine (can be NULL)
5014 * @param aSnapshot where to store the hard disk's snapshot (can be NULL)
5015 * @param aHda where to store the hard disk's attachment (can be NULL)
5016 *
5017 *
5018 * @note
5019 * It is assumed that the machine where the attachment is found,
5020 * is already placed to the Discarding state, when this method is called.
5021 * @note
5022 * The object returned in @a aHda is the attachment from the snapshot
5023 * machine if the hard disk is associated with the snapshot, not from the
5024 * primary machine object returned returned in @a aMachine.
5025 */
5026HRESULT Machine::findHardDiskAttachment (const ComObjPtr <HardDisk> &aHd,
5027 ComObjPtr <Machine> *aMachine,
5028 ComObjPtr <Snapshot> *aSnapshot,
5029 ComObjPtr <HardDiskAttachment> *aHda)
5030{
5031 AssertReturn (!aHd.isNull(), E_INVALIDARG);
5032
5033 Guid mid = aHd->machineId();
5034 Guid sid = aHd->snapshotId();
5035
5036 AssertReturn (!mid.isEmpty(), E_INVALIDARG);
5037
5038 ComObjPtr <Machine> m;
5039 mParent->getMachine (mid, m);
5040 ComAssertRet (!m.isNull(), E_FAIL);
5041
5042 HDData::HDAttachmentList *attachments = &m->mHDData->mHDAttachments;
5043
5044 ComObjPtr <Snapshot> s;
5045 if (!sid.isEmpty())
5046 {
5047 m->findSnapshot (sid, s);
5048 ComAssertRet (!s.isNull(), E_FAIL);
5049 attachments = &s->data().mMachine->mHDData->mHDAttachments;
5050 }
5051
5052 AssertReturn (attachments, E_FAIL);
5053
5054 for (HDData::HDAttachmentList::const_iterator it = attachments->begin();
5055 it != attachments->end();
5056 ++ it)
5057 {
5058 if ((*it)->hardDisk() == aHd)
5059 {
5060 if (aMachine) *aMachine = m;
5061 if (aSnapshot) *aSnapshot = s;
5062 if (aHda) *aHda = (*it);
5063 return S_OK;
5064 }
5065 }
5066
5067 ComAssertFailed();
5068 return E_FAIL;
5069}
5070
5071/**
5072 * Helper for #saveSettings. Cares about renaming the settings directory and
5073 * file if the machine name was changed and about creating a new settings file
5074 * if this is a new machine.
5075 *
5076 * @note Must be never called directly.
5077 *
5078 * @param aRenamed receives |true| if the name was changed and the settings
5079 * file was renamed as a result, or |false| otherwise. The
5080 * value makes sense only on success.
5081 * @param aNew receives |true| if a virgin settings file was created.
5082 */
5083HRESULT Machine::prepareSaveSettings (bool &aRenamed, bool &aNew)
5084{
5085 HRESULT rc = S_OK;
5086
5087 aRenamed = false;
5088
5089 /* if we're ready and isConfigLocked() is FALSE then it means
5090 * that no config file exists yet (we will create a virgin one) */
5091 aNew = !isConfigLocked();
5092
5093 /* attempt to rename the settings file if machine name is changed */
5094 if (mUserData->mNameSync &&
5095 mUserData.isBackedUp() &&
5096 mUserData.backedUpData()->mName != mUserData->mName)
5097 {
5098 aRenamed = true;
5099
5100 if (!aNew)
5101 {
5102 /* unlock the old config file */
5103 rc = unlockConfig();
5104 CheckComRCReturnRC (rc);
5105 }
5106
5107 bool dirRenamed = false;
5108 bool fileRenamed = false;
5109
5110 Utf8Str configFile, newConfigFile;
5111 Utf8Str configDir, newConfigDir;
5112
5113 do
5114 {
5115 int vrc = VINF_SUCCESS;
5116
5117 Utf8Str name = mUserData.backedUpData()->mName;
5118 Utf8Str newName = mUserData->mName;
5119
5120 configFile = mData->mConfigFileFull;
5121
5122 /* first, rename the directory if it matches the machine name */
5123 configDir = configFile;
5124 RTPathStripFilename (configDir.mutableRaw());
5125 newConfigDir = configDir;
5126 if (RTPathFilename (configDir) == name)
5127 {
5128 RTPathStripFilename (newConfigDir.mutableRaw());
5129 newConfigDir = Utf8StrFmt ("%s%c%s",
5130 newConfigDir.raw(), RTPATH_DELIMITER, newName.raw());
5131 /* new dir and old dir cannot be equal here because of 'if'
5132 * above and because name != newName */
5133 Assert (configDir != newConfigDir);
5134 if (!aNew)
5135 {
5136 /* perform real rename only if the machine is not new */
5137 vrc = RTPathRename (configDir.raw(), newConfigDir.raw(), 0);
5138 if (VBOX_FAILURE (vrc))
5139 {
5140 rc = setError (E_FAIL,
5141 tr ("Could not rename the directory '%s' to '%s' "
5142 "to save the settings file (%Vrc)"),
5143 configDir.raw(), newConfigDir.raw(), vrc);
5144 break;
5145 }
5146 dirRenamed = true;
5147 }
5148 }
5149
5150 newConfigFile = Utf8StrFmt ("%s%c%s.xml",
5151 newConfigDir.raw(), RTPATH_DELIMITER, newName.raw());
5152
5153 /* then try to rename the settings file itself */
5154 if (newConfigFile != configFile)
5155 {
5156 /* get the path to old settings file in renamed directory */
5157 configFile = Utf8StrFmt ("%s%c%s",
5158 newConfigDir.raw(), RTPATH_DELIMITER,
5159 RTPathFilename (configFile));
5160 if (!aNew)
5161 {
5162 /* perform real rename only if the machine is not new */
5163 vrc = RTFileRename (configFile.raw(), newConfigFile.raw(), 0);
5164 if (VBOX_FAILURE (vrc))
5165 {
5166 rc = setError (E_FAIL,
5167 tr ("Could not rename the settings file '%s' to '%s' "
5168 "(%Vrc)"),
5169 configFile.raw(), newConfigFile.raw(), vrc);
5170 break;
5171 }
5172 fileRenamed = true;
5173 }
5174 }
5175
5176 /* update mConfigFileFull amd mConfigFile */
5177 Bstr oldConfigFileFull = mData->mConfigFileFull;
5178 Bstr oldConfigFile = mData->mConfigFile;
5179 mData->mConfigFileFull = newConfigFile;
5180 /* try to get the relative path for mConfigFile */
5181 Utf8Str path = newConfigFile;
5182 mParent->calculateRelativePath (path, path);
5183 mData->mConfigFile = path;
5184
5185 /* last, try to update the global settings with the new path */
5186 if (mData->mRegistered)
5187 {
5188 rc = mParent->updateSettings (configDir, newConfigDir);
5189 if (FAILED (rc))
5190 {
5191 /* revert to old values */
5192 mData->mConfigFileFull = oldConfigFileFull;
5193 mData->mConfigFile = oldConfigFile;
5194 break;
5195 }
5196 }
5197
5198 /* update the snapshot folder */
5199 path = mUserData->mSnapshotFolderFull;
5200 if (RTPathStartsWith (path, configDir))
5201 {
5202 path = Utf8StrFmt ("%s%s", newConfigDir.raw(),
5203 path.raw() + configDir.length());
5204 mUserData->mSnapshotFolderFull = path;
5205 calculateRelativePath (path, path);
5206 mUserData->mSnapshotFolder = path;
5207 }
5208
5209 /* update the saved state file path */
5210 path = mSSData->mStateFilePath;
5211 if (RTPathStartsWith (path, configDir))
5212 {
5213 path = Utf8StrFmt ("%s%s", newConfigDir.raw(),
5214 path.raw() + configDir.length());
5215 mSSData->mStateFilePath = path;
5216 }
5217
5218 /* Update saved state file paths of all online snapshots.
5219 * Note that saveSettings() will recognize name change
5220 * and will save all snapshots in this case. */
5221 if (mData->mFirstSnapshot)
5222 mData->mFirstSnapshot->updateSavedStatePaths (configDir,
5223 newConfigDir);
5224 }
5225 while (0);
5226
5227 if (FAILED (rc))
5228 {
5229 /* silently try to rename everything back */
5230 if (fileRenamed)
5231 RTFileRename (newConfigFile.raw(), configFile.raw(), 0);
5232 if (dirRenamed)
5233 RTPathRename (newConfigDir.raw(), configDir.raw(), 0);
5234 }
5235
5236 if (!aNew)
5237 {
5238 /* lock the config again */
5239 HRESULT rc2 = lockConfig();
5240 if (SUCCEEDED (rc))
5241 rc = rc2;
5242 }
5243
5244 CheckComRCReturnRC (rc);
5245 }
5246
5247 if (aNew)
5248 {
5249 /* create a virgin config file */
5250 int vrc = VINF_SUCCESS;
5251
5252 /* ensure the settings directory exists */
5253 Utf8Str path = mData->mConfigFileFull;
5254 RTPathStripFilename (path.mutableRaw());
5255 if (!RTDirExists (path))
5256 {
5257 vrc = RTDirCreateFullPath (path, 0777);
5258 if (VBOX_FAILURE (vrc))
5259 {
5260 return setError (E_FAIL,
5261 tr ("Could not create a directory '%s' "
5262 "to save the settings file (%Vrc)"),
5263 path.raw(), vrc);
5264 }
5265 }
5266
5267 /* Note: open flags must correlated with RTFileOpen() in lockConfig() */
5268 path = Utf8Str (mData->mConfigFileFull);
5269 vrc = RTFileOpen (&mData->mHandleCfgFile, path,
5270 RTFILE_O_READWRITE | RTFILE_O_CREATE |
5271 RTFILE_O_DENY_WRITE);
5272 if (VBOX_SUCCESS (vrc))
5273 {
5274 vrc = RTFileWrite (mData->mHandleCfgFile,
5275 (void *) DefaultMachineConfig,
5276 sizeof (DefaultMachineConfig), NULL);
5277 }
5278 if (VBOX_FAILURE (vrc))
5279 {
5280 mData->mHandleCfgFile = NIL_RTFILE;
5281 return setError (E_FAIL,
5282 tr ("Could not create the settings file '%s' (%Vrc)"),
5283 path.raw(), vrc);
5284 }
5285 /* we do not close the file to simulate lockConfig() */
5286 }
5287
5288 return rc;
5289}
5290
5291/**
5292 * Saves machine data, user data and hardware data.
5293 *
5294 * @param aMarkCurStateAsModified
5295 * if true (default), mData->mCurrentStateModified will be set to
5296 * what #isReallyModified() returns prior to saving settings to a file,
5297 * otherwise the current value of mData->mCurrentStateModified will be
5298 * saved.
5299 * @param aInformCallbacksAnyway
5300 * if true, callbacks will be informed even if #isReallyModified()
5301 * returns false. This is necessary for cases when we change machine data
5302 * diectly, not through the backup()/commit() mechanism.
5303 *
5304 * @note Locks mParent (only in some cases, and only when #isConfigLocked() is
5305 * |TRUE|, see the #prepareSaveSettings() code for details) +
5306 * this object + children for writing.
5307 */
5308HRESULT Machine::saveSettings (bool aMarkCurStateAsModified /* = true */,
5309 bool aInformCallbacksAnyway /* = false */)
5310{
5311 LogFlowThisFuncEnter();
5312
5313 /// @todo (dmik) I guess we should lock all our child objects here
5314 // (such as mVRDPServer etc.) to ensure they are not changed
5315 // until completely saved to disk and committed
5316
5317 /// @todo (dmik) also, we need to delegate saving child objects' settings
5318 // to objects themselves to ensure operations 'commit + save changes'
5319 // are atomic (amd done from the object's lock so that nobody can change
5320 // settings again until completely saved).
5321
5322 AssertReturn (mType == IsMachine || mType == IsSessionMachine, E_FAIL);
5323
5324 bool wasModified;
5325
5326 if (aMarkCurStateAsModified)
5327 {
5328 /*
5329 * We ignore changes to user data when setting mCurrentStateModified
5330 * because the current state will not differ from the current snapshot
5331 * if only user data has been changed (user data is shared by all
5332 * snapshots).
5333 */
5334 mData->mCurrentStateModified = isReallyModified (true /* aIgnoreUserData */);
5335 wasModified = mUserData.hasActualChanges() || mData->mCurrentStateModified;
5336 }
5337 else
5338 {
5339 wasModified = isReallyModified();
5340 }
5341
5342 HRESULT rc = S_OK;
5343
5344 /* First, prepare to save settings. It will will care about renaming the
5345 * settings directory and file if the machine name was changed and about
5346 * creating a new settings file if this is a new machine. */
5347 bool isRenamed = false;
5348 bool isNew = false;
5349 rc = prepareSaveSettings (isRenamed, isNew);
5350 CheckComRCReturnRC (rc);
5351
5352 /* then, open the settings file */
5353 CFGHANDLE configLoader = 0;
5354 rc = openConfigLoader (&configLoader, isNew);
5355 CheckComRCReturnRC (rc);
5356
5357 /* save all snapshots when the machine name was changed since
5358 * it may affect saved state file paths for online snapshots (see
5359 * #openConfigLoader() for details) */
5360 bool updateAllSnapshots = isRenamed;
5361
5362 /* commit before saving, since it may change settings
5363 * (for example, perform fixup of lazy hard disk changes) */
5364 rc = commit();
5365 if (FAILED (rc))
5366 {
5367 closeConfigLoader (configLoader, false /* aSaveBeforeClose */);
5368 return rc;
5369 }
5370
5371 /* include hard disk changes to the modified flag */
5372 wasModified |= mHDData->mHDAttachmentsChanged;
5373 if (aMarkCurStateAsModified)
5374 mData->mCurrentStateModified |= BOOL (mHDData->mHDAttachmentsChanged);
5375
5376
5377 CFGNODE machineNode = 0;
5378 /* create if not exists */
5379 CFGLDRCreateNode (configLoader, "VirtualBox/Machine", &machineNode);
5380
5381 do
5382 {
5383 ComAssertBreak (machineNode, rc = E_FAIL);
5384
5385 /* uuid (required) */
5386 Assert (mData->mUuid);
5387 CFGLDRSetUUID (machineNode, "uuid", mData->mUuid.raw());
5388
5389 /* name (required) */
5390 Assert (!mUserData->mName.isEmpty());
5391 CFGLDRSetBSTR (machineNode, "name", mUserData->mName);
5392
5393 /* nameSync (optional, default is true) */
5394 if (!mUserData->mNameSync)
5395 CFGLDRSetBool (machineNode, "nameSync", false);
5396 else
5397 CFGLDRDeleteAttribute (machineNode, "nameSync");
5398
5399 /* Description node (optional) */
5400 if (!mUserData->mDescription.isNull())
5401 {
5402 CFGNODE descNode = 0;
5403 CFGLDRCreateChildNode (machineNode, "Description", &descNode);
5404 Assert (descNode);
5405 CFGLDRSetBSTR (descNode, NULL, mUserData->mDescription);
5406 CFGLDRReleaseNode (descNode);
5407 }
5408 else
5409 {
5410 CFGNODE descNode = 0;
5411 CFGLDRGetChildNode (machineNode, "Description", 0, &descNode);
5412 if (descNode)
5413 CFGLDRDeleteNode (descNode);
5414 }
5415
5416 /* OSType (required) */
5417 {
5418 CFGLDRSetBSTR (machineNode, "OSType", mUserData->mOSTypeId);
5419 }
5420
5421 /* stateFile (optional) */
5422 if (mData->mMachineState == MachineState_Saved)
5423 {
5424 Assert (!mSSData->mStateFilePath.isEmpty());
5425 /* try to make the file name relative to the settings file dir */
5426 Utf8Str stateFilePath = mSSData->mStateFilePath;
5427 calculateRelativePath (stateFilePath, stateFilePath);
5428 CFGLDRSetString (machineNode, "stateFile", stateFilePath);
5429 }
5430 else
5431 {
5432 Assert (mSSData->mStateFilePath.isNull());
5433 CFGLDRDeleteAttribute (machineNode, "stateFile");
5434 }
5435
5436 /* currentSnapshot ID (optional) */
5437 if (!mData->mCurrentSnapshot.isNull())
5438 {
5439 Assert (!mData->mFirstSnapshot.isNull());
5440 CFGLDRSetUUID (machineNode, "currentSnapshot",
5441 mData->mCurrentSnapshot->data().mId);
5442 }
5443 else
5444 {
5445 Assert (mData->mFirstSnapshot.isNull());
5446 CFGLDRDeleteAttribute (machineNode, "currentSnapshot");
5447 }
5448
5449 /* snapshotFolder (optional) */
5450 if (!mUserData->mSnapshotFolder.isEmpty())
5451 CFGLDRSetBSTR (machineNode, "snapshotFolder", mUserData->mSnapshotFolder);
5452 else
5453 CFGLDRDeleteAttribute (machineNode, "snapshotFolder");
5454
5455 /* currentStateModified (optional, default is yes) */
5456 if (!mData->mCurrentStateModified)
5457 CFGLDRSetBool (machineNode, "currentStateModified", false);
5458 else
5459 CFGLDRDeleteAttribute (machineNode, "currentStateModified");
5460
5461 /* lastStateChange */
5462 CFGLDRSetDateTime (machineNode, "lastStateChange",
5463 mData->mLastStateChange);
5464
5465 /* Hardware node (required) */
5466 {
5467 CFGNODE hwNode = 0;
5468 CFGLDRGetChildNode (machineNode, "Hardware", 0, &hwNode);
5469 /* first, delete the entire node if exists */
5470 if (hwNode)
5471 CFGLDRDeleteNode (hwNode);
5472 /* then recreate it */
5473 hwNode = 0;
5474 CFGLDRCreateChildNode (machineNode, "Hardware", &hwNode);
5475 ComAssertBreak (hwNode, rc = E_FAIL);
5476
5477 rc = saveHardware (hwNode);
5478
5479 CFGLDRReleaseNode (hwNode);
5480 if (FAILED (rc))
5481 break;
5482 }
5483
5484 /* HardDiskAttachments node (required) */
5485 {
5486 CFGNODE hdasNode = 0;
5487 CFGLDRGetChildNode (machineNode, "HardDiskAttachments", 0, &hdasNode);
5488 /* first, delete the entire node if exists */
5489 if (hdasNode)
5490 CFGLDRDeleteNode (hdasNode);
5491 /* then recreate it */
5492 hdasNode = 0;
5493 CFGLDRCreateChildNode (machineNode, "HardDiskAttachments", &hdasNode);
5494 ComAssertBreak (hdasNode, rc = E_FAIL);
5495
5496 rc = saveHardDisks (hdasNode);
5497
5498 CFGLDRReleaseNode (hdasNode);
5499 if (FAILED (rc))
5500 break;
5501 }
5502
5503 /* Guest node (optional) */
5504 {
5505 CFGNODE GuestNode = 0;
5506 CFGLDRGetChildNode (machineNode, "Guest", 0, &GuestNode);
5507 /* first, delete the entire node if exists */
5508 if (GuestNode)
5509 CFGLDRDeleteNode (GuestNode);
5510 /* then recreate it */
5511 GuestNode = 0;
5512 CFGLDRCreateChildNode (machineNode, "Guest", &GuestNode);
5513 if (GuestNode)
5514 {
5515 CFGLDRSetUInt32 (GuestNode, "MemoryBalloonSize", mHWData->mMemoryBalloonSize);
5516 CFGLDRSetUInt32 (GuestNode, "StatisticsUpdateInterval", mHWData->mStatisticsUpdateInterval);
5517 CFGLDRReleaseNode (GuestNode);
5518 }
5519 }
5520
5521 /* update all snapshots if requested */
5522 if (updateAllSnapshots)
5523 rc = saveSnapshotSettingsWorker (machineNode, NULL,
5524 SaveSS_UpdateAllOp);
5525 }
5526 while (0);
5527
5528 if (machineNode)
5529 CFGLDRReleaseNode (machineNode);
5530
5531 if (SUCCEEDED (rc))
5532 rc = closeConfigLoader (configLoader, true /* aSaveBeforeClose */);
5533 else
5534 closeConfigLoader (configLoader, false /* aSaveBeforeClose */);
5535
5536 if (FAILED (rc))
5537 {
5538 /*
5539 * backup arbitrary data item to cause #isModified() to still return
5540 * true in case of any error
5541 */
5542 mHWData.backup();
5543 }
5544
5545 if (wasModified || aInformCallbacksAnyway)
5546 {
5547 /*
5548 * Fire the data change event, even on failure (since we've already
5549 * committed all data). This is done only for SessionMachines because
5550 * mutable Machine instances are always not registered (i.e. private
5551 * to the client process that creates them) and thus don't need to
5552 * inform callbacks.
5553 */
5554 if (mType == IsSessionMachine)
5555 mParent->onMachineDataChange (mData->mUuid);
5556 }
5557
5558 LogFlowThisFunc (("rc=%08X\n", rc));
5559 LogFlowThisFuncLeave();
5560 return rc;
5561}
5562
5563/**
5564 * Wrapper for #saveSnapshotSettingsWorker() that opens the settings file
5565 * and locates the <Machine> node in there. See #saveSnapshotSettingsWorker()
5566 * for more details.
5567 *
5568 * @param aSnapshot Snapshot to operate on
5569 * @param aOpFlags Operation to perform, one of SaveSS_NoOp, SaveSS_AddOp
5570 * or SaveSS_UpdateAttrsOp possibly combined with
5571 * SaveSS_UpdateCurrentId.
5572 *
5573 * @note Locks this object for writing + other child objects.
5574 */
5575HRESULT Machine::saveSnapshotSettings (Snapshot *aSnapshot, int aOpFlags)
5576{
5577 AutoCaller autoCaller (this);
5578 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
5579
5580 AssertReturn (mType == IsMachine || mType == IsSessionMachine, E_FAIL);
5581
5582 AutoLock alock (this);
5583
5584 AssertReturn (isConfigLocked(), E_FAIL);
5585
5586 HRESULT rc = S_OK;
5587
5588 /* load the config file */
5589 CFGHANDLE configLoader = 0;
5590 rc = openConfigLoader (&configLoader);
5591 if (FAILED (rc))
5592 return rc;
5593
5594 CFGNODE machineNode = 0;
5595 CFGLDRGetNode (configLoader, "VirtualBox/Machine", 0, &machineNode);
5596
5597 do
5598 {
5599 ComAssertBreak (machineNode, rc = E_FAIL);
5600
5601 rc = saveSnapshotSettingsWorker (machineNode, aSnapshot, aOpFlags);
5602
5603 CFGLDRReleaseNode (machineNode);
5604 }
5605 while (0);
5606
5607 if (SUCCEEDED (rc))
5608 rc = closeConfigLoader (configLoader, true /* aSaveBeforeClose */);
5609 else
5610 closeConfigLoader (configLoader, false /* aSaveBeforeClose */);
5611
5612 return rc;
5613}
5614
5615/**
5616 * Performs the specified operation on the given snapshot
5617 * in the settings file represented by \a aMachineNode.
5618 *
5619 * If \a aOpFlags = SaveSS_UpdateAllOp, \a aSnapshot can be NULL to indicate
5620 * that the whole tree of the snapshots should be updated in <Machine>.
5621 * One particular case is when the last (and the only) snapshot should be
5622 * removed (it is so when both mCurrentSnapshot and mFirstSnapshot are NULL).
5623 *
5624 * \a aOp may be just SaveSS_UpdateCurrentId if only the currentSnapshot
5625 * attribute of <Machine> needs to be updated.
5626 *
5627 * @param aMachineNode <Machine> node in the opened settings file
5628 * @param aSnapshot Snapshot to operate on
5629 * @param aOpFlags Operation to perform, one of SaveSS_NoOp, SaveSS_AddOp
5630 * or SaveSS_UpdateAttrsOp possibly combined with
5631 * SaveSS_UpdateCurrentId.
5632 *
5633 * @note Must be called with this object locked for writing.
5634 * Locks child objects.
5635 */
5636HRESULT Machine::saveSnapshotSettingsWorker (CFGNODE aMachineNode,
5637 Snapshot *aSnapshot, int aOpFlags)
5638{
5639 AssertReturn (aMachineNode, E_FAIL);
5640
5641 AssertReturn (isLockedOnCurrentThread(), E_FAIL);
5642
5643 int op = aOpFlags & SaveSS_OpMask;
5644 AssertReturn (
5645 (aSnapshot && (op == SaveSS_AddOp || op == SaveSS_UpdateAttrsOp ||
5646 op == SaveSS_UpdateAllOp)) ||
5647 (!aSnapshot && ((op == SaveSS_NoOp && (aOpFlags & SaveSS_UpdateCurrentId)) ||
5648 op == SaveSS_UpdateAllOp)),
5649 E_FAIL);
5650
5651 HRESULT rc = S_OK;
5652
5653 bool recreateWholeTree = false;
5654
5655 do
5656 {
5657 if (op == SaveSS_NoOp)
5658 break;
5659
5660 /* quick path: recreate the whole tree of the snapshots */
5661 if (op == SaveSS_UpdateAllOp && !aSnapshot)
5662 {
5663 /* first, delete the entire root snapshot node if it exists */
5664 CFGNODE snapshotNode = 0;
5665 CFGLDRGetChildNode (aMachineNode, "Snapshot", 0, &snapshotNode);
5666 if (snapshotNode)
5667 CFGLDRDeleteNode (snapshotNode);
5668
5669 /*
5670 * second, if we have any snapshots left, substitute aSnapshot with
5671 * the first snapshot to recreate the whole tree, otherwise break
5672 */
5673 if (mData->mFirstSnapshot)
5674 {
5675 aSnapshot = mData->mFirstSnapshot;
5676 recreateWholeTree = true;
5677 }
5678 else
5679 break;
5680 }
5681
5682 Assert (!!aSnapshot);
5683 ComObjPtr <Snapshot> parent = aSnapshot->parent();
5684
5685 if (op == SaveSS_AddOp)
5686 {
5687 CFGNODE parentNode = 0;
5688
5689 if (parent)
5690 {
5691 rc = findSnapshotNode (parent, aMachineNode, NULL, &parentNode);
5692 if (FAILED (rc))
5693 break;
5694 ComAssertBreak (parentNode, rc = E_FAIL);
5695 }
5696
5697 do
5698 {
5699 CFGNODE snapshotsNode = 0;
5700
5701 if (parentNode)
5702 {
5703 CFGLDRCreateChildNode (parentNode, "Snapshots", &snapshotsNode);
5704 ComAssertBreak (snapshotsNode, rc = E_FAIL);
5705 }
5706 else
5707 snapshotsNode = aMachineNode;
5708 do
5709 {
5710 CFGNODE snapshotNode = 0;
5711 CFGLDRAppendChildNode (snapshotsNode, "Snapshot", &snapshotNode);
5712 ComAssertBreak (snapshotNode, rc = E_FAIL);
5713 rc = saveSnapshot (snapshotNode, aSnapshot, false /* aAttrsOnly */);
5714 CFGLDRReleaseNode (snapshotNode);
5715
5716 if (FAILED (rc))
5717 break;
5718
5719 /*
5720 * when a new snapshot is added, this means diffs were created
5721 * for every normal/immutable hard disk of the VM, so we need to
5722 * save the current hard disk attachments
5723 */
5724
5725 CFGNODE hdasNode = 0;
5726 CFGLDRGetChildNode (aMachineNode, "HardDiskAttachments", 0, &hdasNode);
5727 if (hdasNode)
5728 CFGLDRDeleteNode (hdasNode);
5729 CFGLDRCreateChildNode (aMachineNode, "HardDiskAttachments", &hdasNode);
5730 ComAssertBreak (hdasNode, rc = E_FAIL);
5731
5732 rc = saveHardDisks (hdasNode);
5733
5734 if (mHDData->mHDAttachments.size() != 0)
5735 {
5736 /*
5737 * If we have one or more attachments then we definitely
5738 * created diffs for them and associated new diffs with
5739 * current settngs. So, since we don't use saveSettings(),
5740 * we need to inform callbacks manually.
5741 */
5742 if (mType == IsSessionMachine)
5743 mParent->onMachineDataChange (mData->mUuid);
5744 }
5745
5746 CFGLDRReleaseNode (hdasNode);
5747 }
5748 while (0);
5749
5750 if (snapshotsNode != aMachineNode)
5751 CFGLDRReleaseNode (snapshotsNode);
5752 }
5753 while (0);
5754
5755 if (parentNode)
5756 CFGLDRReleaseNode (parentNode);
5757
5758 break;
5759 }
5760
5761 Assert (op == SaveSS_UpdateAttrsOp && !recreateWholeTree ||
5762 op == SaveSS_UpdateAllOp);
5763
5764 CFGNODE snapshotsNode = 0;
5765 CFGNODE snapshotNode = 0;
5766
5767 if (!recreateWholeTree)
5768 {
5769 rc = findSnapshotNode (aSnapshot, aMachineNode,
5770 &snapshotsNode, &snapshotNode);
5771 if (FAILED (rc))
5772 break;
5773 ComAssertBreak (snapshotNode, rc = E_FAIL);
5774 }
5775
5776 if (!snapshotsNode)
5777 snapshotsNode = aMachineNode;
5778
5779 if (op == SaveSS_UpdateAttrsOp)
5780 rc = saveSnapshot (snapshotNode, aSnapshot, true /* aAttrsOnly */);
5781 else do
5782 {
5783 if (snapshotNode)
5784 {
5785 CFGLDRDeleteNode (snapshotNode);
5786 snapshotNode = 0;
5787 }
5788 CFGLDRAppendChildNode (snapshotsNode, "Snapshot", &snapshotNode);
5789 ComAssertBreak (snapshotNode, rc = E_FAIL);
5790 rc = saveSnapshot (snapshotNode, aSnapshot, false /* aAttrsOnly */);
5791 }
5792 while (0);
5793
5794 CFGLDRReleaseNode (snapshotNode);
5795 if (snapshotsNode != aMachineNode)
5796 CFGLDRReleaseNode (snapshotsNode);
5797 }
5798 while (0);
5799
5800 if (SUCCEEDED (rc))
5801 {
5802 /* update currentSnapshot when appropriate */
5803 if (aOpFlags & SaveSS_UpdateCurrentId)
5804 {
5805 if (!mData->mCurrentSnapshot.isNull())
5806 CFGLDRSetUUID (aMachineNode, "currentSnapshot",
5807 mData->mCurrentSnapshot->data().mId);
5808 else
5809 CFGLDRDeleteAttribute (aMachineNode, "currentSnapshot");
5810 }
5811 if (aOpFlags & SaveSS_UpdateCurStateModified)
5812 {
5813 if (!mData->mCurrentStateModified)
5814 CFGLDRSetBool (aMachineNode, "currentStateModified", false);
5815 else
5816 CFGLDRDeleteAttribute (aMachineNode, "currentStateModified");
5817 }
5818 }
5819
5820 return rc;
5821}
5822
5823/**
5824 * Saves the given snapshot and all its children (unless \a aAttrsOnly is true).
5825 * It is assumed that the given node is empty (unless \a aAttrsOnly is true).
5826 *
5827 * @param aNode <Snapshot> node to save the snapshot to
5828 * @param aSnapshot snapshot to save
5829 * @param aAttrsOnly if true, only updatge user-changeable attrs
5830 */
5831HRESULT Machine::saveSnapshot (CFGNODE aNode, Snapshot *aSnapshot, bool aAttrsOnly)
5832{
5833 AssertReturn (aNode && aSnapshot, E_INVALIDARG);
5834 AssertReturn (mType == IsMachine || mType == IsSessionMachine, E_FAIL);
5835
5836 /* uuid (required) */
5837 if (!aAttrsOnly)
5838 CFGLDRSetUUID (aNode, "uuid", aSnapshot->data().mId);
5839
5840 /* name (required) */
5841 CFGLDRSetBSTR (aNode, "name", aSnapshot->data().mName);
5842
5843 /* timeStamp (required) */
5844 CFGLDRSetDateTime (aNode, "timeStamp", aSnapshot->data().mTimeStamp);
5845
5846 /* Description node (optional) */
5847 if (!aSnapshot->data().mDescription.isNull())
5848 {
5849 CFGNODE descNode = 0;
5850 CFGLDRCreateChildNode (aNode, "Description", &descNode);
5851 Assert (descNode);
5852 CFGLDRSetBSTR (descNode, NULL, aSnapshot->data().mDescription);
5853 CFGLDRReleaseNode (descNode);
5854 }
5855 else
5856 {
5857 CFGNODE descNode = 0;
5858 CFGLDRGetChildNode (aNode, "Description", 0, &descNode);
5859 if (descNode)
5860 CFGLDRDeleteNode (descNode);
5861 }
5862
5863 if (aAttrsOnly)
5864 return S_OK;
5865
5866 /* stateFile (optional) */
5867 if (aSnapshot->stateFilePath())
5868 {
5869 /* try to make the file name relative to the settings file dir */
5870 Utf8Str stateFilePath = aSnapshot->stateFilePath();
5871 calculateRelativePath (stateFilePath, stateFilePath);
5872 CFGLDRSetString (aNode, "stateFile", stateFilePath);
5873 }
5874
5875 {
5876 ComObjPtr <SnapshotMachine> snapshotMachine = aSnapshot->data().mMachine;
5877 ComAssertRet (!snapshotMachine.isNull(), E_FAIL);
5878
5879 /* save hardware */
5880 {
5881 CFGNODE hwNode = 0;
5882 CFGLDRCreateChildNode (aNode, "Hardware", &hwNode);
5883
5884 HRESULT rc = snapshotMachine->saveHardware (hwNode);
5885
5886 CFGLDRReleaseNode (hwNode);
5887 if (FAILED (rc))
5888 return rc;
5889 }
5890
5891 /* save hard disks */
5892 {
5893 CFGNODE hdasNode = 0;
5894 CFGLDRCreateChildNode (aNode, "HardDiskAttachments", &hdasNode);
5895
5896 HRESULT rc = snapshotMachine->saveHardDisks (hdasNode);
5897
5898 CFGLDRReleaseNode (hdasNode);
5899 if (FAILED (rc))
5900 return rc;
5901 }
5902
5903 /* Guest node (optional) */
5904 {
5905 CFGNODE GuestNode = 0;
5906 CFGLDRGetChildNode (aNode, "Guest", 0, &GuestNode);
5907 /* first, delete the entire node if exists */
5908 if (GuestNode)
5909 CFGLDRDeleteNode (GuestNode);
5910 /* then recreate it */
5911 GuestNode = 0;
5912 CFGLDRCreateChildNode (aNode, "Guest", &GuestNode);
5913 if (GuestNode)
5914 {
5915 CFGLDRSetUInt32 (GuestNode, "MemoryBalloonSize", mHWData->mMemoryBalloonSize);
5916 CFGLDRSetUInt32 (GuestNode, "StatisticsUpdateInterval", mHWData->mStatisticsUpdateInterval);
5917 CFGLDRReleaseNode (GuestNode);
5918 }
5919 }
5920 }
5921
5922 /* save children */
5923 {
5924 AutoLock listLock (aSnapshot->childrenLock());
5925
5926 if (aSnapshot->children().size())
5927 {
5928 CFGNODE snapshotsNode = 0;
5929 CFGLDRCreateChildNode (aNode, "Snapshots", &snapshotsNode);
5930
5931 HRESULT rc = S_OK;
5932
5933 for (Snapshot::SnapshotList::const_iterator it = aSnapshot->children().begin();
5934 it != aSnapshot->children().end() && SUCCEEDED (rc);
5935 ++ it)
5936 {
5937 CFGNODE snapshotNode = 0;
5938 CFGLDRCreateChildNode (snapshotsNode, "Snapshot", &snapshotNode);
5939
5940 rc = saveSnapshot (snapshotNode, (*it), aAttrsOnly);
5941
5942 CFGLDRReleaseNode (snapshotNode);
5943 }
5944
5945 CFGLDRReleaseNode (snapshotsNode);
5946 if (FAILED (rc))
5947 return rc;
5948 }
5949 }
5950
5951 return S_OK;
5952}
5953
5954/**
5955 * Creates Saves the VM hardware configuration.
5956 * It is assumed that the given node is empty.
5957 *
5958 * @param aNode <Hardware> node to save the VM hardware confguration to
5959 */
5960HRESULT Machine::saveHardware (CFGNODE aNode)
5961{
5962 AssertReturn (aNode, E_INVALIDARG);
5963
5964 HRESULT rc = S_OK;
5965
5966 /* CPU */
5967 {
5968 CFGNODE cpuNode = 0;
5969 CFGLDRCreateChildNode (aNode, "CPU", &cpuNode);
5970 CFGNODE hwVirtExNode = 0;
5971 CFGLDRCreateChildNode (cpuNode, "HardwareVirtEx", &hwVirtExNode);
5972 const char *value = NULL;
5973 switch (mHWData->mHWVirtExEnabled)
5974 {
5975 case TriStateBool_False:
5976 value = "false";
5977 break;
5978 case TriStateBool_True:
5979 value = "true";
5980 break;
5981 default:
5982 value = "default";
5983 }
5984 CFGLDRSetString (hwVirtExNode, "enabled", value);
5985 CFGLDRReleaseNode (hwVirtExNode);
5986 CFGLDRReleaseNode (cpuNode);
5987 }
5988
5989 /* memory (required) */
5990 {
5991 CFGNODE memoryNode = 0;
5992 CFGLDRCreateChildNode (aNode, "Memory", &memoryNode);
5993 CFGLDRSetUInt32 (memoryNode, "RAMSize", mHWData->mMemorySize);
5994 CFGLDRReleaseNode (memoryNode);
5995 }
5996
5997 /* boot (required) */
5998 do
5999 {
6000 CFGNODE bootNode = 0;
6001 CFGLDRCreateChildNode (aNode, "Boot", &bootNode);
6002
6003 for (ULONG pos = 0; pos < ELEMENTS (mHWData->mBootOrder); pos ++)
6004 {
6005 const char *device = NULL;
6006 switch (mHWData->mBootOrder [pos])
6007 {
6008 case DeviceType_NoDevice:
6009 /* skip, this is allowed for <Order> nodes
6010 * when loading, the default value NoDevice will remain */
6011 continue;
6012 case DeviceType_FloppyDevice: device = "Floppy"; break;
6013 case DeviceType_DVDDevice: device = "DVD"; break;
6014 case DeviceType_HardDiskDevice: device = "HardDisk"; break;
6015 case DeviceType_NetworkDevice: device = "Network"; break;
6016 default:
6017 ComAssertMsgFailedBreak (("Invalid boot device: %d\n",
6018 mHWData->mBootOrder [pos]),
6019 rc = E_FAIL);
6020 }
6021 if (FAILED (rc))
6022 break;
6023
6024 CFGNODE orderNode = 0;
6025 CFGLDRAppendChildNode (bootNode, "Order", &orderNode);
6026
6027 CFGLDRSetUInt32 (orderNode, "position", pos + 1);
6028 CFGLDRSetString (orderNode, "device", device);
6029
6030 CFGLDRReleaseNode (orderNode);
6031 }
6032
6033 CFGLDRReleaseNode (bootNode);
6034 }
6035 while (0);
6036
6037 CheckComRCReturnRC (rc);
6038
6039 /* display (required) */
6040 {
6041 CFGNODE displayNode = 0;
6042 CFGLDRCreateChildNode (aNode, "Display", &displayNode);
6043 CFGLDRSetUInt32 (displayNode, "VRAMSize", mHWData->mVRAMSize);
6044 CFGLDRSetUInt32 (displayNode, "MonitorCount", mHWData->mMonitorCount);
6045 CFGLDRReleaseNode (displayNode);
6046 }
6047
6048#ifdef VBOX_VRDP
6049 /* VRDP settings (optional) */
6050 {
6051 CFGNODE remoteDisplayNode = 0;
6052 CFGLDRCreateChildNode (aNode, "RemoteDisplay", &remoteDisplayNode);
6053 if (remoteDisplayNode)
6054 {
6055 rc = mVRDPServer->saveSettings (remoteDisplayNode);
6056 CFGLDRReleaseNode (remoteDisplayNode);
6057 CheckComRCReturnRC (rc);
6058 }
6059 }
6060#endif
6061
6062 /* BIOS (required) */
6063 {
6064 CFGNODE biosNode = 0;
6065 CFGLDRCreateChildNode (aNode, "BIOS", &biosNode);
6066 {
6067 BOOL fSet;
6068 /* ACPI */
6069 CFGNODE acpiNode = 0;
6070 CFGLDRCreateChildNode (biosNode, "ACPI", &acpiNode);
6071 mBIOSSettings->COMGETTER(ACPIEnabled)(&fSet);
6072 CFGLDRSetBool (acpiNode, "enabled", !!fSet);
6073 CFGLDRReleaseNode (acpiNode);
6074
6075 /* IOAPIC */
6076 CFGNODE ioapicNode = 0;
6077 CFGLDRCreateChildNode (biosNode, "IOAPIC", &ioapicNode);
6078 mBIOSSettings->COMGETTER(IOAPICEnabled)(&fSet);
6079 CFGLDRSetBool (ioapicNode, "enabled", !!fSet);
6080 CFGLDRReleaseNode (ioapicNode);
6081
6082 /* BIOS logo (optional) **/
6083 CFGNODE logoNode = 0;
6084 CFGLDRCreateChildNode (biosNode, "Logo", &logoNode);
6085 mBIOSSettings->COMGETTER(LogoFadeIn)(&fSet);
6086 CFGLDRSetBool (logoNode, "fadeIn", !!fSet);
6087 mBIOSSettings->COMGETTER(LogoFadeOut)(&fSet);
6088 CFGLDRSetBool (logoNode, "fadeOut", !!fSet);
6089 ULONG ulDisplayTime;
6090 mBIOSSettings->COMGETTER(LogoDisplayTime)(&ulDisplayTime);
6091 CFGLDRSetUInt32 (logoNode, "displayTime", ulDisplayTime);
6092 Bstr logoPath;
6093 mBIOSSettings->COMGETTER(LogoImagePath)(logoPath.asOutParam());
6094 if (logoPath)
6095 CFGLDRSetBSTR (logoNode, "imagePath", logoPath);
6096 else
6097 CFGLDRDeleteAttribute (logoNode, "imagePath");
6098 CFGLDRReleaseNode (logoNode);
6099
6100 /* boot menu (optional) */
6101 CFGNODE bootMenuNode = 0;
6102 CFGLDRCreateChildNode (biosNode, "BootMenu", &bootMenuNode);
6103 BIOSBootMenuMode_T bootMenuMode;
6104 Bstr bootMenuModeStr;
6105 mBIOSSettings->COMGETTER(BootMenuMode)(&bootMenuMode);
6106 switch (bootMenuMode)
6107 {
6108 case BIOSBootMenuMode_Disabled:
6109 bootMenuModeStr = "disabled";
6110 break;
6111 case BIOSBootMenuMode_MenuOnly:
6112 bootMenuModeStr = "menuonly";
6113 break;
6114 default:
6115 bootMenuModeStr = "messageandmenu";
6116 }
6117 CFGLDRSetBSTR (bootMenuNode, "mode", bootMenuModeStr);
6118 CFGLDRReleaseNode (bootMenuNode);
6119
6120 /* time offset (optional) */
6121 CFGNODE timeOffsetNode = 0;
6122 CFGLDRCreateChildNode (biosNode, "TimeOffset", &timeOffsetNode);
6123 LONG64 timeOffset;
6124 mBIOSSettings->COMGETTER(TimeOffset)(&timeOffset);
6125 CFGLDRSetInt64 (timeOffsetNode, "value", timeOffset);
6126 CFGLDRReleaseNode (timeOffsetNode);
6127 }
6128 CFGLDRReleaseNode(biosNode);
6129 }
6130
6131 /* DVD drive (required) */
6132 /// @todo (dmik) move the code to DVDDrive
6133 do
6134 {
6135 CFGNODE dvdNode = 0;
6136 CFGLDRCreateChildNode (aNode, "DVDDrive", &dvdNode);
6137
6138 BOOL fPassthrough;
6139 mDVDDrive->COMGETTER(Passthrough)(&fPassthrough);
6140 CFGLDRSetBool(dvdNode, "passthrough", !!fPassthrough);
6141
6142 switch (mDVDDrive->data()->mDriveState)
6143 {
6144 case DriveState_ImageMounted:
6145 {
6146 Assert (!mDVDDrive->data()->mDVDImage.isNull());
6147
6148 Guid id;
6149 rc = mDVDDrive->data()->mDVDImage->COMGETTER(Id) (id.asOutParam());
6150 Assert (!id.isEmpty());
6151
6152 CFGNODE imageNode = 0;
6153 CFGLDRCreateChildNode (dvdNode, "Image", &imageNode);
6154 CFGLDRSetUUID (imageNode, "uuid", id.ptr());
6155 CFGLDRReleaseNode (imageNode);
6156 break;
6157 }
6158 case DriveState_HostDriveCaptured:
6159 {
6160 Assert (!mDVDDrive->data()->mHostDrive.isNull());
6161
6162 Bstr name;
6163 rc = mDVDDrive->data()->mHostDrive->COMGETTER(Name) (name.asOutParam());
6164 Assert (!name.isEmpty());
6165
6166 CFGNODE hostDriveNode = 0;
6167 CFGLDRCreateChildNode (dvdNode, "HostDrive", &hostDriveNode);
6168 CFGLDRSetBSTR (hostDriveNode, "src", name);
6169 CFGLDRReleaseNode (hostDriveNode);
6170 break;
6171 }
6172 case DriveState_NotMounted:
6173 /* do nothing, i.e.leave the DVD drive node empty */
6174 break;
6175 default:
6176 ComAssertMsgFailedBreak (("Invalid DVD drive state: %d\n",
6177 mDVDDrive->data()->mDriveState),
6178 rc = E_FAIL);
6179 }
6180
6181 CFGLDRReleaseNode (dvdNode);
6182 }
6183 while (0);
6184
6185 CheckComRCReturnRC (rc);
6186
6187 /* Flooppy drive (required) */
6188 /// @todo (dmik) move the code to DVDDrive
6189 do
6190 {
6191 CFGNODE floppyNode = 0;
6192 CFGLDRCreateChildNode (aNode, "FloppyDrive", &floppyNode);
6193
6194 BOOL fFloppyEnabled;
6195 rc = mFloppyDrive->COMGETTER(Enabled)(&fFloppyEnabled);
6196 CFGLDRSetBool (floppyNode, "enabled", !!fFloppyEnabled);
6197
6198 switch (mFloppyDrive->data()->mDriveState)
6199 {
6200 case DriveState_ImageMounted:
6201 {
6202 Assert (!mFloppyDrive->data()->mFloppyImage.isNull());
6203
6204 Guid id;
6205 rc = mFloppyDrive->data()->mFloppyImage->COMGETTER(Id) (id.asOutParam());
6206 Assert (!id.isEmpty());
6207
6208 CFGNODE imageNode = 0;
6209 CFGLDRCreateChildNode (floppyNode, "Image", &imageNode);
6210 CFGLDRSetUUID (imageNode, "uuid", id.ptr());
6211 CFGLDRReleaseNode (imageNode);
6212 break;
6213 }
6214 case DriveState_HostDriveCaptured:
6215 {
6216 Assert (!mFloppyDrive->data()->mHostDrive.isNull());
6217
6218 Bstr name;
6219 rc = mFloppyDrive->data()->mHostDrive->COMGETTER(Name) (name.asOutParam());
6220 Assert (!name.isEmpty());
6221
6222 CFGNODE hostDriveNode = 0;
6223 CFGLDRCreateChildNode (floppyNode, "HostDrive", &hostDriveNode);
6224 CFGLDRSetBSTR (hostDriveNode, "src", name);
6225 CFGLDRReleaseNode (hostDriveNode);
6226 break;
6227 }
6228 case DriveState_NotMounted:
6229 /* do nothing, i.e.leave the Floppy drive node empty */
6230 break;
6231 default:
6232 ComAssertMsgFailedBreak (("Invalid Floppy drive state: %d\n",
6233 mFloppyDrive->data()->mDriveState),
6234 rc = E_FAIL);
6235 }
6236
6237 CFGLDRReleaseNode (floppyNode);
6238 }
6239 while (0);
6240
6241 CheckComRCReturnRC (rc);
6242
6243
6244 /* USB Controller (required) */
6245 rc = mUSBController->saveSettings (aNode);
6246 CheckComRCReturnRC (rc);
6247
6248 /* Network adapters (required) */
6249 do
6250 {
6251 CFGNODE nwNode = 0;
6252 CFGLDRCreateChildNode (aNode, "Network", &nwNode);
6253
6254 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
6255 {
6256 CFGNODE networkAdapterNode = 0;
6257 CFGLDRAppendChildNode (nwNode, "Adapter", &networkAdapterNode);
6258
6259 CFGLDRSetUInt32 (networkAdapterNode, "slot", slot);
6260 CFGLDRSetBool (networkAdapterNode, "enabled",
6261 !!mNetworkAdapters [slot]->data()->mEnabled);
6262 CFGLDRSetBSTR (networkAdapterNode, "MACAddress",
6263 mNetworkAdapters [slot]->data()->mMACAddress);
6264 CFGLDRSetBool (networkAdapterNode, "cable",
6265 !!mNetworkAdapters [slot]->data()->mCableConnected);
6266
6267 if (mNetworkAdapters [slot]->data()->mTraceEnabled)
6268 CFGLDRSetBool (networkAdapterNode, "trace", true);
6269
6270 CFGLDRSetBSTR (networkAdapterNode, "tracefile",
6271 mNetworkAdapters [slot]->data()->mTraceFile);
6272
6273 switch (mNetworkAdapters [slot]->data()->mAdapterType)
6274 {
6275 case NetworkAdapterType_NetworkAdapterAm79C970A:
6276 CFGLDRSetString (networkAdapterNode, "type", "Am79C970A");
6277 break;
6278 case NetworkAdapterType_NetworkAdapterAm79C973:
6279 CFGLDRSetString (networkAdapterNode, "type", "Am79C973");
6280 break;
6281 default:
6282 ComAssertMsgFailedBreak (("Invalid network adapter type: %d\n",
6283 mNetworkAdapters [slot]->data()->mAdapterType),
6284 rc = E_FAIL);
6285 }
6286
6287 CFGNODE attachmentNode = 0;
6288 switch (mNetworkAdapters [slot]->data()->mAttachmentType)
6289 {
6290 case NetworkAttachmentType_NoNetworkAttachment:
6291 {
6292 /* do nothing -- empty content */
6293 break;
6294 }
6295 case NetworkAttachmentType_NATNetworkAttachment:
6296 {
6297 CFGLDRAppendChildNode (networkAdapterNode, "NAT", &attachmentNode);
6298 break;
6299 }
6300 case NetworkAttachmentType_HostInterfaceNetworkAttachment:
6301 {
6302 CFGLDRAppendChildNode (networkAdapterNode, "HostInterface", &attachmentNode);
6303 const Bstr &name = mNetworkAdapters [slot]->data()->mHostInterface;
6304#ifdef RT_OS_WINDOWS
6305 Assert (!name.isNull());
6306#endif
6307#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
6308 if (!name.isEmpty())
6309#endif
6310 CFGLDRSetBSTR (attachmentNode, "name", name);
6311#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
6312 const Bstr &tapSetupApp =
6313 mNetworkAdapters [slot]->data()->mTAPSetupApplication;
6314 if (!tapSetupApp.isEmpty())
6315 CFGLDRSetBSTR (attachmentNode, "TAPSetup", tapSetupApp);
6316 const Bstr &tapTerminateApp =
6317 mNetworkAdapters [slot]->data()->mTAPTerminateApplication;
6318 if (!tapTerminateApp.isEmpty())
6319 CFGLDRSetBSTR (attachmentNode, "TAPTerminate", tapTerminateApp);
6320#endif /* VBOX_WITH_UNIXY_TAP_NETWORKING */
6321 break;
6322 }
6323 case NetworkAttachmentType_InternalNetworkAttachment:
6324 {
6325 CFGLDRAppendChildNode (networkAdapterNode, "InternalNetwork", &attachmentNode);
6326 const Bstr &name = mNetworkAdapters[slot]->data()->mInternalNetwork;
6327 Assert(!name.isNull());
6328 CFGLDRSetBSTR (attachmentNode, "name", name);
6329 break;
6330 }
6331 default:
6332 {
6333 ComAssertFailedBreak (rc = E_FAIL);
6334 break;
6335 }
6336 }
6337 if (attachmentNode)
6338 CFGLDRReleaseNode (attachmentNode);
6339
6340 CFGLDRReleaseNode (networkAdapterNode);
6341 }
6342
6343 CFGLDRReleaseNode (nwNode);
6344 }
6345 while (0);
6346
6347 if (FAILED (rc))
6348 return rc;
6349
6350 /* Serial ports */
6351 CFGNODE serialNode = 0;
6352 CFGLDRCreateChildNode (aNode, "Uart", &serialNode);
6353
6354 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot++)
6355 {
6356 rc = mSerialPorts [slot]->saveSettings (serialNode);
6357 CheckComRCReturnRC (rc);
6358 }
6359 CFGLDRReleaseNode (serialNode);
6360
6361 /* Parallel ports */
6362 CFGNODE parallelNode = 0;
6363 CFGLDRCreateChildNode (aNode, "Lpt", &parallelNode);
6364
6365 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot++)
6366 {
6367 rc = mParallelPorts [slot]->saveSettings (parallelNode);
6368 CheckComRCReturnRC (rc);
6369 }
6370 CFGLDRReleaseNode (parallelNode);
6371
6372 /* Audio adapter */
6373 do
6374 {
6375 CFGNODE adapterNode = 0;
6376 CFGLDRCreateChildNode (aNode, "AudioAdapter", &adapterNode);
6377
6378 switch (mAudioAdapter->data()->mAudioDriver)
6379 {
6380 case AudioDriverType_NullAudioDriver:
6381 {
6382 CFGLDRSetString (adapterNode, "driver", "null");
6383 break;
6384 }
6385#ifdef RT_OS_WINDOWS
6386 case AudioDriverType_WINMMAudioDriver:
6387# ifdef VBOX_WITH_WINMM
6388 {
6389 CFGLDRSetString (adapterNode, "driver", "winmm");
6390 break;
6391 }
6392# endif
6393 case AudioDriverType_DSOUNDAudioDriver:
6394 {
6395 CFGLDRSetString (adapterNode, "driver", "dsound");
6396 break;
6397 }
6398#endif /* RT_OS_WINDOWS */
6399#ifdef RT_OS_LINUX
6400 case AudioDriverType_ALSAAudioDriver:
6401# ifdef VBOX_WITH_ALSA
6402 {
6403 CFGLDRSetString (adapterNode, "driver", "alsa");
6404 break;
6405 }
6406# endif
6407 case AudioDriverType_OSSAudioDriver:
6408 {
6409 CFGLDRSetString (adapterNode, "driver", "oss");
6410 break;
6411 }
6412#endif /* RT_OS_LINUX */
6413#ifdef RT_OS_DARWIN
6414 case AudioDriverType_CoreAudioDriver:
6415 {
6416 CFGLDRSetString (adapterNode, "driver", "coreaudio");
6417 break;
6418 }
6419#endif
6420#ifdef RT_OS_OS2
6421 case AudioDriverType_MMPMAudioDriver:
6422 {
6423 CFGLDRSetString (adapterNode, "driver", "mmpm");
6424 break;
6425 }
6426#endif
6427 default:
6428 ComAssertMsgFailedBreak (("Wrong audio driver type! driver = %d\n",
6429 mAudioAdapter->data()->mAudioDriver),
6430 rc = E_FAIL);
6431 }
6432
6433 CFGLDRSetBool (adapterNode, "enabled", !!mAudioAdapter->data()->mEnabled);
6434
6435 CFGLDRReleaseNode (adapterNode);
6436 }
6437 while (0);
6438
6439 if (FAILED (rc))
6440 return rc;
6441
6442 /* Shared folders */
6443 do
6444 {
6445 CFGNODE sharedFoldersNode = 0;
6446 CFGLDRCreateChildNode (aNode, "SharedFolders", &sharedFoldersNode);
6447
6448 for (HWData::SharedFolderList::const_iterator it = mHWData->mSharedFolders.begin();
6449 it != mHWData->mSharedFolders.end();
6450 ++ it)
6451 {
6452 ComObjPtr <SharedFolder> folder = *it;
6453
6454 CFGNODE folderNode = 0;
6455 CFGLDRAppendChildNode (sharedFoldersNode, "SharedFolder", &folderNode);
6456
6457 /* all are mandatory */
6458 CFGLDRSetBSTR (folderNode, "name", folder->name());
6459 CFGLDRSetBSTR (folderNode, "hostPath", folder->hostPath());
6460
6461 CFGLDRReleaseNode (folderNode);
6462 }
6463
6464 CFGLDRReleaseNode (sharedFoldersNode);
6465 }
6466 while (0);
6467
6468 /* Clipboard */
6469 {
6470 CFGNODE clipNode = 0;
6471 CFGLDRCreateChildNode (aNode, "Clipboard", &clipNode);
6472
6473 const char *mode = "Disabled";
6474 switch (mHWData->mClipboardMode)
6475 {
6476 case ClipboardMode_ClipDisabled:
6477 /* already assigned */
6478 break;
6479 case ClipboardMode_ClipHostToGuest:
6480 mode = "HostToGuest";
6481 break;
6482 case ClipboardMode_ClipGuestToHost:
6483 mode = "GuestToHost";
6484 break;
6485 case ClipboardMode_ClipBidirectional:
6486 mode = "Bidirectional";
6487 break;
6488 default:
6489 AssertMsgFailed (("Clipboard mode %d is invalid",
6490 mHWData->mClipboardMode));
6491 break;
6492 }
6493 CFGLDRSetString (clipNode, "mode", mode);
6494
6495 CFGLDRReleaseNode (clipNode);
6496 }
6497
6498 return rc;
6499}
6500
6501/**
6502 * Saves the hard disk confguration.
6503 * It is assumed that the given node is empty.
6504 *
6505 * @param aNode <HardDiskAttachments> node to save the hard disk confguration to
6506 */
6507HRESULT Machine::saveHardDisks (CFGNODE aNode)
6508{
6509 AssertReturn (aNode, E_INVALIDARG);
6510
6511 HRESULT rc = S_OK;
6512
6513 for (HDData::HDAttachmentList::const_iterator it = mHDData->mHDAttachments.begin();
6514 it != mHDData->mHDAttachments.end() && SUCCEEDED (rc);
6515 ++ it)
6516 {
6517 ComObjPtr <HardDiskAttachment> att = *it;
6518
6519 CFGNODE hdNode = 0;
6520 CFGLDRAppendChildNode (aNode, "HardDiskAttachment", &hdNode);
6521
6522 do
6523 {
6524 const char *bus = NULL;
6525 switch (att->controller())
6526 {
6527 case DiskControllerType_IDE0Controller: bus = "ide0"; break;
6528 case DiskControllerType_IDE1Controller: bus = "ide1"; break;
6529 default:
6530 ComAssertFailedBreak (rc = E_FAIL);
6531 }
6532 if (FAILED (rc))
6533 break;
6534
6535 const char *dev = NULL;
6536 switch (att->deviceNumber())
6537 {
6538 case 0: dev = "master"; break;
6539 case 1: dev = "slave"; break;
6540 default:
6541 ComAssertFailedBreak (rc = E_FAIL);
6542 }
6543 if (FAILED (rc))
6544 break;
6545
6546 CFGLDRSetUUID (hdNode, "hardDisk", att->hardDisk()->id());
6547 CFGLDRSetString (hdNode, "bus", bus);
6548 CFGLDRSetString (hdNode, "device", dev);
6549 }
6550 while (0);
6551
6552 CFGLDRReleaseNode (hdNode);
6553 }
6554
6555 return rc;
6556}
6557
6558/**
6559 * Saves machine state settings as defined by aFlags
6560 * (SaveSTS_* values).
6561 *
6562 * @param aFlags a combination of SaveSTS_* flags
6563 *
6564 * @note Locks objects!
6565 */
6566HRESULT Machine::saveStateSettings (int aFlags)
6567{
6568 if (aFlags == 0)
6569 return S_OK;
6570
6571 AutoCaller autoCaller (this);
6572 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
6573
6574 AutoLock alock (this);
6575
6576 /* load the config file */
6577 CFGHANDLE configLoader = 0;
6578 HRESULT rc = openConfigLoader (&configLoader);
6579 if (FAILED (rc))
6580 return rc;
6581
6582 CFGNODE machineNode = 0;
6583 CFGLDRGetNode (configLoader, "VirtualBox/Machine", 0, &machineNode);
6584
6585 do
6586 {
6587 ComAssertBreak (machineNode, rc = E_FAIL);
6588
6589 if (aFlags & SaveSTS_CurStateModified)
6590 {
6591 if (!mData->mCurrentStateModified)
6592 CFGLDRSetBool (machineNode, "currentStateModified", false);
6593 else
6594 CFGLDRDeleteAttribute (machineNode, "currentStateModified");
6595 }
6596
6597 if (aFlags & SaveSTS_StateFilePath)
6598 {
6599 if (mSSData->mStateFilePath)
6600 CFGLDRSetBSTR (machineNode, "stateFile", mSSData->mStateFilePath);
6601 else
6602 CFGLDRDeleteAttribute (machineNode, "stateFile");
6603 }
6604
6605 if (aFlags & SaveSTS_StateTimeStamp)
6606 {
6607 Assert (mData->mMachineState != MachineState_Aborted ||
6608 mSSData->mStateFilePath.isNull());
6609
6610 CFGLDRSetDateTime (machineNode, "lastStateChange",
6611 mData->mLastStateChange);
6612
6613 // set the aborted attribute when appropriate
6614 if (mData->mMachineState == MachineState_Aborted)
6615 CFGLDRSetBool (machineNode, "aborted", true);
6616 else
6617 CFGLDRDeleteAttribute (machineNode, "aborted");
6618 }
6619 }
6620 while (0);
6621
6622 if (machineNode)
6623 CFGLDRReleaseNode (machineNode);
6624
6625 if (SUCCEEDED (rc))
6626 rc = closeConfigLoader (configLoader, true /* aSaveBeforeClose */);
6627 else
6628 closeConfigLoader (configLoader, false /* aSaveBeforeClose */);
6629
6630 return rc;
6631}
6632
6633/**
6634 * Cleans up all differencing hard disks based on immutable hard disks.
6635 *
6636 * @note Locks objects!
6637 */
6638HRESULT Machine::wipeOutImmutableDiffs()
6639{
6640 AutoCaller autoCaller (this);
6641 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
6642
6643 AutoReaderLock alock (this);
6644
6645 AssertReturn (mData->mMachineState == MachineState_PoweredOff ||
6646 mData->mMachineState == MachineState_Aborted, E_FAIL);
6647
6648 for (HDData::HDAttachmentList::const_iterator it = mHDData->mHDAttachments.begin();
6649 it != mHDData->mHDAttachments.end();
6650 ++ it)
6651 {
6652 ComObjPtr <HardDisk> hd = (*it)->hardDisk();
6653 AutoLock hdLock (hd);
6654
6655 if(hd->isParentImmutable())
6656 {
6657 /// @todo (dmik) no error handling for now
6658 // (need async error reporting for this)
6659 hd->asVDI()->wipeOutImage();
6660 }
6661 }
6662
6663 return S_OK;
6664}
6665
6666/**
6667 * Fixes up lazy hard disk attachments by creating or deleting differencing
6668 * hard disks when machine settings are being committed.
6669 * Must be called only from #commit().
6670 *
6671 * @note Locks objects!
6672 */
6673HRESULT Machine::fixupHardDisks (bool aCommit)
6674{
6675 AutoCaller autoCaller (this);
6676 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
6677
6678 AutoLock alock (this);
6679
6680 /* no attac/detach operations -- nothing to do */
6681 if (!mHDData.isBackedUp())
6682 {
6683 mHDData->mHDAttachmentsChanged = false;
6684 return S_OK;
6685 }
6686
6687 AssertReturn (mData->mRegistered, E_FAIL);
6688
6689 if (aCommit)
6690 {
6691 /*
6692 * changes are being committed,
6693 * perform actual diff image creation, deletion etc.
6694 */
6695
6696 /* take a copy of backed up attachments (will modify it) */
6697 HDData::HDAttachmentList backedUp = mHDData.backedUpData()->mHDAttachments;
6698 /* list of new diffs created */
6699 std::list <ComObjPtr <HardDisk> > newDiffs;
6700
6701 HRESULT rc = S_OK;
6702
6703 /* go through current attachments */
6704 for (HDData::HDAttachmentList::const_iterator
6705 it = mHDData->mHDAttachments.begin();
6706 it != mHDData->mHDAttachments.end();
6707 ++ it)
6708 {
6709 ComObjPtr <HardDiskAttachment> hda = *it;
6710 ComObjPtr <HardDisk> hd = hda->hardDisk();
6711 AutoLock hdLock (hd);
6712
6713 if (!hda->isDirty())
6714 {
6715 /*
6716 * not dirty, therefore was either attached before backing up
6717 * or doesn't need any fixup (already fixed up); try to locate
6718 * this hard disk among backed up attachments and remove from
6719 * there to prevent it from being deassociated/deleted
6720 */
6721 HDData::HDAttachmentList::iterator oldIt;
6722 for (oldIt = backedUp.begin(); oldIt != backedUp.end(); ++ oldIt)
6723 if ((*oldIt)->hardDisk().equalsTo (hd))
6724 break;
6725 if (oldIt != backedUp.end())
6726 {
6727 /* remove from there */
6728 backedUp.erase (oldIt);
6729 Log3 (("FC: %ls found in old\n", hd->toString().raw()));
6730 }
6731 }
6732 else
6733 {
6734 /* dirty, determine what to do */
6735
6736 bool needDiff = false;
6737 bool searchAmongSnapshots = false;
6738
6739 switch (hd->type())
6740 {
6741 case HardDiskType_ImmutableHardDisk:
6742 {
6743 /* decrease readers increased in AttachHardDisk() */
6744 hd->releaseReader();
6745 Log3 (("FC: %ls released\n", hd->toString().raw()));
6746 /* indicate we need a diff (indirect attachment) */
6747 needDiff = true;
6748 break;
6749 }
6750 case HardDiskType_WritethroughHardDisk:
6751 {
6752 /* reset the dirty flag */
6753 hda->updateHardDisk (hd, false /* aDirty */);
6754 Log3 (("FC: %ls updated\n", hd->toString().raw()));
6755 break;
6756 }
6757 case HardDiskType_NormalHardDisk:
6758 {
6759 if (hd->snapshotId().isEmpty())
6760 {
6761 /* reset the dirty flag */
6762 hda->updateHardDisk (hd, false /* aDirty */);
6763 Log3 (("FC: %ls updated\n", hd->toString().raw()));
6764 }
6765 else
6766 {
6767 /* decrease readers increased in AttachHardDisk() */
6768 hd->releaseReader();
6769 Log3 (("FC: %ls released\n", hd->toString().raw()));
6770 /* indicate we need a diff (indirect attachment) */
6771 needDiff = true;
6772 /* search for the most recent base among snapshots */
6773 searchAmongSnapshots = true;
6774 }
6775 break;
6776 }
6777 }
6778
6779 if (!needDiff)
6780 continue;
6781
6782 bool createDiff = false;
6783
6784 /*
6785 * see whether any previously attached hard disk has the
6786 * the currently attached one (Normal or Independent) as
6787 * the root
6788 */
6789
6790 HDData::HDAttachmentList::iterator foundIt = backedUp.end();
6791
6792 for (HDData::HDAttachmentList::iterator it = backedUp.begin();
6793 it != backedUp.end();
6794 ++ it)
6795 {
6796 if ((*it)->hardDisk()->root().equalsTo (hd))
6797 {
6798 /*
6799 * matched dev and ctl (i.e. attached to the same place)
6800 * will win and immediately stop the search; otherwise
6801 * the first attachment that matched the hd only will
6802 * be used
6803 */
6804 if ((*it)->deviceNumber() == hda->deviceNumber() &&
6805 (*it)->controller() == hda->controller())
6806 {
6807 foundIt = it;
6808 break;
6809 }
6810 else
6811 if (foundIt == backedUp.end())
6812 {
6813 /*
6814 * not an exact match; ensure there is no exact match
6815 * among other current attachments referring the same
6816 * root (to prevent this attachmend from reusing the
6817 * hard disk of the other attachment that will later
6818 * give the exact match or already gave it before)
6819 */
6820 bool canReuse = true;
6821 for (HDData::HDAttachmentList::const_iterator
6822 it2 = mHDData->mHDAttachments.begin();
6823 it2 != mHDData->mHDAttachments.end();
6824 ++ it2)
6825 {
6826 if ((*it2)->deviceNumber() == (*it)->deviceNumber() &&
6827 (*it2)->controller() == (*it)->controller() &&
6828 (*it2)->hardDisk()->root().equalsTo (hd))
6829 {
6830 /*
6831 * the exact match, either non-dirty or dirty
6832 * one refers the same root: in both cases
6833 * we cannot reuse the hard disk, so break
6834 */
6835 canReuse = false;
6836 break;
6837 }
6838 }
6839
6840 if (canReuse)
6841 foundIt = it;
6842 }
6843 }
6844 }
6845
6846 if (foundIt != backedUp.end())
6847 {
6848 /* found either one or another, reuse the diff */
6849 hda->updateHardDisk ((*foundIt)->hardDisk(),
6850 false /* aDirty */);
6851 Log3 (("FC: %ls reused as %ls\n", hd->toString().raw(),
6852 (*foundIt)->hardDisk()->toString().raw()));
6853 /* remove from there */
6854 backedUp.erase (foundIt);
6855 }
6856 else
6857 {
6858 /* was not attached, need a diff */
6859 createDiff = true;
6860 }
6861
6862 if (!createDiff)
6863 continue;
6864
6865 ComObjPtr <HardDisk> baseHd = hd;
6866
6867 if (searchAmongSnapshots)
6868 {
6869 /*
6870 * find the most recent diff based on the currently
6871 * attached root (Normal hard disk) among snapshots
6872 */
6873
6874 ComObjPtr <Snapshot> snap = mData->mCurrentSnapshot;
6875
6876 while (snap)
6877 {
6878 AutoLock snapLock (snap);
6879
6880 const HDData::HDAttachmentList &snapAtts =
6881 snap->data().mMachine->hdData()->mHDAttachments;
6882
6883 HDData::HDAttachmentList::const_iterator foundIt = snapAtts.end();
6884
6885 for (HDData::HDAttachmentList::const_iterator
6886 it = snapAtts.begin(); it != snapAtts.end(); ++ it)
6887 {
6888 if ((*it)->hardDisk()->root().equalsTo (hd))
6889 {
6890 /*
6891 * matched dev and ctl (i.e. attached to the same place)
6892 * will win and immediately stop the search; otherwise
6893 * the first attachment that matched the hd only will
6894 * be used
6895 */
6896 if ((*it)->deviceNumber() == hda->deviceNumber() &&
6897 (*it)->controller() == hda->controller())
6898 {
6899 foundIt = it;
6900 break;
6901 }
6902 else
6903 if (foundIt == snapAtts.end())
6904 foundIt = it;
6905 }
6906 }
6907
6908 if (foundIt != snapAtts.end())
6909 {
6910 /* the most recent diff has been found, use as a base */
6911 baseHd = (*foundIt)->hardDisk();
6912 Log3 (("FC: %ls: recent found %ls\n",
6913 hd->toString().raw(), baseHd->toString().raw()));
6914 break;
6915 }
6916
6917 snap = snap->parent();
6918 }
6919 }
6920
6921 /* create a new diff for the hard disk being indirectly attached */
6922
6923 AutoLock baseHdLock (baseHd);
6924 baseHd->addReader();
6925
6926 ComObjPtr <HVirtualDiskImage> vdi;
6927 rc = baseHd->createDiffHardDisk (mUserData->mSnapshotFolderFull,
6928 mData->mUuid, vdi, NULL);
6929 baseHd->releaseReader();
6930 CheckComRCBreakRC (rc);
6931
6932 newDiffs.push_back (ComObjPtr <HardDisk> (vdi));
6933
6934 /* update the attachment and reset the dirty flag */
6935 hda->updateHardDisk (ComObjPtr <HardDisk> (vdi),
6936 false /* aDirty */);
6937 Log3 (("FC: %ls: diff created %ls\n",
6938 baseHd->toString().raw(), vdi->toString().raw()));
6939 }
6940 }
6941
6942 if (FAILED (rc))
6943 {
6944 /* delete diffs we created */
6945 for (std::list <ComObjPtr <HardDisk> >::const_iterator
6946 it = newDiffs.begin(); it != newDiffs.end(); ++ it)
6947 {
6948 /*
6949 * unregisterDiffHardDisk() is supposed to delete and uninit
6950 * the differencing hard disk
6951 */
6952 mParent->unregisterDiffHardDisk (*it);
6953 /* too bad if we fail here, but nothing to do, just continue */
6954 }
6955
6956 /* the best is to rollback the changes... */
6957 mHDData.rollback();
6958 mHDData->mHDAttachmentsChanged = false;
6959 Log3 (("FC: ROLLED BACK\n"));
6960 return rc;
6961 }
6962
6963 /*
6964 * go through the rest of old attachments and delete diffs
6965 * or deassociate hard disks from machines (they will become detached)
6966 */
6967 for (HDData::HDAttachmentList::iterator
6968 it = backedUp.begin(); it != backedUp.end(); ++ it)
6969 {
6970 ComObjPtr <HardDiskAttachment> hda = *it;
6971 ComObjPtr <HardDisk> hd = hda->hardDisk();
6972 AutoLock hdLock (hd);
6973
6974 if (hd->isDifferencing())
6975 {
6976 /*
6977 * unregisterDiffHardDisk() is supposed to delete and uninit
6978 * the differencing hard disk
6979 */
6980 Log3 (("FC: %ls diff deleted\n", hd->toString().raw()));
6981 rc = mParent->unregisterDiffHardDisk (hd);
6982 /*
6983 * too bad if we fail here, but nothing to do, just continue
6984 * (the last rc will be returned to the caller though)
6985 */
6986 }
6987 else
6988 {
6989 /* deassociate from this machine */
6990 Log3 (("FC: %ls deassociated\n", hd->toString().raw()));
6991 hd->setMachineId (Guid());
6992 }
6993 }
6994
6995 /* commit all the changes */
6996 mHDData->mHDAttachmentsChanged = mHDData.hasActualChanges();
6997 mHDData.commit();
6998 Log3 (("FC: COMMITTED\n"));
6999
7000 return rc;
7001 }
7002
7003 /*
7004 * changes are being rolled back,
7005 * go trhough all current attachments and fix up dirty ones
7006 * the way it is done in DetachHardDisk()
7007 */
7008
7009 for (HDData::HDAttachmentList::iterator it = mHDData->mHDAttachments.begin();
7010 it != mHDData->mHDAttachments.end();
7011 ++ it)
7012 {
7013 ComObjPtr <HardDiskAttachment> hda = *it;
7014 ComObjPtr <HardDisk> hd = hda->hardDisk();
7015 AutoLock hdLock (hd);
7016
7017 if (hda->isDirty())
7018 {
7019 switch (hd->type())
7020 {
7021 case HardDiskType_ImmutableHardDisk:
7022 {
7023 /* decrease readers increased in AttachHardDisk() */
7024 hd->releaseReader();
7025 Log3 (("FR: %ls released\n", hd->toString().raw()));
7026 break;
7027 }
7028 case HardDiskType_WritethroughHardDisk:
7029 {
7030 /* deassociate from this machine */
7031 hd->setMachineId (Guid());
7032 Log3 (("FR: %ls deassociated\n", hd->toString().raw()));
7033 break;
7034 }
7035 case HardDiskType_NormalHardDisk:
7036 {
7037 if (hd->snapshotId().isEmpty())
7038 {
7039 /* deassociate from this machine */
7040 hd->setMachineId (Guid());
7041 Log3 (("FR: %ls deassociated\n", hd->toString().raw()));
7042 }
7043 else
7044 {
7045 /* decrease readers increased in AttachHardDisk() */
7046 hd->releaseReader();
7047 Log3 (("FR: %ls released\n", hd->toString().raw()));
7048 }
7049
7050 break;
7051 }
7052 }
7053 }
7054 }
7055
7056 /* rollback all the changes */
7057 mHDData.rollback();
7058 Log3 (("FR: ROLLED BACK\n"));
7059
7060 return S_OK;
7061}
7062
7063/**
7064 * Creates differencing hard disks for all normal hard disks
7065 * and replaces attachments to refer to created disks.
7066 * Used when taking a snapshot or when discarding the current state.
7067 *
7068 * @param aSnapshotId ID of the snapshot being taken
7069 * or NULL if the current state is being discarded
7070 * @param aFolder folder where to create diff. hard disks
7071 * @param aProgress progress object to run (must contain at least as
7072 * many operations left as the number of VDIs attached)
7073 * @param aOnline whether the machine is online (i.e., when the EMT
7074 * thread is paused, OR when current hard disks are
7075 * marked as busy for some other reason)
7076 *
7077 * @note
7078 * The progress object is not marked as completed, neither on success
7079 * nor on failure. This is a responsibility of the caller.
7080 *
7081 * @note Locks mParent + this object for writing
7082 */
7083HRESULT Machine::createSnapshotDiffs (const Guid *aSnapshotId,
7084 const Bstr &aFolder,
7085 const ComObjPtr <Progress> &aProgress,
7086 bool aOnline)
7087{
7088 AssertReturn (!aFolder.isEmpty(), E_FAIL);
7089
7090 AutoCaller autoCaller (this);
7091 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
7092
7093 /* accessing mParent methods below needs mParent lock */
7094 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
7095
7096 HRESULT rc = S_OK;
7097
7098 // first pass: check accessibility before performing changes
7099 if (!aOnline)
7100 {
7101 for (HDData::HDAttachmentList::const_iterator it = mHDData->mHDAttachments.begin();
7102 it != mHDData->mHDAttachments.end();
7103 ++ it)
7104 {
7105 ComObjPtr <HardDiskAttachment> hda = *it;
7106 ComObjPtr <HardDisk> hd = hda->hardDisk();
7107 AutoLock hdLock (hd);
7108
7109 ComAssertMsgBreak (hd->type() == HardDiskType_NormalHardDisk,
7110 ("Invalid hard disk type %d\n", hd->type()),
7111 rc = E_FAIL);
7112
7113 ComAssertMsgBreak (!hd->isParentImmutable() ||
7114 hd->storageType() == HardDiskStorageType_VirtualDiskImage,
7115 ("Invalid hard disk storage type %d\n", hd->storageType()),
7116 rc = E_FAIL);
7117
7118 Bstr accessError;
7119 rc = hd->getAccessible (accessError);
7120 CheckComRCBreakRC (rc);
7121
7122 if (!accessError.isNull())
7123 {
7124 rc = setError (E_FAIL,
7125 tr ("Hard disk '%ls' is not accessible (%ls)"),
7126 hd->toString().raw(), accessError.raw());
7127 break;
7128 }
7129 }
7130 CheckComRCReturnRC (rc);
7131 }
7132
7133 HDData::HDAttachmentList attachments;
7134
7135 // second pass: perform changes
7136 for (HDData::HDAttachmentList::const_iterator it = mHDData->mHDAttachments.begin();
7137 it != mHDData->mHDAttachments.end();
7138 ++ it)
7139 {
7140 ComObjPtr <HardDiskAttachment> hda = *it;
7141 ComObjPtr <HardDisk> hd = hda->hardDisk();
7142 AutoLock hdLock (hd);
7143
7144 ComObjPtr <HardDisk> parent = hd->parent();
7145 AutoLock parentHdLock (parent);
7146
7147 ComObjPtr <HardDisk> newHd;
7148
7149 // clear busy flag if the VM is online
7150 if (aOnline)
7151 hd->clearBusy();
7152 // increase readers
7153 hd->addReader();
7154
7155 if (hd->isParentImmutable())
7156 {
7157 aProgress->advanceOperation (Bstr (Utf8StrFmt (
7158 tr ("Preserving immutable hard disk '%ls'"),
7159 parent->toString (true /* aShort */).raw())));
7160
7161 parentHdLock.unlock();
7162 alock.leave();
7163
7164 // create a copy of the independent diff
7165 ComObjPtr <HVirtualDiskImage> vdi;
7166 rc = hd->asVDI()->cloneDiffImage (aFolder, mData->mUuid, vdi,
7167 aProgress);
7168 newHd = vdi;
7169
7170 alock.enter();
7171 parentHdLock.lock();
7172
7173 // decrease readers (hd is no more used for reading in any case)
7174 hd->releaseReader();
7175 }
7176 else
7177 {
7178 // checked in the first pass
7179 Assert (hd->type() == HardDiskType_NormalHardDisk);
7180
7181 aProgress->advanceOperation (Bstr (Utf8StrFmt (
7182 tr ("Creating a differencing hard disk for '%ls'"),
7183 hd->root()->toString (true /* aShort */).raw())));
7184
7185 parentHdLock.unlock();
7186 alock.leave();
7187
7188 // create a new diff for the image being attached
7189 ComObjPtr <HVirtualDiskImage> vdi;
7190 rc = hd->createDiffHardDisk (aFolder, mData->mUuid, vdi, aProgress);
7191 newHd = vdi;
7192
7193 alock.enter();
7194 parentHdLock.lock();
7195
7196 if (SUCCEEDED (rc))
7197 {
7198 // if online, hd must keep a reader referece
7199 if (!aOnline)
7200 hd->releaseReader();
7201 }
7202 else
7203 {
7204 // decrease readers
7205 hd->releaseReader();
7206 }
7207 }
7208
7209 if (SUCCEEDED (rc))
7210 {
7211 ComObjPtr <HardDiskAttachment> newHda;
7212 newHda.createObject();
7213 rc = newHda->init (newHd, hda->controller(), hda->deviceNumber(),
7214 false /* aDirty */);
7215
7216 if (SUCCEEDED (rc))
7217 {
7218 // associate the snapshot id with the old hard disk
7219 if (hd->type() != HardDiskType_WritethroughHardDisk && aSnapshotId)
7220 hd->setSnapshotId (*aSnapshotId);
7221
7222 // add the new attachment
7223 attachments.push_back (newHda);
7224
7225 // if online, newHd must be marked as busy
7226 if (aOnline)
7227 newHd->setBusy();
7228 }
7229 }
7230
7231 if (FAILED (rc))
7232 {
7233 // set busy flag back if the VM is online
7234 if (aOnline)
7235 hd->setBusy();
7236 break;
7237 }
7238 }
7239
7240 if (SUCCEEDED (rc))
7241 {
7242 // replace the whole list of attachments with the new one
7243 mHDData->mHDAttachments = attachments;
7244 }
7245 else
7246 {
7247 // delete those diffs we've just created
7248 for (HDData::HDAttachmentList::const_iterator it = attachments.begin();
7249 it != attachments.end();
7250 ++ it)
7251 {
7252 ComObjPtr <HardDisk> hd = (*it)->hardDisk();
7253 AutoLock hdLock (hd);
7254 Assert (hd->children().size() == 0);
7255 Assert (hd->isDifferencing());
7256 // unregisterDiffHardDisk() is supposed to delete and uninit
7257 // the differencing hard disk
7258 mParent->unregisterDiffHardDisk (hd);
7259 }
7260 }
7261
7262 return rc;
7263}
7264
7265/**
7266 * Deletes differencing hard disks created by createSnapshotDiffs() in case
7267 * if snapshot creation was failed.
7268 *
7269 * @param aSnapshot failed snapshot
7270 *
7271 * @note Locks mParent + this object for writing.
7272 */
7273HRESULT Machine::deleteSnapshotDiffs (const ComObjPtr <Snapshot> &aSnapshot)
7274{
7275 AssertReturn (!aSnapshot.isNull(), E_FAIL);
7276
7277 AutoCaller autoCaller (this);
7278 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
7279
7280 /* accessing mParent methods below needs mParent lock */
7281 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
7282
7283 /* short cut: check whether attachments are all the same */
7284 if (mHDData->mHDAttachments == aSnapshot->data().mMachine->mHDData->mHDAttachments)
7285 return S_OK;
7286
7287 HRESULT rc = S_OK;
7288
7289 for (HDData::HDAttachmentList::const_iterator it = mHDData->mHDAttachments.begin();
7290 it != mHDData->mHDAttachments.end();
7291 ++ it)
7292 {
7293 ComObjPtr <HardDiskAttachment> hda = *it;
7294 ComObjPtr <HardDisk> hd = hda->hardDisk();
7295 AutoLock hdLock (hd);
7296
7297 ComObjPtr <HardDisk> parent = hd->parent();
7298 AutoLock parentHdLock (parent);
7299
7300 if (!parent || parent->snapshotId() != aSnapshot->data().mId)
7301 continue;
7302
7303 /* must not have children */
7304 ComAssertRet (hd->children().size() == 0, E_FAIL);
7305
7306 /* deassociate the old hard disk from the given snapshot's ID */
7307 parent->setSnapshotId (Guid());
7308
7309 /* unregisterDiffHardDisk() is supposed to delete and uninit
7310 * the differencing hard disk */
7311 rc = mParent->unregisterDiffHardDisk (hd);
7312 /* continue on error */
7313 }
7314
7315 /* restore the whole list of attachments from the failed snapshot */
7316 mHDData->mHDAttachments = aSnapshot->data().mMachine->mHDData->mHDAttachments;
7317
7318 return rc;
7319}
7320
7321/**
7322 * Helper to lock the machine configuration for write access.
7323 *
7324 * @return S_OK or E_FAIL and sets error info on failure
7325 *
7326 * @note Doesn't lock anything (must be called from this object's lock)
7327 */
7328HRESULT Machine::lockConfig()
7329{
7330 HRESULT rc = S_OK;
7331
7332 if (!isConfigLocked())
7333 {
7334 /* open the associated config file */
7335 int vrc = RTFileOpen (&mData->mHandleCfgFile,
7336 Utf8Str (mData->mConfigFileFull),
7337 RTFILE_O_READWRITE | RTFILE_O_OPEN |
7338 RTFILE_O_DENY_WRITE);
7339 if (VBOX_FAILURE (vrc))
7340 mData->mHandleCfgFile = NIL_RTFILE;
7341 }
7342
7343 LogFlowThisFunc (("mConfigFile={%ls}, mHandleCfgFile=%d, rc=%08X\n",
7344 mData->mConfigFileFull.raw(), mData->mHandleCfgFile, rc));
7345 return rc;
7346}
7347
7348/**
7349 * Helper to unlock the machine configuration from write access
7350 *
7351 * @return S_OK
7352 *
7353 * @note Doesn't lock anything.
7354 * @note Not thread safe (must be called from this object's lock).
7355 */
7356HRESULT Machine::unlockConfig()
7357{
7358 HRESULT rc = S_OK;
7359
7360 if (isConfigLocked())
7361 {
7362 RTFileFlush(mData->mHandleCfgFile);
7363 RTFileClose(mData->mHandleCfgFile);
7364 /** @todo flush the directory. */
7365 mData->mHandleCfgFile = NIL_RTFILE;
7366 }
7367
7368 LogFlowThisFunc (("\n"));
7369
7370 return rc;
7371}
7372
7373/**
7374 * Returns true if the settings file is located in the directory named exactly
7375 * as the machine. This will be true if the machine settings structure was
7376 * created by default in #openConfigLoader().
7377 *
7378 * @param aSettingsDir if not NULL, the full machine settings file directory
7379 * name will be assigned there.
7380 *
7381 * @note Doesn't lock anything.
7382 * @note Not thread safe (must be called from this object's lock).
7383 */
7384bool Machine::isInOwnDir (Utf8Str *aSettingsDir /* = NULL */)
7385{
7386 Utf8Str settingsDir = mData->mConfigFileFull;
7387 RTPathStripFilename (settingsDir.mutableRaw());
7388 char *dirName = RTPathFilename (settingsDir);
7389
7390 AssertReturn (dirName, false);
7391
7392 /* if we don't rename anything on name change, return false shorlty */
7393 if (!mUserData->mNameSync)
7394 return false;
7395
7396 if (aSettingsDir)
7397 *aSettingsDir = settingsDir;
7398
7399 return Bstr (dirName) == mUserData->mName;
7400}
7401
7402/**
7403 * @note Locks objects for reading!
7404 */
7405bool Machine::isModified()
7406{
7407 AutoCaller autoCaller (this);
7408 AssertComRCReturn (autoCaller.rc(), false);
7409
7410 AutoReaderLock alock (this);
7411
7412 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
7413 if (mNetworkAdapters [slot] && mNetworkAdapters [slot]->isModified())
7414 return true;
7415
7416 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
7417 if (mSerialPorts [slot] && mSerialPorts [slot]->isModified())
7418 return true;
7419
7420 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
7421 if (mParallelPorts [slot] && mParallelPorts [slot]->isModified())
7422 return true;
7423
7424 return
7425 mUserData.isBackedUp() ||
7426 mHWData.isBackedUp() ||
7427 mHDData.isBackedUp() ||
7428#ifdef VBOX_VRDP
7429 (mVRDPServer && mVRDPServer->isModified()) ||
7430#endif
7431 (mDVDDrive && mDVDDrive->isModified()) ||
7432 (mFloppyDrive && mFloppyDrive->isModified()) ||
7433 (mAudioAdapter && mAudioAdapter->isModified()) ||
7434 (mUSBController && mUSBController->isModified()) ||
7435 (mBIOSSettings && mBIOSSettings->isModified());
7436}
7437
7438/**
7439 * @note This method doesn't check (ignores) actual changes to mHDData.
7440 * Use mHDData.mHDAttachmentsChanged right after #commit() instead.
7441 *
7442 * @param aIgnoreUserData |true| to ignore changes to mUserData
7443 *
7444 * @note Locks objects for reading!
7445 */
7446bool Machine::isReallyModified (bool aIgnoreUserData /* = false */)
7447{
7448 AutoCaller autoCaller (this);
7449 AssertComRCReturn (autoCaller.rc(), false);
7450
7451 AutoReaderLock alock (this);
7452
7453 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
7454 if (mNetworkAdapters [slot] && mNetworkAdapters [slot]->isReallyModified())
7455 return true;
7456
7457 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
7458 if (mSerialPorts [slot] && mSerialPorts [slot]->isReallyModified())
7459 return true;
7460
7461 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
7462 if (mParallelPorts [slot] && mParallelPorts [slot]->isReallyModified())
7463 return true;
7464
7465 return
7466 (!aIgnoreUserData && mUserData.hasActualChanges()) ||
7467 mHWData.hasActualChanges() ||
7468 /* ignore mHDData */
7469 //mHDData.hasActualChanges() ||
7470#ifdef VBOX_VRDP
7471 (mVRDPServer && mVRDPServer->isReallyModified()) ||
7472#endif
7473 (mDVDDrive && mDVDDrive->isReallyModified()) ||
7474 (mFloppyDrive && mFloppyDrive->isReallyModified()) ||
7475 (mAudioAdapter && mAudioAdapter->isReallyModified()) ||
7476 (mUSBController && mUSBController->isReallyModified()) ||
7477 (mBIOSSettings && mBIOSSettings->isReallyModified());
7478}
7479
7480/**
7481 * Discards all changes to machine settings.
7482 *
7483 * @param aNotify whether to notify the direct session about changes or not
7484 *
7485 * @note Locks objects!
7486 */
7487void Machine::rollback (bool aNotify)
7488{
7489 AutoCaller autoCaller (this);
7490 AssertComRCReturn (autoCaller.rc(), (void) 0);
7491
7492 AutoLock alock (this);
7493
7494 /* check for changes in own data */
7495
7496 bool sharedFoldersChanged = false;
7497
7498 if (aNotify && mHWData.isBackedUp())
7499 {
7500 if (mHWData->mSharedFolders.size() !=
7501 mHWData.backedUpData()->mSharedFolders.size())
7502 sharedFoldersChanged = true;
7503 else
7504 {
7505 for (HWData::SharedFolderList::iterator rit =
7506 mHWData->mSharedFolders.begin();
7507 rit != mHWData->mSharedFolders.end() && !sharedFoldersChanged;
7508 ++ rit)
7509 {
7510 for (HWData::SharedFolderList::iterator cit =
7511 mHWData.backedUpData()->mSharedFolders.begin();
7512 cit != mHWData.backedUpData()->mSharedFolders.end();
7513 ++ cit)
7514 {
7515 if ((*cit)->name() != (*rit)->name() ||
7516 (*cit)->hostPath() != (*rit)->hostPath())
7517 {
7518 sharedFoldersChanged = true;
7519 break;
7520 }
7521 }
7522 }
7523 }
7524 }
7525
7526 mUserData.rollback();
7527
7528 mHWData.rollback();
7529
7530 if (mHDData.isBackedUp())
7531 fixupHardDisks (false /* aCommit */);
7532
7533 /* check for changes in child objects */
7534
7535 bool vrdpChanged = false, dvdChanged = false, floppyChanged = false,
7536 usbChanged = false;
7537
7538 ComPtr <INetworkAdapter> networkAdapters [ELEMENTS (mNetworkAdapters)];
7539 ComPtr <ISerialPort> serialPorts [ELEMENTS (mSerialPorts)];
7540 ComPtr <IParallelPort> parallelPorts [ELEMENTS (mParallelPorts)];
7541
7542 if (mBIOSSettings)
7543 mBIOSSettings->rollback();
7544
7545#ifdef VBOX_VRDP
7546 if (mVRDPServer)
7547 vrdpChanged = mVRDPServer->rollback();
7548#endif
7549
7550 if (mDVDDrive)
7551 dvdChanged = mDVDDrive->rollback();
7552
7553 if (mFloppyDrive)
7554 floppyChanged = mFloppyDrive->rollback();
7555
7556 if (mAudioAdapter)
7557 mAudioAdapter->rollback();
7558
7559 if (mUSBController)
7560 usbChanged = mUSBController->rollback();
7561
7562 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
7563 if (mNetworkAdapters [slot])
7564 if (mNetworkAdapters [slot]->rollback())
7565 networkAdapters [slot] = mNetworkAdapters [slot];
7566
7567 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
7568 if (mSerialPorts [slot])
7569 if (mSerialPorts [slot]->rollback())
7570 serialPorts [slot] = mSerialPorts [slot];
7571
7572 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
7573 if (mParallelPorts [slot])
7574 if (mParallelPorts [slot]->rollback())
7575 parallelPorts [slot] = mParallelPorts [slot];
7576
7577 if (aNotify)
7578 {
7579 /* inform the direct session about changes */
7580
7581 ComObjPtr <Machine> that = this;
7582 alock.leave();
7583
7584 if (sharedFoldersChanged)
7585 that->onSharedFolderChange();
7586
7587 if (vrdpChanged)
7588 that->onVRDPServerChange();
7589 if (dvdChanged)
7590 that->onDVDDriveChange();
7591 if (floppyChanged)
7592 that->onFloppyDriveChange();
7593 if (usbChanged)
7594 that->onUSBControllerChange();
7595
7596 for (ULONG slot = 0; slot < ELEMENTS (networkAdapters); slot ++)
7597 if (networkAdapters [slot])
7598 that->onNetworkAdapterChange (networkAdapters [slot]);
7599 for (ULONG slot = 0; slot < ELEMENTS (serialPorts); slot ++)
7600 if (serialPorts [slot])
7601 that->onSerialPortChange (serialPorts [slot]);
7602 for (ULONG slot = 0; slot < ELEMENTS (parallelPorts); slot ++)
7603 if (parallelPorts [slot])
7604 that->onParallelPortChange (parallelPorts [slot]);
7605 }
7606}
7607
7608/**
7609 * Commits all the changes to machine settings.
7610 *
7611 * Note that when committing fails at some stage, it still continues
7612 * until the end. So, all data will either be actually committed or rolled
7613 * back (for failed cases) and the returned result code will describe the
7614 * first failure encountered. However, #isModified() will still return true
7615 * in case of failure, to indicade that settings in memory and on disk are
7616 * out of sync.
7617 *
7618 * @note Locks objects!
7619 */
7620HRESULT Machine::commit()
7621{
7622 AutoCaller autoCaller (this);
7623 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
7624
7625 AutoLock alock (this);
7626
7627 HRESULT rc = S_OK;
7628
7629 /*
7630 * use safe commit to ensure Snapshot machines (that share mUserData)
7631 * will still refer to a valid memory location
7632 */
7633 mUserData.commitCopy();
7634
7635 mHWData.commit();
7636
7637 if (mHDData.isBackedUp())
7638 rc = fixupHardDisks (true /* aCommit */);
7639
7640 mBIOSSettings->commit();
7641#ifdef VBOX_VRDP
7642 mVRDPServer->commit();
7643#endif
7644 mDVDDrive->commit();
7645 mFloppyDrive->commit();
7646 mAudioAdapter->commit();
7647 mUSBController->commit();
7648
7649 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
7650 mNetworkAdapters [slot]->commit();
7651 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
7652 mSerialPorts [slot]->commit();
7653 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
7654 mParallelPorts [slot]->commit();
7655
7656 if (mType == IsSessionMachine)
7657 {
7658 /* attach new data to the primary machine and reshare it */
7659 mPeer->mUserData.attach (mUserData);
7660 mPeer->mHWData.attach (mHWData);
7661 mPeer->mHDData.attach (mHDData);
7662 }
7663
7664 if (FAILED (rc))
7665 {
7666 /*
7667 * backup arbitrary data item to cause #isModified() to still return
7668 * true in case of any error
7669 */
7670 mHWData.backup();
7671 }
7672
7673 return rc;
7674}
7675
7676/**
7677 * Copies all the hardware data from the given machine.
7678 *
7679 * @note
7680 * This method must be called from under this object's lock.
7681 * @note
7682 * This method doesn't call #commit(), so all data remains backed up
7683 * and unsaved.
7684 */
7685void Machine::copyFrom (Machine *aThat)
7686{
7687 AssertReturn (mType == IsMachine || mType == IsSessionMachine, (void) 0);
7688 AssertReturn (aThat->mType == IsSnapshotMachine, (void) 0);
7689
7690 mHWData.assignCopy (aThat->mHWData);
7691
7692 // create copies of all shared folders (mHWData after attiching a copy
7693 // contains just references to original objects)
7694 for (HWData::SharedFolderList::iterator it = mHWData->mSharedFolders.begin();
7695 it != mHWData->mSharedFolders.end();
7696 ++ it)
7697 {
7698 ComObjPtr <SharedFolder> folder;
7699 folder.createObject();
7700 HRESULT rc = folder->initCopy (machine(), *it);
7701 AssertComRC (rc);
7702 *it = folder;
7703 }
7704
7705 mBIOSSettings->copyFrom (aThat->mBIOSSettings);
7706#ifdef VBOX_VRDP
7707 mVRDPServer->copyFrom (aThat->mVRDPServer);
7708#endif
7709 mDVDDrive->copyFrom (aThat->mDVDDrive);
7710 mFloppyDrive->copyFrom (aThat->mFloppyDrive);
7711 mAudioAdapter->copyFrom (aThat->mAudioAdapter);
7712 mUSBController->copyFrom (aThat->mUSBController);
7713
7714 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
7715 mNetworkAdapters [slot]->copyFrom (aThat->mNetworkAdapters [slot]);
7716 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
7717 mSerialPorts [slot]->copyFrom (aThat->mSerialPorts [slot]);
7718 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
7719 mParallelPorts [slot]->copyFrom (aThat->mParallelPorts [slot]);
7720}
7721
7722/////////////////////////////////////////////////////////////////////////////
7723// SessionMachine class
7724/////////////////////////////////////////////////////////////////////////////
7725
7726/** Task structure for asynchronous VM operations */
7727struct SessionMachine::Task
7728{
7729 Task (SessionMachine *m, Progress *p)
7730 : machine (m), progress (p)
7731 , state (m->data()->mMachineState) // save the current machine state
7732 , subTask (false), settingsChanged (false)
7733 {}
7734
7735 void modifyLastState (MachineState_T s)
7736 {
7737 *const_cast <MachineState_T *> (&state) = s;
7738 }
7739
7740 virtual void handler() = 0;
7741
7742 const ComObjPtr <SessionMachine> machine;
7743 const ComObjPtr <Progress> progress;
7744 const MachineState_T state;
7745
7746 bool subTask : 1;
7747 bool settingsChanged : 1;
7748};
7749
7750/** Take snapshot task */
7751struct SessionMachine::TakeSnapshotTask : public SessionMachine::Task
7752{
7753 TakeSnapshotTask (SessionMachine *m)
7754 : Task (m, NULL) {}
7755
7756 void handler() { machine->takeSnapshotHandler (*this); }
7757};
7758
7759/** Discard snapshot task */
7760struct SessionMachine::DiscardSnapshotTask : public SessionMachine::Task
7761{
7762 DiscardSnapshotTask (SessionMachine *m, Progress *p, Snapshot *s)
7763 : Task (m, p)
7764 , snapshot (s) {}
7765
7766 DiscardSnapshotTask (const Task &task, Snapshot *s)
7767 : Task (task)
7768 , snapshot (s) {}
7769
7770 void handler() { machine->discardSnapshotHandler (*this); }
7771
7772 const ComObjPtr <Snapshot> snapshot;
7773};
7774
7775/** Discard current state task */
7776struct SessionMachine::DiscardCurrentStateTask : public SessionMachine::Task
7777{
7778 DiscardCurrentStateTask (SessionMachine *m, Progress *p,
7779 bool discardCurSnapshot)
7780 : Task (m, p), discardCurrentSnapshot (discardCurSnapshot) {}
7781
7782 void handler() { machine->discardCurrentStateHandler (*this); }
7783
7784 const bool discardCurrentSnapshot;
7785};
7786
7787////////////////////////////////////////////////////////////////////////////////
7788
7789DEFINE_EMPTY_CTOR_DTOR (SessionMachine)
7790
7791HRESULT SessionMachine::FinalConstruct()
7792{
7793 LogFlowThisFunc (("\n"));
7794
7795 /* set the proper type to indicate we're the SessionMachine instance */
7796 unconst (mType) = IsSessionMachine;
7797
7798#if defined(RT_OS_WINDOWS)
7799 mIPCSem = NULL;
7800#elif defined(RT_OS_OS2)
7801 mIPCSem = NULLHANDLE;
7802#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
7803 mIPCSem = -1;
7804#else
7805# error "Port me!"
7806#endif
7807
7808 return S_OK;
7809}
7810
7811void SessionMachine::FinalRelease()
7812{
7813 LogFlowThisFunc (("\n"));
7814
7815 uninit (Uninit::Unexpected);
7816}
7817
7818/**
7819 * @note Must be called only by Machine::openSession() from its own write lock.
7820 */
7821HRESULT SessionMachine::init (Machine *aMachine)
7822{
7823 LogFlowThisFuncEnter();
7824 LogFlowThisFunc (("mName={%ls}\n", aMachine->mUserData->mName.raw()));
7825
7826 AssertReturn (aMachine, E_INVALIDARG);
7827
7828 AssertReturn (aMachine->lockHandle()->isLockedOnCurrentThread(), E_FAIL);
7829
7830 /* Enclose the state transition NotReady->InInit->Ready */
7831 AutoInitSpan autoInitSpan (this);
7832 AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
7833
7834 /* create the interprocess semaphore */
7835#if defined(RT_OS_WINDOWS)
7836 mIPCSemName = aMachine->mData->mConfigFileFull;
7837 for (size_t i = 0; i < mIPCSemName.length(); i++)
7838 if (mIPCSemName[i] == '\\')
7839 mIPCSemName[i] = '/';
7840 mIPCSem = ::CreateMutex (NULL, FALSE, mIPCSemName);
7841 ComAssertMsgRet (mIPCSem,
7842 ("Cannot create IPC mutex '%ls', err=%d\n",
7843 mIPCSemName.raw(), ::GetLastError()),
7844 E_FAIL);
7845#elif defined(RT_OS_OS2)
7846 Utf8Str ipcSem = Utf8StrFmt ("\\SEM32\\VBOX\\VM\\{%Vuuid}",
7847 aMachine->mData->mUuid.raw());
7848 mIPCSemName = ipcSem;
7849 APIRET arc = ::DosCreateMutexSem ((PSZ) ipcSem.raw(), &mIPCSem, 0, FALSE);
7850 ComAssertMsgRet (arc == NO_ERROR,
7851 ("Cannot create IPC mutex '%s', arc=%ld\n",
7852 ipcSem.raw(), arc),
7853 E_FAIL);
7854#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
7855 Utf8Str configFile = aMachine->mData->mConfigFileFull;
7856 char *configFileCP = NULL;
7857 RTStrUtf8ToCurrentCP (&configFileCP, configFile);
7858 key_t key = ::ftok (configFileCP, 0);
7859 RTStrFree (configFileCP);
7860 mIPCSem = ::semget (key, 1, S_IRWXU | S_IRWXG | S_IRWXO | IPC_CREAT);
7861 ComAssertMsgRet (mIPCSem >= 0, ("Cannot create IPC semaphore, errno=%d", errno),
7862 E_FAIL);
7863 /* set the initial value to 1 */
7864 int rv = ::semctl (mIPCSem, 0, SETVAL, 1);
7865 ComAssertMsgRet (rv == 0, ("Cannot init IPC semaphore, errno=%d", errno),
7866 E_FAIL);
7867#else
7868# error "Port me!"
7869#endif
7870
7871 /* memorize the peer Machine */
7872 unconst (mPeer) = aMachine;
7873 /* share the parent pointer */
7874 unconst (mParent) = aMachine->mParent;
7875
7876 /* take the pointers to data to share */
7877 mData.share (aMachine->mData);
7878 mSSData.share (aMachine->mSSData);
7879
7880 mUserData.share (aMachine->mUserData);
7881 mHWData.share (aMachine->mHWData);
7882 mHDData.share (aMachine->mHDData);
7883
7884 unconst (mBIOSSettings).createObject();
7885 mBIOSSettings->init (this, aMachine->mBIOSSettings);
7886#ifdef VBOX_VRDP
7887 /* create another VRDPServer object that will be mutable */
7888 unconst (mVRDPServer).createObject();
7889 mVRDPServer->init (this, aMachine->mVRDPServer);
7890#endif
7891 /* create another DVD drive object that will be mutable */
7892 unconst (mDVDDrive).createObject();
7893 mDVDDrive->init (this, aMachine->mDVDDrive);
7894 /* create another floppy drive object that will be mutable */
7895 unconst (mFloppyDrive).createObject();
7896 mFloppyDrive->init (this, aMachine->mFloppyDrive);
7897 /* create another audio adapter object that will be mutable */
7898 unconst (mAudioAdapter).createObject();
7899 mAudioAdapter->init (this, aMachine->mAudioAdapter);
7900 /* create a list of serial ports that will be mutable */
7901 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
7902 {
7903 unconst (mSerialPorts [slot]).createObject();
7904 mSerialPorts [slot]->init (this, aMachine->mSerialPorts [slot]);
7905 }
7906 /* create a list of parallel ports that will be mutable */
7907 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
7908 {
7909 unconst (mParallelPorts [slot]).createObject();
7910 mParallelPorts [slot]->init (this, aMachine->mParallelPorts [slot]);
7911 }
7912 /* create another USB controller object that will be mutable */
7913 unconst (mUSBController).createObject();
7914 mUSBController->init (this, aMachine->mUSBController);
7915 /* create a list of network adapters that will be mutable */
7916 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
7917 {
7918 unconst (mNetworkAdapters [slot]).createObject();
7919 mNetworkAdapters [slot]->init (this, aMachine->mNetworkAdapters [slot]);
7920 }
7921
7922 /* Confirm a successful initialization when it's the case */
7923 autoInitSpan.setSucceeded();
7924
7925 LogFlowThisFuncLeave();
7926 return S_OK;
7927}
7928
7929/**
7930 * Uninitializes this session object. If the reason is other than
7931 * Uninit::Unexpected, then this method MUST be called from #checkForDeath().
7932 *
7933 * @param aReason uninitialization reason
7934 *
7935 * @note Locks mParent + this object for writing.
7936 */
7937void SessionMachine::uninit (Uninit::Reason aReason)
7938{
7939 LogFlowThisFuncEnter();
7940 LogFlowThisFunc (("reason=%d\n", aReason));
7941
7942 /*
7943 * Strongly reference ourselves to prevent this object deletion after
7944 * mData->mSession.mMachine.setNull() below (which can release the last
7945 * reference and call the destructor). Important: this must be done before
7946 * accessing any members (and before AutoUninitSpan that does it as well).
7947 * This self reference will be released as the very last step on return.
7948 */
7949 ComObjPtr <SessionMachine> selfRef = this;
7950
7951 /* Enclose the state transition Ready->InUninit->NotReady */
7952 AutoUninitSpan autoUninitSpan (this);
7953 if (autoUninitSpan.uninitDone())
7954 {
7955 LogFlowThisFunc (("Already uninitialized\n"));
7956 LogFlowThisFuncLeave();
7957 return;
7958 }
7959
7960 if (autoUninitSpan.initFailed())
7961 {
7962 /*
7963 * We've been called by init() because it's failed. It's not really
7964 * necessary (nor it's safe) to perform the regular uninit sequence
7965 * below, the following is enough.
7966 */
7967 LogFlowThisFunc (("Initialization failed.\n"));
7968#if defined(RT_OS_WINDOWS)
7969 if (mIPCSem)
7970 ::CloseHandle (mIPCSem);
7971 mIPCSem = NULL;
7972#elif defined(RT_OS_OS2)
7973 if (mIPCSem != NULLHANDLE)
7974 ::DosCloseMutexSem (mIPCSem);
7975 mIPCSem = NULLHANDLE;
7976#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
7977 if (mIPCSem >= 0)
7978 ::semctl (mIPCSem, 0, IPC_RMID);
7979 mIPCSem = -1;
7980#else
7981# error "Port me!"
7982#endif
7983 uninitDataAndChildObjects();
7984 unconst (mParent).setNull();
7985 unconst (mPeer).setNull();
7986 LogFlowThisFuncLeave();
7987 return;
7988 }
7989
7990 /*
7991 * We need to lock this object in uninit() because the lock is shared
7992 * with mPeer (as well as data we modify below).
7993 * mParent->addProcessToReap() and others need mParent lock.
7994 */
7995 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
7996
7997 MachineState_T lastState = mData->mMachineState;
7998
7999 if (aReason == Uninit::Abnormal)
8000 {
8001 LogWarningThisFunc (("ABNORMAL client termination! (wasRunning=%d)\n",
8002 lastState >= MachineState_Running));
8003
8004 /* reset the state to Aborted */
8005 if (mData->mMachineState != MachineState_Aborted)
8006 setMachineState (MachineState_Aborted);
8007 }
8008
8009 if (isModified())
8010 {
8011 LogWarningThisFunc (("Discarding unsaved settings changes!\n"));
8012 rollback (false /* aNotify */);
8013 }
8014
8015 Assert (!mSnapshotData.mStateFilePath || !mSnapshotData.mSnapshot);
8016 if (mSnapshotData.mStateFilePath)
8017 {
8018 LogWarningThisFunc (("canceling failed save state request!\n"));
8019 endSavingState (FALSE /* aSuccess */);
8020 }
8021 else if (!!mSnapshotData.mSnapshot)
8022 {
8023 LogWarningThisFunc (("canceling untaken snapshot!\n"));
8024 endTakingSnapshot (FALSE /* aSuccess */);
8025 }
8026
8027 /* release all captured USB devices */
8028 if (aReason == Uninit::Abnormal && lastState >= MachineState_Running)
8029 {
8030 /* Console::captureUSBDevices() is called in the VM process only after
8031 * setting the machine state to Starting or Restoring.
8032 * Console::detachAllUSBDevices() will be called upon successful
8033 * termination. So, we need to release USB devices only if there was
8034 * an abnormal termination of a running VM. */
8035 DetachAllUSBDevices (TRUE /* aDone */);
8036 }
8037
8038 if (!mData->mSession.mType.isNull())
8039 {
8040 /* mType is not null when this machine's process has been started by
8041 * VirtualBox::OpenRemoteSession(), therefore it is our child. We
8042 * need to queue the PID to reap the process (and avoid zombies on
8043 * Linux). */
8044 Assert (mData->mSession.mPid != NIL_RTPROCESS);
8045 mParent->addProcessToReap (mData->mSession.mPid);
8046 }
8047
8048 mData->mSession.mPid = NIL_RTPROCESS;
8049
8050 if (aReason == Uninit::Unexpected)
8051 {
8052 /* Uninitialization didn't come from #checkForDeath(), so tell the
8053 * client watcher thread to update the set of machines that have open
8054 * sessions. */
8055 mParent->updateClientWatcher();
8056 }
8057
8058 /* uninitialize all remote controls */
8059 if (mData->mSession.mRemoteControls.size())
8060 {
8061 LogFlowThisFunc (("Closing remote sessions (%d):\n",
8062 mData->mSession.mRemoteControls.size()));
8063
8064 Data::Session::RemoteControlList::iterator it =
8065 mData->mSession.mRemoteControls.begin();
8066 while (it != mData->mSession.mRemoteControls.end())
8067 {
8068 LogFlowThisFunc ((" Calling remoteControl->Uninitialize()...\n"));
8069 HRESULT rc = (*it)->Uninitialize();
8070 LogFlowThisFunc ((" remoteControl->Uninitialize() returned %08X\n", rc));
8071 if (FAILED (rc))
8072 LogWarningThisFunc (("Forgot to close the remote session?\n"));
8073 ++ it;
8074 }
8075 mData->mSession.mRemoteControls.clear();
8076 }
8077
8078 /*
8079 * An expected uninitialization can come only from #checkForDeath().
8080 * Otherwise it means that something's got really wrong (for examlple,
8081 * the Session implementation has released the VirtualBox reference
8082 * before it triggered #OnSessionEnd(), or before releasing IPC semaphore,
8083 * etc). However, it's also possible, that the client releases the IPC
8084 * semaphore correctly (i.e. before it releases the VirtualBox reference),
8085 * but but the VirtualBox release event comes first to the server process.
8086 * This case is practically possible, so we should not assert on an
8087 * unexpected uninit, just log a warning.
8088 */
8089
8090 if ((aReason == Uninit::Unexpected))
8091 LogWarningThisFunc (("Unexpected SessionMachine uninitialization!\n"));
8092
8093 if (aReason != Uninit::Normal)
8094 mData->mSession.mDirectControl.setNull();
8095 else
8096 {
8097 /* this must be null here (see #OnSessionEnd()) */
8098 Assert (mData->mSession.mDirectControl.isNull());
8099 Assert (mData->mSession.mState == SessionState_SessionClosing);
8100 Assert (!mData->mSession.mProgress.isNull());
8101
8102 mData->mSession.mProgress->notifyComplete (S_OK);
8103 mData->mSession.mProgress.setNull();
8104 }
8105
8106 /* remove the association between the peer machine and this session machine */
8107 Assert (mData->mSession.mMachine == this ||
8108 aReason == Uninit::Unexpected);
8109
8110 /* reset the rest of session data */
8111 mData->mSession.mMachine.setNull();
8112 mData->mSession.mState = SessionState_SessionClosed;
8113 mData->mSession.mType.setNull();
8114
8115 /* close the interprocess semaphore before leaving the shared lock */
8116#if defined(RT_OS_WINDOWS)
8117 if (mIPCSem)
8118 ::CloseHandle (mIPCSem);
8119 mIPCSem = NULL;
8120#elif defined(RT_OS_OS2)
8121 if (mIPCSem != NULLHANDLE)
8122 ::DosCloseMutexSem (mIPCSem);
8123 mIPCSem = NULLHANDLE;
8124#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
8125 if (mIPCSem >= 0)
8126 ::semctl (mIPCSem, 0, IPC_RMID);
8127 mIPCSem = -1;
8128#else
8129# error "Port me!"
8130#endif
8131
8132 /* fire an event */
8133 mParent->onSessionStateChange (mData->mUuid, SessionState_SessionClosed);
8134
8135 uninitDataAndChildObjects();
8136
8137 /* leave the shared lock before setting the above two to NULL */
8138 alock.leave();
8139
8140 unconst (mParent).setNull();
8141 unconst (mPeer).setNull();
8142
8143 LogFlowThisFuncLeave();
8144}
8145
8146// AutoLock::Lockable interface
8147////////////////////////////////////////////////////////////////////////////////
8148
8149/**
8150 * Overrides VirtualBoxBase::lockHandle() in order to share the lock handle
8151 * with the primary Machine instance (mPeer).
8152 */
8153AutoLock::Handle *SessionMachine::lockHandle() const
8154{
8155 AssertReturn (!mPeer.isNull(), NULL);
8156 return mPeer->lockHandle();
8157}
8158
8159// IInternalMachineControl methods
8160////////////////////////////////////////////////////////////////////////////////
8161
8162/**
8163 * @note Locks the same as #setMachineState() does.
8164 */
8165STDMETHODIMP SessionMachine::UpdateState (MachineState_T machineState)
8166{
8167 return setMachineState (machineState);
8168}
8169
8170/**
8171 * @note Locks this object for reading.
8172 */
8173STDMETHODIMP SessionMachine::GetIPCId (BSTR *id)
8174{
8175 AutoCaller autoCaller (this);
8176 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8177
8178 AutoReaderLock alock (this);
8179
8180#if defined(RT_OS_WINDOWS) || defined(RT_OS_OS2)
8181 mIPCSemName.cloneTo (id);
8182 return S_OK;
8183#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
8184 mData->mConfigFileFull.cloneTo (id);
8185 return S_OK;
8186#else
8187# error "Port me!"
8188#endif
8189}
8190
8191/**
8192 * Goes through the USB filters of the given machine to see if the given
8193 * device matches any filter or not.
8194 *
8195 * @note Locks the same as USBController::hasMatchingFilter() does.
8196 */
8197STDMETHODIMP SessionMachine::RunUSBDeviceFilters (IUSBDevice *aUSBDevice,
8198 BOOL *aMatched)
8199{
8200 LogFlowThisFunc (("\n"));
8201
8202 if (!aUSBDevice)
8203 return E_INVALIDARG;
8204 if (!aMatched)
8205 return E_POINTER;
8206
8207 AutoCaller autoCaller (this);
8208 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8209
8210 *aMatched = mUSBController->hasMatchingFilter (aUSBDevice);
8211
8212 return S_OK;
8213}
8214
8215/**
8216 * @note Locks the same as Host::captureUSBDevice() does.
8217 */
8218STDMETHODIMP SessionMachine::CaptureUSBDevice (INPTR GUIDPARAM aId)
8219{
8220 LogFlowThisFunc (("\n"));
8221
8222 AutoCaller autoCaller (this);
8223 AssertComRCReturnRC (autoCaller.rc());
8224
8225 /* if cautureUSBDevice() fails, it must have set extended error info */
8226 return mParent->host()->captureUSBDevice (this, aId);
8227}
8228
8229/**
8230 * @note Locks the same as Host::detachUSBDevice() does.
8231 */
8232STDMETHODIMP SessionMachine::DetachUSBDevice (INPTR GUIDPARAM aId, BOOL aDone)
8233{
8234 LogFlowThisFunc (("\n"));
8235
8236 AutoCaller autoCaller (this);
8237 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8238
8239 return mParent->host()->detachUSBDevice (this, aId, aDone);
8240}
8241
8242/**
8243 * Inserts all machine filters to the USB proxy service and then calls
8244 * Host::autoCaptureUSBDevices().
8245 *
8246 * Called by Console from the VM process upon VM startup.
8247 *
8248 * @note Locks what called methods lock.
8249 */
8250STDMETHODIMP SessionMachine::AutoCaptureUSBDevices()
8251{
8252 LogFlowThisFunc (("\n"));
8253
8254 AutoCaller autoCaller (this);
8255 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8256
8257 HRESULT rc = mUSBController->notifyProxy (true /* aInsertFilters */);
8258 AssertComRC (rc);
8259 NOREF (rc);
8260
8261 return mParent->host()->autoCaptureUSBDevices (this);
8262}
8263
8264/**
8265 * Removes all machine filters from the USB proxy service and then calls
8266 * Host::detachAllUSBDevices().
8267 *
8268 * Called by Console from the VM process upon normal VM termination or by
8269 * SessionMachine::uninit() upon abnormal VM termination (from under the
8270 * Machine/SessionMachine lock).
8271 *
8272 * @note Locks what called methods lock.
8273 */
8274STDMETHODIMP SessionMachine::DetachAllUSBDevices(BOOL aDone)
8275{
8276 LogFlowThisFunc (("\n"));
8277
8278 AutoCaller autoCaller (this);
8279 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8280
8281 HRESULT rc = mUSBController->notifyProxy (false /* aInsertFilters */);
8282 AssertComRC (rc);
8283 NOREF (rc);
8284
8285 return mParent->host()->detachAllUSBDevices (this, aDone);
8286}
8287
8288/**
8289 * @note Locks mParent + this object for writing.
8290 */
8291STDMETHODIMP SessionMachine::OnSessionEnd (ISession *aSession,
8292 IProgress **aProgress)
8293{
8294 LogFlowThisFuncEnter();
8295
8296 AssertReturn (aSession, E_INVALIDARG);
8297 AssertReturn (aProgress, E_INVALIDARG);
8298
8299 AutoCaller autoCaller (this);
8300
8301 LogFlowThisFunc (("state=%d\n", autoCaller.state()));
8302 /*
8303 * We don't assert below because it might happen that a non-direct session
8304 * informs us it is closed right after we've been uninitialized -- it's ok.
8305 */
8306 CheckComRCReturnRC (autoCaller.rc());
8307
8308 /* get IInternalSessionControl interface */
8309 ComPtr <IInternalSessionControl> control (aSession);
8310
8311 ComAssertRet (!control.isNull(), E_INVALIDARG);
8312
8313 /* Progress::init() needs mParent lock */
8314 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8315
8316 if (control.equalsTo (mData->mSession.mDirectControl))
8317 {
8318 ComAssertRet (aProgress, E_POINTER);
8319
8320 /* The direct session is being normally closed by the client process
8321 * ----------------------------------------------------------------- */
8322
8323 /* go to the closing state (essential for all open*Session() calls and
8324 * for #checkForDeath()) */
8325 Assert (mData->mSession.mState == SessionState_SessionOpen);
8326 mData->mSession.mState = SessionState_SessionClosing;
8327
8328 /* set direct control to NULL to release the remote instance */
8329 mData->mSession.mDirectControl.setNull();
8330 LogFlowThisFunc (("Direct control is set to NULL\n"));
8331
8332 /*
8333 * Create the progress object the client will use to wait until
8334 * #checkForDeath() is called to uninitialize this session object
8335 * after it releases the IPC semaphore.
8336 */
8337 ComObjPtr <Progress> progress;
8338 progress.createObject();
8339 progress->init (mParent, (IMachine *) mPeer, Bstr (tr ("Closing session")),
8340 FALSE /* aCancelable */);
8341 progress.queryInterfaceTo (aProgress);
8342 mData->mSession.mProgress = progress;
8343 }
8344 else
8345 {
8346 /* the remote session is being normally closed */
8347 Data::Session::RemoteControlList::iterator it =
8348 mData->mSession.mRemoteControls.begin();
8349 while (it != mData->mSession.mRemoteControls.end())
8350 {
8351 if (control.equalsTo (*it))
8352 break;
8353 ++it;
8354 }
8355 BOOL found = it != mData->mSession.mRemoteControls.end();
8356 ComAssertMsgRet (found, ("The session is not found in the session list!"),
8357 E_INVALIDARG);
8358 mData->mSession.mRemoteControls.remove (*it);
8359 }
8360
8361 LogFlowThisFuncLeave();
8362 return S_OK;
8363}
8364
8365/**
8366 * @note Locks mParent + this object for writing.
8367 */
8368STDMETHODIMP SessionMachine::BeginSavingState (IProgress *aProgress, BSTR *aStateFilePath)
8369{
8370 LogFlowThisFuncEnter();
8371
8372 AssertReturn (aProgress, E_INVALIDARG);
8373 AssertReturn (aStateFilePath, E_POINTER);
8374
8375 AutoCaller autoCaller (this);
8376 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8377
8378 /* mParent->addProgress() needs mParent lock */
8379 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8380
8381 AssertReturn (mData->mMachineState == MachineState_Paused &&
8382 mSnapshotData.mLastState == MachineState_InvalidMachineState &&
8383 mSnapshotData.mProgressId.isEmpty() &&
8384 mSnapshotData.mStateFilePath.isNull(),
8385 E_FAIL);
8386
8387 /* memorize the progress ID and add it to the global collection */
8388 Guid progressId;
8389 HRESULT rc = aProgress->COMGETTER(Id) (progressId.asOutParam());
8390 AssertComRCReturn (rc, rc);
8391 rc = mParent->addProgress (aProgress);
8392 AssertComRCReturn (rc, rc);
8393
8394 Bstr stateFilePath;
8395 /* stateFilePath is null when the machine is not running */
8396 if (mData->mMachineState == MachineState_Paused)
8397 {
8398 stateFilePath = Utf8StrFmt ("%ls%c{%Vuuid}.sav",
8399 mUserData->mSnapshotFolderFull.raw(),
8400 RTPATH_DELIMITER, mData->mUuid.raw());
8401 }
8402
8403 /* fill in the snapshot data */
8404 mSnapshotData.mLastState = mData->mMachineState;
8405 mSnapshotData.mProgressId = progressId;
8406 mSnapshotData.mStateFilePath = stateFilePath;
8407
8408 /* set the state to Saving (this is expected by Console::SaveState()) */
8409 setMachineState (MachineState_Saving);
8410
8411 stateFilePath.cloneTo (aStateFilePath);
8412
8413 return S_OK;
8414}
8415
8416/**
8417 * @note Locks mParent + this objects for writing.
8418 */
8419STDMETHODIMP SessionMachine::EndSavingState (BOOL aSuccess)
8420{
8421 LogFlowThisFunc (("\n"));
8422
8423 AutoCaller autoCaller (this);
8424 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8425
8426 /* endSavingState() need mParent lock */
8427 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8428
8429 AssertReturn (mData->mMachineState == MachineState_Saving &&
8430 mSnapshotData.mLastState != MachineState_InvalidMachineState &&
8431 !mSnapshotData.mProgressId.isEmpty() &&
8432 !mSnapshotData.mStateFilePath.isNull(),
8433 E_FAIL);
8434
8435 /*
8436 * on success, set the state to Saved;
8437 * on failure, set the state to the state we had when BeginSavingState() was
8438 * called (this is expected by Console::SaveState() and
8439 * Console::saveStateThread())
8440 */
8441 if (aSuccess)
8442 setMachineState (MachineState_Saved);
8443 else
8444 setMachineState (mSnapshotData.mLastState);
8445
8446 return endSavingState (aSuccess);
8447}
8448
8449/**
8450 * @note Locks mParent + this objects for writing.
8451 */
8452STDMETHODIMP SessionMachine::BeginTakingSnapshot (
8453 IConsole *aInitiator, INPTR BSTR aName, INPTR BSTR aDescription,
8454 IProgress *aProgress, BSTR *aStateFilePath,
8455 IProgress **aServerProgress)
8456{
8457 LogFlowThisFuncEnter();
8458
8459 AssertReturn (aInitiator && aName, E_INVALIDARG);
8460 AssertReturn (aStateFilePath && aServerProgress, E_POINTER);
8461
8462 LogFlowThisFunc (("aName='%ls'\n", aName));
8463
8464 AutoCaller autoCaller (this);
8465 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8466
8467 /* Progress::init() needs mParent lock */
8468 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8469
8470 AssertReturn ((mData->mMachineState < MachineState_Running ||
8471 mData->mMachineState == MachineState_Paused) &&
8472 mSnapshotData.mLastState == MachineState_InvalidMachineState &&
8473 mSnapshotData.mSnapshot.isNull() &&
8474 mSnapshotData.mServerProgress.isNull() &&
8475 mSnapshotData.mCombinedProgress.isNull(),
8476 E_FAIL);
8477
8478 bool takingSnapshotOnline = mData->mMachineState == MachineState_Paused;
8479
8480 if (!takingSnapshotOnline && mData->mMachineState != MachineState_Saved)
8481 {
8482 /*
8483 * save all current settings to ensure current changes are committed
8484 * and hard disks are fixed up
8485 */
8486 HRESULT rc = saveSettings();
8487 CheckComRCReturnRC (rc);
8488 }
8489
8490 /* check that there are no Writethrough hard disks attached */
8491 for (HDData::HDAttachmentList::const_iterator
8492 it = mHDData->mHDAttachments.begin();
8493 it != mHDData->mHDAttachments.end();
8494 ++ it)
8495 {
8496 ComObjPtr <HardDisk> hd = (*it)->hardDisk();
8497 AutoLock hdLock (hd);
8498 if (hd->type() == HardDiskType_WritethroughHardDisk)
8499 return setError (E_FAIL,
8500 tr ("Cannot take a snapshot when there is a Writethrough hard "
8501 " disk attached ('%ls')"), hd->toString().raw());
8502 }
8503
8504 AssertReturn (aProgress || !takingSnapshotOnline, E_FAIL);
8505
8506 /* create an ID for the snapshot */
8507 Guid snapshotId;
8508 snapshotId.create();
8509
8510 Bstr stateFilePath;
8511 /* stateFilePath is null when the machine is not online nor saved */
8512 if (takingSnapshotOnline || mData->mMachineState == MachineState_Saved)
8513 stateFilePath = Utf8StrFmt ("%ls%c{%Vuuid}.sav",
8514 mUserData->mSnapshotFolderFull.raw(),
8515 RTPATH_DELIMITER,
8516 snapshotId.ptr());
8517
8518 /* ensure the directory for the saved state file exists */
8519 if (stateFilePath)
8520 {
8521 Utf8Str dir = stateFilePath;
8522 RTPathStripFilename (dir.mutableRaw());
8523 if (!RTDirExists (dir))
8524 {
8525 int vrc = RTDirCreateFullPath (dir, 0777);
8526 if (VBOX_FAILURE (vrc))
8527 return setError (E_FAIL,
8528 tr ("Could not create a directory '%s' to save the "
8529 "VM state to (%Vrc)"),
8530 dir.raw(), vrc);
8531 }
8532 }
8533
8534 /* create a snapshot machine object */
8535 ComObjPtr <SnapshotMachine> snapshotMachine;
8536 snapshotMachine.createObject();
8537 HRESULT rc = snapshotMachine->init (this, snapshotId, stateFilePath);
8538 AssertComRCReturn (rc, rc);
8539
8540 Bstr progressDesc = Bstr (tr ("Taking snapshot of virtual machine"));
8541 Bstr firstOpDesc = Bstr (tr ("Preparing to take snapshot"));
8542
8543 /*
8544 * create a server-side progress object (it will be descriptionless
8545 * when we need to combine it with the VM-side progress, i.e. when we're
8546 * taking a snapshot online). The number of operations is:
8547 * 1 (preparing) + # of VDIs + 1 (if the state is saved so we need to copy it)
8548 */
8549 ComObjPtr <Progress> serverProgress;
8550 {
8551 ULONG opCount = 1 + mHDData->mHDAttachments.size();
8552 if (mData->mMachineState == MachineState_Saved)
8553 opCount ++;
8554 serverProgress.createObject();
8555 if (takingSnapshotOnline)
8556 rc = serverProgress->init (FALSE, opCount, firstOpDesc);
8557 else
8558 rc = serverProgress->init (mParent, aInitiator, progressDesc, FALSE,
8559 opCount, firstOpDesc);
8560 AssertComRCReturn (rc, rc);
8561 }
8562
8563 /* create a combined server-side progress object when necessary */
8564 ComObjPtr <CombinedProgress> combinedProgress;
8565 if (takingSnapshotOnline)
8566 {
8567 combinedProgress.createObject();
8568 rc = combinedProgress->init (mParent, aInitiator, progressDesc,
8569 serverProgress, aProgress);
8570 AssertComRCReturn (rc, rc);
8571 }
8572
8573 /* create a snapshot object */
8574 RTTIMESPEC time;
8575 ComObjPtr <Snapshot> snapshot;
8576 snapshot.createObject();
8577 rc = snapshot->init (snapshotId, aName, aDescription,
8578 RTTimeSpecGetMilli (RTTimeNow (&time)),
8579 snapshotMachine, mData->mCurrentSnapshot);
8580 AssertComRCReturn (rc, rc);
8581
8582 /*
8583 * create and start the task on a separate thread
8584 * (note that it will not start working until we release alock)
8585 */
8586 TakeSnapshotTask *task = new TakeSnapshotTask (this);
8587 int vrc = RTThreadCreate (NULL, taskHandler,
8588 (void *) task,
8589 0, RTTHREADTYPE_MAIN_WORKER, 0, "TakeSnapshot");
8590 if (VBOX_FAILURE (vrc))
8591 {
8592 snapshot->uninit();
8593 delete task;
8594 ComAssertFailedRet (E_FAIL);
8595 }
8596
8597 /* fill in the snapshot data */
8598 mSnapshotData.mLastState = mData->mMachineState;
8599 mSnapshotData.mSnapshot = snapshot;
8600 mSnapshotData.mServerProgress = serverProgress;
8601 mSnapshotData.mCombinedProgress = combinedProgress;
8602
8603 /* set the state to Saving (this is expected by Console::TakeSnapshot()) */
8604 setMachineState (MachineState_Saving);
8605
8606 if (takingSnapshotOnline)
8607 stateFilePath.cloneTo (aStateFilePath);
8608 else
8609 *aStateFilePath = NULL;
8610
8611 serverProgress.queryInterfaceTo (aServerProgress);
8612
8613 LogFlowThisFuncLeave();
8614 return S_OK;
8615}
8616
8617/**
8618 * @note Locks mParent + this objects for writing.
8619 */
8620STDMETHODIMP SessionMachine::EndTakingSnapshot (BOOL aSuccess)
8621{
8622 LogFlowThisFunc (("\n"));
8623
8624 AutoCaller autoCaller (this);
8625 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8626
8627 /* Lock mParent because of endTakingSnapshot() */
8628 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8629
8630 AssertReturn (!aSuccess ||
8631 (mData->mMachineState == MachineState_Saving &&
8632 mSnapshotData.mLastState != MachineState_InvalidMachineState &&
8633 !mSnapshotData.mSnapshot.isNull() &&
8634 !mSnapshotData.mServerProgress.isNull() &&
8635 !mSnapshotData.mCombinedProgress.isNull()),
8636 E_FAIL);
8637
8638 /*
8639 * set the state to the state we had when BeginTakingSnapshot() was called
8640 * (this is expected by Console::TakeSnapshot() and
8641 * Console::saveStateThread())
8642 */
8643 setMachineState (mSnapshotData.mLastState);
8644
8645 return endTakingSnapshot (aSuccess);
8646}
8647
8648/**
8649 * @note Locks mParent + this + children objects for writing!
8650 */
8651STDMETHODIMP SessionMachine::DiscardSnapshot (
8652 IConsole *aInitiator, INPTR GUIDPARAM aId,
8653 MachineState_T *aMachineState, IProgress **aProgress)
8654{
8655 LogFlowThisFunc (("\n"));
8656
8657 Guid id = aId;
8658 AssertReturn (aInitiator && !id.isEmpty(), E_INVALIDARG);
8659 AssertReturn (aMachineState && aProgress, E_POINTER);
8660
8661 AutoCaller autoCaller (this);
8662 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8663
8664 /* Progress::init() needs mParent lock */
8665 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8666
8667 ComAssertRet (mData->mMachineState < MachineState_Running, E_FAIL);
8668
8669 ComObjPtr <Snapshot> snapshot;
8670 HRESULT rc = findSnapshot (id, snapshot, true /* aSetError */);
8671 CheckComRCReturnRC (rc);
8672
8673 AutoLock snapshotLock (snapshot);
8674 if (snapshot == mData->mFirstSnapshot)
8675 {
8676 AutoLock chLock (mData->mFirstSnapshot->childrenLock());
8677 size_t childrenCount = mData->mFirstSnapshot->children().size();
8678 if (childrenCount > 1)
8679 return setError (E_FAIL,
8680 tr ("Cannot discard the snapshot '%ls' because it is the first "
8681 "snapshot of the machine '%ls' and it has more than one "
8682 "child snapshot (%d)"),
8683 snapshot->data().mName.raw(), mUserData->mName.raw(),
8684 childrenCount);
8685 }
8686
8687 /*
8688 * If the snapshot being discarded is the current one, ensure current
8689 * settings are committed and saved.
8690 */
8691 if (snapshot == mData->mCurrentSnapshot)
8692 {
8693 if (isModified())
8694 {
8695 rc = saveSettings();
8696 CheckComRCReturnRC (rc);
8697 }
8698 }
8699
8700 /*
8701 * create a progress object. The number of operations is:
8702 * 1 (preparing) + # of VDIs
8703 */
8704 ComObjPtr <Progress> progress;
8705 progress.createObject();
8706 rc = progress->init (mParent, aInitiator,
8707 Bstr (Utf8StrFmt (tr ("Discarding snapshot '%ls'"),
8708 snapshot->data().mName.raw())),
8709 FALSE /* aCancelable */,
8710 1 + snapshot->data().mMachine->mHDData->mHDAttachments.size(),
8711 Bstr (tr ("Preparing to discard snapshot")));
8712 AssertComRCReturn (rc, rc);
8713
8714 /* create and start the task on a separate thread */
8715 DiscardSnapshotTask *task = new DiscardSnapshotTask (this, progress, snapshot);
8716 int vrc = RTThreadCreate (NULL, taskHandler,
8717 (void *) task,
8718 0, RTTHREADTYPE_MAIN_WORKER, 0, "DiscardSnapshot");
8719 if (VBOX_FAILURE (vrc))
8720 delete task;
8721 ComAssertRCRet (vrc, E_FAIL);
8722
8723 /* set the proper machine state (note: after creating a Task instance) */
8724 setMachineState (MachineState_Discarding);
8725
8726 /* return the progress to the caller */
8727 progress.queryInterfaceTo (aProgress);
8728
8729 /* return the new state to the caller */
8730 *aMachineState = mData->mMachineState;
8731
8732 return S_OK;
8733}
8734
8735/**
8736 * @note Locks mParent + this + children objects for writing!
8737 */
8738STDMETHODIMP SessionMachine::DiscardCurrentState (
8739 IConsole *aInitiator, MachineState_T *aMachineState, IProgress **aProgress)
8740{
8741 LogFlowThisFunc (("\n"));
8742
8743 AssertReturn (aInitiator, E_INVALIDARG);
8744 AssertReturn (aMachineState && aProgress, E_POINTER);
8745
8746 AutoCaller autoCaller (this);
8747 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8748
8749 /* Progress::init() needs mParent lock */
8750 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8751
8752 ComAssertRet (mData->mMachineState < MachineState_Running, E_FAIL);
8753
8754 if (mData->mCurrentSnapshot.isNull())
8755 return setError (E_FAIL,
8756 tr ("Could not discard the current state of the machine '%ls' "
8757 "because it doesn't have any snapshots"),
8758 mUserData->mName.raw());
8759
8760 /*
8761 * create a progress object. The number of operations is:
8762 * 1 (preparing) + # of VDIs + 1 (if we need to copy the saved state file)
8763 */
8764 ComObjPtr <Progress> progress;
8765 progress.createObject();
8766 {
8767 ULONG opCount = 1 + mData->mCurrentSnapshot->data()
8768 .mMachine->mHDData->mHDAttachments.size();
8769 if (mData->mCurrentSnapshot->stateFilePath())
8770 ++ opCount;
8771 progress->init (mParent, aInitiator,
8772 Bstr (tr ("Discarding current machine state")),
8773 FALSE /* aCancelable */, opCount,
8774 Bstr (tr ("Preparing to discard current state")));
8775 }
8776
8777 /* create and start the task on a separate thread */
8778 DiscardCurrentStateTask *task =
8779 new DiscardCurrentStateTask (this, progress, false /* discardCurSnapshot */);
8780 int vrc = RTThreadCreate (NULL, taskHandler,
8781 (void *) task,
8782 0, RTTHREADTYPE_MAIN_WORKER, 0, "DiscardCurState");
8783 if (VBOX_FAILURE (vrc))
8784 delete task;
8785 ComAssertRCRet (vrc, E_FAIL);
8786
8787 /* set the proper machine state (note: after creating a Task instance) */
8788 setMachineState (MachineState_Discarding);
8789
8790 /* return the progress to the caller */
8791 progress.queryInterfaceTo (aProgress);
8792
8793 /* return the new state to the caller */
8794 *aMachineState = mData->mMachineState;
8795
8796 return S_OK;
8797}
8798
8799/**
8800 * @note Locks mParent + other objects for writing!
8801 */
8802STDMETHODIMP SessionMachine::DiscardCurrentSnapshotAndState (
8803 IConsole *aInitiator, MachineState_T *aMachineState, IProgress **aProgress)
8804{
8805 LogFlowThisFunc (("\n"));
8806
8807 AssertReturn (aInitiator, E_INVALIDARG);
8808 AssertReturn (aMachineState && aProgress, E_POINTER);
8809
8810 AutoCaller autoCaller (this);
8811 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8812
8813 /* Progress::init() needs mParent lock */
8814 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
8815
8816 ComAssertRet (mData->mMachineState < MachineState_Running, E_FAIL);
8817
8818 if (mData->mCurrentSnapshot.isNull())
8819 return setError (E_FAIL,
8820 tr ("Could not discard the current state of the machine '%ls' "
8821 "because it doesn't have any snapshots"),
8822 mUserData->mName.raw());
8823
8824 /*
8825 * create a progress object. The number of operations is:
8826 * 1 (preparing) + # of VDIs in the current snapshot +
8827 * # of VDIs in the previous snapshot +
8828 * 1 (if we need to copy the saved state file of the previous snapshot)
8829 * or (if there is no previous snapshot):
8830 * 1 (preparing) + # of VDIs in the current snapshot * 2 +
8831 * 1 (if we need to copy the saved state file of the current snapshot)
8832 */
8833 ComObjPtr <Progress> progress;
8834 progress.createObject();
8835 {
8836 ComObjPtr <Snapshot> curSnapshot = mData->mCurrentSnapshot;
8837 ComObjPtr <Snapshot> prevSnapshot = mData->mCurrentSnapshot->parent();
8838
8839 ULONG opCount = 1;
8840 if (prevSnapshot)
8841 {
8842 opCount += curSnapshot->data().mMachine->mHDData->mHDAttachments.size();
8843 opCount += prevSnapshot->data().mMachine->mHDData->mHDAttachments.size();
8844 if (prevSnapshot->stateFilePath())
8845 ++ opCount;
8846 }
8847 else
8848 {
8849 opCount += curSnapshot->data().mMachine->mHDData->mHDAttachments.size() * 2;
8850 if (curSnapshot->stateFilePath())
8851 ++ opCount;
8852 }
8853
8854 progress->init (mParent, aInitiator,
8855 Bstr (tr ("Discarding current machine snapshot and state")),
8856 FALSE /* aCancelable */, opCount,
8857 Bstr (tr ("Preparing to discard current snapshot and state")));
8858 }
8859
8860 /* create and start the task on a separate thread */
8861 DiscardCurrentStateTask *task =
8862 new DiscardCurrentStateTask (this, progress, true /* discardCurSnapshot */);
8863 int vrc = RTThreadCreate (NULL, taskHandler,
8864 (void *) task,
8865 0, RTTHREADTYPE_MAIN_WORKER, 0, "DiscardCurState");
8866 if (VBOX_FAILURE (vrc))
8867 delete task;
8868 ComAssertRCRet (vrc, E_FAIL);
8869
8870 /* set the proper machine state (note: after creating a Task instance) */
8871 setMachineState (MachineState_Discarding);
8872
8873 /* return the progress to the caller */
8874 progress.queryInterfaceTo (aProgress);
8875
8876 /* return the new state to the caller */
8877 *aMachineState = mData->mMachineState;
8878
8879 return S_OK;
8880}
8881
8882// public methods only for internal purposes
8883/////////////////////////////////////////////////////////////////////////////
8884
8885/**
8886 * Called from the client watcher thread to check for unexpected client
8887 * process death.
8888 *
8889 * @note On Win32 and on OS/2, this method is called only when we've got the
8890 * mutex (i.e. the client has either died or terminated normally). This
8891 * method always returns true.
8892 *
8893 * @note On Linux, the method returns true if the client process has
8894 * terminated abnormally (and/or the session has been uninitialized) and
8895 * false if it is still alive.
8896 *
8897 * @note Locks this object for writing.
8898 */
8899bool SessionMachine::checkForDeath()
8900{
8901 Uninit::Reason reason;
8902 bool doUninit = false;
8903 bool ret = false;
8904
8905 /*
8906 * Enclose autoCaller with a block because calling uninit()
8907 * from under it will deadlock.
8908 */
8909 {
8910 AutoCaller autoCaller (this);
8911 if (!autoCaller.isOk())
8912 {
8913 /*
8914 * return true if not ready, to cause the client watcher to exclude
8915 * the corresponding session from watching
8916 */
8917 LogFlowThisFunc (("Already uninitialized!"));
8918 return true;
8919 }
8920
8921 AutoLock alock (this);
8922
8923 /*
8924 * Determine the reason of death: if the session state is Closing here,
8925 * everything is fine. Otherwise it means that the client did not call
8926 * OnSessionEnd() before it released the IPC semaphore.
8927 * This may happen either because the client process has abnormally
8928 * terminated, or because it simply forgot to call ISession::Close()
8929 * before exiting. We threat the latter also as an abnormal termination
8930 * (see Session::uninit() for details).
8931 */
8932 reason = mData->mSession.mState == SessionState_SessionClosing ?
8933 Uninit::Normal :
8934 Uninit::Abnormal;
8935
8936#if defined(RT_OS_WINDOWS)
8937
8938 AssertMsg (mIPCSem, ("semaphore must be created"));
8939
8940 /* release the IPC mutex */
8941 ::ReleaseMutex (mIPCSem);
8942
8943 doUninit = true;
8944
8945 ret = true;
8946
8947#elif defined(RT_OS_OS2)
8948
8949 AssertMsg (mIPCSem, ("semaphore must be created"));
8950
8951 /* release the IPC mutex */
8952 ::DosReleaseMutexSem (mIPCSem);
8953
8954 doUninit = true;
8955
8956 ret = true;
8957
8958#elif defined(VBOX_WITH_SYS_V_IPC_SESSION_WATCHER)
8959
8960 AssertMsg (mIPCSem >= 0, ("semaphore must be created"));
8961
8962 int val = ::semctl (mIPCSem, 0, GETVAL);
8963 if (val > 0)
8964 {
8965 /* the semaphore is signaled, meaning the session is terminated */
8966 doUninit = true;
8967 }
8968
8969 ret = val > 0;
8970
8971#else
8972# error "Port me!"
8973#endif
8974
8975 } /* AutoCaller block */
8976
8977 if (doUninit)
8978 uninit (reason);
8979
8980 return ret;
8981}
8982
8983/**
8984 * @note Locks this object for reading.
8985 */
8986HRESULT SessionMachine::onDVDDriveChange()
8987{
8988 LogFlowThisFunc (("\n"));
8989
8990 AutoCaller autoCaller (this);
8991 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
8992
8993 ComPtr <IInternalSessionControl> directControl;
8994 {
8995 AutoReaderLock alock (this);
8996 directControl = mData->mSession.mDirectControl;
8997 }
8998
8999 /* ignore notifications sent after #OnSessionEnd() is called */
9000 if (!directControl)
9001 return S_OK;
9002
9003 return directControl->OnDVDDriveChange();
9004}
9005
9006/**
9007 * @note Locks this object for reading.
9008 */
9009HRESULT SessionMachine::onFloppyDriveChange()
9010{
9011 LogFlowThisFunc (("\n"));
9012
9013 AutoCaller autoCaller (this);
9014 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9015
9016 ComPtr <IInternalSessionControl> directControl;
9017 {
9018 AutoReaderLock alock (this);
9019 directControl = mData->mSession.mDirectControl;
9020 }
9021
9022 /* ignore notifications sent after #OnSessionEnd() is called */
9023 if (!directControl)
9024 return S_OK;
9025
9026 return directControl->OnFloppyDriveChange();
9027}
9028
9029/**
9030 * @note Locks this object for reading.
9031 */
9032HRESULT SessionMachine::onNetworkAdapterChange(INetworkAdapter *networkAdapter)
9033{
9034 LogFlowThisFunc (("\n"));
9035
9036 AutoCaller autoCaller (this);
9037 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9038
9039 ComPtr <IInternalSessionControl> directControl;
9040 {
9041 AutoReaderLock alock (this);
9042 directControl = mData->mSession.mDirectControl;
9043 }
9044
9045 /* ignore notifications sent after #OnSessionEnd() is called */
9046 if (!directControl)
9047 return S_OK;
9048
9049 return directControl->OnNetworkAdapterChange(networkAdapter);
9050}
9051
9052/**
9053 * @note Locks this object for reading.
9054 */
9055HRESULT SessionMachine::onSerialPortChange(ISerialPort *serialPort)
9056{
9057 LogFlowThisFunc (("\n"));
9058
9059 AutoCaller autoCaller (this);
9060 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9061
9062 ComPtr <IInternalSessionControl> directControl;
9063 {
9064 AutoReaderLock alock (this);
9065 directControl = mData->mSession.mDirectControl;
9066 }
9067
9068 /* ignore notifications sent after #OnSessionEnd() is called */
9069 if (!directControl)
9070 return S_OK;
9071
9072 return directControl->OnSerialPortChange(serialPort);
9073}
9074
9075/**
9076 * @note Locks this object for reading.
9077 */
9078HRESULT SessionMachine::onParallelPortChange(IParallelPort *parallelPort)
9079{
9080 LogFlowThisFunc (("\n"));
9081
9082 AutoCaller autoCaller (this);
9083 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9084
9085 ComPtr <IInternalSessionControl> directControl;
9086 {
9087 AutoReaderLock alock (this);
9088 directControl = mData->mSession.mDirectControl;
9089 }
9090
9091 /* ignore notifications sent after #OnSessionEnd() is called */
9092 if (!directControl)
9093 return S_OK;
9094
9095 return directControl->OnParallelPortChange(parallelPort);
9096}
9097
9098/**
9099 * @note Locks this object for reading.
9100 */
9101HRESULT SessionMachine::onVRDPServerChange()
9102{
9103 LogFlowThisFunc (("\n"));
9104
9105 AutoCaller autoCaller (this);
9106 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9107
9108 ComPtr <IInternalSessionControl> directControl;
9109 {
9110 AutoReaderLock alock (this);
9111 directControl = mData->mSession.mDirectControl;
9112 }
9113
9114 /* ignore notifications sent after #OnSessionEnd() is called */
9115 if (!directControl)
9116 return S_OK;
9117
9118 return directControl->OnVRDPServerChange();
9119}
9120
9121/**
9122 * @note Locks this object for reading.
9123 */
9124HRESULT SessionMachine::onUSBControllerChange()
9125{
9126 LogFlowThisFunc (("\n"));
9127
9128 AutoCaller autoCaller (this);
9129 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9130
9131 ComPtr <IInternalSessionControl> directControl;
9132 {
9133 AutoReaderLock alock (this);
9134 directControl = mData->mSession.mDirectControl;
9135 }
9136
9137 /* ignore notifications sent after #OnSessionEnd() is called */
9138 if (!directControl)
9139 return S_OK;
9140
9141 return directControl->OnUSBControllerChange();
9142}
9143
9144/**
9145 * @note Locks this object for reading.
9146 */
9147HRESULT SessionMachine::onSharedFolderChange()
9148{
9149 LogFlowThisFunc (("\n"));
9150
9151 AutoCaller autoCaller (this);
9152 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9153
9154 ComPtr <IInternalSessionControl> directControl;
9155 {
9156 AutoReaderLock alock (this);
9157 directControl = mData->mSession.mDirectControl;
9158 }
9159
9160 /* ignore notifications sent after #OnSessionEnd() is called */
9161 if (!directControl)
9162 return S_OK;
9163
9164 return directControl->OnSharedFolderChange (FALSE /* aGlobal */);
9165}
9166
9167/**
9168 * @note Locks this object for reading.
9169 */
9170HRESULT SessionMachine::onUSBDeviceAttach (IUSBDevice *aDevice,
9171 IVirtualBoxErrorInfo *aError)
9172{
9173 LogFlowThisFunc (("\n"));
9174
9175 AutoCaller autoCaller (this);
9176
9177 /* This notification may happen after the machine object has been
9178 * uninitialized (the session was closed), so don't assert. */
9179 CheckComRCReturnRC (autoCaller.rc());
9180
9181 ComPtr <IInternalSessionControl> directControl;
9182 {
9183 AutoReaderLock alock (this);
9184 directControl = mData->mSession.mDirectControl;
9185 }
9186
9187 /* fail on notifications sent after #OnSessionEnd() is called, it is
9188 * expected by the caller */
9189 if (!directControl)
9190 return E_FAIL;
9191
9192 return directControl->OnUSBDeviceAttach (aDevice, aError);
9193}
9194
9195/**
9196 * @note Locks this object for reading.
9197 */
9198HRESULT SessionMachine::onUSBDeviceDetach (INPTR GUIDPARAM aId,
9199 IVirtualBoxErrorInfo *aError)
9200{
9201 LogFlowThisFunc (("\n"));
9202
9203 AutoCaller autoCaller (this);
9204
9205 /* This notification may happen after the machine object has been
9206 * uninitialized (the session was closed), so don't assert. */
9207 CheckComRCReturnRC (autoCaller.rc());
9208
9209 ComPtr <IInternalSessionControl> directControl;
9210 {
9211 AutoReaderLock alock (this);
9212 directControl = mData->mSession.mDirectControl;
9213 }
9214
9215 /* fail on notifications sent after #OnSessionEnd() is called, it is
9216 * expected by the caller */
9217 if (!directControl)
9218 return E_FAIL;
9219
9220 return directControl->OnUSBDeviceDetach (aId, aError);
9221}
9222
9223// protected methods
9224/////////////////////////////////////////////////////////////////////////////
9225
9226/**
9227 * Helper method to finalize saving the state.
9228 *
9229 * @note Must be called from under this object's lock.
9230 *
9231 * @param aSuccess TRUE if the snapshot has been taken successfully
9232 *
9233 * @note Locks mParent + this objects for writing.
9234 */
9235HRESULT SessionMachine::endSavingState (BOOL aSuccess)
9236{
9237 LogFlowThisFuncEnter();
9238
9239 AutoCaller autoCaller (this);
9240 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9241
9242 /* mParent->removeProgress() needs mParent lock */
9243 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
9244
9245 HRESULT rc = S_OK;
9246
9247 if (aSuccess)
9248 {
9249 mSSData->mStateFilePath = mSnapshotData.mStateFilePath;
9250
9251 /* save all VM settings */
9252 rc = saveSettings();
9253 }
9254 else
9255 {
9256 /* delete the saved state file (it might have been already created) */
9257 RTFileDelete (Utf8Str (mSnapshotData.mStateFilePath));
9258 }
9259
9260 /* remove the completed progress object */
9261 mParent->removeProgress (mSnapshotData.mProgressId);
9262
9263 /* clear out the temporary saved state data */
9264 mSnapshotData.mLastState = MachineState_InvalidMachineState;
9265 mSnapshotData.mProgressId.clear();
9266 mSnapshotData.mStateFilePath.setNull();
9267
9268 LogFlowThisFuncLeave();
9269 return rc;
9270}
9271
9272/**
9273 * Helper method to finalize taking a snapshot.
9274 * Gets called only from #EndTakingSnapshot() that is expected to
9275 * be called by the VM process when it finishes *all* the tasks related to
9276 * taking a snapshot, either scucessfully or unsuccessfilly.
9277 *
9278 * @param aSuccess TRUE if the snapshot has been taken successfully
9279 *
9280 * @note Locks mParent + this objects for writing.
9281 */
9282HRESULT SessionMachine::endTakingSnapshot (BOOL aSuccess)
9283{
9284 LogFlowThisFuncEnter();
9285
9286 AutoCaller autoCaller (this);
9287 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
9288
9289 /* Progress object uninitialization needs mParent lock */
9290 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
9291
9292 HRESULT rc = S_OK;
9293
9294 if (aSuccess)
9295 {
9296 /* the server progress must be completed on success */
9297 Assert (mSnapshotData.mServerProgress->completed());
9298
9299 mData->mCurrentSnapshot = mSnapshotData.mSnapshot;
9300 /* memorize the first snapshot if necessary */
9301 if (!mData->mFirstSnapshot)
9302 mData->mFirstSnapshot = mData->mCurrentSnapshot;
9303
9304 int opFlags = SaveSS_AddOp | SaveSS_UpdateCurrentId;
9305 if (mSnapshotData.mLastState != MachineState_Paused && !isModified())
9306 {
9307 /*
9308 * the machine was powered off or saved when taking a snapshot,
9309 * so reset the mCurrentStateModified flag
9310 */
9311 mData->mCurrentStateModified = FALSE;
9312 opFlags |= SaveSS_UpdateCurStateModified;
9313 }
9314
9315 rc = saveSnapshotSettings (mSnapshotData.mSnapshot, opFlags);
9316 }
9317
9318 if (!aSuccess || FAILED (rc))
9319 {
9320 if (mSnapshotData.mSnapshot)
9321 {
9322 /* wait for the completion of the server progress (diff VDI creation) */
9323 /// @todo (dmik) later, we will definitely want to cancel it instead
9324 // (when the cancel function is implemented)
9325 mSnapshotData.mServerProgress->WaitForCompletion (-1);
9326
9327 /*
9328 * delete all differencing VDIs created
9329 * (this will attach their parents back)
9330 */
9331 rc = deleteSnapshotDiffs (mSnapshotData.mSnapshot);
9332 /* continue cleanup on error */
9333
9334 /* delete the saved state file (it might have been already created) */
9335 if (mSnapshotData.mSnapshot->stateFilePath())
9336 RTFileDelete (Utf8Str (mSnapshotData.mSnapshot->stateFilePath()));
9337
9338 mSnapshotData.mSnapshot->uninit();
9339 }
9340 }
9341
9342 /* inform callbacks */
9343 if (aSuccess && SUCCEEDED (rc))
9344 mParent->onSnapshotTaken (mData->mUuid, mSnapshotData.mSnapshot->data().mId);
9345
9346 /* clear out the snapshot data */
9347 mSnapshotData.mLastState = MachineState_InvalidMachineState;
9348 mSnapshotData.mSnapshot.setNull();
9349 mSnapshotData.mServerProgress.setNull();
9350 /* uninitialize the combined progress (to remove it from the VBox collection) */
9351 if (!mSnapshotData.mCombinedProgress.isNull())
9352 {
9353 mSnapshotData.mCombinedProgress->uninit();
9354 mSnapshotData.mCombinedProgress.setNull();
9355 }
9356
9357 LogFlowThisFuncLeave();
9358 return rc;
9359}
9360
9361/**
9362 * Take snapshot task handler.
9363 * Must be called only by TakeSnapshotTask::handler()!
9364 *
9365 * The sole purpose of this task is to asynchronously create differencing VDIs
9366 * and copy the saved state file (when necessary). The VM process will wait
9367 * for this task to complete using the mSnapshotData.mServerProgress
9368 * returned to it.
9369 *
9370 * @note Locks mParent + this objects for writing.
9371 */
9372void SessionMachine::takeSnapshotHandler (TakeSnapshotTask &aTask)
9373{
9374 LogFlowThisFuncEnter();
9375
9376 AutoCaller autoCaller (this);
9377
9378 LogFlowThisFunc (("state=%d\n", autoCaller.state()));
9379 if (!autoCaller.isOk())
9380 {
9381 /*
9382 * we might have been uninitialized because the session was
9383 * accidentally closed by the client, so don't assert
9384 */
9385 LogFlowThisFuncLeave();
9386 return;
9387 }
9388
9389 /* endTakingSnapshot() needs mParent lock */
9390 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
9391
9392 HRESULT rc = S_OK;
9393
9394 LogFlowThisFunc (("Creating differencing VDIs...\n"));
9395
9396 /* create new differencing hard disks and attach them to this machine */
9397 rc = createSnapshotDiffs (&mSnapshotData.mSnapshot->data().mId,
9398 mUserData->mSnapshotFolderFull,
9399 mSnapshotData.mServerProgress,
9400 true /* aOnline */);
9401
9402 if (SUCCEEDED (rc) && mSnapshotData.mLastState == MachineState_Saved)
9403 {
9404 Utf8Str stateFrom = mSSData->mStateFilePath;
9405 Utf8Str stateTo = mSnapshotData.mSnapshot->stateFilePath();
9406
9407 LogFlowThisFunc (("Copying the execution state from '%s' to '%s'...\n",
9408 stateFrom.raw(), stateTo.raw()));
9409
9410 mSnapshotData.mServerProgress->advanceOperation (
9411 Bstr (tr ("Copying the execution state")));
9412
9413 /*
9414 * We can safely leave the lock here:
9415 * mMachineState is MachineState_Saving here
9416 */
9417 alock.leave();
9418
9419 /* copy the state file */
9420 int vrc = RTFileCopyEx (stateFrom, stateTo, progressCallback,
9421 static_cast <Progress *> (mSnapshotData.mServerProgress));
9422
9423 alock.enter();
9424
9425 if (VBOX_FAILURE (vrc))
9426 rc = setError (E_FAIL,
9427 tr ("Could not copy the state file '%ls' to '%ls' (%Vrc)"),
9428 stateFrom.raw(), stateTo.raw());
9429 }
9430
9431 /*
9432 * we have to call endTakingSnapshot() here if the snapshot was taken
9433 * offline, because the VM process will not do it in this case
9434 */
9435 if (mSnapshotData.mLastState != MachineState_Paused)
9436 {
9437 LogFlowThisFunc (("Finalizing the taken snapshot (rc=%08X)...\n", rc));
9438
9439 setMachineState (mSnapshotData.mLastState);
9440 updateMachineStateOnClient();
9441
9442 /* finalize the progress after setting the state, for consistency */
9443 mSnapshotData.mServerProgress->notifyComplete (rc);
9444
9445 endTakingSnapshot (SUCCEEDED (rc));
9446 }
9447 else
9448 {
9449 mSnapshotData.mServerProgress->notifyComplete (rc);
9450 }
9451
9452 LogFlowThisFuncLeave();
9453}
9454
9455/**
9456 * Discard snapshot task handler.
9457 * Must be called only by DiscardSnapshotTask::handler()!
9458 *
9459 * When aTask.subTask is true, the associated progress object is left
9460 * uncompleted on success. On failure, the progress is marked as completed
9461 * regardless of this parameter.
9462 *
9463 * @note Locks mParent + this + child objects for writing!
9464 */
9465void SessionMachine::discardSnapshotHandler (DiscardSnapshotTask &aTask)
9466{
9467 LogFlowThisFuncEnter();
9468
9469 AutoCaller autoCaller (this);
9470
9471 LogFlowThisFunc (("state=%d\n", autoCaller.state()));
9472 if (!autoCaller.isOk())
9473 {
9474 /*
9475 * we might have been uninitialized because the session was
9476 * accidentally closed by the client, so don't assert
9477 */
9478 aTask.progress->notifyComplete (
9479 E_FAIL, COM_IIDOF (IMachine), getComponentName(),
9480 tr ("The session has been accidentally closed"));
9481
9482 LogFlowThisFuncLeave();
9483 return;
9484 }
9485
9486 ComObjPtr <SnapshotMachine> sm = aTask.snapshot->data().mMachine;
9487
9488 /* mParent is locked because of Progress::notifyComplete(), etc. */
9489 AutoMultiLock <3> alock (mParent->wlock(), this->wlock(), sm->rlock());
9490
9491 /* Safe locking in the direction parent->child */
9492 AutoLock snapshotLock (aTask.snapshot);
9493 AutoLock snapshotChildrenLock (aTask.snapshot->childrenLock());
9494
9495 HRESULT rc = S_OK;
9496
9497 /* save the snapshot ID (for callbacks) */
9498 Guid snapshotId = aTask.snapshot->data().mId;
9499
9500 do
9501 {
9502 /* first pass: */
9503 LogFlowThisFunc (("Check hard disk accessibility and affected machines...\n"));
9504
9505 HDData::HDAttachmentList::const_iterator it;
9506 for (it = sm->mHDData->mHDAttachments.begin();
9507 it != sm->mHDData->mHDAttachments.end();
9508 ++ it)
9509 {
9510 ComObjPtr <HardDiskAttachment> hda = *it;
9511 ComObjPtr <HardDisk> hd = hda->hardDisk();
9512 ComObjPtr <HardDisk> parent = hd->parent();
9513
9514 AutoLock hdLock (hd);
9515
9516 if (hd->hasForeignChildren())
9517 {
9518 rc = setError (E_FAIL,
9519 tr ("One or more hard disks belonging to other machines are "
9520 "based on the hard disk '%ls' stored in the snapshot '%ls'"),
9521 hd->toString().raw(), aTask.snapshot->data().mName.raw());
9522 break;
9523 }
9524
9525 if (hd->type() == HardDiskType_NormalHardDisk)
9526 {
9527 AutoLock hdChildrenLock (hd->childrenLock());
9528 size_t childrenCount = hd->children().size();
9529 if (childrenCount > 1)
9530 {
9531 rc = setError (E_FAIL,
9532 tr ("Normal hard disk '%ls' stored in the snapshot '%ls' "
9533 "has more than one child hard disk (%d)"),
9534 hd->toString().raw(), aTask.snapshot->data().mName.raw(),
9535 childrenCount);
9536 break;
9537 }
9538 }
9539 else
9540 {
9541 ComAssertMsgFailedBreak (("Invalid hard disk type %d\n", hd->type()),
9542 rc = E_FAIL);
9543 }
9544
9545 Bstr accessError;
9546 rc = hd->getAccessibleWithChildren (accessError);
9547 CheckComRCBreakRC (rc);
9548
9549 if (!accessError.isNull())
9550 {
9551 rc = setError (E_FAIL,
9552 tr ("Hard disk '%ls' stored in the snapshot '%ls' is not "
9553 "accessible (%ls)"),
9554 hd->toString().raw(), aTask.snapshot->data().mName.raw(),
9555 accessError.raw());
9556 break;
9557 }
9558
9559 rc = hd->setBusyWithChildren();
9560 if (FAILED (rc))
9561 {
9562 /* reset the busy flag of all previous hard disks */
9563 while (it != sm->mHDData->mHDAttachments.begin())
9564 (*(-- it))->hardDisk()->clearBusyWithChildren();
9565 break;
9566 }
9567 }
9568
9569 CheckComRCBreakRC (rc);
9570
9571 /* second pass: */
9572 LogFlowThisFunc (("Performing actual vdi merging...\n"));
9573
9574 for (it = sm->mHDData->mHDAttachments.begin();
9575 it != sm->mHDData->mHDAttachments.end();
9576 ++ it)
9577 {
9578 ComObjPtr <HardDiskAttachment> hda = *it;
9579 ComObjPtr <HardDisk> hd = hda->hardDisk();
9580 ComObjPtr <HardDisk> parent = hd->parent();
9581
9582 AutoLock hdLock (hd);
9583
9584 Bstr hdRootString = hd->root()->toString (true /* aShort */);
9585
9586 if (parent)
9587 {
9588 if (hd->isParentImmutable())
9589 {
9590 aTask.progress->advanceOperation (Bstr (Utf8StrFmt (
9591 tr ("Discarding changes to immutable hard disk '%ls'"),
9592 hdRootString.raw())));
9593
9594 /* clear the busy flag before unregistering */
9595 hd->clearBusy();
9596
9597 /*
9598 * unregisterDiffHardDisk() is supposed to delete and uninit
9599 * the differencing hard disk
9600 */
9601 rc = mParent->unregisterDiffHardDisk (hd);
9602 CheckComRCBreakRC (rc);
9603 continue;
9604 }
9605 else
9606 {
9607 /*
9608 * differencing VDI:
9609 * merge this image to all its children
9610 */
9611
9612 aTask.progress->advanceOperation (Bstr (Utf8StrFmt (
9613 tr ("Merging changes to normal hard disk '%ls' to children"),
9614 hdRootString.raw())));
9615
9616 snapshotChildrenLock.unlock();
9617 snapshotLock.unlock();
9618 alock.leave();
9619
9620 rc = hd->asVDI()->mergeImageToChildren (aTask.progress);
9621
9622 alock.enter();
9623 snapshotLock.lock();
9624 snapshotChildrenLock.lock();
9625
9626 // debug code
9627 // if (it != sm->mHDData->mHDAttachments.begin())
9628 // {
9629 // rc = setError (E_FAIL, "Simulated failure");
9630 // break;
9631 //}
9632
9633 if (SUCCEEDED (rc))
9634 rc = mParent->unregisterDiffHardDisk (hd);
9635 else
9636 hd->clearBusyWithChildren();
9637
9638 CheckComRCBreakRC (rc);
9639 }
9640 }
9641 else if (hd->type() == HardDiskType_NormalHardDisk)
9642 {
9643 /*
9644 * normal vdi has the only child or none
9645 * (checked in the first pass)
9646 */
9647
9648 ComObjPtr <HardDisk> child;
9649 {
9650 AutoLock hdChildrenLock (hd->childrenLock());
9651 if (hd->children().size())
9652 child = hd->children().front();
9653 }
9654
9655 if (child.isNull())
9656 {
9657 aTask.progress->advanceOperation (Bstr (Utf8StrFmt (
9658 tr ("Detaching normal hard disk '%ls'"),
9659 hdRootString.raw())));
9660
9661 /* just deassociate the normal image from this machine */
9662 hd->setMachineId (Guid());
9663 hd->setSnapshotId (Guid());
9664
9665 /* clear the busy flag */
9666 hd->clearBusy();
9667 }
9668 else
9669 {
9670 AutoLock childLock (child);
9671
9672 aTask.progress->advanceOperation (Bstr (Utf8StrFmt (
9673 tr ("Preserving changes to normal hard disk '%ls'"),
9674 hdRootString.raw())));
9675
9676 ComObjPtr <Machine> cm;
9677 ComObjPtr <Snapshot> cs;
9678 ComObjPtr <HardDiskAttachment> childHda;
9679 rc = findHardDiskAttachment (child, &cm, &cs, &childHda);
9680 CheckComRCBreakRC (rc);
9681 /* must be the same machine (checked in the first pass) */
9682 ComAssertBreak (cm->mData->mUuid == mData->mUuid, rc = E_FAIL);
9683
9684 /* merge the child to this basic image */
9685
9686 snapshotChildrenLock.unlock();
9687 snapshotLock.unlock();
9688 alock.leave();
9689
9690 rc = child->asVDI()->mergeImageToParent (aTask.progress);
9691
9692 alock.enter();
9693 snapshotLock.lock();
9694 snapshotChildrenLock.lock();
9695
9696 if (SUCCEEDED (rc))
9697 rc = mParent->unregisterDiffHardDisk (child);
9698 else
9699 hd->clearBusyWithChildren();
9700
9701 CheckComRCBreakRC (rc);
9702
9703 /* reset the snapshot Id */
9704 hd->setSnapshotId (Guid());
9705
9706 /* replace the child image in the appropriate place */
9707 childHda->updateHardDisk (hd, FALSE /* aDirty */);
9708
9709 if (!cs)
9710 {
9711 aTask.settingsChanged = true;
9712 }
9713 else
9714 {
9715 rc = cm->saveSnapshotSettings (cs, SaveSS_UpdateAllOp);
9716 CheckComRCBreakRC (rc);
9717 }
9718 }
9719 }
9720 else
9721 {
9722 ComAssertMsgFailedBreak (("Invalid hard disk type %d\n", hd->type()),
9723 rc = E_FAIL);
9724 }
9725 }
9726
9727 /* preserve existing error info */
9728 ErrorInfoKeeper mergeEik;
9729 HRESULT mergeRc = rc;
9730
9731 if (FAILED (rc))
9732 {
9733 /* clear the busy flag on the rest of hard disks */
9734 for (++ it; it != sm->mHDData->mHDAttachments.end(); ++ it)
9735 (*it)->hardDisk()->clearBusyWithChildren();
9736 }
9737
9738 /*
9739 * we have to try to discard the snapshot even if merging failed
9740 * because some images might have been already merged (and deleted)
9741 */
9742
9743 do
9744 {
9745 LogFlowThisFunc (("Discarding the snapshot (reparenting children)...\n"));
9746
9747 ComObjPtr <Snapshot> parentSnapshot = aTask.snapshot->parent();
9748
9749 /// @todo (dmik):
9750 // when we introduce clones later, discarding the snapshot
9751 // will affect the current and first snapshots of clones, if they are
9752 // direct children of this snapshot. So we will need to lock machines
9753 // associated with child snapshots as well and update mCurrentSnapshot
9754 // and/or mFirstSnapshot fields.
9755
9756 if (aTask.snapshot == mData->mCurrentSnapshot)
9757 {
9758 /* currently, the parent snapshot must refer to the same machine */
9759 ComAssertBreak (
9760 !parentSnapshot ||
9761 parentSnapshot->data().mMachine->mData->mUuid == mData->mUuid,
9762 rc = E_FAIL);
9763 mData->mCurrentSnapshot = parentSnapshot;
9764 /* mark the current state as modified */
9765 mData->mCurrentStateModified = TRUE;
9766 }
9767
9768 if (aTask.snapshot == mData->mFirstSnapshot)
9769 {
9770 /*
9771 * the first snapshot must have only one child when discarded,
9772 * or no children at all
9773 */
9774 ComAssertBreak (aTask.snapshot->children().size() <= 1, rc = E_FAIL);
9775
9776 if (aTask.snapshot->children().size() == 1)
9777 {
9778 ComObjPtr <Snapshot> childSnapshot = aTask.snapshot->children().front();
9779 ComAssertBreak (
9780 childSnapshot->data().mMachine->mData->mUuid == mData->mUuid,
9781 rc = E_FAIL);
9782 mData->mFirstSnapshot = childSnapshot;
9783 }
9784 else
9785 mData->mFirstSnapshot.setNull();
9786 }
9787
9788 /// @todo (dmik)
9789 // if we implement some warning mechanism later, we'll have
9790 // to return a warning if the state file path cannot be deleted
9791 Bstr stateFilePath = aTask.snapshot->stateFilePath();
9792 if (stateFilePath)
9793 RTFileDelete (Utf8Str (stateFilePath));
9794
9795 aTask.snapshot->discard();
9796
9797 rc = saveSnapshotSettings (parentSnapshot,
9798 SaveSS_UpdateAllOp | SaveSS_UpdateCurrentId);
9799 }
9800 while (0);
9801
9802 /* restore the merge error if any (ErrorInfo will be restored
9803 * automatically) */
9804 if (FAILED (mergeRc))
9805 rc = mergeRc;
9806 }
9807 while (0);
9808
9809 if (!aTask.subTask || FAILED (rc))
9810 {
9811 if (!aTask.subTask)
9812 {
9813 /* preserve existing error info */
9814 ErrorInfoKeeper eik;
9815
9816 /* restore the machine state */
9817 setMachineState (aTask.state);
9818 updateMachineStateOnClient();
9819
9820 /*
9821 * save settings anyway, since we've already changed the current
9822 * machine configuration
9823 */
9824 if (aTask.settingsChanged)
9825 {
9826 saveSettings (true /* aMarkCurStateAsModified */,
9827 true /* aInformCallbacksAnyway */);
9828 }
9829 }
9830
9831 /* set the result (this will try to fetch current error info on failure) */
9832 aTask.progress->notifyComplete (rc);
9833 }
9834
9835 if (SUCCEEDED (rc))
9836 mParent->onSnapshotDiscarded (mData->mUuid, snapshotId);
9837
9838 LogFlowThisFunc (("Done discarding snapshot (rc=%08X)\n", rc));
9839 LogFlowThisFuncLeave();
9840}
9841
9842/**
9843 * Discard current state task handler.
9844 * Must be called only by DiscardCurrentStateTask::handler()!
9845 *
9846 * @note Locks mParent + this object for writing.
9847 */
9848void SessionMachine::discardCurrentStateHandler (DiscardCurrentStateTask &aTask)
9849{
9850 LogFlowThisFuncEnter();
9851
9852 AutoCaller autoCaller (this);
9853
9854 LogFlowThisFunc (("state=%d\n", autoCaller.state()));
9855 if (!autoCaller.isOk())
9856 {
9857 /*
9858 * we might have been uninitialized because the session was
9859 * accidentally closed by the client, so don't assert
9860 */
9861 aTask.progress->notifyComplete (
9862 E_FAIL, COM_IIDOF (IMachine), getComponentName(),
9863 tr ("The session has been accidentally closed"));
9864
9865 LogFlowThisFuncLeave();
9866 return;
9867 }
9868
9869 /* mParent is locked because of Progress::notifyComplete(), etc. */
9870 AutoMultiLock <2> alock (mParent->wlock(), this->wlock());
9871
9872 /*
9873 * discard all current changes to mUserData (name, OSType etc.)
9874 * (note that the machine is powered off, so there is no need
9875 * to inform the direct session)
9876 */
9877 if (isModified())
9878 rollback (false /* aNotify */);
9879
9880 HRESULT rc = S_OK;
9881
9882 bool errorInSubtask = false;
9883 bool stateRestored = false;
9884
9885 const bool isLastSnapshot = mData->mCurrentSnapshot->parent().isNull();
9886
9887 do
9888 {
9889 /*
9890 * discard the saved state file if the machine was Saved prior
9891 * to this operation
9892 */
9893 if (aTask.state == MachineState_Saved)
9894 {
9895 Assert (!mSSData->mStateFilePath.isEmpty());
9896 RTFileDelete (Utf8Str (mSSData->mStateFilePath));
9897 mSSData->mStateFilePath.setNull();
9898 aTask.modifyLastState (MachineState_PoweredOff);
9899 rc = saveStateSettings (SaveSTS_StateFilePath);
9900 CheckComRCBreakRC (rc);
9901 }
9902
9903 if (aTask.discardCurrentSnapshot && !isLastSnapshot)
9904 {
9905 /*
9906 * the "discard current snapshot and state" task is in action,
9907 * the current snapshot is not the last one.
9908 * Discard the current snapshot first.
9909 */
9910
9911 DiscardSnapshotTask subTask (aTask, mData->mCurrentSnapshot);
9912 subTask.subTask = true;
9913 discardSnapshotHandler (subTask);
9914 aTask.settingsChanged = subTask.settingsChanged;
9915 if (aTask.progress->completed())
9916 {
9917 /*
9918 * the progress can be completed by a subtask only if there was
9919 * a failure
9920 */
9921 Assert (FAILED (aTask.progress->resultCode()));
9922 errorInSubtask = true;
9923 rc = aTask.progress->resultCode();
9924 break;
9925 }
9926 }
9927
9928 LONG64 snapshotTimeStamp = 0;
9929
9930 {
9931 ComObjPtr <Snapshot> curSnapshot = mData->mCurrentSnapshot;
9932 AutoLock snapshotLock (curSnapshot);
9933
9934 /* remember the timestamp of the snapshot we're restoring from */
9935 snapshotTimeStamp = curSnapshot->data().mTimeStamp;
9936
9937 /* copy all hardware data from the current snapshot */
9938 copyFrom (curSnapshot->data().mMachine);
9939
9940 LogFlowThisFunc (("Restoring VDIs from the snapshot...\n"));
9941
9942 /* restore the attachmends from the snapshot */
9943 mHDData.backup();
9944 mHDData->mHDAttachments =
9945 curSnapshot->data().mMachine->mHDData->mHDAttachments;
9946
9947 snapshotLock.unlock();
9948 alock.leave();
9949 rc = createSnapshotDiffs (NULL, mUserData->mSnapshotFolderFull,
9950 aTask.progress,
9951 false /* aOnline */);
9952 alock.enter();
9953 snapshotLock.lock();
9954
9955 if (FAILED (rc))
9956 {
9957 /* here we can still safely rollback, so do it */
9958 /* preserve existing error info */
9959 ErrorInfoKeeper eik;
9960 /* undo all changes */
9961 rollback (false /* aNotify */);
9962 break;
9963 }
9964
9965 /*
9966 * note: old VDIs will be deassociated/deleted on #commit() called
9967 * either from #saveSettings() or directly at the end
9968 */
9969
9970 /* should not have a saved state file associated at this point */
9971 Assert (mSSData->mStateFilePath.isNull());
9972
9973 if (curSnapshot->stateFilePath())
9974 {
9975 Utf8Str snapStateFilePath = curSnapshot->stateFilePath();
9976
9977 Utf8Str stateFilePath = Utf8StrFmt ("%ls%c{%Vuuid}.sav",
9978 mUserData->mSnapshotFolderFull.raw(),
9979 RTPATH_DELIMITER, mData->mUuid.raw());
9980
9981 LogFlowThisFunc (("Copying saved state file from '%s' to '%s'...\n",
9982 snapStateFilePath.raw(), stateFilePath.raw()));
9983
9984 aTask.progress->advanceOperation (
9985 Bstr (tr ("Restoring the execution state")));
9986
9987 /* copy the state file */
9988 snapshotLock.unlock();
9989 alock.leave();
9990 int vrc = RTFileCopyEx (snapStateFilePath, stateFilePath,
9991 progressCallback, aTask.progress);
9992 alock.enter();
9993 snapshotLock.lock();
9994
9995 if (VBOX_SUCCESS (vrc))
9996 {
9997 mSSData->mStateFilePath = stateFilePath;
9998 }
9999 else
10000 {
10001 rc = setError (E_FAIL,
10002 tr ("Could not copy the state file '%s' to '%s' (%Vrc)"),
10003 snapStateFilePath.raw(), stateFilePath.raw(), vrc);
10004 break;
10005 }
10006 }
10007 }
10008
10009 bool informCallbacks = false;
10010
10011 if (aTask.discardCurrentSnapshot && isLastSnapshot)
10012 {
10013 /*
10014 * discard the current snapshot and state task is in action,
10015 * the current snapshot is the last one.
10016 * Discard the current snapshot after discarding the current state.
10017 */
10018
10019 /* commit changes to fixup hard disks before discarding */
10020 rc = commit();
10021 if (SUCCEEDED (rc))
10022 {
10023 DiscardSnapshotTask subTask (aTask, mData->mCurrentSnapshot);
10024 subTask.subTask = true;
10025 discardSnapshotHandler (subTask);
10026 aTask.settingsChanged = subTask.settingsChanged;
10027 if (aTask.progress->completed())
10028 {
10029 /*
10030 * the progress can be completed by a subtask only if there
10031 * was a failure
10032 */
10033 Assert (FAILED (aTask.progress->resultCode()));
10034 errorInSubtask = true;
10035 rc = aTask.progress->resultCode();
10036 }
10037 }
10038
10039 /*
10040 * we've committed already, so inform callbacks anyway to ensure
10041 * they don't miss some change
10042 */
10043 informCallbacks = true;
10044 }
10045
10046 /*
10047 * we have already discarded the current state, so set the
10048 * execution state accordingly no matter of the discard snapshot result
10049 */
10050 if (mSSData->mStateFilePath)
10051 setMachineState (MachineState_Saved);
10052 else
10053 setMachineState (MachineState_PoweredOff);
10054
10055 updateMachineStateOnClient();
10056 stateRestored = true;
10057
10058 if (errorInSubtask)
10059 break;
10060
10061 /* assign the timestamp from the snapshot */
10062 Assert (snapshotTimeStamp != 0);
10063 mData->mLastStateChange = snapshotTimeStamp;
10064
10065 /* mark the current state as not modified */
10066 mData->mCurrentStateModified = FALSE;
10067
10068 /* save all settings and commit */
10069 rc = saveSettings (false /* aMarkCurStateAsModified */,
10070 informCallbacks);
10071 aTask.settingsChanged = false;
10072 }
10073 while (0);
10074
10075 if (FAILED (rc))
10076 {
10077 /* preserve existing error info */
10078 ErrorInfoKeeper eik;
10079
10080 if (!stateRestored)
10081 {
10082 /* restore the machine state */
10083 setMachineState (aTask.state);
10084 updateMachineStateOnClient();
10085 }
10086
10087 /*
10088 * save all settings and commit if still modified (there is no way to
10089 * rollback properly). Note that isModified() will return true after
10090 * copyFrom(). Also save the settings if requested by the subtask.
10091 */
10092 if (isModified() || aTask.settingsChanged)
10093 {
10094 if (aTask.settingsChanged)
10095 saveSettings (true /* aMarkCurStateAsModified */,
10096 true /* aInformCallbacksAnyway */);
10097 else
10098 saveSettings();
10099 }
10100 }
10101
10102 if (!errorInSubtask)
10103 {
10104 /* set the result (this will try to fetch current error info on failure) */
10105 aTask.progress->notifyComplete (rc);
10106 }
10107
10108 if (SUCCEEDED (rc))
10109 mParent->onSnapshotDiscarded (mData->mUuid, Guid());
10110
10111 LogFlowThisFunc (("Done discarding current state (rc=%08X)\n", rc));
10112
10113 LogFlowThisFuncLeave();
10114}
10115
10116/**
10117 * Helper to change the machine state (reimplementation).
10118 *
10119 * @note Locks this object for writing.
10120 */
10121HRESULT SessionMachine::setMachineState (MachineState_T aMachineState)
10122{
10123 LogFlowThisFuncEnter();
10124 LogFlowThisFunc (("aMachineState=%d\n", aMachineState));
10125
10126 AutoCaller autoCaller (this);
10127 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
10128
10129 AutoLock alock (this);
10130
10131 MachineState_T oldMachineState = mData->mMachineState;
10132
10133 AssertMsgReturn (oldMachineState != aMachineState,
10134 ("oldMachineState=%d, aMachineState=%d\n",
10135 oldMachineState, aMachineState), E_FAIL);
10136
10137 HRESULT rc = S_OK;
10138
10139 int stsFlags = 0;
10140 bool deleteSavedState = false;
10141
10142 /* detect some state transitions */
10143
10144 if (oldMachineState < MachineState_Running &&
10145 aMachineState >= MachineState_Running &&
10146 aMachineState != MachineState_Discarding)
10147 {
10148 /*
10149 * the EMT thread is about to start, so mark attached HDDs as busy
10150 * and all its ancestors as being in use
10151 */
10152 for (HDData::HDAttachmentList::const_iterator it =
10153 mHDData->mHDAttachments.begin();
10154 it != mHDData->mHDAttachments.end();
10155 ++ it)
10156 {
10157 ComObjPtr <HardDisk> hd = (*it)->hardDisk();
10158 AutoLock hdLock (hd);
10159 hd->setBusy();
10160 hd->addReaderOnAncestors();
10161 }
10162 }
10163 else
10164 if (oldMachineState >= MachineState_Running &&
10165 oldMachineState != MachineState_Discarding &&
10166 aMachineState < MachineState_Running)
10167 {
10168 /*
10169 * the EMT thread stopped, so mark attached HDDs as no more busy
10170 * and remove the in-use flag from all its ancestors
10171 */
10172 for (HDData::HDAttachmentList::const_iterator it =
10173 mHDData->mHDAttachments.begin();
10174 it != mHDData->mHDAttachments.end();
10175 ++ it)
10176 {
10177 ComObjPtr <HardDisk> hd = (*it)->hardDisk();
10178 AutoLock hdLock (hd);
10179 hd->releaseReaderOnAncestors();
10180 hd->clearBusy();
10181 }
10182 }
10183
10184 if (oldMachineState == MachineState_Restoring)
10185 {
10186 if (aMachineState != MachineState_Saved)
10187 {
10188 /*
10189 * delete the saved state file once the machine has finished
10190 * restoring from it (note that Console sets the state from
10191 * Restoring to Saved if the VM couldn't restore successfully,
10192 * to give the user an ability to fix an error and retry --
10193 * we keep the saved state file in this case)
10194 */
10195 deleteSavedState = true;
10196 }
10197 }
10198 else
10199 if (oldMachineState == MachineState_Saved &&
10200 (aMachineState == MachineState_PoweredOff ||
10201 aMachineState == MachineState_Aborted))
10202 {
10203 /*
10204 * delete the saved state after Console::DiscardSavedState() is called
10205 * or if the VM process (owning a direct VM session) crashed while the
10206 * VM was Saved
10207 */
10208
10209 /// @todo (dmik)
10210 // Not sure that deleting the saved state file just because of the
10211 // client death before it attempted to restore the VM is a good
10212 // thing. But when it crashes we need to go to the Aborted state
10213 // which cannot have the saved state file associated... The only
10214 // way to fix this is to make the Aborted condition not a VM state
10215 // but a bool flag: i.e., when a crash occurs, set it to true and
10216 // change the state to PoweredOff or Saved depending on the
10217 // saved state presence.
10218
10219 deleteSavedState = true;
10220 mData->mCurrentStateModified = TRUE;
10221 stsFlags |= SaveSTS_CurStateModified;
10222 }
10223
10224 if (aMachineState == MachineState_Starting ||
10225 aMachineState == MachineState_Restoring)
10226 {
10227 /*
10228 * set the current state modified flag to indicate that the
10229 * current state is no more identical to the state in the
10230 * current snapshot
10231 */
10232 if (!mData->mCurrentSnapshot.isNull())
10233 {
10234 mData->mCurrentStateModified = TRUE;
10235 stsFlags |= SaveSTS_CurStateModified;
10236 }
10237 }
10238
10239 if (deleteSavedState == true)
10240 {
10241 Assert (!mSSData->mStateFilePath.isEmpty());
10242 RTFileDelete (Utf8Str (mSSData->mStateFilePath));
10243 mSSData->mStateFilePath.setNull();
10244 stsFlags |= SaveSTS_StateFilePath;
10245 }
10246
10247 /* redirect to the underlying peer machine */
10248 mPeer->setMachineState (aMachineState);
10249
10250 if (aMachineState == MachineState_PoweredOff ||
10251 aMachineState == MachineState_Aborted ||
10252 aMachineState == MachineState_Saved)
10253 {
10254 stsFlags |= SaveSTS_StateTimeStamp;
10255 }
10256
10257 rc = saveStateSettings (stsFlags);
10258
10259 if ((oldMachineState != MachineState_PoweredOff &&
10260 oldMachineState != MachineState_Aborted) &&
10261 (aMachineState == MachineState_PoweredOff ||
10262 aMachineState == MachineState_Aborted))
10263 {
10264 /*
10265 * clear differencing hard disks based on immutable hard disks
10266 * once we've been shut down for any reason
10267 */
10268 rc = wipeOutImmutableDiffs();
10269 }
10270
10271 LogFlowThisFunc (("rc=%08X\n", rc));
10272 LogFlowThisFuncLeave();
10273 return rc;
10274}
10275
10276/**
10277 * Sends the current machine state value to the VM process.
10278 *
10279 * @note Locks this object for reading, then calls a client process.
10280 */
10281HRESULT SessionMachine::updateMachineStateOnClient()
10282{
10283 AutoCaller autoCaller (this);
10284 AssertComRCReturn (autoCaller.rc(), autoCaller.rc());
10285
10286 ComPtr <IInternalSessionControl> directControl;
10287 {
10288 AutoReaderLock alock (this);
10289 AssertReturn (!!mData, E_FAIL);
10290 directControl = mData->mSession.mDirectControl;
10291
10292 /* directControl may be already set to NULL here in #OnSessionEnd()
10293 * called too early by the direct session process while there is still
10294 * some operation (like discarding the snapshot) in progress. The client
10295 * process in this case is waiting inside Session::close() for the
10296 * "end session" process object to complete, while #uninit() called by
10297 * #checkForDeath() on the Watcher thread is waiting for the pending
10298 * operation to complete. For now, we accept this inconsitent behavior
10299 * and simply do nothing here. */
10300
10301 if (mData->mSession.mState == SessionState_SessionClosing)
10302 return S_OK;
10303
10304 AssertReturn (!directControl.isNull(), E_FAIL);
10305 }
10306
10307 return directControl->UpdateMachineState (mData->mMachineState);
10308}
10309
10310/* static */
10311DECLCALLBACK(int) SessionMachine::taskHandler (RTTHREAD thread, void *pvUser)
10312{
10313 AssertReturn (pvUser, VERR_INVALID_POINTER);
10314
10315 Task *task = static_cast <Task *> (pvUser);
10316 task->handler();
10317
10318 // it's our responsibility to delete the task
10319 delete task;
10320
10321 return 0;
10322}
10323
10324/////////////////////////////////////////////////////////////////////////////
10325// SnapshotMachine class
10326/////////////////////////////////////////////////////////////////////////////
10327
10328DEFINE_EMPTY_CTOR_DTOR (SnapshotMachine)
10329
10330HRESULT SnapshotMachine::FinalConstruct()
10331{
10332 LogFlowThisFunc (("\n"));
10333
10334 /* set the proper type to indicate we're the SnapshotMachine instance */
10335 unconst (mType) = IsSnapshotMachine;
10336
10337 return S_OK;
10338}
10339
10340void SnapshotMachine::FinalRelease()
10341{
10342 LogFlowThisFunc (("\n"));
10343
10344 uninit();
10345}
10346
10347/**
10348 * Initializes the SnapshotMachine object when taking a snapshot.
10349 *
10350 * @param aSessionMachine machine to take a snapshot from
10351 * @param aSnapshotId snapshot ID of this snapshot machine
10352 * @param aStateFilePath file where the execution state will be later saved
10353 * (or NULL for the offline snapshot)
10354 *
10355 * @note Locks aSessionMachine object for reading.
10356 */
10357HRESULT SnapshotMachine::init (SessionMachine *aSessionMachine,
10358 INPTR GUIDPARAM aSnapshotId,
10359 INPTR BSTR aStateFilePath)
10360{
10361 LogFlowThisFuncEnter();
10362 LogFlowThisFunc (("mName={%ls}\n", aSessionMachine->mUserData->mName.raw()));
10363
10364 AssertReturn (aSessionMachine && !Guid (aSnapshotId).isEmpty(), E_INVALIDARG);
10365
10366 /* Enclose the state transition NotReady->InInit->Ready */
10367 AutoInitSpan autoInitSpan (this);
10368 AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
10369
10370 mSnapshotId = aSnapshotId;
10371
10372 AutoReaderLock alock (aSessionMachine);
10373
10374 /* memorize the primary Machine instance (i.e. not SessionMachine!) */
10375 unconst (mPeer) = aSessionMachine->mPeer;
10376 /* share the parent pointer */
10377 unconst (mParent) = mPeer->mParent;
10378
10379 /* take the pointer to Data to share */
10380 mData.share (mPeer->mData);
10381 /*
10382 * take the pointer to UserData to share
10383 * (our UserData must always be the same as Machine's data)
10384 */
10385 mUserData.share (mPeer->mUserData);
10386 /* make a private copy of all other data (recent changes from SessionMachine) */
10387 mHWData.attachCopy (aSessionMachine->mHWData);
10388 mHDData.attachCopy (aSessionMachine->mHDData);
10389
10390 /* SSData is always unique for SnapshotMachine */
10391 mSSData.allocate();
10392 mSSData->mStateFilePath = aStateFilePath;
10393
10394 /*
10395 * create copies of all shared folders (mHWData after attiching a copy
10396 * contains just references to original objects)
10397 */
10398 for (HWData::SharedFolderList::iterator it = mHWData->mSharedFolders.begin();
10399 it != mHWData->mSharedFolders.end();
10400 ++ it)
10401 {
10402 ComObjPtr <SharedFolder> folder;
10403 folder.createObject();
10404 HRESULT rc = folder->initCopy (this, *it);
10405 CheckComRCReturnRC (rc);
10406 *it = folder;
10407 }
10408
10409 /* create all other child objects that will be immutable private copies */
10410
10411 unconst (mBIOSSettings).createObject();
10412 mBIOSSettings->initCopy (this, mPeer->mBIOSSettings);
10413
10414#ifdef VBOX_VRDP
10415 unconst (mVRDPServer).createObject();
10416 mVRDPServer->initCopy (this, mPeer->mVRDPServer);
10417#endif
10418
10419 unconst (mDVDDrive).createObject();
10420 mDVDDrive->initCopy (this, mPeer->mDVDDrive);
10421
10422 unconst (mFloppyDrive).createObject();
10423 mFloppyDrive->initCopy (this, mPeer->mFloppyDrive);
10424
10425 unconst (mAudioAdapter).createObject();
10426 mAudioAdapter->initCopy (this, mPeer->mAudioAdapter);
10427
10428 unconst (mUSBController).createObject();
10429 mUSBController->initCopy (this, mPeer->mUSBController);
10430
10431 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
10432 {
10433 unconst (mNetworkAdapters [slot]).createObject();
10434 mNetworkAdapters [slot]->initCopy (this, mPeer->mNetworkAdapters [slot]);
10435 }
10436
10437 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
10438 {
10439 unconst (mSerialPorts [slot]).createObject();
10440 mSerialPorts [slot]->initCopy (this, mPeer->mSerialPorts [slot]);
10441 }
10442
10443 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
10444 {
10445 unconst (mParallelPorts [slot]).createObject();
10446 mParallelPorts [slot]->initCopy (this, mPeer->mParallelPorts [slot]);
10447 }
10448
10449 /* Confirm a successful initialization when it's the case */
10450 autoInitSpan.setSucceeded();
10451
10452 LogFlowThisFuncLeave();
10453 return S_OK;
10454}
10455
10456/**
10457 * Initializes the SnapshotMachine object when loading from the settings file.
10458 *
10459 * @param aMachine machine the snapshot belngs to
10460 * @param aHWNode <Hardware> node
10461 * @param aHDAsNode <HardDiskAttachments> node
10462 * @param aSnapshotId snapshot ID of this snapshot machine
10463 * @param aStateFilePath file where the execution state is saved
10464 * (or NULL for the offline snapshot)
10465 *
10466 * @note Locks aMachine object for reading.
10467 */
10468HRESULT SnapshotMachine::init (Machine *aMachine, CFGNODE aHWNode, CFGNODE aHDAsNode,
10469 INPTR GUIDPARAM aSnapshotId, INPTR BSTR aStateFilePath)
10470{
10471 LogFlowThisFuncEnter();
10472 LogFlowThisFunc (("mName={%ls}\n", aMachine->mUserData->mName.raw()));
10473
10474 AssertReturn (aMachine && aHWNode && aHDAsNode && !Guid (aSnapshotId).isEmpty(),
10475 E_INVALIDARG);
10476
10477 /* Enclose the state transition NotReady->InInit->Ready */
10478 AutoInitSpan autoInitSpan (this);
10479 AssertReturn (autoInitSpan.isOk(), E_UNEXPECTED);
10480
10481 mSnapshotId = aSnapshotId;
10482
10483 AutoReaderLock alock (aMachine);
10484
10485 /* memorize the primary Machine instance */
10486 unconst (mPeer) = aMachine;
10487 /* share the parent pointer */
10488 unconst (mParent) = mPeer->mParent;
10489
10490 /* take the pointer to Data to share */
10491 mData.share (mPeer->mData);
10492 /*
10493 * take the pointer to UserData to share
10494 * (our UserData must always be the same as Machine's data)
10495 */
10496 mUserData.share (mPeer->mUserData);
10497 /* allocate private copies of all other data (will be loaded from settings) */
10498 mHWData.allocate();
10499 mHDData.allocate();
10500
10501 /* SSData is always unique for SnapshotMachine */
10502 mSSData.allocate();
10503 mSSData->mStateFilePath = aStateFilePath;
10504
10505 /* create all other child objects that will be immutable private copies */
10506
10507 unconst (mBIOSSettings).createObject();
10508 mBIOSSettings->init (this);
10509
10510#ifdef VBOX_VRDP
10511 unconst (mVRDPServer).createObject();
10512 mVRDPServer->init (this);
10513#endif
10514
10515 unconst (mDVDDrive).createObject();
10516 mDVDDrive->init (this);
10517
10518 unconst (mFloppyDrive).createObject();
10519 mFloppyDrive->init (this);
10520
10521 unconst (mAudioAdapter).createObject();
10522 mAudioAdapter->init (this);
10523
10524 unconst (mUSBController).createObject();
10525 mUSBController->init (this);
10526
10527 for (ULONG slot = 0; slot < ELEMENTS (mNetworkAdapters); slot ++)
10528 {
10529 unconst (mNetworkAdapters [slot]).createObject();
10530 mNetworkAdapters [slot]->init (this, slot);
10531 }
10532
10533 for (ULONG slot = 0; slot < ELEMENTS (mSerialPorts); slot ++)
10534 {
10535 unconst (mSerialPorts [slot]).createObject();
10536 mSerialPorts [slot]->init (this, slot);
10537 }
10538
10539 for (ULONG slot = 0; slot < ELEMENTS (mParallelPorts); slot ++)
10540 {
10541 unconst (mParallelPorts [slot]).createObject();
10542 mParallelPorts [slot]->init (this, slot);
10543 }
10544
10545 /* load hardware and harddisk settings */
10546
10547 HRESULT rc = loadHardware (aHWNode);
10548 if (SUCCEEDED (rc))
10549 rc = loadHardDisks (aHDAsNode, true /* aRegistered */, &mSnapshotId);
10550
10551 if (SUCCEEDED (rc))
10552 {
10553 /* commit all changes made during the initialization */
10554 commit();
10555 }
10556
10557 /* Confirm a successful initialization when it's the case */
10558 if (SUCCEEDED (rc))
10559 autoInitSpan.setSucceeded();
10560
10561 LogFlowThisFuncLeave();
10562 return rc;
10563}
10564
10565/**
10566 * Uninitializes this SnapshotMachine object.
10567 */
10568void SnapshotMachine::uninit()
10569{
10570 LogFlowThisFuncEnter();
10571
10572 /* Enclose the state transition Ready->InUninit->NotReady */
10573 AutoUninitSpan autoUninitSpan (this);
10574 if (autoUninitSpan.uninitDone())
10575 return;
10576
10577 uninitDataAndChildObjects();
10578
10579 unconst (mParent).setNull();
10580 unconst (mPeer).setNull();
10581
10582 LogFlowThisFuncLeave();
10583}
10584
10585// AutoLock::Lockable interface
10586////////////////////////////////////////////////////////////////////////////////
10587
10588/**
10589 * Overrides VirtualBoxBase::lockHandle() in order to share the lock handle
10590 * with the primary Machine instance (mPeer).
10591 */
10592AutoLock::Handle *SnapshotMachine::lockHandle() const
10593{
10594 AssertReturn (!mPeer.isNull(), NULL);
10595 return mPeer->lockHandle();
10596}
10597
10598// public methods only for internal purposes
10599////////////////////////////////////////////////////////////////////////////////
10600
10601/**
10602 * Called by the snapshot object associated with this SnapshotMachine when
10603 * snapshot data such as name or description is changed.
10604 *
10605 * @note Locks this object for writing.
10606 */
10607HRESULT SnapshotMachine::onSnapshotChange (Snapshot *aSnapshot)
10608{
10609 AutoLock alock (this);
10610
10611 mPeer->saveSnapshotSettings (aSnapshot, SaveSS_UpdateAttrsOp);
10612
10613 /* inform callbacks */
10614 mParent->onSnapshotChange (mData->mUuid, aSnapshot->data().mId);
10615
10616 return S_OK;
10617}
Note: See TracBrowser for help on using the repository browser.

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