VirtualBox

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

Last change on this file since 55436 was 55255, checked in by vboxsync, 10 years ago

Main/Snapshot: only update the machine state on the VM process if there is one,
and introduce a new event when a snapshot has been restored instead of abusing t
he one for deleting a snapshot.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 143.8 KB
Line 
1/* $Id: SnapshotImpl.cpp 55255 2015-04-14 15:45:46Z 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 }
1347
1348 void handler()
1349 {
1350 ((SessionMachine *)(Machine *)m_pMachine)->i_takeSnapshotHandler(*this);
1351 }
1352
1353 Utf8Str m_strName;
1354 Utf8Str m_strDescription;
1355 Utf8Str m_strStateFilePath;
1356 ComPtr<IInternalSessionControl> m_pDirectControl;
1357 bool m_fPause;
1358 uint32_t m_uMemSize;
1359 bool m_fTakingSnapshotOnline;
1360};
1361
1362/** Restore snapshot task */
1363struct SessionMachine::RestoreSnapshotTask
1364 : public SessionMachine::SnapshotTask
1365{
1366 RestoreSnapshotTask(SessionMachine *m,
1367 Progress *p,
1368 const Utf8Str &t,
1369 Snapshot *s)
1370 : SnapshotTask(m, p, t, s)
1371 {}
1372
1373 void handler()
1374 {
1375 ((SessionMachine *)(Machine *)m_pMachine)->i_restoreSnapshotHandler(*this);
1376 }
1377};
1378
1379/** Delete snapshot task */
1380struct SessionMachine::DeleteSnapshotTask
1381 : public SessionMachine::SnapshotTask
1382{
1383 DeleteSnapshotTask(SessionMachine *m,
1384 Progress *p,
1385 const Utf8Str &t,
1386 bool fDeleteOnline,
1387 Snapshot *s)
1388 : SnapshotTask(m, p, t, s),
1389 m_fDeleteOnline(fDeleteOnline)
1390 {}
1391
1392 void handler()
1393 {
1394 ((SessionMachine *)(Machine *)m_pMachine)->i_deleteSnapshotHandler(*this);
1395 }
1396
1397 bool m_fDeleteOnline;
1398};
1399
1400
1401////////////////////////////////////////////////////////////////////////////////
1402//
1403// TakeSnapshot methods (Machine and related tasks)
1404//
1405////////////////////////////////////////////////////////////////////////////////
1406
1407HRESULT Machine::takeSnapshot(const com::Utf8Str &aName,
1408 const com::Utf8Str &aDescription,
1409 BOOL fPause,
1410 ComPtr<IProgress> &aProgress)
1411{
1412 NOREF(aName);
1413 NOREF(aDescription);
1414 NOREF(fPause);
1415 NOREF(aProgress);
1416 ReturnComNotImplemented();
1417}
1418
1419HRESULT SessionMachine::takeSnapshot(const com::Utf8Str &aName,
1420 const com::Utf8Str &aDescription,
1421 BOOL fPause,
1422 ComPtr<IProgress> &aProgress)
1423{
1424 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1425 LogFlowThisFunc(("aName='%s' mMachineState=%d\n", aName.c_str(), mData->mMachineState));
1426
1427 if (Global::IsTransient(mData->mMachineState))
1428 return setError(VBOX_E_INVALID_VM_STATE,
1429 tr("Cannot take a snapshot of the machine while it is changing the state (machine state: %s)"),
1430 Global::stringifyMachineState(mData->mMachineState));
1431
1432 HRESULT rc = i_checkStateDependency(MutableOrSavedOrRunningStateDep);
1433 if (FAILED(rc))
1434 return rc;
1435
1436 // prepare the progress object:
1437 // a) count the no. of hard disk attachments to get a matching no. of progress sub-operations
1438 ULONG cOperations = 2; // always at least setting up + finishing up
1439 ULONG ulTotalOperationsWeight = 2; // one each for setting up + finishing up
1440
1441 for (MediaData::AttachmentList::iterator it = mMediaData->mAttachments.begin();
1442 it != mMediaData->mAttachments.end();
1443 ++it)
1444 {
1445 const ComObjPtr<MediumAttachment> pAtt(*it);
1446 AutoReadLock attlock(pAtt COMMA_LOCKVAL_SRC_POS);
1447 AutoCaller attCaller(pAtt);
1448 if (pAtt->i_getType() == DeviceType_HardDisk)
1449 {
1450 ++cOperations;
1451
1452 // assume that creating a diff image takes as long as saving a 1MB state
1453 ulTotalOperationsWeight += 1;
1454 }
1455 }
1456
1457 // b) one extra sub-operations for online snapshots OR offline snapshots that have a saved state (needs to be copied)
1458 const bool fTakingSnapshotOnline = Global::IsOnline(mData->mMachineState);
1459 LogFlowThisFunc(("fTakingSnapshotOnline = %d\n", fTakingSnapshotOnline));
1460 if (fTakingSnapshotOnline)
1461 {
1462 ++cOperations;
1463 ulTotalOperationsWeight += mHWData->mMemorySize;
1464 }
1465
1466 // finally, create the progress object
1467 ComObjPtr<Progress> pProgress;
1468 pProgress.createObject();
1469 rc = pProgress->init(mParent,
1470 static_cast<IMachine *>(this),
1471 Bstr(tr("Taking a snapshot of the virtual machine")).raw(),
1472 fTakingSnapshotOnline /* aCancelable */,
1473 cOperations,
1474 ulTotalOperationsWeight,
1475 Bstr(tr("Setting up snapshot operation")).raw(), // first sub-op description
1476 1); // ulFirstOperationWeight
1477 if (FAILED(rc))
1478 return rc;
1479
1480 /* create and start the task on a separate thread (note that it will not
1481 * start working until we release alock) */
1482 TakeSnapshotTask *pTask = new TakeSnapshotTask(this,
1483 pProgress,
1484 "TakeSnap",
1485 NULL /* pSnapshot */,
1486 aName,
1487 aDescription,
1488 !!fPause,
1489 mHWData->mMemorySize,
1490 fTakingSnapshotOnline);
1491 rc = pTask->createThread();
1492 if (FAILED(rc))
1493 return rc;
1494
1495 /* set the proper machine state (note: after creating a Task instance) */
1496 if (fTakingSnapshotOnline)
1497 {
1498 if (pTask->m_machineStateBackup != MachineState_Paused && !fPause)
1499 i_setMachineState(MachineState_LiveSnapshotting);
1500 else
1501 i_setMachineState(MachineState_OnlineSnapshotting);
1502 i_updateMachineStateOnClient();
1503 }
1504 else
1505 i_setMachineState(MachineState_Snapshotting);
1506
1507 pTask->m_pProgress.queryInterfaceTo(aProgress.asOutParam());
1508
1509 return rc;
1510}
1511
1512/**
1513 * Task thread implementation for SessionMachine::TakeSnapshot(), called from
1514 * SessionMachine::taskHandler().
1515 *
1516 * @note Locks this object for writing.
1517 *
1518 * @param task
1519 * @return
1520 */
1521void SessionMachine::i_takeSnapshotHandler(TakeSnapshotTask &task)
1522{
1523 LogFlowThisFuncEnter();
1524
1525 // Taking a snapshot consists of the following:
1526 // 1) creating a Snapshot object with the current state of the machine
1527 // (hardware + storage)
1528 // 2) creating a diff image for each virtual hard disk, into which write
1529 // operations go after the snapshot has been created
1530 // 3) if the machine is online: saving the state of the virtual machine
1531 // (in the VM process)
1532 // 4) reattach the hard disks
1533 // 5) update the various snapshot/machine objects, save settings
1534
1535 HRESULT rc = S_OK;
1536 AutoCaller autoCaller(this);
1537 LogFlowThisFunc(("state=%d\n", getObjectState().getState()));
1538 if (FAILED(autoCaller.rc()))
1539 {
1540 /* we might have been uninitialized because the session was accidentally
1541 * closed by the client, so don't assert */
1542 rc = setError(E_FAIL,
1543 tr("The session has been accidentally closed"));
1544 task.m_pProgress->i_notifyComplete(rc);
1545 LogFlowThisFuncLeave();
1546 return;
1547 }
1548
1549 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1550
1551 bool fBeganTakingSnapshot = false;
1552 BOOL fSuspendedBySave = FALSE;
1553
1554 try
1555 {
1556 // @todo: at this point we have to be in the right state!!!!
1557 AssertStmt( !Global::IsOnlineOrTransient(mData->mMachineState)
1558 || mData->mMachineState == MachineState_Snapshotting
1559 || mData->mMachineState == MachineState_OnlineSnapshotting
1560 || mData->mMachineState == MachineState_LiveSnapshotting, throw E_FAIL);
1561 AssertStmt(task.m_machineStateBackup != mData->mMachineState, throw E_FAIL);
1562 AssertStmt(task.m_pSnapshot.isNull(), throw E_FAIL);
1563
1564 if ( mData->mCurrentSnapshot
1565 && mData->mCurrentSnapshot->i_getDepth() >= SETTINGS_SNAPSHOT_DEPTH_MAX)
1566 {
1567 throw setError(VBOX_E_INVALID_OBJECT_STATE,
1568 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"),
1569 mUserData->s.strName.c_str());
1570 }
1571
1572 if ( !task.m_fTakingSnapshotOnline
1573 && mData->mMachineState != MachineState_Saved)
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
1584 /* task.m_strStateFilePath is "" when the machine is offline or saved */
1585 if (task.m_fTakingSnapshotOnline)
1586 {
1587 Bstr value;
1588 rc = GetExtraData(Bstr("VBoxInternal2/ForceTakeSnapshotWithoutState").raw(),
1589 value.asOutParam());
1590 if (FAILED(rc) || value != "1")
1591 // creating a new online snapshot: we need a fresh saved state file
1592 i_composeSavedStateFilename(task.m_strStateFilePath);
1593 }
1594 else if (mData->mMachineState == MachineState_Saved)
1595 // taking an offline snapshot from machine in "saved" state: use existing state file
1596 task.m_strStateFilePath = mSSData->strStateFilePath;
1597
1598 if (task.m_strStateFilePath.isNotEmpty())
1599 {
1600 // ensure the directory for the saved state file exists
1601 rc = VirtualBox::i_ensureFilePathExists(task.m_strStateFilePath, true /* fCreate */);
1602 if (FAILED(rc))
1603 throw rc;
1604 }
1605
1606 /* STEP 1: create the snapshot object */
1607
1608 /* create an ID for the snapshot */
1609 Guid snapshotId;
1610 snapshotId.create();
1611
1612 /* create a snapshot machine object */
1613 ComObjPtr<SnapshotMachine> pSnapshotMachine;
1614 pSnapshotMachine.createObject();
1615 rc = pSnapshotMachine->init(this, snapshotId.ref(), task.m_strStateFilePath);
1616 AssertComRCThrowRC(rc);
1617
1618 /* create a snapshot object */
1619 RTTIMESPEC time;
1620 RTTimeNow(&time);
1621 task.m_pSnapshot.createObject();
1622 rc = task.m_pSnapshot->init(mParent,
1623 snapshotId,
1624 task.m_strName,
1625 task.m_strDescription,
1626 time,
1627 pSnapshotMachine,
1628 mData->mCurrentSnapshot);
1629 AssertComRCThrowRC(rc);
1630
1631 /* STEP 2: create the diff images */
1632 LogFlowThisFunc(("Creating differencing hard disks (online=%d)...\n",
1633 task.m_fTakingSnapshotOnline));
1634
1635 // Backup the media data so we can recover if something goes wrong.
1636 // The matching commit() is in fixupMedia() during SessionMachine::i_finishTakingSnapshot()
1637 i_setModified(IsModified_Storage);
1638 mMediaData.backup();
1639
1640 alock.release();
1641 /* create new differencing hard disks and attach them to this machine */
1642 rc = i_createImplicitDiffs(task.m_pProgress,
1643 1, // operation weight; must be the same as in Machine::TakeSnapshot()
1644 task.m_fTakingSnapshotOnline);
1645 if (FAILED(rc))
1646 throw rc;
1647 alock.acquire();
1648
1649 // MUST NOT save the settings or the media registry here, because
1650 // this causes trouble with rolling back settings if the user cancels
1651 // taking the snapshot after the diff images have been created.
1652
1653 fBeganTakingSnapshot = true;
1654
1655 /* Check sanity: for offline snapshots there must not be a saved state
1656 * file name. All other combinations are valid (though online snapshots
1657 * without saved state file seems inconsistent - there are exotic use
1658 * cases, which need to be explicitly enabled, see the code above. */
1659 if ( !task.m_fTakingSnapshotOnline
1660 && !task.m_strStateFilePath.isEmpty())
1661 throw setError(E_FAIL, "Invalid state of saved state file");
1662
1663 // STEP 3: save the VM state (if online)
1664 if (task.m_fTakingSnapshotOnline)
1665 {
1666 task.m_pProgress->SetNextOperation(Bstr(tr("Saving the machine state")).raw(),
1667 mHWData->mMemorySize); // operation weight, same as computed
1668 // when setting up progress object
1669
1670 if (task.m_strStateFilePath.isNotEmpty())
1671 {
1672 alock.release();
1673 task.m_pProgress->i_setCancelCallback(i_takeSnapshotProgressCancelCallback, &task);
1674 rc = task.m_pDirectControl->SaveStateWithReason(Reason_Snapshot,
1675 task.m_pProgress,
1676 Bstr(task.m_strStateFilePath).raw(),
1677 task.m_fPause,
1678 &fSuspendedBySave);
1679 task.m_pProgress->i_setCancelCallback(NULL, NULL);
1680 alock.acquire();
1681 if (FAILED(rc))
1682 throw rc;
1683 }
1684 else
1685 LogRel(("Machine: skipped saving state as part of online snapshot\n"));
1686
1687 if (!task.m_pProgress->i_notifyPointOfNoReturn())
1688 throw setError(E_FAIL, tr("Canceled"));
1689
1690 // STEP 4: reattach hard disks
1691 LogFlowThisFunc(("Reattaching new differencing hard disks...\n"));
1692
1693 task.m_pProgress->SetNextOperation(Bstr(tr("Reconfiguring medium attachments")).raw(),
1694 1); // operation weight, same as computed when setting up progress object
1695
1696 com::SafeIfaceArray<IMediumAttachment> atts;
1697 rc = COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(atts));
1698 if (FAILED(rc))
1699 throw rc;
1700
1701 alock.release();
1702 rc = task.m_pDirectControl->ReconfigureMediumAttachments(ComSafeArrayAsInParam(atts));
1703 alock.acquire();
1704 if (FAILED(rc))
1705 throw rc;
1706 }
1707
1708 /*
1709 * Finalize the requested snapshot object. This will reset the
1710 * machine state to the state it had at the beginning.
1711 */
1712 rc = i_finishTakingSnapshot(task, alock, true /*aSuccess*/);
1713 // do not throw rc here because we can't call i_finishTakingSnapshot() twice
1714 LogFlowThisFunc(("i_finishTakingSnapshot -> %Rhrc [mMachineState=%s]\n", rc, Global::stringifyMachineState(mData->mMachineState)));
1715 }
1716 catch (HRESULT rcThrown)
1717 {
1718 rc = rcThrown;
1719 LogThisFunc(("Caught %Rhrc [mMachineState=%s]\n", rc, Global::stringifyMachineState(mData->mMachineState)));
1720
1721 // @todo r=klaus check that the implicit diffs created above are cleaned up im the relevant error cases
1722
1723 /* preserve existing error info */
1724 ErrorInfoKeeper eik;
1725
1726 if (fBeganTakingSnapshot)
1727 i_finishTakingSnapshot(task, alock, false /*aSuccess*/);
1728
1729 // have to postpone this to the end as i_finishTakingSnapshot() needs
1730 // it for various cleanup steps
1731 task.m_pSnapshot->uninit();
1732 task.m_pSnapshot.setNull();
1733 }
1734 Assert(alock.isWriteLockOnCurrentThread());
1735
1736 {
1737 // Keep all error information over the cleanup steps
1738 ErrorInfoKeeper eik;
1739
1740 /*
1741 * Fix up the machine state.
1742 *
1743 * For offline snapshots we just update the local copy, for the other
1744 * variants do the entire work. This ensures that the state is in sync
1745 * with the VM process (in particular the VM execution state).
1746 */
1747 bool fNeedClientMachineStateUpdate = false;
1748 if ( mData->mMachineState == MachineState_LiveSnapshotting
1749 || mData->mMachineState == MachineState_OnlineSnapshotting
1750 || mData->mMachineState == MachineState_Snapshotting)
1751 {
1752 if (!task.m_fTakingSnapshotOnline)
1753 i_setMachineState(task.m_machineStateBackup);
1754 else
1755 {
1756 MachineState_T enmMachineState = MachineState_Null;
1757 HRESULT rc2 = task.m_pDirectControl->COMGETTER(NominalState)(&enmMachineState);
1758 if (FAILED(rc2) || enmMachineState == MachineState_Null)
1759 {
1760 AssertMsgFailed(("state=%s\n", Global::stringifyMachineState(enmMachineState)));
1761 // pure nonsense, try to continue somehow
1762 enmMachineState = MachineState_Aborted;
1763 }
1764 if (enmMachineState == MachineState_Paused)
1765 {
1766 if (fSuspendedBySave)
1767 {
1768 alock.release();
1769 rc2 = task.m_pDirectControl->ResumeWithReason(Reason_Snapshot);
1770 alock.acquire();
1771 if (SUCCEEDED(rc2))
1772 enmMachineState = task.m_machineStateBackup;
1773 }
1774 else
1775 enmMachineState = task.m_machineStateBackup;
1776 }
1777 if (enmMachineState != mData->mMachineState)
1778 {
1779 fNeedClientMachineStateUpdate = true;
1780 i_setMachineState(enmMachineState);
1781 }
1782 }
1783 }
1784
1785 /* check the remote state to see that we got it right. */
1786 MachineState_T enmMachineState = MachineState_Null;
1787 if (!task.m_pDirectControl.isNull())
1788 {
1789 ComPtr<IConsole> pConsole;
1790 task.m_pDirectControl->COMGETTER(RemoteConsole)(pConsole.asOutParam());
1791 if (!pConsole.isNull())
1792 pConsole->COMGETTER(State)(&enmMachineState);
1793 }
1794 LogFlowThisFunc(("local mMachineState=%s remote mMachineState=%s\n",
1795 Global::stringifyMachineState(mData->mMachineState),
1796 Global::stringifyMachineState(enmMachineState)));
1797
1798 if (fNeedClientMachineStateUpdate)
1799 i_updateMachineStateOnClient();
1800 }
1801
1802 task.m_pProgress->i_notifyComplete(rc);
1803
1804 LogFlowThisFuncLeave();
1805}
1806
1807
1808/**
1809 * Progress cancelation callback employed by SessionMachine::i_takeSnapshotHandler.
1810 */
1811/*static*/
1812void SessionMachine::i_takeSnapshotProgressCancelCallback(void *pvUser)
1813{
1814 TakeSnapshotTask *pTask = (TakeSnapshotTask *)pvUser;
1815 AssertPtrReturnVoid(pTask);
1816 AssertReturnVoid(!pTask->m_pDirectControl.isNull());
1817 pTask->m_pDirectControl->CancelSaveStateWithReason();
1818}
1819
1820
1821/**
1822 * Called by the Console when it's done saving the VM state into the snapshot
1823 * (if online) and reconfiguring the hard disks. See BeginTakingSnapshot() above.
1824 *
1825 * This also gets called if the console part of snapshotting failed after the
1826 * BeginTakingSnapshot() call, to clean up the server side.
1827 *
1828 * @note Locks VirtualBox and this object for writing.
1829 *
1830 * @param aSuccess Whether Console was successful with the client-side snapshot things.
1831 * @return
1832 */
1833HRESULT SessionMachine::i_finishTakingSnapshot(TakeSnapshotTask &task, AutoWriteLock &alock, bool aSuccess)
1834{
1835 LogFlowThisFunc(("\n"));
1836
1837 Assert(alock.isWriteLockOnCurrentThread());
1838
1839 AssertReturn( !aSuccess
1840 || mData->mMachineState == MachineState_Snapshotting
1841 || mData->mMachineState == MachineState_OnlineSnapshotting
1842 || mData->mMachineState == MachineState_LiveSnapshotting, E_FAIL);
1843
1844 ComObjPtr<Snapshot> pOldFirstSnap = mData->mFirstSnapshot;
1845 ComObjPtr<Snapshot> pOldCurrentSnap = mData->mCurrentSnapshot;
1846
1847 bool fOnline = Global::IsOnline(task.m_machineStateBackup);
1848
1849 HRESULT rc = S_OK;
1850
1851 if (aSuccess)
1852 {
1853 // new snapshot becomes the current one
1854 mData->mCurrentSnapshot = task.m_pSnapshot;
1855
1856 /* memorize the first snapshot if necessary */
1857 if (!mData->mFirstSnapshot)
1858 mData->mFirstSnapshot = mData->mCurrentSnapshot;
1859
1860 int flSaveSettings = SaveS_Force; // do not do a deep compare in machine settings,
1861 // snapshots change, so we know we need to save
1862 if (!fOnline)
1863 /* the machine was powered off or saved when taking a snapshot, so
1864 * reset the mCurrentStateModified flag */
1865 flSaveSettings |= SaveS_ResetCurStateModified;
1866
1867 rc = i_saveSettings(NULL, flSaveSettings);
1868 }
1869
1870 if (aSuccess && SUCCEEDED(rc))
1871 {
1872 /* associate old hard disks with the snapshot and do locking/unlocking*/
1873 i_commitMedia(fOnline);
1874
1875 /* inform callbacks */
1876 mParent->i_onSnapshotTaken(mData->mUuid,
1877 task.m_pSnapshot->i_getId());
1878 alock.release();
1879 }
1880 else
1881 {
1882 /* delete all differencing hard disks created (this will also attach
1883 * their parents back by rolling back mMediaData) */
1884 alock.release();
1885
1886 i_rollbackMedia();
1887
1888 mData->mFirstSnapshot = pOldFirstSnap; // might have been changed above
1889 mData->mCurrentSnapshot = pOldCurrentSnap; // might have been changed above
1890
1891 // delete the saved state file (it might have been already created)
1892 if (fOnline)
1893 // no need to test for whether the saved state file is shared: an online
1894 // snapshot means that a new saved state file was created, which we must
1895 // clean up now
1896 RTFileDelete(task.m_pSnapshot->i_getStateFilePath().c_str());
1897
1898 alock.acquire();
1899
1900 task.m_pSnapshot->uninit();
1901 alock.release();
1902
1903 }
1904
1905 /* clear out the snapshot data */
1906 task.m_pSnapshot.setNull();
1907
1908 /* alock has been released already */
1909 mParent->i_saveModifiedRegistries();
1910
1911 alock.acquire();
1912
1913 return rc;
1914}
1915
1916////////////////////////////////////////////////////////////////////////////////
1917//
1918// RestoreSnapshot methods (Machine and related tasks)
1919//
1920////////////////////////////////////////////////////////////////////////////////
1921
1922HRESULT Machine::restoreSnapshot(const ComPtr<ISnapshot> &aSnapshot,
1923 ComPtr<IProgress> &aProgress)
1924{
1925 NOREF(aSnapshot);
1926 NOREF(aProgress);
1927 ReturnComNotImplemented();
1928}
1929
1930/**
1931 * Restoring a snapshot happens entirely on the server side, the machine cannot be running.
1932 *
1933 * This creates a new thread that does the work and returns a progress object to the client.
1934 * Actual work then takes place in RestoreSnapshotTask::handler().
1935 *
1936 * @note Locks this + children objects for writing!
1937 *
1938 * @param aSnapshot in: the snapshot to restore.
1939 * @param aProgress out: progress object to monitor restore thread.
1940 * @return
1941 */
1942HRESULT SessionMachine::restoreSnapshot(const ComPtr<ISnapshot> &aSnapshot,
1943 ComPtr<IProgress> &aProgress)
1944{
1945 LogFlowThisFuncEnter();
1946
1947 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1948
1949 // machine must not be running
1950 if (Global::IsOnlineOrTransient(mData->mMachineState))
1951 return setError(VBOX_E_INVALID_VM_STATE,
1952 tr("Cannot delete the current state of the running machine (machine state: %s)"),
1953 Global::stringifyMachineState(mData->mMachineState));
1954
1955 HRESULT rc = i_checkStateDependency(MutableOrSavedStateDep);
1956 if (FAILED(rc))
1957 return rc;
1958
1959 ISnapshot* iSnapshot = aSnapshot;
1960 ComObjPtr<Snapshot> pSnapshot(static_cast<Snapshot*>(iSnapshot));
1961 ComObjPtr<SnapshotMachine> pSnapMachine = pSnapshot->i_getSnapshotMachine();
1962
1963 // create a progress object. The number of operations is:
1964 // 1 (preparing) + # of hard disks + 1 (if we need to copy the saved state file) */
1965 LogFlowThisFunc(("Going thru snapshot machine attachments to determine progress setup\n"));
1966
1967 ULONG ulOpCount = 1; // one for preparations
1968 ULONG ulTotalWeight = 1; // one for preparations
1969 for (MediaData::AttachmentList::iterator it = pSnapMachine->mMediaData->mAttachments.begin();
1970 it != pSnapMachine->mMediaData->mAttachments.end();
1971 ++it)
1972 {
1973 ComObjPtr<MediumAttachment> &pAttach = *it;
1974 AutoReadLock attachLock(pAttach COMMA_LOCKVAL_SRC_POS);
1975 if (pAttach->i_getType() == DeviceType_HardDisk)
1976 {
1977 ++ulOpCount;
1978 ++ulTotalWeight; // assume one MB weight for each differencing hard disk to manage
1979 Assert(pAttach->i_getMedium());
1980 LogFlowThisFunc(("op %d: considering hard disk attachment %s\n", ulOpCount,
1981 pAttach->i_getMedium()->i_getName().c_str()));
1982 }
1983 }
1984
1985 ComObjPtr<Progress> pProgress;
1986 pProgress.createObject();
1987 pProgress->init(mParent, static_cast<IMachine*>(this),
1988 BstrFmt(tr("Restoring snapshot '%s'"), pSnapshot->i_getName().c_str()).raw(),
1989 FALSE /* aCancelable */,
1990 ulOpCount,
1991 ulTotalWeight,
1992 Bstr(tr("Restoring machine settings")).raw(),
1993 1);
1994
1995 /* create and start the task on a separate thread (note that it will not
1996 * start working until we release alock) */
1997 RestoreSnapshotTask *pTask = new RestoreSnapshotTask(this,
1998 pProgress,
1999 "RestoreSnap",
2000 pSnapshot);
2001 rc = pTask->createThread();
2002 if (FAILED(rc))
2003 return rc;
2004
2005 /* set the proper machine state (note: after creating a Task instance) */
2006 i_setMachineState(MachineState_RestoringSnapshot);
2007
2008 /* return the progress to the caller */
2009 pProgress.queryInterfaceTo(aProgress.asOutParam());
2010
2011 LogFlowThisFuncLeave();
2012
2013 return S_OK;
2014}
2015
2016/**
2017 * Worker method for the restore snapshot thread created by SessionMachine::RestoreSnapshot().
2018 * This method gets called indirectly through SessionMachine::taskHandler() which then
2019 * calls RestoreSnapshotTask::handler().
2020 *
2021 * The RestoreSnapshotTask contains the progress object returned to the console by
2022 * SessionMachine::RestoreSnapshot, through which progress and results are reported.
2023 *
2024 * @note Locks mParent + this object for writing.
2025 *
2026 * @param pTask Task data.
2027 */
2028void SessionMachine::i_restoreSnapshotHandler(RestoreSnapshotTask &task)
2029{
2030 LogFlowThisFuncEnter();
2031
2032 AutoCaller autoCaller(this);
2033
2034 LogFlowThisFunc(("state=%d\n", getObjectState().getState()));
2035 if (!autoCaller.isOk())
2036 {
2037 /* we might have been uninitialized because the session was accidentally
2038 * closed by the client, so don't assert */
2039 task.m_pProgress->i_notifyComplete(E_FAIL,
2040 COM_IIDOF(IMachine),
2041 getComponentName(),
2042 tr("The session has been accidentally closed"));
2043
2044 LogFlowThisFuncLeave();
2045 return;
2046 }
2047
2048 HRESULT rc = S_OK;
2049
2050 bool stateRestored = false;
2051
2052 try
2053 {
2054 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2055
2056 /* Discard all current changes to mUserData (name, OSType etc.).
2057 * Note that the machine is powered off, so there is no need to inform
2058 * the direct session. */
2059 if (mData->flModifications)
2060 i_rollback(false /* aNotify */);
2061
2062 /* Delete the saved state file if the machine was Saved prior to this
2063 * operation */
2064 if (task.m_machineStateBackup == MachineState_Saved)
2065 {
2066 Assert(!mSSData->strStateFilePath.isEmpty());
2067
2068 // release the saved state file AFTER unsetting the member variable
2069 // so that releaseSavedStateFile() won't think it's still in use
2070 Utf8Str strStateFile(mSSData->strStateFilePath);
2071 mSSData->strStateFilePath.setNull();
2072 i_releaseSavedStateFile(strStateFile, NULL /* pSnapshotToIgnore */ );
2073
2074 task.modifyBackedUpState(MachineState_PoweredOff);
2075
2076 rc = i_saveStateSettings(SaveSTS_StateFilePath);
2077 if (FAILED(rc))
2078 throw rc;
2079 }
2080
2081 RTTIMESPEC snapshotTimeStamp;
2082 RTTimeSpecSetMilli(&snapshotTimeStamp, 0);
2083
2084 {
2085 AutoReadLock snapshotLock(task.m_pSnapshot COMMA_LOCKVAL_SRC_POS);
2086
2087 /* remember the timestamp of the snapshot we're restoring from */
2088 snapshotTimeStamp = task.m_pSnapshot->i_getTimeStamp();
2089
2090 ComPtr<SnapshotMachine> pSnapshotMachine(task.m_pSnapshot->i_getSnapshotMachine());
2091
2092 /* copy all hardware data from the snapshot */
2093 i_copyFrom(pSnapshotMachine);
2094
2095 LogFlowThisFunc(("Restoring hard disks from the snapshot...\n"));
2096
2097 // restore the attachments from the snapshot
2098 i_setModified(IsModified_Storage);
2099 mMediaData.backup();
2100 mMediaData->mAttachments.clear();
2101 for (MediaData::AttachmentList::const_iterator it = pSnapshotMachine->mMediaData->mAttachments.begin();
2102 it != pSnapshotMachine->mMediaData->mAttachments.end();
2103 ++it)
2104 {
2105 ComObjPtr<MediumAttachment> pAttach;
2106 pAttach.createObject();
2107 pAttach->initCopy(this, *it);
2108 mMediaData->mAttachments.push_back(pAttach);
2109 }
2110
2111 /* release the locks before the potentially lengthy operation */
2112 snapshotLock.release();
2113 alock.release();
2114
2115 rc = i_createImplicitDiffs(task.m_pProgress,
2116 1,
2117 false /* aOnline */);
2118 if (FAILED(rc))
2119 throw rc;
2120
2121 alock.acquire();
2122 snapshotLock.acquire();
2123
2124 /* Note: on success, current (old) hard disks will be
2125 * deassociated/deleted on #commit() called from #i_saveSettings() at
2126 * the end. On failure, newly created implicit diffs will be
2127 * deleted by #rollback() at the end. */
2128
2129 /* should not have a saved state file associated at this point */
2130 Assert(mSSData->strStateFilePath.isEmpty());
2131
2132 const Utf8Str &strSnapshotStateFile = task.m_pSnapshot->i_getStateFilePath();
2133
2134 if (strSnapshotStateFile.isNotEmpty())
2135 // online snapshot: then share the state file
2136 mSSData->strStateFilePath = strSnapshotStateFile;
2137
2138 LogFlowThisFunc(("Setting new current snapshot {%RTuuid}\n", task.m_pSnapshot->i_getId().raw()));
2139 /* make the snapshot we restored from the current snapshot */
2140 mData->mCurrentSnapshot = task.m_pSnapshot;
2141 }
2142
2143 /* grab differencing hard disks from the old attachments that will
2144 * become unused and need to be auto-deleted */
2145 std::list< ComObjPtr<MediumAttachment> > llDiffAttachmentsToDelete;
2146
2147 for (MediaData::AttachmentList::const_iterator it = mMediaData.backedUpData()->mAttachments.begin();
2148 it != mMediaData.backedUpData()->mAttachments.end();
2149 ++it)
2150 {
2151 ComObjPtr<MediumAttachment> pAttach = *it;
2152 ComObjPtr<Medium> pMedium = pAttach->i_getMedium();
2153
2154 /* while the hard disk is attached, the number of children or the
2155 * parent cannot change, so no lock */
2156 if ( !pMedium.isNull()
2157 && pAttach->i_getType() == DeviceType_HardDisk
2158 && !pMedium->i_getParent().isNull()
2159 && pMedium->i_getChildren().size() == 0
2160 )
2161 {
2162 LogFlowThisFunc(("Picked differencing image '%s' for deletion\n", pMedium->i_getName().c_str()));
2163
2164 llDiffAttachmentsToDelete.push_back(pAttach);
2165 }
2166 }
2167
2168 /* we have already deleted the current state, so set the execution
2169 * state accordingly no matter of the delete snapshot result */
2170 if (mSSData->strStateFilePath.isNotEmpty())
2171 i_setMachineState(MachineState_Saved);
2172 else
2173 i_setMachineState(MachineState_PoweredOff);
2174
2175 stateRestored = true;
2176
2177 /* Paranoia: no one must have saved the settings in the mean time. If
2178 * it happens nevertheless we'll close our eyes and continue below. */
2179 Assert(mMediaData.isBackedUp());
2180
2181 /* assign the timestamp from the snapshot */
2182 Assert(RTTimeSpecGetMilli(&snapshotTimeStamp) != 0);
2183 mData->mLastStateChange = snapshotTimeStamp;
2184
2185 // detach the current-state diffs that we detected above and build a list of
2186 // image files to delete _after_ i_saveSettings()
2187
2188 MediaList llDiffsToDelete;
2189
2190 for (std::list< ComObjPtr<MediumAttachment> >::iterator it = llDiffAttachmentsToDelete.begin();
2191 it != llDiffAttachmentsToDelete.end();
2192 ++it)
2193 {
2194 ComObjPtr<MediumAttachment> pAttach = *it; // guaranteed to have only attachments where medium != NULL
2195 ComObjPtr<Medium> pMedium = pAttach->i_getMedium();
2196
2197 AutoWriteLock mlock(pMedium COMMA_LOCKVAL_SRC_POS);
2198
2199 LogFlowThisFunc(("Detaching old current state in differencing image '%s'\n", pMedium->i_getName().c_str()));
2200
2201 // Normally we "detach" the medium by removing the attachment object
2202 // from the current machine data; i_saveSettings() below would then
2203 // compare the current machine data with the one in the backup
2204 // and actually call Medium::removeBackReference(). But that works only half
2205 // the time in our case so instead we force a detachment here:
2206 // remove from machine data
2207 mMediaData->mAttachments.remove(pAttach);
2208 // Remove it from the backup or else i_saveSettings will try to detach
2209 // it again and assert. The paranoia check avoids crashes (see
2210 // assert above) if this code is buggy and saves settings in the
2211 // wrong place.
2212 if (mMediaData.isBackedUp())
2213 mMediaData.backedUpData()->mAttachments.remove(pAttach);
2214 // then clean up backrefs
2215 pMedium->i_removeBackReference(mData->mUuid);
2216
2217 llDiffsToDelete.push_back(pMedium);
2218 }
2219
2220 // save machine settings, reset the modified flag and commit;
2221 bool fNeedsGlobalSaveSettings = false;
2222 rc = i_saveSettings(&fNeedsGlobalSaveSettings,
2223 SaveS_ResetCurStateModified);
2224 if (FAILED(rc))
2225 throw rc;
2226
2227 // release the locks before updating registry and deleting image files
2228 alock.release();
2229
2230 // unconditionally add the parent registry.
2231 mParent->i_markRegistryModified(mParent->i_getGlobalRegistryId());
2232
2233 // from here on we cannot roll back on failure any more
2234
2235 for (MediaList::iterator it = llDiffsToDelete.begin();
2236 it != llDiffsToDelete.end();
2237 ++it)
2238 {
2239 ComObjPtr<Medium> &pMedium = *it;
2240 LogFlowThisFunc(("Deleting old current state in differencing image '%s'\n", pMedium->i_getName().c_str()));
2241
2242 HRESULT rc2 = pMedium->i_deleteStorage(NULL /* aProgress */,
2243 true /* aWait */);
2244 // ignore errors here because we cannot roll back after i_saveSettings() above
2245 if (SUCCEEDED(rc2))
2246 pMedium->uninit();
2247 }
2248 }
2249 catch (HRESULT aRC)
2250 {
2251 rc = aRC;
2252 }
2253
2254 if (FAILED(rc))
2255 {
2256 /* preserve existing error info */
2257 ErrorInfoKeeper eik;
2258
2259 /* undo all changes on failure */
2260 i_rollback(false /* aNotify */);
2261
2262 if (!stateRestored)
2263 {
2264 /* restore the machine state */
2265 i_setMachineState(task.m_machineStateBackup);
2266 }
2267 }
2268
2269 mParent->i_saveModifiedRegistries();
2270
2271 /* set the result (this will try to fetch current error info on failure) */
2272 task.m_pProgress->i_notifyComplete(rc);
2273
2274 if (SUCCEEDED(rc))
2275 mParent->i_onSnapshotRestored(mData->mUuid, Guid());
2276
2277 LogFlowThisFunc(("Done restoring snapshot (rc=%08X)\n", rc));
2278
2279 LogFlowThisFuncLeave();
2280}
2281
2282////////////////////////////////////////////////////////////////////////////////
2283//
2284// DeleteSnapshot methods (SessionMachine and related tasks)
2285//
2286////////////////////////////////////////////////////////////////////////////////
2287
2288HRESULT Machine::deleteSnapshot(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2289{
2290 NOREF(aId);
2291 NOREF(aProgress);
2292 ReturnComNotImplemented();
2293}
2294
2295HRESULT SessionMachine::deleteSnapshot(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2296{
2297 return i_deleteSnapshot(aId, aId,
2298 FALSE /* fDeleteAllChildren */,
2299 aProgress);
2300}
2301
2302HRESULT Machine::deleteSnapshotAndAllChildren(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2303{
2304 NOREF(aId);
2305 NOREF(aProgress);
2306 ReturnComNotImplemented();
2307}
2308
2309HRESULT SessionMachine::deleteSnapshotAndAllChildren(const com::Guid &aId, ComPtr<IProgress> &aProgress)
2310{
2311 return i_deleteSnapshot(aId, aId,
2312 TRUE /* fDeleteAllChildren */,
2313 aProgress);
2314}
2315
2316HRESULT Machine::deleteSnapshotRange(const com::Guid &aStartId, const com::Guid &aEndId, ComPtr<IProgress> &aProgress)
2317{
2318 NOREF(aStartId);
2319 NOREF(aEndId);
2320 NOREF(aProgress);
2321 ReturnComNotImplemented();
2322}
2323
2324HRESULT SessionMachine::deleteSnapshotRange(const com::Guid &aStartId, const com::Guid &aEndId, ComPtr<IProgress> &aProgress)
2325{
2326 return i_deleteSnapshot(aStartId, aEndId,
2327 FALSE /* fDeleteAllChildren */,
2328 aProgress);
2329}
2330
2331
2332/**
2333 * Implementation for SessionMachine::i_deleteSnapshot().
2334 *
2335 * Gets called from SessionMachine::DeleteSnapshot(). Deleting a snapshot
2336 * happens entirely on the server side if the machine is not running, and
2337 * if it is running then the merges are done via internal session callbacks.
2338 *
2339 * This creates a new thread that does the work and returns a progress
2340 * object to the client.
2341 *
2342 * Actual work then takes place in SessionMachine::i_deleteSnapshotHandler().
2343 *
2344 * @note Locks mParent + this + children objects for writing!
2345 */
2346HRESULT SessionMachine::i_deleteSnapshot(const com::Guid &aStartId,
2347 const com::Guid &aEndId,
2348 BOOL aDeleteAllChildren,
2349 ComPtr<IProgress> &aProgress)
2350{
2351 LogFlowThisFuncEnter();
2352
2353 AssertReturn(!aStartId.isZero() && !aEndId.isZero() && aStartId.isValid() && aEndId.isValid(), E_INVALIDARG);
2354
2355 /** @todo implement the "and all children" and "range" variants */
2356 if (aDeleteAllChildren || aStartId != aEndId)
2357 ReturnComNotImplemented();
2358
2359 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2360
2361 if (Global::IsTransient(mData->mMachineState))
2362 return setError(VBOX_E_INVALID_VM_STATE,
2363 tr("Cannot delete a snapshot of the machine while it is changing the state (machine state: %s)"),
2364 Global::stringifyMachineState(mData->mMachineState));
2365
2366 // be very picky about machine states
2367 if ( Global::IsOnlineOrTransient(mData->mMachineState)
2368 && mData->mMachineState != MachineState_PoweredOff
2369 && mData->mMachineState != MachineState_Saved
2370 && mData->mMachineState != MachineState_Teleported
2371 && mData->mMachineState != MachineState_Aborted
2372 && mData->mMachineState != MachineState_Running
2373 && mData->mMachineState != MachineState_Paused)
2374 return setError(VBOX_E_INVALID_VM_STATE,
2375 tr("Invalid machine state: %s"),
2376 Global::stringifyMachineState(mData->mMachineState));
2377
2378 HRESULT rc = i_checkStateDependency(MutableOrSavedOrRunningStateDep);
2379 if (FAILED(rc))
2380 return rc;
2381
2382 ComObjPtr<Snapshot> pSnapshot;
2383 rc = i_findSnapshotById(aStartId, pSnapshot, true /* aSetError */);
2384 if (FAILED(rc))
2385 return rc;
2386
2387 AutoWriteLock snapshotLock(pSnapshot COMMA_LOCKVAL_SRC_POS);
2388 Utf8Str str;
2389
2390 size_t childrenCount = pSnapshot->i_getChildrenCount();
2391 if (childrenCount > 1)
2392 return setError(VBOX_E_INVALID_OBJECT_STATE,
2393 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"),
2394 pSnapshot->i_getName().c_str(),
2395 mUserData->s.strName.c_str(),
2396 childrenCount);
2397
2398 if (pSnapshot == mData->mCurrentSnapshot && childrenCount >= 1)
2399 return setError(VBOX_E_INVALID_OBJECT_STATE,
2400 tr("Snapshot '%s' of the machine '%s' cannot be deleted, because it is the current snapshot and has one child snapshot"),
2401 pSnapshot->i_getName().c_str(),
2402 mUserData->s.strName.c_str());
2403
2404 /* If the snapshot being deleted is the current one, ensure current
2405 * settings are committed and saved.
2406 */
2407 if (pSnapshot == mData->mCurrentSnapshot)
2408 {
2409 if (mData->flModifications)
2410 {
2411 rc = i_saveSettings(NULL);
2412 // no need to change for whether VirtualBox.xml needs saving since
2413 // we can't have a machine XML rename pending at this point
2414 if (FAILED(rc)) return rc;
2415 }
2416 }
2417
2418 ComObjPtr<SnapshotMachine> pSnapMachine = pSnapshot->i_getSnapshotMachine();
2419
2420 /* create a progress object. The number of operations is:
2421 * 1 (preparing) + 1 if the snapshot is online + # of normal hard disks
2422 */
2423 LogFlowThisFunc(("Going thru snapshot machine attachments to determine progress setup\n"));
2424
2425 ULONG ulOpCount = 1; // one for preparations
2426 ULONG ulTotalWeight = 1; // one for preparations
2427
2428 if (pSnapshot->i_getStateFilePath().length())
2429 {
2430 ++ulOpCount;
2431 ++ulTotalWeight; // assume 1 MB for deleting the state file
2432 }
2433
2434 // count normal hard disks and add their sizes to the weight
2435 for (MediaData::AttachmentList::iterator it = pSnapMachine->mMediaData->mAttachments.begin();
2436 it != pSnapMachine->mMediaData->mAttachments.end();
2437 ++it)
2438 {
2439 ComObjPtr<MediumAttachment> &pAttach = *it;
2440 AutoReadLock attachLock(pAttach COMMA_LOCKVAL_SRC_POS);
2441 if (pAttach->i_getType() == DeviceType_HardDisk)
2442 {
2443 ComObjPtr<Medium> pHD = pAttach->i_getMedium();
2444 Assert(pHD);
2445 AutoReadLock mlock(pHD COMMA_LOCKVAL_SRC_POS);
2446
2447 MediumType_T type = pHD->i_getType();
2448 // writethrough and shareable images are unaffected by snapshots,
2449 // so do nothing for them
2450 if ( type != MediumType_Writethrough
2451 && type != MediumType_Shareable
2452 && type != MediumType_Readonly)
2453 {
2454 // normal or immutable media need attention
2455 ++ulOpCount;
2456 ulTotalWeight += (ULONG)(pHD->i_getSize() / _1M);
2457 }
2458 LogFlowThisFunc(("op %d: considering hard disk attachment %s\n", ulOpCount, pHD->i_getName().c_str()));
2459 }
2460 }
2461
2462 ComObjPtr<Progress> pProgress;
2463 pProgress.createObject();
2464 pProgress->init(mParent, static_cast<IMachine*>(this),
2465 BstrFmt(tr("Deleting snapshot '%s'"), pSnapshot->i_getName().c_str()).raw(),
2466 FALSE /* aCancelable */,
2467 ulOpCount,
2468 ulTotalWeight,
2469 Bstr(tr("Setting up")).raw(),
2470 1);
2471
2472 bool fDeleteOnline = ( (mData->mMachineState == MachineState_Running)
2473 || (mData->mMachineState == MachineState_Paused));
2474
2475 /* create and start the task on a separate thread */
2476 DeleteSnapshotTask *pTask = new DeleteSnapshotTask(this, pProgress,
2477 "DeleteSnap",
2478 fDeleteOnline,
2479 pSnapshot);
2480 rc = pTask->createThread();
2481 if (FAILED(rc))
2482 return rc;
2483
2484 // the task might start running but will block on acquiring the machine's write lock
2485 // which we acquired above; once this function leaves, the task will be unblocked;
2486 // set the proper machine state here now (note: after creating a Task instance)
2487 if (mData->mMachineState == MachineState_Running)
2488 {
2489 i_setMachineState(MachineState_DeletingSnapshotOnline);
2490 i_updateMachineStateOnClient();
2491 }
2492 else if (mData->mMachineState == MachineState_Paused)
2493 {
2494 i_setMachineState(MachineState_DeletingSnapshotPaused);
2495 i_updateMachineStateOnClient();
2496 }
2497 else
2498 i_setMachineState(MachineState_DeletingSnapshot);
2499
2500 /* return the progress to the caller */
2501 pProgress.queryInterfaceTo(aProgress.asOutParam());
2502
2503 LogFlowThisFuncLeave();
2504
2505 return S_OK;
2506}
2507
2508/**
2509 * Helper struct for SessionMachine::deleteSnapshotHandler().
2510 */
2511struct MediumDeleteRec
2512{
2513 MediumDeleteRec()
2514 : mfNeedsOnlineMerge(false),
2515 mpMediumLockList(NULL)
2516 {}
2517
2518 MediumDeleteRec(const ComObjPtr<Medium> &aHd,
2519 const ComObjPtr<Medium> &aSource,
2520 const ComObjPtr<Medium> &aTarget,
2521 const ComObjPtr<MediumAttachment> &aOnlineMediumAttachment,
2522 bool fMergeForward,
2523 const ComObjPtr<Medium> &aParentForTarget,
2524 MediumLockList *aChildrenToReparent,
2525 bool fNeedsOnlineMerge,
2526 MediumLockList *aMediumLockList,
2527 const ComPtr<IToken> &aHDLockToken)
2528 : mpHD(aHd),
2529 mpSource(aSource),
2530 mpTarget(aTarget),
2531 mpOnlineMediumAttachment(aOnlineMediumAttachment),
2532 mfMergeForward(fMergeForward),
2533 mpParentForTarget(aParentForTarget),
2534 mpChildrenToReparent(aChildrenToReparent),
2535 mfNeedsOnlineMerge(fNeedsOnlineMerge),
2536 mpMediumLockList(aMediumLockList),
2537 mpHDLockToken(aHDLockToken)
2538 {}
2539
2540 MediumDeleteRec(const ComObjPtr<Medium> &aHd,
2541 const ComObjPtr<Medium> &aSource,
2542 const ComObjPtr<Medium> &aTarget,
2543 const ComObjPtr<MediumAttachment> &aOnlineMediumAttachment,
2544 bool fMergeForward,
2545 const ComObjPtr<Medium> &aParentForTarget,
2546 MediumLockList *aChildrenToReparent,
2547 bool fNeedsOnlineMerge,
2548 MediumLockList *aMediumLockList,
2549 const ComPtr<IToken> &aHDLockToken,
2550 const Guid &aMachineId,
2551 const Guid &aSnapshotId)
2552 : mpHD(aHd),
2553 mpSource(aSource),
2554 mpTarget(aTarget),
2555 mpOnlineMediumAttachment(aOnlineMediumAttachment),
2556 mfMergeForward(fMergeForward),
2557 mpParentForTarget(aParentForTarget),
2558 mpChildrenToReparent(aChildrenToReparent),
2559 mfNeedsOnlineMerge(fNeedsOnlineMerge),
2560 mpMediumLockList(aMediumLockList),
2561 mpHDLockToken(aHDLockToken),
2562 mMachineId(aMachineId),
2563 mSnapshotId(aSnapshotId)
2564 {}
2565
2566 ComObjPtr<Medium> mpHD;
2567 ComObjPtr<Medium> mpSource;
2568 ComObjPtr<Medium> mpTarget;
2569 ComObjPtr<MediumAttachment> mpOnlineMediumAttachment;
2570 bool mfMergeForward;
2571 ComObjPtr<Medium> mpParentForTarget;
2572 MediumLockList *mpChildrenToReparent;
2573 bool mfNeedsOnlineMerge;
2574 MediumLockList *mpMediumLockList;
2575 /** optional lock token, used only in case mpHD is not merged/deleted */
2576 ComPtr<IToken> mpHDLockToken;
2577 /* these are for reattaching the hard disk in case of a failure: */
2578 Guid mMachineId;
2579 Guid mSnapshotId;
2580};
2581
2582typedef std::list<MediumDeleteRec> MediumDeleteRecList;
2583
2584/**
2585 * Worker method for the delete snapshot thread created by
2586 * SessionMachine::DeleteSnapshot(). This method gets called indirectly
2587 * through SessionMachine::taskHandler() which then calls
2588 * DeleteSnapshotTask::handler().
2589 *
2590 * The DeleteSnapshotTask contains the progress object returned to the console
2591 * by SessionMachine::DeleteSnapshot, through which progress and results are
2592 * reported.
2593 *
2594 * SessionMachine::DeleteSnapshot() has set the machine state to
2595 * MachineState_DeletingSnapshot right after creating this task. Since we block
2596 * on the machine write lock at the beginning, once that has been acquired, we
2597 * can assume that the machine state is indeed that.
2598 *
2599 * @note Locks the machine + the snapshot + the media tree for writing!
2600 *
2601 * @param pTask Task data.
2602 */
2603void SessionMachine::i_deleteSnapshotHandler(DeleteSnapshotTask &task)
2604{
2605 LogFlowThisFuncEnter();
2606
2607 HRESULT rc = S_OK;
2608 AutoCaller autoCaller(this);
2609 LogFlowThisFunc(("state=%d\n", getObjectState().getState()));
2610 if (FAILED(autoCaller.rc()))
2611 {
2612 /* we might have been uninitialized because the session was accidentally
2613 * closed by the client, so don't assert */
2614 rc = setError(E_FAIL,
2615 tr("The session has been accidentally closed"));
2616 task.m_pProgress->i_notifyComplete(rc);
2617 LogFlowThisFuncLeave();
2618 return;
2619 }
2620
2621 MediumDeleteRecList toDelete;
2622 Guid snapshotId;
2623
2624 try
2625 {
2626 /* Locking order: */
2627 AutoMultiWriteLock2 multiLock(this->lockHandle(), // machine
2628 task.m_pSnapshot->lockHandle() // snapshot
2629 COMMA_LOCKVAL_SRC_POS);
2630 // once we have this lock, we know that SessionMachine::DeleteSnapshot()
2631 // has exited after setting the machine state to MachineState_DeletingSnapshot
2632
2633 AutoWriteLock treeLock(mParent->i_getMediaTreeLockHandle()
2634 COMMA_LOCKVAL_SRC_POS);
2635
2636 ComObjPtr<SnapshotMachine> pSnapMachine = task.m_pSnapshot->i_getSnapshotMachine();
2637 // no need to lock the snapshot machine since it is const by definition
2638 Guid machineId = pSnapMachine->i_getId();
2639
2640 // save the snapshot ID (for callbacks)
2641 snapshotId = task.m_pSnapshot->i_getId();
2642
2643 // first pass:
2644 LogFlowThisFunc(("1: Checking hard disk merge prerequisites...\n"));
2645
2646 // Go thru the attachments of the snapshot machine (the media in here
2647 // point to the disk states _before_ the snapshot was taken, i.e. the
2648 // state we're restoring to; for each such medium, we will need to
2649 // merge it with its one and only child (the diff image holding the
2650 // changes written after the snapshot was taken).
2651 for (MediaData::AttachmentList::iterator it = pSnapMachine->mMediaData->mAttachments.begin();
2652 it != pSnapMachine->mMediaData->mAttachments.end();
2653 ++it)
2654 {
2655 ComObjPtr<MediumAttachment> &pAttach = *it;
2656 AutoReadLock attachLock(pAttach COMMA_LOCKVAL_SRC_POS);
2657 if (pAttach->i_getType() != DeviceType_HardDisk)
2658 continue;
2659
2660 ComObjPtr<Medium> pHD = pAttach->i_getMedium();
2661 Assert(!pHD.isNull());
2662
2663 {
2664 // writethrough, shareable and readonly images are
2665 // unaffected by snapshots, skip them
2666 AutoReadLock medlock(pHD COMMA_LOCKVAL_SRC_POS);
2667 MediumType_T type = pHD->i_getType();
2668 if ( type == MediumType_Writethrough
2669 || type == MediumType_Shareable
2670 || type == MediumType_Readonly)
2671 continue;
2672 }
2673
2674#ifdef DEBUG
2675 pHD->i_dumpBackRefs();
2676#endif
2677
2678 // needs to be merged with child or deleted, check prerequisites
2679 ComObjPtr<Medium> pTarget;
2680 ComObjPtr<Medium> pSource;
2681 bool fMergeForward = false;
2682 ComObjPtr<Medium> pParentForTarget;
2683 MediumLockList *pChildrenToReparent = NULL;
2684 bool fNeedsOnlineMerge = false;
2685 bool fOnlineMergePossible = task.m_fDeleteOnline;
2686 MediumLockList *pMediumLockList = NULL;
2687 MediumLockList *pVMMALockList = NULL;
2688 ComPtr<IToken> pHDLockToken;
2689 ComObjPtr<MediumAttachment> pOnlineMediumAttachment;
2690 if (fOnlineMergePossible)
2691 {
2692 // Look up the corresponding medium attachment in the currently
2693 // running VM. Any failure prevents a live merge. Could be made
2694 // a tad smarter by trying a few candidates, so that e.g. disks
2695 // which are simply moved to a different controller slot do not
2696 // prevent online merging in general.
2697 pOnlineMediumAttachment =
2698 i_findAttachment(mMediaData->mAttachments,
2699 pAttach->i_getControllerName().raw(),
2700 pAttach->i_getPort(),
2701 pAttach->i_getDevice());
2702 if (pOnlineMediumAttachment)
2703 {
2704 rc = mData->mSession.mLockedMedia.Get(pOnlineMediumAttachment,
2705 pVMMALockList);
2706 if (FAILED(rc))
2707 fOnlineMergePossible = false;
2708 }
2709 else
2710 fOnlineMergePossible = false;
2711 }
2712
2713 // no need to hold the lock any longer
2714 attachLock.release();
2715
2716 treeLock.release();
2717 rc = i_prepareDeleteSnapshotMedium(pHD, machineId, snapshotId,
2718 fOnlineMergePossible,
2719 pVMMALockList, pSource, pTarget,
2720 fMergeForward, pParentForTarget,
2721 pChildrenToReparent,
2722 fNeedsOnlineMerge,
2723 pMediumLockList,
2724 pHDLockToken);
2725 treeLock.acquire();
2726 if (FAILED(rc))
2727 throw rc;
2728
2729 // For simplicity, prepareDeleteSnapshotMedium selects the merge
2730 // direction in the following way: we merge pHD onto its child
2731 // (forward merge), not the other way round, because that saves us
2732 // from unnecessarily shuffling around the attachments for the
2733 // machine that follows the snapshot (next snapshot or current
2734 // state), unless it's a base image. Backwards merges of the first
2735 // snapshot into the base image is essential, as it ensures that
2736 // when all snapshots are deleted the only remaining image is a
2737 // base image. Important e.g. for medium formats which do not have
2738 // a file representation such as iSCSI.
2739
2740 // a couple paranoia checks for backward merges
2741 if (pMediumLockList != NULL && !fMergeForward)
2742 {
2743 // parent is null -> this disk is a base hard disk: we will
2744 // then do a backward merge, i.e. merge its only child onto the
2745 // base disk. Here we need then to update the attachment that
2746 // refers to the child and have it point to the parent instead
2747 Assert(pHD->i_getChildren().size() == 1);
2748
2749 ComObjPtr<Medium> pReplaceHD = pHD->i_getChildren().front();
2750
2751 ComAssertThrow(pReplaceHD == pSource, E_FAIL);
2752 }
2753
2754 Guid replaceMachineId;
2755 Guid replaceSnapshotId;
2756
2757 const Guid *pReplaceMachineId = pSource->i_getFirstMachineBackrefId();
2758 // minimal sanity checking
2759 Assert(!pReplaceMachineId || *pReplaceMachineId == mData->mUuid);
2760 if (pReplaceMachineId)
2761 replaceMachineId = *pReplaceMachineId;
2762
2763 const Guid *pSnapshotId = pSource->i_getFirstMachineBackrefSnapshotId();
2764 if (pSnapshotId)
2765 replaceSnapshotId = *pSnapshotId;
2766
2767 if (replaceMachineId.isValid() && !replaceMachineId.isZero())
2768 {
2769 // Adjust the backreferences, otherwise merging will assert.
2770 // Note that the medium attachment object stays associated
2771 // with the snapshot until the merge was successful.
2772 HRESULT rc2 = S_OK;
2773 rc2 = pSource->i_removeBackReference(replaceMachineId, replaceSnapshotId);
2774 AssertComRC(rc2);
2775
2776 toDelete.push_back(MediumDeleteRec(pHD, pSource, pTarget,
2777 pOnlineMediumAttachment,
2778 fMergeForward,
2779 pParentForTarget,
2780 pChildrenToReparent,
2781 fNeedsOnlineMerge,
2782 pMediumLockList,
2783 pHDLockToken,
2784 replaceMachineId,
2785 replaceSnapshotId));
2786 }
2787 else
2788 toDelete.push_back(MediumDeleteRec(pHD, pSource, pTarget,
2789 pOnlineMediumAttachment,
2790 fMergeForward,
2791 pParentForTarget,
2792 pChildrenToReparent,
2793 fNeedsOnlineMerge,
2794 pMediumLockList,
2795 pHDLockToken));
2796 }
2797
2798 {
2799 /*check available place on the storage*/
2800 RTFOFF pcbTotal = 0;
2801 RTFOFF pcbFree = 0;
2802 uint32_t pcbBlock = 0;
2803 uint32_t pcbSector = 0;
2804 std::multimap<uint32_t,uint64_t> neededStorageFreeSpace;
2805 std::map<uint32_t,const char*> serialMapToStoragePath;
2806
2807 MediumDeleteRecList::const_iterator it_md = toDelete.begin();
2808
2809 while (it_md != toDelete.end())
2810 {
2811 uint64_t diskSize = 0;
2812 uint32_t pu32Serial = 0;
2813 ComObjPtr<Medium> pSource_local = it_md->mpSource;
2814 ComObjPtr<Medium> pTarget_local = it_md->mpTarget;
2815 ComPtr<IMediumFormat> pTargetFormat;
2816
2817 {
2818 if ( pSource_local.isNull()
2819 || pSource_local == pTarget_local)
2820 {
2821 ++it_md;
2822 continue;
2823 }
2824 }
2825
2826 rc = pTarget_local->COMGETTER(MediumFormat)(pTargetFormat.asOutParam());
2827 if (FAILED(rc))
2828 throw rc;
2829
2830 if(pTarget_local->i_isMediumFormatFile())
2831 {
2832 int vrc = RTFsQuerySerial(pTarget_local->i_getLocationFull().c_str(), &pu32Serial);
2833 if (RT_FAILURE(vrc))
2834 {
2835 rc = setError(E_FAIL,
2836 tr(" Unable to merge storage '%s'. Can't get storage UID "),
2837 pTarget_local->i_getLocationFull().c_str());
2838 throw rc;
2839 }
2840
2841 pSource_local->COMGETTER(Size)((LONG64*)&diskSize);
2842
2843 /* store needed free space in multimap */
2844 neededStorageFreeSpace.insert(std::make_pair(pu32Serial,diskSize));
2845 /* linking storage UID with snapshot path, it is a helper container (just for easy finding needed path) */
2846 serialMapToStoragePath.insert(std::make_pair(pu32Serial,pTarget_local->i_getLocationFull().c_str()));
2847 }
2848
2849 ++it_md;
2850 }
2851
2852 while (!neededStorageFreeSpace.empty())
2853 {
2854 std::pair<std::multimap<uint32_t,uint64_t>::iterator,std::multimap<uint32_t,uint64_t>::iterator> ret;
2855 uint64_t commonSourceStoragesSize = 0;
2856
2857 /* find all records in multimap with identical storage UID*/
2858 ret = neededStorageFreeSpace.equal_range(neededStorageFreeSpace.begin()->first);
2859 std::multimap<uint32_t,uint64_t>::const_iterator it_ns = ret.first;
2860
2861 for (; it_ns != ret.second ; ++it_ns)
2862 {
2863 commonSourceStoragesSize += it_ns->second;
2864 }
2865
2866 /* find appropriate path by storage UID*/
2867 std::map<uint32_t,const char*>::const_iterator it_sm = serialMapToStoragePath.find(ret.first->first);
2868 /* get info about a storage */
2869 if (it_sm == serialMapToStoragePath.end())
2870 {
2871 LogFlowThisFunc((" Path to the storage wasn't found...\n "));
2872
2873 rc = setError(E_INVALIDARG,
2874 tr(" Unable to merge storage '%s'. Path to the storage wasn't found. "),
2875 it_sm->second);
2876 throw rc;
2877 }
2878
2879 int vrc = RTFsQuerySizes(it_sm->second, &pcbTotal, &pcbFree,&pcbBlock, &pcbSector);
2880 if (RT_FAILURE(vrc))
2881 {
2882 rc = setError(E_FAIL,
2883 tr(" Unable to merge storage '%s'. Can't get the storage size. "),
2884 it_sm->second);
2885 throw rc;
2886 }
2887
2888 if (commonSourceStoragesSize > (uint64_t)pcbFree)
2889 {
2890 LogFlowThisFunc((" Not enough free space to merge...\n "));
2891
2892 rc = setError(E_OUTOFMEMORY,
2893 tr(" Unable to merge storage '%s' - not enough free storage space. "),
2894 it_sm->second);
2895 throw rc;
2896 }
2897
2898 neededStorageFreeSpace.erase(ret.first, ret.second);
2899 }
2900
2901 serialMapToStoragePath.clear();
2902 }
2903
2904 // we can release the locks now since the machine state is MachineState_DeletingSnapshot
2905 treeLock.release();
2906 multiLock.release();
2907
2908 /* Now we checked that we can successfully merge all normal hard disks
2909 * (unless a runtime error like end-of-disc happens). Now get rid of
2910 * the saved state (if present), as that will free some disk space.
2911 * The snapshot itself will be deleted as late as possible, so that
2912 * the user can repeat the delete operation if he runs out of disk
2913 * space or cancels the delete operation. */
2914
2915 /* second pass: */
2916 LogFlowThisFunc(("2: Deleting saved state...\n"));
2917
2918 {
2919 // saveAllSnapshots() needs a machine lock, and the snapshots
2920 // tree is protected by the machine lock as well
2921 AutoWriteLock machineLock(this COMMA_LOCKVAL_SRC_POS);
2922
2923 Utf8Str stateFilePath = task.m_pSnapshot->i_getStateFilePath();
2924 if (!stateFilePath.isEmpty())
2925 {
2926 task.m_pProgress->SetNextOperation(Bstr(tr("Deleting the execution state")).raw(),
2927 1); // weight
2928
2929 i_releaseSavedStateFile(stateFilePath, task.m_pSnapshot /* pSnapshotToIgnore */);
2930
2931 // machine will need saving now
2932 machineLock.release();
2933 mParent->i_markRegistryModified(i_getId());
2934 }
2935 }
2936
2937 /* third pass: */
2938 LogFlowThisFunc(("3: Performing actual hard disk merging...\n"));
2939
2940 /// @todo NEWMEDIA turn the following errors into warnings because the
2941 /// snapshot itself has been already deleted (and interpret these
2942 /// warnings properly on the GUI side)
2943 for (MediumDeleteRecList::iterator it = toDelete.begin();
2944 it != toDelete.end();)
2945 {
2946 const ComObjPtr<Medium> &pMedium(it->mpHD);
2947 ULONG ulWeight;
2948
2949 {
2950 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
2951 ulWeight = (ULONG)(pMedium->i_getSize() / _1M);
2952 }
2953
2954 task.m_pProgress->SetNextOperation(BstrFmt(tr("Merging differencing image '%s'"),
2955 pMedium->i_getName().c_str()).raw(),
2956 ulWeight);
2957
2958 bool fNeedSourceUninit = false;
2959 bool fReparentTarget = false;
2960 if (it->mpMediumLockList == NULL)
2961 {
2962 /* no real merge needed, just updating state and delete
2963 * diff files if necessary */
2964 AutoMultiWriteLock2 mLock(&mParent->i_getMediaTreeLockHandle(), pMedium->lockHandle() COMMA_LOCKVAL_SRC_POS);
2965
2966 Assert( !it->mfMergeForward
2967 || pMedium->i_getChildren().size() == 0);
2968
2969 /* Delete the differencing hard disk (has no children). Two
2970 * exceptions: if it's the last medium in the chain or if it's
2971 * a backward merge we don't want to handle due to complexity.
2972 * In both cases leave the image in place. If it's the first
2973 * exception the user can delete it later if he wants. */
2974 if (!pMedium->i_getParent().isNull())
2975 {
2976 Assert(pMedium->i_getState() == MediumState_Deleting);
2977 /* No need to hold the lock any longer. */
2978 mLock.release();
2979 rc = pMedium->i_deleteStorage(&task.m_pProgress,
2980 true /* aWait */);
2981 if (FAILED(rc))
2982 throw rc;
2983
2984 // need to uninit the deleted medium
2985 fNeedSourceUninit = true;
2986 }
2987 }
2988 else
2989 {
2990 bool fNeedsSave = false;
2991 if (it->mfNeedsOnlineMerge)
2992 {
2993 // Put the medium merge information (MediumDeleteRec) where
2994 // SessionMachine::FinishOnlineMergeMedium can get at it.
2995 // This callback will arrive while onlineMergeMedium is
2996 // still executing, and there can't be two tasks.
2997 /// @todo r=klaus this hack needs to go, and the logic needs to be "unconvoluted", putting SessionMachine in charge of coordinating the reconfig/resume.
2998 mConsoleTaskData.mDeleteSnapshotInfo = (void *)&(*it);
2999 // online medium merge, in the direction decided earlier
3000 rc = i_onlineMergeMedium(it->mpOnlineMediumAttachment,
3001 it->mpSource,
3002 it->mpTarget,
3003 it->mfMergeForward,
3004 it->mpParentForTarget,
3005 it->mpChildrenToReparent,
3006 it->mpMediumLockList,
3007 task.m_pProgress,
3008 &fNeedsSave);
3009 mConsoleTaskData.mDeleteSnapshotInfo = NULL;
3010 }
3011 else
3012 {
3013 // normal medium merge, in the direction decided earlier
3014 rc = it->mpSource->i_mergeTo(it->mpTarget,
3015 it->mfMergeForward,
3016 it->mpParentForTarget,
3017 it->mpChildrenToReparent,
3018 it->mpMediumLockList,
3019 &task.m_pProgress,
3020 true /* aWait */);
3021 }
3022
3023 // If the merge failed, we need to do our best to have a usable
3024 // VM configuration afterwards. The return code doesn't tell
3025 // whether the merge completed and so we have to check if the
3026 // source medium (diff images are always file based at the
3027 // moment) is still there or not. Be careful not to lose the
3028 // error code below, before the "Delayed failure exit".
3029 if (FAILED(rc))
3030 {
3031 AutoReadLock mlock(it->mpSource COMMA_LOCKVAL_SRC_POS);
3032 if (!it->mpSource->i_isMediumFormatFile())
3033 // Diff medium not backed by a file - cannot get status so
3034 // be pessimistic.
3035 throw rc;
3036 const Utf8Str &loc = it->mpSource->i_getLocationFull();
3037 // Source medium is still there, so merge failed early.
3038 if (RTFileExists(loc.c_str()))
3039 throw rc;
3040
3041 // Source medium is gone. Assume the merge succeeded and
3042 // thus it's safe to remove the attachment. We use the
3043 // "Delayed failure exit" below.
3044 }
3045
3046 // need to change the medium attachment for backward merges
3047 fReparentTarget = !it->mfMergeForward;
3048
3049 if (!it->mfNeedsOnlineMerge)
3050 {
3051 // need to uninit the medium deleted by the merge
3052 fNeedSourceUninit = true;
3053
3054 // delete the no longer needed medium lock list, which
3055 // implicitly handled the unlocking
3056 delete it->mpMediumLockList;
3057 it->mpMediumLockList = NULL;
3058 }
3059 }
3060
3061 // Now that the medium is successfully merged/deleted/whatever,
3062 // remove the medium attachment from the snapshot. For a backwards
3063 // merge the target attachment needs to be removed from the
3064 // snapshot, as the VM will take it over. For forward merges the
3065 // source medium attachment needs to be removed.
3066 ComObjPtr<MediumAttachment> pAtt;
3067 if (fReparentTarget)
3068 {
3069 pAtt = i_findAttachment(pSnapMachine->mMediaData->mAttachments,
3070 it->mpTarget);
3071 it->mpTarget->i_removeBackReference(machineId, snapshotId);
3072 }
3073 else
3074 pAtt = i_findAttachment(pSnapMachine->mMediaData->mAttachments,
3075 it->mpSource);
3076 pSnapMachine->mMediaData->mAttachments.remove(pAtt);
3077
3078 if (fReparentTarget)
3079 {
3080 // Search for old source attachment and replace with target.
3081 // There can be only one child snapshot in this case.
3082 ComObjPtr<Machine> pMachine = this;
3083 Guid childSnapshotId;
3084 ComObjPtr<Snapshot> pChildSnapshot = task.m_pSnapshot->i_getFirstChild();
3085 if (pChildSnapshot)
3086 {
3087 pMachine = pChildSnapshot->i_getSnapshotMachine();
3088 childSnapshotId = pChildSnapshot->i_getId();
3089 }
3090 pAtt = i_findAttachment(pMachine->mMediaData->mAttachments, it->mpSource);
3091 if (pAtt)
3092 {
3093 AutoWriteLock attLock(pAtt COMMA_LOCKVAL_SRC_POS);
3094 pAtt->i_updateMedium(it->mpTarget);
3095 it->mpTarget->i_addBackReference(pMachine->mData->mUuid, childSnapshotId);
3096 }
3097 else
3098 {
3099 // If no attachment is found do not change anything. Maybe
3100 // the source medium was not attached to the snapshot.
3101 // If this is an online deletion the attachment was updated
3102 // already to allow the VM continue execution immediately.
3103 // Needs a bit of special treatment due to this difference.
3104 if (it->mfNeedsOnlineMerge)
3105 it->mpTarget->i_addBackReference(pMachine->mData->mUuid, childSnapshotId);
3106 }
3107 }
3108
3109 if (fNeedSourceUninit)
3110 it->mpSource->uninit();
3111
3112 // One attachment is merged, must save the settings
3113 mParent->i_markRegistryModified(i_getId());
3114
3115 // prevent calling cancelDeleteSnapshotMedium() for this attachment
3116 it = toDelete.erase(it);
3117
3118 // Delayed failure exit when the merge cleanup failed but the
3119 // merge actually succeeded.
3120 if (FAILED(rc))
3121 throw rc;
3122 }
3123
3124 {
3125 // beginSnapshotDelete() needs the machine lock, and the snapshots
3126 // tree is protected by the machine lock as well
3127 AutoWriteLock machineLock(this COMMA_LOCKVAL_SRC_POS);
3128
3129 task.m_pSnapshot->i_beginSnapshotDelete();
3130 task.m_pSnapshot->uninit();
3131
3132 machineLock.release();
3133 mParent->i_markRegistryModified(i_getId());
3134 }
3135 }
3136 catch (HRESULT aRC) {
3137 rc = aRC;
3138 }
3139
3140 if (FAILED(rc))
3141 {
3142 // preserve existing error info so that the result can
3143 // be properly reported to the progress object below
3144 ErrorInfoKeeper eik;
3145
3146 AutoMultiWriteLock2 multiLock(this->lockHandle(), // machine
3147 &mParent->i_getMediaTreeLockHandle() // media tree
3148 COMMA_LOCKVAL_SRC_POS);
3149
3150 // un-prepare the remaining hard disks
3151 for (MediumDeleteRecList::const_iterator it = toDelete.begin();
3152 it != toDelete.end();
3153 ++it)
3154 i_cancelDeleteSnapshotMedium(it->mpHD, it->mpSource,
3155 it->mpChildrenToReparent,
3156 it->mfNeedsOnlineMerge,
3157 it->mpMediumLockList, it->mpHDLockToken,
3158 it->mMachineId, it->mSnapshotId);
3159 }
3160
3161 // whether we were successful or not, we need to set the machine
3162 // state and save the machine settings;
3163 {
3164 // preserve existing error info so that the result can
3165 // be properly reported to the progress object below
3166 ErrorInfoKeeper eik;
3167
3168 // restore the machine state that was saved when the
3169 // task was started
3170 i_setMachineState(task.m_machineStateBackup);
3171 if (Global::IsOnline(mData->mMachineState))
3172 i_updateMachineStateOnClient();
3173
3174 mParent->i_saveModifiedRegistries();
3175 }
3176
3177 // report the result (this will try to fetch current error info on failure)
3178 task.m_pProgress->i_notifyComplete(rc);
3179
3180 if (SUCCEEDED(rc))
3181 mParent->i_onSnapshotDeleted(mData->mUuid, snapshotId);
3182
3183 LogFlowThisFunc(("Done deleting snapshot (rc=%08X)\n", rc));
3184 LogFlowThisFuncLeave();
3185}
3186
3187/**
3188 * Checks that this hard disk (part of a snapshot) may be deleted/merged and
3189 * performs necessary state changes. Must not be called for writethrough disks
3190 * because there is nothing to delete/merge then.
3191 *
3192 * This method is to be called prior to calling #deleteSnapshotMedium().
3193 * If #deleteSnapshotMedium() is not called or fails, the state modifications
3194 * performed by this method must be undone by #cancelDeleteSnapshotMedium().
3195 *
3196 * @return COM status code
3197 * @param aHD Hard disk which is connected to the snapshot.
3198 * @param aMachineId UUID of machine this hard disk is attached to.
3199 * @param aSnapshotId UUID of snapshot this hard disk is attached to. May
3200 * be a zero UUID if no snapshot is applicable.
3201 * @param fOnlineMergePossible Flag whether an online merge is possible.
3202 * @param aVMMALockList Medium lock list for the medium attachment of this VM.
3203 * Only used if @a fOnlineMergePossible is @c true, and
3204 * must be non-NULL in this case.
3205 * @param aSource Source hard disk for merge (out).
3206 * @param aTarget Target hard disk for merge (out).
3207 * @param aMergeForward Merge direction decision (out).
3208 * @param aParentForTarget New parent if target needs to be reparented (out).
3209 * @param aChildrenToReparent MediumLockList with children which have to be
3210 * reparented to the target (out).
3211 * @param fNeedsOnlineMerge Whether this merge needs to be done online (out).
3212 * If this is set to @a true then the @a aVMMALockList
3213 * parameter has been modified and is returned as
3214 * @a aMediumLockList.
3215 * @param aMediumLockList Where to store the created medium lock list (may
3216 * return NULL if no real merge is necessary).
3217 * @param aHDLockToken Where to store the write lock token for aHD, in case
3218 * it is not merged or deleted (out).
3219 *
3220 * @note Caller must hold media tree lock for writing. This locks this object
3221 * and every medium object on the merge chain for writing.
3222 */
3223HRESULT SessionMachine::i_prepareDeleteSnapshotMedium(const ComObjPtr<Medium> &aHD,
3224 const Guid &aMachineId,
3225 const Guid &aSnapshotId,
3226 bool fOnlineMergePossible,
3227 MediumLockList *aVMMALockList,
3228 ComObjPtr<Medium> &aSource,
3229 ComObjPtr<Medium> &aTarget,
3230 bool &aMergeForward,
3231 ComObjPtr<Medium> &aParentForTarget,
3232 MediumLockList * &aChildrenToReparent,
3233 bool &fNeedsOnlineMerge,
3234 MediumLockList * &aMediumLockList,
3235 ComPtr<IToken> &aHDLockToken)
3236{
3237 Assert(!mParent->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
3238 Assert(!fOnlineMergePossible || VALID_PTR(aVMMALockList));
3239
3240 AutoWriteLock alock(aHD COMMA_LOCKVAL_SRC_POS);
3241
3242 // Medium must not be writethrough/shareable/readonly at this point
3243 MediumType_T type = aHD->i_getType();
3244 AssertReturn( type != MediumType_Writethrough
3245 && type != MediumType_Shareable
3246 && type != MediumType_Readonly, E_FAIL);
3247
3248 aChildrenToReparent = NULL;
3249 aMediumLockList = NULL;
3250 fNeedsOnlineMerge = false;
3251
3252 if (aHD->i_getChildren().size() == 0)
3253 {
3254 /* This technically is no merge, set those values nevertheless.
3255 * Helps with updating the medium attachments. */
3256 aSource = aHD;
3257 aTarget = aHD;
3258
3259 /* special treatment of the last hard disk in the chain: */
3260 if (aHD->i_getParent().isNull())
3261 {
3262 /* lock only, to prevent any usage until the snapshot deletion
3263 * is completed */
3264 alock.release();
3265 return aHD->LockWrite(aHDLockToken.asOutParam());
3266 }
3267
3268 /* the differencing hard disk w/o children will be deleted, protect it
3269 * from attaching to other VMs (this is why Deleting) */
3270 return aHD->i_markForDeletion();
3271 }
3272
3273 /* not going multi-merge as it's too expensive */
3274 if (aHD->i_getChildren().size() > 1)
3275 return setError(E_FAIL,
3276 tr("Hard disk '%s' has more than one child hard disk (%d)"),
3277 aHD->i_getLocationFull().c_str(),
3278 aHD->i_getChildren().size());
3279
3280 ComObjPtr<Medium> pChild = aHD->i_getChildren().front();
3281
3282 AutoWriteLock childLock(pChild COMMA_LOCKVAL_SRC_POS);
3283
3284 /* the rest is a normal merge setup */
3285 if (aHD->i_getParent().isNull())
3286 {
3287 /* base hard disk, backward merge */
3288 const Guid *pMachineId1 = pChild->i_getFirstMachineBackrefId();
3289 const Guid *pMachineId2 = aHD->i_getFirstMachineBackrefId();
3290 if (pMachineId1 && pMachineId2 && *pMachineId1 != *pMachineId2)
3291 {
3292 /* backward merge is too tricky, we'll just detach on snapshot
3293 * deletion, so lock only, to prevent any usage */
3294 childLock.release();
3295 alock.release();
3296 return aHD->LockWrite(aHDLockToken.asOutParam());
3297 }
3298
3299 aSource = pChild;
3300 aTarget = aHD;
3301 }
3302 else
3303 {
3304 /* Determine best merge direction. */
3305 bool fMergeForward = true;
3306
3307 childLock.release();
3308 alock.release();
3309 HRESULT rc = aHD->i_queryPreferredMergeDirection(pChild, fMergeForward);
3310 alock.acquire();
3311 childLock.acquire();
3312
3313 if (FAILED(rc) && rc != E_FAIL)
3314 return rc;
3315
3316 if (fMergeForward)
3317 {
3318 aSource = aHD;
3319 aTarget = pChild;
3320 LogFlowThisFunc(("Forward merging selected\n"));
3321 }
3322 else
3323 {
3324 aSource = pChild;
3325 aTarget = aHD;
3326 LogFlowThisFunc(("Backward merging selected\n"));
3327 }
3328 }
3329
3330 HRESULT rc;
3331 childLock.release();
3332 alock.release();
3333 rc = aSource->i_prepareMergeTo(aTarget, &aMachineId, &aSnapshotId,
3334 !fOnlineMergePossible /* fLockMedia */,
3335 aMergeForward, aParentForTarget,
3336 aChildrenToReparent, aMediumLockList);
3337 alock.acquire();
3338 childLock.acquire();
3339 if (SUCCEEDED(rc) && fOnlineMergePossible)
3340 {
3341 /* Try to lock the newly constructed medium lock list. If it succeeds
3342 * this can be handled as an offline merge, i.e. without the need of
3343 * asking the VM to do the merging. Only continue with the online
3344 * merging preparation if applicable. */
3345 childLock.release();
3346 alock.release();
3347 rc = aMediumLockList->Lock();
3348 alock.acquire();
3349 childLock.acquire();
3350 if (FAILED(rc) && fOnlineMergePossible)
3351 {
3352 /* Locking failed, this cannot be done as an offline merge. Try to
3353 * combine the locking information into the lock list of the medium
3354 * attachment in the running VM. If that fails or locking the
3355 * resulting lock list fails then the merge cannot be done online.
3356 * It can be repeated by the user when the VM is shut down. */
3357 MediumLockList::Base::iterator lockListVMMABegin =
3358 aVMMALockList->GetBegin();
3359 MediumLockList::Base::iterator lockListVMMAEnd =
3360 aVMMALockList->GetEnd();
3361 MediumLockList::Base::iterator lockListBegin =
3362 aMediumLockList->GetBegin();
3363 MediumLockList::Base::iterator lockListEnd =
3364 aMediumLockList->GetEnd();
3365 for (MediumLockList::Base::iterator it = lockListVMMABegin,
3366 it2 = lockListBegin;
3367 it2 != lockListEnd;
3368 ++it, ++it2)
3369 {
3370 if ( it == lockListVMMAEnd
3371 || it->GetMedium() != it2->GetMedium())
3372 {
3373 fOnlineMergePossible = false;
3374 break;
3375 }
3376 bool fLockReq = (it2->GetLockRequest() || it->GetLockRequest());
3377 childLock.release();
3378 alock.release();
3379 rc = it->UpdateLock(fLockReq);
3380 alock.acquire();
3381 childLock.acquire();
3382 if (FAILED(rc))
3383 {
3384 // could not update the lock, trigger cleanup below
3385 fOnlineMergePossible = false;
3386 break;
3387 }
3388 }
3389
3390 if (fOnlineMergePossible)
3391 {
3392 /* we will lock the children of the source for reparenting */
3393 if (aChildrenToReparent && !aChildrenToReparent->IsEmpty())
3394 {
3395 /* Cannot just call aChildrenToReparent->Lock(), as one of
3396 * the children is the one under which the current state of
3397 * the VM is located, and this means it is already locked
3398 * (for reading). Note that no special unlocking is needed,
3399 * because cancelMergeTo will unlock everything locked in
3400 * its context (using the unlock on destruction), and both
3401 * cancelDeleteSnapshotMedium (in case something fails) and
3402 * FinishOnlineMergeMedium re-define the read/write lock
3403 * state of everything which the VM need, search for the
3404 * UpdateLock method calls. */
3405 childLock.release();
3406 alock.release();
3407 rc = aChildrenToReparent->Lock(true /* fSkipOverLockedMedia */);
3408 alock.acquire();
3409 childLock.acquire();
3410 MediumLockList::Base::iterator childrenToReparentBegin = aChildrenToReparent->GetBegin();
3411 MediumLockList::Base::iterator childrenToReparentEnd = aChildrenToReparent->GetEnd();
3412 for (MediumLockList::Base::iterator it = childrenToReparentBegin;
3413 it != childrenToReparentEnd;
3414 ++it)
3415 {
3416 ComObjPtr<Medium> pMedium = it->GetMedium();
3417 AutoReadLock mediumLock(pMedium COMMA_LOCKVAL_SRC_POS);
3418 if (!it->IsLocked())
3419 {
3420 mediumLock.release();
3421 childLock.release();
3422 alock.release();
3423 rc = aVMMALockList->Update(pMedium, true);
3424 alock.acquire();
3425 childLock.acquire();
3426 mediumLock.acquire();
3427 if (FAILED(rc))
3428 throw rc;
3429 }
3430 }
3431 }
3432 }
3433
3434 if (fOnlineMergePossible)
3435 {
3436 childLock.release();
3437 alock.release();
3438 rc = aVMMALockList->Lock();
3439 alock.acquire();
3440 childLock.acquire();
3441 if (FAILED(rc))
3442 {
3443 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3444 rc = setError(rc,
3445 tr("Cannot lock hard disk '%s' for a live merge"),
3446 aHD->i_getLocationFull().c_str());
3447 }
3448 else
3449 {
3450 delete aMediumLockList;
3451 aMediumLockList = aVMMALockList;
3452 fNeedsOnlineMerge = true;
3453 }
3454 }
3455 else
3456 {
3457 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3458 rc = setError(rc,
3459 tr("Failed to construct lock list for a live merge of hard disk '%s'"),
3460 aHD->i_getLocationFull().c_str());
3461 }
3462
3463 // fix the VM's lock list if anything failed
3464 if (FAILED(rc))
3465 {
3466 lockListVMMABegin = aVMMALockList->GetBegin();
3467 lockListVMMAEnd = aVMMALockList->GetEnd();
3468 MediumLockList::Base::iterator lockListLast = lockListVMMAEnd;
3469 lockListLast--;
3470 for (MediumLockList::Base::iterator it = lockListVMMABegin;
3471 it != lockListVMMAEnd;
3472 ++it)
3473 {
3474 childLock.release();
3475 alock.release();
3476 it->UpdateLock(it == lockListLast);
3477 alock.acquire();
3478 childLock.acquire();
3479 ComObjPtr<Medium> pMedium = it->GetMedium();
3480 AutoWriteLock mediumLock(pMedium COMMA_LOCKVAL_SRC_POS);
3481 // blindly apply this, only needed for medium objects which
3482 // would be deleted as part of the merge
3483 pMedium->i_unmarkLockedForDeletion();
3484 }
3485 }
3486
3487 }
3488 else
3489 {
3490 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3491 rc = setError(rc,
3492 tr("Cannot lock hard disk '%s' for an offline merge"),
3493 aHD->i_getLocationFull().c_str());
3494 }
3495 }
3496
3497 return rc;
3498}
3499
3500/**
3501 * Cancels the deletion/merging of this hard disk (part of a snapshot). Undoes
3502 * what #prepareDeleteSnapshotMedium() did. Must be called if
3503 * #deleteSnapshotMedium() is not called or fails.
3504 *
3505 * @param aHD Hard disk which is connected to the snapshot.
3506 * @param aSource Source hard disk for merge.
3507 * @param aChildrenToReparent Children to unlock.
3508 * @param fNeedsOnlineMerge Whether this merge needs to be done online.
3509 * @param aMediumLockList Medium locks to cancel.
3510 * @param aHDLockToken Optional write lock token for aHD.
3511 * @param aMachineId Machine id to attach the medium to.
3512 * @param aSnapshotId Snapshot id to attach the medium to.
3513 *
3514 * @note Locks the medium tree and the hard disks in the chain for writing.
3515 */
3516void SessionMachine::i_cancelDeleteSnapshotMedium(const ComObjPtr<Medium> &aHD,
3517 const ComObjPtr<Medium> &aSource,
3518 MediumLockList *aChildrenToReparent,
3519 bool fNeedsOnlineMerge,
3520 MediumLockList *aMediumLockList,
3521 const ComPtr<IToken> &aHDLockToken,
3522 const Guid &aMachineId,
3523 const Guid &aSnapshotId)
3524{
3525 if (aMediumLockList == NULL)
3526 {
3527 AutoMultiWriteLock2 mLock(&mParent->i_getMediaTreeLockHandle(), aHD->lockHandle() COMMA_LOCKVAL_SRC_POS);
3528
3529 Assert(aHD->i_getChildren().size() == 0);
3530
3531 if (aHD->i_getParent().isNull())
3532 {
3533 Assert(!aHDLockToken.isNull());
3534 if (!aHDLockToken.isNull())
3535 {
3536 HRESULT rc = aHDLockToken->Abandon();
3537 AssertComRC(rc);
3538 }
3539 }
3540 else
3541 {
3542 HRESULT rc = aHD->i_unmarkForDeletion();
3543 AssertComRC(rc);
3544 }
3545 }
3546 else
3547 {
3548 if (fNeedsOnlineMerge)
3549 {
3550 // Online merge uses the medium lock list of the VM, so give
3551 // an empty list to cancelMergeTo so that it works as designed.
3552 aSource->i_cancelMergeTo(aChildrenToReparent, new MediumLockList());
3553
3554 // clean up the VM medium lock list ourselves
3555 MediumLockList::Base::iterator lockListBegin =
3556 aMediumLockList->GetBegin();
3557 MediumLockList::Base::iterator lockListEnd =
3558 aMediumLockList->GetEnd();
3559 MediumLockList::Base::iterator lockListLast = lockListEnd;
3560 lockListLast--;
3561 for (MediumLockList::Base::iterator it = lockListBegin;
3562 it != lockListEnd;
3563 ++it)
3564 {
3565 ComObjPtr<Medium> pMedium = it->GetMedium();
3566 AutoWriteLock mediumLock(pMedium COMMA_LOCKVAL_SRC_POS);
3567 if (pMedium->i_getState() == MediumState_Deleting)
3568 pMedium->i_unmarkForDeletion();
3569 else
3570 {
3571 // blindly apply this, only needed for medium objects which
3572 // would be deleted as part of the merge
3573 pMedium->i_unmarkLockedForDeletion();
3574 }
3575 mediumLock.release();
3576 it->UpdateLock(it == lockListLast);
3577 mediumLock.acquire();
3578 }
3579 }
3580 else
3581 {
3582 aSource->i_cancelMergeTo(aChildrenToReparent, aMediumLockList);
3583 }
3584 }
3585
3586 if (aMachineId.isValid() && !aMachineId.isZero())
3587 {
3588 // reattach the source media to the snapshot
3589 HRESULT rc = aSource->i_addBackReference(aMachineId, aSnapshotId);
3590 AssertComRC(rc);
3591 }
3592}
3593
3594/**
3595 * Perform an online merge of a hard disk, i.e. the equivalent of
3596 * Medium::mergeTo(), just for running VMs. If this fails you need to call
3597 * #cancelDeleteSnapshotMedium().
3598 *
3599 * @return COM status code
3600 * @param aMediumAttachment Identify where the disk is attached in the VM.
3601 * @param aSource Source hard disk for merge.
3602 * @param aTarget Target hard disk for merge.
3603 * @param aMergeForward Merge direction.
3604 * @param aParentForTarget New parent if target needs to be reparented.
3605 * @param aChildrenToReparent Medium lock list with children which have to be
3606 * reparented to the target.
3607 * @param aMediumLockList Where to store the created medium lock list (may
3608 * return NULL if no real merge is necessary).
3609 * @param aProgress Progress indicator.
3610 * @param pfNeedsMachineSaveSettings Whether the VM settings need to be saved (out).
3611 */
3612HRESULT SessionMachine::i_onlineMergeMedium(const ComObjPtr<MediumAttachment> &aMediumAttachment,
3613 const ComObjPtr<Medium> &aSource,
3614 const ComObjPtr<Medium> &aTarget,
3615 bool fMergeForward,
3616 const ComObjPtr<Medium> &aParentForTarget,
3617 MediumLockList *aChildrenToReparent,
3618 MediumLockList *aMediumLockList,
3619 ComObjPtr<Progress> &aProgress,
3620 bool *pfNeedsMachineSaveSettings)
3621{
3622 AssertReturn(aSource != NULL, E_FAIL);
3623 AssertReturn(aTarget != NULL, E_FAIL);
3624 AssertReturn(aSource != aTarget, E_FAIL);
3625 AssertReturn(aMediumLockList != NULL, E_FAIL);
3626 NOREF(fMergeForward);
3627 NOREF(aParentForTarget);
3628 NOREF(aChildrenToReparent);
3629
3630 HRESULT rc = S_OK;
3631
3632 try
3633 {
3634 // Similar code appears in Medium::taskMergeHandle, so
3635 // if you make any changes below check whether they are applicable
3636 // in that context as well.
3637
3638 unsigned uTargetIdx = (unsigned)-1;
3639 unsigned uSourceIdx = (unsigned)-1;
3640 /* Sanity check all hard disks in the chain. */
3641 MediumLockList::Base::iterator lockListBegin =
3642 aMediumLockList->GetBegin();
3643 MediumLockList::Base::iterator lockListEnd =
3644 aMediumLockList->GetEnd();
3645 unsigned i = 0;
3646 for (MediumLockList::Base::iterator it = lockListBegin;
3647 it != lockListEnd;
3648 ++it)
3649 {
3650 MediumLock &mediumLock = *it;
3651 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
3652
3653 if (pMedium == aSource)
3654 uSourceIdx = i;
3655 else if (pMedium == aTarget)
3656 uTargetIdx = i;
3657
3658 // In Medium::taskMergeHandler there is lots of consistency
3659 // checking which we cannot do here, as the state details are
3660 // impossible to get outside the Medium class. The locking should
3661 // have done the checks already.
3662
3663 i++;
3664 }
3665
3666 ComAssertThrow( uSourceIdx != (unsigned)-1
3667 && uTargetIdx != (unsigned)-1, E_FAIL);
3668
3669 ComPtr<IInternalSessionControl> directControl;
3670 {
3671 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
3672
3673 if (mData->mSession.mState != SessionState_Locked)
3674 throw setError(VBOX_E_INVALID_VM_STATE,
3675 tr("Machine is not locked by a session (session state: %s)"),
3676 Global::stringifySessionState(mData->mSession.mState));
3677 directControl = mData->mSession.mDirectControl;
3678 }
3679
3680 // Must not hold any locks here, as this will call back to finish
3681 // updating the medium attachment, chain linking and state.
3682 rc = directControl->OnlineMergeMedium(aMediumAttachment,
3683 uSourceIdx, uTargetIdx,
3684 aProgress);
3685 if (FAILED(rc))
3686 throw rc;
3687 }
3688 catch (HRESULT aRC) { rc = aRC; }
3689
3690 // The callback mentioned above takes care of update the medium state
3691
3692 if (pfNeedsMachineSaveSettings)
3693 *pfNeedsMachineSaveSettings = true;
3694
3695 return rc;
3696}
3697
3698/**
3699 * Implementation for IInternalMachineControl::finishOnlineMergeMedium().
3700 *
3701 * Gets called after the successful completion of an online merge from
3702 * Console::onlineMergeMedium(), which gets invoked indirectly above in
3703 * the call to IInternalSessionControl::onlineMergeMedium.
3704 *
3705 * This updates the medium information and medium state so that the VM
3706 * can continue with the updated state of the medium chain.
3707 */
3708HRESULT SessionMachine::finishOnlineMergeMedium()
3709{
3710 HRESULT rc = S_OK;
3711 MediumDeleteRec *pDeleteRec = (MediumDeleteRec *)mConsoleTaskData.mDeleteSnapshotInfo;
3712 AssertReturn(pDeleteRec, E_FAIL);
3713 bool fSourceHasChildren = false;
3714
3715 // all hard disks but the target were successfully deleted by
3716 // the merge; reparent target if necessary and uninitialize media
3717
3718 AutoWriteLock treeLock(mParent->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3719
3720 // Declare this here to make sure the object does not get uninitialized
3721 // before this method completes. Would normally happen as halfway through
3722 // we delete the last reference to the no longer existing medium object.
3723 ComObjPtr<Medium> targetChild;
3724
3725 if (pDeleteRec->mfMergeForward)
3726 {
3727 // first, unregister the target since it may become a base
3728 // hard disk which needs re-registration
3729 rc = mParent->i_unregisterMedium(pDeleteRec->mpTarget);
3730 AssertComRC(rc);
3731
3732 // then, reparent it and disconnect the deleted branch at
3733 // both ends (chain->parent() is source's parent)
3734 pDeleteRec->mpTarget->i_deparent();
3735 pDeleteRec->mpTarget->i_setParent(pDeleteRec->mpParentForTarget);
3736 if (pDeleteRec->mpParentForTarget)
3737 pDeleteRec->mpSource->i_deparent();
3738
3739 // then, register again
3740 rc = mParent->i_registerMedium(pDeleteRec->mpTarget, &pDeleteRec->mpTarget, treeLock);
3741 AssertComRC(rc);
3742 }
3743 else
3744 {
3745 Assert(pDeleteRec->mpTarget->i_getChildren().size() == 1);
3746 targetChild = pDeleteRec->mpTarget->i_getChildren().front();
3747
3748 // disconnect the deleted branch at the elder end
3749 targetChild->i_deparent();
3750
3751 // Update parent UUIDs of the source's children, reparent them and
3752 // disconnect the deleted branch at the younger end
3753 if (pDeleteRec->mpChildrenToReparent && !pDeleteRec->mpChildrenToReparent->IsEmpty())
3754 {
3755 fSourceHasChildren = true;
3756 // Fix the parent UUID of the images which needs to be moved to
3757 // underneath target. The running machine has the images opened,
3758 // but only for reading since the VM is paused. If anything fails
3759 // we must continue. The worst possible result is that the images
3760 // need manual fixing via VBoxManage to adjust the parent UUID.
3761 treeLock.release();
3762 pDeleteRec->mpTarget->i_fixParentUuidOfChildren(pDeleteRec->mpChildrenToReparent);
3763 // The childen are still write locked, unlock them now and don't
3764 // rely on the destructor doing it very late.
3765 pDeleteRec->mpChildrenToReparent->Unlock();
3766 treeLock.acquire();
3767
3768 // obey {parent,child} lock order
3769 AutoWriteLock sourceLock(pDeleteRec->mpSource COMMA_LOCKVAL_SRC_POS);
3770
3771 MediumLockList::Base::iterator childrenBegin = pDeleteRec->mpChildrenToReparent->GetBegin();
3772 MediumLockList::Base::iterator childrenEnd = pDeleteRec->mpChildrenToReparent->GetEnd();
3773 for (MediumLockList::Base::iterator it = childrenBegin;
3774 it != childrenEnd;
3775 ++it)
3776 {
3777 Medium *pMedium = it->GetMedium();
3778 AutoWriteLock childLock(pMedium COMMA_LOCKVAL_SRC_POS);
3779
3780 pMedium->i_deparent(); // removes pMedium from source
3781 pMedium->i_setParent(pDeleteRec->mpTarget);
3782 }
3783 }
3784 }
3785
3786 /* unregister and uninitialize all hard disks removed by the merge */
3787 MediumLockList *pMediumLockList = NULL;
3788 rc = mData->mSession.mLockedMedia.Get(pDeleteRec->mpOnlineMediumAttachment, pMediumLockList);
3789 const ComObjPtr<Medium> &pLast = pDeleteRec->mfMergeForward ? pDeleteRec->mpTarget : pDeleteRec->mpSource;
3790 AssertReturn(SUCCEEDED(rc) && pMediumLockList, E_FAIL);
3791 MediumLockList::Base::iterator lockListBegin =
3792 pMediumLockList->GetBegin();
3793 MediumLockList::Base::iterator lockListEnd =
3794 pMediumLockList->GetEnd();
3795 for (MediumLockList::Base::iterator it = lockListBegin;
3796 it != lockListEnd;
3797 )
3798 {
3799 MediumLock &mediumLock = *it;
3800 /* Create a real copy of the medium pointer, as the medium
3801 * lock deletion below would invalidate the referenced object. */
3802 const ComObjPtr<Medium> pMedium = mediumLock.GetMedium();
3803
3804 /* The target and all images not merged (readonly) are skipped */
3805 if ( pMedium == pDeleteRec->mpTarget
3806 || pMedium->i_getState() == MediumState_LockedRead)
3807 {
3808 ++it;
3809 }
3810 else
3811 {
3812 rc = mParent->i_unregisterMedium(pMedium);
3813 AssertComRC(rc);
3814
3815 /* now, uninitialize the deleted hard disk (note that
3816 * due to the Deleting state, uninit() will not touch
3817 * the parent-child relationship so we need to
3818 * uninitialize each disk individually) */
3819
3820 /* note that the operation initiator hard disk (which is
3821 * normally also the source hard disk) is a special case
3822 * -- there is one more caller added by Task to it which
3823 * we must release. Also, if we are in sync mode, the
3824 * caller may still hold an AutoCaller instance for it
3825 * and therefore we cannot uninit() it (it's therefore
3826 * the caller's responsibility) */
3827 if (pMedium == pDeleteRec->mpSource)
3828 {
3829 Assert(pDeleteRec->mpSource->i_getChildren().size() == 0);
3830 Assert(pDeleteRec->mpSource->i_getFirstMachineBackrefId() == NULL);
3831 }
3832
3833 /* Delete the medium lock list entry, which also releases the
3834 * caller added by MergeChain before uninit() and updates the
3835 * iterator to point to the right place. */
3836 rc = pMediumLockList->RemoveByIterator(it);
3837 AssertComRC(rc);
3838
3839 treeLock.release();
3840 pMedium->uninit();
3841 treeLock.acquire();
3842 }
3843
3844 /* Stop as soon as we reached the last medium affected by the merge.
3845 * The remaining images must be kept unchanged. */
3846 if (pMedium == pLast)
3847 break;
3848 }
3849
3850 /* Could be in principle folded into the previous loop, but let's keep
3851 * things simple. Update the medium locking to be the standard state:
3852 * all parent images locked for reading, just the last diff for writing. */
3853 lockListBegin = pMediumLockList->GetBegin();
3854 lockListEnd = pMediumLockList->GetEnd();
3855 MediumLockList::Base::iterator lockListLast = lockListEnd;
3856 lockListLast--;
3857 for (MediumLockList::Base::iterator it = lockListBegin;
3858 it != lockListEnd;
3859 ++it)
3860 {
3861 it->UpdateLock(it == lockListLast);
3862 }
3863
3864 /* If this is a backwards merge of the only remaining snapshot (i.e. the
3865 * source has no children) then update the medium associated with the
3866 * attachment, as the previously associated one (source) is now deleted.
3867 * Without the immediate update the VM could not continue running. */
3868 if (!pDeleteRec->mfMergeForward && !fSourceHasChildren)
3869 {
3870 AutoWriteLock attLock(pDeleteRec->mpOnlineMediumAttachment COMMA_LOCKVAL_SRC_POS);
3871 pDeleteRec->mpOnlineMediumAttachment->i_updateMedium(pDeleteRec->mpTarget);
3872 }
3873
3874 return S_OK;
3875}
3876
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