VirtualBox

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

Last change on this file since 106402 was 106061, checked in by vboxsync, 3 months ago

Copyright year updates by scm.

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