VirtualBox

source: vbox/trunk/src/VBox/Main/MediumImpl.cpp@ 30396

Last change on this file since 30396 was 30380, checked in by vboxsync, 14 years ago

Main: make calculateRelativePath methods a bit smarter and rename them to VirtualBox::copyPathRelativeToConfig() and Machine::copyPathRelativeToMachine()

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 203.8 KB
Line 
1/* $Id: MediumImpl.cpp 30380 2010-06-22 16:28:14Z vboxsync $ */
2/** @file
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2008-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#include "MediumImpl.h"
19#include "ProgressImpl.h"
20#include "SystemPropertiesImpl.h"
21#include "VirtualBoxImpl.h"
22
23#include "AutoCaller.h"
24#include "Logging.h"
25
26#include <VBox/com/array.h>
27#include <VBox/com/SupportErrorInfo.h>
28
29#include <VBox/err.h>
30#include <VBox/settings.h>
31
32#include <iprt/param.h>
33#include <iprt/path.h>
34#include <iprt/file.h>
35#include <iprt/tcp.h>
36
37#include <VBox/VBoxHDD.h>
38
39#include <algorithm>
40
41////////////////////////////////////////////////////////////////////////////////
42//
43// Medium data definition
44//
45////////////////////////////////////////////////////////////////////////////////
46
47/** Describes how a machine refers to this image. */
48struct BackRef
49{
50 /** Equality predicate for stdc++. */
51 struct EqualsTo : public std::unary_function <BackRef, bool>
52 {
53 explicit EqualsTo(const Guid &aMachineId) : machineId(aMachineId) {}
54
55 bool operator()(const argument_type &aThat) const
56 {
57 return aThat.machineId == machineId;
58 }
59
60 const Guid machineId;
61 };
62
63 typedef std::list<Guid> GuidList;
64
65 BackRef(const Guid &aMachineId,
66 const Guid &aSnapshotId = Guid::Empty)
67 : machineId(aMachineId),
68 fInCurState(aSnapshotId.isEmpty())
69 {
70 if (!aSnapshotId.isEmpty())
71 llSnapshotIds.push_back(aSnapshotId);
72 }
73
74 Guid machineId;
75 bool fInCurState : 1;
76 GuidList llSnapshotIds;
77};
78
79typedef std::list<BackRef> BackRefList;
80
81struct Medium::Data
82{
83 Data()
84 : pVirtualBox(NULL),
85 state(MediumState_NotCreated),
86 size(0),
87 readers(0),
88 preLockState(MediumState_NotCreated),
89 queryInfoSem(NIL_RTSEMEVENTMULTI),
90 queryInfoRunning(false),
91 type(MediumType_Normal),
92 devType(DeviceType_HardDisk),
93 logicalSize(0),
94 hddOpenMode(OpenReadWrite),
95 autoReset(false),
96 setImageId(false),
97 setParentId(false),
98 hostDrive(false),
99 implicit(false),
100 numCreateDiffTasks(0),
101 vdDiskIfaces(NULL)
102 {}
103
104 /** weak VirtualBox parent */
105 VirtualBox * const pVirtualBox;
106
107 const Guid id;
108 Utf8Str strDescription;
109 MediumState_T state;
110 Utf8Str strLocation;
111 Utf8Str strLocationFull;
112 uint64_t size;
113 Utf8Str strLastAccessError;
114
115 // pParent and llChildren are protected by VirtualBox::getMediaTreeLockHandle()
116 ComObjPtr<Medium> pParent;
117 MediaList llChildren; // to add a child, just call push_back; to remove a child, call child->deparent() which does a lookup
118
119 BackRefList backRefs;
120
121 size_t readers;
122 MediumState_T preLockState;
123
124 RTSEMEVENTMULTI queryInfoSem;
125 bool queryInfoRunning : 1;
126
127 const Utf8Str strFormat;
128 ComObjPtr<MediumFormat> formatObj;
129
130 MediumType_T type;
131 DeviceType_T devType;
132 uint64_t logicalSize; /*< In MBytes. */
133
134 HDDOpenMode hddOpenMode;
135
136 bool autoReset : 1;
137
138 /** the following members are invalid after changing UUID on open */
139 bool setImageId : 1;
140 bool setParentId : 1;
141 const Guid imageId;
142 const Guid parentId;
143
144 bool hostDrive : 1;
145
146 typedef std::map <Bstr, Bstr> PropertyMap;
147 PropertyMap properties;
148
149 bool implicit : 1;
150
151 uint32_t numCreateDiffTasks;
152
153 Utf8Str vdError; /*< Error remembered by the VD error callback. */
154
155 VDINTERFACE vdIfError;
156 VDINTERFACEERROR vdIfCallsError;
157
158 VDINTERFACE vdIfConfig;
159 VDINTERFACECONFIG vdIfCallsConfig;
160
161 VDINTERFACE vdIfTcpNet;
162 VDINTERFACETCPNET vdIfCallsTcpNet;
163
164 PVDINTERFACE vdDiskIfaces;
165};
166
167////////////////////////////////////////////////////////////////////////////////
168//
169// Globals
170//
171////////////////////////////////////////////////////////////////////////////////
172
173/**
174 * Medium::Task class for asynchronous operations.
175 *
176 * @note Instances of this class must be created using new() because the
177 * task thread function will delete them when the task is complete.
178 *
179 * @note The constructor of this class adds a caller on the managed Medium
180 * object which is automatically released upon destruction.
181 */
182class Medium::Task
183{
184public:
185 Task(Medium *aMedium, Progress *aProgress)
186 : mVDOperationIfaces(NULL),
187 m_pfNeedsSaveSettings(NULL),
188 mMedium(aMedium),
189 mMediumCaller(aMedium),
190 mThread(NIL_RTTHREAD),
191 mProgress(aProgress)
192 {
193 AssertReturnVoidStmt(aMedium, mRC = E_FAIL);
194 mRC = mMediumCaller.rc();
195 if (FAILED(mRC))
196 return;
197
198 /* Set up a per-operation progress interface, can be used freely (for
199 * binary operations you can use it either on the source or target). */
200 mVDIfCallsProgress.cbSize = sizeof(VDINTERFACEPROGRESS);
201 mVDIfCallsProgress.enmInterface = VDINTERFACETYPE_PROGRESS;
202 mVDIfCallsProgress.pfnProgress = vdProgressCall;
203 int vrc = VDInterfaceAdd(&mVDIfProgress,
204 "Medium::Task::vdInterfaceProgress",
205 VDINTERFACETYPE_PROGRESS,
206 &mVDIfCallsProgress,
207 mProgress,
208 &mVDOperationIfaces);
209 AssertRC(vrc);
210 if (RT_FAILURE(vrc))
211 mRC = E_FAIL;
212 }
213
214 // Make all destructors virtual. Just in case.
215 virtual ~Task()
216 {}
217
218 HRESULT rc() const { return mRC; }
219 bool isOk() const { return SUCCEEDED(rc()); }
220
221 static int fntMediumTask(RTTHREAD aThread, void *pvUser);
222
223 bool isAsync() { return mThread != NIL_RTTHREAD; }
224
225 PVDINTERFACE mVDOperationIfaces;
226
227 // Whether the caller needs to call VirtualBox::saveSettings() after
228 // the task function returns. Only used in synchronous (wait) mode;
229 // otherwise the task will save the settings itself.
230 bool *m_pfNeedsSaveSettings;
231
232 const ComObjPtr<Medium> mMedium;
233 AutoCaller mMediumCaller;
234
235 friend HRESULT Medium::runNow(Medium::Task*, bool*);
236
237protected:
238 HRESULT mRC;
239 RTTHREAD mThread;
240
241private:
242 virtual HRESULT handler() = 0;
243
244 const ComObjPtr<Progress> mProgress;
245
246 static DECLCALLBACK(int) vdProgressCall(void *pvUser, unsigned uPercent);
247
248 VDINTERFACE mVDIfProgress;
249 VDINTERFACEPROGRESS mVDIfCallsProgress;
250};
251
252class Medium::CreateBaseTask : public Medium::Task
253{
254public:
255 CreateBaseTask(Medium *aMedium,
256 Progress *aProgress,
257 uint64_t aSize,
258 MediumVariant_T aVariant)
259 : Medium::Task(aMedium, aProgress),
260 mSize(aSize),
261 mVariant(aVariant)
262 {}
263
264 uint64_t mSize;
265 MediumVariant_T mVariant;
266
267private:
268 virtual HRESULT handler();
269};
270
271class Medium::CreateDiffTask : public Medium::Task
272{
273public:
274 CreateDiffTask(Medium *aMedium,
275 Progress *aProgress,
276 Medium *aTarget,
277 MediumVariant_T aVariant,
278 MediumLockList *aMediumLockList,
279 bool fKeepMediumLockList = false)
280 : Medium::Task(aMedium, aProgress),
281 mpMediumLockList(aMediumLockList),
282 mTarget(aTarget),
283 mVariant(aVariant),
284 mTargetCaller(aTarget),
285 mfKeepMediumLockList(fKeepMediumLockList)
286 {
287 AssertReturnVoidStmt(aTarget != NULL, mRC = E_FAIL);
288 mRC = mTargetCaller.rc();
289 if (FAILED(mRC))
290 return;
291 }
292
293 ~CreateDiffTask()
294 {
295 if (!mfKeepMediumLockList && mpMediumLockList)
296 delete mpMediumLockList;
297 }
298
299 MediumLockList *mpMediumLockList;
300
301 const ComObjPtr<Medium> mTarget;
302 MediumVariant_T mVariant;
303
304private:
305 virtual HRESULT handler();
306
307 AutoCaller mTargetCaller;
308 bool mfKeepMediumLockList;
309};
310
311class Medium::CloneTask : public Medium::Task
312{
313public:
314 CloneTask(Medium *aMedium,
315 Progress *aProgress,
316 Medium *aTarget,
317 MediumVariant_T aVariant,
318 Medium *aParent,
319 MediumLockList *aSourceMediumLockList,
320 MediumLockList *aTargetMediumLockList,
321 bool fKeepSourceMediumLockList = false,
322 bool fKeepTargetMediumLockList = false)
323 : Medium::Task(aMedium, aProgress),
324 mTarget(aTarget),
325 mParent(aParent),
326 mpSourceMediumLockList(aSourceMediumLockList),
327 mpTargetMediumLockList(aTargetMediumLockList),
328 mVariant(aVariant),
329 mTargetCaller(aTarget),
330 mParentCaller(aParent),
331 mfKeepSourceMediumLockList(fKeepSourceMediumLockList),
332 mfKeepTargetMediumLockList(fKeepTargetMediumLockList)
333 {
334 AssertReturnVoidStmt(aTarget != NULL, mRC = E_FAIL);
335 mRC = mTargetCaller.rc();
336 if (FAILED(mRC))
337 return;
338 /* aParent may be NULL */
339 mRC = mParentCaller.rc();
340 if (FAILED(mRC))
341 return;
342 AssertReturnVoidStmt(aSourceMediumLockList != NULL, mRC = E_FAIL);
343 AssertReturnVoidStmt(aTargetMediumLockList != NULL, mRC = E_FAIL);
344 }
345
346 ~CloneTask()
347 {
348 if (!mfKeepSourceMediumLockList && mpSourceMediumLockList)
349 delete mpSourceMediumLockList;
350 if (!mfKeepTargetMediumLockList && mpTargetMediumLockList)
351 delete mpTargetMediumLockList;
352 }
353
354 const ComObjPtr<Medium> mTarget;
355 const ComObjPtr<Medium> mParent;
356 MediumLockList *mpSourceMediumLockList;
357 MediumLockList *mpTargetMediumLockList;
358 MediumVariant_T mVariant;
359
360private:
361 virtual HRESULT handler();
362
363 AutoCaller mTargetCaller;
364 AutoCaller mParentCaller;
365 bool mfKeepSourceMediumLockList;
366 bool mfKeepTargetMediumLockList;
367};
368
369class Medium::CompactTask : public Medium::Task
370{
371public:
372 CompactTask(Medium *aMedium,
373 Progress *aProgress,
374 MediumLockList *aMediumLockList,
375 bool fKeepMediumLockList = false)
376 : Medium::Task(aMedium, aProgress),
377 mpMediumLockList(aMediumLockList),
378 mfKeepMediumLockList(fKeepMediumLockList)
379 {
380 AssertReturnVoidStmt(aMediumLockList != NULL, mRC = E_FAIL);
381 }
382
383 ~CompactTask()
384 {
385 if (!mfKeepMediumLockList && mpMediumLockList)
386 delete mpMediumLockList;
387 }
388
389 MediumLockList *mpMediumLockList;
390
391private:
392 virtual HRESULT handler();
393
394 bool mfKeepMediumLockList;
395};
396
397class Medium::ResetTask : public Medium::Task
398{
399public:
400 ResetTask(Medium *aMedium,
401 Progress *aProgress,
402 MediumLockList *aMediumLockList,
403 bool fKeepMediumLockList = false)
404 : Medium::Task(aMedium, aProgress),
405 mpMediumLockList(aMediumLockList),
406 mfKeepMediumLockList(fKeepMediumLockList)
407 {}
408
409 ~ResetTask()
410 {
411 if (!mfKeepMediumLockList && mpMediumLockList)
412 delete mpMediumLockList;
413 }
414
415 MediumLockList *mpMediumLockList;
416
417private:
418 virtual HRESULT handler();
419
420 bool mfKeepMediumLockList;
421};
422
423class Medium::DeleteTask : public Medium::Task
424{
425public:
426 DeleteTask(Medium *aMedium,
427 Progress *aProgress,
428 MediumLockList *aMediumLockList,
429 bool fKeepMediumLockList = false)
430 : Medium::Task(aMedium, aProgress),
431 mpMediumLockList(aMediumLockList),
432 mfKeepMediumLockList(fKeepMediumLockList)
433 {}
434
435 ~DeleteTask()
436 {
437 if (!mfKeepMediumLockList && mpMediumLockList)
438 delete mpMediumLockList;
439 }
440
441 MediumLockList *mpMediumLockList;
442
443private:
444 virtual HRESULT handler();
445
446 bool mfKeepMediumLockList;
447};
448
449class Medium::MergeTask : public Medium::Task
450{
451public:
452 MergeTask(Medium *aMedium,
453 Medium *aTarget,
454 bool fMergeForward,
455 Medium *aParentForTarget,
456 const MediaList &aChildrenToReparent,
457 Progress *aProgress,
458 MediumLockList *aMediumLockList,
459 bool fKeepMediumLockList = false)
460 : Medium::Task(aMedium, aProgress),
461 mTarget(aTarget),
462 mfMergeForward(fMergeForward),
463 mParentForTarget(aParentForTarget),
464 mChildrenToReparent(aChildrenToReparent),
465 mpMediumLockList(aMediumLockList),
466 mTargetCaller(aTarget),
467 mParentForTargetCaller(aParentForTarget),
468 mfChildrenCaller(false),
469 mfKeepMediumLockList(fKeepMediumLockList)
470 {
471 AssertReturnVoidStmt(aMediumLockList != NULL, mRC = E_FAIL);
472 for (MediaList::const_iterator it = mChildrenToReparent.begin();
473 it != mChildrenToReparent.end();
474 ++it)
475 {
476 HRESULT rc2 = (*it)->addCaller();
477 if (FAILED(rc2))
478 {
479 mRC = E_FAIL;
480 for (MediaList::const_iterator it2 = mChildrenToReparent.begin();
481 it2 != it;
482 --it2)
483 {
484 (*it2)->releaseCaller();
485 }
486 return;
487 }
488 }
489 mfChildrenCaller = true;
490 }
491
492 ~MergeTask()
493 {
494 if (!mfKeepMediumLockList && mpMediumLockList)
495 delete mpMediumLockList;
496 if (mfChildrenCaller)
497 {
498 for (MediaList::const_iterator it = mChildrenToReparent.begin();
499 it != mChildrenToReparent.end();
500 ++it)
501 {
502 (*it)->releaseCaller();
503 }
504 }
505 }
506
507 const ComObjPtr<Medium> mTarget;
508 bool mfMergeForward;
509 /* When mChildrenToReparent is empty then mParentForTarget is non-null.
510 * In other words: they are used in different cases. */
511 const ComObjPtr<Medium> mParentForTarget;
512 MediaList mChildrenToReparent;
513 MediumLockList *mpMediumLockList;
514
515private:
516 virtual HRESULT handler();
517
518 AutoCaller mTargetCaller;
519 AutoCaller mParentForTargetCaller;
520 bool mfChildrenCaller;
521 bool mfKeepMediumLockList;
522};
523
524/**
525 * Thread function for time-consuming medium tasks.
526 *
527 * @param pvUser Pointer to the Medium::Task instance.
528 */
529/* static */
530DECLCALLBACK(int) Medium::Task::fntMediumTask(RTTHREAD aThread, void *pvUser)
531{
532 LogFlowFuncEnter();
533 AssertReturn(pvUser, (int)E_INVALIDARG);
534 Medium::Task *pTask = static_cast<Medium::Task *>(pvUser);
535
536 pTask->mThread = aThread;
537
538 HRESULT rc = pTask->handler();
539
540 /* complete the progress if run asynchronously */
541 if (pTask->isAsync())
542 {
543 if (!pTask->mProgress.isNull())
544 pTask->mProgress->notifyComplete(rc);
545 }
546
547 /* pTask is no longer needed, delete it. */
548 delete pTask;
549
550 LogFlowFunc(("rc=%Rhrc\n", rc));
551 LogFlowFuncLeave();
552
553 return (int)rc;
554}
555
556/**
557 * PFNVDPROGRESS callback handler for Task operations.
558 *
559 * @param pvUser Pointer to the Progress instance.
560 * @param uPercent Completetion precentage (0-100).
561 */
562/*static*/
563DECLCALLBACK(int) Medium::Task::vdProgressCall(void *pvUser, unsigned uPercent)
564{
565 Progress *that = static_cast<Progress *>(pvUser);
566
567 if (that != NULL)
568 {
569 /* update the progress object, capping it at 99% as the final percent
570 * is used for additional operations like setting the UUIDs and similar. */
571 HRESULT rc = that->SetCurrentOperationProgress(uPercent * 99 / 100);
572 if (FAILED(rc))
573 {
574 if (rc == E_FAIL)
575 return VERR_CANCELLED;
576 else
577 return VERR_INVALID_STATE;
578 }
579 }
580
581 return VINF_SUCCESS;
582}
583
584/**
585 * Implementation code for the "create base" task.
586 */
587HRESULT Medium::CreateBaseTask::handler()
588{
589 return mMedium->taskCreateBaseHandler(*this);
590}
591
592/**
593 * Implementation code for the "create diff" task.
594 */
595HRESULT Medium::CreateDiffTask::handler()
596{
597 return mMedium->taskCreateDiffHandler(*this);
598}
599
600/**
601 * Implementation code for the "clone" task.
602 */
603HRESULT Medium::CloneTask::handler()
604{
605 return mMedium->taskCloneHandler(*this);
606}
607
608/**
609 * Implementation code for the "compact" task.
610 */
611HRESULT Medium::CompactTask::handler()
612{
613 return mMedium->taskCompactHandler(*this);
614}
615
616/**
617 * Implementation code for the "reset" task.
618 */
619HRESULT Medium::ResetTask::handler()
620{
621 return mMedium->taskResetHandler(*this);
622}
623
624/**
625 * Implementation code for the "delete" task.
626 */
627HRESULT Medium::DeleteTask::handler()
628{
629 return mMedium->taskDeleteHandler(*this);
630}
631
632/**
633 * Implementation code for the "merge" task.
634 */
635HRESULT Medium::MergeTask::handler()
636{
637 return mMedium->taskMergeHandler(*this);
638}
639
640
641////////////////////////////////////////////////////////////////////////////////
642//
643// Medium constructor / destructor
644//
645////////////////////////////////////////////////////////////////////////////////
646
647DEFINE_EMPTY_CTOR_DTOR(Medium)
648
649HRESULT Medium::FinalConstruct()
650{
651 m = new Data;
652
653 /* Initialize the callbacks of the VD error interface */
654 m->vdIfCallsError.cbSize = sizeof(VDINTERFACEERROR);
655 m->vdIfCallsError.enmInterface = VDINTERFACETYPE_ERROR;
656 m->vdIfCallsError.pfnError = vdErrorCall;
657 m->vdIfCallsError.pfnMessage = NULL;
658
659 /* Initialize the callbacks of the VD config interface */
660 m->vdIfCallsConfig.cbSize = sizeof(VDINTERFACECONFIG);
661 m->vdIfCallsConfig.enmInterface = VDINTERFACETYPE_CONFIG;
662 m->vdIfCallsConfig.pfnAreKeysValid = vdConfigAreKeysValid;
663 m->vdIfCallsConfig.pfnQuerySize = vdConfigQuerySize;
664 m->vdIfCallsConfig.pfnQuery = vdConfigQuery;
665
666 /* Initialize the callbacks of the VD TCP interface (we always use the host
667 * IP stack for now) */
668 m->vdIfCallsTcpNet.cbSize = sizeof(VDINTERFACETCPNET);
669 m->vdIfCallsTcpNet.enmInterface = VDINTERFACETYPE_TCPNET;
670 m->vdIfCallsTcpNet.pfnClientConnect = RTTcpClientConnect;
671 m->vdIfCallsTcpNet.pfnClientClose = RTTcpClientClose;
672 m->vdIfCallsTcpNet.pfnSelectOne = RTTcpSelectOne;
673 m->vdIfCallsTcpNet.pfnRead = RTTcpRead;
674 m->vdIfCallsTcpNet.pfnWrite = RTTcpWrite;
675 m->vdIfCallsTcpNet.pfnSgWrite = RTTcpSgWrite;
676 m->vdIfCallsTcpNet.pfnFlush = RTTcpFlush;
677 m->vdIfCallsTcpNet.pfnSetSendCoalescing = RTTcpSetSendCoalescing;
678 m->vdIfCallsTcpNet.pfnGetLocalAddress = RTTcpGetLocalAddress;
679 m->vdIfCallsTcpNet.pfnGetPeerAddress = RTTcpGetPeerAddress;
680
681 /* Initialize the per-disk interface chain */
682 int vrc;
683 vrc = VDInterfaceAdd(&m->vdIfError,
684 "Medium::vdInterfaceError",
685 VDINTERFACETYPE_ERROR,
686 &m->vdIfCallsError, this, &m->vdDiskIfaces);
687 AssertRCReturn(vrc, E_FAIL);
688
689 vrc = VDInterfaceAdd(&m->vdIfConfig,
690 "Medium::vdInterfaceConfig",
691 VDINTERFACETYPE_CONFIG,
692 &m->vdIfCallsConfig, this, &m->vdDiskIfaces);
693 AssertRCReturn(vrc, E_FAIL);
694
695 vrc = VDInterfaceAdd(&m->vdIfTcpNet,
696 "Medium::vdInterfaceTcpNet",
697 VDINTERFACETYPE_TCPNET,
698 &m->vdIfCallsTcpNet, this, &m->vdDiskIfaces);
699 AssertRCReturn(vrc, E_FAIL);
700
701 vrc = RTSemEventMultiCreate(&m->queryInfoSem);
702 AssertRCReturn(vrc, E_FAIL);
703 vrc = RTSemEventMultiSignal(m->queryInfoSem);
704 AssertRCReturn(vrc, E_FAIL);
705
706 return S_OK;
707}
708
709void Medium::FinalRelease()
710{
711 uninit();
712
713 delete m;
714}
715
716/**
717 * Initializes the hard disk object without creating or opening an associated
718 * storage unit.
719 *
720 * For hard disks that don't have the VD_CAP_CREATE_FIXED or
721 * VD_CAP_CREATE_DYNAMIC capability (and therefore cannot be created or deleted
722 * with the means of VirtualBox) the associated storage unit is assumed to be
723 * ready for use so the state of the hard disk object will be set to Created.
724 *
725 * @param aVirtualBox VirtualBox object.
726 * @param aLocation Storage unit location.
727 * @param pfNeedsSaveSettings Optional pointer to a bool that must have been initialized to false and that will be set to true
728 * by this function if the caller should invoke VirtualBox::saveSettings() because the global settings have changed.
729 */
730HRESULT Medium::init(VirtualBox *aVirtualBox,
731 CBSTR aFormat,
732 CBSTR aLocation,
733 bool *pfNeedsSaveSettings)
734{
735 AssertReturn(aVirtualBox != NULL, E_FAIL);
736 AssertReturn(aFormat != NULL && *aFormat != '\0', E_FAIL);
737
738 /* Enclose the state transition NotReady->InInit->Ready */
739 AutoInitSpan autoInitSpan(this);
740 AssertReturn(autoInitSpan.isOk(), E_FAIL);
741
742 HRESULT rc = S_OK;
743
744 /* share VirtualBox weakly (parent remains NULL so far) */
745 unconst(m->pVirtualBox) = aVirtualBox;
746
747 /* no storage yet */
748 m->state = MediumState_NotCreated;
749
750 /* cannot be a host drive */
751 m->hostDrive = false;
752
753 /* No storage unit is created yet, no need to queryInfo() */
754
755 rc = setFormat(aFormat);
756 if (FAILED(rc)) return rc;
757
758 if (m->formatObj->capabilities() & MediumFormatCapabilities_File)
759 {
760 rc = setLocation(aLocation);
761 if (FAILED(rc)) return rc;
762 }
763 else
764 {
765 rc = setLocation(aLocation);
766 if (FAILED(rc)) return rc;
767 }
768
769 if (!(m->formatObj->capabilities() & ( MediumFormatCapabilities_CreateFixed
770 | MediumFormatCapabilities_CreateDynamic))
771 )
772 {
773 /* storage for hard disks of this format can neither be explicitly
774 * created by VirtualBox nor deleted, so we place the hard disk to
775 * Created state here and also add it to the registry */
776 m->state = MediumState_Created;
777 unconst(m->id).create();
778
779 AutoWriteLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
780 rc = m->pVirtualBox->registerHardDisk(this, pfNeedsSaveSettings);
781 }
782
783 /* Confirm a successful initialization when it's the case */
784 if (SUCCEEDED(rc))
785 autoInitSpan.setSucceeded();
786
787 return rc;
788}
789
790/**
791 * Initializes the medium object by opening the storage unit at the specified
792 * location. The enOpenMode parameter defines whether the image will be opened
793 * read/write or read-only.
794 *
795 * Note that the UUID, format and the parent of this medium will be
796 * determined when reading the medium storage unit, unless new values are
797 * specified by the parameters. If the detected or set parent is
798 * not known to VirtualBox, then this method will fail.
799 *
800 * @param aVirtualBox VirtualBox object.
801 * @param aLocation Storage unit location.
802 * @param enOpenMode Whether to open the image read/write or read-only.
803 * @param aDeviceType Device type of medium.
804 * @param aSetImageId Whether to set the image UUID or not.
805 * @param aImageId New image UUID if @aSetId is true. Empty string means
806 * create a new UUID, and a zero UUID is invalid.
807 * @param aSetParentId Whether to set the parent UUID or not.
808 * @param aParentId New parent UUID if @aSetParentId is true. Empty string
809 * means create a new UUID, and a zero UUID is valid.
810 */
811HRESULT Medium::init(VirtualBox *aVirtualBox,
812 CBSTR aLocation,
813 HDDOpenMode enOpenMode,
814 DeviceType_T aDeviceType,
815 BOOL aSetImageId,
816 const Guid &aImageId,
817 BOOL aSetParentId,
818 const Guid &aParentId)
819{
820 AssertReturn(aVirtualBox, E_INVALIDARG);
821 AssertReturn(aLocation, E_INVALIDARG);
822
823 /* Enclose the state transition NotReady->InInit->Ready */
824 AutoInitSpan autoInitSpan(this);
825 AssertReturn(autoInitSpan.isOk(), E_FAIL);
826
827 HRESULT rc = S_OK;
828
829 /* share VirtualBox weakly (parent remains NULL so far) */
830 unconst(m->pVirtualBox) = aVirtualBox;
831
832 /* there must be a storage unit */
833 m->state = MediumState_Created;
834
835 /* remember device type for correct unregistering later */
836 m->devType = aDeviceType;
837
838 /* cannot be a host drive */
839 m->hostDrive = false;
840
841 /* remember the open mode (defaults to ReadWrite) */
842 m->hddOpenMode = enOpenMode;
843
844 if (aDeviceType == DeviceType_HardDisk)
845 rc = setLocation(aLocation);
846 else
847 rc = setLocation(aLocation, "RAW");
848 if (FAILED(rc)) return rc;
849
850 /* save the new uuid values, will be used by queryInfo() */
851 m->setImageId = !!aSetImageId;
852 unconst(m->imageId) = aImageId;
853 m->setParentId = !!aSetParentId;
854 unconst(m->parentId) = aParentId;
855
856 /* get all the information about the medium from the storage unit */
857 rc = queryInfo();
858
859 if (SUCCEEDED(rc))
860 {
861 /* if the storage unit is not accessible, it's not acceptable for the
862 * newly opened media so convert this into an error */
863 if (m->state == MediumState_Inaccessible)
864 {
865 Assert(!m->strLastAccessError.isEmpty());
866 rc = setError(E_FAIL, m->strLastAccessError.c_str());
867 }
868 else
869 {
870 AssertReturn(!m->id.isEmpty(), E_FAIL);
871
872 /* storage format must be detected by queryInfo() if the medium is accessible */
873 AssertReturn(!m->strFormat.isEmpty(), E_FAIL);
874 }
875 }
876
877 /* Confirm a successful initialization when it's the case */
878 if (SUCCEEDED(rc))
879 autoInitSpan.setSucceeded();
880
881 return rc;
882}
883
884/**
885 * Initializes the medium object by loading its data from the given settings
886 * node. In this mode, the image will always be opened read/write.
887 *
888 * @param aVirtualBox VirtualBox object.
889 * @param aParent Parent medium disk or NULL for a root (base) medium.
890 * @param aDeviceType Device type of the medium.
891 * @param aNode Configuration settings.
892 *
893 * @note Locks VirtualBox for writing, the medium tree for writing.
894 */
895HRESULT Medium::init(VirtualBox *aVirtualBox,
896 Medium *aParent,
897 DeviceType_T aDeviceType,
898 const settings::Medium &data)
899{
900 using namespace settings;
901
902 AssertReturn(aVirtualBox, E_INVALIDARG);
903
904 /* Enclose the state transition NotReady->InInit->Ready */
905 AutoInitSpan autoInitSpan(this);
906 AssertReturn(autoInitSpan.isOk(), E_FAIL);
907
908 HRESULT rc = S_OK;
909
910 /* share VirtualBox and parent weakly */
911 unconst(m->pVirtualBox) = aVirtualBox;
912
913 /* register with VirtualBox/parent early, since uninit() will
914 * unconditionally unregister on failure */
915 if (aParent)
916 {
917 // differencing image: add to parent
918 AutoWriteLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
919 m->pParent = aParent;
920 aParent->m->llChildren.push_back(this);
921 }
922
923 /* see below why we don't call queryInfo() (and therefore treat the medium
924 * as inaccessible for now */
925 m->state = MediumState_Inaccessible;
926 m->strLastAccessError = tr("Accessibility check was not yet performed");
927
928 /* required */
929 unconst(m->id) = data.uuid;
930
931 /* assume not a host drive */
932 m->hostDrive = false;
933
934 /* optional */
935 m->strDescription = data.strDescription;
936
937 /* required */
938 if (aDeviceType == DeviceType_HardDisk)
939 {
940 AssertReturn(!data.strFormat.isEmpty(), E_FAIL);
941 rc = setFormat(Bstr(data.strFormat));
942 if (FAILED(rc)) return rc;
943 }
944 else
945 {
946 /// @todo handle host drive settings here as well?
947 if (!data.strFormat.isEmpty())
948 rc = setFormat(Bstr(data.strFormat));
949 else
950 rc = setFormat(Bstr("RAW"));
951 if (FAILED(rc)) return rc;
952 }
953
954 /* optional, only for diffs, default is false;
955 * we can only auto-reset diff images, so they
956 * must not have a parent */
957 if (aParent != NULL)
958 m->autoReset = data.fAutoReset;
959 else
960 m->autoReset = false;
961
962 /* properties (after setting the format as it populates the map). Note that
963 * if some properties are not supported but preseint in the settings file,
964 * they will still be read and accessible (for possible backward
965 * compatibility; we can also clean them up from the XML upon next
966 * XML format version change if we wish) */
967 for (settings::PropertiesMap::const_iterator it = data.properties.begin();
968 it != data.properties.end(); ++it)
969 {
970 const Utf8Str &name = it->first;
971 const Utf8Str &value = it->second;
972 m->properties[Bstr(name)] = Bstr(value);
973 }
974
975 /* required */
976 rc = setLocation(data.strLocation);
977 if (FAILED(rc)) return rc;
978
979 if (aDeviceType == DeviceType_HardDisk)
980 {
981 /* type is only for base hard disks */
982 if (m->pParent.isNull())
983 m->type = data.hdType;
984 }
985 else
986 m->type = MediumType_Writethrough;
987
988 /* remember device type for correct unregistering later */
989 m->devType = aDeviceType;
990
991 LogFlowThisFunc(("m->strLocationFull='%s', m->strFormat=%s, m->id={%RTuuid}\n",
992 m->strLocationFull.raw(), m->strFormat.raw(), m->id.raw()));
993
994 /* Don't call queryInfo() for registered media to prevent the calling
995 * thread (i.e. the VirtualBox server startup thread) from an unexpected
996 * freeze but mark it as initially inaccessible instead. The vital UUID,
997 * location and format properties are read from the registry file above; to
998 * get the actual state and the rest of the data, the user will have to call
999 * COMGETTER(State). */
1000
1001 AutoWriteLock treeLock(aVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1002
1003 /* load all children */
1004 for (settings::MediaList::const_iterator it = data.llChildren.begin();
1005 it != data.llChildren.end();
1006 ++it)
1007 {
1008 const settings::Medium &med = *it;
1009
1010 ComObjPtr<Medium> pHD;
1011 pHD.createObject();
1012 rc = pHD->init(aVirtualBox,
1013 this, // parent
1014 aDeviceType,
1015 med); // child data
1016 if (FAILED(rc)) break;
1017
1018 rc = m->pVirtualBox->registerHardDisk(pHD, NULL /*pfNeedsSaveSettings*/);
1019 if (FAILED(rc)) break;
1020 }
1021
1022 /* Confirm a successful initialization when it's the case */
1023 if (SUCCEEDED(rc))
1024 autoInitSpan.setSucceeded();
1025
1026 return rc;
1027}
1028
1029/**
1030 * Initializes the medium object by providing the host drive information.
1031 * Not used for anything but the host floppy/host DVD case.
1032 *
1033 * @todo optimize all callers to avoid reconstructing objects with the same
1034 * information over and over again - in the typical case each VM referring to
1035 * a particular host drive has its own instance.
1036 *
1037 * @param aVirtualBox VirtualBox object.
1038 * @param aDeviceType Device type of the medium.
1039 * @param aLocation Location of the host drive.
1040 * @param aDescription Comment for this host drive.
1041 *
1042 * @note Locks VirtualBox lock for writing.
1043 */
1044HRESULT Medium::init(VirtualBox *aVirtualBox,
1045 DeviceType_T aDeviceType,
1046 CBSTR aLocation,
1047 CBSTR aDescription)
1048{
1049 ComAssertRet(aDeviceType == DeviceType_DVD || aDeviceType == DeviceType_Floppy, E_INVALIDARG);
1050 ComAssertRet(aLocation, E_INVALIDARG);
1051
1052 /* Enclose the state transition NotReady->InInit->Ready */
1053 AutoInitSpan autoInitSpan(this);
1054 AssertReturn(autoInitSpan.isOk(), E_FAIL);
1055
1056 /* share VirtualBox weakly (parent remains NULL so far) */
1057 unconst(m->pVirtualBox) = aVirtualBox;
1058
1059 /* fake up a UUID which is unique, but also reproducible */
1060 RTUUID uuid;
1061 RTUuidClear(&uuid);
1062 if (aDeviceType == DeviceType_DVD)
1063 memcpy(&uuid.au8[0], "DVD", 3);
1064 else
1065 memcpy(&uuid.au8[0], "FD", 2);
1066 /* use device name, adjusted to the end of uuid, shortened if necessary */
1067 Utf8Str loc(aLocation);
1068 size_t cbLocation = strlen(loc.raw());
1069 if (cbLocation > 12)
1070 memcpy(&uuid.au8[4], loc.raw() + (cbLocation - 12), 12);
1071 else
1072 memcpy(&uuid.au8[4 + 12 - cbLocation], loc.raw(), cbLocation);
1073 unconst(m->id) = uuid;
1074
1075 m->type = MediumType_Writethrough;
1076 m->devType = aDeviceType;
1077 m->state = MediumState_Created;
1078 m->hostDrive = true;
1079 HRESULT rc = setFormat(Bstr("RAW"));
1080 if (FAILED(rc)) return rc;
1081 rc = setLocation(aLocation);
1082 if (FAILED(rc)) return rc;
1083 m->strDescription = aDescription;
1084
1085/// @todo generate uuid (similarly to host network interface uuid) from location and device type
1086
1087 autoInitSpan.setSucceeded();
1088 return S_OK;
1089}
1090
1091/**
1092 * Uninitializes the instance.
1093 *
1094 * Called either from FinalRelease() or by the parent when it gets destroyed.
1095 *
1096 * @note All children of this hard disk get uninitialized by calling their
1097 * uninit() methods.
1098 *
1099 * @note Caller must hold the tree lock of the medium tree this medium is on.
1100 */
1101void Medium::uninit()
1102{
1103 /* Enclose the state transition Ready->InUninit->NotReady */
1104 AutoUninitSpan autoUninitSpan(this);
1105 if (autoUninitSpan.uninitDone())
1106 return;
1107
1108 if (!m->formatObj.isNull())
1109 {
1110 /* remove the caller reference we added in setFormat() */
1111 m->formatObj->releaseCaller();
1112 m->formatObj.setNull();
1113 }
1114
1115 if (m->state == MediumState_Deleting)
1116 {
1117 /* we are being uninitialized after've been deleted by merge.
1118 * Reparenting has already been done so don't touch it here (we are
1119 * now orphans and removeDependentChild() will assert) */
1120 Assert(m->pParent.isNull());
1121 }
1122 else
1123 {
1124 MediaList::iterator it;
1125 for (it = m->llChildren.begin();
1126 it != m->llChildren.end();
1127 ++it)
1128 {
1129 Medium *pChild = *it;
1130 pChild->m->pParent.setNull();
1131 pChild->uninit();
1132 }
1133 m->llChildren.clear(); // this unsets all the ComPtrs and probably calls delete
1134
1135 if (m->pParent)
1136 {
1137 // this is a differencing disk: then remove it from the parent's children list
1138 deparent();
1139 }
1140 }
1141
1142 RTSemEventMultiSignal(m->queryInfoSem);
1143 RTSemEventMultiDestroy(m->queryInfoSem);
1144 m->queryInfoSem = NIL_RTSEMEVENTMULTI;
1145
1146 unconst(m->pVirtualBox) = NULL;
1147}
1148
1149/**
1150 * Internal helper that removes "this" from the list of children of its
1151 * parent. Used in uninit() and other places when reparenting is necessary.
1152 *
1153 * The caller must hold the hard disk tree lock!
1154 */
1155void Medium::deparent()
1156{
1157 MediaList &llParent = m->pParent->m->llChildren;
1158 for (MediaList::iterator it = llParent.begin();
1159 it != llParent.end();
1160 ++it)
1161 {
1162 Medium *pParentsChild = *it;
1163 if (this == pParentsChild)
1164 {
1165 llParent.erase(it);
1166 break;
1167 }
1168 }
1169 m->pParent.setNull();
1170}
1171
1172/**
1173 * Internal helper that removes "this" from the list of children of its
1174 * parent. Used in uninit() and other places when reparenting is necessary.
1175 *
1176 * The caller must hold the hard disk tree lock!
1177 */
1178void Medium::setParent(const ComObjPtr<Medium> &pParent)
1179{
1180 m->pParent = pParent;
1181 if (pParent)
1182 pParent->m->llChildren.push_back(this);
1183}
1184
1185
1186////////////////////////////////////////////////////////////////////////////////
1187//
1188// IMedium public methods
1189//
1190////////////////////////////////////////////////////////////////////////////////
1191
1192STDMETHODIMP Medium::COMGETTER(Id)(BSTR *aId)
1193{
1194 CheckComArgOutPointerValid(aId);
1195
1196 AutoCaller autoCaller(this);
1197 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1198
1199 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1200
1201 m->id.toUtf16().cloneTo(aId);
1202
1203 return S_OK;
1204}
1205
1206STDMETHODIMP Medium::COMGETTER(Description)(BSTR *aDescription)
1207{
1208 CheckComArgOutPointerValid(aDescription);
1209
1210 AutoCaller autoCaller(this);
1211 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1212
1213 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1214
1215 m->strDescription.cloneTo(aDescription);
1216
1217 return S_OK;
1218}
1219
1220STDMETHODIMP Medium::COMSETTER(Description)(IN_BSTR aDescription)
1221{
1222 AutoCaller autoCaller(this);
1223 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1224
1225// AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1226
1227 /// @todo update m->description and save the global registry (and local
1228 /// registries of portable VMs referring to this medium), this will also
1229 /// require to add the mRegistered flag to data
1230
1231 NOREF(aDescription);
1232
1233 ReturnComNotImplemented();
1234}
1235
1236STDMETHODIMP Medium::COMGETTER(State)(MediumState_T *aState)
1237{
1238 CheckComArgOutPointerValid(aState);
1239
1240 AutoCaller autoCaller(this);
1241 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1242
1243 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1244 *aState = m->state;
1245
1246 return S_OK;
1247}
1248
1249
1250STDMETHODIMP Medium::COMGETTER(Location)(BSTR *aLocation)
1251{
1252 CheckComArgOutPointerValid(aLocation);
1253
1254 AutoCaller autoCaller(this);
1255 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1256
1257 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1258
1259 m->strLocationFull.cloneTo(aLocation);
1260
1261 return S_OK;
1262}
1263
1264STDMETHODIMP Medium::COMSETTER(Location)(IN_BSTR aLocation)
1265{
1266 CheckComArgStrNotEmptyOrNull(aLocation);
1267
1268 AutoCaller autoCaller(this);
1269 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1270
1271 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1272
1273 /// @todo NEWMEDIA for file names, add the default extension if no extension
1274 /// is present (using the information from the VD backend which also implies
1275 /// that one more parameter should be passed to setLocation() requesting
1276 /// that functionality since it is only allwed when called from this method
1277
1278 /// @todo NEWMEDIA rename the file and set m->location on success, then save
1279 /// the global registry (and local registries of portable VMs referring to
1280 /// this medium), this will also require to add the mRegistered flag to data
1281
1282 ReturnComNotImplemented();
1283}
1284
1285STDMETHODIMP Medium::COMGETTER(Name)(BSTR *aName)
1286{
1287 CheckComArgOutPointerValid(aName);
1288
1289 AutoCaller autoCaller(this);
1290 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1291
1292 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1293
1294 getName().cloneTo(aName);
1295
1296 return S_OK;
1297}
1298
1299STDMETHODIMP Medium::COMGETTER(DeviceType)(DeviceType_T *aDeviceType)
1300{
1301 CheckComArgOutPointerValid(aDeviceType);
1302
1303 AutoCaller autoCaller(this);
1304 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1305
1306 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1307
1308 *aDeviceType = m->devType;
1309
1310 return S_OK;
1311}
1312
1313STDMETHODIMP Medium::COMGETTER(HostDrive)(BOOL *aHostDrive)
1314{
1315 CheckComArgOutPointerValid(aHostDrive);
1316
1317 AutoCaller autoCaller(this);
1318 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1319
1320 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1321
1322 *aHostDrive = m->hostDrive;
1323
1324 return S_OK;
1325}
1326
1327STDMETHODIMP Medium::COMGETTER(Size)(ULONG64 *aSize)
1328{
1329 CheckComArgOutPointerValid(aSize);
1330
1331 AutoCaller autoCaller(this);
1332 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1333
1334 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1335
1336 *aSize = m->size;
1337
1338 return S_OK;
1339}
1340
1341STDMETHODIMP Medium::COMGETTER(Format)(BSTR *aFormat)
1342{
1343 CheckComArgOutPointerValid(aFormat);
1344
1345 AutoCaller autoCaller(this);
1346 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1347
1348 /* no need to lock, m->strFormat is const */
1349 m->strFormat.cloneTo(aFormat);
1350
1351 return S_OK;
1352}
1353
1354STDMETHODIMP Medium::COMGETTER(MediumFormat)(IMediumFormat **aMediumFormat)
1355{
1356 CheckComArgOutPointerValid(aMediumFormat);
1357
1358 AutoCaller autoCaller(this);
1359 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1360
1361 /* no need to lock, m->formatObj is const */
1362 m->formatObj.queryInterfaceTo(aMediumFormat);
1363
1364 return S_OK;
1365}
1366
1367STDMETHODIMP Medium::COMGETTER(Type)(MediumType_T *aType)
1368{
1369 CheckComArgOutPointerValid(aType);
1370
1371 AutoCaller autoCaller(this);
1372 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1373
1374 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1375
1376 *aType = m->type;
1377
1378 return S_OK;
1379}
1380
1381STDMETHODIMP Medium::COMSETTER(Type)(MediumType_T aType)
1382{
1383 AutoCaller autoCaller(this);
1384 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1385
1386 // we access mParent and members
1387 AutoMultiWriteLock2 mlock(&m->pVirtualBox->getMediaTreeLockHandle(), this->lockHandle() COMMA_LOCKVAL_SRC_POS);
1388
1389 switch (m->state)
1390 {
1391 case MediumState_Created:
1392 case MediumState_Inaccessible:
1393 break;
1394 default:
1395 return setStateError();
1396 }
1397
1398 /** @todo implement this case later */
1399 CheckComArgExpr(aType, aType != MediumType_Shareable);
1400
1401 if (m->type == aType)
1402 {
1403 /* Nothing to do */
1404 return S_OK;
1405 }
1406
1407 /* cannot change the type of a differencing hard disk */
1408 if (m->pParent)
1409 return setError(E_FAIL,
1410 tr("Cannot change the type of hard disk '%s' because it is a differencing hard disk"),
1411 m->strLocationFull.raw());
1412
1413 /* cannot change the type of a hard disk being in use by more than one VM */
1414 if (m->backRefs.size() > 1)
1415 return setError(E_FAIL,
1416 tr("Cannot change the type of hard disk '%s' because it is attached to %d virtual machines"),
1417 m->strLocationFull.raw(), m->backRefs.size());
1418
1419 switch (aType)
1420 {
1421 case MediumType_Normal:
1422 case MediumType_Immutable:
1423 {
1424 /* normal can be easily converted to immutable and vice versa even
1425 * if they have children as long as they are not attached to any
1426 * machine themselves */
1427 break;
1428 }
1429 case MediumType_Writethrough:
1430 case MediumType_Shareable:
1431 {
1432 /* cannot change to writethrough or shareable if there are children */
1433 if (getChildren().size() != 0)
1434 return setError(E_FAIL,
1435 tr("Cannot change type for hard disk '%s' since it has %d child hard disk(s)"),
1436 m->strLocationFull.raw(), getChildren().size());
1437 break;
1438 }
1439 default:
1440 AssertFailedReturn(E_FAIL);
1441 }
1442
1443 m->type = aType;
1444
1445 // save the global settings; for that we should hold only the VirtualBox lock
1446 mlock.release();
1447 AutoWriteLock alock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
1448 HRESULT rc = m->pVirtualBox->saveSettings();
1449
1450 return rc;
1451}
1452
1453STDMETHODIMP Medium::COMGETTER(Parent)(IMedium **aParent)
1454{
1455 CheckComArgOutPointerValid(aParent);
1456
1457 AutoCaller autoCaller(this);
1458 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1459
1460 /* we access mParent */
1461 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1462
1463 m->pParent.queryInterfaceTo(aParent);
1464
1465 return S_OK;
1466}
1467
1468STDMETHODIMP Medium::COMGETTER(Children)(ComSafeArrayOut(IMedium *, aChildren))
1469{
1470 CheckComArgOutSafeArrayPointerValid(aChildren);
1471
1472 AutoCaller autoCaller(this);
1473 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1474
1475 /* we access children */
1476 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1477
1478 SafeIfaceArray<IMedium> children(this->getChildren());
1479 children.detachTo(ComSafeArrayOutArg(aChildren));
1480
1481 return S_OK;
1482}
1483
1484STDMETHODIMP Medium::COMGETTER(Base)(IMedium **aBase)
1485{
1486 CheckComArgOutPointerValid(aBase);
1487
1488 /* base() will do callers/locking */
1489
1490 getBase().queryInterfaceTo(aBase);
1491
1492 return S_OK;
1493}
1494
1495STDMETHODIMP Medium::COMGETTER(ReadOnly)(BOOL *aReadOnly)
1496{
1497 CheckComArgOutPointerValid(aReadOnly);
1498
1499 AutoCaller autoCaller(this);
1500 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1501
1502 /* isRadOnly() will do locking */
1503
1504 *aReadOnly = isReadOnly();
1505
1506 return S_OK;
1507}
1508
1509STDMETHODIMP Medium::COMGETTER(LogicalSize)(ULONG64 *aLogicalSize)
1510{
1511 CheckComArgOutPointerValid(aLogicalSize);
1512
1513 {
1514 AutoCaller autoCaller(this);
1515 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1516
1517 /* we access mParent */
1518 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1519
1520 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1521
1522 if (m->pParent.isNull())
1523 {
1524 *aLogicalSize = m->logicalSize;
1525
1526 return S_OK;
1527 }
1528 }
1529
1530 /* We assume that some backend may decide to return a meaningless value in
1531 * response to VDGetSize() for differencing hard disks and therefore
1532 * always ask the base hard disk ourselves. */
1533
1534 /* base() will do callers/locking */
1535
1536 return getBase()->COMGETTER(LogicalSize)(aLogicalSize);
1537}
1538
1539STDMETHODIMP Medium::COMGETTER(AutoReset)(BOOL *aAutoReset)
1540{
1541 CheckComArgOutPointerValid(aAutoReset);
1542
1543 AutoCaller autoCaller(this);
1544 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1545
1546 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1547
1548 if (m->pParent)
1549 *aAutoReset = FALSE;
1550 else
1551 *aAutoReset = m->autoReset;
1552
1553 return S_OK;
1554}
1555
1556STDMETHODIMP Medium::COMSETTER(AutoReset)(BOOL aAutoReset)
1557{
1558 AutoCaller autoCaller(this);
1559 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1560
1561 AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
1562
1563 if (m->pParent.isNull())
1564 return setError(VBOX_E_NOT_SUPPORTED,
1565 tr("Hard disk '%s' is not differencing"),
1566 m->strLocationFull.raw());
1567
1568 if (m->autoReset != !!aAutoReset)
1569 {
1570 m->autoReset = !!aAutoReset;
1571
1572 // save the global settings; for that we should hold only the VirtualBox lock
1573 mlock.release();
1574 AutoWriteLock alock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
1575 return m->pVirtualBox->saveSettings();
1576 }
1577
1578 return S_OK;
1579}
1580STDMETHODIMP Medium::COMGETTER(LastAccessError)(BSTR *aLastAccessError)
1581{
1582 CheckComArgOutPointerValid(aLastAccessError);
1583
1584 AutoCaller autoCaller(this);
1585 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1586
1587 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1588
1589 m->strLastAccessError.cloneTo(aLastAccessError);
1590
1591 return S_OK;
1592}
1593
1594STDMETHODIMP Medium::COMGETTER(MachineIds)(ComSafeArrayOut(BSTR,aMachineIds))
1595{
1596 CheckComArgOutSafeArrayPointerValid(aMachineIds);
1597
1598 AutoCaller autoCaller(this);
1599 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1600
1601 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1602
1603 com::SafeArray<BSTR> machineIds;
1604
1605 if (m->backRefs.size() != 0)
1606 {
1607 machineIds.reset(m->backRefs.size());
1608
1609 size_t i = 0;
1610 for (BackRefList::const_iterator it = m->backRefs.begin();
1611 it != m->backRefs.end(); ++it, ++i)
1612 {
1613 it->machineId.toUtf16().detachTo(&machineIds[i]);
1614 }
1615 }
1616
1617 machineIds.detachTo(ComSafeArrayOutArg(aMachineIds));
1618
1619 return S_OK;
1620}
1621
1622STDMETHODIMP Medium::RefreshState(MediumState_T *aState)
1623{
1624 CheckComArgOutPointerValid(aState);
1625
1626 AutoCaller autoCaller(this);
1627 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1628
1629 /* queryInfo() locks this for writing. */
1630 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1631
1632 HRESULT rc = S_OK;
1633
1634 switch (m->state)
1635 {
1636 case MediumState_Created:
1637 case MediumState_Inaccessible:
1638 case MediumState_LockedRead:
1639 {
1640 rc = queryInfo();
1641 break;
1642 }
1643 default:
1644 break;
1645 }
1646
1647 *aState = m->state;
1648
1649 return rc;
1650}
1651
1652STDMETHODIMP Medium::GetSnapshotIds(IN_BSTR aMachineId,
1653 ComSafeArrayOut(BSTR, aSnapshotIds))
1654{
1655 CheckComArgExpr(aMachineId, Guid(aMachineId).isEmpty() == false);
1656 CheckComArgOutSafeArrayPointerValid(aSnapshotIds);
1657
1658 AutoCaller autoCaller(this);
1659 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1660
1661 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1662
1663 com::SafeArray<BSTR> snapshotIds;
1664
1665 Guid id(aMachineId);
1666 for (BackRefList::const_iterator it = m->backRefs.begin();
1667 it != m->backRefs.end(); ++it)
1668 {
1669 if (it->machineId == id)
1670 {
1671 size_t size = it->llSnapshotIds.size();
1672
1673 /* if the medium is attached to the machine in the current state, we
1674 * return its ID as the first element of the array */
1675 if (it->fInCurState)
1676 ++size;
1677
1678 if (size > 0)
1679 {
1680 snapshotIds.reset(size);
1681
1682 size_t j = 0;
1683 if (it->fInCurState)
1684 it->machineId.toUtf16().detachTo(&snapshotIds[j++]);
1685
1686 for (BackRef::GuidList::const_iterator jt = it->llSnapshotIds.begin();
1687 jt != it->llSnapshotIds.end();
1688 ++jt, ++j)
1689 {
1690 (*jt).toUtf16().detachTo(&snapshotIds[j]);
1691 }
1692 }
1693
1694 break;
1695 }
1696 }
1697
1698 snapshotIds.detachTo(ComSafeArrayOutArg(aSnapshotIds));
1699
1700 return S_OK;
1701}
1702
1703/**
1704 * @note @a aState may be NULL if the state value is not needed (only for
1705 * in-process calls).
1706 */
1707STDMETHODIMP Medium::LockRead(MediumState_T *aState)
1708{
1709 AutoCaller autoCaller(this);
1710 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1711
1712 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1713
1714 /* Wait for a concurrently running queryInfo() to complete */
1715 while (m->queryInfoRunning)
1716 {
1717 alock.leave();
1718 RTSemEventMultiWait(m->queryInfoSem, RT_INDEFINITE_WAIT);
1719 alock.enter();
1720 }
1721
1722 /* return the current state before */
1723 if (aState)
1724 *aState = m->state;
1725
1726 HRESULT rc = S_OK;
1727
1728 switch (m->state)
1729 {
1730 case MediumState_Created:
1731 case MediumState_Inaccessible:
1732 case MediumState_LockedRead:
1733 {
1734 ++m->readers;
1735
1736 ComAssertMsgBreak(m->readers != 0, ("Counter overflow"), rc = E_FAIL);
1737
1738 /* Remember pre-lock state */
1739 if (m->state != MediumState_LockedRead)
1740 m->preLockState = m->state;
1741
1742 LogFlowThisFunc(("Okay - prev state=%d readers=%d\n", m->state, m->readers));
1743 m->state = MediumState_LockedRead;
1744
1745 break;
1746 }
1747 default:
1748 {
1749 LogFlowThisFunc(("Failing - state=%d\n", m->state));
1750 rc = setStateError();
1751 break;
1752 }
1753 }
1754
1755 return rc;
1756}
1757
1758/**
1759 * @note @a aState may be NULL if the state value is not needed (only for
1760 * in-process calls).
1761 */
1762STDMETHODIMP Medium::UnlockRead(MediumState_T *aState)
1763{
1764 AutoCaller autoCaller(this);
1765 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1766
1767 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1768
1769 HRESULT rc = S_OK;
1770
1771 switch (m->state)
1772 {
1773 case MediumState_LockedRead:
1774 {
1775 Assert(m->readers != 0);
1776 --m->readers;
1777
1778 /* Reset the state after the last reader */
1779 if (m->readers == 0)
1780 {
1781 m->state = m->preLockState;
1782 /* There are cases where we inject the deleting state into
1783 * a medium locked for reading. Make sure #unmarkForDeletion()
1784 * gets the right state afterwards. */
1785 if (m->preLockState == MediumState_Deleting)
1786 m->preLockState = MediumState_Created;
1787 }
1788
1789 LogFlowThisFunc(("new state=%d\n", m->state));
1790 break;
1791 }
1792 default:
1793 {
1794 LogFlowThisFunc(("Failing - state=%d\n", m->state));
1795 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
1796 tr("Medium '%s' is not locked for reading"),
1797 m->strLocationFull.raw());
1798 break;
1799 }
1800 }
1801
1802 /* return the current state after */
1803 if (aState)
1804 *aState = m->state;
1805
1806 return rc;
1807}
1808
1809/**
1810 * @note @a aState may be NULL if the state value is not needed (only for
1811 * in-process calls).
1812 */
1813STDMETHODIMP Medium::LockWrite(MediumState_T *aState)
1814{
1815 AutoCaller autoCaller(this);
1816 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1817
1818 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1819
1820 /* Wait for a concurrently running queryInfo() to complete */
1821 while (m->queryInfoRunning)
1822 {
1823 alock.leave();
1824 RTSemEventMultiWait(m->queryInfoSem, RT_INDEFINITE_WAIT);
1825 alock.enter();
1826 }
1827
1828 /* return the current state before */
1829 if (aState)
1830 *aState = m->state;
1831
1832 HRESULT rc = S_OK;
1833
1834 switch (m->state)
1835 {
1836 case MediumState_Created:
1837 case MediumState_Inaccessible:
1838 {
1839 m->preLockState = m->state;
1840
1841 LogFlowThisFunc(("Okay - prev state=%d locationFull=%s\n", m->state, getLocationFull().c_str()));
1842 m->state = MediumState_LockedWrite;
1843 break;
1844 }
1845 default:
1846 {
1847 LogFlowThisFunc(("Failing - state=%d locationFull=%s\n", m->state, getLocationFull().c_str()));
1848 rc = setStateError();
1849 break;
1850 }
1851 }
1852
1853 return rc;
1854}
1855
1856/**
1857 * @note @a aState may be NULL if the state value is not needed (only for
1858 * in-process calls).
1859 */
1860STDMETHODIMP Medium::UnlockWrite(MediumState_T *aState)
1861{
1862 AutoCaller autoCaller(this);
1863 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1864
1865 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1866
1867 HRESULT rc = S_OK;
1868
1869 switch (m->state)
1870 {
1871 case MediumState_LockedWrite:
1872 {
1873 m->state = m->preLockState;
1874 /* There are cases where we inject the deleting state into
1875 * a medium locked for writing. Make sure #unmarkForDeletion()
1876 * gets the right state afterwards. */
1877 if (m->preLockState == MediumState_Deleting)
1878 m->preLockState = MediumState_Created;
1879 LogFlowThisFunc(("new state=%d locationFull=%s\n", m->state, getLocationFull().c_str()));
1880 break;
1881 }
1882 default:
1883 {
1884 LogFlowThisFunc(("Failing - state=%d locationFull=%s\n", m->state, getLocationFull().c_str()));
1885 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
1886 tr("Medium '%s' is not locked for writing"),
1887 m->strLocationFull.raw());
1888 break;
1889 }
1890 }
1891
1892 /* return the current state after */
1893 if (aState)
1894 *aState = m->state;
1895
1896 return rc;
1897}
1898
1899STDMETHODIMP Medium::Close()
1900{
1901 AutoCaller autoCaller(this);
1902 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1903
1904 // we're accessing parent/child and backrefs, so lock the tree first, then ourselves
1905 AutoMultiWriteLock2 multilock(&m->pVirtualBox->getMediaTreeLockHandle(),
1906 this->lockHandle()
1907 COMMA_LOCKVAL_SRC_POS);
1908
1909 bool wasCreated = true;
1910 bool fNeedsSaveSettings = false;
1911
1912 switch (m->state)
1913 {
1914 case MediumState_NotCreated:
1915 wasCreated = false;
1916 break;
1917 case MediumState_Created:
1918 case MediumState_Inaccessible:
1919 break;
1920 default:
1921 return setStateError();
1922 }
1923
1924 if (m->backRefs.size() != 0)
1925 return setError(VBOX_E_OBJECT_IN_USE,
1926 tr("Medium '%s' is attached to %d virtual machines"),
1927 m->strLocationFull.raw(), m->backRefs.size());
1928
1929 /* perform extra media-dependent close checks */
1930 HRESULT rc = canClose();
1931 if (FAILED(rc)) return rc;
1932
1933 if (wasCreated)
1934 {
1935 /* remove from the list of known media before performing actual
1936 * uninitialization (to keep the media registry consistent on
1937 * failure to do so) */
1938 rc = unregisterWithVirtualBox(&fNeedsSaveSettings);
1939 if (FAILED(rc)) return rc;
1940 }
1941
1942 // make a copy of VirtualBox pointer which gets nulled by uninit()
1943 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
1944
1945 // leave the AutoCaller, as otherwise uninit() will simply hang
1946 autoCaller.release();
1947
1948 /* Keep the locks held until after uninit, as otherwise the consistency
1949 * of the medium tree cannot be guaranteed. */
1950 uninit();
1951
1952 multilock.release();
1953
1954 if (fNeedsSaveSettings)
1955 {
1956 AutoWriteLock vboxlock(pVirtualBox COMMA_LOCKVAL_SRC_POS);
1957 pVirtualBox->saveSettings();
1958 }
1959
1960 return S_OK;
1961}
1962
1963STDMETHODIMP Medium::GetProperty(IN_BSTR aName, BSTR *aValue)
1964{
1965 CheckComArgStrNotEmptyOrNull(aName);
1966 CheckComArgOutPointerValid(aValue);
1967
1968 AutoCaller autoCaller(this);
1969 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1970
1971 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1972
1973 Data::PropertyMap::const_iterator it = m->properties.find(Bstr(aName));
1974 if (it == m->properties.end())
1975 return setError(VBOX_E_OBJECT_NOT_FOUND,
1976 tr("Property '%ls' does not exist"), aName);
1977
1978 it->second.cloneTo(aValue);
1979
1980 return S_OK;
1981}
1982
1983STDMETHODIMP Medium::SetProperty(IN_BSTR aName, IN_BSTR aValue)
1984{
1985 CheckComArgStrNotEmptyOrNull(aName);
1986
1987 AutoCaller autoCaller(this);
1988 if (FAILED(autoCaller.rc())) return autoCaller.rc();
1989
1990 AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
1991
1992 switch (m->state)
1993 {
1994 case MediumState_Created:
1995 case MediumState_Inaccessible:
1996 break;
1997 default:
1998 return setStateError();
1999 }
2000
2001 Data::PropertyMap::iterator it = m->properties.find(Bstr(aName));
2002 if (it == m->properties.end())
2003 return setError(VBOX_E_OBJECT_NOT_FOUND,
2004 tr("Property '%ls' does not exist"),
2005 aName);
2006
2007 if (aValue && !*aValue)
2008 it->second = (const char *)NULL;
2009 else
2010 it->second = aValue;
2011
2012 // save the global settings; for that we should hold only the VirtualBox lock
2013 mlock.release();
2014 AutoWriteLock alock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
2015 HRESULT rc = m->pVirtualBox->saveSettings();
2016
2017 return rc;
2018}
2019
2020STDMETHODIMP Medium::GetProperties(IN_BSTR aNames,
2021 ComSafeArrayOut(BSTR, aReturnNames),
2022 ComSafeArrayOut(BSTR, aReturnValues))
2023{
2024 CheckComArgOutSafeArrayPointerValid(aReturnNames);
2025 CheckComArgOutSafeArrayPointerValid(aReturnValues);
2026
2027 AutoCaller autoCaller(this);
2028 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2029
2030 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2031
2032 /// @todo make use of aNames according to the documentation
2033 NOREF(aNames);
2034
2035 com::SafeArray<BSTR> names(m->properties.size());
2036 com::SafeArray<BSTR> values(m->properties.size());
2037 size_t i = 0;
2038
2039 for (Data::PropertyMap::const_iterator it = m->properties.begin();
2040 it != m->properties.end();
2041 ++it)
2042 {
2043 it->first.cloneTo(&names[i]);
2044 it->second.cloneTo(&values[i]);
2045 ++i;
2046 }
2047
2048 names.detachTo(ComSafeArrayOutArg(aReturnNames));
2049 values.detachTo(ComSafeArrayOutArg(aReturnValues));
2050
2051 return S_OK;
2052}
2053
2054STDMETHODIMP Medium::SetProperties(ComSafeArrayIn(IN_BSTR, aNames),
2055 ComSafeArrayIn(IN_BSTR, aValues))
2056{
2057 CheckComArgSafeArrayNotNull(aNames);
2058 CheckComArgSafeArrayNotNull(aValues);
2059
2060 AutoCaller autoCaller(this);
2061 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2062
2063 AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
2064
2065 com::SafeArray<IN_BSTR> names(ComSafeArrayInArg(aNames));
2066 com::SafeArray<IN_BSTR> values(ComSafeArrayInArg(aValues));
2067
2068 /* first pass: validate names */
2069 for (size_t i = 0;
2070 i < names.size();
2071 ++i)
2072 {
2073 if (m->properties.find(Bstr(names[i])) == m->properties.end())
2074 return setError(VBOX_E_OBJECT_NOT_FOUND,
2075 tr("Property '%ls' does not exist"), names[i]);
2076 }
2077
2078 /* second pass: assign */
2079 for (size_t i = 0;
2080 i < names.size();
2081 ++i)
2082 {
2083 Data::PropertyMap::iterator it = m->properties.find(Bstr(names[i]));
2084 AssertReturn(it != m->properties.end(), E_FAIL);
2085
2086 if (values[i] && !*values[i])
2087 it->second = (const char *)NULL;
2088 else
2089 it->second = values[i];
2090 }
2091
2092 mlock.release();
2093
2094 // saveSettings needs vbox lock
2095 AutoWriteLock alock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
2096 HRESULT rc = m->pVirtualBox->saveSettings();
2097
2098 return rc;
2099}
2100
2101STDMETHODIMP Medium::CreateBaseStorage(ULONG64 aLogicalSize,
2102 MediumVariant_T aVariant,
2103 IProgress **aProgress)
2104{
2105 CheckComArgOutPointerValid(aProgress);
2106
2107 AutoCaller autoCaller(this);
2108 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2109
2110 HRESULT rc = S_OK;
2111 ComObjPtr <Progress> pProgress;
2112 Medium::Task *pTask = NULL;
2113
2114 try
2115 {
2116 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2117
2118 aVariant = (MediumVariant_T)((unsigned)aVariant & (unsigned)~MediumVariant_Diff);
2119 if ( !(aVariant & MediumVariant_Fixed)
2120 && !(m->formatObj->capabilities() & MediumFormatCapabilities_CreateDynamic))
2121 throw setError(VBOX_E_NOT_SUPPORTED,
2122 tr("Hard disk format '%s' does not support dynamic storage creation"),
2123 m->strFormat.raw());
2124 if ( (aVariant & MediumVariant_Fixed)
2125 && !(m->formatObj->capabilities() & MediumFormatCapabilities_CreateDynamic))
2126 throw setError(VBOX_E_NOT_SUPPORTED,
2127 tr("Hard disk format '%s' does not support fixed storage creation"),
2128 m->strFormat.raw());
2129
2130 if (m->state != MediumState_NotCreated)
2131 throw setStateError();
2132
2133 pProgress.createObject();
2134 rc = pProgress->init(m->pVirtualBox,
2135 static_cast<IMedium*>(this),
2136 (aVariant & MediumVariant_Fixed)
2137 ? BstrFmt(tr("Creating fixed hard disk storage unit '%s'"), m->strLocationFull.raw())
2138 : BstrFmt(tr("Creating dynamic hard disk storage unit '%s'"), m->strLocationFull.raw()),
2139 TRUE /* aCancelable */);
2140 if (FAILED(rc))
2141 throw rc;
2142
2143 /* setup task object to carry out the operation asynchronously */
2144 pTask = new Medium::CreateBaseTask(this, pProgress, aLogicalSize,
2145 aVariant);
2146 rc = pTask->rc();
2147 AssertComRC(rc);
2148 if (FAILED(rc))
2149 throw rc;
2150
2151 m->state = MediumState_Creating;
2152 }
2153 catch (HRESULT aRC) { rc = aRC; }
2154
2155 if (SUCCEEDED(rc))
2156 {
2157 rc = startThread(pTask);
2158
2159 if (SUCCEEDED(rc))
2160 pProgress.queryInterfaceTo(aProgress);
2161 }
2162 else if (pTask != NULL)
2163 delete pTask;
2164
2165 return rc;
2166}
2167
2168STDMETHODIMP Medium::DeleteStorage(IProgress **aProgress)
2169{
2170 CheckComArgOutPointerValid(aProgress);
2171
2172 AutoCaller autoCaller(this);
2173 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2174
2175 bool fNeedsSaveSettings = false;
2176 ComObjPtr<Progress> pProgress;
2177
2178 HRESULT rc = deleteStorage(&pProgress,
2179 false /* aWait */,
2180 &fNeedsSaveSettings);
2181 if (fNeedsSaveSettings)
2182 {
2183 AutoWriteLock vboxlock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
2184 m->pVirtualBox->saveSettings();
2185 }
2186
2187 if (SUCCEEDED(rc))
2188 pProgress.queryInterfaceTo(aProgress);
2189
2190 return rc;
2191}
2192
2193STDMETHODIMP Medium::CreateDiffStorage(IMedium *aTarget,
2194 MediumVariant_T aVariant,
2195 IProgress **aProgress)
2196{
2197 CheckComArgNotNull(aTarget);
2198 CheckComArgOutPointerValid(aProgress);
2199
2200 AutoCaller autoCaller(this);
2201 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2202
2203 ComObjPtr<Medium> diff = static_cast<Medium*>(aTarget);
2204
2205 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2206
2207 if (m->type == MediumType_Writethrough)
2208 return setError(E_FAIL,
2209 tr("Hard disk '%s' is Writethrough"),
2210 m->strLocationFull.raw());
2211
2212 /* Apply the normal locking logic to the entire chain. */
2213 MediumLockList *pMediumLockList(new MediumLockList());
2214 HRESULT rc = diff->createMediumLockList(true /* fFailIfInaccessible */,
2215 true /* fMediumLockWrite */,
2216 this,
2217 *pMediumLockList);
2218 if (FAILED(rc))
2219 {
2220 delete pMediumLockList;
2221 return rc;
2222 }
2223
2224 ComObjPtr <Progress> pProgress;
2225
2226 rc = createDiffStorage(diff, aVariant, pMediumLockList, &pProgress,
2227 false /* aWait */, NULL /* pfNeedsSaveSettings*/);
2228 if (FAILED(rc))
2229 delete pMediumLockList;
2230 else
2231 pProgress.queryInterfaceTo(aProgress);
2232
2233 return rc;
2234}
2235
2236STDMETHODIMP Medium::MergeTo(IMedium *aTarget, IProgress **aProgress)
2237{
2238 CheckComArgNotNull(aTarget);
2239 CheckComArgOutPointerValid(aProgress);
2240 ComAssertRet(aTarget != this, E_INVALIDARG);
2241
2242 AutoCaller autoCaller(this);
2243 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2244
2245 ComObjPtr<Medium> pTarget = static_cast<Medium*>(aTarget);
2246
2247 bool fMergeForward = false;
2248 ComObjPtr<Medium> pParentForTarget;
2249 MediaList childrenToReparent;
2250 MediumLockList *pMediumLockList = NULL;
2251
2252 HRESULT rc = S_OK;
2253
2254 rc = prepareMergeTo(pTarget, NULL, NULL, true, fMergeForward,
2255 pParentForTarget, childrenToReparent, pMediumLockList);
2256 if (FAILED(rc)) return rc;
2257
2258 ComObjPtr <Progress> pProgress;
2259
2260 rc = mergeTo(pTarget, fMergeForward, pParentForTarget, childrenToReparent,
2261 pMediumLockList, &pProgress, false /* aWait */,
2262 NULL /* pfNeedsSaveSettings */);
2263 if (FAILED(rc))
2264 cancelMergeTo(childrenToReparent, pMediumLockList);
2265 else
2266 pProgress.queryInterfaceTo(aProgress);
2267
2268 return rc;
2269}
2270
2271STDMETHODIMP Medium::CloneTo(IMedium *aTarget,
2272 MediumVariant_T aVariant,
2273 IMedium *aParent,
2274 IProgress **aProgress)
2275{
2276 CheckComArgNotNull(aTarget);
2277 CheckComArgOutPointerValid(aProgress);
2278 ComAssertRet(aTarget != this, E_INVALIDARG);
2279
2280 AutoCaller autoCaller(this);
2281 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2282
2283 ComObjPtr<Medium> pTarget = static_cast<Medium*>(aTarget);
2284 ComObjPtr<Medium> pParent;
2285 if (aParent)
2286 pParent = static_cast<Medium*>(aParent);
2287
2288 HRESULT rc = S_OK;
2289 ComObjPtr<Progress> pProgress;
2290 Medium::Task *pTask = NULL;
2291
2292 try
2293 {
2294 // locking: we need the tree lock first because we access parent pointers
2295 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
2296 // and we need to write-lock the images involved
2297 AutoMultiWriteLock3 alock(this, pTarget, pParent COMMA_LOCKVAL_SRC_POS);
2298
2299 if ( pTarget->m->state != MediumState_NotCreated
2300 && pTarget->m->state != MediumState_Created)
2301 throw pTarget->setStateError();
2302
2303 /* Build the source lock list. */
2304 MediumLockList *pSourceMediumLockList(new MediumLockList());
2305 rc = createMediumLockList(true /* fFailIfInaccessible */,
2306 false /* fMediumLockWrite */,
2307 NULL,
2308 *pSourceMediumLockList);
2309 if (FAILED(rc))
2310 {
2311 delete pSourceMediumLockList;
2312 throw rc;
2313 }
2314
2315 /* Build the target lock list (including the to-be parent chain). */
2316 MediumLockList *pTargetMediumLockList(new MediumLockList());
2317 rc = pTarget->createMediumLockList(true /* fFailIfInaccessible */,
2318 true /* fMediumLockWrite */,
2319 pParent,
2320 *pTargetMediumLockList);
2321 if (FAILED(rc))
2322 {
2323 delete pSourceMediumLockList;
2324 delete pTargetMediumLockList;
2325 throw rc;
2326 }
2327
2328 rc = pSourceMediumLockList->Lock();
2329 if (FAILED(rc))
2330 {
2331 delete pSourceMediumLockList;
2332 delete pTargetMediumLockList;
2333 throw setError(rc,
2334 tr("Failed to lock source media '%s'"),
2335 getLocationFull().raw());
2336 }
2337 rc = pTargetMediumLockList->Lock();
2338 if (FAILED(rc))
2339 {
2340 delete pSourceMediumLockList;
2341 delete pTargetMediumLockList;
2342 throw setError(rc,
2343 tr("Failed to lock target media '%s'"),
2344 pTarget->getLocationFull().raw());
2345 }
2346
2347 pProgress.createObject();
2348 rc = pProgress->init(m->pVirtualBox,
2349 static_cast <IMedium *>(this),
2350 BstrFmt(tr("Creating clone hard disk '%s'"), pTarget->m->strLocationFull.raw()),
2351 TRUE /* aCancelable */);
2352 if (FAILED(rc))
2353 {
2354 delete pSourceMediumLockList;
2355 delete pTargetMediumLockList;
2356 throw rc;
2357 }
2358
2359 /* setup task object to carry out the operation asynchronously */
2360 pTask = new Medium::CloneTask(this, pProgress, pTarget, aVariant,
2361 pParent, pSourceMediumLockList,
2362 pTargetMediumLockList);
2363 rc = pTask->rc();
2364 AssertComRC(rc);
2365 if (FAILED(rc))
2366 throw rc;
2367
2368 if (pTarget->m->state == MediumState_NotCreated)
2369 pTarget->m->state = MediumState_Creating;
2370 }
2371 catch (HRESULT aRC) { rc = aRC; }
2372
2373 if (SUCCEEDED(rc))
2374 {
2375 rc = startThread(pTask);
2376
2377 if (SUCCEEDED(rc))
2378 pProgress.queryInterfaceTo(aProgress);
2379 }
2380 else if (pTask != NULL)
2381 delete pTask;
2382
2383 return rc;
2384}
2385
2386STDMETHODIMP Medium::Compact(IProgress **aProgress)
2387{
2388 CheckComArgOutPointerValid(aProgress);
2389
2390 AutoCaller autoCaller(this);
2391 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2392
2393 HRESULT rc = S_OK;
2394 ComObjPtr <Progress> pProgress;
2395 Medium::Task *pTask = NULL;
2396
2397 try
2398 {
2399 /* We need to lock both the current object, and the tree lock (would
2400 * cause a lock order violation otherwise) for createMediumLockList. */
2401 AutoMultiWriteLock2 multilock(&m->pVirtualBox->getMediaTreeLockHandle(),
2402 this->lockHandle()
2403 COMMA_LOCKVAL_SRC_POS);
2404
2405 /* Build the medium lock list. */
2406 MediumLockList *pMediumLockList(new MediumLockList());
2407 rc = createMediumLockList(true /* fFailIfInaccessible */ ,
2408 true /* fMediumLockWrite */,
2409 NULL,
2410 *pMediumLockList);
2411 if (FAILED(rc))
2412 {
2413 delete pMediumLockList;
2414 throw rc;
2415 }
2416
2417 rc = pMediumLockList->Lock();
2418 if (FAILED(rc))
2419 {
2420 delete pMediumLockList;
2421 throw setError(rc,
2422 tr("Failed to lock media when compacting '%s'"),
2423 getLocationFull().raw());
2424 }
2425
2426 pProgress.createObject();
2427 rc = pProgress->init(m->pVirtualBox,
2428 static_cast <IMedium *>(this),
2429 BstrFmt(tr("Compacting hard disk '%s'"), m->strLocationFull.raw()),
2430 TRUE /* aCancelable */);
2431 if (FAILED(rc))
2432 {
2433 delete pMediumLockList;
2434 throw rc;
2435 }
2436
2437 /* setup task object to carry out the operation asynchronously */
2438 pTask = new Medium::CompactTask(this, pProgress, pMediumLockList);
2439 rc = pTask->rc();
2440 AssertComRC(rc);
2441 if (FAILED(rc))
2442 throw rc;
2443 }
2444 catch (HRESULT aRC) { rc = aRC; }
2445
2446 if (SUCCEEDED(rc))
2447 {
2448 rc = startThread(pTask);
2449
2450 if (SUCCEEDED(rc))
2451 pProgress.queryInterfaceTo(aProgress);
2452 }
2453 else if (pTask != NULL)
2454 delete pTask;
2455
2456 return rc;
2457}
2458
2459STDMETHODIMP Medium::Resize(ULONG64 aLogicalSize, IProgress **aProgress)
2460{
2461 CheckComArgOutPointerValid(aProgress);
2462
2463 AutoCaller autoCaller(this);
2464 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2465
2466 NOREF(aLogicalSize);
2467 NOREF(aProgress);
2468 ReturnComNotImplemented();
2469}
2470
2471STDMETHODIMP Medium::Reset(IProgress **aProgress)
2472{
2473 CheckComArgOutPointerValid(aProgress);
2474
2475 AutoCaller autoCaller(this);
2476 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2477
2478 HRESULT rc = S_OK;
2479 ComObjPtr <Progress> pProgress;
2480 Medium::Task *pTask = NULL;
2481
2482 try
2483 {
2484 /* canClose() needs the tree lock */
2485 AutoMultiWriteLock2 multilock(&m->pVirtualBox->getMediaTreeLockHandle(),
2486 this->lockHandle()
2487 COMMA_LOCKVAL_SRC_POS);
2488
2489 LogFlowThisFunc(("ENTER for medium %s\n", m->strLocationFull.c_str()));
2490
2491 if (m->pParent.isNull())
2492 throw setError(VBOX_E_NOT_SUPPORTED,
2493 tr("Hard disk '%s' is not differencing"),
2494 m->strLocationFull.raw());
2495
2496 rc = canClose();
2497 if (FAILED(rc))
2498 throw rc;
2499
2500 /* Build the medium lock list. */
2501 MediumLockList *pMediumLockList(new MediumLockList());
2502 rc = createMediumLockList(true /* fFailIfInaccessible */,
2503 true /* fMediumLockWrite */,
2504 NULL,
2505 *pMediumLockList);
2506 if (FAILED(rc))
2507 {
2508 delete pMediumLockList;
2509 throw rc;
2510 }
2511
2512 rc = pMediumLockList->Lock();
2513 if (FAILED(rc))
2514 {
2515 delete pMediumLockList;
2516 throw setError(rc,
2517 tr("Failed to lock media when resetting '%s'"),
2518 getLocationFull().raw());
2519 }
2520
2521 pProgress.createObject();
2522 rc = pProgress->init(m->pVirtualBox,
2523 static_cast<IMedium*>(this),
2524 BstrFmt(tr("Resetting differencing hard disk '%s'"), m->strLocationFull.raw()),
2525 FALSE /* aCancelable */);
2526 if (FAILED(rc))
2527 throw rc;
2528
2529 /* setup task object to carry out the operation asynchronously */
2530 pTask = new Medium::ResetTask(this, pProgress, pMediumLockList);
2531 rc = pTask->rc();
2532 AssertComRC(rc);
2533 if (FAILED(rc))
2534 throw rc;
2535 }
2536 catch (HRESULT aRC) { rc = aRC; }
2537
2538 if (SUCCEEDED(rc))
2539 {
2540 rc = startThread(pTask);
2541
2542 if (SUCCEEDED(rc))
2543 pProgress.queryInterfaceTo(aProgress);
2544 }
2545 else
2546 {
2547 /* Note: on success, the task will unlock this */
2548 {
2549 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2550 HRESULT rc2 = UnlockWrite(NULL);
2551 AssertComRC(rc2);
2552 }
2553 if (pTask != NULL)
2554 delete pTask;
2555 }
2556
2557 LogFlowThisFunc(("LEAVE, rc=%Rhrc\n", rc));
2558
2559 return rc;
2560}
2561
2562////////////////////////////////////////////////////////////////////////////////
2563//
2564// Medium internal methods
2565//
2566////////////////////////////////////////////////////////////////////////////////
2567
2568/**
2569 * Internal method to return the medium's parent medium. Must have caller + locking!
2570 * @return
2571 */
2572const ComObjPtr<Medium>& Medium::getParent() const
2573{
2574 return m->pParent;
2575}
2576
2577/**
2578 * Internal method to return the medium's list of child media. Must have caller + locking!
2579 * @return
2580 */
2581const MediaList& Medium::getChildren() const
2582{
2583 return m->llChildren;
2584}
2585
2586/**
2587 * Internal method to return the medium's GUID. Must have caller + locking!
2588 * @return
2589 */
2590const Guid& Medium::getId() const
2591{
2592 return m->id;
2593}
2594
2595/**
2596 * Internal method to return the medium's GUID. Must have caller + locking!
2597 * @return
2598 */
2599MediumState_T Medium::getState() const
2600{
2601 return m->state;
2602}
2603
2604/**
2605 * Internal method to return the medium's location. Must have caller + locking!
2606 * @return
2607 */
2608const Utf8Str& Medium::getLocation() const
2609{
2610 return m->strLocation;
2611}
2612
2613/**
2614 * Internal method to return the medium's full location. Must have caller + locking!
2615 * @return
2616 */
2617const Utf8Str& Medium::getLocationFull() const
2618{
2619 return m->strLocationFull;
2620}
2621
2622/**
2623 * Internal method to return the medium's format string. Must have caller + locking!
2624 * @return
2625 */
2626const Utf8Str& Medium::getFormat() const
2627{
2628 return m->strFormat;
2629}
2630
2631/**
2632 * Internal method to return the medium's format object. Must have caller + locking!
2633 * @return
2634 */
2635const ComObjPtr<MediumFormat> & Medium::getMediumFormat() const
2636{
2637 return m->formatObj;
2638}
2639
2640/**
2641 * Internal method to return the medium's size. Must have caller + locking!
2642 * @return
2643 */
2644uint64_t Medium::getSize() const
2645{
2646 return m->size;
2647}
2648
2649/**
2650 * Adds the given machine and optionally the snapshot to the list of the objects
2651 * this image is attached to.
2652 *
2653 * @param aMachineId Machine ID.
2654 * @param aSnapshotId Snapshot ID; when non-empty, adds a snapshot attachment.
2655 */
2656HRESULT Medium::attachTo(const Guid &aMachineId,
2657 const Guid &aSnapshotId /*= Guid::Empty*/)
2658{
2659 AssertReturn(!aMachineId.isEmpty(), E_FAIL);
2660
2661 LogFlowThisFunc(("ENTER, aMachineId: {%RTuuid}, aSnapshotId: {%RTuuid}\n", aMachineId.raw(), aSnapshotId.raw()));
2662
2663 AutoCaller autoCaller(this);
2664 AssertComRCReturnRC(autoCaller.rc());
2665
2666 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2667
2668 switch (m->state)
2669 {
2670 case MediumState_Created:
2671 case MediumState_Inaccessible:
2672 case MediumState_LockedRead:
2673 case MediumState_LockedWrite:
2674 break;
2675
2676 default:
2677 return setStateError();
2678 }
2679
2680 if (m->numCreateDiffTasks > 0)
2681 return setError(E_FAIL,
2682 tr("Cannot attach hard disk '%s' {%RTuuid}: %u differencing child hard disk(s) are being created"),
2683 m->strLocationFull.raw(),
2684 m->id.raw(),
2685 m->numCreateDiffTasks);
2686
2687 BackRefList::iterator it = std::find_if(m->backRefs.begin(),
2688 m->backRefs.end(),
2689 BackRef::EqualsTo(aMachineId));
2690 if (it == m->backRefs.end())
2691 {
2692 BackRef ref(aMachineId, aSnapshotId);
2693 m->backRefs.push_back(ref);
2694
2695 return S_OK;
2696 }
2697
2698 // if the caller has not supplied a snapshot ID, then we're attaching
2699 // to a machine a medium which represents the machine's current state,
2700 // so set the flag
2701 if (aSnapshotId.isEmpty())
2702 {
2703 /* sanity: no duplicate attachments */
2704 AssertReturn(!it->fInCurState, E_FAIL);
2705 it->fInCurState = true;
2706
2707 return S_OK;
2708 }
2709
2710 // otherwise: a snapshot medium is being attached
2711
2712 /* sanity: no duplicate attachments */
2713 for (BackRef::GuidList::const_iterator jt = it->llSnapshotIds.begin();
2714 jt != it->llSnapshotIds.end();
2715 ++jt)
2716 {
2717 const Guid &idOldSnapshot = *jt;
2718
2719 if (idOldSnapshot == aSnapshotId)
2720 {
2721#ifdef DEBUG
2722 dumpBackRefs();
2723#endif
2724 return setError(E_FAIL,
2725 tr("Cannot attach medium '%s' {%RTuuid} from snapshot '%RTuuid': medium is already in use by this snapshot!"),
2726 m->strLocationFull.raw(),
2727 m->id.raw(),
2728 aSnapshotId.raw(),
2729 idOldSnapshot.raw());
2730 }
2731 }
2732
2733 it->llSnapshotIds.push_back(aSnapshotId);
2734 it->fInCurState = false;
2735
2736 LogFlowThisFuncLeave();
2737
2738 return S_OK;
2739}
2740
2741/**
2742 * Removes the given machine and optionally the snapshot from the list of the
2743 * objects this image is attached to.
2744 *
2745 * @param aMachineId Machine ID.
2746 * @param aSnapshotId Snapshot ID; when non-empty, removes the snapshot
2747 * attachment.
2748 */
2749HRESULT Medium::detachFrom(const Guid &aMachineId,
2750 const Guid &aSnapshotId /*= Guid::Empty*/)
2751{
2752 AssertReturn(!aMachineId.isEmpty(), E_FAIL);
2753
2754 AutoCaller autoCaller(this);
2755 AssertComRCReturnRC(autoCaller.rc());
2756
2757 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2758
2759 BackRefList::iterator it =
2760 std::find_if(m->backRefs.begin(), m->backRefs.end(),
2761 BackRef::EqualsTo(aMachineId));
2762 AssertReturn(it != m->backRefs.end(), E_FAIL);
2763
2764 if (aSnapshotId.isEmpty())
2765 {
2766 /* remove the current state attachment */
2767 it->fInCurState = false;
2768 }
2769 else
2770 {
2771 /* remove the snapshot attachment */
2772 BackRef::GuidList::iterator jt =
2773 std::find(it->llSnapshotIds.begin(), it->llSnapshotIds.end(), aSnapshotId);
2774
2775 AssertReturn(jt != it->llSnapshotIds.end(), E_FAIL);
2776 it->llSnapshotIds.erase(jt);
2777 }
2778
2779 /* if the backref becomes empty, remove it */
2780 if (it->fInCurState == false && it->llSnapshotIds.size() == 0)
2781 m->backRefs.erase(it);
2782
2783 return S_OK;
2784}
2785
2786/**
2787 * Internal method to return the medium's list of backrefs. Must have caller + locking!
2788 * @return
2789 */
2790const Guid* Medium::getFirstMachineBackrefId() const
2791{
2792 if (!m->backRefs.size())
2793 return NULL;
2794
2795 return &m->backRefs.front().machineId;
2796}
2797
2798const Guid* Medium::getFirstMachineBackrefSnapshotId() const
2799{
2800 if (!m->backRefs.size())
2801 return NULL;
2802
2803 const BackRef &ref = m->backRefs.front();
2804 if (!ref.llSnapshotIds.size())
2805 return NULL;
2806
2807 return &ref.llSnapshotIds.front();
2808}
2809
2810#ifdef DEBUG
2811/**
2812 * Debugging helper that gets called after VirtualBox initialization that writes all
2813 * machine backreferences to the debug log.
2814 */
2815void Medium::dumpBackRefs()
2816{
2817 AutoCaller autoCaller(this);
2818 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2819
2820 LogFlowThisFunc(("Dumping backrefs for medium '%s':\n", m->strLocationFull.raw()));
2821
2822 for (BackRefList::iterator it2 = m->backRefs.begin();
2823 it2 != m->backRefs.end();
2824 ++it2)
2825 {
2826 const BackRef &ref = *it2;
2827 LogFlowThisFunc((" Backref from machine {%RTuuid} (fInCurState: %d)\n", ref.machineId.raw(), ref.fInCurState));
2828
2829 for (BackRef::GuidList::const_iterator jt2 = it2->llSnapshotIds.begin();
2830 jt2 != it2->llSnapshotIds.end();
2831 ++jt2)
2832 {
2833 const Guid &id = *jt2;
2834 LogFlowThisFunc((" Backref from snapshot {%RTuuid}\n", id.raw()));
2835 }
2836 }
2837}
2838#endif
2839
2840/**
2841 * Checks if the given change of \a aOldPath to \a aNewPath affects the location
2842 * of this media and updates it if necessary to reflect the new location.
2843 *
2844 * @param aOldPath Old path (full).
2845 * @param aNewPath New path (full).
2846 *
2847 * @note Locks this object for writing.
2848 */
2849HRESULT Medium::updatePath(const char *aOldPath, const char *aNewPath)
2850{
2851 AssertReturn(aOldPath, E_FAIL);
2852 AssertReturn(aNewPath, E_FAIL);
2853
2854 AutoCaller autoCaller(this);
2855 if (FAILED(autoCaller.rc())) return autoCaller.rc();
2856
2857 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2858
2859 LogFlowThisFunc(("locationFull.before='%s'\n", m->strLocationFull.raw()));
2860
2861 const char *pcszMediumPath = m->strLocationFull.c_str();
2862
2863 if (RTPathStartsWith(pcszMediumPath, aOldPath))
2864 {
2865 Utf8Str newPath = Utf8StrFmt("%s%s",
2866 aNewPath,
2867 pcszMediumPath + strlen(aOldPath));
2868 unconst(m->strLocationFull) = newPath;
2869
2870 Utf8Str path;
2871 m->pVirtualBox->copyPathRelativeToConfig(newPath, path);
2872 unconst(m->strLocation) = path;
2873
2874 LogFlowThisFunc(("locationFull.after='%s'\n", m->strLocationFull.raw()));
2875 }
2876
2877 return S_OK;
2878}
2879
2880/**
2881 * Checks if the given change of \a aOldPath to \a aNewPath affects the location
2882 * of this hard disk or any its child and updates the paths if necessary to
2883 * reflect the new location.
2884 *
2885 * @param aOldPath Old path (full).
2886 * @param aNewPath New path (full).
2887 *
2888 * @note Locks the medium tree for reading, this object and all children for writing.
2889 */
2890void Medium::updatePaths(const char *aOldPath, const char *aNewPath)
2891{
2892 AssertReturnVoid(aOldPath);
2893 AssertReturnVoid(aNewPath);
2894
2895 AutoCaller autoCaller(this);
2896 AssertComRCReturnVoid(autoCaller.rc());
2897
2898 /* we access children() */
2899 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
2900
2901 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2902
2903 updatePath(aOldPath, aNewPath);
2904
2905 /* update paths of all children */
2906 for (MediaList::const_iterator it = getChildren().begin();
2907 it != getChildren().end();
2908 ++it)
2909 {
2910 (*it)->updatePaths(aOldPath, aNewPath);
2911 }
2912}
2913
2914/**
2915 * Returns the base hard disk of the hard disk chain this hard disk is part of.
2916 *
2917 * The base hard disk is found by walking up the parent-child relationship axis.
2918 * If the hard disk doesn't have a parent (i.e. it's a base hard disk), it
2919 * returns itself in response to this method.
2920 *
2921 * @param aLevel Where to store the number of ancestors of this hard disk
2922 * (zero for the base), may be @c NULL.
2923 *
2924 * @note Locks medium tree for reading.
2925 */
2926ComObjPtr<Medium> Medium::getBase(uint32_t *aLevel /*= NULL*/)
2927{
2928 ComObjPtr<Medium> pBase;
2929 uint32_t level;
2930
2931 AutoCaller autoCaller(this);
2932 AssertReturn(autoCaller.isOk(), pBase);
2933
2934 /* we access mParent */
2935 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
2936
2937 pBase = this;
2938 level = 0;
2939
2940 if (m->pParent)
2941 {
2942 for (;;)
2943 {
2944 AutoCaller baseCaller(pBase);
2945 AssertReturn(baseCaller.isOk(), pBase);
2946
2947 if (pBase->m->pParent.isNull())
2948 break;
2949
2950 pBase = pBase->m->pParent;
2951 ++level;
2952 }
2953 }
2954
2955 if (aLevel != NULL)
2956 *aLevel = level;
2957
2958 return pBase;
2959}
2960
2961/**
2962 * Returns @c true if this hard disk cannot be modified because it has
2963 * dependants (children) or is part of the snapshot. Related to the hard disk
2964 * type and posterity, not to the current media state.
2965 *
2966 * @note Locks this object and medium tree for reading.
2967 */
2968bool Medium::isReadOnly()
2969{
2970 AutoCaller autoCaller(this);
2971 AssertComRCReturn(autoCaller.rc(), false);
2972
2973 /* we access children */
2974 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
2975
2976 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2977
2978 switch (m->type)
2979 {
2980 case MediumType_Normal:
2981 {
2982 if (getChildren().size() != 0)
2983 return true;
2984
2985 for (BackRefList::const_iterator it = m->backRefs.begin();
2986 it != m->backRefs.end(); ++it)
2987 if (it->llSnapshotIds.size() != 0)
2988 return true;
2989
2990 return false;
2991 }
2992 case MediumType_Immutable:
2993 return true;
2994 case MediumType_Writethrough:
2995 case MediumType_Shareable:
2996 return false;
2997 default:
2998 break;
2999 }
3000
3001 AssertFailedReturn(false);
3002}
3003
3004/**
3005 * Saves hard disk data by appending a new <HardDisk> child node to the given
3006 * parent node which can be either <HardDisks> or <HardDisk>.
3007 *
3008 * @param data Settings struct to be updated.
3009 *
3010 * @note Locks this object, medium tree and children for reading.
3011 */
3012HRESULT Medium::saveSettings(settings::Medium &data)
3013{
3014 AutoCaller autoCaller(this);
3015 if (FAILED(autoCaller.rc())) return autoCaller.rc();
3016
3017 /* we access mParent */
3018 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3019
3020 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
3021
3022 data.uuid = m->id;
3023 data.strLocation = m->strLocation;
3024 data.strFormat = m->strFormat;
3025
3026 /* optional, only for diffs, default is false */
3027 if (m->pParent)
3028 data.fAutoReset = m->autoReset;
3029 else
3030 data.fAutoReset = false;
3031
3032 /* optional */
3033 data.strDescription = m->strDescription;
3034
3035 /* optional properties */
3036 data.properties.clear();
3037 for (Data::PropertyMap::const_iterator it = m->properties.begin();
3038 it != m->properties.end();
3039 ++it)
3040 {
3041 /* only save properties that have non-default values */
3042 if (!it->second.isEmpty())
3043 {
3044 Utf8Str name = it->first;
3045 Utf8Str value = it->second;
3046 data.properties[name] = value;
3047 }
3048 }
3049
3050 /* only for base hard disks */
3051 if (m->pParent.isNull())
3052 data.hdType = m->type;
3053
3054 /* save all children */
3055 for (MediaList::const_iterator it = getChildren().begin();
3056 it != getChildren().end();
3057 ++it)
3058 {
3059 settings::Medium med;
3060 HRESULT rc = (*it)->saveSettings(med);
3061 AssertComRCReturnRC(rc);
3062 data.llChildren.push_back(med);
3063 }
3064
3065 return S_OK;
3066}
3067
3068/**
3069 * Compares the location of this hard disk to the given location.
3070 *
3071 * The comparison takes the location details into account. For example, if the
3072 * location is a file in the host's filesystem, a case insensitive comparison
3073 * will be performed for case insensitive filesystems.
3074 *
3075 * @param aLocation Location to compare to (as is).
3076 * @param aResult Where to store the result of comparison: 0 if locations
3077 * are equal, 1 if this object's location is greater than
3078 * the specified location, and -1 otherwise.
3079 */
3080HRESULT Medium::compareLocationTo(const char *aLocation, int &aResult)
3081{
3082 AutoCaller autoCaller(this);
3083 AssertComRCReturnRC(autoCaller.rc());
3084
3085 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
3086
3087 Utf8Str locationFull(m->strLocationFull);
3088
3089 /// @todo NEWMEDIA delegate the comparison to the backend?
3090
3091 if (m->formatObj->capabilities() & MediumFormatCapabilities_File)
3092 {
3093 Utf8Str location(aLocation);
3094
3095 /* For locations represented by files, append the default path if
3096 * only the name is given, and then get the full path. */
3097 if (!RTPathHavePath(aLocation))
3098 {
3099 location = Utf8StrFmt("%s%c%s",
3100 m->pVirtualBox->getDefaultHardDiskFolder().raw(),
3101 RTPATH_DELIMITER,
3102 aLocation);
3103 }
3104
3105 int vrc = m->pVirtualBox->calculateFullPath(location, location);
3106 if (RT_FAILURE(vrc))
3107 return setError(E_FAIL,
3108 tr("Invalid hard disk storage file location '%s' (%Rrc)"),
3109 location.raw(),
3110 vrc);
3111
3112 aResult = RTPathCompare(locationFull.c_str(), location.c_str());
3113 }
3114 else
3115 aResult = locationFull.compare(aLocation);
3116
3117 return S_OK;
3118}
3119
3120/**
3121 * Constructs a medium lock list for this medium. The lock is not taken.
3122 *
3123 * @note Locks the medium tree for reading.
3124 *
3125 * @param fFailIfInaccessible If true, this fails with an error if a medium is inaccessible. If false,
3126 * inaccessible media are silently skipped and not locked (i.e. their state remains "Inaccessible");
3127 * this is necessary for a VM's removable images on VM startup for which we do not want to fail.
3128 * @param fMediumLockWrite Whether to associate a write lock with this medium.
3129 * @param pToBeParent Medium which will become the parent of this medium.
3130 * @param mediumLockList Where to store the resulting list.
3131 */
3132HRESULT Medium::createMediumLockList(bool fFailIfInaccessible,
3133 bool fMediumLockWrite,
3134 Medium *pToBeParent,
3135 MediumLockList &mediumLockList)
3136{
3137 AutoCaller autoCaller(this);
3138 if (FAILED(autoCaller.rc())) return autoCaller.rc();
3139
3140 HRESULT rc = S_OK;
3141
3142 /* we access parent medium objects */
3143 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3144
3145 /* paranoid sanity checking if the medium has a to-be parent medium */
3146 if (pToBeParent)
3147 {
3148 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
3149 ComAssertRet(getParent().isNull(), E_FAIL);
3150 ComAssertRet(getChildren().size() == 0, E_FAIL);
3151 }
3152
3153 ErrorInfoKeeper eik;
3154 MultiResult mrc(S_OK);
3155
3156 ComObjPtr<Medium> pMedium = this;
3157 while (!pMedium.isNull())
3158 {
3159 // need write lock for RefreshState if medium is inaccessible
3160 AutoWriteLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
3161
3162 /* Accessibility check must be first, otherwise locking interferes
3163 * with getting the medium state. Lock lists are not created for
3164 * fun, and thus getting the image status is no luxury. */
3165 MediumState_T mediumState = pMedium->getState();
3166 if (mediumState == MediumState_Inaccessible)
3167 {
3168 rc = pMedium->RefreshState(&mediumState);
3169 if (FAILED(rc)) return rc;
3170
3171 if (mediumState == MediumState_Inaccessible)
3172 {
3173 // ignore inaccessible ISO images and silently return S_OK,
3174 // otherwise VM startup (esp. restore) may fail without good reason
3175 if (!fFailIfInaccessible)
3176 return S_OK;
3177
3178 // otherwise report an error
3179 Bstr error;
3180 rc = pMedium->COMGETTER(LastAccessError)(error.asOutParam());
3181 if (FAILED(rc)) return rc;
3182
3183 /* collect multiple errors */
3184 eik.restore();
3185 Assert(!error.isEmpty());
3186 mrc = setError(E_FAIL,
3187 "%ls",
3188 error.raw());
3189 // error message will be something like
3190 // "Could not open the medium ... VD: error VERR_FILE_NOT_FOUND opening image file ... (VERR_FILE_NOT_FOUND).
3191 eik.fetch();
3192 }
3193 }
3194
3195 if (pMedium == this)
3196 mediumLockList.Prepend(pMedium, fMediumLockWrite);
3197 else
3198 mediumLockList.Prepend(pMedium, false);
3199
3200 pMedium = pMedium->getParent();
3201 if (pMedium.isNull() && pToBeParent)
3202 {
3203 pMedium = pToBeParent;
3204 pToBeParent = NULL;
3205 }
3206 }
3207
3208 return mrc;
3209}
3210
3211/**
3212 * Returns a preferred format for differencing hard disks.
3213 */
3214Bstr Medium::preferredDiffFormat()
3215{
3216 Utf8Str strFormat;
3217
3218 AutoCaller autoCaller(this);
3219 AssertComRCReturn(autoCaller.rc(), strFormat);
3220
3221 /* m->strFormat is const, no need to lock */
3222 strFormat = m->strFormat;
3223
3224 /* check that our own format supports diffs */
3225 if (!(m->formatObj->capabilities() & MediumFormatCapabilities_Differencing))
3226 {
3227 /* use the default format if not */
3228 AutoReadLock propsLock(m->pVirtualBox->systemProperties() COMMA_LOCKVAL_SRC_POS);
3229 strFormat = m->pVirtualBox->getDefaultHardDiskFormat();
3230 }
3231
3232 return strFormat;
3233}
3234
3235/**
3236 * Returns the medium type. Must have caller + locking!
3237 * @return
3238 */
3239MediumType_T Medium::getType() const
3240{
3241 return m->type;
3242}
3243
3244// private methods
3245////////////////////////////////////////////////////////////////////////////////
3246
3247/**
3248 * Returns a short version of the location attribute.
3249 *
3250 * @note Must be called from under this object's read or write lock.
3251 */
3252Utf8Str Medium::getName()
3253{
3254 Utf8Str name = RTPathFilename(m->strLocationFull.c_str());
3255 return name;
3256}
3257
3258/**
3259 * Sets the value of m->strLocation and calculates the value of m->strLocationFull.
3260 *
3261 * Treats non-FS-path locations specially, and prepends the default hard disk
3262 * folder if the given location string does not contain any path information
3263 * at all.
3264 *
3265 * Also, if the specified location is a file path that ends with '/' then the
3266 * file name part will be generated by this method automatically in the format
3267 * '{<uuid>}.<ext>' where <uuid> is a fresh UUID that this method will generate
3268 * and assign to this medium, and <ext> is the default extension for this
3269 * medium's storage format. Note that this procedure requires the media state to
3270 * be NotCreated and will return a failure otherwise.
3271 *
3272 * @param aLocation Location of the storage unit. If the location is a FS-path,
3273 * then it can be relative to the VirtualBox home directory.
3274 * @param aFormat Optional fallback format if it is an import and the format
3275 * cannot be determined.
3276 *
3277 * @note Must be called from under this object's write lock.
3278 */
3279HRESULT Medium::setLocation(const Utf8Str &aLocation, const Utf8Str &aFormat)
3280{
3281 AssertReturn(!aLocation.isEmpty(), E_FAIL);
3282
3283 AutoCaller autoCaller(this);
3284 AssertComRCReturnRC(autoCaller.rc());
3285
3286 /* formatObj may be null only when initializing from an existing path and
3287 * no format is known yet */
3288 AssertReturn( (!m->strFormat.isEmpty() && !m->formatObj.isNull())
3289 || ( autoCaller.state() == InInit
3290 && m->state != MediumState_NotCreated
3291 && m->id.isEmpty()
3292 && m->strFormat.isEmpty()
3293 && m->formatObj.isNull()),
3294 E_FAIL);
3295
3296 /* are we dealing with a new medium constructed using the existing
3297 * location? */
3298 bool isImport = m->strFormat.isEmpty();
3299
3300 if ( isImport
3301 || ( (m->formatObj->capabilities() & MediumFormatCapabilities_File)
3302 && !m->hostDrive))
3303 {
3304 Guid id;
3305
3306 Utf8Str location(aLocation);
3307
3308 if (m->state == MediumState_NotCreated)
3309 {
3310 /* must be a file (formatObj must be already known) */
3311 Assert(m->formatObj->capabilities() & MediumFormatCapabilities_File);
3312
3313 if (RTPathFilename(location.c_str()) == NULL)
3314 {
3315 /* no file name is given (either an empty string or ends with a
3316 * slash), generate a new UUID + file name if the state allows
3317 * this */
3318
3319 ComAssertMsgRet(!m->formatObj->fileExtensions().empty(),
3320 ("Must be at least one extension if it is MediumFormatCapabilities_File\n"),
3321 E_FAIL);
3322
3323 Bstr ext = m->formatObj->fileExtensions().front();
3324 ComAssertMsgRet(!ext.isEmpty(),
3325 ("Default extension must not be empty\n"),
3326 E_FAIL);
3327
3328 id.create();
3329
3330 location = Utf8StrFmt("%s{%RTuuid}.%ls",
3331 location.raw(), id.raw(), ext.raw());
3332 }
3333 }
3334
3335 /* append the default folder if no path is given */
3336 if (!RTPathHavePath(location.c_str()))
3337 location = Utf8StrFmt("%s%c%s",
3338 m->pVirtualBox->getDefaultHardDiskFolder().raw(),
3339 RTPATH_DELIMITER,
3340 location.raw());
3341
3342 /* get the full file name */
3343 Utf8Str locationFull;
3344 int vrc = m->pVirtualBox->calculateFullPath(location, locationFull);
3345 if (RT_FAILURE(vrc))
3346 return setError(VBOX_E_FILE_ERROR,
3347 tr("Invalid medium storage file location '%s' (%Rrc)"),
3348 location.raw(), vrc);
3349
3350 /* detect the backend from the storage unit if importing */
3351 if (isImport)
3352 {
3353 char *backendName = NULL;
3354
3355 /* is it a file? */
3356 {
3357 RTFILE file;
3358 vrc = RTFileOpen(&file, locationFull.c_str(), RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
3359 if (RT_SUCCESS(vrc))
3360 RTFileClose(file);
3361 }
3362 if (RT_SUCCESS(vrc))
3363 {
3364 vrc = VDGetFormat(NULL, locationFull.c_str(), &backendName);
3365 }
3366 else if (vrc != VERR_FILE_NOT_FOUND && vrc != VERR_PATH_NOT_FOUND)
3367 {
3368 /* assume it's not a file, restore the original location */
3369 location = locationFull = aLocation;
3370 vrc = VDGetFormat(NULL, locationFull.c_str(), &backendName);
3371 }
3372
3373 if (RT_FAILURE(vrc))
3374 {
3375 if (vrc == VERR_FILE_NOT_FOUND || vrc == VERR_PATH_NOT_FOUND)
3376 return setError(VBOX_E_FILE_ERROR,
3377 tr("Could not find file for the medium '%s' (%Rrc)"),
3378 locationFull.raw(), vrc);
3379 else if (aFormat.isEmpty())
3380 return setError(VBOX_E_IPRT_ERROR,
3381 tr("Could not get the storage format of the medium '%s' (%Rrc)"),
3382 locationFull.raw(), vrc);
3383 else
3384 {
3385 HRESULT rc = setFormat(Bstr(aFormat));
3386 /* setFormat() must not fail since we've just used the backend so
3387 * the format object must be there */
3388 AssertComRCReturnRC(rc);
3389 }
3390 }
3391 else
3392 {
3393 ComAssertRet(backendName != NULL && *backendName != '\0', E_FAIL);
3394
3395 HRESULT rc = setFormat(Bstr(backendName));
3396 RTStrFree(backendName);
3397
3398 /* setFormat() must not fail since we've just used the backend so
3399 * the format object must be there */
3400 AssertComRCReturnRC(rc);
3401 }
3402 }
3403
3404 /* is it still a file? */
3405 if (m->formatObj->capabilities() & MediumFormatCapabilities_File)
3406 {
3407 m->strLocation = location;
3408 m->strLocationFull = locationFull;
3409
3410 if (m->state == MediumState_NotCreated)
3411 {
3412 /* assign a new UUID (this UUID will be used when calling
3413 * VDCreateBase/VDCreateDiff as a wanted UUID). Note that we
3414 * also do that if we didn't generate it to make sure it is
3415 * either generated by us or reset to null */
3416 unconst(m->id) = id;
3417 }
3418 }
3419 else
3420 {
3421 m->strLocation = locationFull;
3422 m->strLocationFull = locationFull;
3423 }
3424 }
3425 else
3426 {
3427 m->strLocation = aLocation;
3428 m->strLocationFull = aLocation;
3429 }
3430
3431 return S_OK;
3432}
3433
3434/**
3435 * Queries information from the image file.
3436 *
3437 * As a result of this call, the accessibility state and data members such as
3438 * size and description will be updated with the current information.
3439 *
3440 * @note This method may block during a system I/O call that checks storage
3441 * accessibility.
3442 *
3443 * @note Locks medium tree for reading and writing (for new diff media checked
3444 * for the first time). Locks mParent for reading. Locks this object for
3445 * writing.
3446 */
3447HRESULT Medium::queryInfo()
3448{
3449 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3450
3451 if ( m->state != MediumState_Created
3452 && m->state != MediumState_Inaccessible
3453 && m->state != MediumState_LockedRead)
3454 return E_FAIL;
3455
3456 HRESULT rc = S_OK;
3457
3458 int vrc = VINF_SUCCESS;
3459
3460 /* check if a blocking queryInfo() call is in progress on some other thread,
3461 * and wait for it to finish if so instead of querying data ourselves */
3462 if (m->queryInfoRunning)
3463 {
3464 Assert( m->state == MediumState_LockedRead
3465 || m->state == MediumState_LockedWrite);
3466
3467 alock.leave();
3468 vrc = RTSemEventMultiWait(m->queryInfoSem, RT_INDEFINITE_WAIT);
3469 alock.enter();
3470
3471 AssertRC(vrc);
3472
3473 return S_OK;
3474 }
3475
3476 bool success = false;
3477 Utf8Str lastAccessError;
3478
3479 /* are we dealing with a new medium constructed using the existing
3480 * location? */
3481 bool isImport = m->id.isEmpty();
3482 unsigned flags = VD_OPEN_FLAGS_INFO;
3483
3484 /* Note that we don't use VD_OPEN_FLAGS_READONLY when opening new
3485 * media because that would prevent necessary modifications
3486 * when opening media of some third-party formats for the first
3487 * time in VirtualBox (such as VMDK for which VDOpen() needs to
3488 * generate an UUID if it is missing) */
3489 if ( (m->hddOpenMode == OpenReadOnly)
3490 || !isImport
3491 )
3492 flags |= VD_OPEN_FLAGS_READONLY;
3493
3494 /* Lock the medium, which makes the behavior much more consistent */
3495 if (flags & VD_OPEN_FLAGS_READONLY)
3496 rc = LockRead(NULL);
3497 else
3498 rc = LockWrite(NULL);
3499 if (FAILED(rc)) return rc;
3500
3501 /* Copies of the input state fields which are not read-only,
3502 * as we're dropping the lock. CAUTION: be extremely careful what
3503 * you do with the contents of this medium object, as you will
3504 * create races if there are concurrent changes. */
3505 Utf8Str format(m->strFormat);
3506 Utf8Str location(m->strLocationFull);
3507 ComObjPtr<MediumFormat> formatObj = m->formatObj;
3508
3509 /* "Output" values which can't be set because the lock isn't held
3510 * at the time the values are determined. */
3511 Guid mediumId = m->id;
3512 uint64_t mediumSize = 0;
3513 uint64_t mediumLogicalSize = 0;
3514
3515 /* leave the lock before a lengthy operation */
3516 vrc = RTSemEventMultiReset(m->queryInfoSem);
3517 AssertRCReturn(vrc, E_FAIL);
3518 m->queryInfoRunning = true;
3519 alock.leave();
3520
3521 try
3522 {
3523 /* skip accessibility checks for host drives */
3524 if (m->hostDrive)
3525 {
3526 success = true;
3527 throw S_OK;
3528 }
3529
3530 PVBOXHDD hdd;
3531 vrc = VDCreate(m->vdDiskIfaces, &hdd);
3532 ComAssertRCThrow(vrc, E_FAIL);
3533
3534 try
3535 {
3536 /** @todo This kind of opening of images is assuming that diff
3537 * images can be opened as base images. Should be documented if
3538 * it must work for all medium format backends. */
3539 vrc = VDOpen(hdd,
3540 format.c_str(),
3541 location.c_str(),
3542 flags,
3543 m->vdDiskIfaces);
3544 if (RT_FAILURE(vrc))
3545 {
3546 lastAccessError = Utf8StrFmt(tr("Could not open the medium '%s'%s"),
3547 location.c_str(), vdError(vrc).c_str());
3548 throw S_OK;
3549 }
3550
3551 if (formatObj->capabilities() & MediumFormatCapabilities_Uuid)
3552 {
3553 /* Modify the UUIDs if necessary. The associated fields are
3554 * not modified by other code, so no need to copy. */
3555 if (m->setImageId)
3556 {
3557 vrc = VDSetUuid(hdd, 0, m->imageId);
3558 ComAssertRCThrow(vrc, E_FAIL);
3559 }
3560 if (m->setParentId)
3561 {
3562 vrc = VDSetParentUuid(hdd, 0, m->parentId);
3563 ComAssertRCThrow(vrc, E_FAIL);
3564 }
3565 /* zap the information, these are no long-term members */
3566 m->setImageId = false;
3567 unconst(m->imageId).clear();
3568 m->setParentId = false;
3569 unconst(m->parentId).clear();
3570
3571 /* check the UUID */
3572 RTUUID uuid;
3573 vrc = VDGetUuid(hdd, 0, &uuid);
3574 ComAssertRCThrow(vrc, E_FAIL);
3575
3576 if (isImport)
3577 {
3578 mediumId = uuid;
3579
3580 if (mediumId.isEmpty() && (m->hddOpenMode == OpenReadOnly))
3581 // only when importing a VDMK that has no UUID, create one in memory
3582 mediumId.create();
3583 }
3584 else
3585 {
3586 Assert(!mediumId.isEmpty());
3587
3588 if (mediumId != uuid)
3589 {
3590 lastAccessError = Utf8StrFmt(
3591 tr("UUID {%RTuuid} of the medium '%s' does not match the value {%RTuuid} stored in the media registry ('%s')"),
3592 &uuid,
3593 location.c_str(),
3594 mediumId.raw(),
3595 m->pVirtualBox->settingsFilePath().c_str());
3596 throw S_OK;
3597 }
3598 }
3599 }
3600 else
3601 {
3602 /* the backend does not support storing UUIDs within the
3603 * underlying storage so use what we store in XML */
3604
3605 /* generate an UUID for an imported UUID-less medium */
3606 if (isImport)
3607 {
3608 if (m->setImageId)
3609 mediumId = m->imageId;
3610 else
3611 mediumId.create();
3612 }
3613 }
3614
3615 /* check the type */
3616 unsigned uImageFlags;
3617 vrc = VDGetImageFlags(hdd, 0, &uImageFlags);
3618 ComAssertRCThrow(vrc, E_FAIL);
3619
3620 if (uImageFlags & VD_IMAGE_FLAGS_DIFF)
3621 {
3622 RTUUID parentId;
3623 vrc = VDGetParentUuid(hdd, 0, &parentId);
3624 ComAssertRCThrow(vrc, E_FAIL);
3625
3626 if (isImport)
3627 {
3628 /* the parent must be known to us. Note that we freely
3629 * call locking methods of mVirtualBox and parent from the
3630 * write lock (breaking the {parent,child} lock order)
3631 * because there may be no concurrent access to the just
3632 * opened hard disk on ther threads yet (and init() will
3633 * fail if this method reporst MediumState_Inaccessible) */
3634
3635 Guid id = parentId;
3636 ComObjPtr<Medium> pParent;
3637 rc = m->pVirtualBox->findHardDisk(&id, NULL,
3638 false /* aSetError */,
3639 &pParent);
3640 if (FAILED(rc))
3641 {
3642 lastAccessError = Utf8StrFmt(
3643 tr("Parent hard disk with UUID {%RTuuid} of the hard disk '%s' is not found in the media registry ('%s')"),
3644 &parentId, location.c_str(),
3645 m->pVirtualBox->settingsFilePath().c_str());
3646 throw S_OK;
3647 }
3648
3649 /* we set mParent & children() */
3650 AutoWriteLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3651
3652 Assert(m->pParent.isNull());
3653 m->pParent = pParent;
3654 m->pParent->m->llChildren.push_back(this);
3655 }
3656 else
3657 {
3658 /* we access mParent */
3659 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3660
3661 /* check that parent UUIDs match. Note that there's no need
3662 * for the parent's AutoCaller (our lifetime is bound to
3663 * it) */
3664
3665 if (m->pParent.isNull())
3666 {
3667 lastAccessError = Utf8StrFmt(
3668 tr("Hard disk '%s' is differencing but it is not associated with any parent hard disk in the media registry ('%s')"),
3669 location.c_str(),
3670 m->pVirtualBox->settingsFilePath().c_str());
3671 throw S_OK;
3672 }
3673
3674 AutoReadLock parentLock(m->pParent COMMA_LOCKVAL_SRC_POS);
3675 if ( m->pParent->getState() != MediumState_Inaccessible
3676 && m->pParent->getId() != parentId)
3677 {
3678 lastAccessError = Utf8StrFmt(
3679 tr("Parent UUID {%RTuuid} of the hard disk '%s' does not match UUID {%RTuuid} of its parent hard disk stored in the media registry ('%s')"),
3680 &parentId, location.c_str(),
3681 m->pParent->getId().raw(),
3682 m->pVirtualBox->settingsFilePath().c_str());
3683 throw S_OK;
3684 }
3685
3686 /// @todo NEWMEDIA what to do if the parent is not
3687 /// accessible while the diff is? Probably nothing. The
3688 /// real code will detect the mismatch anyway.
3689 }
3690 }
3691
3692 mediumSize = VDGetFileSize(hdd, 0);
3693 mediumLogicalSize = VDGetSize(hdd, 0) / _1M;
3694
3695 success = true;
3696 }
3697 catch (HRESULT aRC)
3698 {
3699 rc = aRC;
3700 }
3701
3702 VDDestroy(hdd);
3703
3704 }
3705 catch (HRESULT aRC)
3706 {
3707 rc = aRC;
3708 }
3709
3710 alock.enter();
3711
3712 if (isImport)
3713 unconst(m->id) = mediumId;
3714
3715 if (success)
3716 {
3717 m->size = mediumSize;
3718 m->logicalSize = mediumLogicalSize;
3719 m->strLastAccessError.setNull();
3720 }
3721 else
3722 {
3723 m->strLastAccessError = lastAccessError;
3724 LogWarningFunc(("'%s' is not accessible (error='%s', rc=%Rhrc, vrc=%Rrc)\n",
3725 location.c_str(), m->strLastAccessError.c_str(),
3726 rc, vrc));
3727 }
3728
3729 /* inform other callers if there are any */
3730 RTSemEventMultiSignal(m->queryInfoSem);
3731 m->queryInfoRunning = false;
3732
3733 /* Set the proper state according to the result of the check */
3734 if (success)
3735 m->preLockState = MediumState_Created;
3736 else
3737 m->preLockState = MediumState_Inaccessible;
3738
3739 if (flags & VD_OPEN_FLAGS_READONLY)
3740 rc = UnlockRead(NULL);
3741 else
3742 rc = UnlockWrite(NULL);
3743 if (FAILED(rc)) return rc;
3744
3745 return rc;
3746}
3747
3748/**
3749 * Sets the extended error info according to the current media state.
3750 *
3751 * @note Must be called from under this object's write or read lock.
3752 */
3753HRESULT Medium::setStateError()
3754{
3755 HRESULT rc = E_FAIL;
3756
3757 switch (m->state)
3758 {
3759 case MediumState_NotCreated:
3760 {
3761 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3762 tr("Storage for the medium '%s' is not created"),
3763 m->strLocationFull.raw());
3764 break;
3765 }
3766 case MediumState_Created:
3767 {
3768 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3769 tr("Storage for the medium '%s' is already created"),
3770 m->strLocationFull.raw());
3771 break;
3772 }
3773 case MediumState_LockedRead:
3774 {
3775 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3776 tr("Medium '%s' is locked for reading by another task"),
3777 m->strLocationFull.raw());
3778 break;
3779 }
3780 case MediumState_LockedWrite:
3781 {
3782 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3783 tr("Medium '%s' is locked for writing by another task"),
3784 m->strLocationFull.raw());
3785 break;
3786 }
3787 case MediumState_Inaccessible:
3788 {
3789 /* be in sync with Console::powerUpThread() */
3790 if (!m->strLastAccessError.isEmpty())
3791 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3792 tr("Medium '%s' is not accessible. %s"),
3793 m->strLocationFull.raw(), m->strLastAccessError.c_str());
3794 else
3795 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3796 tr("Medium '%s' is not accessible"),
3797 m->strLocationFull.raw());
3798 break;
3799 }
3800 case MediumState_Creating:
3801 {
3802 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3803 tr("Storage for the medium '%s' is being created"),
3804 m->strLocationFull.raw());
3805 break;
3806 }
3807 case MediumState_Deleting:
3808 {
3809 rc = setError(VBOX_E_INVALID_OBJECT_STATE,
3810 tr("Storage for the medium '%s' is being deleted"),
3811 m->strLocationFull.raw());
3812 break;
3813 }
3814 default:
3815 {
3816 AssertFailed();
3817 break;
3818 }
3819 }
3820
3821 return rc;
3822}
3823
3824/**
3825 * Deletes the hard disk storage unit.
3826 *
3827 * If @a aProgress is not NULL but the object it points to is @c null then a new
3828 * progress object will be created and assigned to @a *aProgress on success,
3829 * otherwise the existing progress object is used. If Progress is NULL, then no
3830 * progress object is created/used at all.
3831 *
3832 * When @a aWait is @c false, this method will create a thread to perform the
3833 * delete operation asynchronously and will return immediately. Otherwise, it
3834 * will perform the operation on the calling thread and will not return to the
3835 * caller until the operation is completed. Note that @a aProgress cannot be
3836 * NULL when @a aWait is @c false (this method will assert in this case).
3837 *
3838 * @param aProgress Where to find/store a Progress object to track operation
3839 * completion.
3840 * @param aWait @c true if this method should block instead of creating
3841 * an asynchronous thread.
3842 * @param pfNeedsSaveSettings Optional pointer to a bool that must have been initialized to false and that will be set to true
3843 * by this function if the caller should invoke VirtualBox::saveSettings() because the global settings have changed.
3844 * This only works in "wait" mode; otherwise saveSettings gets called automatically by the thread that was created,
3845 * and this parameter is ignored.
3846 *
3847 * @note Locks mVirtualBox and this object for writing. Locks medium tree for
3848 * writing.
3849 */
3850HRESULT Medium::deleteStorage(ComObjPtr<Progress> *aProgress,
3851 bool aWait,
3852 bool *pfNeedsSaveSettings)
3853{
3854 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
3855
3856 AutoCaller autoCaller(this);
3857 if (FAILED(autoCaller.rc())) return autoCaller.rc();
3858
3859 HRESULT rc = S_OK;
3860 ComObjPtr<Progress> pProgress;
3861 Medium::Task *pTask = NULL;
3862
3863 try
3864 {
3865 /* we're accessing the media tree, and canClose() needs it too */
3866 AutoMultiWriteLock2 multilock(&m->pVirtualBox->getMediaTreeLockHandle(),
3867 this->lockHandle()
3868 COMMA_LOCKVAL_SRC_POS);
3869 LogFlowThisFunc(("aWait=%RTbool locationFull=%s\n", aWait, getLocationFull().c_str() ));
3870
3871 if ( !(m->formatObj->capabilities() & ( MediumFormatCapabilities_CreateDynamic
3872 | MediumFormatCapabilities_CreateFixed)))
3873 throw setError(VBOX_E_NOT_SUPPORTED,
3874 tr("Hard disk format '%s' does not support storage deletion"),
3875 m->strFormat.raw());
3876
3877 /* Note that we are fine with Inaccessible state too: a) for symmetry
3878 * with create calls and b) because it doesn't really harm to try, if
3879 * it is really inaccessible, the delete operation will fail anyway.
3880 * Accepting Inaccessible state is especially important because all
3881 * registered hard disks are initially Inaccessible upon VBoxSVC
3882 * startup until COMGETTER(RefreshState) is called. Accept Deleting
3883 * state because some callers need to put the image in this state early
3884 * to prevent races. */
3885 switch (m->state)
3886 {
3887 case MediumState_Created:
3888 case MediumState_Deleting:
3889 case MediumState_Inaccessible:
3890 break;
3891 default:
3892 throw setStateError();
3893 }
3894
3895 if (m->backRefs.size() != 0)
3896 {
3897 Utf8Str strMachines;
3898 for (BackRefList::const_iterator it = m->backRefs.begin();
3899 it != m->backRefs.end();
3900 ++it)
3901 {
3902 const BackRef &b = *it;
3903 if (strMachines.length())
3904 strMachines.append(", ");
3905 strMachines.append(b.machineId.toString().c_str());
3906 }
3907#ifdef DEBUG
3908 dumpBackRefs();
3909#endif
3910 throw setError(VBOX_E_OBJECT_IN_USE,
3911 tr("Cannot delete storage: hard disk '%s' is still attached to the following %d virtual machine(s): %s"),
3912 m->strLocationFull.c_str(),
3913 m->backRefs.size(),
3914 strMachines.c_str());
3915 }
3916
3917 rc = canClose();
3918 if (FAILED(rc))
3919 throw rc;
3920
3921 /* go to Deleting state, so that the medium is not actually locked */
3922 if (m->state != MediumState_Deleting)
3923 {
3924 rc = markForDeletion();
3925 if (FAILED(rc))
3926 throw rc;
3927 }
3928
3929 /* Build the medium lock list. */
3930 MediumLockList *pMediumLockList(new MediumLockList());
3931 rc = createMediumLockList(true /* fFailIfInaccessible */,
3932 true /* fMediumLockWrite */,
3933 NULL,
3934 *pMediumLockList);
3935 if (FAILED(rc))
3936 {
3937 delete pMediumLockList;
3938 throw rc;
3939 }
3940
3941 rc = pMediumLockList->Lock();
3942 if (FAILED(rc))
3943 {
3944 delete pMediumLockList;
3945 throw setError(rc,
3946 tr("Failed to lock media when deleting '%s'"),
3947 getLocationFull().raw());
3948 }
3949
3950 /* try to remove from the list of known hard disks before performing
3951 * actual deletion (we favor the consistency of the media registry
3952 * which would have been broken if unregisterWithVirtualBox() failed
3953 * after we successfully deleted the storage) */
3954 rc = unregisterWithVirtualBox(pfNeedsSaveSettings);
3955 if (FAILED(rc))
3956 throw rc;
3957 // no longer need lock
3958 multilock.release();
3959
3960 if (aProgress != NULL)
3961 {
3962 /* use the existing progress object... */
3963 pProgress = *aProgress;
3964
3965 /* ...but create a new one if it is null */
3966 if (pProgress.isNull())
3967 {
3968 pProgress.createObject();
3969 rc = pProgress->init(m->pVirtualBox,
3970 static_cast<IMedium*>(this),
3971 BstrFmt(tr("Deleting hard disk storage unit '%s'"), m->strLocationFull.raw()),
3972 FALSE /* aCancelable */);
3973 if (FAILED(rc))
3974 throw rc;
3975 }
3976 }
3977
3978 /* setup task object to carry out the operation sync/async */
3979 pTask = new Medium::DeleteTask(this, pProgress, pMediumLockList);
3980 rc = pTask->rc();
3981 AssertComRC(rc);
3982 if (FAILED(rc))
3983 throw rc;
3984 }
3985 catch (HRESULT aRC) { rc = aRC; }
3986
3987 if (SUCCEEDED(rc))
3988 {
3989 if (aWait)
3990 rc = runNow(pTask, NULL /* pfNeedsSaveSettings*/);
3991 else
3992 rc = startThread(pTask);
3993
3994 if (SUCCEEDED(rc) && aProgress != NULL)
3995 *aProgress = pProgress;
3996
3997 }
3998 else
3999 {
4000 if (pTask)
4001 delete pTask;
4002
4003 /* Undo deleting state if necessary. */
4004 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4005 unmarkForDeletion();
4006 }
4007
4008 return rc;
4009}
4010
4011/**
4012 * Mark a medium for deletion.
4013 *
4014 * @note Caller must hold the write lock on this medium!
4015 */
4016HRESULT Medium::markForDeletion()
4017{
4018 ComAssertRet(this->lockHandle()->isWriteLockOnCurrentThread(), E_FAIL);
4019 switch (m->state)
4020 {
4021 case MediumState_Created:
4022 case MediumState_Inaccessible:
4023 m->preLockState = m->state;
4024 m->state = MediumState_Deleting;
4025 return S_OK;
4026 default:
4027 return setStateError();
4028 }
4029}
4030
4031/**
4032 * Removes the "mark for deletion".
4033 *
4034 * @note Caller must hold the write lock on this medium!
4035 */
4036HRESULT Medium::unmarkForDeletion()
4037{
4038 ComAssertRet(this->lockHandle()->isWriteLockOnCurrentThread(), E_FAIL);
4039 switch (m->state)
4040 {
4041 case MediumState_Deleting:
4042 m->state = m->preLockState;
4043 return S_OK;
4044 default:
4045 return setStateError();
4046 }
4047}
4048
4049/**
4050 * Mark a medium for deletion which is in locked state.
4051 *
4052 * @note Caller must hold the write lock on this medium!
4053 */
4054HRESULT Medium::markLockedForDeletion()
4055{
4056 ComAssertRet(this->lockHandle()->isWriteLockOnCurrentThread(), E_FAIL);
4057 if ( ( m->state == MediumState_LockedRead
4058 || m->state == MediumState_LockedWrite)
4059 && m->preLockState == MediumState_Created)
4060 {
4061 m->preLockState = MediumState_Deleting;
4062 return S_OK;
4063 }
4064 else
4065 return setStateError();
4066}
4067
4068/**
4069 * Removes the "mark for deletion" for a medium in locked state.
4070 *
4071 * @note Caller must hold the write lock on this medium!
4072 */
4073HRESULT Medium::unmarkLockedForDeletion()
4074{
4075 ComAssertRet(this->lockHandle()->isWriteLockOnCurrentThread(), E_FAIL);
4076 if ( ( m->state == MediumState_LockedRead
4077 || m->state == MediumState_LockedWrite)
4078 && m->preLockState == MediumState_Deleting)
4079 {
4080 m->preLockState = MediumState_Created;
4081 return S_OK;
4082 }
4083 else
4084 return setStateError();
4085}
4086
4087/**
4088 * Creates a new differencing storage unit using the given target hard disk's
4089 * format and the location. Note that @c aTarget must be NotCreated.
4090 *
4091 * The @a aMediumLockList parameter contains the associated medium lock list,
4092 * which must be in locked state. If @a aWait is @c true then the caller is
4093 * responsible for unlocking.
4094 *
4095 * If @a aProgress is not NULL but the object it points to is @c null then a
4096 * new progress object will be created and assigned to @a *aProgress on
4097 * success, otherwise the existing progress object is used. If @a aProgress is
4098 * NULL, then no progress object is created/used at all.
4099 *
4100 * When @a aWait is @c false, this method will create a thread to perform the
4101 * create operation asynchronously and will return immediately. Otherwise, it
4102 * will perform the operation on the calling thread and will not return to the
4103 * caller until the operation is completed. Note that @a aProgress cannot be
4104 * NULL when @a aWait is @c false (this method will assert in this case).
4105 *
4106 * @param aTarget Target hard disk.
4107 * @param aVariant Precise image variant to create.
4108 * @param aMediumLockList List of media which should be locked.
4109 * @param aProgress Where to find/store a Progress object to track
4110 * operation completion.
4111 * @param aWait @c true if this method should block instead of
4112 * creating an asynchronous thread.
4113 * @param pfNeedsSaveSettings Optional pointer to a bool that must have been
4114 * initialized to false and that will be set to true
4115 * by this function if the caller should invoke
4116 * VirtualBox::saveSettings() because the global
4117 * settings have changed. This only works in "wait"
4118 * mode; otherwise saveSettings is called
4119 * automatically by the thread that was created,
4120 * and this parameter is ignored.
4121 *
4122 * @note Locks this object and @a aTarget for writing.
4123 */
4124HRESULT Medium::createDiffStorage(ComObjPtr<Medium> &aTarget,
4125 MediumVariant_T aVariant,
4126 MediumLockList *aMediumLockList,
4127 ComObjPtr<Progress> *aProgress,
4128 bool aWait,
4129 bool *pfNeedsSaveSettings)
4130{
4131 AssertReturn(!aTarget.isNull(), E_FAIL);
4132 AssertReturn(aMediumLockList, E_FAIL);
4133 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
4134
4135 AutoCaller autoCaller(this);
4136 if (FAILED(autoCaller.rc())) return autoCaller.rc();
4137
4138 AutoCaller targetCaller(aTarget);
4139 if (FAILED(targetCaller.rc())) return targetCaller.rc();
4140
4141 HRESULT rc = S_OK;
4142 ComObjPtr<Progress> pProgress;
4143 Medium::Task *pTask = NULL;
4144
4145 try
4146 {
4147 AutoMultiWriteLock2 alock(this, aTarget COMMA_LOCKVAL_SRC_POS);
4148
4149 ComAssertThrow(m->type != MediumType_Writethrough, E_FAIL);
4150 ComAssertThrow(m->state == MediumState_LockedRead, E_FAIL);
4151
4152 if (aTarget->m->state != MediumState_NotCreated)
4153 throw aTarget->setStateError();
4154
4155 /* Check that the hard disk is not attached to the current state of
4156 * any VM referring to it. */
4157 for (BackRefList::const_iterator it = m->backRefs.begin();
4158 it != m->backRefs.end();
4159 ++it)
4160 {
4161 if (it->fInCurState)
4162 {
4163 /* Note: when a VM snapshot is being taken, all normal hard
4164 * disks attached to the VM in the current state will be, as an
4165 * exception, also associated with the snapshot which is about
4166 * to create (see SnapshotMachine::init()) before deassociating
4167 * them from the current state (which takes place only on
4168 * success in Machine::fixupHardDisks()), so that the size of
4169 * snapshotIds will be 1 in this case. The extra condition is
4170 * used to filter out this legal situation. */
4171 if (it->llSnapshotIds.size() == 0)
4172 throw setError(VBOX_E_INVALID_OBJECT_STATE,
4173 tr("Hard disk '%s' is attached to a virtual machine with UUID {%RTuuid}. No differencing hard disks based on it may be created until it is detached"),
4174 m->strLocationFull.raw(), it->machineId.raw());
4175
4176 Assert(it->llSnapshotIds.size() == 1);
4177 }
4178 }
4179
4180 if (aProgress != NULL)
4181 {
4182 /* use the existing progress object... */
4183 pProgress = *aProgress;
4184
4185 /* ...but create a new one if it is null */
4186 if (pProgress.isNull())
4187 {
4188 pProgress.createObject();
4189 rc = pProgress->init(m->pVirtualBox,
4190 static_cast<IMedium*>(this),
4191 BstrFmt(tr("Creating differencing hard disk storage unit '%s'"), aTarget->m->strLocationFull.raw()),
4192 TRUE /* aCancelable */);
4193 if (FAILED(rc))
4194 throw rc;
4195 }
4196 }
4197
4198 /* setup task object to carry out the operation sync/async */
4199 pTask = new Medium::CreateDiffTask(this, pProgress, aTarget, aVariant,
4200 aMediumLockList,
4201 aWait /* fKeepMediumLockList */);
4202 rc = pTask->rc();
4203 AssertComRC(rc);
4204 if (FAILED(rc))
4205 throw rc;
4206
4207 /* register a task (it will deregister itself when done) */
4208 ++m->numCreateDiffTasks;
4209 Assert(m->numCreateDiffTasks != 0); /* overflow? */
4210
4211 aTarget->m->state = MediumState_Creating;
4212 }
4213 catch (HRESULT aRC) { rc = aRC; }
4214
4215 if (SUCCEEDED(rc))
4216 {
4217 if (aWait)
4218 rc = runNow(pTask, pfNeedsSaveSettings);
4219 else
4220 rc = startThread(pTask);
4221
4222 if (SUCCEEDED(rc) && aProgress != NULL)
4223 *aProgress = pProgress;
4224 }
4225 else if (pTask != NULL)
4226 delete pTask;
4227
4228 return rc;
4229}
4230
4231/**
4232 * Prepares this (source) hard disk, target hard disk and all intermediate hard
4233 * disks for the merge operation.
4234 *
4235 * This method is to be called prior to calling the #mergeTo() to perform
4236 * necessary consistency checks and place involved hard disks to appropriate
4237 * states. If #mergeTo() is not called or fails, the state modifications
4238 * performed by this method must be undone by #cancelMergeTo().
4239 *
4240 * See #mergeTo() for more information about merging.
4241 *
4242 * @param pTarget Target hard disk.
4243 * @param aMachineId Allowed machine attachment. NULL means do not check.
4244 * @param aSnapshotId Allowed snapshot attachment. NULL or empty UUID means
4245 * do not check.
4246 * @param fLockMedia Flag whether to lock the medium lock list or not.
4247 * If set to false and the medium lock list locking fails
4248 * later you must call #cancelMergeTo().
4249 * @param fMergeForward Resulting merge direction (out).
4250 * @param pParentForTarget New parent for target medium after merge (out).
4251 * @param aChildrenToReparent List of children of the source which will have
4252 * to be reparented to the target after merge (out).
4253 * @param aMediumLockList Medium locking information (out).
4254 *
4255 * @note Locks medium tree for reading. Locks this object, aTarget and all
4256 * intermediate hard disks for writing.
4257 */
4258HRESULT Medium::prepareMergeTo(const ComObjPtr<Medium> &pTarget,
4259 const Guid *aMachineId,
4260 const Guid *aSnapshotId,
4261 bool fLockMedia,
4262 bool &fMergeForward,
4263 ComObjPtr<Medium> &pParentForTarget,
4264 MediaList &aChildrenToReparent,
4265 MediumLockList * &aMediumLockList)
4266{
4267 AssertReturn(pTarget != NULL, E_FAIL);
4268 AssertReturn(pTarget != this, E_FAIL);
4269
4270 AutoCaller autoCaller(this);
4271 AssertComRCReturnRC(autoCaller.rc());
4272
4273 AutoCaller targetCaller(pTarget);
4274 AssertComRCReturnRC(targetCaller.rc());
4275
4276 HRESULT rc = S_OK;
4277 fMergeForward = false;
4278 pParentForTarget.setNull();
4279 aChildrenToReparent.clear();
4280 Assert(aMediumLockList == NULL);
4281 aMediumLockList = NULL;
4282
4283 try
4284 {
4285 // locking: we need the tree lock first because we access parent pointers
4286 AutoReadLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
4287
4288 /* more sanity checking and figuring out the merge direction */
4289 ComObjPtr<Medium> pMedium = getParent();
4290 while (!pMedium.isNull() && pMedium != pTarget)
4291 pMedium = pMedium->getParent();
4292 if (pMedium == pTarget)
4293 fMergeForward = false;
4294 else
4295 {
4296 pMedium = pTarget->getParent();
4297 while (!pMedium.isNull() && pMedium != this)
4298 pMedium = pMedium->getParent();
4299 if (pMedium == this)
4300 fMergeForward = true;
4301 else
4302 {
4303 Utf8Str tgtLoc;
4304 {
4305 AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
4306 tgtLoc = pTarget->getLocationFull();
4307 }
4308
4309 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4310 throw setError(E_FAIL,
4311 tr("Hard disks '%s' and '%s' are unrelated"),
4312 m->strLocationFull.raw(), tgtLoc.raw());
4313 }
4314 }
4315
4316 /* Build the lock list. */
4317 aMediumLockList = new MediumLockList();
4318 if (fMergeForward)
4319 rc = pTarget->createMediumLockList(true /* fFailIfInaccessible */,
4320 true /* fMediumLockWrite */,
4321 NULL,
4322 *aMediumLockList);
4323 else
4324 rc = createMediumLockList(true /* fFailIfInaccessible */,
4325 false /* fMediumLockWrite */,
4326 NULL,
4327 *aMediumLockList);
4328 if (FAILED(rc))
4329 throw rc;
4330
4331 /* Sanity checking, must be after lock list creation as it depends on
4332 * valid medium states. The medium objects must be accessible. Only
4333 * do this if immediate locking is requested, otherwise it fails when
4334 * we construct a medium lock list for an already running VM. Snapshot
4335 * deletion uses this to simplify its life. */
4336 if (fLockMedia)
4337 {
4338 {
4339 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4340 if (m->state != MediumState_Created)
4341 throw setStateError();
4342 }
4343 {
4344 AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
4345 if (pTarget->m->state != MediumState_Created)
4346 throw pTarget->setStateError();
4347 }
4348 }
4349
4350 /* check medium attachment and other sanity conditions */
4351 if (fMergeForward)
4352 {
4353 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4354 if (getChildren().size() > 1)
4355 {
4356 throw setError(E_FAIL,
4357 tr("Medium '%s' involved in the merge operation has more than one child medium (%d)"),
4358 m->strLocationFull.raw(), getChildren().size());
4359 }
4360 /* One backreference is only allowed if the machine ID is not empty
4361 * and it matches the machine the image is attached to (including
4362 * the snapshot ID if not empty). */
4363 if ( m->backRefs.size() != 0
4364 && ( !aMachineId
4365 || m->backRefs.size() != 1
4366 || aMachineId->isEmpty()
4367 || *getFirstMachineBackrefId() != *aMachineId
4368 || ( (!aSnapshotId || !aSnapshotId->isEmpty())
4369 && *getFirstMachineBackrefSnapshotId() != *aSnapshotId)))
4370 throw setError(E_FAIL,
4371 tr("Medium '%s' is attached to %d virtual machines"),
4372 m->strLocationFull.raw(), m->backRefs.size());
4373 if (m->type == MediumType_Immutable)
4374 throw setError(E_FAIL,
4375 tr("Medium '%s' is immutable"),
4376 m->strLocationFull.raw());
4377 }
4378 else
4379 {
4380 AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
4381 if (pTarget->getChildren().size() > 1)
4382 {
4383 throw setError(E_FAIL,
4384 tr("Medium '%s' involved in the merge operation has more than one child medium (%d)"),
4385 pTarget->m->strLocationFull.raw(),
4386 pTarget->getChildren().size());
4387 }
4388 if (pTarget->m->type == MediumType_Immutable)
4389 throw setError(E_FAIL,
4390 tr("Medium '%s' is immutable"),
4391 pTarget->m->strLocationFull.raw());
4392 }
4393 ComObjPtr<Medium> pLast(fMergeForward ? (Medium *)pTarget : this);
4394 ComObjPtr<Medium> pLastIntermediate = pLast->getParent();
4395 for (pLast = pLastIntermediate;
4396 !pLast.isNull() && pLast != pTarget && pLast != this;
4397 pLast = pLast->getParent())
4398 {
4399 AutoReadLock alock(pLast COMMA_LOCKVAL_SRC_POS);
4400 if (pLast->getChildren().size() > 1)
4401 {
4402 throw setError(E_FAIL,
4403 tr("Medium '%s' involved in the merge operation has more than one child medium (%d)"),
4404 pLast->m->strLocationFull.raw(),
4405 pLast->getChildren().size());
4406 }
4407 if (pLast->m->backRefs.size() != 0)
4408 throw setError(E_FAIL,
4409 tr("Medium '%s' is attached to %d virtual machines"),
4410 pLast->m->strLocationFull.raw(),
4411 pLast->m->backRefs.size());
4412
4413 }
4414
4415 /* Update medium states appropriately */
4416 if (m->state == MediumState_Created)
4417 {
4418 rc = markForDeletion();
4419 if (FAILED(rc))
4420 throw rc;
4421 }
4422 else
4423 {
4424 if (fLockMedia)
4425 throw setStateError();
4426 else if ( m->state == MediumState_LockedWrite
4427 || m->state == MediumState_LockedRead)
4428 {
4429 /* Either mark it for deletiion in locked state or allow
4430 * others to have done so. */
4431 if (m->preLockState == MediumState_Created)
4432 markLockedForDeletion();
4433 else if (m->preLockState != MediumState_Deleting)
4434 throw setStateError();
4435 }
4436 else
4437 throw setStateError();
4438 }
4439
4440 if (fMergeForward)
4441 {
4442 /* we will need parent to reparent target */
4443 pParentForTarget = m->pParent;
4444 }
4445 else
4446 {
4447 /* we will need to reparent children of the source */
4448 for (MediaList::const_iterator it = getChildren().begin();
4449 it != getChildren().end();
4450 ++it)
4451 {
4452 pMedium = *it;
4453 if (fLockMedia)
4454 {
4455 rc = pMedium->LockWrite(NULL);
4456 if (FAILED(rc))
4457 throw rc;
4458 }
4459
4460 aChildrenToReparent.push_back(pMedium);
4461 }
4462 }
4463 for (pLast = pLastIntermediate;
4464 !pLast.isNull() && pLast != pTarget && pLast != this;
4465 pLast = pLast->getParent())
4466 {
4467 AutoWriteLock alock(pLast COMMA_LOCKVAL_SRC_POS);
4468 if (pLast->m->state == MediumState_Created)
4469 {
4470 rc = pLast->markForDeletion();
4471 if (FAILED(rc))
4472 throw rc;
4473 }
4474 else
4475 throw pLast->setStateError();
4476 }
4477
4478 /* Tweak the lock list in the backward merge case, as the target
4479 * isn't marked to be locked for writing yet. */
4480 if (!fMergeForward)
4481 {
4482 MediumLockList::Base::iterator lockListBegin =
4483 aMediumLockList->GetBegin();
4484 MediumLockList::Base::iterator lockListEnd =
4485 aMediumLockList->GetEnd();
4486 lockListEnd--;
4487 for (MediumLockList::Base::iterator it = lockListBegin;
4488 it != lockListEnd;
4489 ++it)
4490 {
4491 MediumLock &mediumLock = *it;
4492 if (mediumLock.GetMedium() == pTarget)
4493 {
4494 HRESULT rc2 = mediumLock.UpdateLock(true);
4495 AssertComRC(rc2);
4496 break;
4497 }
4498 }
4499 }
4500
4501 if (fLockMedia)
4502 {
4503 rc = aMediumLockList->Lock();
4504 if (FAILED(rc))
4505 {
4506 AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
4507 throw setError(rc,
4508 tr("Failed to lock media when merging to '%s'"),
4509 pTarget->getLocationFull().raw());
4510 }
4511 }
4512 }
4513 catch (HRESULT aRC) { rc = aRC; }
4514
4515 if (FAILED(rc))
4516 {
4517 delete aMediumLockList;
4518 aMediumLockList = NULL;
4519 }
4520
4521 return rc;
4522}
4523
4524/**
4525 * Merges this hard disk to the specified hard disk which must be either its
4526 * direct ancestor or descendant.
4527 *
4528 * Given this hard disk is SOURCE and the specified hard disk is TARGET, we will
4529 * get two varians of the merge operation:
4530 *
4531 * forward merge
4532 * ------------------------->
4533 * [Extra] <- SOURCE <- Intermediate <- TARGET
4534 * Any Del Del LockWr
4535 *
4536 *
4537 * backward merge
4538 * <-------------------------
4539 * TARGET <- Intermediate <- SOURCE <- [Extra]
4540 * LockWr Del Del LockWr
4541 *
4542 * Each diagram shows the involved hard disks on the hard disk chain where
4543 * SOURCE and TARGET belong. Under each hard disk there is a state value which
4544 * the hard disk must have at a time of the mergeTo() call.
4545 *
4546 * The hard disks in the square braces may be absent (e.g. when the forward
4547 * operation takes place and SOURCE is the base hard disk, or when the backward
4548 * merge operation takes place and TARGET is the last child in the chain) but if
4549 * they present they are involved too as shown.
4550 *
4551 * Nor the source hard disk neither intermediate hard disks may be attached to
4552 * any VM directly or in the snapshot, otherwise this method will assert.
4553 *
4554 * The #prepareMergeTo() method must be called prior to this method to place all
4555 * involved to necessary states and perform other consistency checks.
4556 *
4557 * If @a aWait is @c true then this method will perform the operation on the
4558 * calling thread and will not return to the caller until the operation is
4559 * completed. When this method succeeds, all intermediate hard disk objects in
4560 * the chain will be uninitialized, the state of the target hard disk (and all
4561 * involved extra hard disks) will be restored. @a aMediumLockList will not be
4562 * deleted, whether the operation is successful or not. The caller has to do
4563 * this if appropriate. Note that this (source) hard disk is not uninitialized
4564 * because of possible AutoCaller instances held by the caller of this method
4565 * on the current thread. It's therefore the responsibility of the caller to
4566 * call Medium::uninit() after releasing all callers.
4567 *
4568 * If @a aWait is @c false then this method will create a thread to perform the
4569 * operation asynchronously and will return immediately. If the operation
4570 * succeeds, the thread will uninitialize the source hard disk object and all
4571 * intermediate hard disk objects in the chain, reset the state of the target
4572 * hard disk (and all involved extra hard disks) and delete @a aMediumLockList.
4573 * If the operation fails, the thread will only reset the states of all
4574 * involved hard disks and delete @a aMediumLockList.
4575 *
4576 * When this method fails (regardless of the @a aWait mode), it is a caller's
4577 * responsiblity to undo state changes and delete @a aMediumLockList using
4578 * #cancelMergeTo().
4579 *
4580 * If @a aProgress is not NULL but the object it points to is @c null then a new
4581 * progress object will be created and assigned to @a *aProgress on success,
4582 * otherwise the existing progress object is used. If Progress is NULL, then no
4583 * progress object is created/used at all. Note that @a aProgress cannot be
4584 * NULL when @a aWait is @c false (this method will assert in this case).
4585 *
4586 * @param pTarget Target hard disk.
4587 * @param fMergeForward Merge direction.
4588 * @param pParentForTarget New parent for target medium after merge.
4589 * @param aChildrenToReparent List of children of the source which will have
4590 * to be reparented to the target after merge.
4591 * @param aMediumLockList Medium locking information.
4592 * @param aProgress Where to find/store a Progress object to track operation
4593 * completion.
4594 * @param aWait @c true if this method should block instead of creating
4595 * an asynchronous thread.
4596 * @param pfNeedsSaveSettings Optional pointer to a bool that must have been initialized to false and that will be set to true
4597 * by this function if the caller should invoke VirtualBox::saveSettings() because the global settings have changed.
4598 * This only works in "wait" mode; otherwise saveSettings gets called automatically by the thread that was created,
4599 * and this parameter is ignored.
4600 *
4601 * @note Locks the tree lock for writing. Locks the hard disks from the chain
4602 * for writing.
4603 */
4604HRESULT Medium::mergeTo(const ComObjPtr<Medium> &pTarget,
4605 bool fMergeForward,
4606 const ComObjPtr<Medium> &pParentForTarget,
4607 const MediaList &aChildrenToReparent,
4608 MediumLockList *aMediumLockList,
4609 ComObjPtr <Progress> *aProgress,
4610 bool aWait,
4611 bool *pfNeedsSaveSettings)
4612{
4613 AssertReturn(pTarget != NULL, E_FAIL);
4614 AssertReturn(pTarget != this, E_FAIL);
4615 AssertReturn(aMediumLockList != NULL, E_FAIL);
4616 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
4617
4618 AutoCaller autoCaller(this);
4619 if (FAILED(autoCaller.rc())) return autoCaller.rc();
4620
4621 AutoCaller targetCaller(pTarget);
4622 AssertComRCReturnRC(targetCaller.rc());
4623
4624 HRESULT rc = S_OK;
4625 ComObjPtr <Progress> pProgress;
4626 Medium::Task *pTask = NULL;
4627
4628 try
4629 {
4630 if (aProgress != NULL)
4631 {
4632 /* use the existing progress object... */
4633 pProgress = *aProgress;
4634
4635 /* ...but create a new one if it is null */
4636 if (pProgress.isNull())
4637 {
4638 Utf8Str tgtName;
4639 {
4640 AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
4641 tgtName = pTarget->getName();
4642 }
4643
4644 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4645
4646 pProgress.createObject();
4647 rc = pProgress->init(m->pVirtualBox,
4648 static_cast<IMedium*>(this),
4649 BstrFmt(tr("Merging hard disk '%s' to '%s'"),
4650 getName().raw(),
4651 tgtName.raw()),
4652 TRUE /* aCancelable */);
4653 if (FAILED(rc))
4654 throw rc;
4655 }
4656 }
4657
4658 /* setup task object to carry out the operation sync/async */
4659 pTask = new Medium::MergeTask(this, pTarget, fMergeForward,
4660 pParentForTarget, aChildrenToReparent,
4661 pProgress, aMediumLockList,
4662 aWait /* fKeepMediumLockList */);
4663 rc = pTask->rc();
4664 AssertComRC(rc);
4665 if (FAILED(rc))
4666 throw rc;
4667 }
4668 catch (HRESULT aRC) { rc = aRC; }
4669
4670 if (SUCCEEDED(rc))
4671 {
4672 if (aWait)
4673 rc = runNow(pTask, pfNeedsSaveSettings);
4674 else
4675 rc = startThread(pTask);
4676
4677 if (SUCCEEDED(rc) && aProgress != NULL)
4678 *aProgress = pProgress;
4679 }
4680 else if (pTask != NULL)
4681 delete pTask;
4682
4683 return rc;
4684}
4685
4686/**
4687 * Undoes what #prepareMergeTo() did. Must be called if #mergeTo() is not
4688 * called or fails. Frees memory occupied by @a aMediumLockList and unlocks
4689 * the medium objects in @a aChildrenToReparent.
4690 *
4691 * @param aChildrenToReparent List of children of the source which will have
4692 * to be reparented to the target after merge.
4693 * @param aMediumLockList Medium locking information.
4694 *
4695 * @note Locks the hard disks from the chain for writing.
4696 */
4697void Medium::cancelMergeTo(const MediaList &aChildrenToReparent,
4698 MediumLockList *aMediumLockList)
4699{
4700 AutoCaller autoCaller(this);
4701 AssertComRCReturnVoid(autoCaller.rc());
4702
4703 AssertReturnVoid(aMediumLockList != NULL);
4704
4705 /* Revert media marked for deletion to previous state. */
4706 HRESULT rc;
4707 MediumLockList::Base::const_iterator mediumListBegin =
4708 aMediumLockList->GetBegin();
4709 MediumLockList::Base::const_iterator mediumListEnd =
4710 aMediumLockList->GetEnd();
4711 for (MediumLockList::Base::const_iterator it = mediumListBegin;
4712 it != mediumListEnd;
4713 ++it)
4714 {
4715 const MediumLock &mediumLock = *it;
4716 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
4717 AutoWriteLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
4718
4719 if (pMedium->m->state == MediumState_Deleting)
4720 {
4721 rc = pMedium->unmarkForDeletion();
4722 AssertComRC(rc);
4723 }
4724 }
4725
4726 /* the destructor will do the work */
4727 delete aMediumLockList;
4728
4729 /* unlock the children which had to be reparented */
4730 for (MediaList::const_iterator it = aChildrenToReparent.begin();
4731 it != aChildrenToReparent.end();
4732 ++it)
4733 {
4734 const ComObjPtr<Medium> &pMedium = *it;
4735
4736 AutoWriteLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
4737 pMedium->UnlockWrite(NULL);
4738 }
4739}
4740
4741/**
4742 * Checks that the format ID is valid and sets it on success.
4743 *
4744 * Note that this method will caller-reference the format object on success!
4745 * This reference must be released somewhere to let the MediumFormat object be
4746 * uninitialized.
4747 *
4748 * @note Must be called from under this object's write lock.
4749 */
4750HRESULT Medium::setFormat(CBSTR aFormat)
4751{
4752 /* get the format object first */
4753 {
4754 AutoReadLock propsLock(m->pVirtualBox->systemProperties() COMMA_LOCKVAL_SRC_POS);
4755
4756 unconst(m->formatObj)
4757 = m->pVirtualBox->systemProperties()->mediumFormat(aFormat);
4758 if (m->formatObj.isNull())
4759 return setError(E_INVALIDARG,
4760 tr("Invalid hard disk storage format '%ls'"),
4761 aFormat);
4762
4763 /* reference the format permanently to prevent its unexpected
4764 * uninitialization */
4765 HRESULT rc = m->formatObj->addCaller();
4766 AssertComRCReturnRC(rc);
4767
4768 /* get properties (preinsert them as keys in the map). Note that the
4769 * map doesn't grow over the object life time since the set of
4770 * properties is meant to be constant. */
4771
4772 Assert(m->properties.empty());
4773
4774 for (MediumFormat::PropertyList::const_iterator it =
4775 m->formatObj->properties().begin();
4776 it != m->formatObj->properties().end();
4777 ++it)
4778 {
4779 m->properties.insert(std::make_pair(it->name, Bstr::Null));
4780 }
4781 }
4782
4783 unconst(m->strFormat) = aFormat;
4784
4785 return S_OK;
4786}
4787
4788/**
4789 * @note Also reused by Medium::Reset().
4790 *
4791 * @note Caller must hold the media tree write lock!
4792 */
4793HRESULT Medium::canClose()
4794{
4795 Assert(m->pVirtualBox->getMediaTreeLockHandle().isWriteLockOnCurrentThread());
4796
4797 if (getChildren().size() != 0)
4798 return setError(E_FAIL,
4799 tr("Cannot close medium '%s' because it has %d child hard disk(s)"),
4800 m->strLocationFull.raw(), getChildren().size());
4801
4802 return S_OK;
4803}
4804
4805/**
4806 * Calls either VirtualBox::unregisterImage or VirtualBox::unregisterHardDisk depending
4807 * on the device type of this medium.
4808 *
4809 * @param pfNeedsSaveSettings Optional pointer to a bool that must have been initialized to false and that will be set to true
4810 * by this function if the caller should invoke VirtualBox::saveSettings() because the global settings have changed.
4811 *
4812 * @note Caller must have locked the media tree lock for writing!
4813 */
4814HRESULT Medium::unregisterWithVirtualBox(bool *pfNeedsSaveSettings)
4815{
4816 /* Note that we need to de-associate ourselves from the parent to let
4817 * unregisterHardDisk() properly save the registry */
4818
4819 /* we modify mParent and access children */
4820 Assert(m->pVirtualBox->getMediaTreeLockHandle().isWriteLockOnCurrentThread());
4821
4822 Medium *pParentBackup = m->pParent;
4823 AssertReturn(getChildren().size() == 0, E_FAIL);
4824 if (m->pParent)
4825 deparent();
4826
4827 HRESULT rc = E_FAIL;
4828 switch (m->devType)
4829 {
4830 case DeviceType_DVD:
4831 rc = m->pVirtualBox->unregisterImage(this, DeviceType_DVD, pfNeedsSaveSettings);
4832 break;
4833
4834 case DeviceType_Floppy:
4835 rc = m->pVirtualBox->unregisterImage(this, DeviceType_Floppy, pfNeedsSaveSettings);
4836 break;
4837
4838 case DeviceType_HardDisk:
4839 rc = m->pVirtualBox->unregisterHardDisk(this, pfNeedsSaveSettings);
4840 break;
4841
4842 default:
4843 break;
4844 }
4845
4846 if (FAILED(rc))
4847 {
4848 if (pParentBackup)
4849 {
4850 /* re-associate with the parent as we are still relatives in the
4851 * registry */
4852 m->pParent = pParentBackup;
4853 m->pParent->m->llChildren.push_back(this);
4854 }
4855 }
4856
4857 return rc;
4858}
4859
4860/**
4861 * Returns the last error message collected by the vdErrorCall callback and
4862 * resets it.
4863 *
4864 * The error message is returned prepended with a dot and a space, like this:
4865 * <code>
4866 * ". <error_text> (%Rrc)"
4867 * </code>
4868 * to make it easily appendable to a more general error message. The @c %Rrc
4869 * format string is given @a aVRC as an argument.
4870 *
4871 * If there is no last error message collected by vdErrorCall or if it is a
4872 * null or empty string, then this function returns the following text:
4873 * <code>
4874 * " (%Rrc)"
4875 * </code>
4876 *
4877 * @note Doesn't do any object locking; it is assumed that the caller makes sure
4878 * the callback isn't called by more than one thread at a time.
4879 *
4880 * @param aVRC VBox error code to use when no error message is provided.
4881 */
4882Utf8Str Medium::vdError(int aVRC)
4883{
4884 Utf8Str error;
4885
4886 if (m->vdError.isEmpty())
4887 error = Utf8StrFmt(" (%Rrc)", aVRC);
4888 else
4889 error = Utf8StrFmt(".\n%s", m->vdError.raw());
4890
4891 m->vdError.setNull();
4892
4893 return error;
4894}
4895
4896/**
4897 * Error message callback.
4898 *
4899 * Puts the reported error message to the m->vdError field.
4900 *
4901 * @note Doesn't do any object locking; it is assumed that the caller makes sure
4902 * the callback isn't called by more than one thread at a time.
4903 *
4904 * @param pvUser The opaque data passed on container creation.
4905 * @param rc The VBox error code.
4906 * @param RT_SRC_POS_DECL Use RT_SRC_POS.
4907 * @param pszFormat Error message format string.
4908 * @param va Error message arguments.
4909 */
4910/*static*/
4911DECLCALLBACK(void) Medium::vdErrorCall(void *pvUser, int rc, RT_SRC_POS_DECL,
4912 const char *pszFormat, va_list va)
4913{
4914 NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); /* RT_SRC_POS_DECL */
4915
4916 Medium *that = static_cast<Medium*>(pvUser);
4917 AssertReturnVoid(that != NULL);
4918
4919 if (that->m->vdError.isEmpty())
4920 that->m->vdError =
4921 Utf8StrFmt("%s (%Rrc)", Utf8StrFmtVA(pszFormat, va).raw(), rc);
4922 else
4923 that->m->vdError =
4924 Utf8StrFmt("%s.\n%s (%Rrc)", that->m->vdError.raw(),
4925 Utf8StrFmtVA(pszFormat, va).raw(), rc);
4926}
4927
4928/* static */
4929DECLCALLBACK(bool) Medium::vdConfigAreKeysValid(void *pvUser,
4930 const char * /* pszzValid */)
4931{
4932 Medium *that = static_cast<Medium*>(pvUser);
4933 AssertReturn(that != NULL, false);
4934
4935 /* we always return true since the only keys we have are those found in
4936 * VDBACKENDINFO */
4937 return true;
4938}
4939
4940/* static */
4941DECLCALLBACK(int) Medium::vdConfigQuerySize(void *pvUser, const char *pszName,
4942 size_t *pcbValue)
4943{
4944 AssertReturn(VALID_PTR(pcbValue), VERR_INVALID_POINTER);
4945
4946 Medium *that = static_cast<Medium*>(pvUser);
4947 AssertReturn(that != NULL, VERR_GENERAL_FAILURE);
4948
4949 Data::PropertyMap::const_iterator it =
4950 that->m->properties.find(Bstr(pszName));
4951 if (it == that->m->properties.end())
4952 return VERR_CFGM_VALUE_NOT_FOUND;
4953
4954 /* we interpret null values as "no value" in Medium */
4955 if (it->second.isEmpty())
4956 return VERR_CFGM_VALUE_NOT_FOUND;
4957
4958 *pcbValue = it->second.length() + 1 /* include terminator */;
4959
4960 return VINF_SUCCESS;
4961}
4962
4963/* static */
4964DECLCALLBACK(int) Medium::vdConfigQuery(void *pvUser, const char *pszName,
4965 char *pszValue, size_t cchValue)
4966{
4967 AssertReturn(VALID_PTR(pszValue), VERR_INVALID_POINTER);
4968
4969 Medium *that = static_cast<Medium*>(pvUser);
4970 AssertReturn(that != NULL, VERR_GENERAL_FAILURE);
4971
4972 Data::PropertyMap::const_iterator it =
4973 that->m->properties.find(Bstr(pszName));
4974 if (it == that->m->properties.end())
4975 return VERR_CFGM_VALUE_NOT_FOUND;
4976
4977 Utf8Str value = it->second;
4978 if (value.length() >= cchValue)
4979 return VERR_CFGM_NOT_ENOUGH_SPACE;
4980
4981 /* we interpret null values as "no value" in Medium */
4982 if (it->second.isEmpty())
4983 return VERR_CFGM_VALUE_NOT_FOUND;
4984
4985 memcpy(pszValue, value.c_str(), value.length() + 1);
4986
4987 return VINF_SUCCESS;
4988}
4989
4990/**
4991 * Starts a new thread driven by the appropriate Medium::Task::handler() method.
4992 *
4993 * @note When the task is executed by this method, IProgress::notifyComplete()
4994 * is automatically called for the progress object associated with this
4995 * task when the task is finished to signal the operation completion for
4996 * other threads asynchronously waiting for it.
4997 */
4998HRESULT Medium::startThread(Medium::Task *pTask)
4999{
5000#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
5001 /* Extreme paranoia: The calling thread should not hold the medium
5002 * tree lock or any medium lock. Since there is no separate lock class
5003 * for medium objects be even more strict: no other object locks. */
5004 Assert(!AutoLockHoldsLocksInClass(LOCKCLASS_LISTOFMEDIA));
5005 Assert(!AutoLockHoldsLocksInClass(getLockingClass()));
5006#endif
5007
5008 /// @todo use a more descriptive task name
5009 int vrc = RTThreadCreate(NULL, Medium::Task::fntMediumTask, pTask,
5010 0, RTTHREADTYPE_MAIN_HEAVY_WORKER, 0,
5011 "Medium::Task");
5012 if (RT_FAILURE(vrc))
5013 {
5014 delete pTask;
5015 ComAssertMsgRCRet(vrc,
5016 ("Could not create Medium::Task thread (%Rrc)\n",
5017 vrc),
5018 E_FAIL);
5019 }
5020
5021 return S_OK;
5022}
5023
5024/**
5025 * Fix the parent UUID of all children to point to this medium as their
5026 * parent.
5027 */
5028HRESULT Medium::fixParentUuidOfChildren(const MediaList &childrenToReparent)
5029{
5030 MediumLockList mediumLockList;
5031 HRESULT rc = createMediumLockList(true /* fFailIfInaccessible */,
5032 false /* fMediumLockWrite */,
5033 this,
5034 mediumLockList);
5035 AssertComRCReturnRC(rc);
5036
5037 try
5038 {
5039 PVBOXHDD hdd;
5040 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
5041 ComAssertRCThrow(vrc, E_FAIL);
5042
5043 try
5044 {
5045 MediumLockList::Base::iterator lockListBegin =
5046 mediumLockList.GetBegin();
5047 MediumLockList::Base::iterator lockListEnd =
5048 mediumLockList.GetEnd();
5049 for (MediumLockList::Base::iterator it = lockListBegin;
5050 it != lockListEnd;
5051 ++it)
5052 {
5053 MediumLock &mediumLock = *it;
5054 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
5055 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
5056
5057 // open the image
5058 vrc = VDOpen(hdd,
5059 pMedium->m->strFormat.c_str(),
5060 pMedium->m->strLocationFull.c_str(),
5061 VD_OPEN_FLAGS_READONLY,
5062 pMedium->m->vdDiskIfaces);
5063 if (RT_FAILURE(vrc))
5064 throw vrc;
5065 }
5066
5067 for (MediaList::const_iterator it = childrenToReparent.begin();
5068 it != childrenToReparent.end();
5069 ++it)
5070 {
5071 /* VD_OPEN_FLAGS_INFO since UUID is wrong yet */
5072 vrc = VDOpen(hdd,
5073 (*it)->m->strFormat.c_str(),
5074 (*it)->m->strLocationFull.c_str(),
5075 VD_OPEN_FLAGS_INFO,
5076 (*it)->m->vdDiskIfaces);
5077 if (RT_FAILURE(vrc))
5078 throw vrc;
5079
5080 vrc = VDSetParentUuid(hdd, VD_LAST_IMAGE, m->id);
5081 if (RT_FAILURE(vrc))
5082 throw vrc;
5083
5084 vrc = VDClose(hdd, false /* fDelete */);
5085 if (RT_FAILURE(vrc))
5086 throw vrc;
5087
5088 (*it)->UnlockWrite(NULL);
5089 }
5090 }
5091 catch (HRESULT aRC) { rc = aRC; }
5092 catch (int aVRC)
5093 {
5094 throw setError(E_FAIL,
5095 tr("Could not update medium UUID references to parent '%s' (%s)"),
5096 m->strLocationFull.raw(),
5097 vdError(aVRC).raw());
5098 }
5099
5100 VDDestroy(hdd);
5101 }
5102 catch (HRESULT aRC) { rc = aRC; }
5103
5104 return rc;
5105}
5106
5107/**
5108 * Runs Medium::Task::handler() on the current thread instead of creating
5109 * a new one.
5110 *
5111 * This call implies that it is made on another temporary thread created for
5112 * some asynchronous task. Avoid calling it from a normal thread since the task
5113 * operations are potentially lengthy and will block the calling thread in this
5114 * case.
5115 *
5116 * @note When the task is executed by this method, IProgress::notifyComplete()
5117 * is not called for the progress object associated with this task when
5118 * the task is finished. Instead, the result of the operation is returned
5119 * by this method directly and it's the caller's responsibility to
5120 * complete the progress object in this case.
5121 */
5122HRESULT Medium::runNow(Medium::Task *pTask,
5123 bool *pfNeedsSaveSettings)
5124{
5125#ifdef VBOX_WITH_MAIN_LOCK_VALIDATION
5126 /* Extreme paranoia: The calling thread should not hold the medium
5127 * tree lock or any medium lock. Since there is no separate lock class
5128 * for medium objects be even more strict: no other object locks. */
5129 Assert(!AutoLockHoldsLocksInClass(LOCKCLASS_LISTOFMEDIA));
5130 Assert(!AutoLockHoldsLocksInClass(getLockingClass()));
5131#endif
5132
5133 pTask->m_pfNeedsSaveSettings = pfNeedsSaveSettings;
5134
5135 /* NIL_RTTHREAD indicates synchronous call. */
5136 return (HRESULT)Medium::Task::fntMediumTask(NIL_RTTHREAD, pTask);
5137}
5138
5139/**
5140 * Implementation code for the "create base" task.
5141 *
5142 * This only gets started from Medium::CreateBaseStorage() and always runs
5143 * asynchronously. As a result, we always save the VirtualBox.xml file when
5144 * we're done here.
5145 *
5146 * @param task
5147 * @return
5148 */
5149HRESULT Medium::taskCreateBaseHandler(Medium::CreateBaseTask &task)
5150{
5151 HRESULT rc = S_OK;
5152
5153 /* these parameters we need after creation */
5154 uint64_t size = 0, logicalSize = 0;
5155 bool fGenerateUuid = false;
5156
5157 try
5158 {
5159 AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
5160
5161 /* The object may request a specific UUID (through a special form of
5162 * the setLocation() argument). Otherwise we have to generate it */
5163 Guid id = m->id;
5164 fGenerateUuid = id.isEmpty();
5165 if (fGenerateUuid)
5166 {
5167 id.create();
5168 /* VirtualBox::registerHardDisk() will need UUID */
5169 unconst(m->id) = id;
5170 }
5171
5172 Utf8Str format(m->strFormat);
5173 Utf8Str location(m->strLocationFull);
5174 uint64_t capabilities = m->formatObj->capabilities();
5175 ComAssertThrow(capabilities & ( VD_CAP_CREATE_FIXED
5176 | VD_CAP_CREATE_DYNAMIC), E_FAIL);
5177 Assert(m->state == MediumState_Creating);
5178
5179 PVBOXHDD hdd;
5180 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
5181 ComAssertRCThrow(vrc, E_FAIL);
5182
5183 /* unlock before the potentially lengthy operation */
5184 thisLock.release();
5185
5186 try
5187 {
5188 /* ensure the directory exists */
5189 rc = VirtualBox::ensureFilePathExists(location);
5190 if (FAILED(rc))
5191 throw rc;
5192
5193 PDMMEDIAGEOMETRY geo = { 0, 0, 0 }; /* auto-detect */
5194
5195 vrc = VDCreateBase(hdd,
5196 format.c_str(),
5197 location.c_str(),
5198 task.mSize * _1M,
5199 task.mVariant,
5200 NULL,
5201 &geo,
5202 &geo,
5203 id.raw(),
5204 VD_OPEN_FLAGS_NORMAL,
5205 NULL,
5206 task.mVDOperationIfaces);
5207 if (RT_FAILURE(vrc))
5208 throw setError(E_FAIL,
5209 tr("Could not create the hard disk storage unit '%s'%s"),
5210 location.raw(), vdError(vrc).raw());
5211
5212 size = VDGetFileSize(hdd, 0);
5213 logicalSize = VDGetSize(hdd, 0) / _1M;
5214 }
5215 catch (HRESULT aRC) { rc = aRC; }
5216
5217 VDDestroy(hdd);
5218 }
5219 catch (HRESULT aRC) { rc = aRC; }
5220
5221 if (SUCCEEDED(rc))
5222 {
5223 /* register with mVirtualBox as the last step and move to
5224 * Created state only on success (leaving an orphan file is
5225 * better than breaking media registry consistency) */
5226 bool fNeedsSaveSettings = false;
5227 AutoWriteLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
5228 rc = m->pVirtualBox->registerHardDisk(this, &fNeedsSaveSettings);
5229 treeLock.release();
5230
5231 if (fNeedsSaveSettings)
5232 {
5233 AutoWriteLock vboxlock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
5234 m->pVirtualBox->saveSettings();
5235 }
5236 }
5237
5238 // reenter the lock before changing state
5239 AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
5240
5241 if (SUCCEEDED(rc))
5242 {
5243 m->state = MediumState_Created;
5244
5245 m->size = size;
5246 m->logicalSize = logicalSize;
5247 }
5248 else
5249 {
5250 /* back to NotCreated on failure */
5251 m->state = MediumState_NotCreated;
5252
5253 /* reset UUID to prevent it from being reused next time */
5254 if (fGenerateUuid)
5255 unconst(m->id).clear();
5256 }
5257
5258 return rc;
5259}
5260
5261/**
5262 * Implementation code for the "create diff" task.
5263 *
5264 * This task always gets started from Medium::createDiffStorage() and can run
5265 * synchronously or asynchronously depending on the "wait" parameter passed to
5266 * that function. If we run synchronously, the caller expects the bool
5267 * *pfNeedsSaveSettings to be set before returning; otherwise (in asynchronous
5268 * mode), we save the settings ourselves.
5269 *
5270 * @param task
5271 * @return
5272 */
5273HRESULT Medium::taskCreateDiffHandler(Medium::CreateDiffTask &task)
5274{
5275 HRESULT rc = S_OK;
5276
5277 bool fNeedsSaveSettings = false;
5278
5279 const ComObjPtr<Medium> &pTarget = task.mTarget;
5280
5281 uint64_t size = 0, logicalSize = 0;
5282 bool fGenerateUuid = false;
5283
5284 try
5285 {
5286 /* Lock both in {parent,child} order. */
5287 AutoMultiWriteLock2 mediaLock(this, pTarget COMMA_LOCKVAL_SRC_POS);
5288
5289 /* The object may request a specific UUID (through a special form of
5290 * the setLocation() argument). Otherwise we have to generate it */
5291 Guid targetId = pTarget->m->id;
5292 fGenerateUuid = targetId.isEmpty();
5293 if (fGenerateUuid)
5294 {
5295 targetId.create();
5296 /* VirtualBox::registerHardDisk() will need UUID */
5297 unconst(pTarget->m->id) = targetId;
5298 }
5299
5300 Guid id = m->id;
5301
5302 Utf8Str targetFormat(pTarget->m->strFormat);
5303 Utf8Str targetLocation(pTarget->m->strLocationFull);
5304 uint64_t capabilities = m->formatObj->capabilities();
5305 ComAssertThrow(capabilities & VD_CAP_CREATE_DYNAMIC, E_FAIL);
5306
5307 Assert(pTarget->m->state == MediumState_Creating);
5308 Assert(m->state == MediumState_LockedRead);
5309
5310 PVBOXHDD hdd;
5311 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
5312 ComAssertRCThrow(vrc, E_FAIL);
5313
5314 /* the two media are now protected by their non-default states;
5315 * unlock the media before the potentially lengthy operation */
5316 mediaLock.release();
5317
5318 try
5319 {
5320 /* Open all hard disk images in the target chain but the last. */
5321 MediumLockList::Base::const_iterator targetListBegin =
5322 task.mpMediumLockList->GetBegin();
5323 MediumLockList::Base::const_iterator targetListEnd =
5324 task.mpMediumLockList->GetEnd();
5325 for (MediumLockList::Base::const_iterator it = targetListBegin;
5326 it != targetListEnd;
5327 ++it)
5328 {
5329 const MediumLock &mediumLock = *it;
5330 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
5331
5332 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
5333
5334 /* Skip over the target diff image */
5335 if (pMedium->m->state == MediumState_Creating)
5336 continue;
5337
5338 /* sanity check */
5339 Assert(pMedium->m->state == MediumState_LockedRead);
5340
5341 /* Open all images in appropriate mode. */
5342 vrc = VDOpen(hdd,
5343 pMedium->m->strFormat.c_str(),
5344 pMedium->m->strLocationFull.c_str(),
5345 VD_OPEN_FLAGS_READONLY,
5346 pMedium->m->vdDiskIfaces);
5347 if (RT_FAILURE(vrc))
5348 throw setError(E_FAIL,
5349 tr("Could not open the hard disk storage unit '%s'%s"),
5350 pMedium->m->strLocationFull.raw(),
5351 vdError(vrc).raw());
5352 }
5353
5354 /* ensure the target directory exists */
5355 rc = VirtualBox::ensureFilePathExists(targetLocation);
5356 if (FAILED(rc))
5357 throw rc;
5358
5359 vrc = VDCreateDiff(hdd,
5360 targetFormat.c_str(),
5361 targetLocation.c_str(),
5362 task.mVariant | VD_IMAGE_FLAGS_DIFF,
5363 NULL,
5364 targetId.raw(),
5365 id.raw(),
5366 VD_OPEN_FLAGS_NORMAL,
5367 pTarget->m->vdDiskIfaces,
5368 task.mVDOperationIfaces);
5369 if (RT_FAILURE(vrc))
5370 throw setError(E_FAIL,
5371 tr("Could not create the differencing hard disk storage unit '%s'%s"),
5372 targetLocation.raw(), vdError(vrc).raw());
5373
5374 size = VDGetFileSize(hdd, VD_LAST_IMAGE);
5375 logicalSize = VDGetSize(hdd, VD_LAST_IMAGE) / _1M;
5376 }
5377 catch (HRESULT aRC) { rc = aRC; }
5378
5379 VDDestroy(hdd);
5380 }
5381 catch (HRESULT aRC) { rc = aRC; }
5382
5383 if (SUCCEEDED(rc))
5384 {
5385 AutoWriteLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
5386
5387 Assert(pTarget->m->pParent.isNull());
5388
5389 /* associate the child with the parent */
5390 pTarget->m->pParent = this;
5391 m->llChildren.push_back(pTarget);
5392
5393 /** @todo r=klaus neither target nor base() are locked,
5394 * potential race! */
5395 /* diffs for immutable hard disks are auto-reset by default */
5396 pTarget->m->autoReset = (getBase()->m->type == MediumType_Immutable);
5397
5398 /* register with mVirtualBox as the last step and move to
5399 * Created state only on success (leaving an orphan file is
5400 * better than breaking media registry consistency) */
5401 rc = m->pVirtualBox->registerHardDisk(pTarget, &fNeedsSaveSettings);
5402
5403 if (FAILED(rc))
5404 /* break the parent association on failure to register */
5405 deparent();
5406 }
5407
5408 AutoMultiWriteLock2 mediaLock(this, pTarget COMMA_LOCKVAL_SRC_POS);
5409
5410 if (SUCCEEDED(rc))
5411 {
5412 pTarget->m->state = MediumState_Created;
5413
5414 pTarget->m->size = size;
5415 pTarget->m->logicalSize = logicalSize;
5416 }
5417 else
5418 {
5419 /* back to NotCreated on failure */
5420 pTarget->m->state = MediumState_NotCreated;
5421
5422 pTarget->m->autoReset = false;
5423
5424 /* reset UUID to prevent it from being reused next time */
5425 if (fGenerateUuid)
5426 unconst(pTarget->m->id).clear();
5427 }
5428
5429 // deregister the task registered in createDiffStorage()
5430 Assert(m->numCreateDiffTasks != 0);
5431 --m->numCreateDiffTasks;
5432
5433 if (task.isAsync())
5434 {
5435 if (fNeedsSaveSettings)
5436 {
5437 // save the global settings; for that we should hold only the VirtualBox lock
5438 mediaLock.release();
5439 AutoWriteLock vboxlock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
5440 m->pVirtualBox->saveSettings();
5441 }
5442 }
5443 else
5444 // synchronous mode: report save settings result to caller
5445 if (task.m_pfNeedsSaveSettings)
5446 *task.m_pfNeedsSaveSettings = fNeedsSaveSettings;
5447
5448 /* Note that in sync mode, it's the caller's responsibility to
5449 * unlock the hard disk */
5450
5451 return rc;
5452}
5453
5454/**
5455 * Implementation code for the "merge" task.
5456 *
5457 * This task always gets started from Medium::mergeTo() and can run
5458 * synchronously or asynchrously depending on the "wait" parameter passed to
5459 * that function. If we run synchronously, the caller expects the bool
5460 * *pfNeedsSaveSettings to be set before returning; otherwise (in asynchronous
5461 * mode), we save the settings ourselves.
5462 *
5463 * @param task
5464 * @return
5465 */
5466HRESULT Medium::taskMergeHandler(Medium::MergeTask &task)
5467{
5468 HRESULT rc = S_OK;
5469
5470 const ComObjPtr<Medium> &pTarget = task.mTarget;
5471
5472 try
5473 {
5474 PVBOXHDD hdd;
5475 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
5476 ComAssertRCThrow(vrc, E_FAIL);
5477
5478 try
5479 {
5480 // Similar code appears in SessionMachine::onlineMergeMedium, so
5481 // if you make any changes below check whether they are applicable
5482 // in that context as well.
5483
5484 unsigned uTargetIdx = VD_LAST_IMAGE;
5485 unsigned uSourceIdx = VD_LAST_IMAGE;
5486 /* Open all hard disks in the chain. */
5487 MediumLockList::Base::iterator lockListBegin =
5488 task.mpMediumLockList->GetBegin();
5489 MediumLockList::Base::iterator lockListEnd =
5490 task.mpMediumLockList->GetEnd();
5491 unsigned i = 0;
5492 for (MediumLockList::Base::iterator it = lockListBegin;
5493 it != lockListEnd;
5494 ++it)
5495 {
5496 MediumLock &mediumLock = *it;
5497 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
5498
5499 if (pMedium == this)
5500 uSourceIdx = i;
5501 else if (pMedium == pTarget)
5502 uTargetIdx = i;
5503
5504 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
5505
5506 /*
5507 * complex sanity (sane complexity)
5508 *
5509 * The current image must be in the Deleting (image is merged)
5510 * or LockedRead (parent image) state if it is not the target.
5511 * If it is the target it must be in the LockedWrite state.
5512 */
5513 Assert( ( pMedium != pTarget
5514 && ( pMedium->m->state == MediumState_Deleting
5515 || pMedium->m->state == MediumState_LockedRead))
5516 || ( pMedium == pTarget
5517 && pMedium->m->state == MediumState_LockedWrite));
5518
5519 /*
5520 * Image must be the target, in the LockedRead state
5521 * or Deleting state where it is not allowed to be attached
5522 * to a virtual machine.
5523 */
5524 Assert( pMedium == pTarget
5525 || pMedium->m->state == MediumState_LockedRead
5526 || ( pMedium->m->backRefs.size() == 0
5527 && pMedium->m->state == MediumState_Deleting));
5528 /* The source medium must be in Deleting state. */
5529 Assert( pMedium != this
5530 || pMedium->m->state == MediumState_Deleting);
5531
5532 unsigned uOpenFlags = 0;
5533
5534 if ( pMedium->m->state == MediumState_LockedRead
5535 || pMedium->m->state == MediumState_Deleting)
5536 uOpenFlags = VD_OPEN_FLAGS_READONLY;
5537
5538 /* Open the image */
5539 vrc = VDOpen(hdd,
5540 pMedium->m->strFormat.c_str(),
5541 pMedium->m->strLocationFull.c_str(),
5542 uOpenFlags,
5543 pMedium->m->vdDiskIfaces);
5544 if (RT_FAILURE(vrc))
5545 throw vrc;
5546
5547 i++;
5548 }
5549
5550 ComAssertThrow( uSourceIdx != VD_LAST_IMAGE
5551 && uTargetIdx != VD_LAST_IMAGE, E_FAIL);
5552
5553 vrc = VDMerge(hdd, uSourceIdx, uTargetIdx,
5554 task.mVDOperationIfaces);
5555 if (RT_FAILURE(vrc))
5556 throw vrc;
5557
5558 /* update parent UUIDs */
5559 if (!task.mfMergeForward)
5560 {
5561 /* we need to update UUIDs of all source's children
5562 * which cannot be part of the container at once so
5563 * add each one in there individually */
5564 if (task.mChildrenToReparent.size() > 0)
5565 {
5566 for (MediaList::const_iterator it = task.mChildrenToReparent.begin();
5567 it != task.mChildrenToReparent.end();
5568 ++it)
5569 {
5570 /* VD_OPEN_FLAGS_INFO since UUID is wrong yet */
5571 vrc = VDOpen(hdd,
5572 (*it)->m->strFormat.c_str(),
5573 (*it)->m->strLocationFull.c_str(),
5574 VD_OPEN_FLAGS_INFO,
5575 (*it)->m->vdDiskIfaces);
5576 if (RT_FAILURE(vrc))
5577 throw vrc;
5578
5579 vrc = VDSetParentUuid(hdd, VD_LAST_IMAGE,
5580 pTarget->m->id);
5581 if (RT_FAILURE(vrc))
5582 throw vrc;
5583
5584 vrc = VDClose(hdd, false /* fDelete */);
5585 if (RT_FAILURE(vrc))
5586 throw vrc;
5587
5588 (*it)->UnlockWrite(NULL);
5589 }
5590 }
5591 }
5592 }
5593 catch (HRESULT aRC) { rc = aRC; }
5594 catch (int aVRC)
5595 {
5596 throw setError(E_FAIL,
5597 tr("Could not merge the hard disk '%s' to '%s'%s"),
5598 m->strLocationFull.raw(),
5599 pTarget->m->strLocationFull.raw(),
5600 vdError(aVRC).raw());
5601 }
5602
5603 VDDestroy(hdd);
5604 }
5605 catch (HRESULT aRC) { rc = aRC; }
5606
5607 HRESULT rc2;
5608
5609 if (SUCCEEDED(rc))
5610 {
5611 /* all hard disks but the target were successfully deleted by
5612 * VDMerge; reparent the last one and uninitialize deleted media. */
5613
5614 AutoWriteLock treeLock(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
5615
5616 if (task.mfMergeForward)
5617 {
5618 /* first, unregister the target since it may become a base
5619 * hard disk which needs re-registration */
5620 rc2 = m->pVirtualBox->unregisterHardDisk(pTarget, NULL /*&fNeedsSaveSettings*/);
5621 AssertComRC(rc2);
5622
5623 /* then, reparent it and disconnect the deleted branch at
5624 * both ends (chain->parent() is source's parent) */
5625 pTarget->deparent();
5626 pTarget->m->pParent = task.mParentForTarget;
5627 if (pTarget->m->pParent)
5628 {
5629 pTarget->m->pParent->m->llChildren.push_back(pTarget);
5630 deparent();
5631 }
5632
5633 /* then, register again */
5634 rc2 = m->pVirtualBox->registerHardDisk(pTarget, NULL /*&fNeedsSaveSettings*/);
5635 AssertComRC(rc2);
5636 }
5637 else
5638 {
5639 Assert(pTarget->getChildren().size() == 1);
5640 Medium *targetChild = pTarget->getChildren().front();
5641
5642 /* disconnect the deleted branch at the elder end */
5643 targetChild->deparent();
5644
5645 /* reparent source's children and disconnect the deleted
5646 * branch at the younger end */
5647 if (task.mChildrenToReparent.size() > 0)
5648 {
5649 /* obey {parent,child} lock order */
5650 AutoWriteLock sourceLock(this COMMA_LOCKVAL_SRC_POS);
5651
5652 for (MediaList::const_iterator it = task.mChildrenToReparent.begin();
5653 it != task.mChildrenToReparent.end();
5654 it++)
5655 {
5656 Medium *pMedium = *it;
5657 AutoWriteLock childLock(pMedium COMMA_LOCKVAL_SRC_POS);
5658
5659 pMedium->deparent(); // removes pMedium from source
5660 pMedium->setParent(pTarget);
5661 }
5662 }
5663 }
5664
5665 /* unregister and uninitialize all hard disks removed by the merge */
5666 MediumLockList::Base::iterator lockListBegin =
5667 task.mpMediumLockList->GetBegin();
5668 MediumLockList::Base::iterator lockListEnd =
5669 task.mpMediumLockList->GetEnd();
5670 for (MediumLockList::Base::iterator it = lockListBegin;
5671 it != lockListEnd;
5672 )
5673 {
5674 MediumLock &mediumLock = *it;
5675 /* Create a real copy of the medium pointer, as the medium
5676 * lock deletion below would invalidate the referenced object. */
5677 const ComObjPtr<Medium> pMedium = mediumLock.GetMedium();
5678
5679 /* The target and all images not merged (readonly) are skipped */
5680 if ( pMedium == pTarget
5681 || pMedium->m->state == MediumState_LockedRead)
5682 {
5683 ++it;
5684 continue;
5685 }
5686
5687 rc2 = pMedium->m->pVirtualBox->unregisterHardDisk(pMedium,
5688 NULL /*pfNeedsSaveSettings*/);
5689 AssertComRC(rc2);
5690
5691 /* now, uninitialize the deleted hard disk (note that
5692 * due to the Deleting state, uninit() will not touch
5693 * the parent-child relationship so we need to
5694 * uninitialize each disk individually) */
5695
5696 /* note that the operation initiator hard disk (which is
5697 * normally also the source hard disk) is a special case
5698 * -- there is one more caller added by Task to it which
5699 * we must release. Also, if we are in sync mode, the
5700 * caller may still hold an AutoCaller instance for it
5701 * and therefore we cannot uninit() it (it's therefore
5702 * the caller's responsibility) */
5703 if (pMedium == this)
5704 {
5705 Assert(getChildren().size() == 0);
5706 Assert(m->backRefs.size() == 0);
5707 task.mMediumCaller.release();
5708 }
5709
5710 /* Delete the medium lock list entry, which also releases the
5711 * caller added by MergeChain before uninit() and updates the
5712 * iterator to point to the right place. */
5713 rc2 = task.mpMediumLockList->RemoveByIterator(it);
5714 AssertComRC(rc2);
5715
5716 if (task.isAsync() || pMedium != this)
5717 pMedium->uninit();
5718 }
5719 }
5720
5721 if (task.isAsync())
5722 {
5723 // in asynchronous mode, save settings now
5724 // for that we should hold only the VirtualBox lock
5725 AutoWriteLock vboxlock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
5726 m->pVirtualBox->saveSettings();
5727 }
5728 else
5729 // synchronous mode: report save settings result to caller
5730 if (task.m_pfNeedsSaveSettings)
5731 *task.m_pfNeedsSaveSettings = true;
5732
5733 if (FAILED(rc))
5734 {
5735 /* Here we come if either VDMerge() failed (in which case we
5736 * assume that it tried to do everything to make a further
5737 * retry possible -- e.g. not deleted intermediate hard disks
5738 * and so on) or VirtualBox::saveSettings() failed (where we
5739 * should have the original tree but with intermediate storage
5740 * units deleted by VDMerge()). We have to only restore states
5741 * (through the MergeChain dtor) unless we are run synchronously
5742 * in which case it's the responsibility of the caller as stated
5743 * in the mergeTo() docs. The latter also implies that we
5744 * don't own the merge chain, so release it in this case. */
5745 if (task.isAsync())
5746 {
5747 Assert(task.mChildrenToReparent.size() == 0);
5748 cancelMergeTo(task.mChildrenToReparent, task.mpMediumLockList);
5749 }
5750 }
5751
5752 return rc;
5753}
5754
5755/**
5756 * Implementation code for the "clone" task.
5757 *
5758 * This only gets started from Medium::CloneTo() and always runs asynchronously.
5759 * As a result, we always save the VirtualBox.xml file when we're done here.
5760 *
5761 * @param task
5762 * @return
5763 */
5764HRESULT Medium::taskCloneHandler(Medium::CloneTask &task)
5765{
5766 HRESULT rc = S_OK;
5767
5768 const ComObjPtr<Medium> &pTarget = task.mTarget;
5769 const ComObjPtr<Medium> &pParent = task.mParent;
5770
5771 bool fCreatingTarget = false;
5772
5773 uint64_t size = 0, logicalSize = 0;
5774 bool fGenerateUuid = false;
5775
5776 try
5777 {
5778 /* Lock all in {parent,child} order. The lock is also used as a
5779 * signal from the task initiator (which releases it only after
5780 * RTThreadCreate()) that we can start the job. */
5781 AutoMultiWriteLock3 thisLock(this, pTarget, pParent COMMA_LOCKVAL_SRC_POS);
5782
5783 fCreatingTarget = pTarget->m->state == MediumState_Creating;
5784
5785 /* The object may request a specific UUID (through a special form of
5786 * the setLocation() argument). Otherwise we have to generate it */
5787 Guid targetId = pTarget->m->id;
5788 fGenerateUuid = targetId.isEmpty();
5789 if (fGenerateUuid)
5790 {
5791 targetId.create();
5792 /* VirtualBox::registerHardDisk() will need UUID */
5793 unconst(pTarget->m->id) = targetId;
5794 }
5795
5796 PVBOXHDD hdd;
5797 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
5798 ComAssertRCThrow(vrc, E_FAIL);
5799
5800 try
5801 {
5802 /* Open all hard disk images in the source chain. */
5803 MediumLockList::Base::const_iterator sourceListBegin =
5804 task.mpSourceMediumLockList->GetBegin();
5805 MediumLockList::Base::const_iterator sourceListEnd =
5806 task.mpSourceMediumLockList->GetEnd();
5807 for (MediumLockList::Base::const_iterator it = sourceListBegin;
5808 it != sourceListEnd;
5809 ++it)
5810 {
5811 const MediumLock &mediumLock = *it;
5812 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
5813 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
5814
5815 /* sanity check */
5816 Assert(pMedium->m->state == MediumState_LockedRead);
5817
5818 /** Open all images in read-only mode. */
5819 vrc = VDOpen(hdd,
5820 pMedium->m->strFormat.c_str(),
5821 pMedium->m->strLocationFull.c_str(),
5822 VD_OPEN_FLAGS_READONLY,
5823 pMedium->m->vdDiskIfaces);
5824 if (RT_FAILURE(vrc))
5825 throw setError(E_FAIL,
5826 tr("Could not open the hard disk storage unit '%s'%s"),
5827 pMedium->m->strLocationFull.raw(),
5828 vdError(vrc).raw());
5829 }
5830
5831 Utf8Str targetFormat(pTarget->m->strFormat);
5832 Utf8Str targetLocation(pTarget->m->strLocationFull);
5833
5834 Assert( pTarget->m->state == MediumState_Creating
5835 || pTarget->m->state == MediumState_LockedWrite);
5836 Assert(m->state == MediumState_LockedRead);
5837 Assert(pParent.isNull() || pParent->m->state == MediumState_LockedRead);
5838
5839 /* unlock before the potentially lengthy operation */
5840 thisLock.release();
5841
5842 /* ensure the target directory exists */
5843 rc = VirtualBox::ensureFilePathExists(targetLocation);
5844 if (FAILED(rc))
5845 throw rc;
5846
5847 PVBOXHDD targetHdd;
5848 vrc = VDCreate(m->vdDiskIfaces, &targetHdd);
5849 ComAssertRCThrow(vrc, E_FAIL);
5850
5851 try
5852 {
5853 /* Open all hard disk images in the target chain. */
5854 MediumLockList::Base::const_iterator targetListBegin =
5855 task.mpTargetMediumLockList->GetBegin();
5856 MediumLockList::Base::const_iterator targetListEnd =
5857 task.mpTargetMediumLockList->GetEnd();
5858 for (MediumLockList::Base::const_iterator it = targetListBegin;
5859 it != targetListEnd;
5860 ++it)
5861 {
5862 const MediumLock &mediumLock = *it;
5863 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
5864
5865 /* If the target medium is not created yet there's no
5866 * reason to open it. */
5867 if (pMedium == pTarget && fCreatingTarget)
5868 continue;
5869
5870 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
5871
5872 /* sanity check */
5873 Assert( pMedium->m->state == MediumState_LockedRead
5874 || pMedium->m->state == MediumState_LockedWrite);
5875
5876 /* Open all images in appropriate mode. */
5877 vrc = VDOpen(targetHdd,
5878 pMedium->m->strFormat.c_str(),
5879 pMedium->m->strLocationFull.c_str(),
5880 (pMedium->m->state == MediumState_LockedWrite) ? VD_OPEN_FLAGS_NORMAL : VD_OPEN_FLAGS_READONLY,
5881 pMedium->m->vdDiskIfaces);
5882 if (RT_FAILURE(vrc))
5883 throw setError(E_FAIL,
5884 tr("Could not open the hard disk storage unit '%s'%s"),
5885 pMedium->m->strLocationFull.raw(),
5886 vdError(vrc).raw());
5887 }
5888
5889 /** @todo r=klaus target isn't locked, race getting the state */
5890 vrc = VDCopy(hdd,
5891 VD_LAST_IMAGE,
5892 targetHdd,
5893 targetFormat.c_str(),
5894 (fCreatingTarget) ? targetLocation.raw() : (char *)NULL,
5895 false,
5896 0,
5897 task.mVariant,
5898 targetId.raw(),
5899 NULL,
5900 pTarget->m->vdDiskIfaces,
5901 task.mVDOperationIfaces);
5902 if (RT_FAILURE(vrc))
5903 throw setError(E_FAIL,
5904 tr("Could not create the clone hard disk '%s'%s"),
5905 targetLocation.raw(), vdError(vrc).raw());
5906
5907 size = VDGetFileSize(targetHdd, VD_LAST_IMAGE);
5908 logicalSize = VDGetSize(targetHdd, VD_LAST_IMAGE) / _1M;
5909 }
5910 catch (HRESULT aRC) { rc = aRC; }
5911
5912 VDDestroy(targetHdd);
5913 }
5914 catch (HRESULT aRC) { rc = aRC; }
5915
5916 VDDestroy(hdd);
5917 }
5918 catch (HRESULT aRC) { rc = aRC; }
5919
5920 /* Only do the parent changes for newly created images. */
5921 if (SUCCEEDED(rc) && fCreatingTarget)
5922 {
5923 /* we set mParent & children() */
5924 AutoWriteLock alock2(m->pVirtualBox->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
5925
5926 Assert(pTarget->m->pParent.isNull());
5927
5928 if (pParent)
5929 {
5930 /* associate the clone with the parent and deassociate
5931 * from VirtualBox */
5932 pTarget->m->pParent = pParent;
5933 pParent->m->llChildren.push_back(pTarget);
5934
5935 /* register with mVirtualBox as the last step and move to
5936 * Created state only on success (leaving an orphan file is
5937 * better than breaking media registry consistency) */
5938 rc = pParent->m->pVirtualBox->registerHardDisk(pTarget, NULL /* pfNeedsSaveSettings */);
5939
5940 if (FAILED(rc))
5941 /* break parent association on failure to register */
5942 pTarget->deparent(); // removes target from parent
5943 }
5944 else
5945 {
5946 /* just register */
5947 rc = m->pVirtualBox->registerHardDisk(pTarget, NULL /* pfNeedsSaveSettings */);
5948 }
5949 }
5950
5951 if (fCreatingTarget)
5952 {
5953 AutoWriteLock mLock(pTarget COMMA_LOCKVAL_SRC_POS);
5954
5955 if (SUCCEEDED(rc))
5956 {
5957 pTarget->m->state = MediumState_Created;
5958
5959 pTarget->m->size = size;
5960 pTarget->m->logicalSize = logicalSize;
5961 }
5962 else
5963 {
5964 /* back to NotCreated on failure */
5965 pTarget->m->state = MediumState_NotCreated;
5966
5967 /* reset UUID to prevent it from being reused next time */
5968 if (fGenerateUuid)
5969 unconst(pTarget->m->id).clear();
5970 }
5971 }
5972
5973 // now, at the end of this task (always asynchronous), save the settings
5974 {
5975 AutoWriteLock vboxlock(m->pVirtualBox COMMA_LOCKVAL_SRC_POS);
5976 m->pVirtualBox->saveSettings();
5977 }
5978
5979 /* Everything is explicitly unlocked when the task exits,
5980 * as the task destruction also destroys the source chain. */
5981
5982 /* Make sure the source chain is released early. It could happen
5983 * that we get a deadlock in Appliance::Import when Medium::Close
5984 * is called & the source chain is released at the same time. */
5985 task.mpSourceMediumLockList->Clear();
5986
5987 return rc;
5988}
5989
5990/**
5991 * Implementation code for the "delete" task.
5992 *
5993 * This task always gets started from Medium::deleteStorage() and can run
5994 * synchronously or asynchrously depending on the "wait" parameter passed to
5995 * that function.
5996 *
5997 * @param task
5998 * @return
5999 */
6000HRESULT Medium::taskDeleteHandler(Medium::DeleteTask &task)
6001{
6002 NOREF(task);
6003 HRESULT rc = S_OK;
6004
6005 try
6006 {
6007 /* The lock is also used as a signal from the task initiator (which
6008 * releases it only after RTThreadCreate()) that we can start the job */
6009 AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
6010
6011 PVBOXHDD hdd;
6012 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
6013 ComAssertRCThrow(vrc, E_FAIL);
6014
6015 Utf8Str format(m->strFormat);
6016 Utf8Str location(m->strLocationFull);
6017
6018 /* unlock before the potentially lengthy operation */
6019 Assert(m->state == MediumState_Deleting);
6020 thisLock.release();
6021
6022 try
6023 {
6024 vrc = VDOpen(hdd,
6025 format.c_str(),
6026 location.c_str(),
6027 VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO,
6028 m->vdDiskIfaces);
6029 if (RT_SUCCESS(vrc))
6030 vrc = VDClose(hdd, true /* fDelete */);
6031
6032 if (RT_FAILURE(vrc))
6033 throw setError(E_FAIL,
6034 tr("Could not delete the hard disk storage unit '%s'%s"),
6035 location.raw(), vdError(vrc).raw());
6036
6037 }
6038 catch (HRESULT aRC) { rc = aRC; }
6039
6040 VDDestroy(hdd);
6041 }
6042 catch (HRESULT aRC) { rc = aRC; }
6043
6044 AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
6045
6046 /* go to the NotCreated state even on failure since the storage
6047 * may have been already partially deleted and cannot be used any
6048 * more. One will be able to manually re-open the storage if really
6049 * needed to re-register it. */
6050 m->state = MediumState_NotCreated;
6051
6052 /* Reset UUID to prevent Create* from reusing it again */
6053 unconst(m->id).clear();
6054
6055 return rc;
6056}
6057
6058/**
6059 * Implementation code for the "reset" task.
6060 *
6061 * This always gets started asynchronously from Medium::Reset().
6062 *
6063 * @param task
6064 * @return
6065 */
6066HRESULT Medium::taskResetHandler(Medium::ResetTask &task)
6067{
6068 HRESULT rc = S_OK;
6069
6070 uint64_t size = 0, logicalSize = 0;
6071
6072 try
6073 {
6074 /* The lock is also used as a signal from the task initiator (which
6075 * releases it only after RTThreadCreate()) that we can start the job */
6076 AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
6077
6078 /// @todo Below we use a pair of delete/create operations to reset
6079 /// the diff contents but the most efficient way will of course be
6080 /// to add a VDResetDiff() API call
6081
6082 PVBOXHDD hdd;
6083 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
6084 ComAssertRCThrow(vrc, E_FAIL);
6085
6086 Guid id = m->id;
6087 Utf8Str format(m->strFormat);
6088 Utf8Str location(m->strLocationFull);
6089
6090 Medium *pParent = m->pParent;
6091 Guid parentId = pParent->m->id;
6092 Utf8Str parentFormat(pParent->m->strFormat);
6093 Utf8Str parentLocation(pParent->m->strLocationFull);
6094
6095 Assert(m->state == MediumState_LockedWrite);
6096
6097 /* unlock before the potentially lengthy operation */
6098 thisLock.release();
6099
6100 try
6101 {
6102 /* Open all hard disk images in the target chain but the last. */
6103 MediumLockList::Base::const_iterator targetListBegin =
6104 task.mpMediumLockList->GetBegin();
6105 MediumLockList::Base::const_iterator targetListEnd =
6106 task.mpMediumLockList->GetEnd();
6107 for (MediumLockList::Base::const_iterator it = targetListBegin;
6108 it != targetListEnd;
6109 ++it)
6110 {
6111 const MediumLock &mediumLock = *it;
6112 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
6113
6114 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
6115
6116 /* sanity check, "this" is checked above */
6117 Assert( pMedium == this
6118 || pMedium->m->state == MediumState_LockedRead);
6119
6120 /* Open all images in appropriate mode. */
6121 vrc = VDOpen(hdd,
6122 pMedium->m->strFormat.c_str(),
6123 pMedium->m->strLocationFull.c_str(),
6124 VD_OPEN_FLAGS_READONLY,
6125 pMedium->m->vdDiskIfaces);
6126 if (RT_FAILURE(vrc))
6127 throw setError(E_FAIL,
6128 tr("Could not open the hard disk storage unit '%s'%s"),
6129 pMedium->m->strLocationFull.raw(),
6130 vdError(vrc).raw());
6131
6132 /* Done when we hit the image which should be reset */
6133 if (pMedium == this)
6134 break;
6135 }
6136
6137 /* first, delete the storage unit */
6138 vrc = VDClose(hdd, true /* fDelete */);
6139 if (RT_FAILURE(vrc))
6140 throw setError(E_FAIL,
6141 tr("Could not delete the hard disk storage unit '%s'%s"),
6142 location.raw(), vdError(vrc).raw());
6143
6144 /* next, create it again */
6145 vrc = VDOpen(hdd,
6146 parentFormat.c_str(),
6147 parentLocation.c_str(),
6148 VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO,
6149 m->vdDiskIfaces);
6150 if (RT_FAILURE(vrc))
6151 throw setError(E_FAIL,
6152 tr("Could not open the hard disk storage unit '%s'%s"),
6153 parentLocation.raw(), vdError(vrc).raw());
6154
6155 vrc = VDCreateDiff(hdd,
6156 format.c_str(),
6157 location.c_str(),
6158 /// @todo use the same image variant as before
6159 VD_IMAGE_FLAGS_NONE,
6160 NULL,
6161 id.raw(),
6162 parentId.raw(),
6163 VD_OPEN_FLAGS_NORMAL,
6164 m->vdDiskIfaces,
6165 task.mVDOperationIfaces);
6166 if (RT_FAILURE(vrc))
6167 throw setError(E_FAIL,
6168 tr("Could not create the differencing hard disk storage unit '%s'%s"),
6169 location.raw(), vdError(vrc).raw());
6170
6171 size = VDGetFileSize(hdd, VD_LAST_IMAGE);
6172 logicalSize = VDGetSize(hdd, VD_LAST_IMAGE) / _1M;
6173 }
6174 catch (HRESULT aRC) { rc = aRC; }
6175
6176 VDDestroy(hdd);
6177 }
6178 catch (HRESULT aRC) { rc = aRC; }
6179
6180 AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
6181
6182 m->size = size;
6183 m->logicalSize = logicalSize;
6184
6185 if (task.isAsync())
6186 {
6187 /* unlock ourselves when done */
6188 HRESULT rc2 = UnlockWrite(NULL);
6189 AssertComRC(rc2);
6190 }
6191
6192 /* Note that in sync mode, it's the caller's responsibility to
6193 * unlock the hard disk */
6194
6195 return rc;
6196}
6197
6198/**
6199 * Implementation code for the "compact" task.
6200 *
6201 * @param task
6202 * @return
6203 */
6204HRESULT Medium::taskCompactHandler(Medium::CompactTask &task)
6205{
6206 HRESULT rc = S_OK;
6207
6208 /* Lock all in {parent,child} order. The lock is also used as a
6209 * signal from the task initiator (which releases it only after
6210 * RTThreadCreate()) that we can start the job. */
6211 AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
6212
6213 try
6214 {
6215 PVBOXHDD hdd;
6216 int vrc = VDCreate(m->vdDiskIfaces, &hdd);
6217 ComAssertRCThrow(vrc, E_FAIL);
6218
6219 try
6220 {
6221 /* Open all hard disk images in the chain. */
6222 MediumLockList::Base::const_iterator mediumListBegin =
6223 task.mpMediumLockList->GetBegin();
6224 MediumLockList::Base::const_iterator mediumListEnd =
6225 task.mpMediumLockList->GetEnd();
6226 MediumLockList::Base::const_iterator mediumListLast =
6227 mediumListEnd;
6228 mediumListLast--;
6229 for (MediumLockList::Base::const_iterator it = mediumListBegin;
6230 it != mediumListEnd;
6231 ++it)
6232 {
6233 const MediumLock &mediumLock = *it;
6234 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
6235 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
6236
6237 /* sanity check */
6238 if (it == mediumListLast)
6239 Assert(pMedium->m->state == MediumState_LockedWrite);
6240 else
6241 Assert(pMedium->m->state == MediumState_LockedRead);
6242
6243 /** Open all images but last in read-only mode. */
6244 vrc = VDOpen(hdd,
6245 pMedium->m->strFormat.c_str(),
6246 pMedium->m->strLocationFull.c_str(),
6247 (it == mediumListLast) ? VD_OPEN_FLAGS_NORMAL : VD_OPEN_FLAGS_READONLY,
6248 pMedium->m->vdDiskIfaces);
6249 if (RT_FAILURE(vrc))
6250 throw setError(E_FAIL,
6251 tr("Could not open the hard disk storage unit '%s'%s"),
6252 pMedium->m->strLocationFull.raw(),
6253 vdError(vrc).raw());
6254 }
6255
6256 Assert(m->state == MediumState_LockedWrite);
6257
6258 Utf8Str location(m->strLocationFull);
6259
6260 /* unlock before the potentially lengthy operation */
6261 thisLock.release();
6262
6263 vrc = VDCompact(hdd, VD_LAST_IMAGE, task.mVDOperationIfaces);
6264 if (RT_FAILURE(vrc))
6265 {
6266 if (vrc == VERR_NOT_SUPPORTED)
6267 throw setError(VBOX_E_NOT_SUPPORTED,
6268 tr("Compacting is not yet supported for hard disk '%s'"),
6269 location.raw());
6270 else if (vrc == VERR_NOT_IMPLEMENTED)
6271 throw setError(E_NOTIMPL,
6272 tr("Compacting is not implemented, hard disk '%s'"),
6273 location.raw());
6274 else
6275 throw setError(E_FAIL,
6276 tr("Could not compact hard disk '%s'%s"),
6277 location.raw(),
6278 vdError(vrc).raw());
6279 }
6280 }
6281 catch (HRESULT aRC) { rc = aRC; }
6282
6283 VDDestroy(hdd);
6284 }
6285 catch (HRESULT aRC) { rc = aRC; }
6286
6287 /* Everything is explicitly unlocked when the task exits,
6288 * as the task destruction also destroys the image chain. */
6289
6290 return rc;
6291}
6292
6293/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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