VirtualBox

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

Last change on this file since 43677 was 43677, checked in by vboxsync, 12 years ago

Main/Snapshot: issue 4386. Check available free space on the storages before merging.

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