VirtualBox

source: vbox/trunk/src/VBox/Main/src-server/SnapshotImpl.cpp@ 55747

Last change on this file since 55747 was 55728, checked in by vboxsync, 10 years ago

Main/Machine+Snapshot+Medium: Remove bogus assertion when locking a machine for shared access. Fix a race between querying medium information and deleting the medium, which was triggered by the GUI medium thread querying the same medium which restoring a snapshot wanted to delete (timing sensitive, happened most with poweroff/restore snapshot). Additionally move the machine state update for restoring a snapshot to the end, when the operation is pretty much done. For taking a snapshot, make sure that the corresponding event is signalled after the operation completed.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 143.2 KB
Line 
1/* $Id: SnapshotImpl.cpp 55728 2015-05-07 13:58:38Z vboxsync $ */
2/** @file
3 * COM class implementation for Snapshot and SnapshotMachine in VBoxSVC.
4 */
5
6/*
7 * Copyright (C) 2006-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include "Logging.h"
19#include "SnapshotImpl.h"
20
21#include "MachineImpl.h"
22#include "MediumImpl.h"
23#include "MediumFormatImpl.h"
24#include "Global.h"
25#include "ProgressImpl.h"
26
27// @todo these three includes are required for about one or two lines, try
28// to remove them and put that code in shared code in MachineImplcpp
29#include "SharedFolderImpl.h"
30#include "USBControllerImpl.h"
31#include "USBDeviceFiltersImpl.h"
32#include "VirtualBoxImpl.h"
33
34#include "AutoCaller.h"
35
36#include <iprt/path.h>
37#include <iprt/cpp/utils.h>
38
39#include <VBox/param.h>
40#include <VBox/err.h>
41
42#include <VBox/settings.h>
43
44////////////////////////////////////////////////////////////////////////////////
45//
46// Snapshot private data definition
47//
48////////////////////////////////////////////////////////////////////////////////
49
50typedef std::list< ComObjPtr<Snapshot> > SnapshotsList;
51
52struct Snapshot::Data
53{
54 Data()
55 : pVirtualBox(NULL)
56 {
57 RTTimeSpecSetMilli(&timeStamp, 0);
58 };
59
60 ~Data()
61 {}
62
63 const Guid uuid;
64 Utf8Str strName;
65 Utf8Str strDescription;
66 RTTIMESPEC timeStamp;
67 ComObjPtr<SnapshotMachine> pMachine;
68
69 /** weak VirtualBox parent */
70 VirtualBox * const pVirtualBox;
71
72 // pParent and llChildren are protected by the machine lock
73 ComObjPtr<Snapshot> pParent;
74 SnapshotsList llChildren;
75};
76
77////////////////////////////////////////////////////////////////////////////////
78//
79// Constructor / destructor
80//
81////////////////////////////////////////////////////////////////////////////////
82DEFINE_EMPTY_CTOR_DTOR(Snapshot)
83
84HRESULT Snapshot::FinalConstruct()
85{
86 LogFlowThisFunc(("\n"));
87 return BaseFinalConstruct();
88}
89
90void Snapshot::FinalRelease()
91{
92 LogFlowThisFunc(("\n"));
93 uninit();
94 BaseFinalRelease();
95}
96
97/**
98 * Initializes the instance
99 *
100 * @param aId id of the snapshot
101 * @param aName name of the snapshot
102 * @param aDescription name of the snapshot (NULL if no description)
103 * @param aTimeStamp timestamp of the snapshot, in ms since 1970-01-01 UTC
104 * @param aMachine machine associated with this snapshot
105 * @param aParent parent snapshot (NULL if no parent)
106 */
107HRESULT Snapshot::init(VirtualBox *aVirtualBox,
108 const Guid &aId,
109 const Utf8Str &aName,
110 const Utf8Str &aDescription,
111 const RTTIMESPEC &aTimeStamp,
112 SnapshotMachine *aMachine,
113 Snapshot *aParent)
114{
115 LogFlowThisFunc(("uuid=%s aParent->uuid=%s\n", aId.toString().c_str(), (aParent) ? aParent->m->uuid.toString().c_str() : ""));
116
117 ComAssertRet(!aId.isZero() && aId.isValid() && !aName.isEmpty() && aMachine, E_INVALIDARG);
118
119 /* Enclose the state transition NotReady->InInit->Ready */
120 AutoInitSpan autoInitSpan(this);
121 AssertReturn(autoInitSpan.isOk(), E_FAIL);
122
123 m = new Data;
124
125 /* share parent weakly */
126 unconst(m->pVirtualBox) = aVirtualBox;
127
128 m->pParent = aParent;
129
130 unconst(m->uuid) = aId;
131 m->strName = aName;
132 m->strDescription = aDescription;
133 m->timeStamp = aTimeStamp;
134 m->pMachine = aMachine;
135
136 if (aParent)
137 aParent->m->llChildren.push_back(this);
138
139 /* Confirm a successful initialization when it's the case */
140 autoInitSpan.setSucceeded();
141
142 return S_OK;
143}
144
145/**
146 * Uninitializes the instance and sets the ready flag to FALSE.
147 * Called either from FinalRelease(), by the parent when it gets destroyed,
148 * or by a third party when it decides this object is no more valid.
149 *
150 * Since this manipulates the snapshots tree, the caller must hold the
151 * machine lock in write mode (which protects the snapshots tree)!
152 */
153void Snapshot::uninit()
154{
155 LogFlowThisFunc(("\n"));
156
157 /* Enclose the state transition Ready->InUninit->NotReady */
158 AutoUninitSpan autoUninitSpan(this);
159 if (autoUninitSpan.uninitDone())
160 return;
161
162 Assert(m->pMachine->isWriteLockOnCurrentThread());
163
164 // uninit all children
165 SnapshotsList::iterator it;
166 for (it = m->llChildren.begin();
167 it != m->llChildren.end();
168 ++it)
169 {
170 Snapshot *pChild = *it;
171 pChild->m->pParent.setNull();
172 pChild->uninit();
173 }
174 m->llChildren.clear(); // this unsets all the ComPtrs and probably calls delete
175
176 // since there is no guarantee anyone holds a reference to us except the
177 // list of children in our parent, make sure that the reference count
178 // will not drop to 0 before we've declared ourselves as uninitialized,
179 // otherwise there will be another uninit call which causes a self-deadlock
180 // because this uninit isn't complete yet.
181 ComObjPtr<Snapshot> pSnapshot(this);
182 if (m->pParent)
183 i_deparent();
184
185 if (m->pMachine)
186 {
187 m->pMachine->uninit();
188 m->pMachine.setNull();
189 }
190
191 delete m;
192 m = NULL;
193
194 autoUninitSpan.setSucceeded();
195 // see above, now the refcount may reach 0
196 pSnapshot.setNull();
197}
198
199/**
200 * Delete the current snapshot by removing it from the tree of snapshots
201 * and reparenting its children.
202 *
203 * After this, the caller must call uninit() on the snapshot. We can't call
204 * that from here because if we do, the AutoUninitSpan waits forever for
205 * the number of callers to become 0 (it is 1 because of the AutoCaller in here).
206 *
207 * NOTE: this does NOT lock the snapshot, it is assumed that the machine state
208 * (and the snapshots tree) is protected by the caller having requested the machine
209 * lock in write mode AND the machine state must be DeletingSnapshot.
210 */
211void Snapshot::i_beginSnapshotDelete()
212{
213 AutoCaller autoCaller(this);
214 if (FAILED(autoCaller.rc()))
215 return;
216
217 // caller must have acquired the machine's write lock
218 Assert( m->pMachine->mData->mMachineState == MachineState_DeletingSnapshot
219 || m->pMachine->mData->mMachineState == MachineState_DeletingSnapshotOnline
220 || m->pMachine->mData->mMachineState == MachineState_DeletingSnapshotPaused);
221 Assert(m->pMachine->isWriteLockOnCurrentThread());
222
223 // the snapshot must have only one child when being deleted or no children at all
224 AssertReturnVoid(m->llChildren.size() <= 1);
225
226 ComObjPtr<Snapshot> parentSnapshot = m->pParent;
227
228 /// @todo (dmik):
229 // when we introduce clones later, deleting the snapshot will affect
230 // the current and first snapshots of clones, if they are direct children
231 // of this snapshot. So we will need to lock machines associated with
232 // child snapshots as well and update mCurrentSnapshot and/or
233 // mFirstSnapshot fields.
234
235 if (this == m->pMachine->mData->mCurrentSnapshot)
236 {
237 m->pMachine->mData->mCurrentSnapshot = parentSnapshot;
238
239 /* we've changed the base of the current state so mark it as
240 * modified as it no longer guaranteed to be its copy */
241 m->pMachine->mData->mCurrentStateModified = TRUE;
242 }
243
244 if (this == m->pMachine->mData->mFirstSnapshot)
245 {
246 if (m->llChildren.size() == 1)
247 {
248 ComObjPtr<Snapshot> childSnapshot = m->llChildren.front();
249 m->pMachine->mData->mFirstSnapshot = childSnapshot;
250 }
251 else
252 m->pMachine->mData->mFirstSnapshot.setNull();
253 }
254
255 // reparent our children
256 for (SnapshotsList::const_iterator it = m->llChildren.begin();
257 it != m->llChildren.end();
258 ++it)
259 {
260 ComObjPtr<Snapshot> child = *it;
261 // no need to lock, snapshots tree is protected by machine lock
262 child->m->pParent = m->pParent;
263 if (m->pParent)
264 m->pParent->m->llChildren.push_back(child);
265 }
266
267 // clear our own children list (since we reparented the children)
268 m->llChildren.clear();
269}
270
271/**
272 * Internal helper that removes "this" from the list of children of its
273 * parent. Used in uninit() and other places when reparenting is necessary.
274 *
275 * The caller must hold the machine lock in write mode (which protects the snapshots tree)!
276 */
277void Snapshot::i_deparent()
278{
279 Assert(m->pMachine->isWriteLockOnCurrentThread());
280
281 SnapshotsList &llParent = m->pParent->m->llChildren;
282 for (SnapshotsList::iterator it = llParent.begin();
283 it != llParent.end();
284 ++it)
285 {
286 Snapshot *pParentsChild = *it;
287 if (this == pParentsChild)
288 {
289 llParent.erase(it);
290 break;
291 }
292 }
293
294 m->pParent.setNull();
295}
296
297////////////////////////////////////////////////////////////////////////////////
298//
299// ISnapshot public methods
300//
301////////////////////////////////////////////////////////////////////////////////
302
303HRESULT Snapshot::getId(com::Guid &aId)
304{
305 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
306
307 aId = m->uuid;
308
309 return S_OK;
310}
311
312HRESULT Snapshot::getName(com::Utf8Str &aName)
313{
314 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
315 aName = m->strName;
316 return S_OK;
317}
318
319/**
320 * @note Locks this object for writing, then calls Machine::onSnapshotChange()
321 * (see its lock requirements).
322 */
323HRESULT Snapshot::setName(const com::Utf8Str &aName)
324{
325 HRESULT rc = S_OK;
326
327 // prohibit setting a UUID only as the machine name, or else it can
328 // never be found by findMachine()
329 Guid test(aName);
330
331 if (!test.isZero() && test.isValid())
332 return setError(E_INVALIDARG, tr("A machine cannot have a UUID as its name"));
333
334 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
335
336 if (m->strName != aName)
337 {
338 m->strName = aName;
339 alock.release(); /* Important! (child->parent locks are forbidden) */
340 rc = m->pMachine->i_onSnapshotChange(this);
341 }
342
343 return rc;
344}
345
346HRESULT Snapshot::getDescription(com::Utf8Str &aDescription)
347{
348 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
349 aDescription = m->strDescription;
350 return S_OK;
351}
352
353HRESULT Snapshot::setDescription(const com::Utf8Str &aDescription)
354{
355 HRESULT rc = S_OK;
356
357 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
358 if (m->strDescription != aDescription)
359 {
360 m->strDescription = aDescription;
361 alock.release(); /* Important! (child->parent locks are forbidden) */
362 rc = m->pMachine->i_onSnapshotChange(this);
363 }
364
365 return rc;
366}
367
368HRESULT Snapshot::getTimeStamp(LONG64 *aTimeStamp)
369{
370 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
371
372 *aTimeStamp = RTTimeSpecGetMilli(&m->timeStamp);
373 return S_OK;
374}
375
376HRESULT Snapshot::getOnline(BOOL *aOnline)
377{
378 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
379
380 *aOnline = i_getStateFilePath().isNotEmpty();
381 return S_OK;
382}
383
384HRESULT Snapshot::getMachine(ComPtr<IMachine> &aMachine)
385{
386 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
387
388 m->pMachine.queryInterfaceTo(aMachine.asOutParam());
389
390 return S_OK;
391}
392
393
394HRESULT Snapshot::getParent(ComPtr<ISnapshot> &aParent)
395{
396 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
397
398 m->pParent.queryInterfaceTo(aParent.asOutParam());
399 return S_OK;
400}
401
402HRESULT Snapshot::getChildren(std::vector<ComPtr<ISnapshot> > &aChildren)
403{
404 // snapshots tree is protected by machine lock
405 AutoReadLock alock(m->pMachine COMMA_LOCKVAL_SRC_POS);
406 aChildren.resize(0);
407 for (SnapshotsList::const_iterator it = m->llChildren.begin();
408 it != m->llChildren.end();
409 ++it)
410 aChildren.push_back(*it);
411 return S_OK;
412}
413
414HRESULT Snapshot::getChildrenCount(ULONG *count)
415{
416 *count = i_getChildrenCount();
417
418 return S_OK;
419}
420
421////////////////////////////////////////////////////////////////////////////////
422//
423// Snapshot public internal methods
424//
425////////////////////////////////////////////////////////////////////////////////
426
427/**
428 * Returns the parent snapshot or NULL if there's none. Must have caller + locking!
429 * @return
430 */
431const ComObjPtr<Snapshot>& Snapshot::i_getParent() const
432{
433 return m->pParent;
434}
435
436/**
437 * Returns the first child snapshot or NULL if there's none. Must have caller + locking!
438 * @return
439 */
440const ComObjPtr<Snapshot> Snapshot::i_getFirstChild() const
441{
442 if (!m->llChildren.size())
443 return NULL;
444 return m->llChildren.front();
445}
446
447/**
448 * @note
449 * Must be called from under the object's lock!
450 */
451const Utf8Str& Snapshot::i_getStateFilePath() const
452{
453 return m->pMachine->mSSData->strStateFilePath;
454}
455
456/**
457 * Returns the depth in the snapshot tree for this snapshot.
458 *
459 * @note takes the snapshot tree lock
460 */
461
462uint32_t Snapshot::i_getDepth()
463{
464 AutoCaller autoCaller(this);
465 AssertComRC(autoCaller.rc());
466
467 // snapshots tree is protected by machine lock
468 AutoReadLock alock(m->pMachine COMMA_LOCKVAL_SRC_POS);
469
470 uint32_t cDepth = 0;
471 ComObjPtr<Snapshot> pSnap(this);
472 while (!pSnap.isNull())
473 {
474 pSnap = pSnap->m->pParent;
475 cDepth++;
476 }
477
478 return cDepth;
479}
480
481/**
482 * Returns the number of direct child snapshots, without grandchildren.
483 * Does not recurse.
484 * @return
485 */
486ULONG Snapshot::i_getChildrenCount()
487{
488 AutoCaller autoCaller(this);
489 AssertComRC(autoCaller.rc());
490
491 // snapshots tree is protected by machine lock
492 AutoReadLock alock(m->pMachine COMMA_LOCKVAL_SRC_POS);
493
494 return (ULONG)m->llChildren.size();
495}
496
497/**
498 * Implementation method for getAllChildrenCount() so we request the
499 * tree lock only once before recursing. Don't call directly.
500 * @return
501 */
502ULONG Snapshot::i_getAllChildrenCountImpl()
503{
504 AutoCaller autoCaller(this);
505 AssertComRC(autoCaller.rc());
506
507 ULONG count = (ULONG)m->llChildren.size();
508 for (SnapshotsList::const_iterator it = m->llChildren.begin();
509 it != m->llChildren.end();
510 ++it)
511 {
512 count += (*it)->i_getAllChildrenCountImpl();
513 }
514
515 return count;
516}
517
518/**
519 * Returns the number of child snapshots including all grandchildren.
520 * Recurses into the snapshots tree.
521 * @return
522 */
523ULONG Snapshot::i_getAllChildrenCount()
524{
525 AutoCaller autoCaller(this);
526 AssertComRC(autoCaller.rc());
527
528 // snapshots tree is protected by machine lock
529 AutoReadLock alock(m->pMachine COMMA_LOCKVAL_SRC_POS);
530
531 return i_getAllChildrenCountImpl();
532}
533
534/**
535 * Returns the SnapshotMachine that this snapshot belongs to.
536 * Caller must hold the snapshot's object lock!
537 * @return
538 */
539const ComObjPtr<SnapshotMachine>& Snapshot::i_getSnapshotMachine() const
540{
541 return m->pMachine;
542}
543
544/**
545 * Returns the UUID of this snapshot.
546 * Caller must hold the snapshot's object lock!
547 * @return
548 */
549Guid Snapshot::i_getId() const
550{
551 return m->uuid;
552}
553
554/**
555 * Returns the name of this snapshot.
556 * Caller must hold the snapshot's object lock!
557 * @return
558 */
559const Utf8Str& Snapshot::i_getName() const
560{
561 return m->strName;
562}
563
564/**
565 * Returns the time stamp of this snapshot.
566 * Caller must hold the snapshot's object lock!
567 * @return
568 */
569RTTIMESPEC Snapshot::i_getTimeStamp() const
570{
571 return m->timeStamp;
572}
573
574/**
575 * Searches for a snapshot with the given ID among children, grand-children,
576 * etc. of this snapshot. This snapshot itself is also included in the search.
577 *
578 * Caller must hold the machine lock (which protects the snapshots tree!)
579 */
580ComObjPtr<Snapshot> Snapshot::i_findChildOrSelf(IN_GUID aId)
581{
582 ComObjPtr<Snapshot> child;
583
584 AutoCaller autoCaller(this);
585 AssertComRC(autoCaller.rc());
586
587 // no need to lock, uuid is const
588 if (m->uuid == aId)
589 child = this;
590 else
591 {
592 for (SnapshotsList::const_iterator it = m->llChildren.begin();
593 it != m->llChildren.end();
594 ++it)
595 {
596 if ((child = (*it)->i_findChildOrSelf(aId)))
597 break;
598 }
599 }
600
601 return child;
602}
603
604/**
605 * Searches for a first snapshot with the given name among children,
606 * grand-children, etc. of this snapshot. This snapshot itself is also included
607 * in the search.
608 *
609 * Caller must hold the machine lock (which protects the snapshots tree!)
610 */
611ComObjPtr<Snapshot> Snapshot::i_findChildOrSelf(const Utf8Str &aName)
612{
613 ComObjPtr<Snapshot> child;
614 AssertReturn(!aName.isEmpty(), child);
615
616 AutoCaller autoCaller(this);
617 AssertComRC(autoCaller.rc());
618
619 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
620
621 if (m->strName == aName)
622 child = this;
623 else
624 {
625 alock.release();
626 for (SnapshotsList::const_iterator it = m->llChildren.begin();
627 it != m->llChildren.end();
628 ++it)
629 {
630 if ((child = (*it)->i_findChildOrSelf(aName)))
631 break;
632 }
633 }
634
635 return child;
636}
637
638/**
639 * Internal implementation for Snapshot::updateSavedStatePaths (below).
640 * @param aOldPath
641 * @param aNewPath
642 */
643void Snapshot::i_updateSavedStatePathsImpl(const Utf8Str &strOldPath,
644 const Utf8Str &strNewPath)
645{
646 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
647
648 const Utf8Str &path = m->pMachine->mSSData->strStateFilePath;
649 LogFlowThisFunc(("Snap[%s].statePath={%s}\n", m->strName.c_str(), path.c_str()));
650
651 /* state file may be NULL (for offline snapshots) */
652 if ( path.length()
653 && RTPathStartsWith(path.c_str(), strOldPath.c_str())
654 )
655 {
656 m->pMachine->mSSData->strStateFilePath = Utf8StrFmt("%s%s",
657 strNewPath.c_str(),
658 path.c_str() + strOldPath.length());
659 LogFlowThisFunc(("-> updated: {%s}\n", path.c_str()));
660 }
661
662 for (SnapshotsList::const_iterator it = m->llChildren.begin();
663 it != m->llChildren.end();
664 ++it)
665 {
666 Snapshot *pChild = *it;
667 pChild->i_updateSavedStatePathsImpl(strOldPath, strNewPath);
668 }
669}
670
671/**
672 * Returns true if this snapshot or one of its children uses the given file,
673 * whose path must be fully qualified, as its saved state. When invoked on a
674 * machine's first snapshot, this can be used to check if a saved state file
675 * is shared with any snapshots.
676 *
677 * Caller must hold the machine lock, which protects the snapshots tree.
678 *
679 * @param strPath
680 * @param pSnapshotToIgnore If != NULL, this snapshot is ignored during the checks.
681 * @return
682 */
683bool Snapshot::i_sharesSavedStateFile(const Utf8Str &strPath,
684 Snapshot *pSnapshotToIgnore)
685{
686 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
687 const Utf8Str &path = m->pMachine->mSSData->strStateFilePath;
688
689 if (!pSnapshotToIgnore || pSnapshotToIgnore != this)
690 if (path.isNotEmpty())
691 if (path == strPath)
692 return true; // no need to recurse then
693
694 // but otherwise we must check children
695 for (SnapshotsList::const_iterator it = m->llChildren.begin();
696 it != m->llChildren.end();
697 ++it)
698 {
699 Snapshot *pChild = *it;
700 if (!pSnapshotToIgnore || pSnapshotToIgnore != pChild)
701 if (pChild->i_sharesSavedStateFile(strPath, pSnapshotToIgnore))
702 return true;
703 }
704
705 return false;
706}
707
708
709/**
710 * Checks if the specified path change affects the saved state file path of
711 * this snapshot or any of its (grand-)children and updates it accordingly.
712 *
713 * Intended to be called by Machine::openConfigLoader() only.
714 *
715 * @param aOldPath old path (full)
716 * @param aNewPath new path (full)
717 *
718 * @note Locks the machine (for the snapshots tree) + this object + children for writing.
719 */
720void Snapshot::i_updateSavedStatePaths(const Utf8Str &strOldPath,
721 const Utf8Str &strNewPath)
722{
723 LogFlowThisFunc(("aOldPath={%s} aNewPath={%s}\n", strOldPath.c_str(), strNewPath.c_str()));
724
725 AutoCaller autoCaller(this);
726 AssertComRC(autoCaller.rc());
727
728 // snapshots tree is protected by machine lock
729 AutoWriteLock alock(m->pMachine COMMA_LOCKVAL_SRC_POS);
730
731 // call the implementation under the tree lock
732 i_updateSavedStatePathsImpl(strOldPath, strNewPath);
733}
734
735/**
736 * Saves the settings attributes of one snapshot.
737 *
738 * @param data Target for saving snapshot settings.
739 * @return
740 */
741HRESULT Snapshot::i_saveSnapshotImplOne(settings::Snapshot &data) const
742{
743 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
744
745 data.uuid = m->uuid;
746 data.strName = m->strName;
747 data.timestamp = m->timeStamp;
748 data.strDescription = m->strDescription;
749
750 // state file (only if this snapshot is online)
751 if (i_getStateFilePath().isNotEmpty())
752 m->pMachine->i_copyPathRelativeToMachine(i_getStateFilePath(), data.strStateFile);
753 else
754 data.strStateFile.setNull();
755
756 HRESULT rc = m->pMachine->i_saveHardware(data.hardware, &data.debugging, &data.autostart);
757 if (FAILED(rc)) return rc;
758
759 rc = m->pMachine->i_saveStorageControllers(data.storage);
760 if (FAILED(rc)) return rc;
761
762 return S_OK;
763}
764
765/**
766 * Internal implementation for Snapshot::saveSnapshot (below). Caller has
767 * requested the snapshots tree (machine) lock.
768 *
769 * @param data Target for saving snapshot settings.
770 * @return
771 */
772HRESULT Snapshot::i_saveSnapshotImpl(settings::Snapshot &data) const
773{
774 HRESULT rc = i_saveSnapshotImplOne(data);
775 if (FAILED(rc))
776 return rc;
777
778 settings::SnapshotsList &llSettingsChildren = data.llChildSnapshots;
779 for (SnapshotsList::const_iterator it = m->llChildren.begin();
780 it != m->llChildren.end();
781 ++it)
782 {
783 // Use the heap (indirectly through the list container) to reduce the
784 // stack footprint, avoiding local settings objects on the stack which
785 // need a lot of stack space. There can be VMs with deeply nested
786 // snapshots. The stack can be quite small, especially with XPCOM.
787 llSettingsChildren.push_back(settings::g_SnapshotEmpty);
788 Snapshot *pSnap = *it;
789 rc = pSnap->i_saveSnapshotImpl(llSettingsChildren.back());
790 if (FAILED(rc))
791 {
792 llSettingsChildren.pop_back();
793 return rc;
794 }
795 }
796
797 return S_OK;
798}
799
800/**
801 * Saves the given snapshot and all its children.
802 * It is assumed that the given node is empty.
803 *
804 * @param data Target for saving snapshot settings.
805 */
806HRESULT Snapshot::i_saveSnapshot(settings::Snapshot &data) const
807{
808 // snapshots tree is protected by machine lock
809 AutoReadLock alock(m->pMachine COMMA_LOCKVAL_SRC_POS);
810
811 return i_saveSnapshotImpl(data);
812}
813
814/**
815 * Part of the cleanup engine of Machine::Unregister().
816 *
817 * This removes all medium attachments from the snapshot's machine and returns
818 * the snapshot's saved state file name, if any, and then calls uninit() on
819 * "this" itself.
820 *
821 * Caller must hold the machine write lock (which protects the snapshots tree!)
822 *
823 * @param writeLock Machine write lock, which can get released temporarily here.
824 * @param cleanupMode Cleanup mode; see Machine::detachAllMedia().
825 * @param llMedia List of media returned to caller, depending on cleanupMode.
826 * @param llFilenames
827 * @return
828 */
829HRESULT Snapshot::i_uninitOne(AutoWriteLock &writeLock,
830 CleanupMode_T cleanupMode,
831 MediaList &llMedia,
832 std::list<Utf8Str> &llFilenames)
833{
834 // now call detachAllMedia on the snapshot machine
835 HRESULT rc = m->pMachine->i_detachAllMedia(writeLock,
836 this /* pSnapshot */,
837 cleanupMode,
838 llMedia);
839 if (FAILED(rc))
840 return rc;
841
842 // report the saved state file if it's not on the list yet
843 if (!m->pMachine->mSSData->strStateFilePath.isEmpty())
844 {
845 bool fFound = false;
846 for (std::list<Utf8Str>::const_iterator it = llFilenames.begin();
847 it != llFilenames.end();
848 ++it)
849 {
850 const Utf8Str &str = *it;
851 if (str == m->pMachine->mSSData->strStateFilePath)
852 {
853 fFound = true;
854 break;
855 }
856 }
857 if (!fFound)
858 llFilenames.push_back(m->pMachine->mSSData->strStateFilePath);
859 }
860
861 i_beginSnapshotDelete();
862 uninit();
863
864 return S_OK;
865}
866
867/**
868 * Part of the cleanup engine of Machine::Unregister().
869 *
870 * This recursively removes all medium attachments from the snapshot's machine
871 * and returns the snapshot's saved state file name, if any, and then calls
872 * uninit() on "this" itself.
873 *
874 * This recurses into children first, so the given MediaList receives child
875 * media first before their parents. If the caller wants to close all media,
876 * they should go thru the list from the beginning to the end because media
877 * cannot be closed if they have children.
878 *
879 * This calls uninit() on itself, so the snapshots tree (beginning with a machine's pFirstSnapshot) becomes invalid after this.
880 * It does not alter the main machine's snapshot pointers (pFirstSnapshot, pCurrentSnapshot).
881 *
882 * Caller must hold the machine write lock (which protects the snapshots tree!)
883 *
884 * @param writeLock Machine write lock, which can get released temporarily here.
885 * @param cleanupMode Cleanup mode; see Machine::detachAllMedia().
886 * @param llMedia List of media returned to caller, depending on cleanupMode.
887 * @param llFilenames
888 * @return
889 */
890HRESULT Snapshot::i_uninitRecursively(AutoWriteLock &writeLock,
891 CleanupMode_T cleanupMode,
892 MediaList &llMedia,
893 std::list<Utf8Str> &llFilenames)
894{
895 Assert(m->pMachine->isWriteLockOnCurrentThread());
896
897 HRESULT rc = S_OK;
898
899 // make a copy of the Guid for logging before we uninit ourselves
900#ifdef LOG_ENABLED
901 Guid uuid = i_getId();
902 Utf8Str name = i_getName();
903 LogFlowThisFunc(("Entering for snapshot '%s' {%RTuuid}\n", name.c_str(), uuid.raw()));
904#endif
905
906 // Recurse into children first so that the child media appear on the list
907 // first; this way caller can close the media from the beginning to the end
908 // because parent media can't be closed if they have children and
909 // additionally it postpones the uninit() call until we no longer need
910 // anything from the list. Oh, and remember that the child removes itself
911 // from the list, so keep the iterator at the beginning.
912 for (SnapshotsList::const_iterator it = m->llChildren.begin();
913 it != m->llChildren.end();
914 it = m->llChildren.begin())
915 {
916 Snapshot *pChild = *it;
917 rc = pChild->i_uninitRecursively(writeLock, cleanupMode, llMedia, llFilenames);
918 if (FAILED(rc))
919 break;
920 }
921
922 if (SUCCEEDED(rc))
923 rc = i_uninitOne(writeLock, cleanupMode, llMedia, llFilenames);
924
925#ifdef LOG_ENABLED
926 LogFlowThisFunc(("Leaving for snapshot '%s' {%RTuuid}: %Rhrc\n", name.c_str(), uuid.raw(), rc));
927#endif
928
929 return rc;
930}
931
932////////////////////////////////////////////////////////////////////////////////
933//
934// SnapshotMachine implementation
935//
936////////////////////////////////////////////////////////////////////////////////
937
938SnapshotMachine::SnapshotMachine()
939 : mMachine(NULL)
940{}
941
942SnapshotMachine::~SnapshotMachine()
943{}
944
945HRESULT SnapshotMachine::FinalConstruct()
946{
947 LogFlowThisFunc(("\n"));
948
949 return BaseFinalConstruct();
950}
951
952void SnapshotMachine::FinalRelease()
953{
954 LogFlowThisFunc(("\n"));
955
956 uninit();
957
958 BaseFinalRelease();
959}
960
961/**
962 * Initializes the SnapshotMachine object when taking a snapshot.
963 *
964 * @param aSessionMachine machine to take a snapshot from
965 * @param aSnapshotId snapshot ID of this snapshot machine
966 * @param aStateFilePath file where the execution state will be later saved
967 * (or NULL for the offline snapshot)
968 *
969 * @note The aSessionMachine must be locked for writing.
970 */
971HRESULT SnapshotMachine::init(SessionMachine *aSessionMachine,
972 IN_GUID aSnapshotId,
973 const Utf8Str &aStateFilePath)
974{
975 LogFlowThisFuncEnter();
976 LogFlowThisFunc(("mName={%s}\n", aSessionMachine->mUserData->s.strName.c_str()));
977
978 Guid l_guid(aSnapshotId);
979 AssertReturn(aSessionMachine && (!l_guid.isZero() && l_guid.isValid()), E_INVALIDARG);
980
981 /* Enclose the state transition NotReady->InInit->Ready */
982 AutoInitSpan autoInitSpan(this);
983 AssertReturn(autoInitSpan.isOk(), E_FAIL);
984
985 AssertReturn(aSessionMachine->isWriteLockOnCurrentThread(), E_FAIL);
986
987 mSnapshotId = aSnapshotId;
988 ComObjPtr<Machine> pMachine = aSessionMachine->mPeer;
989
990 /* mPeer stays NULL */
991 /* memorize the primary Machine instance (i.e. not SessionMachine!) */
992 unconst(mMachine) = pMachine;
993 /* share the parent pointer */
994 unconst(mParent) = pMachine->mParent;
995
996 /* take the pointer to Data to share */
997 mData.share(pMachine->mData);
998
999 /* take the pointer to UserData to share (our UserData must always be the
1000 * same as Machine's data) */
1001 mUserData.share(pMachine->mUserData);
1002 /* make a private copy of all other data (recent changes from SessionMachine) */
1003 mHWData.attachCopy(aSessionMachine->mHWData);
1004 mMediaData.attachCopy(aSessionMachine->mMediaData);
1005
1006 /* SSData is always unique for SnapshotMachine */
1007 mSSData.allocate();
1008 mSSData->strStateFilePath = aStateFilePath;
1009
1010 HRESULT rc = S_OK;
1011
1012 /* create copies of all shared folders (mHWData after attaching a copy
1013 * contains just references to original objects) */
1014 for (HWData::SharedFolderList::iterator it = mHWData->mSharedFolders.begin();
1015 it != mHWData->mSharedFolders.end();
1016 ++it)
1017 {
1018 ComObjPtr<SharedFolder> folder;
1019 folder.createObject();
1020 rc = folder->initCopy(this, *it);
1021 if (FAILED(rc)) return rc;
1022 *it = folder;
1023 }
1024
1025 /* associate hard disks with the snapshot
1026 * (Machine::uninitDataAndChildObjects() will deassociate at destruction) */
1027 for (MediaData::AttachmentList::const_iterator it = mMediaData->mAttachments.begin();
1028 it != mMediaData->mAttachments.end();
1029 ++it)
1030 {
1031 MediumAttachment *pAtt = *it;
1032 Medium *pMedium = pAtt->i_getMedium();
1033 if (pMedium) // can be NULL for non-harddisk
1034 {
1035 rc = pMedium->i_addBackReference(mData->mUuid, mSnapshotId);
1036 AssertComRC(rc);
1037 }
1038 }
1039
1040 /* create copies of all storage controllers (mStorageControllerData
1041 * after attaching a copy contains just references to original objects) */
1042 mStorageControllers.allocate();
1043 for (StorageControllerList::const_iterator
1044 it = aSessionMachine->mStorageControllers->begin();
1045 it != aSessionMachine->mStorageControllers->end();
1046 ++it)
1047 {
1048 ComObjPtr<StorageController> ctrl;
1049 ctrl.createObject();
1050 ctrl->initCopy(this, *it);
1051 mStorageControllers->push_back(ctrl);
1052 }
1053
1054 /* create all other child objects that will be immutable private copies */
1055
1056 unconst(mBIOSSettings).createObject();
1057 mBIOSSettings->initCopy(this, pMachine->mBIOSSettings);
1058
1059 unconst(mVRDEServer).createObject();
1060 mVRDEServer->initCopy(this, pMachine->mVRDEServer);
1061
1062 unconst(mAudioAdapter).createObject();
1063 mAudioAdapter->initCopy(this, pMachine->mAudioAdapter);
1064
1065 /* create copies of all USB controllers (mUSBControllerData
1066 * after attaching a copy contains just references to original objects) */
1067 mUSBControllers.allocate();
1068 for (USBControllerList::const_iterator
1069 it = aSessionMachine->mUSBControllers->begin();
1070 it != aSessionMachine->mUSBControllers->end();
1071 ++it)
1072 {
1073 ComObjPtr<USBController> ctrl;
1074 ctrl.createObject();
1075 ctrl->initCopy(this, *it);
1076 mUSBControllers->push_back(ctrl);
1077 }
1078
1079 unconst(mUSBDeviceFilters).createObject();
1080 mUSBDeviceFilters->initCopy(this, pMachine->mUSBDeviceFilters);
1081
1082 mNetworkAdapters.resize(pMachine->mNetworkAdapters.size());
1083 for (ULONG slot = 0; slot < mNetworkAdapters.size(); slot++)
1084 {
1085 unconst(mNetworkAdapters[slot]).createObject();
1086 mNetworkAdapters[slot]->initCopy(this, pMachine->mNetworkAdapters[slot]);
1087 }
1088
1089 for (ULONG slot = 0; slot < RT_ELEMENTS(mSerialPorts); slot++)
1090 {
1091 unconst(mSerialPorts[slot]).createObject();
1092 mSerialPorts[slot]->initCopy(this, pMachine->mSerialPorts[slot]);
1093 }
1094
1095 for (ULONG slot = 0; slot < RT_ELEMENTS(mParallelPorts); slot++)
1096 {
1097 unconst(mParallelPorts[slot]).createObject();
1098 mParallelPorts[slot]->initCopy(this, pMachine->mParallelPorts[slot]);
1099 }
1100
1101 unconst(mBandwidthControl).createObject();
1102 mBandwidthControl->initCopy(this, pMachine->mBandwidthControl);
1103
1104 /* Confirm a successful initialization when it's the case */
1105 autoInitSpan.setSucceeded();
1106
1107 LogFlowThisFuncLeave();
1108 return S_OK;
1109}
1110
1111/**
1112 * Initializes the SnapshotMachine object when loading from the settings file.
1113 *
1114 * @param aMachine machine the snapshot belongs to
1115 * @param aHWNode <Hardware> node
1116 * @param aHDAsNode <HardDiskAttachments> node
1117 * @param aSnapshotId snapshot ID of this snapshot machine
1118 * @param aStateFilePath file where the execution state is saved
1119 * (or NULL for the offline snapshot)
1120 *
1121 * @note Doesn't lock anything.
1122 */
1123HRESULT SnapshotMachine::initFromSettings(Machine *aMachine,
1124 const settings::Hardware &hardware,
1125 const settings::Debugging *pDbg,
1126 const settings::Autostart *pAutostart,
1127 const settings::Storage &storage,
1128 IN_GUID aSnapshotId,
1129 const Utf8Str &aStateFilePath)
1130{
1131 LogFlowThisFuncEnter();
1132 LogFlowThisFunc(("mName={%s}\n", aMachine->mUserData->s.strName.c_str()));
1133
1134 Guid l_guid(aSnapshotId);
1135 AssertReturn(aMachine && (!l_guid.isZero() && l_guid.isValid()), E_INVALIDARG);
1136
1137 /* Enclose the state transition NotReady->InInit->Ready */
1138 AutoInitSpan autoInitSpan(this);
1139 AssertReturn(autoInitSpan.isOk(), E_FAIL);
1140
1141 /* Don't need to lock aMachine when VirtualBox is starting up */
1142
1143 mSnapshotId = aSnapshotId;
1144
1145 /* mPeer stays NULL */
1146 /* memorize the primary Machine instance (i.e. not SessionMachine!) */
1147 unconst(mMachine) = aMachine;
1148 /* share the parent pointer */
1149 unconst(mParent) = aMachine->mParent;
1150
1151 /* take the pointer to Data to share */
1152 mData.share(aMachine->mData);
1153 /*
1154 * take the pointer to UserData to share
1155 * (our UserData must always be the same as Machine's data)
1156 */
1157 mUserData.share(aMachine->mUserData);
1158 /* allocate private copies of all other data (will be loaded from settings) */
1159 mHWData.allocate();
1160 mMediaData.allocate();
1161 mStorageControllers.allocate();
1162 mUSBControllers.allocate();
1163
1164 /* SSData is always unique for SnapshotMachine */
1165 mSSData.allocate();
1166 mSSData->strStateFilePath = aStateFilePath;
1167
1168 /* create all other child objects that will be immutable private copies */
1169
1170 unconst(mBIOSSettings).createObject();
1171 mBIOSSettings->init(this);
1172
1173 unconst(mVRDEServer).createObject();
1174 mVRDEServer->init(this);
1175
1176 unconst(mAudioAdapter).createObject();
1177 mAudioAdapter->init(this);
1178
1179 unconst(mUSBDeviceFilters).createObject();
1180 mUSBDeviceFilters->init(this);
1181
1182 mNetworkAdapters.resize(Global::getMaxNetworkAdapters(mHWData->mChipsetType));
1183 for (ULONG slot = 0; slot < mNetworkAdapters.size(); slot++)
1184 {
1185 unconst(mNetworkAdapters[slot]).createObject();
1186 mNetworkAdapters[slot]->init(this, slot);
1187 }
1188
1189 for (ULONG slot = 0; slot < RT_ELEMENTS(mSerialPorts); slot++)
1190 {
1191 unconst(mSerialPorts[slot]).createObject();
1192 mSerialPorts[slot]->init(this, slot);
1193 }
1194
1195 for (ULONG slot = 0; slot < RT_ELEMENTS(mParallelPorts); slot++)
1196 {
1197 unconst(mParallelPorts[slot]).createObject();
1198 mParallelPorts[slot]->init(this, slot);
1199 }
1200
1201 unconst(mBandwidthControl).createObject();
1202 mBandwidthControl->init(this);
1203
1204 /* load hardware and harddisk settings */
1205
1206 HRESULT rc = i_loadHardware(hardware, pDbg, pAutostart);
1207 if (SUCCEEDED(rc))
1208 rc = i_loadStorageControllers(storage,
1209 NULL, /* puuidRegistry */
1210 &mSnapshotId);
1211
1212 if (SUCCEEDED(rc))
1213 /* commit all changes made during the initialization */
1214 i_commit(); /// @todo r=dj why do we need a commit in init?!? this is very expensive
1215 /// @todo r=klaus for some reason the settings loading logic backs up
1216 // the settings, and therefore a commit is needed. Should probably be changed.
1217
1218 /* Confirm a successful initialization when it's the case */
1219 if (SUCCEEDED(rc))
1220 autoInitSpan.setSucceeded();
1221
1222 LogFlowThisFuncLeave();
1223 return rc;
1224}
1225
1226/**
1227 * Uninitializes this SnapshotMachine object.
1228 */
1229void SnapshotMachine::uninit()
1230{
1231 LogFlowThisFuncEnter();
1232
1233 /* Enclose the state transition Ready->InUninit->NotReady */
1234 AutoUninitSpan autoUninitSpan(this);
1235 if (autoUninitSpan.uninitDone())
1236 return;
1237
1238 uninitDataAndChildObjects();
1239
1240 /* free the essential data structure last */
1241 mData.free();
1242
1243 unconst(mMachine) = NULL;
1244 unconst(mParent) = NULL;
1245 unconst(mPeer) = NULL;
1246
1247 LogFlowThisFuncLeave();
1248}
1249
1250/**
1251 * Overrides VirtualBoxBase::lockHandle() in order to share the lock handle
1252 * with the primary Machine instance (mMachine) if it exists.
1253 */
1254RWLockHandle *SnapshotMachine::lockHandle() const
1255{
1256 AssertReturn(mMachine != NULL, NULL);
1257 return mMachine->lockHandle();
1258}
1259
1260////////////////////////////////////////////////////////////////////////////////
1261//
1262// SnapshotMachine public internal methods
1263//
1264////////////////////////////////////////////////////////////////////////////////
1265
1266/**
1267 * Called by the snapshot object associated with this SnapshotMachine when
1268 * snapshot data such as name or description is changed.
1269 *
1270 * @warning Caller must hold no locks when calling this.
1271 */
1272HRESULT SnapshotMachine::i_onSnapshotChange(Snapshot *aSnapshot)
1273{
1274 AutoMultiWriteLock2 mlock(this, aSnapshot COMMA_LOCKVAL_SRC_POS);
1275 Guid uuidMachine(mData->mUuid),
1276 uuidSnapshot(aSnapshot->i_getId());
1277 bool fNeedsGlobalSaveSettings = false;
1278
1279 /* Flag the machine as dirty or change won't get saved. We disable the
1280 * modification of the current state flag, cause this snapshot data isn't
1281 * related to the current state. */
1282 mMachine->i_setModified(Machine::IsModified_Snapshots, false /* fAllowStateModification */);
1283 HRESULT rc = mMachine->i_saveSettings(&fNeedsGlobalSaveSettings,
1284 SaveS_Force); // we know we need saving, no need to check
1285 mlock.release();
1286
1287 if (SUCCEEDED(rc) && fNeedsGlobalSaveSettings)
1288 {
1289 // save the global settings
1290 AutoWriteLock vboxlock(mParent COMMA_LOCKVAL_SRC_POS);
1291 rc = mParent->i_saveSettings();
1292 }
1293
1294 /* inform callbacks */
1295 mParent->i_onSnapshotChange(uuidMachine, uuidSnapshot);
1296
1297 return rc;
1298}
1299
1300////////////////////////////////////////////////////////////////////////////////
1301//
1302// SessionMachine task records
1303//
1304////////////////////////////////////////////////////////////////////////////////
1305
1306/**
1307 * Still abstract base class for SessionMachine::TakeSnapshotTask,
1308 * SessionMachine::RestoreSnapshotTask and SessionMachine::DeleteSnapshotTask.
1309 */
1310struct SessionMachine::SnapshotTask
1311 : public SessionMachine::Task
1312{
1313 SnapshotTask(SessionMachine *m,
1314 Progress *p,
1315 const Utf8Str &t,
1316 Snapshot *s)
1317 : Task(m, p, t),
1318 m_pSnapshot(s)
1319 {}
1320
1321 ComObjPtr<Snapshot> m_pSnapshot;
1322};
1323
1324/** Take snapshot task */
1325struct SessionMachine::TakeSnapshotTask
1326 : public SessionMachine::SnapshotTask
1327{
1328 TakeSnapshotTask(SessionMachine *m,
1329 Progress *p,
1330 const Utf8Str &t,
1331 Snapshot *s,
1332 const Utf8Str &strName,
1333 const Utf8Str &strDescription,
1334 bool fPause,
1335 uint32_t uMemSize,
1336 bool fTakingSnapshotOnline)
1337 : SnapshotTask(m, p, t, s),
1338 m_strName(strName),
1339 m_strDescription(strDescription),
1340 m_fPause(fPause),
1341 m_uMemSize(uMemSize),
1342 m_fTakingSnapshotOnline(fTakingSnapshotOnline)
1343 {
1344 if (fTakingSnapshotOnline)
1345 m_pDirectControl = m->mData->mSession.mDirectControl;
1346 // If the VM is already paused then there's no point trying to pause
1347 // again during taking an (always online) snapshot.
1348 if (m_machineStateBackup == MachineState_Paused)
1349 m_fPause = false;
1350 }
1351
1352 void handler()
1353 {
1354 ((SessionMachine *)(Machine *)m_pMachine)->i_takeSnapshotHandler(*this);
1355 }
1356
1357 Utf8Str m_strName;
1358 Utf8Str m_strDescription;
1359 Utf8Str m_strStateFilePath;
1360 ComPtr<IInternalSessionControl> m_pDirectControl;
1361 bool m_fPause;
1362 uint32_t m_uMemSize;
1363 bool m_fTakingSnapshotOnline;
1364};
1365
1366/** Restore snapshot task */
1367struct SessionMachine::RestoreSnapshotTask
1368 : public SessionMachine::SnapshotTask
1369{
1370 RestoreSnapshotTask(SessionMachine *m,
1371 Progress *p,
1372 const Utf8Str &t,
1373 Snapshot *s)
1374 : SnapshotTask(m, p, t, s)
1375 {}
1376
1377 void handler()
1378 {
1379 ((SessionMachine *)(Machine *)m_pMachine)->i_restoreSnapshotHandler(*this);
1380 }
1381};
1382
1383/** Delete snapshot task */
1384struct SessionMachine::DeleteSnapshotTask
1385 : public SessionMachine::SnapshotTask
1386{
1387 DeleteSnapshotTask(SessionMachine *m,
1388 Progress *p,
1389 const Utf8Str &t,
1390 bool fDeleteOnline,
1391 Snapshot *s)
1392 : SnapshotTask(m, p, t, s),
1393 m_fDeleteOnline(fDeleteOnline)
1394 {}
1395
1396 void handler()
1397 {
1398 ((SessionMachine *)(Machine *)m_pMachine)->i_deleteSnapshotHandler(*this);
1399 }
1400
1401 bool m_fDeleteOnline;
1402};
1403
1404
1405////////////////////////////////////////////////////////////////////////////////
1406//
1407// TakeSnapshot methods (Machine and related tasks)
1408//
1409////////////////////////////////////////////////////////////////////////////////
1410
1411HRESULT Machine::takeSnapshot(const com::Utf8Str &aName,
1412 const com::Utf8Str &aDescription,
1413 BOOL fPause,
1414 ComPtr<IProgress> &aProgress)
1415{
1416 NOREF(aName);
1417 NOREF(aDescription);
1418 NOREF(fPause);
1419 NOREF(aProgress);
1420 ReturnComNotImplemented();
1421}
1422
1423HRESULT SessionMachine::takeSnapshot(const com::Utf8Str &aName,
1424 const com::Utf8Str &aDescription,
1425 BOOL fPause,
1426 ComPtr<IProgress> &aProgress)
1427{
1428 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1429 LogFlowThisFunc(("aName='%s' mMachineState=%d\n", aName.c_str(), mData->mMachineState));
1430
1431 if (Global::IsTransient(mData->mMachineState))
1432 return setError(VBOX_E_INVALID_VM_STATE,
1433 tr("Cannot take a snapshot of the machine while it is changing the state (machine state: %s)"),
1434 Global::stringifyMachineState(mData->mMachineState));
1435
1436 HRESULT rc = i_checkStateDependency(MutableOrSavedOrRunningStateDep);
1437 if (FAILED(rc))
1438 return rc;
1439
1440 // prepare the progress object:
1441 // a) count the no. of hard disk attachments to get a matching no. of progress sub-operations
1442 ULONG cOperations = 2; // always at least setting up + finishing up
1443 ULONG ulTotalOperationsWeight = 2; // one each for setting up + finishing up
1444
1445 for (MediaData::AttachmentList::iterator it = mMediaData->mAttachments.begin();
1446 it != mMediaData->mAttachments.end();
1447 ++it)
1448 {
1449 const ComObjPtr<MediumAttachment> pAtt(*it);
1450 AutoReadLock attlock(pAtt COMMA_LOCKVAL_SRC_POS);
1451 AutoCaller attCaller(pAtt);
1452 if (pAtt->i_getType() == DeviceType_HardDisk)
1453 {
1454 ++cOperations;
1455
1456 // assume that creating a diff image takes as long as saving a 1MB state
1457 ulTotalOperationsWeight += 1;
1458 }
1459 }
1460
1461 // b) one extra sub-operations for online snapshots OR offline snapshots that have a saved state (needs to be copied)
1462 const bool fTakingSnapshotOnline = Global::IsOnline(mData->mMachineState);
1463 LogFlowThisFunc(("fTakingSnapshotOnline = %d\n", fTakingSnapshotOnline));
1464 if (fTakingSnapshotOnline)
1465 {
1466 ++cOperations;
1467 ulTotalOperationsWeight += mHWData->mMemorySize;
1468 }
1469
1470 // finally, create the progress object
1471 ComObjPtr<Progress> pProgress;
1472 pProgress.createObject();
1473 rc = pProgress->init(mParent,
1474 static_cast<IMachine *>(this),
1475 Bstr(tr("Taking a snapshot of the virtual machine")).raw(),
1476 fTakingSnapshotOnline /* aCancelable */,
1477 cOperations,
1478 ulTotalOperationsWeight,
1479 Bstr(tr("Setting up snapshot operation")).raw(), // first sub-op description
1480 1); // ulFirstOperationWeight
1481 if (FAILED(rc))
1482 return rc;
1483
1484 /* create and start the task on a separate thread (note that it will not
1485 * start working until we release alock) */
1486 TakeSnapshotTask *pTask = new TakeSnapshotTask(this,
1487 pProgress,
1488 "TakeSnap",
1489 NULL /* pSnapshot */,
1490 aName,
1491 aDescription,
1492 !!fPause,
1493 mHWData->mMemorySize,
1494 fTakingSnapshotOnline);
1495 rc = pTask->createThread();
1496 if (FAILED(rc))
1497 return rc;
1498
1499 /* set the proper machine state (note: after creating a Task instance) */
1500 if (fTakingSnapshotOnline)
1501 {
1502 if (pTask->m_machineStateBackup != MachineState_Paused && !fPause)
1503 i_setMachineState(MachineState_LiveSnapshotting);
1504 else
1505 i_setMachineState(MachineState_OnlineSnapshotting);
1506 i_updateMachineStateOnClient();
1507 }
1508 else
1509 i_setMachineState(MachineState_Snapshotting);
1510
1511 pTask->m_pProgress.queryInterfaceTo(aProgress.asOutParam());
1512
1513 return rc;
1514}
1515
1516/**
1517 * Task thread implementation for SessionMachine::TakeSnapshot(), called from
1518 * SessionMachine::taskHandler().
1519 *
1520 * @note Locks this object for writing.
1521 *
1522 * @param task
1523 * @return
1524 */
1525void SessionMachine::i_takeSnapshotHandler(TakeSnapshotTask &task)
1526{
1527 LogFlowThisFuncEnter();
1528
1529 // Taking a snapshot consists of the following:
1530 // 1) creating a Snapshot object with the current state of the machine
1531 // (hardware + storage)
1532 // 2) creating a diff image for each virtual hard disk, into which write
1533 // operations go after the snapshot has been created
1534 // 3) if the machine is online: saving the state of the virtual machine
1535 // (in the VM process)
1536 // 4) reattach the hard disks
1537 // 5) update the various snapshot/machine objects, save settings
1538
1539 HRESULT rc = S_OK;
1540 AutoCaller autoCaller(this);
1541 LogFlowThisFunc(("state=%d\n", getObjectState().getState()));
1542 if (FAILED(autoCaller.rc()))
1543 {
1544 /* we might have been uninitialized because the session was accidentally
1545 * closed by the client, so don't assert */
1546 rc = setError(E_FAIL,
1547 tr("The session has been accidentally closed"));
1548 task.m_pProgress->i_notifyComplete(rc);
1549 LogFlowThisFuncLeave();
1550 return;
1551 }
1552
1553 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1554
1555 bool fBeganTakingSnapshot = false;
1556 BOOL fSuspendedBySave = FALSE;
1557
1558 try
1559 {
1560 // @todo: at this point we have to be in the right state!!!!
1561 AssertStmt( mData->mMachineState == MachineState_Snapshotting
1562 || mData->mMachineState == MachineState_OnlineSnapshotting
1563 || mData->mMachineState == MachineState_LiveSnapshotting, throw E_FAIL);
1564 AssertStmt(task.m_machineStateBackup != mData->mMachineState, throw E_FAIL);
1565 AssertStmt(task.m_pSnapshot.isNull(), throw E_FAIL);
1566
1567 if ( mData->mCurrentSnapshot
1568 && mData->mCurrentSnapshot->i_getDepth() >= SETTINGS_SNAPSHOT_DEPTH_MAX)
1569 {
1570 throw setError(VBOX_E_INVALID_OBJECT_STATE,
1571 tr("Cannot take another snapshot for machine '%s', because it exceeds the maximum snapshot depth limit. Please delete some earlier snapshot which you no longer need"),
1572 mUserData->s.strName.c_str());
1573 }
1574
1575 /* save settings to ensure current changes are committed and
1576 * hard disks are fixed up */
1577 rc = i_saveSettings(NULL);
1578 // no need to check for whether VirtualBox.xml needs changing since
1579 // we can't have a machine XML rename pending at this point
1580 if (FAILED(rc))
1581 throw rc;
1582
1583 /* task.m_strStateFilePath is "" when the machine is offline or saved */
1584 if (task.m_fTakingSnapshotOnline)
1585 {
1586 Bstr value;
1587 rc = GetExtraData(Bstr("VBoxInternal2/ForceTakeSnapshotWithoutState").raw(),
1588 value.asOutParam());
1589 if (FAILED(rc) || value != "1")
1590 // creating a new online snapshot: we need a fresh saved state file
1591 i_composeSavedStateFilename(task.m_strStateFilePath);
1592 }
1593 else if (task.m_machineStateBackup == MachineState_Saved)
1594 // taking an offline snapshot from machine in "saved" state: use existing state file
1595 task.m_strStateFilePath = mSSData->strStateFilePath;
1596
1597 if (task.m_strStateFilePath.isNotEmpty())
1598 {
1599 // ensure the directory for the saved state file exists
1600 rc = VirtualBox::i_ensureFilePathExists(task.m_strStateFilePath, true /* fCreate */);
1601 if (FAILED(rc))
1602 throw rc;
1603 }
1604
1605 /* STEP 1: create the snapshot object */
1606
1607 /* create an ID for the snapshot */
1608 Guid snapshotId;
1609 snapshotId.create();
1610
1611 /* create a snapshot machine object */
1612 ComObjPtr<SnapshotMachine> pSnapshotMachine;
1613 pSnapshotMachine.createObject();
1614 rc = pSnapshotMachine->init(this, snapshotId.ref(), task.m_strStateFilePath);
1615 AssertComRCThrowRC(rc);
1616
1617 /* create a snapshot object */
1618 RTTIMESPEC time;
1619 RTTimeNow(&time);
1620 task.m_pSnapshot.createObject();
1621 rc = task.m_pSnapshot->init(mParent,
1622 snapshotId,
1623 task.m_strName,
1624 task.m_strDescription,
1625 time,
1626 pSnapshotMachine,
1627 mData->mCurrentSnapshot);
1628 AssertComRCThrowRC(rc);
1629
1630 /* STEP 2: create the diff images */
1631 LogFlowThisFunc(("Creating differencing hard disks (online=%d)...\n",
1632 task.m_fTakingSnapshotOnline));
1633
1634 // Backup the media data so we can recover if something goes wrong.
1635 // The matching commit() is in fixupMedia() during SessionMachine::i_finishTakingSnapshot()
1636 i_setModified(IsModified_Storage);
1637 mMediaData.backup();
1638
1639 alock.release();
1640 /* create new differencing hard disks and attach them to this machine */
1641 rc = i_createImplicitDiffs(task.m_pProgress,
1642 1, // operation weight; must be the same as in Machine::TakeSnapshot()
1643 task.m_fTakingSnapshotOnline);
1644 if (FAILED(rc))
1645 throw rc;
1646 alock.acquire();
1647
1648 // MUST NOT save the settings or the media registry here, because
1649 // this causes trouble with rolling back settings if the user cancels
1650 // taking the snapshot after the diff images have been created.
1651
1652 fBeganTakingSnapshot = true;
1653
1654 // STEP 3: save the VM state (if online)
1655 if (task.m_fTakingSnapshotOnline)
1656 {
1657 task.m_pProgress->SetNextOperation(Bstr(tr("Saving the machine state")).raw(),
1658 mHWData->mMemorySize); // operation weight, same as computed
1659 // when setting up progress object
1660
1661 if (task.m_strStateFilePath.isNotEmpty())
1662 {
1663 alock.release();
1664 task.m_pProgress->i_setCancelCallback(i_takeSnapshotProgressCancelCallback, &task);
1665 rc = task.m_pDirectControl->SaveStateWithReason(Reason_Snapshot,
1666 task.m_pProgress,
1667 Bstr(task.m_strStateFilePath).raw(),
1668 task.m_fPause,
1669 &fSuspendedBySave);
1670 task.m_pProgress->i_setCancelCallback(NULL, NULL);
1671 alock.acquire();
1672 if (FAILED(rc))
1673 throw rc;
1674 }
1675 else
1676 LogRel(("Machine: skipped saving state as part of online snapshot\n"));
1677
1678 if (!task.m_pProgress->i_notifyPointOfNoReturn())
1679 throw setError(E_FAIL, tr("Canceled"));
1680
1681 // STEP 4: reattach hard disks
1682 LogFlowThisFunc(("Reattaching new differencing hard disks...\n"));
1683
1684 task.m_pProgress->SetNextOperation(Bstr(tr("Reconfiguring medium attachments")).raw(),
1685 1); // operation weight, same as computed when setting up progress object
1686
1687 com::SafeIfaceArray<IMediumAttachment> atts;
1688 rc = COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(atts));
1689 if (FAILED(rc))
1690 throw rc;
1691
1692 alock.release();
1693 rc = task.m_pDirectControl->ReconfigureMediumAttachments(ComSafeArrayAsInParam(atts));
1694 alock.acquire();
1695 if (FAILED(rc))
1696 throw rc;
1697 }
1698
1699 /*
1700 * Finalize the requested snapshot object. This will reset the
1701 * machine state to the state it had at the beginning.
1702 */
1703 rc = i_finishTakingSnapshot(task, alock, true /*aSuccess*/);
1704 // do not throw rc here because we can't call i_finishTakingSnapshot() twice
1705 LogFlowThisFunc(("i_finishTakingSnapshot -> %Rhrc [mMachineState=%s]\n", rc, Global::stringifyMachineState(mData->mMachineState)));
1706 }
1707 catch (HRESULT rcThrown)
1708 {
1709 rc = rcThrown;
1710 LogThisFunc(("Caught %Rhrc [mMachineState=%s]\n", rc, Global::stringifyMachineState(mData->mMachineState)));
1711
1712 // @todo r=klaus check that the implicit diffs created above are cleaned up im the relevant error cases
1713
1714 /* preserve existing error info */
1715 ErrorInfoKeeper eik;
1716
1717 if (fBeganTakingSnapshot)
1718 i_finishTakingSnapshot(task, alock, false /*aSuccess*/);
1719
1720 // have to postpone this to the end as i_finishTakingSnapshot() needs
1721 // it for various cleanup steps
1722 if (task.m_pSnapshot)
1723 {
1724 task.m_pSnapshot->uninit();
1725 task.m_pSnapshot.setNull();
1726 }
1727 }
1728 Assert(alock.isWriteLockOnCurrentThread());
1729
1730 {
1731 // Keep all error information over the cleanup steps
1732 ErrorInfoKeeper eik;
1733
1734 /*
1735 * Fix up the machine state.
1736 *
1737 * For offline snapshots we just update the local copy, for the other
1738 * variants do the entire work. This ensures that the state is in sync
1739 * with the VM process (in particular the VM execution state).
1740 */
1741 bool fNeedClientMachineStateUpdate = false;
1742 if ( mData->mMachineState == MachineState_LiveSnapshotting
1743 || mData->mMachineState == MachineState_OnlineSnapshotting
1744 || mData->mMachineState == MachineState_Snapshotting)
1745 {
1746 if (!task.m_fTakingSnapshotOnline)
1747 i_setMachineState(task.m_machineStateBackup);
1748 else
1749 {
1750 MachineState_T enmMachineState = MachineState_Null;
1751 HRESULT rc2 = task.m_pDirectControl->COMGETTER(NominalState)(&enmMachineState);
1752 if (FAILED(rc2) || enmMachineState == MachineState_Null)
1753 {
1754 AssertMsgFailed(("state=%s\n", Global::stringifyMachineState(enmMachineState)));
1755 // pure nonsense, try to continue somehow
1756 enmMachineState = MachineState_Aborted;
1757 }
1758 if (enmMachineState == MachineState_Paused)
1759 {
1760 if (fSuspendedBySave)
1761 {
1762 alock.release();
1763 rc2 = task.m_pDirectControl->ResumeWithReason(Reason_Snapshot);
1764 alock.acquire();
1765 if (SUCCEEDED(rc2))
1766 enmMachineState = task.m_machineStateBackup;
1767 }
1768 else
1769 enmMachineState = task.m_machineStateBackup;
1770 }
1771 if (enmMachineState != mData->mMachineState)
1772 {
1773 fNeedClientMachineStateUpdate = true;
1774 i_setMachineState(enmMachineState);
1775 }
1776 }
1777 }
1778
1779 /* check the remote state to see that we got it right. */
1780 MachineState_T enmMachineState = MachineState_Null;
1781 if (!task.m_pDirectControl.isNull())
1782 {
1783 ComPtr<IConsole> pConsole;
1784 task.m_pDirectControl->COMGETTER(RemoteConsole)(pConsole.asOutParam());
1785 if (!pConsole.isNull())
1786 pConsole->COMGETTER(State)(&enmMachineState);
1787 }
1788 LogFlowThisFunc(("local mMachineState=%s remote mMachineState=%s\n",
1789 Global::stringifyMachineState(mData->mMachineState),
1790 Global::stringifyMachineState(enmMachineState)));
1791
1792 if (fNeedClientMachineStateUpdate)
1793 i_updateMachineStateOnClient();
1794 }
1795
1796 task.m_pProgress->i_notifyComplete(rc);
1797
1798 if (SUCCEEDED(rc))
1799 mParent->i_onSnapshotTaken(mData->mUuid,
1800 task.m_pSnapshot->i_getId());
1801 LogFlowThisFuncLeave();
1802}
1803
1804
1805/**
1806 * Progress cancelation callback employed by SessionMachine::i_takeSnapshotHandler.
1807 */
1808/*static*/
1809void SessionMachine::i_takeSnapshotProgressCancelCallback(void *pvUser)
1810{
1811 TakeSnapshotTask *pTask = (TakeSnapshotTask *)pvUser;
1812 AssertPtrReturnVoid(pTask);
1813 AssertReturnVoid(!pTask->m_pDirectControl.isNull());
1814 pTask->m_pDirectControl->CancelSaveStateWithReason();
1815}
1816
1817
1818/**
1819 * Called by the Console when it's done saving the VM state into the snapshot
1820 * (if online) and reconfiguring the hard disks. See BeginTakingSnapshot() above.
1821 *
1822 * This also gets called if the console part of snapshotting failed after the
1823 * BeginTakingSnapshot() call, to clean up the server side.
1824 *
1825 * @note Locks VirtualBox and this object for writing.
1826 *
1827 * @param aSuccess Whether Console was successful with the client-side snapshot things.
1828 * @return
1829 */
1830HRESULT SessionMachine::i_finishTakingSnapshot(TakeSnapshotTask &task, AutoWriteLock &alock, bool aSuccess)
1831{
1832 LogFlowThisFunc(("\n"));
1833
1834 Assert(alock.isWriteLockOnCurrentThread());
1835
1836 AssertReturn( !aSuccess
1837 || mData->mMachineState == MachineState_Snapshotting
1838 || mData->mMachineState == MachineState_OnlineSnapshotting
1839 || mData->mMachineState == MachineState_LiveSnapshotting, E_FAIL);
1840
1841 ComObjPtr<Snapshot> pOldFirstSnap = mData->mFirstSnapshot;
1842 ComObjPtr<Snapshot> pOldCurrentSnap = mData->mCurrentSnapshot;
1843
1844 HRESULT rc = S_OK;
1845
1846 if (aSuccess)
1847 {
1848 // new snapshot becomes the current one
1849 mData->mCurrentSnapshot = task.m_pSnapshot;
1850
1851 /* memorize the first snapshot if necessary */
1852 if (!mData->mFirstSnapshot)
1853 mData->mFirstSnapshot = mData->mCurrentSnapshot;
1854
1855 int flSaveSettings = SaveS_Force; // do not do a deep compare in machine settings,
1856 // snapshots change, so we know we need to save
1857 if (!task.m_fTakingSnapshotOnline)
1858 /* the machine was powered off or saved when taking a snapshot, so
1859 * reset the mCurrentStateModified flag */
1860 flSaveSettings |= SaveS_ResetCurStateModified;
1861
1862 rc = i_saveSettings(NULL, flSaveSettings);
1863 }
1864
1865 if (aSuccess && SUCCEEDED(rc))
1866 {
1867 /* associate old hard disks with the snapshot and do locking/unlocking*/
1868 i_commitMedia(task.m_fTakingSnapshotOnline);
1869 alock.release();
1870 }
1871 else
1872 {
1873 /* delete all differencing hard disks created (this will also attach
1874 * their parents back by rolling back mMediaData) */
1875 alock.release();
1876
1877 i_rollbackMedia();
1878
1879 mData->mFirstSnapshot = pOldFirstSnap; // might have been changed above
1880 mData->mCurrentSnapshot = pOldCurrentSnap; // might have been changed above
1881
1882 // delete the saved state file (it might have been already created)
1883 if (task.m_fTakingSnapshotOnline)
1884 // no need to test for whether the saved state file is shared: an online
1885 // snapshot means that a new saved state file was created, which we must
1886 // clean up now
1887 RTFileDelete(task.m_pSnapshot->i_getStateFilePath().c_str());
1888
1889 alock.acquire();
1890
1891 task.m_pSnapshot->uninit();
1892 alock.release();
1893
1894 }
1895
1896 /* clear out the snapshot data */
1897 task.m_pSnapshot.setNull();
1898
1899 /* alock has been released already */
1900 mParent->i_saveModifiedRegistries();
1901
1902 alock.acquire();
1903
1904 return rc;
1905}
1906
1907////////////////////////////////////////////////////////////////////////////////
1908//
1909// RestoreSnapshot methods (Machine and related tasks)
1910//
1911////////////////////////////////////////////////////////////////////////////////
1912
1913HRESULT Machine::restoreSnapshot(const ComPtr<ISnapshot> &aSnapshot,
1914 ComPtr<IProgress> &aProgress)
1915{
1916 NOREF(aSnapshot);
1917 NOREF(aProgress);
1918 ReturnComNotImplemented();
1919}
1920
1921/**
1922 * Restoring a snapshot happens entirely on the server side, the machine cannot be running.
1923 *
1924 * This creates a new thread that does the work and returns a progress object to the client.
1925 * Actual work then takes place in RestoreSnapshotTask::handler().
1926 *
1927 * @note Locks this + children objects for writing!
1928 *
1929 * @param aSnapshot in: the snapshot to restore.
1930 * @param aProgress out: progress object to monitor restore thread.
1931 * @return
1932 */
1933HRESULT SessionMachine::restoreSnapshot(const ComPtr<ISnapshot> &aSnapshot,
1934 ComPtr<IProgress> &aProgress)
1935{
1936 LogFlowThisFuncEnter();
1937
1938 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1939
1940 // machine must not be running
1941 if (Global::IsOnlineOrTransient(mData->mMachineState))
1942 return setError(VBOX_E_INVALID_VM_STATE,
1943 tr("Cannot delete the current state of the running machine (machine state: %s)"),
1944 Global::stringifyMachineState(mData->mMachineState));
1945
1946 HRESULT rc = i_checkStateDependency(MutableOrSavedStateDep);
1947 if (FAILED(rc))
1948 return rc;
1949
1950 ISnapshot* iSnapshot = aSnapshot;
1951 ComObjPtr<Snapshot> pSnapshot(static_cast<Snapshot*>(iSnapshot));
1952 ComObjPtr<SnapshotMachine> pSnapMachine = pSnapshot->i_getSnapshotMachine();
1953
1954 // create a progress object. The number of operations is:
1955 // 1 (preparing) + # of hard disks + 1 (if we need to copy the saved state file) */
1956 LogFlowThisFunc(("Going thru snapshot machine attachments to determine progress setup\n"));
1957
1958 ULONG ulOpCount = 1; // one for preparations
1959 ULONG ulTotalWeight = 1; // one for preparations
1960 for (MediaData::AttachmentList::iterator it = pSnapMachine->mMediaData->mAttachments.begin();
1961 it != pSnapMachine->mMediaData->mAttachments.end();
1962 ++it)
1963 {
1964 ComObjPtr<MediumAttachment> &pAttach = *it;
1965 AutoReadLock attachLock(pAttach COMMA_LOCKVAL_SRC_POS);
1966 if (pAttach->i_getType() == DeviceType_HardDisk)
1967 {
1968 ++ulOpCount;
1969 ++ulTotalWeight; // assume one MB weight for each differencing hard disk to manage
1970 Assert(pAttach->i_getMedium());
1971 LogFlowThisFunc(("op %d: considering hard disk attachment %s\n", ulOpCount,
1972 pAttach->i_getMedium()->i_getName().c_str()));
1973 }
1974 }
1975
1976 ComObjPtr<Progress> pProgress;
1977 pProgress.createObject();
1978 pProgress->init(mParent, static_cast<IMachine*>(this),
1979 BstrFmt(tr("Restoring snapshot '%s'"), pSnapshot->i_getName().c_str()).raw(),
1980 FALSE /* aCancelable */,
1981 ulOpCount,
1982 ulTotalWeight,
1983 Bstr(tr("Restoring machine settings")).raw(),
1984 1);
1985
1986 /* create and start the task on a separate thread (note that it will not
1987 * start working until we release alock) */
1988 RestoreSnapshotTask *pTask = new RestoreSnapshotTask(this,
1989 pProgress,
1990 "RestoreSnap",
1991 pSnapshot);
1992 rc = pTask->createThread();
1993 if (FAILED(rc))
1994 return rc;
1995
1996 /* set the proper machine state (note: after creating a Task instance) */
1997 i_setMachineState(MachineState_RestoringSnapshot);
1998
1999 /* return the progress to the caller */
2000 pProgress.queryInterfaceTo(aProgress.asOutParam());
2001
2002 LogFlowThisFuncLeave();
2003
2004 return S_OK;
2005}
2006
2007/**
2008 * Worker method for the restore snapshot thread created by SessionMachine::RestoreSnapshot().
2009 * This method gets called indirectly through SessionMachine::taskHandler() which then
2010 * calls RestoreSnapshotTask::handler().
2011 *
2012 * The RestoreSnapshotTask contains the progress object returned to the console by
2013 * SessionMachine::RestoreSnapshot, through which progress and results are reported.
2014 *
2015 * @note Locks mParent + this object for writing.
2016 *
2017 * @param pTask Task data.
2018 */
2019void SessionMachine::i_restoreSnapshotHandler(RestoreSnapshotTask &task)
2020{
2021 LogFlowThisFuncEnter();
2022
2023 AutoCaller autoCaller(this);
2024
2025 LogFlowThisFunc(("state=%d\n", getObjectState().getState()));
2026 if (!autoCaller.isOk())
2027 {
2028 /* we might have been uninitialized because the session was accidentally
2029 * closed by the client, so don't assert */
2030 task.m_pProgress->i_notifyComplete(E_FAIL,
2031 COM_IIDOF(IMachine),
2032 getComponentName(),
2033 tr("The session has been accidentally closed"));
2034
2035 LogFlowThisFuncLeave();
2036 return;
2037 }
2038
2039 HRESULT rc = S_OK;
2040
2041 try
2042 {
2043 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2044
2045 /* Discard all current changes to mUserData (name, OSType etc.).
2046 * Note that the machine is powered off, so there is no need to inform
2047 * the direct session. */
2048 if (mData->flModifications)
2049 i_rollback(false /* aNotify */);
2050
2051 /* Delete the saved state file if the machine was Saved prior to this
2052 * operation */
2053 if (task.m_machineStateBackup == MachineState_Saved)
2054 {
2055 Assert(!mSSData->strStateFilePath.isEmpty());
2056
2057 // release the saved state file AFTER unsetting the member variable
2058 // so that releaseSavedStateFile() won't think it's still in use
2059 Utf8Str strStateFile(mSSData->strStateFilePath);
2060 mSSData->strStateFilePath.setNull();
2061 i_releaseSavedStateFile(strStateFile, NULL /* pSnapshotToIgnore */ );
2062
2063 task.modifyBackedUpState(MachineState_PoweredOff);
2064
2065 rc = i_saveStateSettings(SaveSTS_StateFilePath);
2066 if (FAILED(rc))
2067 throw rc;
2068 }
2069
2070 RTTIMESPEC snapshotTimeStamp;
2071 RTTimeSpecSetMilli(&snapshotTimeStamp, 0);
2072
2073 {
2074 AutoReadLock snapshotLock(task.m_pSnapshot COMMA_LOCKVAL_SRC_POS);
2075
2076 /* remember the timestamp of the snapshot we're restoring from */
2077 snapshotTimeStamp = task.m_pSnapshot->i_getTimeStamp();
2078
2079 ComPtr<SnapshotMachine> pSnapshotMachine(task.m_pSnapshot->i_getSnapshotMachine());
2080
2081 /* copy all hardware data from the snapshot */
2082 i_copyFrom(pSnapshotMachine);
2083
2084 LogFlowThisFunc(("Restoring hard disks from the snapshot...\n"));
2085
2086 // restore the attachments from the snapshot
2087 i_setModified(IsModified_Storage);
2088 mMediaData.backup();
2089 mMediaData->mAttachments.clear();
2090 for (MediaData::AttachmentList::const_iterator it = pSnapshotMachine->mMediaData->mAttachments.begin();
2091 it != pSnapshotMachine->mMediaData->mAttachments.end();
2092 ++it)
2093 {
2094 ComObjPtr<MediumAttachment> pAttach;
2095 pAttach.createObject();
2096 pAttach->initCopy(this, *it);
2097 mMediaData->mAttachments.push_back(pAttach);
2098 }
2099
2100 /* release the locks before the potentially lengthy operation */
2101 snapshotLock.release();
2102 alock.release();
2103
2104 rc = i_createImplicitDiffs(task.m_pProgress,
2105 1,
2106 false /* aOnline */);
2107 if (FAILED(rc))
2108 throw rc;
2109
2110 alock.acquire();
2111 snapshotLock.acquire();
2112
2113 /* Note: on success, current (old) hard disks will be
2114 * deassociated/deleted on #commit() called from #i_saveSettings() at
2115 * the end. On failure, newly created implicit diffs will be
2116 * deleted by #rollback() at the end. */
2117
2118 /* should not have a saved state file associated at this point */
2119 Assert(mSSData->strStateFilePath.isEmpty());
2120
2121 const Utf8Str &strSnapshotStateFile = task.m_pSnapshot->i_getStateFilePath();
2122
2123 if (strSnapshotStateFile.isNotEmpty())
2124 // online snapshot: then share the state file
2125 mSSData->strStateFilePath = strSnapshotStateFile;
2126
2127 LogFlowThisFunc(("Setting new current snapshot {%RTuuid}\n", task.m_pSnapshot->i_getId().raw()));
2128 /* make the snapshot we restored from the current snapshot */
2129 mData->mCurrentSnapshot = task.m_pSnapshot;
2130 }
2131
2132 /* grab differencing hard disks from the old attachments that will
2133 * become unused and need to be auto-deleted */
2134 std::list< ComObjPtr<MediumAttachment> > llDiffAttachmentsToDelete;
2135
2136 for (MediaData::AttachmentList::const_iterator it = mMediaData.backedUpData()->mAttachments.begin();
2137 it != mMediaData.backedUpData()->mAttachments.end();
2138 ++it)
2139 {
2140 ComObjPtr<MediumAttachment> pAttach = *it;
2141 ComObjPtr<Medium> pMedium = pAttach->i_getMedium();
2142
2143 /* while the hard disk is attached, the number of children or the
2144 * parent cannot change, so no lock */
2145 if ( !pMedium.isNull()
2146 && pAttach->i_getType() == DeviceType_HardDisk
2147 && !pMedium->i_getParent().isNull()
2148 && pMedium->i_getChildren().size() == 0
2149 )
2150 {
2151 LogFlowThisFunc(("Picked differencing image '%s' for deletion\n", pMedium->i_getName().c_str()));
2152
2153 llDiffAttachmentsToDelete.push_back(pAttach);
2154 }
2155 }
2156
2157 /* we have already deleted the current state, so set the execution
2158 * state accordingly no matter of the delete snapshot result */
2159 if (mSSData->strStateFilePath.isNotEmpty())
2160 task.modifyBackedUpState(MachineState_Saved);
2161 else
2162 task.modifyBackedUpState(MachineState_PoweredOff);
2163
2164 /* Paranoia: no one must have saved the settings in the mean time. If
2165 * it happens nevertheless we'll close our eyes and continue below. */
2166 Assert(mMediaData.isBackedUp());
2167
2168 /* assign the timestamp from the snapshot */
2169 Assert(RTTimeSpecGetMilli(&snapshotTimeStamp) != 0);
2170 mData->mLastStateChange = snapshotTimeStamp;
2171
2172 // detach the current-state diffs that we detected above and build a list of
2173 // image files to delete _after_ i_saveSettings()
2174
2175 MediaList llDiffsToDelete;
2176
2177 for (std::list< ComObjPtr<MediumAttachment> >::iterator it = llDiffAttachmentsToDelete.begin();
2178 it != llDiffAttachmentsToDelete.end();
2179 ++it)
2180 {
2181 ComObjPtr<MediumAttachment> pAttach = *it; // guaranteed to have only attachments where medium != NULL
2182 ComObjPtr<Medium> pMedium = pAttach->i_getMedium();
2183
2184 AutoWriteLock mlock(pMedium COMMA_LOCKVAL_SRC_POS);
2185
2186 LogFlowThisFunc(("Detaching old current state in differencing image '%s'\n", pMedium->i_getName().c_str()));
2187
2188 // Normally we "detach" the medium by removing the attachment object
2189 // from the current machine data; i_saveSettings() below would then
2190 // compare the current machine data with the one in the backup
2191 // and actually call Medium::removeBackReference(). But that works only half
2192 // the time in our case so instead we force a detachment here:
2193 // remove from machine data
2194 mMediaData->mAttachments.remove(pAttach);
2195 // Remove it from the backup or else i_saveSettings will try to detach
2196 // it again and assert. The paranoia check avoids crashes (see
2197 // assert above) if this code is buggy and saves settings in the
2198 // wrong place.
2199 if (mMediaData.isBackedUp())
2200 mMediaData.backedUpData()->mAttachments.remove(pAttach);
2201 // then clean up backrefs
2202 pMedium->i_removeBackReference(mData->mUuid);
2203
2204 llDiffsToDelete.push_back(pMedium);
2205 }
2206
2207 // save machine settings, reset the modified flag and commit;
2208 bool fNeedsGlobalSaveSettings = false;
2209 rc = i_saveSettings(&fNeedsGlobalSaveSettings,
2210 SaveS_ResetCurStateModified);
2211 if (FAILED(rc))
2212 throw rc;
2213
2214 // release the locks before updating registry and deleting image files
2215 alock.release();
2216
2217 // unconditionally add the parent registry.
2218 mParent->i_markRegistryModified(mParent->i_getGlobalRegistryId());
2219
2220 // from here on we cannot roll back on failure any more
2221
2222 for (MediaList::iterator it = llDiffsToDelete.begin();
2223 it != llDiffsToDelete.end();
2224 ++it)
2225 {
2226 ComObjPtr<Medium> &pMedium = *it;
2227 LogFlowThisFunc(("Deleting old current state in differencing image '%s'\n", pMedium->i_getName().c_str()));
2228
2229 HRESULT rc2 = pMedium->i_deleteStorage(NULL /* aProgress */,
2230 true /* aWait */);
2231 // ignore errors here because we cannot roll back after i_saveSettings() above
2232 if (SUCCEEDED(rc2))
2233 pMedium->uninit();
2234 }
2235 }
2236 catch (HRESULT aRC)
2237 {
2238 rc = aRC;
2239 }
2240
2241 if (FAILED(rc))
2242 {
2243 /* preserve existing error info */
2244 ErrorInfoKeeper eik;
2245
2246 /* undo all changes on failure */
2247 i_rollback(false /* aNotify */);
2248
2249 }
2250
2251 mParent->i_saveModifiedRegistries();
2252
2253 /* restore the machine state */
2254 i_setMachineState(task.m_machineStateBackup);
2255
2256 /* set the result (this will try to fetch current error info on failure) */
2257 task.m_pProgress->i_notifyComplete(rc);
2258
2259 if (SUCCEEDED(rc))
2260 mParent->i_onSnapshotRestored(mData->mUuid, Guid());
2261
2262 LogFlowThisFunc(("Done restoring snapshot (rc=%08X)\n", rc));
2263
2264 LogFlowThisFuncLeave();
2265}
2266
2267////////////////////////////////////////////////////////////////////////////////
2268//
2269// DeleteSnapshot methods (SessionMachine and related tasks)
2270//
2271////////////////////////////////////////////////////////////////////////////////
2272
2273HRESULT Machine::deleteSnapshot(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2274{
2275 NOREF(aId);
2276 NOREF(aProgress);
2277 ReturnComNotImplemented();
2278}
2279
2280HRESULT SessionMachine::deleteSnapshot(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2281{
2282 return i_deleteSnapshot(aId, aId,
2283 FALSE /* fDeleteAllChildren */,
2284 aProgress);
2285}
2286
2287HRESULT Machine::deleteSnapshotAndAllChildren(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2288{
2289 NOREF(aId);
2290 NOREF(aProgress);
2291 ReturnComNotImplemented();
2292}
2293
2294HRESULT SessionMachine::deleteSnapshotAndAllChildren(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2295{
2296 return i_deleteSnapshot(aId, aId,
2297 TRUE /* fDeleteAllChildren */,
2298 aProgress);
2299}
2300
2301HRESULT Machine::deleteSnapshotRange(const com::Guid &aStartId, const com::Guid &aEndId, ComPtr<IProgress> &aProgress)
2302{
2303 NOREF(aStartId);
2304 NOREF(aEndId);
2305 NOREF(aProgress);
2306 ReturnComNotImplemented();
2307}
2308
2309HRESULT SessionMachine::deleteSnapshotRange(const com::Guid &aStartId, const com::Guid &aEndId, ComPtr<IProgress> &aProgress)
2310{
2311 return i_deleteSnapshot(aStartId, aEndId,
2312 FALSE /* fDeleteAllChildren */,
2313 aProgress);
2314}
2315
2316
2317/**
2318 * Implementation for SessionMachine::i_deleteSnapshot().
2319 *
2320 * Gets called from SessionMachine::DeleteSnapshot(). Deleting a snapshot
2321 * happens entirely on the server side if the machine is not running, and
2322 * if it is running then the merges are done via internal session callbacks.
2323 *
2324 * This creates a new thread that does the work and returns a progress
2325 * object to the client.
2326 *
2327 * Actual work then takes place in SessionMachine::i_deleteSnapshotHandler().
2328 *
2329 * @note Locks mParent + this + children objects for writing!
2330 */
2331HRESULT SessionMachine::i_deleteSnapshot(const com::Guid &aStartId,
2332 const com::Guid &aEndId,
2333 BOOL aDeleteAllChildren,
2334 ComPtr<IProgress> &aProgress)
2335{
2336 LogFlowThisFuncEnter();
2337
2338 AssertReturn(!aStartId.isZero() && !aEndId.isZero() && aStartId.isValid() && aEndId.isValid(), E_INVALIDARG);
2339
2340 /** @todo implement the "and all children" and "range" variants */
2341 if (aDeleteAllChildren || aStartId != aEndId)
2342 ReturnComNotImplemented();
2343
2344 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2345
2346 if (Global::IsTransient(mData->mMachineState))
2347 return setError(VBOX_E_INVALID_VM_STATE,
2348 tr("Cannot delete a snapshot of the machine while it is changing the state (machine state: %s)"),
2349 Global::stringifyMachineState(mData->mMachineState));
2350
2351 // be very picky about machine states
2352 if ( Global::IsOnlineOrTransient(mData->mMachineState)
2353 && mData->mMachineState != MachineState_PoweredOff
2354 && mData->mMachineState != MachineState_Saved
2355 && mData->mMachineState != MachineState_Teleported
2356 && mData->mMachineState != MachineState_Aborted
2357 && mData->mMachineState != MachineState_Running
2358 && mData->mMachineState != MachineState_Paused)
2359 return setError(VBOX_E_INVALID_VM_STATE,
2360 tr("Invalid machine state: %s"),
2361 Global::stringifyMachineState(mData->mMachineState));
2362
2363 HRESULT rc = i_checkStateDependency(MutableOrSavedOrRunningStateDep);
2364 if (FAILED(rc))
2365 return rc;
2366
2367 ComObjPtr<Snapshot> pSnapshot;
2368 rc = i_findSnapshotById(aStartId, pSnapshot, true /* aSetError */);
2369 if (FAILED(rc))
2370 return rc;
2371
2372 AutoWriteLock snapshotLock(pSnapshot COMMA_LOCKVAL_SRC_POS);
2373 Utf8Str str;
2374
2375 size_t childrenCount = pSnapshot->i_getChildrenCount();
2376 if (childrenCount > 1)
2377 return setError(VBOX_E_INVALID_OBJECT_STATE,
2378 tr("Snapshot '%s' of the machine '%s' cannot be deleted, because it has %d child snapshots, which is more than the one snapshot allowed for deletion"),
2379 pSnapshot->i_getName().c_str(),
2380 mUserData->s.strName.c_str(),
2381 childrenCount);
2382
2383 if (pSnapshot == mData->mCurrentSnapshot && childrenCount >= 1)
2384 return setError(VBOX_E_INVALID_OBJECT_STATE,
2385 tr("Snapshot '%s' of the machine '%s' cannot be deleted, because it is the current snapshot and has one child snapshot"),
2386 pSnapshot->i_getName().c_str(),
2387 mUserData->s.strName.c_str());
2388
2389 /* If the snapshot being deleted is the current one, ensure current
2390 * settings are committed and saved.
2391 */
2392 if (pSnapshot == mData->mCurrentSnapshot)
2393 {
2394 if (mData->flModifications)
2395 {
2396 rc = i_saveSettings(NULL);
2397 // no need to change for whether VirtualBox.xml needs saving since
2398 // we can't have a machine XML rename pending at this point
2399 if (FAILED(rc)) return rc;
2400 }
2401 }
2402
2403 ComObjPtr<SnapshotMachine> pSnapMachine = pSnapshot->i_getSnapshotMachine();
2404
2405 /* create a progress object. The number of operations is:
2406 * 1 (preparing) + 1 if the snapshot is online + # of normal hard disks
2407 */
2408 LogFlowThisFunc(("Going thru snapshot machine attachments to determine progress setup\n"));
2409
2410 ULONG ulOpCount = 1; // one for preparations
2411 ULONG ulTotalWeight = 1; // one for preparations
2412
2413 if (pSnapshot->i_getStateFilePath().length())
2414 {
2415 ++ulOpCount;
2416 ++ulTotalWeight; // assume 1 MB for deleting the state file
2417 }
2418
2419 // count normal hard disks and add their sizes to the weight
2420 for (MediaData::AttachmentList::iterator it = pSnapMachine->mMediaData->mAttachments.begin();
2421 it != pSnapMachine->mMediaData->mAttachments.end();
2422 ++it)
2423 {
2424 ComObjPtr<MediumAttachment> &pAttach = *it;
2425 AutoReadLock attachLock(pAttach COMMA_LOCKVAL_SRC_POS);
2426 if (pAttach->i_getType() == DeviceType_HardDisk)
2427 {
2428 ComObjPtr<Medium> pHD = pAttach->i_getMedium();
2429 Assert(pHD);
2430 AutoReadLock mlock(pHD COMMA_LOCKVAL_SRC_POS);
2431
2432 MediumType_T type = pHD->i_getType();
2433 // writethrough and shareable images are unaffected by snapshots,
2434 // so do nothing for them
2435 if ( type != MediumType_Writethrough
2436 && type != MediumType_Shareable
2437 && type != MediumType_Readonly)
2438 {
2439 // normal or immutable media need attention
2440 ++ulOpCount;
2441 ulTotalWeight += (ULONG)(pHD->i_getSize() / _1M);
2442 }
2443 LogFlowThisFunc(("op %d: considering hard disk attachment %s\n", ulOpCount, pHD->i_getName().c_str()));
2444 }
2445 }
2446
2447 ComObjPtr<Progress> pProgress;
2448 pProgress.createObject();
2449 pProgress->init(mParent, static_cast<IMachine*>(this),
2450 BstrFmt(tr("Deleting snapshot '%s'"), pSnapshot->i_getName().c_str()).raw(),
2451 FALSE /* aCancelable */,
2452 ulOpCount,
2453 ulTotalWeight,
2454 Bstr(tr("Setting up")).raw(),
2455 1);
2456
2457 bool fDeleteOnline = ( (mData->mMachineState == MachineState_Running)
2458 || (mData->mMachineState == MachineState_Paused));
2459
2460 /* create and start the task on a separate thread */
2461 DeleteSnapshotTask *pTask = new DeleteSnapshotTask(this, pProgress,
2462 "DeleteSnap",
2463 fDeleteOnline,
2464 pSnapshot);
2465 rc = pTask->createThread();
2466 if (FAILED(rc))
2467 return rc;
2468
2469 // the task might start running but will block on acquiring the machine's write lock
2470 // which we acquired above; once this function leaves, the task will be unblocked;
2471 // set the proper machine state here now (note: after creating a Task instance)
2472 if (mData->mMachineState == MachineState_Running)
2473 {
2474 i_setMachineState(MachineState_DeletingSnapshotOnline);
2475 i_updateMachineStateOnClient();
2476 }
2477 else if (mData->mMachineState == MachineState_Paused)
2478 {
2479 i_setMachineState(MachineState_DeletingSnapshotPaused);
2480 i_updateMachineStateOnClient();
2481 }
2482 else
2483 i_setMachineState(MachineState_DeletingSnapshot);
2484
2485 /* return the progress to the caller */
2486 pProgress.queryInterfaceTo(aProgress.asOutParam());
2487
2488 LogFlowThisFuncLeave();
2489
2490 return S_OK;
2491}
2492
2493/**
2494 * Helper struct for SessionMachine::deleteSnapshotHandler().
2495 */
2496struct MediumDeleteRec
2497{
2498 MediumDeleteRec()
2499 : mfNeedsOnlineMerge(false),
2500 mpMediumLockList(NULL)
2501 {}
2502
2503 MediumDeleteRec(const ComObjPtr<Medium> &aHd,
2504 const ComObjPtr<Medium> &aSource,
2505 const ComObjPtr<Medium> &aTarget,
2506 const ComObjPtr<MediumAttachment> &aOnlineMediumAttachment,
2507 bool fMergeForward,
2508 const ComObjPtr<Medium> &aParentForTarget,
2509 MediumLockList *aChildrenToReparent,
2510 bool fNeedsOnlineMerge,
2511 MediumLockList *aMediumLockList,
2512 const ComPtr<IToken> &aHDLockToken)
2513 : mpHD(aHd),
2514 mpSource(aSource),
2515 mpTarget(aTarget),
2516 mpOnlineMediumAttachment(aOnlineMediumAttachment),
2517 mfMergeForward(fMergeForward),
2518 mpParentForTarget(aParentForTarget),
2519 mpChildrenToReparent(aChildrenToReparent),
2520 mfNeedsOnlineMerge(fNeedsOnlineMerge),
2521 mpMediumLockList(aMediumLockList),
2522 mpHDLockToken(aHDLockToken)
2523 {}
2524
2525 MediumDeleteRec(const ComObjPtr<Medium> &aHd,
2526 const ComObjPtr<Medium> &aSource,
2527 const ComObjPtr<Medium> &aTarget,
2528 const ComObjPtr<MediumAttachment> &aOnlineMediumAttachment,
2529 bool fMergeForward,
2530 const ComObjPtr<Medium> &aParentForTarget,
2531 MediumLockList *aChildrenToReparent,
2532 bool fNeedsOnlineMerge,
2533 MediumLockList *aMediumLockList,
2534 const ComPtr<IToken> &aHDLockToken,
2535 const Guid &aMachineId,
2536 const Guid &aSnapshotId)
2537 : mpHD(aHd),
2538 mpSource(aSource),
2539 mpTarget(aTarget),
2540 mpOnlineMediumAttachment(aOnlineMediumAttachment),
2541 mfMergeForward(fMergeForward),
2542 mpParentForTarget(aParentForTarget),
2543 mpChildrenToReparent(aChildrenToReparent),
2544 mfNeedsOnlineMerge(fNeedsOnlineMerge),
2545 mpMediumLockList(aMediumLockList),
2546 mpHDLockToken(aHDLockToken),
2547 mMachineId(aMachineId),
2548 mSnapshotId(aSnapshotId)
2549 {}
2550
2551 ComObjPtr<Medium> mpHD;
2552 ComObjPtr<Medium> mpSource;
2553 ComObjPtr<Medium> mpTarget;
2554 ComObjPtr<MediumAttachment> mpOnlineMediumAttachment;
2555 bool mfMergeForward;
2556 ComObjPtr<Medium> mpParentForTarget;
2557 MediumLockList *mpChildrenToReparent;
2558 bool mfNeedsOnlineMerge;
2559 MediumLockList *mpMediumLockList;
2560 /** optional lock token, used only in case mpHD is not merged/deleted */
2561 ComPtr<IToken> mpHDLockToken;
2562 /* these are for reattaching the hard disk in case of a failure: */
2563 Guid mMachineId;
2564 Guid mSnapshotId;
2565};
2566
2567typedef std::list<MediumDeleteRec> MediumDeleteRecList;
2568
2569/**
2570 * Worker method for the delete snapshot thread created by
2571 * SessionMachine::DeleteSnapshot(). This method gets called indirectly
2572 * through SessionMachine::taskHandler() which then calls
2573 * DeleteSnapshotTask::handler().
2574 *
2575 * The DeleteSnapshotTask contains the progress object returned to the console
2576 * by SessionMachine::DeleteSnapshot, through which progress and results are
2577 * reported.
2578 *
2579 * SessionMachine::DeleteSnapshot() has set the machine state to
2580 * MachineState_DeletingSnapshot right after creating this task. Since we block
2581 * on the machine write lock at the beginning, once that has been acquired, we
2582 * can assume that the machine state is indeed that.
2583 *
2584 * @note Locks the machine + the snapshot + the media tree for writing!
2585 *
2586 * @param pTask Task data.
2587 */
2588void SessionMachine::i_deleteSnapshotHandler(DeleteSnapshotTask &task)
2589{
2590 LogFlowThisFuncEnter();
2591
2592 HRESULT rc = S_OK;
2593 AutoCaller autoCaller(this);
2594 LogFlowThisFunc(("state=%d\n", getObjectState().getState()));
2595 if (FAILED(autoCaller.rc()))
2596 {
2597 /* we might have been uninitialized because the session was accidentally
2598 * closed by the client, so don't assert */
2599 rc = setError(E_FAIL,
2600 tr("The session has been accidentally closed"));
2601 task.m_pProgress->i_notifyComplete(rc);
2602 LogFlowThisFuncLeave();
2603 return;
2604 }
2605
2606 MediumDeleteRecList toDelete;
2607 Guid snapshotId;
2608
2609 try
2610 {
2611 /* Locking order: */
2612 AutoMultiWriteLock2 multiLock(this->lockHandle(), // machine
2613 task.m_pSnapshot->lockHandle() // snapshot
2614 COMMA_LOCKVAL_SRC_POS);
2615 // once we have this lock, we know that SessionMachine::DeleteSnapshot()
2616 // has exited after setting the machine state to MachineState_DeletingSnapshot
2617
2618 AutoWriteLock treeLock(mParent->i_getMediaTreeLockHandle()
2619 COMMA_LOCKVAL_SRC_POS);
2620
2621 ComObjPtr<SnapshotMachine> pSnapMachine = task.m_pSnapshot->i_getSnapshotMachine();
2622 // no need to lock the snapshot machine since it is const by definition
2623 Guid machineId = pSnapMachine->i_getId();
2624
2625 // save the snapshot ID (for callbacks)
2626 snapshotId = task.m_pSnapshot->i_getId();
2627
2628 // first pass:
2629 LogFlowThisFunc(("1: Checking hard disk merge prerequisites...\n"));
2630
2631 // Go thru the attachments of the snapshot machine (the media in here
2632 // point to the disk states _before_ the snapshot was taken, i.e. the
2633 // state we're restoring to; for each such medium, we will need to
2634 // merge it with its one and only child (the diff image holding the
2635 // changes written after the snapshot was taken).
2636 for (MediaData::AttachmentList::iterator it = pSnapMachine->mMediaData->mAttachments.begin();
2637 it != pSnapMachine->mMediaData->mAttachments.end();
2638 ++it)
2639 {
2640 ComObjPtr<MediumAttachment> &pAttach = *it;
2641 AutoReadLock attachLock(pAttach COMMA_LOCKVAL_SRC_POS);
2642 if (pAttach->i_getType() != DeviceType_HardDisk)
2643 continue;
2644
2645 ComObjPtr<Medium> pHD = pAttach->i_getMedium();
2646 Assert(!pHD.isNull());
2647
2648 {
2649 // writethrough, shareable and readonly images are
2650 // unaffected by snapshots, skip them
2651 AutoReadLock medlock(pHD COMMA_LOCKVAL_SRC_POS);
2652 MediumType_T type = pHD->i_getType();
2653 if ( type == MediumType_Writethrough
2654 || type == MediumType_Shareable
2655 || type == MediumType_Readonly)
2656 continue;
2657 }
2658
2659#ifdef DEBUG
2660 pHD->i_dumpBackRefs();
2661#endif
2662
2663 // needs to be merged with child or deleted, check prerequisites
2664 ComObjPtr<Medium> pTarget;
2665 ComObjPtr<Medium> pSource;
2666 bool fMergeForward = false;
2667 ComObjPtr<Medium> pParentForTarget;
2668 MediumLockList *pChildrenToReparent = NULL;
2669 bool fNeedsOnlineMerge = false;
2670 bool fOnlineMergePossible = task.m_fDeleteOnline;
2671 MediumLockList *pMediumLockList = NULL;
2672 MediumLockList *pVMMALockList = NULL;
2673 ComPtr<IToken> pHDLockToken;
2674 ComObjPtr<MediumAttachment> pOnlineMediumAttachment;
2675 if (fOnlineMergePossible)
2676 {
2677 // Look up the corresponding medium attachment in the currently
2678 // running VM. Any failure prevents a live merge. Could be made
2679 // a tad smarter by trying a few candidates, so that e.g. disks
2680 // which are simply moved to a different controller slot do not
2681 // prevent online merging in general.
2682 pOnlineMediumAttachment =
2683 i_findAttachment(mMediaData->mAttachments,
2684 pAttach->i_getControllerName().raw(),
2685 pAttach->i_getPort(),
2686 pAttach->i_getDevice());
2687 if (pOnlineMediumAttachment)
2688 {
2689 rc = mData->mSession.mLockedMedia.Get(pOnlineMediumAttachment,
2690 pVMMALockList);
2691 if (FAILED(rc))
2692 fOnlineMergePossible = false;
2693 }
2694 else
2695 fOnlineMergePossible = false;
2696 }
2697
2698 // no need to hold the lock any longer
2699 attachLock.release();
2700
2701 treeLock.release();
2702 rc = i_prepareDeleteSnapshotMedium(pHD, machineId, snapshotId,
2703 fOnlineMergePossible,
2704 pVMMALockList, pSource, pTarget,
2705 fMergeForward, pParentForTarget,
2706 pChildrenToReparent,
2707 fNeedsOnlineMerge,
2708 pMediumLockList,
2709 pHDLockToken);
2710 treeLock.acquire();
2711 if (FAILED(rc))
2712 throw rc;
2713
2714 // For simplicity, prepareDeleteSnapshotMedium selects the merge
2715 // direction in the following way: we merge pHD onto its child
2716 // (forward merge), not the other way round, because that saves us
2717 // from unnecessarily shuffling around the attachments for the
2718 // machine that follows the snapshot (next snapshot or current
2719 // state), unless it's a base image. Backwards merges of the first
2720 // snapshot into the base image is essential, as it ensures that
2721 // when all snapshots are deleted the only remaining image is a
2722 // base image. Important e.g. for medium formats which do not have
2723 // a file representation such as iSCSI.
2724
2725 // a couple paranoia checks for backward merges
2726 if (pMediumLockList != NULL && !fMergeForward)
2727 {
2728 // parent is null -> this disk is a base hard disk: we will
2729 // then do a backward merge, i.e. merge its only child onto the
2730 // base disk. Here we need then to update the attachment that
2731 // refers to the child and have it point to the parent instead
2732 Assert(pHD->i_getChildren().size() == 1);
2733
2734 ComObjPtr<Medium> pReplaceHD = pHD->i_getChildren().front();
2735
2736 ComAssertThrow(pReplaceHD == pSource, E_FAIL);
2737 }
2738
2739 Guid replaceMachineId;
2740 Guid replaceSnapshotId;
2741
2742 const Guid *pReplaceMachineId = pSource->i_getFirstMachineBackrefId();
2743 // minimal sanity checking
2744 Assert(!pReplaceMachineId || *pReplaceMachineId == mData->mUuid);
2745 if (pReplaceMachineId)
2746 replaceMachineId = *pReplaceMachineId;
2747
2748 const Guid *pSnapshotId = pSource->i_getFirstMachineBackrefSnapshotId();
2749 if (pSnapshotId)
2750 replaceSnapshotId = *pSnapshotId;
2751
2752 if (replaceMachineId.isValid() && !replaceMachineId.isZero())
2753 {
2754 // Adjust the backreferences, otherwise merging will assert.
2755 // Note that the medium attachment object stays associated
2756 // with the snapshot until the merge was successful.
2757 HRESULT rc2 = S_OK;
2758 rc2 = pSource->i_removeBackReference(replaceMachineId, replaceSnapshotId);
2759 AssertComRC(rc2);
2760
2761 toDelete.push_back(MediumDeleteRec(pHD, pSource, pTarget,
2762 pOnlineMediumAttachment,
2763 fMergeForward,
2764 pParentForTarget,
2765 pChildrenToReparent,
2766 fNeedsOnlineMerge,
2767 pMediumLockList,
2768 pHDLockToken,
2769 replaceMachineId,
2770 replaceSnapshotId));
2771 }
2772 else
2773 toDelete.push_back(MediumDeleteRec(pHD, pSource, pTarget,
2774 pOnlineMediumAttachment,
2775 fMergeForward,
2776 pParentForTarget,
2777 pChildrenToReparent,
2778 fNeedsOnlineMerge,
2779 pMediumLockList,
2780 pHDLockToken));
2781 }
2782
2783 {
2784 /*check available place on the storage*/
2785 RTFOFF pcbTotal = 0;
2786 RTFOFF pcbFree = 0;
2787 uint32_t pcbBlock = 0;
2788 uint32_t pcbSector = 0;
2789 std::multimap<uint32_t,uint64_t> neededStorageFreeSpace;
2790 std::map<uint32_t,const char*> serialMapToStoragePath;
2791
2792 MediumDeleteRecList::const_iterator it_md = toDelete.begin();
2793
2794 while (it_md != toDelete.end())
2795 {
2796 uint64_t diskSize = 0;
2797 uint32_t pu32Serial = 0;
2798 ComObjPtr<Medium> pSource_local = it_md->mpSource;
2799 ComObjPtr<Medium> pTarget_local = it_md->mpTarget;
2800 ComPtr<IMediumFormat> pTargetFormat;
2801
2802 {
2803 if ( pSource_local.isNull()
2804 || pSource_local == pTarget_local)
2805 {
2806 ++it_md;
2807 continue;
2808 }
2809 }
2810
2811 rc = pTarget_local->COMGETTER(MediumFormat)(pTargetFormat.asOutParam());
2812 if (FAILED(rc))
2813 throw rc;
2814
2815 if(pTarget_local->i_isMediumFormatFile())
2816 {
2817 int vrc = RTFsQuerySerial(pTarget_local->i_getLocationFull().c_str(), &pu32Serial);
2818 if (RT_FAILURE(vrc))
2819 {
2820 rc = setError(E_FAIL,
2821 tr(" Unable to merge storage '%s'. Can't get storage UID "),
2822 pTarget_local->i_getLocationFull().c_str());
2823 throw rc;
2824 }
2825
2826 pSource_local->COMGETTER(Size)((LONG64*)&diskSize);
2827
2828 /* store needed free space in multimap */
2829 neededStorageFreeSpace.insert(std::make_pair(pu32Serial,diskSize));
2830 /* linking storage UID with snapshot path, it is a helper container (just for easy finding needed path) */
2831 serialMapToStoragePath.insert(std::make_pair(pu32Serial,pTarget_local->i_getLocationFull().c_str()));
2832 }
2833
2834 ++it_md;
2835 }
2836
2837 while (!neededStorageFreeSpace.empty())
2838 {
2839 std::pair<std::multimap<uint32_t,uint64_t>::iterator,std::multimap<uint32_t,uint64_t>::iterator> ret;
2840 uint64_t commonSourceStoragesSize = 0;
2841
2842 /* find all records in multimap with identical storage UID*/
2843 ret = neededStorageFreeSpace.equal_range(neededStorageFreeSpace.begin()->first);
2844 std::multimap<uint32_t,uint64_t>::const_iterator it_ns = ret.first;
2845
2846 for (; it_ns != ret.second ; ++it_ns)
2847 {
2848 commonSourceStoragesSize += it_ns->second;
2849 }
2850
2851 /* find appropriate path by storage UID*/
2852 std::map<uint32_t,const char*>::const_iterator it_sm = serialMapToStoragePath.find(ret.first->first);
2853 /* get info about a storage */
2854 if (it_sm == serialMapToStoragePath.end())
2855 {
2856 LogFlowThisFunc((" Path to the storage wasn't found...\n "));
2857
2858 rc = setError(E_INVALIDARG,
2859 tr(" Unable to merge storage '%s'. Path to the storage wasn't found. "),
2860 it_sm->second);
2861 throw rc;
2862 }
2863
2864 int vrc = RTFsQuerySizes(it_sm->second, &pcbTotal, &pcbFree,&pcbBlock, &pcbSector);
2865 if (RT_FAILURE(vrc))
2866 {
2867 rc = setError(E_FAIL,
2868 tr(" Unable to merge storage '%s'. Can't get the storage size. "),
2869 it_sm->second);
2870 throw rc;
2871 }
2872
2873 if (commonSourceStoragesSize > (uint64_t)pcbFree)
2874 {
2875 LogFlowThisFunc((" Not enough free space to merge...\n "));
2876
2877 rc = setError(E_OUTOFMEMORY,
2878 tr(" Unable to merge storage '%s' - not enough free storage space. "),
2879 it_sm->second);
2880 throw rc;
2881 }
2882
2883 neededStorageFreeSpace.erase(ret.first, ret.second);
2884 }
2885
2886 serialMapToStoragePath.clear();
2887 }
2888
2889 // we can release the locks now since the machine state is MachineState_DeletingSnapshot
2890 treeLock.release();
2891 multiLock.release();
2892
2893 /* Now we checked that we can successfully merge all normal hard disks
2894 * (unless a runtime error like end-of-disc happens). Now get rid of
2895 * the saved state (if present), as that will free some disk space.
2896 * The snapshot itself will be deleted as late as possible, so that
2897 * the user can repeat the delete operation if he runs out of disk
2898 * space or cancels the delete operation. */
2899
2900 /* second pass: */
2901 LogFlowThisFunc(("2: Deleting saved state...\n"));
2902
2903 {
2904 // saveAllSnapshots() needs a machine lock, and the snapshots
2905 // tree is protected by the machine lock as well
2906 AutoWriteLock machineLock(this COMMA_LOCKVAL_SRC_POS);
2907
2908 Utf8Str stateFilePath = task.m_pSnapshot->i_getStateFilePath();
2909 if (!stateFilePath.isEmpty())
2910 {
2911 task.m_pProgress->SetNextOperation(Bstr(tr("Deleting the execution state")).raw(),
2912 1); // weight
2913
2914 i_releaseSavedStateFile(stateFilePath, task.m_pSnapshot /* pSnapshotToIgnore */);
2915
2916 // machine will need saving now
2917 machineLock.release();
2918 mParent->i_markRegistryModified(i_getId());
2919 }
2920 }
2921
2922 /* third pass: */
2923 LogFlowThisFunc(("3: Performing actual hard disk merging...\n"));
2924
2925 /// @todo NEWMEDIA turn the following errors into warnings because the
2926 /// snapshot itself has been already deleted (and interpret these
2927 /// warnings properly on the GUI side)
2928 for (MediumDeleteRecList::iterator it = toDelete.begin();
2929 it != toDelete.end();)
2930 {
2931 const ComObjPtr<Medium> &pMedium(it->mpHD);
2932 ULONG ulWeight;
2933
2934 {
2935 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
2936 ulWeight = (ULONG)(pMedium->i_getSize() / _1M);
2937 }
2938
2939 task.m_pProgress->SetNextOperation(BstrFmt(tr("Merging differencing image '%s'"),
2940 pMedium->i_getName().c_str()).raw(),
2941 ulWeight);
2942
2943 bool fNeedSourceUninit = false;
2944 bool fReparentTarget = false;
2945 if (it->mpMediumLockList == NULL)
2946 {
2947 /* no real merge needed, just updating state and delete
2948 * diff files if necessary */
2949 AutoMultiWriteLock2 mLock(&mParent->i_getMediaTreeLockHandle(), pMedium->lockHandle() COMMA_LOCKVAL_SRC_POS);
2950
2951 Assert( !it->mfMergeForward
2952 || pMedium->i_getChildren().size() == 0);
2953
2954 /* Delete the differencing hard disk (has no children). Two
2955 * exceptions: if it's the last medium in the chain or if it's
2956 * a backward merge we don't want to handle due to complexity.
2957 * In both cases leave the image in place. If it's the first
2958 * exception the user can delete it later if he wants. */
2959 if (!pMedium->i_getParent().isNull())
2960 {
2961 Assert(pMedium->i_getState() == MediumState_Deleting);
2962 /* No need to hold the lock any longer. */
2963 mLock.release();
2964 rc = pMedium->i_deleteStorage(&task.m_pProgress,
2965 true /* aWait */);
2966 if (FAILED(rc))
2967 throw rc;
2968
2969 // need to uninit the deleted medium
2970 fNeedSourceUninit = true;
2971 }
2972 }
2973 else
2974 {
2975 bool fNeedsSave = false;
2976 if (it->mfNeedsOnlineMerge)
2977 {
2978 // Put the medium merge information (MediumDeleteRec) where
2979 // SessionMachine::FinishOnlineMergeMedium can get at it.
2980 // This callback will arrive while onlineMergeMedium is
2981 // still executing, and there can't be two tasks.
2982 /// @todo r=klaus this hack needs to go, and the logic needs to be "unconvoluted", putting SessionMachine in charge of coordinating the reconfig/resume.
2983 mConsoleTaskData.mDeleteSnapshotInfo = (void *)&(*it);
2984 // online medium merge, in the direction decided earlier
2985 rc = i_onlineMergeMedium(it->mpOnlineMediumAttachment,
2986 it->mpSource,
2987 it->mpTarget,
2988 it->mfMergeForward,
2989 it->mpParentForTarget,
2990 it->mpChildrenToReparent,
2991 it->mpMediumLockList,
2992 task.m_pProgress,
2993 &fNeedsSave);
2994 mConsoleTaskData.mDeleteSnapshotInfo = NULL;
2995 }
2996 else
2997 {
2998 // normal medium merge, in the direction decided earlier
2999 rc = it->mpSource->i_mergeTo(it->mpTarget,
3000 it->mfMergeForward,
3001 it->mpParentForTarget,
3002 it->mpChildrenToReparent,
3003 it->mpMediumLockList,
3004 &task.m_pProgress,
3005 true /* aWait */);
3006 }
3007
3008 // If the merge failed, we need to do our best to have a usable
3009 // VM configuration afterwards. The return code doesn't tell
3010 // whether the merge completed and so we have to check if the
3011 // source medium (diff images are always file based at the
3012 // moment) is still there or not. Be careful not to lose the
3013 // error code below, before the "Delayed failure exit".
3014 if (FAILED(rc))
3015 {
3016 AutoReadLock mlock(it->mpSource COMMA_LOCKVAL_SRC_POS);
3017 if (!it->mpSource->i_isMediumFormatFile())
3018 // Diff medium not backed by a file - cannot get status so
3019 // be pessimistic.
3020 throw rc;
3021 const Utf8Str &loc = it->mpSource->i_getLocationFull();
3022 // Source medium is still there, so merge failed early.
3023 if (RTFileExists(loc.c_str()))
3024 throw rc;
3025
3026 // Source medium is gone. Assume the merge succeeded and
3027 // thus it's safe to remove the attachment. We use the
3028 // "Delayed failure exit" below.
3029 }
3030
3031 // need to change the medium attachment for backward merges
3032 fReparentTarget = !it->mfMergeForward;
3033
3034 if (!it->mfNeedsOnlineMerge)
3035 {
3036 // need to uninit the medium deleted by the merge
3037 fNeedSourceUninit = true;
3038
3039 // delete the no longer needed medium lock list, which
3040 // implicitly handled the unlocking
3041 delete it->mpMediumLockList;
3042 it->mpMediumLockList = NULL;
3043 }
3044 }
3045
3046 // Now that the medium is successfully merged/deleted/whatever,
3047 // remove the medium attachment from the snapshot. For a backwards
3048 // merge the target attachment needs to be removed from the
3049 // snapshot, as the VM will take it over. For forward merges the
3050 // source medium attachment needs to be removed.
3051 ComObjPtr<MediumAttachment> pAtt;
3052 if (fReparentTarget)
3053 {
3054 pAtt = i_findAttachment(pSnapMachine->mMediaData->mAttachments,
3055 it->mpTarget);
3056 it->mpTarget->i_removeBackReference(machineId, snapshotId);
3057 }
3058 else
3059 pAtt = i_findAttachment(pSnapMachine->mMediaData->mAttachments,
3060 it->mpSource);
3061 pSnapMachine->mMediaData->mAttachments.remove(pAtt);
3062
3063 if (fReparentTarget)
3064 {
3065 // Search for old source attachment and replace with target.
3066 // There can be only one child snapshot in this case.
3067 ComObjPtr<Machine> pMachine = this;
3068 Guid childSnapshotId;
3069 ComObjPtr<Snapshot> pChildSnapshot = task.m_pSnapshot->i_getFirstChild();
3070 if (pChildSnapshot)
3071 {
3072 pMachine = pChildSnapshot->i_getSnapshotMachine();
3073 childSnapshotId = pChildSnapshot->i_getId();
3074 }
3075 pAtt = i_findAttachment(pMachine->mMediaData->mAttachments, it->mpSource);
3076 if (pAtt)
3077 {
3078 AutoWriteLock attLock(pAtt COMMA_LOCKVAL_SRC_POS);
3079 pAtt->i_updateMedium(it->mpTarget);
3080 it->mpTarget->i_addBackReference(pMachine->mData->mUuid, childSnapshotId);
3081 }
3082 else
3083 {
3084 // If no attachment is found do not change anything. Maybe
3085 // the source medium was not attached to the snapshot.
3086 // If this is an online deletion the attachment was updated
3087 // already to allow the VM continue execution immediately.
3088 // Needs a bit of special treatment due to this difference.
3089 if (it->mfNeedsOnlineMerge)
3090 it->mpTarget->i_addBackReference(pMachine->mData->mUuid, childSnapshotId);
3091 }
3092 }
3093
3094 if (fNeedSourceUninit)
3095 it->mpSource->uninit();
3096
3097 // One attachment is merged, must save the settings
3098 mParent->i_markRegistryModified(i_getId());
3099
3100 // prevent calling cancelDeleteSnapshotMedium() for this attachment
3101 it = toDelete.erase(it);
3102
3103 // Delayed failure exit when the merge cleanup failed but the
3104 // merge actually succeeded.
3105 if (FAILED(rc))
3106 throw rc;
3107 }
3108
3109 {
3110 // beginSnapshotDelete() needs the machine lock, and the snapshots
3111 // tree is protected by the machine lock as well
3112 AutoWriteLock machineLock(this COMMA_LOCKVAL_SRC_POS);
3113
3114 task.m_pSnapshot->i_beginSnapshotDelete();
3115 task.m_pSnapshot->uninit();
3116
3117 machineLock.release();
3118 mParent->i_markRegistryModified(i_getId());
3119 }
3120 }
3121 catch (HRESULT aRC) {
3122 rc = aRC;
3123 }
3124
3125 if (FAILED(rc))
3126 {
3127 // preserve existing error info so that the result can
3128 // be properly reported to the progress object below
3129 ErrorInfoKeeper eik;
3130
3131 AutoMultiWriteLock2 multiLock(this->lockHandle(), // machine
3132 &mParent->i_getMediaTreeLockHandle() // media tree
3133 COMMA_LOCKVAL_SRC_POS);
3134
3135 // un-prepare the remaining hard disks
3136 for (MediumDeleteRecList::const_iterator it = toDelete.begin();
3137 it != toDelete.end();
3138 ++it)
3139 i_cancelDeleteSnapshotMedium(it->mpHD, it->mpSource,
3140 it->mpChildrenToReparent,
3141 it->mfNeedsOnlineMerge,
3142 it->mpMediumLockList, it->mpHDLockToken,
3143 it->mMachineId, it->mSnapshotId);
3144 }
3145
3146 // whether we were successful or not, we need to set the machine
3147 // state and save the machine settings;
3148 {
3149 // preserve existing error info so that the result can
3150 // be properly reported to the progress object below
3151 ErrorInfoKeeper eik;
3152
3153 // restore the machine state that was saved when the
3154 // task was started
3155 i_setMachineState(task.m_machineStateBackup);
3156 if (Global::IsOnline(mData->mMachineState))
3157 i_updateMachineStateOnClient();
3158
3159 mParent->i_saveModifiedRegistries();
3160 }
3161
3162 // report the result (this will try to fetch current error info on failure)
3163 task.m_pProgress->i_notifyComplete(rc);
3164
3165 if (SUCCEEDED(rc))
3166 mParent->i_onSnapshotDeleted(mData->mUuid, snapshotId);
3167
3168 LogFlowThisFunc(("Done deleting snapshot (rc=%08X)\n", rc));
3169 LogFlowThisFuncLeave();
3170}
3171
3172/**
3173 * Checks that this hard disk (part of a snapshot) may be deleted/merged and
3174 * performs necessary state changes. Must not be called for writethrough disks
3175 * because there is nothing to delete/merge then.
3176 *
3177 * This method is to be called prior to calling #deleteSnapshotMedium().
3178 * If #deleteSnapshotMedium() is not called or fails, the state modifications
3179 * performed by this method must be undone by #cancelDeleteSnapshotMedium().
3180 *
3181 * @return COM status code
3182 * @param aHD Hard disk which is connected to the snapshot.
3183 * @param aMachineId UUID of machine this hard disk is attached to.
3184 * @param aSnapshotId UUID of snapshot this hard disk is attached to. May
3185 * be a zero UUID if no snapshot is applicable.
3186 * @param fOnlineMergePossible Flag whether an online merge is possible.
3187 * @param aVMMALockList Medium lock list for the medium attachment of this VM.
3188 * Only used if @a fOnlineMergePossible is @c true, and
3189 * must be non-NULL in this case.
3190 * @param aSource Source hard disk for merge (out).
3191 * @param aTarget Target hard disk for merge (out).
3192 * @param aMergeForward Merge direction decision (out).
3193 * @param aParentForTarget New parent if target needs to be reparented (out).
3194 * @param aChildrenToReparent MediumLockList with children which have to be
3195 * reparented to the target (out).
3196 * @param fNeedsOnlineMerge Whether this merge needs to be done online (out).
3197 * If this is set to @a true then the @a aVMMALockList
3198 * parameter has been modified and is returned as
3199 * @a aMediumLockList.
3200 * @param aMediumLockList Where to store the created medium lock list (may
3201 * return NULL if no real merge is necessary).
3202 * @param aHDLockToken Where to store the write lock token for aHD, in case
3203 * it is not merged or deleted (out).
3204 *
3205 * @note Caller must hold media tree lock for writing. This locks this object
3206 * and every medium object on the merge chain for writing.
3207 */
3208HRESULT SessionMachine::i_prepareDeleteSnapshotMedium(const ComObjPtr<Medium> &aHD,
3209 const Guid &aMachineId,
3210 const Guid &aSnapshotId,
3211 bool fOnlineMergePossible,
3212 MediumLockList *aVMMALockList,
3213 ComObjPtr<Medium> &aSource,
3214 ComObjPtr<Medium> &aTarget,
3215 bool &aMergeForward,
3216 ComObjPtr<Medium> &aParentForTarget,
3217 MediumLockList * &aChildrenToReparent,
3218 bool &fNeedsOnlineMerge,
3219 MediumLockList * &aMediumLockList,
3220 ComPtr<IToken> &aHDLockToken)
3221{
3222 Assert(!mParent->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
3223 Assert(!fOnlineMergePossible || VALID_PTR(aVMMALockList));
3224
3225 AutoWriteLock alock(aHD COMMA_LOCKVAL_SRC_POS);
3226
3227 // Medium must not be writethrough/shareable/readonly at this point
3228 MediumType_T type = aHD->i_getType();
3229 AssertReturn( type != MediumType_Writethrough
3230 && type != MediumType_Shareable
3231 && type != MediumType_Readonly, E_FAIL);
3232
3233 aChildrenToReparent = NULL;
3234 aMediumLockList = NULL;
3235 fNeedsOnlineMerge = false;
3236
3237 if (aHD->i_getChildren().size() == 0)
3238 {
3239 /* This technically is no merge, set those values nevertheless.
3240 * Helps with updating the medium attachments. */
3241 aSource = aHD;
3242 aTarget = aHD;
3243
3244 /* special treatment of the last hard disk in the chain: */
3245 if (aHD->i_getParent().isNull())
3246 {
3247 /* lock only, to prevent any usage until the snapshot deletion
3248 * is completed */
3249 alock.release();
3250 return aHD->LockWrite(aHDLockToken.asOutParam());
3251 }
3252
3253 /* the differencing hard disk w/o children will be deleted, protect it
3254 * from attaching to other VMs (this is why Deleting) */
3255 return aHD->i_markForDeletion();
3256 }
3257
3258 /* not going multi-merge as it's too expensive */
3259 if (aHD->i_getChildren().size() > 1)
3260 return setError(E_FAIL,
3261 tr("Hard disk '%s' has more than one child hard disk (%d)"),
3262 aHD->i_getLocationFull().c_str(),
3263 aHD->i_getChildren().size());
3264
3265 ComObjPtr<Medium> pChild = aHD->i_getChildren().front();
3266
3267 AutoWriteLock childLock(pChild COMMA_LOCKVAL_SRC_POS);
3268
3269 /* the rest is a normal merge setup */
3270 if (aHD->i_getParent().isNull())
3271 {
3272 /* base hard disk, backward merge */
3273 const Guid *pMachineId1 = pChild->i_getFirstMachineBackrefId();
3274 const Guid *pMachineId2 = aHD->i_getFirstMachineBackrefId();
3275 if (pMachineId1 && pMachineId2 && *pMachineId1 != *pMachineId2)
3276 {
3277 /* backward merge is too tricky, we'll just detach on snapshot
3278 * deletion, so lock only, to prevent any usage */
3279 childLock.release();
3280 alock.release();
3281 return aHD->LockWrite(aHDLockToken.asOutParam());
3282 }
3283
3284 aSource = pChild;
3285 aTarget = aHD;
3286 }
3287 else
3288 {
3289 /* Determine best merge direction. */
3290 bool fMergeForward = true;
3291
3292 childLock.release();
3293 alock.release();
3294 HRESULT rc = aHD->i_queryPreferredMergeDirection(pChild, fMergeForward);
3295 alock.acquire();
3296 childLock.acquire();
3297
3298 if (FAILED(rc) && rc != E_FAIL)
3299 return rc;
3300
3301 if (fMergeForward)
3302 {
3303 aSource = aHD;
3304 aTarget = pChild;
3305 LogFlowThisFunc(("Forward merging selected\n"));
3306 }
3307 else
3308 {
3309 aSource = pChild;
3310 aTarget = aHD;
3311 LogFlowThisFunc(("Backward merging selected\n"));
3312 }
3313 }
3314
3315 HRESULT rc;
3316 childLock.release();
3317 alock.release();
3318 rc = aSource->i_prepareMergeTo(aTarget, &aMachineId, &aSnapshotId,
3319 !fOnlineMergePossible /* fLockMedia */,
3320 aMergeForward, aParentForTarget,
3321 aChildrenToReparent, aMediumLockList);
3322 alock.acquire();
3323 childLock.acquire();
3324 if (SUCCEEDED(rc) && fOnlineMergePossible)
3325 {
3326 /* Try to lock the newly constructed medium lock list. If it succeeds
3327 * this can be handled as an offline merge, i.e. without the need of
3328 * asking the VM to do the merging. Only continue with the online
3329 * merging preparation if applicable. */
3330 childLock.release();
3331 alock.release();
3332 rc = aMediumLockList->Lock();
3333 alock.acquire();
3334 childLock.acquire();
3335 if (FAILED(rc) && fOnlineMergePossible)
3336 {
3337 /* Locking failed, this cannot be done as an offline merge. Try to
3338 * combine the locking information into the lock list of the medium
3339 * attachment in the running VM. If that fails or locking the
3340 * resulting lock list fails then the merge cannot be done online.
3341 * It can be repeated by the user when the VM is shut down. */
3342 MediumLockList::Base::iterator lockListVMMABegin =
3343 aVMMALockList->GetBegin();
3344 MediumLockList::Base::iterator lockListVMMAEnd =
3345 aVMMALockList->GetEnd();
3346 MediumLockList::Base::iterator lockListBegin =
3347 aMediumLockList->GetBegin();
3348 MediumLockList::Base::iterator lockListEnd =
3349 aMediumLockList->GetEnd();
3350 for (MediumLockList::Base::iterator it = lockListVMMABegin,
3351 it2 = lockListBegin;
3352 it2 != lockListEnd;
3353 ++it, ++it2)
3354 {
3355 if ( it == lockListVMMAEnd
3356 || it->GetMedium() != it2->GetMedium())
3357 {
3358 fOnlineMergePossible = false;
3359 break;
3360 }
3361 bool fLockReq = (it2->GetLockRequest() || it->GetLockRequest());
3362 childLock.release();
3363 alock.release();
3364 rc = it->UpdateLock(fLockReq);
3365 alock.acquire();
3366 childLock.acquire();
3367 if (FAILED(rc))
3368 {
3369 // could not update the lock, trigger cleanup below
3370 fOnlineMergePossible = false;
3371 break;
3372 }
3373 }
3374
3375 if (fOnlineMergePossible)
3376 {
3377 /* we will lock the children of the source for reparenting */
3378 if (aChildrenToReparent && !aChildrenToReparent->IsEmpty())
3379 {
3380 /* Cannot just call aChildrenToReparent->Lock(), as one of
3381 * the children is the one under which the current state of
3382 * the VM is located, and this means it is already locked
3383 * (for reading). Note that no special unlocking is needed,
3384 * because cancelMergeTo will unlock everything locked in
3385 * its context (using the unlock on destruction), and both
3386 * cancelDeleteSnapshotMedium (in case something fails) and
3387 * FinishOnlineMergeMedium re-define the read/write lock
3388 * state of everything which the VM need, search for the
3389 * UpdateLock method calls. */
3390 childLock.release();
3391 alock.release();
3392 rc = aChildrenToReparent->Lock(true /* fSkipOverLockedMedia */);
3393 alock.acquire();
3394 childLock.acquire();
3395 MediumLockList::Base::iterator childrenToReparentBegin = aChildrenToReparent->GetBegin();
3396 MediumLockList::Base::iterator childrenToReparentEnd = aChildrenToReparent->GetEnd();
3397 for (MediumLockList::Base::iterator it = childrenToReparentBegin;
3398 it != childrenToReparentEnd;
3399 ++it)
3400 {
3401 ComObjPtr<Medium> pMedium = it->GetMedium();
3402 AutoReadLock mediumLock(pMedium COMMA_LOCKVAL_SRC_POS);
3403 if (!it->IsLocked())
3404 {
3405 mediumLock.release();
3406 childLock.release();
3407 alock.release();
3408 rc = aVMMALockList->Update(pMedium, true);
3409 alock.acquire();
3410 childLock.acquire();
3411 mediumLock.acquire();
3412 if (FAILED(rc))
3413 throw rc;
3414 }
3415 }
3416 }
3417 }
3418
3419 if (fOnlineMergePossible)
3420 {
3421 childLock.release();
3422 alock.release();
3423 rc = aVMMALockList->Lock();
3424 alock.acquire();
3425 childLock.acquire();
3426 if (FAILED(rc))
3427 {
3428 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3429 rc = setError(rc,
3430 tr("Cannot lock hard disk '%s' for a live merge"),
3431 aHD->i_getLocationFull().c_str());
3432 }
3433 else
3434 {
3435 delete aMediumLockList;
3436 aMediumLockList = aVMMALockList;
3437 fNeedsOnlineMerge = true;
3438 }
3439 }
3440 else
3441 {
3442 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3443 rc = setError(rc,
3444 tr("Failed to construct lock list for a live merge of hard disk '%s'"),
3445 aHD->i_getLocationFull().c_str());
3446 }
3447
3448 // fix the VM's lock list if anything failed
3449 if (FAILED(rc))
3450 {
3451 lockListVMMABegin = aVMMALockList->GetBegin();
3452 lockListVMMAEnd = aVMMALockList->GetEnd();
3453 MediumLockList::Base::iterator lockListLast = lockListVMMAEnd;
3454 lockListLast--;
3455 for (MediumLockList::Base::iterator it = lockListVMMABegin;
3456 it != lockListVMMAEnd;
3457 ++it)
3458 {
3459 childLock.release();
3460 alock.release();
3461 it->UpdateLock(it == lockListLast);
3462 alock.acquire();
3463 childLock.acquire();
3464 ComObjPtr<Medium> pMedium = it->GetMedium();
3465 AutoWriteLock mediumLock(pMedium COMMA_LOCKVAL_SRC_POS);
3466 // blindly apply this, only needed for medium objects which
3467 // would be deleted as part of the merge
3468 pMedium->i_unmarkLockedForDeletion();
3469 }
3470 }
3471
3472 }
3473 else
3474 {
3475 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3476 rc = setError(rc,
3477 tr("Cannot lock hard disk '%s' for an offline merge"),
3478 aHD->i_getLocationFull().c_str());
3479 }
3480 }
3481
3482 return rc;
3483}
3484
3485/**
3486 * Cancels the deletion/merging of this hard disk (part of a snapshot). Undoes
3487 * what #prepareDeleteSnapshotMedium() did. Must be called if
3488 * #deleteSnapshotMedium() is not called or fails.
3489 *
3490 * @param aHD Hard disk which is connected to the snapshot.
3491 * @param aSource Source hard disk for merge.
3492 * @param aChildrenToReparent Children to unlock.
3493 * @param fNeedsOnlineMerge Whether this merge needs to be done online.
3494 * @param aMediumLockList Medium locks to cancel.
3495 * @param aHDLockToken Optional write lock token for aHD.
3496 * @param aMachineId Machine id to attach the medium to.
3497 * @param aSnapshotId Snapshot id to attach the medium to.
3498 *
3499 * @note Locks the medium tree and the hard disks in the chain for writing.
3500 */
3501void SessionMachine::i_cancelDeleteSnapshotMedium(const ComObjPtr<Medium> &aHD,
3502 const ComObjPtr<Medium> &aSource,
3503 MediumLockList *aChildrenToReparent,
3504 bool fNeedsOnlineMerge,
3505 MediumLockList *aMediumLockList,
3506 const ComPtr<IToken> &aHDLockToken,
3507 const Guid &aMachineId,
3508 const Guid &aSnapshotId)
3509{
3510 if (aMediumLockList == NULL)
3511 {
3512 AutoMultiWriteLock2 mLock(&mParent->i_getMediaTreeLockHandle(), aHD->lockHandle() COMMA_LOCKVAL_SRC_POS);
3513
3514 Assert(aHD->i_getChildren().size() == 0);
3515
3516 if (aHD->i_getParent().isNull())
3517 {
3518 Assert(!aHDLockToken.isNull());
3519 if (!aHDLockToken.isNull())
3520 {
3521 HRESULT rc = aHDLockToken->Abandon();
3522 AssertComRC(rc);
3523 }
3524 }
3525 else
3526 {
3527 HRESULT rc = aHD->i_unmarkForDeletion();
3528 AssertComRC(rc);
3529 }
3530 }
3531 else
3532 {
3533 if (fNeedsOnlineMerge)
3534 {
3535 // Online merge uses the medium lock list of the VM, so give
3536 // an empty list to cancelMergeTo so that it works as designed.
3537 aSource->i_cancelMergeTo(aChildrenToReparent, new MediumLockList());
3538
3539 // clean up the VM medium lock list ourselves
3540 MediumLockList::Base::iterator lockListBegin =
3541 aMediumLockList->GetBegin();
3542 MediumLockList::Base::iterator lockListEnd =
3543 aMediumLockList->GetEnd();
3544 MediumLockList::Base::iterator lockListLast = lockListEnd;
3545 lockListLast--;
3546 for (MediumLockList::Base::iterator it = lockListBegin;
3547 it != lockListEnd;
3548 ++it)
3549 {
3550 ComObjPtr<Medium> pMedium = it->GetMedium();
3551 AutoWriteLock mediumLock(pMedium COMMA_LOCKVAL_SRC_POS);
3552 if (pMedium->i_getState() == MediumState_Deleting)
3553 pMedium->i_unmarkForDeletion();
3554 else
3555 {
3556 // blindly apply this, only needed for medium objects which
3557 // would be deleted as part of the merge
3558 pMedium->i_unmarkLockedForDeletion();
3559 }
3560 mediumLock.release();
3561 it->UpdateLock(it == lockListLast);
3562 mediumLock.acquire();
3563 }
3564 }
3565 else
3566 {
3567 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3568 }
3569 }
3570
3571 if (aMachineId.isValid() && !aMachineId.isZero())
3572 {
3573 // reattach the source media to the snapshot
3574 HRESULT rc = aSource->i_addBackReference(aMachineId, aSnapshotId);
3575 AssertComRC(rc);
3576 }
3577}
3578
3579/**
3580 * Perform an online merge of a hard disk, i.e. the equivalent of
3581 * Medium::mergeTo(), just for running VMs. If this fails you need to call
3582 * #cancelDeleteSnapshotMedium().
3583 *
3584 * @return COM status code
3585 * @param aMediumAttachment Identify where the disk is attached in the VM.
3586 * @param aSource Source hard disk for merge.
3587 * @param aTarget Target hard disk for merge.
3588 * @param aMergeForward Merge direction.
3589 * @param aParentForTarget New parent if target needs to be reparented.
3590 * @param aChildrenToReparent Medium lock list with children which have to be
3591 * reparented to the target.
3592 * @param aMediumLockList Where to store the created medium lock list (may
3593 * return NULL if no real merge is necessary).
3594 * @param aProgress Progress indicator.
3595 * @param pfNeedsMachineSaveSettings Whether the VM settings need to be saved (out).
3596 */
3597HRESULT SessionMachine::i_onlineMergeMedium(const ComObjPtr<MediumAttachment> &aMediumAttachment,
3598 const ComObjPtr<Medium> &aSource,
3599 const ComObjPtr<Medium> &aTarget,
3600 bool fMergeForward,
3601 const ComObjPtr<Medium> &aParentForTarget,
3602 MediumLockList *aChildrenToReparent,
3603 MediumLockList *aMediumLockList,
3604 ComObjPtr<Progress> &aProgress,
3605 bool *pfNeedsMachineSaveSettings)
3606{
3607 AssertReturn(aSource != NULL, E_FAIL);
3608 AssertReturn(aTarget != NULL, E_FAIL);
3609 AssertReturn(aSource != aTarget, E_FAIL);
3610 AssertReturn(aMediumLockList != NULL, E_FAIL);
3611 NOREF(fMergeForward);
3612 NOREF(aParentForTarget);
3613 NOREF(aChildrenToReparent);
3614
3615 HRESULT rc = S_OK;
3616
3617 try
3618 {
3619 // Similar code appears in Medium::taskMergeHandle, so
3620 // if you make any changes below check whether they are applicable
3621 // in that context as well.
3622
3623 unsigned uTargetIdx = (unsigned)-1;
3624 unsigned uSourceIdx = (unsigned)-1;
3625 /* Sanity check all hard disks in the chain. */
3626 MediumLockList::Base::iterator lockListBegin =
3627 aMediumLockList->GetBegin();
3628 MediumLockList::Base::iterator lockListEnd =
3629 aMediumLockList->GetEnd();
3630 unsigned i = 0;
3631 for (MediumLockList::Base::iterator it = lockListBegin;
3632 it != lockListEnd;
3633 ++it)
3634 {
3635 MediumLock &mediumLock = *it;
3636 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
3637
3638 if (pMedium == aSource)
3639 uSourceIdx = i;
3640 else if (pMedium == aTarget)
3641 uTargetIdx = i;
3642
3643 // In Medium::taskMergeHandler there is lots of consistency
3644 // checking which we cannot do here, as the state details are
3645 // impossible to get outside the Medium class. The locking should
3646 // have done the checks already.
3647
3648 i++;
3649 }
3650
3651 ComAssertThrow( uSourceIdx != (unsigned)-1
3652 && uTargetIdx != (unsigned)-1, E_FAIL);
3653
3654 ComPtr<IInternalSessionControl> directControl;
3655 {
3656 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
3657
3658 if (mData->mSession.mState != SessionState_Locked)
3659 throw setError(VBOX_E_INVALID_VM_STATE,
3660 tr("Machine is not locked by a session (session state: %s)"),
3661 Global::stringifySessionState(mData->mSession.mState));
3662 directControl = mData->mSession.mDirectControl;
3663 }
3664
3665 // Must not hold any locks here, as this will call back to finish
3666 // updating the medium attachment, chain linking and state.
3667 rc = directControl->OnlineMergeMedium(aMediumAttachment,
3668 uSourceIdx, uTargetIdx,
3669 aProgress);
3670 if (FAILED(rc))
3671 throw rc;
3672 }
3673 catch (HRESULT aRC) { rc = aRC; }
3674
3675 // The callback mentioned above takes care of update the medium state
3676
3677 if (pfNeedsMachineSaveSettings)
3678 *pfNeedsMachineSaveSettings = true;
3679
3680 return rc;
3681}
3682
3683/**
3684 * Implementation for IInternalMachineControl::finishOnlineMergeMedium().
3685 *
3686 * Gets called after the successful completion of an online merge from
3687 * Console::onlineMergeMedium(), which gets invoked indirectly above in
3688 * the call to IInternalSessionControl::onlineMergeMedium.
3689 *
3690 * This updates the medium information and medium state so that the VM
3691 * can continue with the updated state of the medium chain.
3692 */
3693HRESULT SessionMachine::finishOnlineMergeMedium()
3694{
3695 HRESULT rc = S_OK;
3696 MediumDeleteRec *pDeleteRec = (MediumDeleteRec *)mConsoleTaskData.mDeleteSnapshotInfo;
3697 AssertReturn(pDeleteRec, E_FAIL);
3698 bool fSourceHasChildren = false;
3699
3700 // all hard disks but the target were successfully deleted by
3701 // the merge; reparent target if necessary and uninitialize media
3702
3703 AutoWriteLock treeLock(mParent->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3704
3705 // Declare this here to make sure the object does not get uninitialized
3706 // before this method completes. Would normally happen as halfway through
3707 // we delete the last reference to the no longer existing medium object.
3708 ComObjPtr<Medium> targetChild;
3709
3710 if (pDeleteRec->mfMergeForward)
3711 {
3712 // first, unregister the target since it may become a base
3713 // hard disk which needs re-registration
3714 rc = mParent->i_unregisterMedium(pDeleteRec->mpTarget);
3715 AssertComRC(rc);
3716
3717 // then, reparent it and disconnect the deleted branch at
3718 // both ends (chain->parent() is source's parent)
3719 pDeleteRec->mpTarget->i_deparent();
3720 pDeleteRec->mpTarget->i_setParent(pDeleteRec->mpParentForTarget);
3721 if (pDeleteRec->mpParentForTarget)
3722 pDeleteRec->mpSource->i_deparent();
3723
3724 // then, register again
3725 rc = mParent->i_registerMedium(pDeleteRec->mpTarget, &pDeleteRec->mpTarget, treeLock);
3726 AssertComRC(rc);
3727 }
3728 else
3729 {
3730 Assert(pDeleteRec->mpTarget->i_getChildren().size() == 1);
3731 targetChild = pDeleteRec->mpTarget->i_getChildren().front();
3732
3733 // disconnect the deleted branch at the elder end
3734 targetChild->i_deparent();
3735
3736 // Update parent UUIDs of the source's children, reparent them and
3737 // disconnect the deleted branch at the younger end
3738 if (pDeleteRec->mpChildrenToReparent && !pDeleteRec->mpChildrenToReparent->IsEmpty())
3739 {
3740 fSourceHasChildren = true;
3741 // Fix the parent UUID of the images which needs to be moved to
3742 // underneath target. The running machine has the images opened,
3743 // but only for reading since the VM is paused. If anything fails
3744 // we must continue. The worst possible result is that the images
3745 // need manual fixing via VBoxManage to adjust the parent UUID.
3746 treeLock.release();
3747 pDeleteRec->mpTarget->i_fixParentUuidOfChildren(pDeleteRec->mpChildrenToReparent);
3748 // The childen are still write locked, unlock them now and don't
3749 // rely on the destructor doing it very late.
3750 pDeleteRec->mpChildrenToReparent->Unlock();
3751 treeLock.acquire();
3752
3753 // obey {parent,child} lock order
3754 AutoWriteLock sourceLock(pDeleteRec->mpSource COMMA_LOCKVAL_SRC_POS);
3755
3756 MediumLockList::Base::iterator childrenBegin = pDeleteRec->mpChildrenToReparent->GetBegin();
3757 MediumLockList::Base::iterator childrenEnd = pDeleteRec->mpChildrenToReparent->GetEnd();
3758 for (MediumLockList::Base::iterator it = childrenBegin;
3759 it != childrenEnd;
3760 ++it)
3761 {
3762 Medium *pMedium = it->GetMedium();
3763 AutoWriteLock childLock(pMedium COMMA_LOCKVAL_SRC_POS);
3764
3765 pMedium->i_deparent(); // removes pMedium from source
3766 pMedium->i_setParent(pDeleteRec->mpTarget);
3767 }
3768 }
3769 }
3770
3771 /* unregister and uninitialize all hard disks removed by the merge */
3772 MediumLockList *pMediumLockList = NULL;
3773 rc = mData->mSession.mLockedMedia.Get(pDeleteRec->mpOnlineMediumAttachment, pMediumLockList);
3774 const ComObjPtr<Medium> &pLast = pDeleteRec->mfMergeForward ? pDeleteRec->mpTarget : pDeleteRec->mpSource;
3775 AssertReturn(SUCCEEDED(rc) && pMediumLockList, E_FAIL);
3776 MediumLockList::Base::iterator lockListBegin =
3777 pMediumLockList->GetBegin();
3778 MediumLockList::Base::iterator lockListEnd =
3779 pMediumLockList->GetEnd();
3780 for (MediumLockList::Base::iterator it = lockListBegin;
3781 it != lockListEnd;
3782 )
3783 {
3784 MediumLock &mediumLock = *it;
3785 /* Create a real copy of the medium pointer, as the medium
3786 * lock deletion below would invalidate the referenced object. */
3787 const ComObjPtr<Medium> pMedium = mediumLock.GetMedium();
3788
3789 /* The target and all images not merged (readonly) are skipped */
3790 if ( pMedium == pDeleteRec->mpTarget
3791 || pMedium->i_getState() == MediumState_LockedRead)
3792 {
3793 ++it;
3794 }
3795 else
3796 {
3797 rc = mParent->i_unregisterMedium(pMedium);
3798 AssertComRC(rc);
3799
3800 /* now, uninitialize the deleted hard disk (note that
3801 * due to the Deleting state, uninit() will not touch
3802 * the parent-child relationship so we need to
3803 * uninitialize each disk individually) */
3804
3805 /* note that the operation initiator hard disk (which is
3806 * normally also the source hard disk) is a special case
3807 * -- there is one more caller added by Task to it which
3808 * we must release. Also, if we are in sync mode, the
3809 * caller may still hold an AutoCaller instance for it
3810 * and therefore we cannot uninit() it (it's therefore
3811 * the caller's responsibility) */
3812 if (pMedium == pDeleteRec->mpSource)
3813 {
3814 Assert(pDeleteRec->mpSource->i_getChildren().size() == 0);
3815 Assert(pDeleteRec->mpSource->i_getFirstMachineBackrefId() == NULL);
3816 }
3817
3818 /* Delete the medium lock list entry, which also releases the
3819 * caller added by MergeChain before uninit() and updates the
3820 * iterator to point to the right place. */
3821 rc = pMediumLockList->RemoveByIterator(it);
3822 AssertComRC(rc);
3823
3824 treeLock.release();
3825 pMedium->uninit();
3826 treeLock.acquire();
3827 }
3828
3829 /* Stop as soon as we reached the last medium affected by the merge.
3830 * The remaining images must be kept unchanged. */
3831 if (pMedium == pLast)
3832 break;
3833 }
3834
3835 /* Could be in principle folded into the previous loop, but let's keep
3836 * things simple. Update the medium locking to be the standard state:
3837 * all parent images locked for reading, just the last diff for writing. */
3838 lockListBegin = pMediumLockList->GetBegin();
3839 lockListEnd = pMediumLockList->GetEnd();
3840 MediumLockList::Base::iterator lockListLast = lockListEnd;
3841 lockListLast--;
3842 for (MediumLockList::Base::iterator it = lockListBegin;
3843 it != lockListEnd;
3844 ++it)
3845 {
3846 it->UpdateLock(it == lockListLast);
3847 }
3848
3849 /* If this is a backwards merge of the only remaining snapshot (i.e. the
3850 * source has no children) then update the medium associated with the
3851 * attachment, as the previously associated one (source) is now deleted.
3852 * Without the immediate update the VM could not continue running. */
3853 if (!pDeleteRec->mfMergeForward && !fSourceHasChildren)
3854 {
3855 AutoWriteLock attLock(pDeleteRec->mpOnlineMediumAttachment COMMA_LOCKVAL_SRC_POS);
3856 pDeleteRec->mpOnlineMediumAttachment->i_updateMedium(pDeleteRec->mpTarget);
3857 }
3858
3859 return S_OK;
3860}
3861
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