VirtualBox

source: vbox/trunk/src/VBox/Main/src-server/MediumImpl.cpp@ 103131

Last change on this file since 103131 was 102590, checked in by vboxsync, 10 months ago

Unattended: implemented quick fix so files are properly cleaned up after interrupted vm execution, bugref:10180

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 397.6 KB
Line 
1/* $Id: MediumImpl.cpp 102590 2023-12-13 04:42:31Z vboxsync $ */
2/** @file
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2008-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#define LOG_GROUP LOG_GROUP_MAIN_MEDIUM
29#include "MediumImpl.h"
30#include "MediumIOImpl.h"
31#include "TokenImpl.h"
32#include "ProgressImpl.h"
33#include "SystemPropertiesImpl.h"
34#include "VirtualBoxImpl.h"
35#include "ExtPackManagerImpl.h"
36
37#include "AutoCaller.h"
38#include "Global.h"
39#include "LoggingNew.h"
40#include "ThreadTask.h"
41#include "VBox/com/MultiResult.h"
42#include "VBox/com/ErrorInfo.h"
43
44#include <VBox/err.h>
45#include <VBox/settings.h>
46
47#include <iprt/param.h>
48#include <iprt/path.h>
49#include <iprt/file.h>
50#include <iprt/cpp/utils.h>
51#include <iprt/memsafer.h>
52#include <iprt/base64.h>
53#include <iprt/vfs.h>
54#include <iprt/fsvfs.h>
55
56#include <VBox/vd.h>
57
58#include <algorithm>
59#include <list>
60#include <set>
61#include <map>
62
63
64typedef std::list<Guid> GuidList;
65
66
67#ifdef VBOX_WITH_EXTPACK
68static const char g_szVDPlugin[] = "VDPluginCrypt";
69#endif
70
71
72////////////////////////////////////////////////////////////////////////////////
73//
74// Medium data definition
75//
76////////////////////////////////////////////////////////////////////////////////
77#if __cplusplus < 201700 && RT_GNUC_PREREQ(11,0) /* gcc/libstdc++ 12.1.1 errors out here because unary_function is deprecated */
78# pragma GCC diagnostic push
79# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
80#endif
81
82struct SnapshotRef
83{
84 /** Equality predicate for stdc++. */
85 struct EqualsTo
86#if __cplusplus < 201700 /* deprecated in C++11, removed in C++17. */
87 : public std::unary_function <SnapshotRef, bool>
88#endif
89 {
90 explicit EqualsTo(const Guid &aSnapshotId) : snapshotId(aSnapshotId) {}
91
92#if __cplusplus < 201700 /* deprecated in C++11, removed in C++17. */
93 bool operator()(const argument_type &aThat) const
94#else
95 bool operator()(const SnapshotRef &aThat) const
96#endif
97 {
98 return aThat.snapshotId == snapshotId;
99 }
100
101 const Guid snapshotId;
102 };
103
104 SnapshotRef(const Guid &aSnapshotId,
105 const int &aRefCnt = 1)
106 : snapshotId(aSnapshotId),
107 iRefCnt(aRefCnt) {}
108
109 Guid snapshotId;
110 /*
111 * The number of attachments of the medium in the same snapshot.
112 * Used for MediumType_Readonly. It is always equal to 1 for other types.
113 * Usual int is used because any changes in the BackRef are guarded by
114 * AutoWriteLock.
115 */
116 int iRefCnt;
117};
118
119/** Describes how a machine refers to this medium. */
120struct BackRef
121{
122 /** Equality predicate for stdc++. */
123 struct EqualsTo
124#if __cplusplus < 201700 /* deprecated in C++11, removed in C++17. */
125 : public std::unary_function <BackRef, bool>
126#endif
127 {
128 explicit EqualsTo(const Guid &aMachineId) : machineId(aMachineId) {}
129
130#if __cplusplus < 201700 /* deprecated in C++11, removed in C++17. */
131 bool operator()(const argument_type &aThat) const
132#else
133 bool operator()(const BackRef &aThat) const
134#endif
135 {
136 return aThat.machineId == machineId;
137 }
138
139 const Guid machineId;
140 };
141
142 BackRef(const Guid &aMachineId,
143 const Guid &aSnapshotId = Guid::Empty)
144 : machineId(aMachineId),
145 iRefCnt(1),
146 fInCurState(aSnapshotId.isZero())
147 {
148 if (aSnapshotId.isValid() && !aSnapshotId.isZero())
149 llSnapshotIds.push_back(SnapshotRef(aSnapshotId));
150 }
151
152 Guid machineId;
153 /*
154 * The number of attachments of the medium in the same machine.
155 * Used for MediumType_Readonly. It is always equal to 1 for other types.
156 * Usual int is used because any changes in the BackRef are guarded by
157 * AutoWriteLock.
158 */
159 int iRefCnt;
160 bool fInCurState : 1;
161 std::list<SnapshotRef> llSnapshotIds;
162};
163
164typedef std::list<BackRef> BackRefList;
165
166#if __cplusplus < 201700 && RT_GNUC_PREREQ(11,0)
167# pragma GCC diagnostic pop
168#endif
169
170
171struct Medium::Data
172{
173 Data()
174 : pVirtualBox(NULL),
175 state(MediumState_NotCreated),
176 variant(MediumVariant_Standard),
177 size(0),
178 readers(0),
179 preLockState(MediumState_NotCreated),
180 queryInfoSem(LOCKCLASS_MEDIUMQUERY),
181 queryInfoRunning(false),
182 type(MediumType_Normal),
183 devType(DeviceType_HardDisk),
184 logicalSize(0),
185 hddOpenMode(OpenReadWrite),
186 autoReset(false),
187 hostDrive(false),
188 implicit(false),
189 fClosing(false),
190 uOpenFlagsDef(VD_OPEN_FLAGS_IGNORE_FLUSH),
191 numCreateDiffTasks(0),
192 vdDiskIfaces(NULL),
193 vdImageIfaces(NULL),
194 fMoveThisMedium(false)
195 { }
196
197 /** weak VirtualBox parent */
198 VirtualBox * const pVirtualBox;
199
200 // pParent and llChildren are protected by VirtualBox::i_getMediaTreeLockHandle()
201 ComObjPtr<Medium> pParent;
202 MediaList llChildren; // to add a child, just call push_back; to remove
203 // a child, call child->deparent() which does a lookup
204
205 GuidList llRegistryIDs; // media registries in which this medium is listed
206
207 const Guid id;
208 Utf8Str strDescription;
209 MediumState_T state;
210 MediumVariant_T variant;
211 Utf8Str strLocationFull;
212 uint64_t size;
213 Utf8Str strLastAccessError;
214
215 BackRefList backRefs;
216
217 size_t readers;
218 MediumState_T preLockState;
219
220 /** Special synchronization for operations which must wait for
221 * Medium::i_queryInfo in another thread to complete. Using a SemRW is
222 * not quite ideal, but at least it is subject to the lock validator,
223 * unlike the SemEventMulti which we had here for many years. Catching
224 * possible deadlocks is more important than a tiny bit of efficiency. */
225 RWLockHandle queryInfoSem;
226 bool queryInfoRunning : 1;
227
228 const Utf8Str strFormat;
229 ComObjPtr<MediumFormat> formatObj;
230
231 MediumType_T type;
232 DeviceType_T devType;
233 uint64_t logicalSize;
234
235 HDDOpenMode hddOpenMode;
236
237 bool autoReset : 1;
238
239 /** New UUID to be set on the next Medium::i_queryInfo call. */
240 const Guid uuidImage;
241 /** New parent UUID to be set on the next Medium::i_queryInfo call. */
242 const Guid uuidParentImage;
243
244/** @todo r=bird: the boolean bitfields are pointless if they're not grouped! */
245 bool hostDrive : 1;
246
247 settings::StringsMap mapProperties;
248
249 bool implicit : 1;
250 /** Flag whether the medium is in the process of being closed. */
251 bool fClosing: 1;
252
253 /** Default flags passed to VDOpen(). */
254 unsigned uOpenFlagsDef;
255
256 uint32_t numCreateDiffTasks;
257
258 Utf8Str vdError; /*< Error remembered by the VD error callback. */
259
260 VDINTERFACEERROR vdIfError;
261
262 VDINTERFACECONFIG vdIfConfig;
263
264 /** The handle to the default VD TCP/IP interface. */
265 VDIFINST hTcpNetInst;
266
267 PVDINTERFACE vdDiskIfaces;
268 PVDINTERFACE vdImageIfaces;
269
270 /** Flag if the medium is going to move to a new
271 * location. */
272 bool fMoveThisMedium;
273 /** new location path */
274 Utf8Str strNewLocationFull;
275};
276
277typedef struct VDSOCKETINT
278{
279 /** Socket handle. */
280 RTSOCKET hSocket;
281} VDSOCKETINT, *PVDSOCKETINT;
282
283////////////////////////////////////////////////////////////////////////////////
284//
285// Globals
286//
287////////////////////////////////////////////////////////////////////////////////
288
289/**
290 * Medium::Task class for asynchronous operations.
291 *
292 * @note Instances of this class must be created using new() because the
293 * task thread function will delete them when the task is complete.
294 *
295 * @note The constructor of this class adds a caller on the managed Medium
296 * object which is automatically released upon destruction.
297 */
298class Medium::Task : public ThreadTask
299{
300public:
301 Task(Medium *aMedium, Progress *aProgress, bool fNotifyAboutChanges = true)
302 : ThreadTask("Medium::Task"),
303 mVDOperationIfaces(NULL),
304 mMedium(aMedium),
305 mMediumCaller(aMedium),
306 mProgress(aProgress),
307 mVirtualBoxCaller(NULL),
308 mNotifyAboutChanges(fNotifyAboutChanges)
309 {
310 AssertReturnVoidStmt(aMedium, mHrc = E_FAIL);
311 mHrc = mMediumCaller.hrc();
312 if (FAILED(mHrc))
313 return;
314
315 /* Get strong VirtualBox reference, see below. */
316 VirtualBox *pVirtualBox = aMedium->m->pVirtualBox;
317 mVirtualBox = pVirtualBox;
318 mVirtualBoxCaller.attach(pVirtualBox);
319 mHrc = mVirtualBoxCaller.hrc();
320 if (FAILED(mHrc))
321 return;
322
323 /* Set up a per-operation progress interface, can be used freely (for
324 * binary operations you can use it either on the source or target). */
325 if (mProgress)
326 {
327 mVDIfProgress.pfnProgress = aProgress->i_vdProgressCallback;
328 int vrc = VDInterfaceAdd(&mVDIfProgress.Core,
329 "Medium::Task::vdInterfaceProgress",
330 VDINTERFACETYPE_PROGRESS,
331 mProgress,
332 sizeof(mVDIfProgress),
333 &mVDOperationIfaces);
334 AssertRC(vrc);
335 if (RT_FAILURE(vrc))
336 mHrc = E_FAIL;
337 }
338 }
339
340 // Make all destructors virtual. Just in case.
341 virtual ~Task()
342 {
343 /* send the notification of completion.*/
344 if ( isAsync()
345 && !mProgress.isNull())
346 mProgress->i_notifyComplete(mHrc);
347 }
348
349 HRESULT hrc() const { return mHrc; }
350 bool isOk() const { return SUCCEEDED(hrc()); }
351 bool NotifyAboutChanges() const { return mNotifyAboutChanges; }
352
353 const ComPtr<Progress>& GetProgressObject() const {return mProgress;}
354
355 /**
356 * Runs Medium::Task::executeTask() on the current thread
357 * instead of creating a new one.
358 */
359 HRESULT runNow()
360 {
361 LogFlowFuncEnter();
362
363 mHrc = executeTask();
364
365 LogFlowFunc(("hrc=%Rhrc\n", mHrc));
366 LogFlowFuncLeave();
367 return mHrc;
368 }
369
370 /**
371 * Implementation code for the "create base" task.
372 * Used as function for execution from a standalone thread.
373 */
374 void handler()
375 {
376 LogFlowFuncEnter();
377 try
378 {
379 mHrc = executeTask(); /* (destructor picks up mHrc, see above) */
380 LogFlowFunc(("hrc=%Rhrc\n", mHrc));
381 }
382 catch (...)
383 {
384 LogRel(("Some exception in the function Medium::Task:handler()\n"));
385 }
386
387 LogFlowFuncLeave();
388 }
389
390 PVDINTERFACE mVDOperationIfaces;
391
392 const ComObjPtr<Medium> mMedium;
393 AutoCaller mMediumCaller;
394
395protected:
396 HRESULT mHrc;
397
398private:
399 virtual HRESULT executeTask() = 0;
400
401 const ComObjPtr<Progress> mProgress;
402
403 VDINTERFACEPROGRESS mVDIfProgress;
404
405 /* Must have a strong VirtualBox reference during a task otherwise the
406 * reference count might drop to 0 while a task is still running. This
407 * would result in weird behavior, including deadlocks due to uninit and
408 * locking order issues. The deadlock often is not detectable because the
409 * uninit uses event semaphores which sabotages deadlock detection. */
410 ComObjPtr<VirtualBox> mVirtualBox;
411 AutoCaller mVirtualBoxCaller;
412 bool mNotifyAboutChanges;
413};
414
415class Medium::CreateBaseTask : public Medium::Task
416{
417public:
418 CreateBaseTask(Medium *aMedium,
419 Progress *aProgress,
420 uint64_t aSize,
421 MediumVariant_T aVariant,
422 bool fNotifyAboutChanges = true)
423 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
424 mSize(aSize),
425 mVariant(aVariant)
426 {
427 m_strTaskName = "createBase";
428 }
429
430 uint64_t mSize;
431 MediumVariant_T mVariant;
432
433private:
434 HRESULT executeTask()
435 {
436 return mMedium->i_taskCreateBaseHandler(*this);
437 }
438};
439
440class Medium::CreateDiffTask : public Medium::Task
441{
442public:
443 CreateDiffTask(Medium *aMedium,
444 Progress *aProgress,
445 Medium *aTarget,
446 MediumVariant_T aVariant,
447 MediumLockList *aMediumLockList,
448 bool fKeepMediumLockList = false,
449 bool fNotifyAboutChanges = true)
450 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
451 mpMediumLockList(aMediumLockList),
452 mTarget(aTarget),
453 mVariant(aVariant),
454 mTargetCaller(aTarget),
455 mfKeepMediumLockList(fKeepMediumLockList)
456 {
457 AssertReturnVoidStmt(aTarget != NULL, mHrc = E_FAIL);
458 mHrc = mTargetCaller.hrc();
459 if (FAILED(mHrc))
460 return;
461 m_strTaskName = "createDiff";
462 }
463
464 ~CreateDiffTask()
465 {
466 if (!mfKeepMediumLockList && mpMediumLockList)
467 delete mpMediumLockList;
468 }
469
470 MediumLockList *mpMediumLockList;
471
472 const ComObjPtr<Medium> mTarget;
473 MediumVariant_T mVariant;
474
475private:
476 HRESULT executeTask()
477 {
478 return mMedium->i_taskCreateDiffHandler(*this);
479 }
480
481 AutoCaller mTargetCaller;
482 bool mfKeepMediumLockList;
483};
484
485class Medium::CloneTask : public Medium::Task
486{
487public:
488 CloneTask(Medium *aMedium,
489 Progress *aProgress,
490 Medium *aTarget,
491 MediumVariant_T aVariant,
492 Medium *aParent,
493 uint32_t idxSrcImageSame,
494 uint32_t idxDstImageSame,
495 MediumLockList *aSourceMediumLockList,
496 MediumLockList *aTargetMediumLockList,
497 bool fKeepSourceMediumLockList = false,
498 bool fKeepTargetMediumLockList = false,
499 bool fNotifyAboutChanges = true,
500 uint64_t aTargetLogicalSize = 0)
501 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
502 mTarget(aTarget),
503 mParent(aParent),
504 mTargetLogicalSize(aTargetLogicalSize),
505 mpSourceMediumLockList(aSourceMediumLockList),
506 mpTargetMediumLockList(aTargetMediumLockList),
507 mVariant(aVariant),
508 midxSrcImageSame(idxSrcImageSame),
509 midxDstImageSame(idxDstImageSame),
510 mTargetCaller(aTarget),
511 mParentCaller(aParent),
512 mfKeepSourceMediumLockList(fKeepSourceMediumLockList),
513 mfKeepTargetMediumLockList(fKeepTargetMediumLockList)
514 {
515 AssertReturnVoidStmt(aTarget != NULL, mHrc = E_FAIL);
516 mHrc = mTargetCaller.hrc();
517 if (FAILED(mHrc))
518 return;
519 /* aParent may be NULL */
520 mHrc = mParentCaller.hrc();
521 if (FAILED(mHrc))
522 return;
523 AssertReturnVoidStmt(aSourceMediumLockList != NULL, mHrc = E_FAIL);
524 AssertReturnVoidStmt(aTargetMediumLockList != NULL, mHrc = E_FAIL);
525 m_strTaskName = "createClone";
526 }
527
528 ~CloneTask()
529 {
530 if (!mfKeepSourceMediumLockList && mpSourceMediumLockList)
531 delete mpSourceMediumLockList;
532 if (!mfKeepTargetMediumLockList && mpTargetMediumLockList)
533 delete mpTargetMediumLockList;
534 }
535
536 const ComObjPtr<Medium> mTarget;
537 const ComObjPtr<Medium> mParent;
538 uint64_t mTargetLogicalSize;
539 MediumLockList *mpSourceMediumLockList;
540 MediumLockList *mpTargetMediumLockList;
541 MediumVariant_T mVariant;
542 uint32_t midxSrcImageSame;
543 uint32_t midxDstImageSame;
544
545private:
546 HRESULT executeTask()
547 {
548 return mMedium->i_taskCloneHandler(*this);
549 }
550
551 AutoCaller mTargetCaller;
552 AutoCaller mParentCaller;
553 bool mfKeepSourceMediumLockList;
554 bool mfKeepTargetMediumLockList;
555};
556
557class Medium::MoveTask : public Medium::Task
558{
559public:
560 MoveTask(Medium *aMedium,
561 Progress *aProgress,
562 MediumVariant_T aVariant,
563 MediumLockList *aMediumLockList,
564 bool fKeepMediumLockList = false,
565 bool fNotifyAboutChanges = true)
566 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
567 mpMediumLockList(aMediumLockList),
568 mVariant(aVariant),
569 mfKeepMediumLockList(fKeepMediumLockList)
570 {
571 AssertReturnVoidStmt(aMediumLockList != NULL, mHrc = E_FAIL);
572 m_strTaskName = "createMove";
573 }
574
575 ~MoveTask()
576 {
577 if (!mfKeepMediumLockList && mpMediumLockList)
578 delete mpMediumLockList;
579 }
580
581 MediumLockList *mpMediumLockList;
582 MediumVariant_T mVariant;
583
584private:
585 HRESULT executeTask()
586 {
587 return mMedium->i_taskMoveHandler(*this);
588 }
589
590 bool mfKeepMediumLockList;
591};
592
593class Medium::CompactTask : public Medium::Task
594{
595public:
596 CompactTask(Medium *aMedium,
597 Progress *aProgress,
598 MediumLockList *aMediumLockList,
599 bool fKeepMediumLockList = false,
600 bool fNotifyAboutChanges = true)
601 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
602 mpMediumLockList(aMediumLockList),
603 mfKeepMediumLockList(fKeepMediumLockList)
604 {
605 AssertReturnVoidStmt(aMediumLockList != NULL, mHrc = E_FAIL);
606 m_strTaskName = "createCompact";
607 }
608
609 ~CompactTask()
610 {
611 if (!mfKeepMediumLockList && mpMediumLockList)
612 delete mpMediumLockList;
613 }
614
615 MediumLockList *mpMediumLockList;
616
617private:
618 HRESULT executeTask()
619 {
620 return mMedium->i_taskCompactHandler(*this);
621 }
622
623 bool mfKeepMediumLockList;
624};
625
626class Medium::ResizeTask : public Medium::Task
627{
628public:
629 ResizeTask(Medium *aMedium,
630 uint64_t aSize,
631 Progress *aProgress,
632 MediumLockList *aMediumLockList,
633 bool fKeepMediumLockList = false,
634 bool fNotifyAboutChanges = true)
635 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
636 mSize(aSize),
637 mpMediumLockList(aMediumLockList),
638 mfKeepMediumLockList(fKeepMediumLockList)
639 {
640 AssertReturnVoidStmt(aMediumLockList != NULL, mHrc = E_FAIL);
641 m_strTaskName = "createResize";
642 }
643
644 ~ResizeTask()
645 {
646 if (!mfKeepMediumLockList && mpMediumLockList)
647 delete mpMediumLockList;
648 }
649
650 uint64_t mSize;
651 MediumLockList *mpMediumLockList;
652
653private:
654 HRESULT executeTask()
655 {
656 return mMedium->i_taskResizeHandler(*this);
657 }
658
659 bool mfKeepMediumLockList;
660};
661
662class Medium::ResetTask : public Medium::Task
663{
664public:
665 ResetTask(Medium *aMedium,
666 Progress *aProgress,
667 MediumLockList *aMediumLockList,
668 bool fKeepMediumLockList = false,
669 bool fNotifyAboutChanges = true)
670 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
671 mpMediumLockList(aMediumLockList),
672 mfKeepMediumLockList(fKeepMediumLockList)
673 {
674 m_strTaskName = "createReset";
675 }
676
677 ~ResetTask()
678 {
679 if (!mfKeepMediumLockList && mpMediumLockList)
680 delete mpMediumLockList;
681 }
682
683 MediumLockList *mpMediumLockList;
684
685private:
686 HRESULT executeTask()
687 {
688 return mMedium->i_taskResetHandler(*this);
689 }
690
691 bool mfKeepMediumLockList;
692};
693
694class Medium::DeleteTask : public Medium::Task
695{
696public:
697 DeleteTask(Medium *aMedium,
698 Progress *aProgress,
699 MediumLockList *aMediumLockList,
700 bool fKeepMediumLockList = false,
701 bool fNotifyAboutChanges = true)
702 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
703 mpMediumLockList(aMediumLockList),
704 mfKeepMediumLockList(fKeepMediumLockList)
705 {
706 m_strTaskName = "createDelete";
707 }
708
709 ~DeleteTask()
710 {
711 if (!mfKeepMediumLockList && mpMediumLockList)
712 delete mpMediumLockList;
713 }
714
715 MediumLockList *mpMediumLockList;
716
717private:
718 HRESULT executeTask()
719 {
720 return mMedium->i_taskDeleteHandler(*this);
721 }
722
723 bool mfKeepMediumLockList;
724};
725
726class Medium::MergeTask : public Medium::Task
727{
728public:
729 MergeTask(Medium *aMedium,
730 Medium *aTarget,
731 bool fMergeForward,
732 Medium *aParentForTarget,
733 MediumLockList *aChildrenToReparent,
734 Progress *aProgress,
735 MediumLockList *aMediumLockList,
736 bool fKeepMediumLockList = false,
737 bool fNotifyAboutChanges = true)
738 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
739 mTarget(aTarget),
740 mfMergeForward(fMergeForward),
741 mParentForTarget(aParentForTarget),
742 mpChildrenToReparent(aChildrenToReparent),
743 mpMediumLockList(aMediumLockList),
744 mTargetCaller(aTarget),
745 mParentForTargetCaller(aParentForTarget),
746 mfKeepMediumLockList(fKeepMediumLockList)
747 {
748 AssertReturnVoidStmt(aMediumLockList != NULL, mHrc = E_FAIL);
749 m_strTaskName = "createMerge";
750 }
751
752 ~MergeTask()
753 {
754 if (!mfKeepMediumLockList && mpMediumLockList)
755 delete mpMediumLockList;
756 if (mpChildrenToReparent)
757 delete mpChildrenToReparent;
758 }
759
760 const ComObjPtr<Medium> mTarget;
761 bool mfMergeForward;
762 /* When mpChildrenToReparent is null then mParentForTarget is non-null and
763 * vice versa. In other words: they are used in different cases. */
764 const ComObjPtr<Medium> mParentForTarget;
765 MediumLockList *mpChildrenToReparent;
766 MediumLockList *mpMediumLockList;
767
768private:
769 HRESULT executeTask()
770 {
771 return mMedium->i_taskMergeHandler(*this);
772 }
773
774 AutoCaller mTargetCaller;
775 AutoCaller mParentForTargetCaller;
776 bool mfKeepMediumLockList;
777};
778
779class Medium::ImportTask : public Medium::Task
780{
781public:
782 ImportTask(Medium *aMedium,
783 Progress *aProgress,
784 const char *aFilename,
785 MediumFormat *aFormat,
786 MediumVariant_T aVariant,
787 RTVFSIOSTREAM aVfsIosSrc,
788 Medium *aParent,
789 MediumLockList *aTargetMediumLockList,
790 bool fKeepTargetMediumLockList = false,
791 bool fNotifyAboutChanges = true)
792 : Medium::Task(aMedium, aProgress, fNotifyAboutChanges),
793 mFilename(aFilename),
794 mFormat(aFormat),
795 mVariant(aVariant),
796 mParent(aParent),
797 mpTargetMediumLockList(aTargetMediumLockList),
798 mpVfsIoIf(NULL),
799 mParentCaller(aParent),
800 mfKeepTargetMediumLockList(fKeepTargetMediumLockList)
801 {
802 AssertReturnVoidStmt(aTargetMediumLockList != NULL, mHrc = E_FAIL);
803 /* aParent may be NULL */
804 mHrc = mParentCaller.hrc();
805 if (FAILED(mHrc))
806 return;
807
808 mVDImageIfaces = aMedium->m->vdImageIfaces;
809
810 int vrc = VDIfCreateFromVfsStream(aVfsIosSrc, RTFILE_O_READ, &mpVfsIoIf);
811 AssertRCReturnVoidStmt(vrc, mHrc = E_FAIL);
812
813 vrc = VDInterfaceAdd(&mpVfsIoIf->Core, "Medium::ImportTaskVfsIos",
814 VDINTERFACETYPE_IO, mpVfsIoIf,
815 sizeof(VDINTERFACEIO), &mVDImageIfaces);
816 AssertRCReturnVoidStmt(vrc, mHrc = E_FAIL);
817 m_strTaskName = "createImport";
818 }
819
820 ~ImportTask()
821 {
822 if (!mfKeepTargetMediumLockList && mpTargetMediumLockList)
823 delete mpTargetMediumLockList;
824 if (mpVfsIoIf)
825 {
826 VDIfDestroyFromVfsStream(mpVfsIoIf);
827 mpVfsIoIf = NULL;
828 }
829 }
830
831 Utf8Str mFilename;
832 ComObjPtr<MediumFormat> mFormat;
833 MediumVariant_T mVariant;
834 const ComObjPtr<Medium> mParent;
835 MediumLockList *mpTargetMediumLockList;
836 PVDINTERFACE mVDImageIfaces;
837 PVDINTERFACEIO mpVfsIoIf; /**< Pointer to the VFS I/O stream to VD I/O interface wrapper. */
838
839private:
840 HRESULT executeTask()
841 {
842 return mMedium->i_taskImportHandler(*this);
843 }
844
845 AutoCaller mParentCaller;
846 bool mfKeepTargetMediumLockList;
847};
848
849class Medium::EncryptTask : public Medium::Task
850{
851public:
852 EncryptTask(Medium *aMedium,
853 const com::Utf8Str &strNewPassword,
854 const com::Utf8Str &strCurrentPassword,
855 const com::Utf8Str &strCipher,
856 const com::Utf8Str &strNewPasswordId,
857 Progress *aProgress,
858 MediumLockList *aMediumLockList)
859 : Medium::Task(aMedium, aProgress, false),
860 mstrNewPassword(strNewPassword),
861 mstrCurrentPassword(strCurrentPassword),
862 mstrCipher(strCipher),
863 mstrNewPasswordId(strNewPasswordId),
864 mpMediumLockList(aMediumLockList)
865 {
866 AssertReturnVoidStmt(aMediumLockList != NULL, mHrc = E_FAIL);
867 /* aParent may be NULL */
868 mHrc = mParentCaller.hrc();
869 if (FAILED(mHrc))
870 return;
871
872 mVDImageIfaces = aMedium->m->vdImageIfaces;
873 m_strTaskName = "createEncrypt";
874 }
875
876 ~EncryptTask()
877 {
878 if (mstrNewPassword.length())
879 RTMemWipeThoroughly(mstrNewPassword.mutableRaw(), mstrNewPassword.length(), 10 /* cPasses */);
880 if (mstrCurrentPassword.length())
881 RTMemWipeThoroughly(mstrCurrentPassword.mutableRaw(), mstrCurrentPassword.length(), 10 /* cPasses */);
882
883 /* Keep any errors which might be set when deleting the lock list. */
884 ErrorInfoKeeper eik;
885 delete mpMediumLockList;
886 }
887
888 Utf8Str mstrNewPassword;
889 Utf8Str mstrCurrentPassword;
890 Utf8Str mstrCipher;
891 Utf8Str mstrNewPasswordId;
892 MediumLockList *mpMediumLockList;
893 PVDINTERFACE mVDImageIfaces;
894
895private:
896 HRESULT executeTask()
897 {
898 return mMedium->i_taskEncryptHandler(*this);
899 }
900
901 AutoCaller mParentCaller;
902};
903
904
905
906/**
907 * Converts the Medium device type to the VD type.
908 */
909static const char *getVDTypeName(VDTYPE enmType)
910{
911 switch (enmType)
912 {
913 case VDTYPE_HDD: return "HDD";
914 case VDTYPE_OPTICAL_DISC: return "DVD";
915 case VDTYPE_FLOPPY: return "floppy";
916 case VDTYPE_INVALID: return "invalid";
917 default:
918 AssertFailedReturn("unknown");
919 }
920}
921
922/**
923 * Converts the Medium device type to the VD type.
924 */
925static const char *getDeviceTypeName(DeviceType_T enmType)
926{
927 switch (enmType)
928 {
929 case DeviceType_HardDisk: return "HDD";
930 case DeviceType_DVD: return "DVD";
931 case DeviceType_Floppy: return "floppy";
932 case DeviceType_Null: return "null";
933 case DeviceType_Network: return "network";
934 case DeviceType_USB: return "USB";
935 case DeviceType_SharedFolder: return "shared folder";
936 case DeviceType_Graphics3D: return "graphics 3d";
937 default:
938 AssertFailedReturn("unknown");
939 }
940}
941
942
943
944////////////////////////////////////////////////////////////////////////////////
945//
946// Medium constructor / destructor
947//
948////////////////////////////////////////////////////////////////////////////////
949
950DEFINE_EMPTY_CTOR_DTOR(Medium)
951
952HRESULT Medium::FinalConstruct()
953{
954 m = new Data;
955
956 /* Initialize the callbacks of the VD error interface */
957 m->vdIfError.pfnError = i_vdErrorCall;
958 m->vdIfError.pfnMessage = NULL;
959
960 /* Initialize the callbacks of the VD config interface */
961 m->vdIfConfig.pfnAreKeysValid = i_vdConfigAreKeysValid;
962 m->vdIfConfig.pfnQuerySize = i_vdConfigQuerySize;
963 m->vdIfConfig.pfnQuery = i_vdConfigQuery;
964 m->vdIfConfig.pfnUpdate = i_vdConfigUpdate;
965 m->vdIfConfig.pfnQueryBytes = NULL;
966
967 /* Initialize the per-disk interface chain (could be done more globally,
968 * but it's not wasting much time or space so it's not worth it). */
969 int vrc;
970 vrc = VDInterfaceAdd(&m->vdIfError.Core,
971 "Medium::vdInterfaceError",
972 VDINTERFACETYPE_ERROR, this,
973 sizeof(VDINTERFACEERROR), &m->vdDiskIfaces);
974 AssertRCReturn(vrc, E_FAIL);
975
976 /* Initialize the per-image interface chain */
977 vrc = VDInterfaceAdd(&m->vdIfConfig.Core,
978 "Medium::vdInterfaceConfig",
979 VDINTERFACETYPE_CONFIG, this,
980 sizeof(VDINTERFACECONFIG), &m->vdImageIfaces);
981 AssertRCReturn(vrc, E_FAIL);
982
983 /* Initialize the callbacks of the VD TCP interface (we always use the host
984 * IP stack for now) */
985 vrc = VDIfTcpNetInstDefaultCreate(&m->hTcpNetInst, &m->vdImageIfaces);
986 AssertRCReturn(vrc, E_FAIL);
987
988 return BaseFinalConstruct();
989}
990
991void Medium::FinalRelease()
992{
993 uninit();
994
995 VDIfTcpNetInstDefaultDestroy(m->hTcpNetInst);
996 delete m;
997
998 BaseFinalRelease();
999}
1000
1001/**
1002 * Initializes an empty hard disk object without creating or opening an associated
1003 * storage unit.
1004 *
1005 * This gets called by VirtualBox::CreateMedium() in which case uuidMachineRegistry
1006 * is empty since starting with VirtualBox 4.0, we no longer add opened media to a
1007 * registry automatically (this is deferred until the medium is attached to a machine).
1008 *
1009 * This also gets called when VirtualBox creates diff images; in this case uuidMachineRegistry
1010 * is set to the registry of the parent image to make sure they all end up in the same
1011 * file.
1012 *
1013 * For hard disks that don't have the MediumFormatCapabilities_CreateFixed or
1014 * MediumFormatCapabilities_CreateDynamic capability (and therefore cannot be created or deleted
1015 * with the means of VirtualBox) the associated storage unit is assumed to be
1016 * ready for use so the state of the hard disk object will be set to Created.
1017 *
1018 * @param aVirtualBox VirtualBox object.
1019 * @param aFormat
1020 * @param aLocation Storage unit location.
1021 * @param uuidMachineRegistry The registry to which this medium should be added
1022 * (global registry UUID or machine UUID or empty if none).
1023 * @param aDeviceType Device Type.
1024 */
1025HRESULT Medium::init(VirtualBox *aVirtualBox,
1026 const Utf8Str &aFormat,
1027 const Utf8Str &aLocation,
1028 const Guid &uuidMachineRegistry,
1029 const DeviceType_T aDeviceType)
1030{
1031 AssertReturn(aVirtualBox != NULL, E_FAIL);
1032 AssertReturn(!aFormat.isEmpty(), E_FAIL);
1033
1034 /* Enclose the state transition NotReady->InInit->Ready */
1035 AutoInitSpan autoInitSpan(this);
1036 AssertReturn(autoInitSpan.isOk(), E_FAIL);
1037
1038 HRESULT hrc = S_OK;
1039
1040 unconst(m->pVirtualBox) = aVirtualBox;
1041
1042 if (uuidMachineRegistry.isValid() && !uuidMachineRegistry.isZero())
1043 m->llRegistryIDs.push_back(uuidMachineRegistry);
1044
1045 /* no storage yet */
1046 m->state = MediumState_NotCreated;
1047
1048 /* cannot be a host drive */
1049 m->hostDrive = false;
1050
1051 m->devType = aDeviceType;
1052
1053 /* No storage unit is created yet, no need to call Medium::i_queryInfo */
1054
1055 hrc = i_setFormat(aFormat);
1056 if (FAILED(hrc)) return hrc;
1057
1058 hrc = i_setLocation(aLocation);
1059 if (FAILED(hrc)) return hrc;
1060
1061 if (!(m->formatObj->i_getCapabilities() & ( MediumFormatCapabilities_CreateFixed
1062 | MediumFormatCapabilities_CreateDynamic
1063 | MediumFormatCapabilities_File))
1064 )
1065 {
1066 /* Storage for media of this format can neither be explicitly
1067 * created by VirtualBox nor deleted, so we place the medium to
1068 * Inaccessible state here and also add it to the registry. The
1069 * state means that one has to use RefreshState() to update the
1070 * medium format specific fields. */
1071 m->state = MediumState_Inaccessible;
1072 // create new UUID
1073 unconst(m->id).create();
1074
1075 AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1076 ComObjPtr<Medium> pMedium;
1077
1078 /*
1079 * Check whether the UUID is taken already and create a new one
1080 * if required.
1081 * Try this only a limited amount of times in case the PRNG is broken
1082 * in some way to prevent an endless loop.
1083 */
1084 for (unsigned i = 0; i < 5; i++)
1085 {
1086 bool fInUse;
1087
1088 fInUse = m->pVirtualBox->i_isMediaUuidInUse(m->id, aDeviceType);
1089 if (fInUse)
1090 {
1091 // create new UUID
1092 unconst(m->id).create();
1093 }
1094 else
1095 break;
1096 }
1097
1098 hrc = m->pVirtualBox->i_registerMedium(this, &pMedium, treeLock);
1099 Assert(this == pMedium || FAILED(hrc));
1100 }
1101
1102 /* Confirm a successful initialization when it's the case */
1103 if (SUCCEEDED(hrc))
1104 autoInitSpan.setSucceeded();
1105
1106 return hrc;
1107}
1108
1109/**
1110 * Initializes the medium object by opening the storage unit at the specified
1111 * location. The enOpenMode parameter defines whether the medium will be opened
1112 * read/write or read-only.
1113 *
1114 * This gets called by VirtualBox::OpenMedium() and also by
1115 * Machine::AttachDevice() and createImplicitDiffs() when new diff
1116 * images are created.
1117 *
1118 * There is no registry for this case since starting with VirtualBox 4.0, we
1119 * no longer add opened media to a registry automatically (this is deferred
1120 * until the medium is attached to a machine).
1121 *
1122 * For hard disks, the UUID, format and the parent of this medium will be
1123 * determined when reading the medium storage unit. For DVD and floppy images,
1124 * which have no UUIDs in their storage units, new UUIDs are created.
1125 * If the detected or set parent is not known to VirtualBox, then this method
1126 * will fail.
1127 *
1128 * @param aVirtualBox VirtualBox object.
1129 * @param aLocation Storage unit location.
1130 * @param enOpenMode Whether to open the medium read/write or read-only.
1131 * @param fForceNewUuid Whether a new UUID should be set to avoid duplicates.
1132 * @param aDeviceType Device type of medium.
1133 */
1134HRESULT Medium::init(VirtualBox *aVirtualBox,
1135 const Utf8Str &aLocation,
1136 HDDOpenMode enOpenMode,
1137 bool fForceNewUuid,
1138 DeviceType_T aDeviceType)
1139{
1140 AssertReturn(aVirtualBox, E_INVALIDARG);
1141 AssertReturn(!aLocation.isEmpty(), E_INVALIDARG);
1142
1143 HRESULT hrc = S_OK;
1144
1145 {
1146 /* Enclose the state transition NotReady->InInit->Ready */
1147 AutoInitSpan autoInitSpan(this);
1148 AssertReturn(autoInitSpan.isOk(), E_FAIL);
1149
1150 unconst(m->pVirtualBox) = aVirtualBox;
1151
1152 /* there must be a storage unit */
1153 m->state = MediumState_Created;
1154
1155 /* remember device type for correct unregistering later */
1156 m->devType = aDeviceType;
1157
1158 /* cannot be a host drive */
1159 m->hostDrive = false;
1160
1161 /* remember the open mode (defaults to ReadWrite) */
1162 m->hddOpenMode = enOpenMode;
1163
1164 if (aDeviceType == DeviceType_DVD)
1165 m->type = MediumType_Readonly;
1166 else if (aDeviceType == DeviceType_Floppy)
1167 m->type = MediumType_Writethrough;
1168
1169 hrc = i_setLocation(aLocation);
1170 if (FAILED(hrc)) return hrc;
1171
1172 /* get all the information about the medium from the storage unit */
1173 if (fForceNewUuid)
1174 unconst(m->uuidImage).create();
1175
1176 m->state = MediumState_Inaccessible;
1177 m->strLastAccessError = tr("Accessibility check was not yet performed");
1178
1179 /* Confirm a successful initialization before the call to i_queryInfo.
1180 * Otherwise we can end up with a AutoCaller deadlock because the
1181 * medium becomes visible but is not marked as initialized. Causes
1182 * locking trouble (e.g. trying to save media registries) which is
1183 * hard to solve. */
1184 autoInitSpan.setSucceeded();
1185 }
1186
1187 /* we're normal code from now on, no longer init */
1188 AutoCaller autoCaller(this);
1189 if (FAILED(autoCaller.hrc()))
1190 return autoCaller.hrc();
1191
1192 /* need to call i_queryInfo immediately to correctly place the medium in
1193 * the respective media tree and update other information such as uuid */
1194 hrc = i_queryInfo(fForceNewUuid /* fSetImageId */, false /* fSetParentId */, autoCaller);
1195 if (SUCCEEDED(hrc))
1196 {
1197 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1198
1199 /* if the storage unit is not accessible, it's not acceptable for the
1200 * newly opened media so convert this into an error */
1201 if (m->state == MediumState_Inaccessible)
1202 {
1203 Assert(!m->strLastAccessError.isEmpty());
1204 hrc = setError(E_FAIL, "%s", m->strLastAccessError.c_str());
1205 alock.release();
1206 autoCaller.release();
1207 uninit();
1208 }
1209 else
1210 {
1211 AssertStmt(!m->id.isZero(),
1212 alock.release(); autoCaller.release(); uninit(); return E_FAIL);
1213
1214 /* storage format must be detected by Medium::i_queryInfo if the
1215 * medium is accessible */
1216 AssertStmt(!m->strFormat.isEmpty(),
1217 alock.release(); autoCaller.release(); uninit(); return E_FAIL);
1218 }
1219 }
1220 else
1221 {
1222 /* opening this image failed, mark the object as dead */
1223 autoCaller.release();
1224 uninit();
1225 }
1226
1227 return hrc;
1228}
1229
1230/**
1231 * Initializes the medium object by loading its data from the given settings
1232 * node. The medium will always be opened read/write.
1233 *
1234 * In this case, since we're loading from a registry, uuidMachineRegistry is
1235 * always set: it's either the global registry UUID or a machine UUID when
1236 * loading from a per-machine registry.
1237 *
1238 * @param aParent Parent medium disk or NULL for a root (base) medium.
1239 * @param aDeviceType Device type of the medium.
1240 * @param uuidMachineRegistry The registry to which this medium should be
1241 * added (global registry UUID or machine UUID).
1242 * @param data Configuration settings.
1243 * @param strMachineFolder The machine folder with which to resolve relative paths;
1244 * if empty, then we use the VirtualBox home directory
1245 *
1246 * @note Locks the medium tree for writing.
1247 */
1248HRESULT Medium::initOne(Medium *aParent,
1249 DeviceType_T aDeviceType,
1250 const Guid &uuidMachineRegistry,
1251 const Utf8Str &strMachineFolder,
1252 const settings::Medium &data)
1253{
1254 HRESULT hrc;
1255
1256 if (uuidMachineRegistry.isValid() && !uuidMachineRegistry.isZero())
1257 m->llRegistryIDs.push_back(uuidMachineRegistry);
1258
1259 /* register with VirtualBox/parent early, since uninit() will
1260 * unconditionally unregister on failure */
1261 if (aParent)
1262 {
1263 // differencing medium: add to parent
1264 AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1265 // no need to check maximum depth as settings reading did it
1266 i_setParent(aParent);
1267 }
1268
1269 /* see below why we don't call Medium::i_queryInfo (and therefore treat
1270 * the medium as inaccessible for now */
1271 m->state = MediumState_Inaccessible;
1272 m->strLastAccessError = tr("Accessibility check was not yet performed");
1273
1274 /* required */
1275 unconst(m->id) = data.uuid;
1276
1277 /* assume not a host drive */
1278 m->hostDrive = false;
1279
1280 /* optional */
1281 m->strDescription = data.strDescription;
1282
1283 /* required */
1284 if (aDeviceType == DeviceType_HardDisk)
1285 {
1286 AssertReturn(!data.strFormat.isEmpty(), E_FAIL);
1287 hrc = i_setFormat(data.strFormat);
1288 if (FAILED(hrc)) return hrc;
1289 }
1290 else
1291 {
1292 /// @todo handle host drive settings here as well?
1293 if (!data.strFormat.isEmpty())
1294 hrc = i_setFormat(data.strFormat);
1295 else
1296 hrc = i_setFormat("RAW");
1297 if (FAILED(hrc)) return hrc;
1298 }
1299
1300 /* optional, only for diffs, default is false; we can only auto-reset
1301 * diff media so they must have a parent */
1302 if (aParent != NULL)
1303 m->autoReset = data.fAutoReset;
1304 else
1305 m->autoReset = false;
1306
1307 /* properties (after setting the format as it populates the map). Note that
1308 * if some properties are not supported but present in the settings file,
1309 * they will still be read and accessible (for possible backward
1310 * compatibility; we can also clean them up from the XML upon next
1311 * XML format version change if we wish) */
1312 for (settings::StringsMap::const_iterator it = data.properties.begin();
1313 it != data.properties.end();
1314 ++it)
1315 {
1316 const Utf8Str &name = it->first;
1317 const Utf8Str &value = it->second;
1318 m->mapProperties[name] = value;
1319 }
1320
1321 /* try to decrypt an optional iSCSI initiator secret */
1322 settings::StringsMap::const_iterator itCph = data.properties.find("InitiatorSecretEncrypted");
1323 if ( itCph != data.properties.end()
1324 && !itCph->second.isEmpty())
1325 {
1326 Utf8Str strPlaintext;
1327 int vrc = m->pVirtualBox->i_decryptSetting(&strPlaintext, itCph->second);
1328 if (RT_SUCCESS(vrc))
1329 m->mapProperties["InitiatorSecret"] = strPlaintext;
1330 }
1331
1332 Utf8Str strFull;
1333 if (m->formatObj->i_getCapabilities() & MediumFormatCapabilities_File)
1334 {
1335 // compose full path of the medium, if it's not fully qualified...
1336 // slightly convoluted logic here. If the caller has given us a
1337 // machine folder, then a relative path will be relative to that:
1338 if ( !strMachineFolder.isEmpty()
1339 && !RTPathStartsWithRoot(data.strLocation.c_str())
1340 )
1341 {
1342 strFull = strMachineFolder;
1343 strFull += RTPATH_SLASH;
1344 strFull += data.strLocation;
1345 }
1346 else
1347 {
1348 // Otherwise use the old VirtualBox "make absolute path" logic:
1349 int vrc = m->pVirtualBox->i_calculateFullPath(data.strLocation, strFull);
1350 if (RT_FAILURE(vrc))
1351 return Global::vboxStatusCodeToCOM(vrc);
1352 }
1353 }
1354 else
1355 strFull = data.strLocation;
1356
1357 hrc = i_setLocation(strFull);
1358 if (FAILED(hrc)) return hrc;
1359
1360 if (aDeviceType == DeviceType_HardDisk)
1361 {
1362 /* type is only for base hard disks */
1363 if (m->pParent.isNull())
1364 m->type = data.hdType;
1365 }
1366 else if (aDeviceType == DeviceType_DVD)
1367 m->type = MediumType_Readonly;
1368 else
1369 m->type = MediumType_Writethrough;
1370
1371 /* remember device type for correct unregistering later */
1372 m->devType = aDeviceType;
1373
1374 LogFlowThisFunc(("m->strLocationFull='%s', m->strFormat=%s, m->id={%RTuuid}\n",
1375 m->strLocationFull.c_str(), m->strFormat.c_str(), m->id.raw()));
1376
1377 return S_OK;
1378}
1379
1380/**
1381 * Initializes and registers the medium object and its children by loading its
1382 * data from the given settings node. The medium will always be opened
1383 * read/write.
1384 *
1385 * @todo r=bird: What's that stuff about 'always be opened read/write'?
1386 *
1387 * In this case, since we're loading from a registry, uuidMachineRegistry is
1388 * always set: it's either the global registry UUID or a machine UUID when
1389 * loading from a per-machine registry.
1390 *
1391 * The only caller is currently VirtualBox::initMedia().
1392 *
1393 * @param aVirtualBox VirtualBox object.
1394 * @param aDeviceType Device type of the medium.
1395 * @param uuidMachineRegistry The registry to which this medium should be added
1396 * (global registry UUID or machine UUID).
1397 * @param strMachineFolder The machine folder with which to resolve relative
1398 * paths; if empty, then we use the VirtualBox home directory
1399 * @param data Configuration settings.
1400 * @param mediaTreeLock Autolock.
1401 * @param uIdsForNotify List to be updated with newly registered media.
1402 *
1403 * @note Assumes that the medium tree lock is held for writing. May release
1404 * and lock it again. At the end it is always held.
1405 */
1406/* static */
1407HRESULT Medium::initFromSettings(VirtualBox *aVirtualBox,
1408 DeviceType_T aDeviceType,
1409 const Guid &uuidMachineRegistry,
1410 const Utf8Str &strMachineFolder,
1411 const settings::Medium &data,
1412 AutoWriteLock &mediaTreeLock,
1413 std::list<std::pair<Guid, DeviceType_T> > &uIdsForNotify)
1414{
1415 Assert(aVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
1416 AssertReturn(aVirtualBox, E_INVALIDARG);
1417
1418 HRESULT hrc = S_OK;
1419
1420 MediaList llMediaTocleanup;
1421
1422 std::list<const settings::Medium *> llSettingsTodo;
1423 llSettingsTodo.push_back(&data);
1424 MediaList llParentsTodo;
1425 llParentsTodo.push_back(NULL);
1426
1427 while (!llSettingsTodo.empty())
1428 {
1429 const settings::Medium *current = llSettingsTodo.front();
1430 llSettingsTodo.pop_front();
1431 ComObjPtr<Medium> pParent = llParentsTodo.front();
1432 llParentsTodo.pop_front();
1433
1434 bool fReleasedMediaTreeLock = false;
1435 ComObjPtr<Medium> pMedium;
1436 hrc = pMedium.createObject();
1437 if (FAILED(hrc))
1438 break;
1439 ComObjPtr<Medium> pActualMedium(pMedium);
1440
1441 {
1442 AutoInitSpan autoInitSpan(pMedium);
1443 AssertBreakStmt(autoInitSpan.isOk(), hrc = E_FAIL);
1444
1445 unconst(pMedium->m->pVirtualBox) = aVirtualBox;
1446 hrc = pMedium->initOne(pParent, aDeviceType, uuidMachineRegistry, strMachineFolder, *current);
1447 if (FAILED(hrc))
1448 break;
1449 hrc = aVirtualBox->i_registerMedium(pActualMedium, &pActualMedium, mediaTreeLock, true /*fCalledFromMediumInit*/);
1450 if (SUCCEEDED(hrc) && pActualMedium == pMedium)
1451 {
1452 /* It is a truly new medium, remember details for cleanup. */
1453 autoInitSpan.setSucceeded();
1454 llMediaTocleanup.push_front(pMedium);
1455 }
1456 else
1457 {
1458 /* Since the newly created medium was replaced by an already
1459 * known one when merging medium trees, we can immediately mark
1460 * it as failed. */
1461 autoInitSpan.setFailed();
1462 mediaTreeLock.release();
1463 fReleasedMediaTreeLock = true;
1464 }
1465 }
1466 if (fReleasedMediaTreeLock)
1467 {
1468 /* With the InitSpan out of the way it's safe to let the refcount
1469 * drop to 0 without causing uninit trouble. */
1470 pMedium.setNull();
1471 mediaTreeLock.acquire();
1472
1473 if (FAILED(hrc))
1474 break;
1475 }
1476
1477 /* create all children */
1478 std::list<settings::Medium>::const_iterator itBegin = current->llChildren.begin();
1479 std::list<settings::Medium>::const_iterator itEnd = current->llChildren.end();
1480 for (std::list<settings::Medium>::const_iterator it = itBegin; it != itEnd; ++it)
1481 {
1482 llSettingsTodo.push_back(&*it);
1483 llParentsTodo.push_back(pActualMedium);
1484 }
1485 }
1486
1487 if (SUCCEEDED(hrc))
1488 {
1489 /* Check for consistency. */
1490 Assert(llSettingsTodo.size() == 0);
1491 Assert(llParentsTodo.size() == 0);
1492 /* Create the list of notifications, parent first. */
1493 for (MediaList::const_reverse_iterator it = llMediaTocleanup.rbegin(); it != llMediaTocleanup.rend(); ++it)
1494 {
1495 ComObjPtr<Medium> pMedium = *it;
1496 AutoCaller mediumCaller(pMedium);
1497 if (mediumCaller.isOk())
1498 {
1499 const Guid &id = pMedium->i_getId();
1500 uIdsForNotify.push_back(std::pair<Guid, DeviceType_T>(id, aDeviceType));
1501 }
1502 }
1503 }
1504 else
1505 {
1506 /* Forget state of the settings processing. */
1507 llSettingsTodo.clear();
1508 llParentsTodo.clear();
1509 /* Unregister all accumulated medium objects in the right order (last
1510 * created to first created, avoiding config leftovers). */
1511 MediaList::const_iterator itBegin = llMediaTocleanup.begin();
1512 MediaList::const_iterator itEnd = llMediaTocleanup.end();
1513 for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
1514 {
1515 ComObjPtr<Medium> pMedium = *it;
1516 pMedium->i_unregisterWithVirtualBox();
1517 }
1518 /* Forget the only references to all newly created medium objects,
1519 * triggering freeing (uninit happened in unregistering above). */
1520 mediaTreeLock.release();
1521 llMediaTocleanup.clear();
1522 mediaTreeLock.acquire();
1523 }
1524
1525 return hrc;
1526}
1527
1528/**
1529 * Initializes the medium object by providing the host drive information.
1530 * Not used for anything but the host floppy/host DVD case.
1531 *
1532 * There is no registry for this case.
1533 *
1534 * @param aVirtualBox VirtualBox object.
1535 * @param aDeviceType Device type of the medium.
1536 * @param aLocation Location of the host drive.
1537 * @param aDescription Comment for this host drive.
1538 *
1539 * @note Locks VirtualBox lock for writing.
1540 */
1541HRESULT Medium::init(VirtualBox *aVirtualBox,
1542 DeviceType_T aDeviceType,
1543 const Utf8Str &aLocation,
1544 const Utf8Str &aDescription /* = Utf8Str::Empty */)
1545{
1546 ComAssertRet(aDeviceType == DeviceType_DVD || aDeviceType == DeviceType_Floppy, E_INVALIDARG);
1547 ComAssertRet(!aLocation.isEmpty(), E_INVALIDARG);
1548
1549 /* Enclose the state transition NotReady->InInit->Ready */
1550 AutoInitSpan autoInitSpan(this);
1551 AssertReturn(autoInitSpan.isOk(), E_FAIL);
1552
1553 unconst(m->pVirtualBox) = aVirtualBox;
1554
1555 // We do not store host drives in VirtualBox.xml or anywhere else, so if we want
1556 // host drives to be identifiable by UUID and not give the drive a different UUID
1557 // every time VirtualBox starts, we need to fake a reproducible UUID here:
1558 RTUUID uuid;
1559 RTUuidClear(&uuid);
1560 if (aDeviceType == DeviceType_DVD)
1561 memcpy(&uuid.au8[0], "DVD", 3);
1562 else
1563 memcpy(&uuid.au8[0], "FD", 2);
1564 /* use device name, adjusted to the end of uuid, shortened if necessary */
1565 size_t lenLocation = aLocation.length();
1566 if (lenLocation > 12)
1567 memcpy(&uuid.au8[4], aLocation.c_str() + (lenLocation - 12), 12);
1568 else
1569 memcpy(&uuid.au8[4 + 12 - lenLocation], aLocation.c_str(), lenLocation);
1570 unconst(m->id) = uuid;
1571
1572 if (aDeviceType == DeviceType_DVD)
1573 m->type = MediumType_Readonly;
1574 else
1575 m->type = MediumType_Writethrough;
1576 m->devType = aDeviceType;
1577 m->state = MediumState_Created;
1578 m->hostDrive = true;
1579 HRESULT hrc = i_setFormat("RAW");
1580 if (FAILED(hrc)) return hrc;
1581 hrc = i_setLocation(aLocation);
1582 if (FAILED(hrc)) return hrc;
1583 m->strDescription = aDescription;
1584
1585 autoInitSpan.setSucceeded();
1586 return S_OK;
1587}
1588
1589/**
1590 * Uninitializes the instance.
1591 *
1592 * Called either from FinalRelease() or by the parent when it gets destroyed.
1593 *
1594 * @note All children of this medium get uninitialized, too, in a stack
1595 * friendly manner.
1596 */
1597void Medium::uninit()
1598{
1599 /* It is possible that some previous/concurrent uninit has already cleared
1600 * the pVirtualBox reference, and in this case we don't need to continue.
1601 * Normally this would be handled through the AutoUninitSpan magic, however
1602 * this cannot be done at this point as the media tree must be locked
1603 * before reaching the AutoUninitSpan, otherwise deadlocks can happen.
1604 *
1605 * NOTE: The tree lock is higher priority than the medium caller and medium
1606 * object locks, i.e. the medium caller may have to be released and be
1607 * re-acquired in the right place later. See Medium::getParent() for sample
1608 * code how to do this safely. */
1609 VirtualBox *pVirtualBox = m->pVirtualBox;
1610 if (!pVirtualBox)
1611 return;
1612
1613 /* Caller must not hold the object (checked below) or media tree lock. */
1614 Assert(!pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
1615
1616 AutoWriteLock treeLock(pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1617
1618 /* Must use a list without refcounting help since "this" might already have
1619 * reached 0, and then the refcount must not be increased again since it
1620 * would otherwise trigger a double free. For all other list entries this
1621 * needs manual refcount updating, to make sure the refcount for children
1622 * does not drop to 0 too early. */
1623 std::list<Medium *> llMediaTodo;
1624 llMediaTodo.push_back(this);
1625
1626 while (!llMediaTodo.empty())
1627 {
1628 Medium *pMedium = llMediaTodo.front();
1629 llMediaTodo.pop_front();
1630
1631 /* Enclose the state transition Ready->InUninit->NotReady */
1632 AutoUninitSpan autoUninitSpan(pMedium);
1633 if (autoUninitSpan.uninitDone())
1634 {
1635 if (pMedium != this)
1636 pMedium->Release();
1637 continue;
1638 }
1639
1640 Assert(!pMedium->isWriteLockOnCurrentThread());
1641#ifdef DEBUG
1642 if (!pMedium->m->backRefs.empty())
1643 pMedium->i_dumpBackRefs();
1644#endif
1645 Assert(pMedium->m->backRefs.empty());
1646
1647 pMedium->m->formatObj.setNull();
1648
1649 if (pMedium->m->state == MediumState_Deleting)
1650 {
1651 /* This medium has been already deleted (directly or as part of a
1652 * merge). Reparenting has already been done. */
1653 Assert(pMedium->m->pParent.isNull());
1654 Assert(pMedium->m->llChildren.empty());
1655 if (pMedium != this)
1656 pMedium->Release();
1657 continue;
1658 }
1659
1660 //Assert(!pMedium->m->pParent);
1661 /** @todo r=klaus Should not be necessary, since the caller should be
1662 * doing the deparenting. No time right now to test everything. */
1663 if (pMedium == this && pMedium->m->pParent)
1664 pMedium->i_deparent();
1665
1666 /* Process all children */
1667 MediaList::const_iterator itBegin = pMedium->m->llChildren.begin();
1668 MediaList::const_iterator itEnd = pMedium->m->llChildren.end();
1669 for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
1670 {
1671 Medium *pChild = *it;
1672 pChild->m->pParent.setNull();
1673 pChild->AddRef();
1674 llMediaTodo.push_back(pChild);
1675 }
1676
1677 /* Children information obsolete, will be processed anyway. */
1678 pMedium->m->llChildren.clear();
1679
1680 unconst(pMedium->m->pVirtualBox) = NULL;
1681
1682 if (pMedium != this)
1683 pMedium->Release();
1684
1685 autoUninitSpan.setSucceeded();
1686 }
1687}
1688
1689/**
1690 * Internal helper that removes "this" from the list of children of its
1691 * parent. Used in uninit() and other places when reparenting is necessary.
1692 *
1693 * The caller must hold the medium tree lock!
1694 */
1695void Medium::i_deparent()
1696{
1697 MediaList &llParent = m->pParent->m->llChildren;
1698 for (MediaList::iterator it = llParent.begin();
1699 it != llParent.end();
1700 ++it)
1701 {
1702 Medium *pParentsChild = *it;
1703 if (this == pParentsChild)
1704 {
1705 llParent.erase(it);
1706 break;
1707 }
1708 }
1709 m->pParent.setNull();
1710}
1711
1712/**
1713 * Internal helper that removes "this" from the list of children of its
1714 * parent. Used in uninit() and other places when reparenting is necessary.
1715 *
1716 * The caller must hold the medium tree lock!
1717 */
1718void Medium::i_setParent(const ComObjPtr<Medium> &pParent)
1719{
1720 m->pParent = pParent;
1721 if (pParent)
1722 pParent->m->llChildren.push_back(this);
1723}
1724
1725
1726////////////////////////////////////////////////////////////////////////////////
1727//
1728// IMedium public methods
1729//
1730////////////////////////////////////////////////////////////////////////////////
1731
1732HRESULT Medium::getId(com::Guid &aId)
1733{
1734 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1735
1736 aId = m->id;
1737
1738 return S_OK;
1739}
1740
1741HRESULT Medium::getDescription(AutoCaller &autoCaller, com::Utf8Str &aDescription)
1742{
1743 NOREF(autoCaller);
1744 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1745
1746 aDescription = m->strDescription;
1747
1748 return S_OK;
1749}
1750
1751HRESULT Medium::setDescription(AutoCaller &autoCaller, const com::Utf8Str &aDescription)
1752{
1753 /// @todo update m->strDescription and save the global registry (and local
1754 /// registries of portable VMs referring to this medium), this will also
1755 /// require to add the mRegistered flag to data
1756
1757 HRESULT hrc = S_OK;
1758
1759 MediumLockList *pMediumLockList(new MediumLockList());
1760
1761 try
1762 {
1763 autoCaller.release();
1764
1765 // to avoid redundant locking, which just takes a time, just call required functions.
1766 // the error will be just stored and will be reported after locks will be acquired again
1767
1768 const char *pszError = NULL;
1769
1770
1771 /* Build the lock list. */
1772 hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
1773 this /* pToLockWrite */,
1774 true /* fMediumLockWriteAll */,
1775 NULL,
1776 *pMediumLockList);
1777 if (FAILED(hrc))
1778 pszError = tr("Failed to create medium lock list for '%s'");
1779 else
1780 {
1781 hrc = pMediumLockList->Lock();
1782 if (FAILED(hrc))
1783 pszError = tr("Failed to lock media '%s'");
1784 }
1785
1786 // locking: we need the tree lock first because we access parent pointers
1787 // and we need to write-lock the media involved
1788 AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1789
1790 autoCaller.add();
1791 AssertComRCThrowRC(autoCaller.hrc());
1792
1793 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
1794
1795 if (FAILED(hrc))
1796 throw setError(hrc, pszError, i_getLocationFull().c_str());
1797
1798 /* Set a new description */
1799 m->strDescription = aDescription;
1800
1801 // save the settings
1802 alock.release();
1803 autoCaller.release();
1804 treeLock.release();
1805 i_markRegistriesModified();
1806 m->pVirtualBox->i_saveModifiedRegistries();
1807 m->pVirtualBox->i_onMediumConfigChanged(this);
1808 }
1809 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
1810
1811 delete pMediumLockList;
1812
1813 return hrc;
1814}
1815
1816HRESULT Medium::getState(MediumState_T *aState)
1817{
1818 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1819 *aState = m->state;
1820
1821 return S_OK;
1822}
1823
1824HRESULT Medium::getVariant(std::vector<MediumVariant_T> &aVariant)
1825{
1826 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1827
1828 const size_t cBits = sizeof(MediumVariant_T) * 8;
1829 aVariant.resize(cBits);
1830 for (size_t i = 0; i < cBits; ++i)
1831 aVariant[i] = (MediumVariant_T)(m->variant & RT_BIT(i));
1832
1833 return S_OK;
1834}
1835
1836HRESULT Medium::getLocation(com::Utf8Str &aLocation)
1837{
1838 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1839
1840 aLocation = m->strLocationFull;
1841
1842 return S_OK;
1843}
1844
1845HRESULT Medium::getName(com::Utf8Str &aName)
1846{
1847 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1848
1849 aName = i_getName();
1850
1851 return S_OK;
1852}
1853
1854HRESULT Medium::getDeviceType(DeviceType_T *aDeviceType)
1855{
1856 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1857
1858 *aDeviceType = m->devType;
1859
1860 return S_OK;
1861}
1862
1863HRESULT Medium::getHostDrive(BOOL *aHostDrive)
1864{
1865 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1866
1867 *aHostDrive = m->hostDrive;
1868
1869 return S_OK;
1870}
1871
1872HRESULT Medium::getSize(LONG64 *aSize)
1873{
1874 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1875
1876 *aSize = (LONG64)m->size;
1877
1878 return S_OK;
1879}
1880
1881HRESULT Medium::getFormat(com::Utf8Str &aFormat)
1882{
1883 /* no need to lock, m->strFormat is const */
1884
1885 aFormat = m->strFormat;
1886 return S_OK;
1887}
1888
1889HRESULT Medium::getMediumFormat(ComPtr<IMediumFormat> &aMediumFormat)
1890{
1891 /* no need to lock, m->formatObj is const */
1892 m->formatObj.queryInterfaceTo(aMediumFormat.asOutParam());
1893
1894 return S_OK;
1895}
1896
1897HRESULT Medium::getType(AutoCaller &autoCaller, MediumType_T *aType)
1898{
1899 NOREF(autoCaller);
1900 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
1901
1902 *aType = m->type;
1903
1904 return S_OK;
1905}
1906
1907HRESULT Medium::setType(AutoCaller &autoCaller, MediumType_T aType)
1908{
1909 autoCaller.release();
1910
1911 /* It is possible that some previous/concurrent uninit has already cleared
1912 * the pVirtualBox reference, see #uninit(). */
1913 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
1914
1915 // we access m->pParent
1916 AutoReadLock treeLock(!pVirtualBox.isNull() ? &pVirtualBox->i_getMediaTreeLockHandle() : NULL COMMA_LOCKVAL_SRC_POS);
1917
1918 autoCaller.add();
1919 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
1920
1921 AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
1922
1923 /* Wait for a concurrently running Medium::i_queryInfo to complete. */
1924 while (m->queryInfoRunning)
1925 {
1926 mlock.release();
1927 autoCaller.release();
1928 treeLock.release();
1929 /* Must not hold the media tree lock, as Medium::i_queryInfo needs
1930 * this lock and thus we would run into a deadlock here. */
1931 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
1932 /* must not hold the object lock now */
1933 Assert(!isWriteLockOnCurrentThread());
1934 {
1935 AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
1936 }
1937 treeLock.acquire();
1938 autoCaller.add();
1939 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
1940 mlock.acquire();
1941 }
1942
1943 switch (m->state)
1944 {
1945 case MediumState_Created:
1946 case MediumState_Inaccessible:
1947 break;
1948 default:
1949 return i_setStateError();
1950 }
1951
1952 if (m->type == aType)
1953 {
1954 /* Nothing to do */
1955 return S_OK;
1956 }
1957
1958 DeviceType_T devType = i_getDeviceType();
1959 // DVD media can only be readonly.
1960 if (devType == DeviceType_DVD && aType != MediumType_Readonly)
1961 return setError(VBOX_E_INVALID_OBJECT_STATE,
1962 tr("Cannot change the type of DVD medium '%s'"),
1963 m->strLocationFull.c_str());
1964 // Floppy media can only be writethrough or readonly.
1965 if ( devType == DeviceType_Floppy
1966 && aType != MediumType_Writethrough
1967 && aType != MediumType_Readonly)
1968 return setError(VBOX_E_INVALID_OBJECT_STATE,
1969 tr("Cannot change the type of floppy medium '%s'"),
1970 m->strLocationFull.c_str());
1971
1972 /* cannot change the type of a differencing medium */
1973 if (m->pParent)
1974 return setError(VBOX_E_INVALID_OBJECT_STATE,
1975 tr("Cannot change the type of medium '%s' because it is a differencing medium"),
1976 m->strLocationFull.c_str());
1977
1978 /* Cannot change the type of a medium being in use by more than one VM.
1979 * If the change is to Immutable or MultiAttach then it must not be
1980 * directly attached to any VM, otherwise the assumptions about indirect
1981 * attachment elsewhere are violated and the VM becomes inaccessible.
1982 * Attaching an immutable medium triggers the diff creation, and this is
1983 * vital for the correct operation. */
1984 if ( m->backRefs.size() > 1
1985 || ( ( aType == MediumType_Immutable
1986 || aType == MediumType_MultiAttach)
1987 && m->backRefs.size() > 0))
1988 return setError(VBOX_E_INVALID_OBJECT_STATE,
1989 tr("Cannot change the type of medium '%s' because it is attached to %d virtual machines",
1990 "", m->backRefs.size()),
1991 m->strLocationFull.c_str(), m->backRefs.size());
1992
1993 switch (aType)
1994 {
1995 case MediumType_Normal:
1996 case MediumType_Immutable:
1997 case MediumType_MultiAttach:
1998 {
1999 /* normal can be easily converted to immutable and vice versa even
2000 * if they have children as long as they are not attached to any
2001 * machine themselves */
2002 break;
2003 }
2004 case MediumType_Writethrough:
2005 case MediumType_Shareable:
2006 case MediumType_Readonly:
2007 {
2008 /* cannot change to writethrough, shareable or readonly
2009 * if there are children */
2010 if (i_getChildren().size() != 0)
2011 return setError(VBOX_E_OBJECT_IN_USE,
2012 tr("Cannot change type for medium '%s' since it has %d child media", "", i_getChildren().size()),
2013 m->strLocationFull.c_str(), i_getChildren().size());
2014 if (aType == MediumType_Shareable)
2015 {
2016 MediumVariant_T variant = i_getVariant();
2017 if (!(variant & MediumVariant_Fixed))
2018 return setError(VBOX_E_INVALID_OBJECT_STATE,
2019 tr("Cannot change type for medium '%s' to 'Shareable' since it is a dynamic medium storage unit"),
2020 m->strLocationFull.c_str());
2021 }
2022 else if (aType == MediumType_Readonly && devType == DeviceType_HardDisk)
2023 {
2024 // Readonly hard disks are not allowed, this medium type is reserved for
2025 // DVDs and floppy images at the moment. Later we might allow readonly hard
2026 // disks, but that's extremely unusual and many guest OSes will have trouble.
2027 return setError(VBOX_E_INVALID_OBJECT_STATE,
2028 tr("Cannot change type for medium '%s' to 'Readonly' since it is a hard disk"),
2029 m->strLocationFull.c_str());
2030 }
2031 break;
2032 }
2033 default:
2034 AssertFailedReturn(E_FAIL);
2035 }
2036
2037 if (aType == MediumType_MultiAttach)
2038 {
2039 // This type is new with VirtualBox 4.0 and therefore requires settings
2040 // version 1.11 in the settings backend. Unfortunately it is not enough to do
2041 // the usual routine in MachineConfigFile::bumpSettingsVersionIfNeeded() for
2042 // two reasons: The medium type is a property of the media registry tree, which
2043 // can reside in the global config file (for pre-4.0 media); we would therefore
2044 // possibly need to bump the global config version. We don't want to do that though
2045 // because that might make downgrading to pre-4.0 impossible.
2046 // As a result, we can only use these two new types if the medium is NOT in the
2047 // global registry:
2048 const Guid &uuidGlobalRegistry = m->pVirtualBox->i_getGlobalRegistryId();
2049 if (i_isInRegistry(uuidGlobalRegistry))
2050 return setError(VBOX_E_INVALID_OBJECT_STATE,
2051 tr("Cannot change type for medium '%s': the media type 'MultiAttach' can only be used "
2052 "on media registered with a machine that was created with VirtualBox 4.0 or later"),
2053 m->strLocationFull.c_str());
2054 }
2055
2056 m->type = aType;
2057
2058 // save the settings
2059 mlock.release();
2060 autoCaller.release();
2061 treeLock.release();
2062 i_markRegistriesModified();
2063 m->pVirtualBox->i_saveModifiedRegistries();
2064 m->pVirtualBox->i_onMediumConfigChanged(this);
2065
2066 return S_OK;
2067}
2068
2069HRESULT Medium::getAllowedTypes(std::vector<MediumType_T> &aAllowedTypes)
2070{
2071 NOREF(aAllowedTypes);
2072 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2073
2074 ReturnComNotImplemented();
2075}
2076
2077HRESULT Medium::getParent(AutoCaller &autoCaller, ComPtr<IMedium> &aParent)
2078{
2079 autoCaller.release();
2080
2081 /* It is possible that some previous/concurrent uninit has already cleared
2082 * the pVirtualBox reference, see #uninit(). */
2083 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
2084
2085 /* we access m->pParent */
2086 AutoReadLock treeLock(!pVirtualBox.isNull() ? &pVirtualBox->i_getMediaTreeLockHandle() : NULL COMMA_LOCKVAL_SRC_POS);
2087
2088 autoCaller.add();
2089 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
2090
2091 m->pParent.queryInterfaceTo(aParent.asOutParam());
2092
2093 return S_OK;
2094}
2095
2096HRESULT Medium::getChildren(AutoCaller &autoCaller, std::vector<ComPtr<IMedium> > &aChildren)
2097{
2098 autoCaller.release();
2099
2100 /* It is possible that some previous/concurrent uninit has already cleared
2101 * the pVirtualBox reference, see #uninit(). */
2102 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
2103
2104 /* we access children */
2105 AutoReadLock treeLock(!pVirtualBox.isNull() ? &pVirtualBox->i_getMediaTreeLockHandle() : NULL COMMA_LOCKVAL_SRC_POS);
2106
2107 autoCaller.add();
2108 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
2109
2110 MediaList children(this->i_getChildren());
2111 aChildren.resize(children.size());
2112 size_t i = 0;
2113 for (MediaList::const_iterator it = children.begin(); it != children.end(); ++it, ++i)
2114 (*it).queryInterfaceTo(aChildren[i].asOutParam());
2115 return S_OK;
2116}
2117
2118HRESULT Medium::getBase(AutoCaller &autoCaller, ComPtr<IMedium> &aBase)
2119{
2120 autoCaller.release();
2121
2122 /* i_getBase() will do callers/locking */
2123 i_getBase().queryInterfaceTo(aBase.asOutParam());
2124
2125 return S_OK;
2126}
2127
2128HRESULT Medium::getReadOnly(AutoCaller &autoCaller, BOOL *aReadOnly)
2129{
2130 autoCaller.release();
2131
2132 /* isReadOnly() will do locking */
2133 *aReadOnly = i_isReadOnly();
2134
2135 return S_OK;
2136}
2137
2138HRESULT Medium::getLogicalSize(LONG64 *aLogicalSize)
2139{
2140 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2141
2142 *aLogicalSize = (LONG64)m->logicalSize;
2143
2144 return S_OK;
2145}
2146
2147HRESULT Medium::getAutoReset(BOOL *aAutoReset)
2148{
2149 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2150
2151 if (m->pParent.isNull())
2152 *aAutoReset = FALSE;
2153 else
2154 *aAutoReset = m->autoReset;
2155
2156 return S_OK;
2157}
2158
2159HRESULT Medium::setAutoReset(BOOL aAutoReset)
2160{
2161 AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
2162
2163 if (m->pParent.isNull())
2164 return setError(VBOX_E_NOT_SUPPORTED,
2165 tr("Medium '%s' is not differencing"),
2166 m->strLocationFull.c_str());
2167
2168 if (m->autoReset != !!aAutoReset)
2169 {
2170 m->autoReset = !!aAutoReset;
2171
2172 // save the settings
2173 mlock.release();
2174 i_markRegistriesModified();
2175 m->pVirtualBox->i_saveModifiedRegistries();
2176 m->pVirtualBox->i_onMediumConfigChanged(this);
2177 }
2178
2179 return S_OK;
2180}
2181
2182HRESULT Medium::getLastAccessError(com::Utf8Str &aLastAccessError)
2183{
2184 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2185
2186 aLastAccessError = m->strLastAccessError;
2187
2188 return S_OK;
2189}
2190
2191HRESULT Medium::getMachineIds(std::vector<com::Guid> &aMachineIds)
2192{
2193 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2194
2195 if (m->backRefs.size() != 0)
2196 {
2197 BackRefList brlist(m->backRefs);
2198 aMachineIds.resize(brlist.size());
2199 size_t i = 0;
2200 for (BackRefList::const_iterator it = brlist.begin(); it != brlist.end(); ++it, ++i)
2201 aMachineIds[i] = it->machineId;
2202 }
2203
2204 return S_OK;
2205}
2206
2207HRESULT Medium::setIds(AutoCaller &autoCaller,
2208 BOOL aSetImageId,
2209 const com::Guid &aImageId,
2210 BOOL aSetParentId,
2211 const com::Guid &aParentId)
2212{
2213 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2214
2215 /* Wait for a concurrently running Medium::i_queryInfo to complete. */
2216 if (m->queryInfoRunning)
2217 {
2218 /* Must not hold the media tree lock, as Medium::i_queryInfo needs this
2219 * lock and thus we would run into a deadlock here. */
2220 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
2221 while (m->queryInfoRunning)
2222 {
2223 alock.release();
2224 /* must not hold the object lock now */
2225 Assert(!isWriteLockOnCurrentThread());
2226 {
2227 AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
2228 }
2229 alock.acquire();
2230 }
2231 }
2232
2233 switch (m->state)
2234 {
2235 case MediumState_Created:
2236 break;
2237 default:
2238 return i_setStateError();
2239 }
2240
2241 Guid imageId, parentId;
2242 if (aSetImageId)
2243 {
2244 if (aImageId.isZero())
2245 imageId.create();
2246 else
2247 {
2248 imageId = aImageId;
2249 if (!imageId.isValid())
2250 return setError(E_INVALIDARG, tr("Argument %s is invalid"), "aImageId");
2251 }
2252 }
2253 if (aSetParentId)
2254 {
2255 if (aParentId.isZero())
2256 parentId.create();
2257 else
2258 parentId = aParentId;
2259 }
2260
2261 const Guid uPrevImage = m->uuidImage;
2262 unconst(m->uuidImage) = imageId;
2263 ComObjPtr<Medium> pPrevParent = i_getParent();
2264 unconst(m->uuidParentImage) = parentId;
2265
2266 // must not hold any locks before calling Medium::i_queryInfo
2267 alock.release();
2268
2269 HRESULT hrc = i_queryInfo(!!aSetImageId /* fSetImageId */,
2270 !!aSetParentId /* fSetParentId */,
2271 autoCaller);
2272
2273 AutoReadLock arlock(this COMMA_LOCKVAL_SRC_POS);
2274 const Guid uCurrImage = m->uuidImage;
2275 ComObjPtr<Medium> pCurrParent = i_getParent();
2276 arlock.release();
2277
2278 if (SUCCEEDED(hrc))
2279 {
2280 if (uCurrImage != uPrevImage)
2281 m->pVirtualBox->i_onMediumConfigChanged(this);
2282 if (pPrevParent != pCurrParent)
2283 {
2284 if (pPrevParent)
2285 m->pVirtualBox->i_onMediumConfigChanged(pPrevParent);
2286 if (pCurrParent)
2287 m->pVirtualBox->i_onMediumConfigChanged(pCurrParent);
2288 }
2289 }
2290
2291 return hrc;
2292}
2293
2294HRESULT Medium::refreshState(AutoCaller &autoCaller, MediumState_T *aState)
2295{
2296 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2297
2298 HRESULT hrc = S_OK;
2299
2300 switch (m->state)
2301 {
2302 case MediumState_Created:
2303 case MediumState_Inaccessible:
2304 case MediumState_LockedRead:
2305 {
2306 // must not hold any locks before calling Medium::i_queryInfo
2307 alock.release();
2308
2309 hrc = i_queryInfo(false /* fSetImageId */, false /* fSetParentId */, autoCaller);
2310
2311 alock.acquire();
2312 break;
2313 }
2314 default:
2315 break;
2316 }
2317
2318 *aState = m->state;
2319
2320 return hrc;
2321}
2322
2323HRESULT Medium::getSnapshotIds(const com::Guid &aMachineId,
2324 std::vector<com::Guid> &aSnapshotIds)
2325{
2326 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2327
2328 for (BackRefList::const_iterator it = m->backRefs.begin();
2329 it != m->backRefs.end(); ++it)
2330 {
2331 if (it->machineId == aMachineId)
2332 {
2333 size_t size = it->llSnapshotIds.size();
2334
2335 /* if the medium is attached to the machine in the current state, we
2336 * return its ID as the first element of the array */
2337 if (it->fInCurState)
2338 ++size;
2339
2340 if (size > 0)
2341 {
2342 aSnapshotIds.resize(size);
2343
2344 size_t j = 0;
2345 if (it->fInCurState)
2346 aSnapshotIds[j++] = it->machineId.toUtf16();
2347
2348 for(std::list<SnapshotRef>::const_iterator jt = it->llSnapshotIds.begin(); jt != it->llSnapshotIds.end(); ++jt, ++j)
2349 aSnapshotIds[j] = jt->snapshotId;
2350 }
2351
2352 break;
2353 }
2354 }
2355
2356 return S_OK;
2357}
2358
2359HRESULT Medium::lockRead(ComPtr<IToken> &aToken)
2360{
2361 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2362
2363 /* Wait for a concurrently running Medium::i_queryInfo to complete. */
2364 if (m->queryInfoRunning)
2365 {
2366 /* Must not hold the media tree lock, as Medium::i_queryInfo needs this
2367 * lock and thus we would run into a deadlock here. */
2368 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
2369 while (m->queryInfoRunning)
2370 {
2371 alock.release();
2372 /* must not hold the object lock now */
2373 Assert(!isWriteLockOnCurrentThread());
2374 {
2375 AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
2376 }
2377 alock.acquire();
2378 }
2379 }
2380
2381 HRESULT hrc = S_OK;
2382
2383 switch (m->state)
2384 {
2385 case MediumState_Created:
2386 case MediumState_Inaccessible:
2387 case MediumState_LockedRead:
2388 {
2389 ++m->readers;
2390
2391 ComAssertMsgBreak(m->readers != 0, (tr("Counter overflow")), hrc = E_FAIL);
2392
2393 /* Remember pre-lock state */
2394 if (m->state != MediumState_LockedRead)
2395 m->preLockState = m->state;
2396
2397 LogFlowThisFunc(("Okay - prev state=%d readers=%d\n", m->state, m->readers));
2398 m->state = MediumState_LockedRead;
2399
2400 ComObjPtr<MediumLockToken> pToken;
2401 hrc = pToken.createObject();
2402 if (SUCCEEDED(hrc))
2403 hrc = pToken->init(this, false /* fWrite */);
2404 if (FAILED(hrc))
2405 {
2406 --m->readers;
2407 if (m->readers == 0)
2408 m->state = m->preLockState;
2409 return hrc;
2410 }
2411
2412 pToken.queryInterfaceTo(aToken.asOutParam());
2413 break;
2414 }
2415 default:
2416 {
2417 LogFlowThisFunc(("Failing - state=%d\n", m->state));
2418 hrc = i_setStateError();
2419 break;
2420 }
2421 }
2422
2423 return hrc;
2424}
2425
2426/**
2427 * @note @a aState may be NULL if the state value is not needed (only for
2428 * in-process calls).
2429 */
2430HRESULT Medium::i_unlockRead(MediumState_T *aState)
2431{
2432 AutoCaller autoCaller(this);
2433 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
2434
2435 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2436
2437 HRESULT hrc = S_OK;
2438
2439 switch (m->state)
2440 {
2441 case MediumState_LockedRead:
2442 {
2443 ComAssertMsgBreak(m->readers != 0, (tr("Counter underflow")), hrc = E_FAIL);
2444 --m->readers;
2445
2446 /* Reset the state after the last reader */
2447 if (m->readers == 0)
2448 {
2449 m->state = m->preLockState;
2450 /* There are cases where we inject the deleting state into
2451 * a medium locked for reading. Make sure #unmarkForDeletion()
2452 * gets the right state afterwards. */
2453 if (m->preLockState == MediumState_Deleting)
2454 m->preLockState = MediumState_Created;
2455 }
2456
2457 LogFlowThisFunc(("new state=%d\n", m->state));
2458 break;
2459 }
2460 default:
2461 {
2462 LogFlowThisFunc(("Failing - state=%d\n", m->state));
2463 hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("Medium '%s' is not locked for reading"), m->strLocationFull.c_str());
2464 break;
2465 }
2466 }
2467
2468 /* return the current state after */
2469 if (aState)
2470 *aState = m->state;
2471
2472 return hrc;
2473}
2474HRESULT Medium::lockWrite(ComPtr<IToken> &aToken)
2475{
2476 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2477
2478 /* Wait for a concurrently running Medium::i_queryInfo to complete. */
2479 if (m->queryInfoRunning)
2480 {
2481 /* Must not hold the media tree lock, as Medium::i_queryInfo needs this
2482 * lock and thus we would run into a deadlock here. */
2483 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
2484 while (m->queryInfoRunning)
2485 {
2486 alock.release();
2487 /* must not hold the object lock now */
2488 Assert(!isWriteLockOnCurrentThread());
2489 {
2490 AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
2491 }
2492 alock.acquire();
2493 }
2494 }
2495
2496 HRESULT hrc = S_OK;
2497
2498 switch (m->state)
2499 {
2500 case MediumState_Created:
2501 case MediumState_Inaccessible:
2502 {
2503 m->preLockState = m->state;
2504
2505 LogFlowThisFunc(("Okay - prev state=%d locationFull=%s\n", m->state, i_getLocationFull().c_str()));
2506 m->state = MediumState_LockedWrite;
2507
2508 ComObjPtr<MediumLockToken> pToken;
2509 hrc = pToken.createObject();
2510 if (SUCCEEDED(hrc))
2511 hrc = pToken->init(this, true /* fWrite */);
2512 if (FAILED(hrc))
2513 {
2514 m->state = m->preLockState;
2515 return hrc;
2516 }
2517
2518 pToken.queryInterfaceTo(aToken.asOutParam());
2519 break;
2520 }
2521 default:
2522 {
2523 LogFlowThisFunc(("Failing - state=%d locationFull=%s\n", m->state, i_getLocationFull().c_str()));
2524 hrc = i_setStateError();
2525 break;
2526 }
2527 }
2528
2529 return hrc;
2530}
2531
2532/**
2533 * @note @a aState may be NULL if the state value is not needed (only for
2534 * in-process calls).
2535 */
2536HRESULT Medium::i_unlockWrite(MediumState_T *aState)
2537{
2538 AutoCaller autoCaller(this);
2539 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
2540
2541 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2542
2543 HRESULT hrc = S_OK;
2544
2545 switch (m->state)
2546 {
2547 case MediumState_LockedWrite:
2548 {
2549 m->state = m->preLockState;
2550 /* There are cases where we inject the deleting state into
2551 * a medium locked for writing. Make sure #unmarkForDeletion()
2552 * gets the right state afterwards. */
2553 if (m->preLockState == MediumState_Deleting)
2554 m->preLockState = MediumState_Created;
2555 LogFlowThisFunc(("new state=%d locationFull=%s\n", m->state, i_getLocationFull().c_str()));
2556 break;
2557 }
2558 default:
2559 {
2560 LogFlowThisFunc(("Failing - state=%d locationFull=%s\n", m->state, i_getLocationFull().c_str()));
2561 hrc = setError(VBOX_E_INVALID_OBJECT_STATE, tr("Medium '%s' is not locked for writing"), m->strLocationFull.c_str());
2562 break;
2563 }
2564 }
2565
2566 /* return the current state after */
2567 if (aState)
2568 *aState = m->state;
2569
2570 return hrc;
2571}
2572
2573HRESULT Medium::close(AutoCaller &aAutoCaller)
2574{
2575 // make a copy of VirtualBox pointer which gets nulled by uninit()
2576 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
2577
2578 Guid uId = i_getId();
2579 DeviceType_T devType = i_getDeviceType();
2580 MultiResult mrc = i_close(aAutoCaller);
2581
2582 pVirtualBox->i_saveModifiedRegistries();
2583
2584 if (SUCCEEDED(mrc) && uId.isValid() && !uId.isZero())
2585 pVirtualBox->i_onMediumRegistered(uId, devType, FALSE);
2586
2587 return mrc;
2588}
2589
2590HRESULT Medium::getProperty(const com::Utf8Str &aName,
2591 com::Utf8Str &aValue)
2592{
2593 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2594
2595 settings::StringsMap::const_iterator it = m->mapProperties.find(aName);
2596 if (it == m->mapProperties.end())
2597 {
2598 if (!aName.startsWith("Special/"))
2599 return setError(VBOX_E_OBJECT_NOT_FOUND,
2600 tr("Property '%s' does not exist"), aName.c_str());
2601 else
2602 /* be more silent here */
2603 return VBOX_E_OBJECT_NOT_FOUND;
2604 }
2605
2606 aValue = it->second;
2607
2608 return S_OK;
2609}
2610
2611HRESULT Medium::setProperty(const com::Utf8Str &aName,
2612 const com::Utf8Str &aValue)
2613{
2614 AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
2615
2616 /* Wait for a concurrently running Medium::i_queryInfo to complete. */
2617 if (m->queryInfoRunning)
2618 {
2619 /* Must not hold the media tree lock, as Medium::i_queryInfo needs this
2620 * lock and thus we would run into a deadlock here. */
2621 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
2622 while (m->queryInfoRunning)
2623 {
2624 mlock.release();
2625 /* must not hold the object lock now */
2626 Assert(!isWriteLockOnCurrentThread());
2627 {
2628 AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
2629 }
2630 mlock.acquire();
2631 }
2632 }
2633
2634 switch (m->state)
2635 {
2636 case MediumState_NotCreated:
2637 case MediumState_Created:
2638 case MediumState_Inaccessible:
2639 break;
2640 default:
2641 return i_setStateError();
2642 }
2643
2644 settings::StringsMap::iterator it = m->mapProperties.find(aName);
2645 if ( !aName.startsWith("Special/")
2646 && !i_isPropertyForFilter(aName))
2647 {
2648 if (it == m->mapProperties.end())
2649 return setError(VBOX_E_OBJECT_NOT_FOUND,
2650 tr("Property '%s' does not exist"),
2651 aName.c_str());
2652 it->second = aValue;
2653 }
2654 else
2655 {
2656 if (it == m->mapProperties.end())
2657 {
2658 if (!aValue.isEmpty())
2659 m->mapProperties[aName] = aValue;
2660 }
2661 else
2662 {
2663 if (!aValue.isEmpty())
2664 it->second = aValue;
2665 else
2666 m->mapProperties.erase(it);
2667 }
2668 }
2669
2670 // save the settings
2671 mlock.release();
2672 i_markRegistriesModified();
2673 m->pVirtualBox->i_saveModifiedRegistries();
2674 m->pVirtualBox->i_onMediumConfigChanged(this);
2675
2676 return S_OK;
2677}
2678
2679HRESULT Medium::getProperties(const com::Utf8Str &aNames,
2680 std::vector<com::Utf8Str> &aReturnNames,
2681 std::vector<com::Utf8Str> &aReturnValues)
2682{
2683 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
2684
2685 /// @todo make use of aNames according to the documentation
2686 NOREF(aNames);
2687
2688 aReturnNames.resize(m->mapProperties.size());
2689 aReturnValues.resize(m->mapProperties.size());
2690 size_t i = 0;
2691 for (settings::StringsMap::const_iterator it = m->mapProperties.begin();
2692 it != m->mapProperties.end();
2693 ++it, ++i)
2694 {
2695 aReturnNames[i] = it->first;
2696 aReturnValues[i] = it->second;
2697 }
2698 return S_OK;
2699}
2700
2701HRESULT Medium::setProperties(const std::vector<com::Utf8Str> &aNames,
2702 const std::vector<com::Utf8Str> &aValues)
2703{
2704 AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
2705
2706 /* first pass: validate names */
2707 for (size_t i = 0;
2708 i < aNames.size();
2709 ++i)
2710 {
2711 Utf8Str strName(aNames[i]);
2712 if ( !strName.startsWith("Special/")
2713 && !i_isPropertyForFilter(strName)
2714 && m->mapProperties.find(strName) == m->mapProperties.end())
2715 return setError(VBOX_E_OBJECT_NOT_FOUND,
2716 tr("Property '%s' does not exist"), strName.c_str());
2717 }
2718
2719 /* second pass: assign */
2720 for (size_t i = 0;
2721 i < aNames.size();
2722 ++i)
2723 {
2724 Utf8Str strName(aNames[i]);
2725 Utf8Str strValue(aValues[i]);
2726 settings::StringsMap::iterator it = m->mapProperties.find(strName);
2727 if ( !strName.startsWith("Special/")
2728 && !i_isPropertyForFilter(strName))
2729 {
2730 AssertReturn(it != m->mapProperties.end(), E_FAIL);
2731 it->second = strValue;
2732 }
2733 else
2734 {
2735 if (it == m->mapProperties.end())
2736 {
2737 if (!strValue.isEmpty())
2738 m->mapProperties[strName] = strValue;
2739 }
2740 else
2741 {
2742 if (!strValue.isEmpty())
2743 it->second = strValue;
2744 else
2745 m->mapProperties.erase(it);
2746 }
2747 }
2748 }
2749
2750 // save the settings
2751 mlock.release();
2752 i_markRegistriesModified();
2753 m->pVirtualBox->i_saveModifiedRegistries();
2754 m->pVirtualBox->i_onMediumConfigChanged(this);
2755
2756 return S_OK;
2757}
2758
2759HRESULT Medium::createBaseStorage(LONG64 aLogicalSize,
2760 const std::vector<MediumVariant_T> &aVariant,
2761 ComPtr<IProgress> &aProgress)
2762{
2763 if (aLogicalSize < 0)
2764 return setError(E_INVALIDARG, tr("The medium size argument (%lld) is negative"), aLogicalSize);
2765
2766 HRESULT hrc = S_OK;
2767 ComObjPtr<Progress> pProgress;
2768 Medium::Task *pTask = NULL;
2769
2770 try
2771 {
2772 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
2773
2774 ULONG mediumVariantFlags = 0;
2775
2776 if (aVariant.size())
2777 {
2778 for (size_t i = 0; i < aVariant.size(); i++)
2779 mediumVariantFlags |= (ULONG)aVariant[i];
2780 }
2781
2782 mediumVariantFlags &= ((unsigned)~MediumVariant_Diff);
2783
2784 if ( !(mediumVariantFlags & MediumVariant_Fixed)
2785 && !(m->formatObj->i_getCapabilities() & MediumFormatCapabilities_CreateDynamic))
2786 throw setError(VBOX_E_NOT_SUPPORTED,
2787 tr("Medium format '%s' does not support dynamic storage creation"),
2788 m->strFormat.c_str());
2789
2790 if ( (mediumVariantFlags & MediumVariant_Fixed)
2791 && !(m->formatObj->i_getCapabilities() & MediumFormatCapabilities_CreateFixed))
2792 throw setError(VBOX_E_NOT_SUPPORTED,
2793 tr("Medium format '%s' does not support fixed storage creation"),
2794 m->strFormat.c_str());
2795
2796 if ( (mediumVariantFlags & MediumVariant_Formatted)
2797 && i_getDeviceType() != DeviceType_Floppy)
2798 throw setError(VBOX_E_NOT_SUPPORTED,
2799 tr("Medium variant 'formatted' applies to floppy images only"));
2800
2801 if (m->state != MediumState_NotCreated)
2802 throw i_setStateError();
2803
2804 pProgress.createObject();
2805 hrc = pProgress->init(m->pVirtualBox,
2806 static_cast<IMedium*>(this),
2807 mediumVariantFlags & MediumVariant_Fixed
2808 ? BstrFmt(tr("Creating fixed medium storage unit '%s'"), m->strLocationFull.c_str()).raw()
2809 : BstrFmt(tr("Creating dynamic medium storage unit '%s'"), m->strLocationFull.c_str()).raw(),
2810 TRUE /* aCancelable */);
2811 if (FAILED(hrc))
2812 throw hrc;
2813
2814 /* setup task object to carry out the operation asynchronously */
2815 pTask = new Medium::CreateBaseTask(this, pProgress, (uint64_t)aLogicalSize,
2816 (MediumVariant_T)mediumVariantFlags);
2817 hrc = pTask->hrc();
2818 AssertComRC(hrc);
2819 if (FAILED(hrc))
2820 throw hrc;
2821
2822 m->state = MediumState_Creating;
2823 }
2824 catch (HRESULT hrcXcpt)
2825 {
2826 hrc = hrcXcpt;
2827 }
2828
2829 if (SUCCEEDED(hrc))
2830 {
2831 hrc = pTask->createThread();
2832 pTask = NULL;
2833
2834 if (SUCCEEDED(hrc))
2835 pProgress.queryInterfaceTo(aProgress.asOutParam());
2836 }
2837 else if (pTask != NULL)
2838 delete pTask;
2839
2840 return hrc;
2841}
2842
2843HRESULT Medium::deleteStorage(ComPtr<IProgress> &aProgress)
2844{
2845 ComObjPtr<Progress> pProgress;
2846
2847 MultiResult mrc = i_deleteStorage(&pProgress,
2848 false /* aWait */,
2849 true /* aNotify */);
2850 /* Must save the registries in any case, since an entry was removed. */
2851 m->pVirtualBox->i_saveModifiedRegistries();
2852
2853 if (SUCCEEDED(mrc))
2854 pProgress.queryInterfaceTo(aProgress.asOutParam());
2855
2856 return mrc;
2857}
2858
2859HRESULT Medium::createDiffStorage(AutoCaller &autoCaller,
2860 const ComPtr<IMedium> &aTarget,
2861 const std::vector<MediumVariant_T> &aVariant,
2862 ComPtr<IProgress> &aProgress)
2863{
2864 IMedium *aT = aTarget;
2865 ComObjPtr<Medium> diff = static_cast<Medium*>(aT);
2866
2867 autoCaller.release();
2868
2869 /* It is possible that some previous/concurrent uninit has already cleared
2870 * the pVirtualBox reference, see #uninit(). */
2871 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
2872
2873 // we access m->pParent
2874 AutoReadLock treeLock(!pVirtualBox.isNull() ? &pVirtualBox->i_getMediaTreeLockHandle() : NULL COMMA_LOCKVAL_SRC_POS);
2875
2876 autoCaller.add();
2877 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
2878
2879 AutoMultiWriteLock2 alock(this, diff COMMA_LOCKVAL_SRC_POS);
2880
2881 if (m->type == MediumType_Writethrough)
2882 return setError(VBOX_E_INVALID_OBJECT_STATE,
2883 tr("Medium type of '%s' is Writethrough"),
2884 m->strLocationFull.c_str());
2885 else if (m->type == MediumType_Shareable)
2886 return setError(VBOX_E_INVALID_OBJECT_STATE,
2887 tr("Medium type of '%s' is Shareable"),
2888 m->strLocationFull.c_str());
2889 else if (m->type == MediumType_Readonly)
2890 return setError(VBOX_E_INVALID_OBJECT_STATE,
2891 tr("Medium type of '%s' is Readonly"),
2892 m->strLocationFull.c_str());
2893
2894 /* Apply the normal locking logic to the entire chain. */
2895 MediumLockList *pMediumLockList(new MediumLockList());
2896 alock.release();
2897 autoCaller.release();
2898 treeLock.release();
2899 HRESULT hrc = diff->i_createMediumLockList(true /* fFailIfInaccessible */,
2900 diff /* pToLockWrite */,
2901 false /* fMediumLockWriteAll */,
2902 this,
2903 *pMediumLockList);
2904 treeLock.acquire();
2905 autoCaller.add();
2906 if (FAILED(autoCaller.hrc()))
2907 hrc = autoCaller.hrc();
2908 alock.acquire();
2909 if (FAILED(hrc))
2910 {
2911 delete pMediumLockList;
2912 return hrc;
2913 }
2914
2915 alock.release();
2916 autoCaller.release();
2917 treeLock.release();
2918 hrc = pMediumLockList->Lock();
2919 treeLock.acquire();
2920 autoCaller.add();
2921 if (FAILED(autoCaller.hrc()))
2922 hrc = autoCaller.hrc();
2923 alock.acquire();
2924 if (FAILED(hrc))
2925 {
2926 delete pMediumLockList;
2927
2928 return setError(hrc, tr("Could not lock medium when creating diff '%s'"),
2929 diff->i_getLocationFull().c_str());
2930 }
2931
2932 Guid parentMachineRegistry;
2933 if (i_getFirstRegistryMachineId(parentMachineRegistry))
2934 {
2935 /* since this medium has been just created it isn't associated yet */
2936 diff->m->llRegistryIDs.push_back(parentMachineRegistry);
2937 alock.release();
2938 autoCaller.release();
2939 treeLock.release();
2940 diff->i_markRegistriesModified();
2941 treeLock.acquire();
2942 autoCaller.add();
2943 alock.acquire();
2944 }
2945
2946 alock.release();
2947 autoCaller.release();
2948 treeLock.release();
2949
2950 ComObjPtr<Progress> pProgress;
2951
2952 ULONG mediumVariantFlags = 0;
2953
2954 if (aVariant.size())
2955 {
2956 for (size_t i = 0; i < aVariant.size(); i++)
2957 mediumVariantFlags |= (ULONG)aVariant[i];
2958 }
2959
2960 if (mediumVariantFlags & MediumVariant_Formatted)
2961 {
2962 delete pMediumLockList;
2963 return setError(VBOX_E_NOT_SUPPORTED,
2964 tr("Medium variant 'formatted' applies to floppy images only"));
2965 }
2966
2967 hrc = i_createDiffStorage(diff, (MediumVariant_T)mediumVariantFlags, pMediumLockList,
2968 &pProgress, false /* aWait */, true /* aNotify */);
2969 if (FAILED(hrc))
2970 delete pMediumLockList;
2971 else
2972 pProgress.queryInterfaceTo(aProgress.asOutParam());
2973
2974 return hrc;
2975}
2976
2977HRESULT Medium::mergeTo(const ComPtr<IMedium> &aTarget,
2978 ComPtr<IProgress> &aProgress)
2979{
2980 IMedium *aT = aTarget;
2981
2982 ComAssertRet(aT != this, E_INVALIDARG);
2983
2984 ComObjPtr<Medium> pTarget = static_cast<Medium*>(aT);
2985
2986 bool fMergeForward = false;
2987 ComObjPtr<Medium> pParentForTarget;
2988 MediumLockList *pChildrenToReparent = NULL;
2989 MediumLockList *pMediumLockList = NULL;
2990
2991 HRESULT hrc = i_prepareMergeTo(pTarget, NULL, NULL, true, fMergeForward,
2992 pParentForTarget, pChildrenToReparent, pMediumLockList);
2993 if (FAILED(hrc)) return hrc;
2994
2995 ComObjPtr<Progress> pProgress;
2996
2997 hrc = i_mergeTo(pTarget, fMergeForward, pParentForTarget, pChildrenToReparent,
2998 pMediumLockList, &pProgress, false /* aWait */, true /* aNotify */);
2999 if (FAILED(hrc))
3000 i_cancelMergeTo(pChildrenToReparent, pMediumLockList);
3001 else
3002 pProgress.queryInterfaceTo(aProgress.asOutParam());
3003
3004 return hrc;
3005}
3006
3007HRESULT Medium::cloneToBase(const ComPtr<IMedium> &aTarget,
3008 const std::vector<MediumVariant_T> &aVariant,
3009 ComPtr<IProgress> &aProgress)
3010{
3011 return cloneTo(aTarget, aVariant, NULL, aProgress);
3012}
3013
3014HRESULT Medium::cloneTo(const ComPtr<IMedium> &aTarget,
3015 const std::vector<MediumVariant_T> &aVariant,
3016 const ComPtr<IMedium> &aParent,
3017 ComPtr<IProgress> &aProgress)
3018{
3019 return resizeAndCloneTo(aTarget, 0, aVariant, aParent, aProgress);
3020}
3021
3022/**
3023 * This is a helper function that combines the functionality of
3024 * Medium::cloneTo() and Medium::resize(). The target medium will take the
3025 * contents of the calling medium.
3026 *
3027 * @param aTarget Medium to resize and clone to
3028 * @param aLogicalSize Desired size for targer medium
3029 * @param aVariant
3030 * @param aParent
3031 * @param aProgress
3032 * @return HRESULT
3033 */
3034HRESULT Medium::resizeAndCloneTo(const ComPtr<IMedium> &aTarget,
3035 LONG64 aLogicalSize,
3036 const std::vector<MediumVariant_T> &aVariant,
3037 const ComPtr<IMedium> &aParent,
3038 ComPtr<IProgress> &aProgress)
3039{
3040 /* Check for valid args */
3041 ComAssertRet(aTarget != this, E_INVALIDARG);
3042 CheckComArgExpr(aLogicalSize, aLogicalSize >= 0);
3043
3044 /* Convert args to usable/needed types */
3045 IMedium *aT = aTarget;
3046 ComObjPtr<Medium> pTarget = static_cast<Medium*>(aT);
3047 ComObjPtr<Medium> pParent;
3048 if (aParent)
3049 {
3050 IMedium *aP = aParent;
3051 pParent = static_cast<Medium*>(aP);
3052 }
3053
3054 /* Set up variables. Fetch needed data in lockable blocks */
3055 HRESULT hrc = S_OK;
3056 Medium::Task *pTask = NULL;
3057
3058 Utf8Str strSourceName;
3059 {
3060 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
3061 strSourceName = i_getName();
3062 }
3063
3064 uint64_t uTargetExistingSize = 0;
3065 Utf8Str strTargetName;
3066 {
3067 AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
3068 uTargetExistingSize = pTarget->i_getLogicalSize();
3069 strTargetName = pTarget->i_getName();
3070 }
3071
3072 /* Set up internal multi-subprocess progress object */
3073 ComObjPtr<Progress> pProgress;
3074 pProgress.createObject();
3075 hrc = pProgress->init(m->pVirtualBox,
3076 static_cast<IMedium*>(this),
3077 BstrFmt(tr("Resizing medium and cloning into it")).raw(),
3078 TRUE, /* aCancelable */
3079 2, /* Number of opearations */
3080 BstrFmt(tr("Resizing medium before clone")).raw()
3081 );
3082 if (FAILED(hrc))
3083 return hrc;
3084
3085 /** @todo r=jack: check below block for correct lock handling */
3086 /* If target does not exist, handle resize. */
3087 if (pTarget->m->state != MediumState_NotCreated && aLogicalSize > 0)
3088 {
3089 if ((LONG64)uTargetExistingSize != aLogicalSize) {
3090 if (!i_isMediumFormatFile())
3091 {
3092 hrc = setError(VBOX_E_NOT_SUPPORTED,
3093 tr("Sizes of '%s' and '%s' are different and medium format does not support resing"),
3094 strSourceName.c_str(), strTargetName.c_str());
3095 return hrc;
3096 }
3097
3098 /**
3099 * Need to lock the target medium as i_resize does do so
3100 * automatically.
3101 */
3102
3103 ComPtr<IToken> pToken;
3104 hrc = pTarget->LockWrite(pToken.asOutParam());
3105
3106 if (FAILED(hrc)) return hrc;
3107
3108 /**
3109 * Have to make own lock list, because "resize" method resizes only
3110 * last image in the lock chain.
3111 */
3112
3113 MediumLockList* pMediumLockListForResize = new MediumLockList();
3114 pMediumLockListForResize->Append(pTarget, pTarget->m->state == MediumState_LockedWrite);
3115
3116 hrc = pMediumLockListForResize->Lock(true /* fSkipOverLockedMedia */);
3117 if (FAILED(hrc))
3118 {
3119 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3120 hrc = setError(hrc,
3121 tr("Failed to lock the medium '%s' to resize before merge"),
3122 strTargetName.c_str());
3123 delete pMediumLockListForResize;
3124 return hrc;
3125 }
3126
3127
3128 hrc = pTarget->i_resize((uint64_t)aLogicalSize, pMediumLockListForResize, &pProgress, true, false);
3129 if (FAILED(hrc))
3130 {
3131 /* No need to setError becasue i_resize and i_taskResizeHandler handle this automatically. */
3132 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3133 delete pMediumLockListForResize;
3134 return hrc;
3135 }
3136
3137 delete pMediumLockListForResize;
3138
3139 pTarget->m->logicalSize = (uint64_t)aLogicalSize;
3140
3141 pToken->Abandon();
3142 pToken.setNull();
3143 }
3144 }
3145
3146 /* Report progress to supplied progress argument */
3147 if (SUCCEEDED(hrc))
3148 {
3149 pProgress.queryInterfaceTo(aProgress.asOutParam());
3150 }
3151
3152 try
3153 {
3154 // locking: we need the tree lock first because we access parent pointers
3155 // and we need to write-lock the media involved
3156 uint32_t cHandles = 3;
3157 LockHandle* pHandles[4] = { &m->pVirtualBox->i_getMediaTreeLockHandle(),
3158 this->lockHandle(),
3159 pTarget->lockHandle() };
3160 /* Only add parent to the lock if it is not null */
3161 if (!pParent.isNull())
3162 pHandles[cHandles++] = pParent->lockHandle();
3163 AutoWriteLock alock(cHandles,
3164 pHandles
3165 COMMA_LOCKVAL_SRC_POS);
3166
3167 if ( pTarget->m->state != MediumState_NotCreated
3168 && pTarget->m->state != MediumState_Created)
3169 throw pTarget->i_setStateError();
3170
3171 /* Determine if cloning within the list */
3172 bool cloningWithinList = false;
3173 ComObjPtr<Medium> pMedium = i_getParent();
3174 while (!pMedium.isNull() && pMedium != pTarget)
3175 pMedium = pMedium->i_getParent();
3176 if (pMedium == pTarget)
3177 cloningWithinList = true;
3178
3179 /* Build the source lock list. */
3180 MediumLockList *pSourceMediumLockList(new MediumLockList());
3181 alock.release();
3182 if (!cloningWithinList)
3183 hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
3184 NULL /* pToLockWrite */,
3185 false /* fMediumLockWriteAll */,
3186 NULL,
3187 *pSourceMediumLockList);
3188 else
3189 hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
3190 pTarget /* pToLockWrite */,
3191 false /* fMediumLockWriteAll */,
3192 NULL,
3193 *pSourceMediumLockList);
3194 alock.acquire();
3195 if (FAILED(hrc))
3196 {
3197 delete pSourceMediumLockList;
3198 throw hrc;
3199 }
3200
3201 /* Build the target lock list (including the to-be parent chain). */
3202 MediumLockList *pTargetMediumLockList(new MediumLockList());
3203 alock.release();
3204 if (!cloningWithinList)
3205 hrc = pTarget->i_createMediumLockList(true /* fFailIfInaccessible */,
3206 pTarget /* pToLockWrite */,
3207 false /* fMediumLockWriteAll */,
3208 pParent,
3209 *pTargetMediumLockList);
3210 alock.acquire();
3211 if (FAILED(hrc))
3212 {
3213 delete pSourceMediumLockList;
3214 delete pTargetMediumLockList;
3215 throw hrc;
3216 }
3217
3218 alock.release();
3219 hrc = pSourceMediumLockList->Lock();
3220 alock.acquire();
3221 if (FAILED(hrc))
3222 {
3223 delete pSourceMediumLockList;
3224 delete pTargetMediumLockList;
3225 throw setError(hrc,
3226 tr("Failed to lock source media '%s'"),
3227 i_getLocationFull().c_str());
3228 }
3229 alock.release();
3230 hrc = pTargetMediumLockList->Lock();
3231 alock.acquire();
3232 if (FAILED(hrc))
3233 {
3234 delete pSourceMediumLockList;
3235 delete pTargetMediumLockList;
3236 throw setError(hrc,
3237 tr("Failed to lock target media '%s'"),
3238 pTarget->i_getLocationFull().c_str());
3239 }
3240
3241 ULONG mediumVariantFlags = 0;
3242
3243 if (aVariant.size())
3244 {
3245 for (size_t i = 0; i < aVariant.size(); i++)
3246 mediumVariantFlags |= (ULONG)aVariant[i];
3247 }
3248
3249 if (mediumVariantFlags & MediumVariant_Formatted)
3250 {
3251 delete pSourceMediumLockList;
3252 delete pTargetMediumLockList;
3253 throw setError(VBOX_E_NOT_SUPPORTED,
3254 tr("Medium variant 'formatted' applies to floppy images only"));
3255 }
3256
3257 if (pTarget->m->state != MediumState_NotCreated || aLogicalSize == 0)
3258 {
3259 /* setup task object to carry out the operation asynchronously */
3260 pTask = new Medium::CloneTask(this, pProgress, pTarget,
3261 (MediumVariant_T)mediumVariantFlags,
3262 pParent, UINT32_MAX, UINT32_MAX,
3263 pSourceMediumLockList, pTargetMediumLockList,
3264 false, false, true, 0);
3265 }
3266 else
3267 {
3268 /* setup task object to carry out the operation asynchronously */
3269 pTask = new Medium::CloneTask(this, pProgress, pTarget,
3270 (MediumVariant_T)mediumVariantFlags,
3271 pParent, UINT32_MAX, UINT32_MAX,
3272 pSourceMediumLockList, pTargetMediumLockList,
3273 false, false, true, (uint64_t)aLogicalSize);
3274 }
3275
3276 hrc = pTask->hrc();
3277 AssertComRC(hrc);
3278 if (FAILED(hrc))
3279 throw hrc;
3280
3281 if (pTarget->m->state == MediumState_NotCreated)
3282 pTarget->m->state = MediumState_Creating;
3283 }
3284 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
3285
3286 if (SUCCEEDED(hrc))
3287 {
3288 hrc = pTask->createThread();
3289 pTask = NULL;
3290 if (SUCCEEDED(hrc))
3291 pProgress.queryInterfaceTo(aProgress.asOutParam());
3292 }
3293 else if (pTask != NULL)
3294 delete pTask;
3295
3296 return hrc;
3297}
3298
3299HRESULT Medium::moveTo(AutoCaller &autoCaller, const com::Utf8Str &aLocation, ComPtr<IProgress> &aProgress)
3300{
3301 ComObjPtr<Medium> pParent;
3302 ComObjPtr<Progress> pProgress;
3303 HRESULT hrc = S_OK;
3304 Medium::Task *pTask = NULL;
3305
3306 try
3307 {
3308 /// @todo NEWMEDIA for file names, add the default extension if no extension
3309 /// is present (using the information from the VD backend which also implies
3310 /// that one more parameter should be passed to moveTo() requesting
3311 /// that functionality since it is only allowed when called from this method
3312
3313 /// @todo NEWMEDIA rename the file and set m->location on success, then save
3314 /// the global registry (and local registries of portable VMs referring to
3315 /// this medium), this will also require to add the mRegistered flag to data
3316
3317 autoCaller.release();
3318
3319 // locking: we need the tree lock first because we access parent pointers
3320 // and we need to write-lock the media involved
3321 AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3322
3323 autoCaller.add();
3324 AssertComRCThrowRC(autoCaller.hrc());
3325
3326 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3327
3328 /* play with locations */
3329 {
3330 /* get source path and filename */
3331 Utf8Str sourcePath = i_getLocationFull();
3332 Utf8Str sourceFName = i_getName();
3333
3334 if (aLocation.isEmpty())
3335 {
3336 hrc = setErrorVrc(VERR_PATH_ZERO_LENGTH,
3337 tr("Medium '%s' can't be moved. Destination path is empty."),
3338 i_getLocationFull().c_str());
3339 throw hrc;
3340 }
3341
3342 /* extract destination path and filename */
3343 Utf8Str destPath(aLocation);
3344 Utf8Str destFName(destPath);
3345 destFName.stripPath();
3346
3347 if (destFName.isNotEmpty() && !RTPathHasSuffix(destFName.c_str()))
3348 {
3349 /*
3350 * The target path has no filename: Either "/path/to/new/location" or
3351 * just "newname" (no trailing backslash or there is no filename extension).
3352 */
3353 if (destPath.equals(destFName))
3354 {
3355 /* new path contains only "newname", no path, no extension */
3356 destFName.append(RTPathSuffix(sourceFName.c_str()));
3357 destPath = destFName;
3358 }
3359 else
3360 {
3361 /* new path looks like "/path/to/new/location" */
3362 destFName.setNull();
3363 destPath.append(RTPATH_SLASH);
3364 }
3365 }
3366
3367 if (destFName.isEmpty())
3368 {
3369 /* No target name */
3370 destPath.append(sourceFName);
3371 }
3372 else
3373 {
3374 if (destPath.equals(destFName))
3375 {
3376 /*
3377 * The target path contains of only a filename without a directory.
3378 * Move the medium within the source directory to the new name
3379 * (actually rename operation).
3380 * Scratches sourcePath!
3381 */
3382 destPath = sourcePath.stripFilename().append(RTPATH_SLASH).append(destFName);
3383 }
3384
3385 const char *pszSuffix = RTPathSuffix(sourceFName.c_str());
3386
3387 /* Suffix is empty and one is deduced from the medium format */
3388 if (pszSuffix == NULL)
3389 {
3390 Utf8Str strExt = i_getFormat();
3391 if (strExt.compare("RAW", Utf8Str::CaseInsensitive) == 0)
3392 {
3393 DeviceType_T devType = i_getDeviceType();
3394 switch (devType)
3395 {
3396 case DeviceType_DVD:
3397 strExt = "iso";
3398 break;
3399 case DeviceType_Floppy:
3400 strExt = "img";
3401 break;
3402 default:
3403 hrc = setErrorVrc(VERR_NOT_A_FILE, /** @todo r=bird: Mixing status codes again. */
3404 tr("Medium '%s' has RAW type. \"Move\" operation isn't supported for this type."),
3405 i_getLocationFull().c_str());
3406 throw hrc;
3407 }
3408 }
3409 else if (strExt.compare("Parallels", Utf8Str::CaseInsensitive) == 0)
3410 {
3411 strExt = "hdd";
3412 }
3413
3414 /* Set the target extension like on the source. Any conversions are prohibited */
3415 strExt.toLower();
3416 destPath.stripSuffix().append('.').append(strExt);
3417 }
3418 else
3419 destPath.stripSuffix().append(pszSuffix);
3420 }
3421
3422 /* Simple check for existence */
3423 if (RTFileExists(destPath.c_str()))
3424 throw setError(VBOX_E_FILE_ERROR,
3425 tr("The given path '%s' is an existing file. Delete or rename this file."),
3426 destPath.c_str());
3427
3428 if (!i_isMediumFormatFile())
3429 throw setErrorVrc(VERR_NOT_A_FILE,
3430 tr("Medium '%s' isn't a file object. \"Move\" operation isn't supported."),
3431 i_getLocationFull().c_str());
3432 /* Path must be absolute */
3433 if (!RTPathStartsWithRoot(destPath.c_str()))
3434 throw setError(VBOX_E_FILE_ERROR,
3435 tr("The given path '%s' is not fully qualified"),
3436 destPath.c_str());
3437 /* Check path for a new file object */
3438 hrc = VirtualBox::i_ensureFilePathExists(destPath, true);
3439 if (FAILED(hrc))
3440 throw hrc;
3441
3442 /* Set needed variables for "moving" procedure. It'll be used later in separate thread task */
3443 hrc = i_preparationForMoving(destPath);
3444 if (FAILED(hrc))
3445 throw setErrorVrc(VERR_NO_CHANGE,
3446 tr("Medium '%s' is already in the correct location"),
3447 i_getLocationFull().c_str());
3448 }
3449
3450 /* Check VMs which have this medium attached to*/
3451 std::vector<com::Guid> aMachineIds;
3452 hrc = getMachineIds(aMachineIds);
3453 std::vector<com::Guid>::const_iterator currMachineID = aMachineIds.begin();
3454 std::vector<com::Guid>::const_iterator lastMachineID = aMachineIds.end();
3455
3456 while (currMachineID != lastMachineID)
3457 {
3458 Guid id(*currMachineID);
3459 ComObjPtr<Machine> aMachine;
3460
3461 alock.release();
3462 autoCaller.release();
3463 treeLock.release();
3464 hrc = m->pVirtualBox->i_findMachine(id, false, true, &aMachine);
3465 treeLock.acquire();
3466 autoCaller.add();
3467 AssertComRCThrowRC(autoCaller.hrc());
3468 alock.acquire();
3469
3470 if (SUCCEEDED(hrc))
3471 {
3472 ComObjPtr<SessionMachine> sm;
3473 ComPtr<IInternalSessionControl> ctl;
3474
3475 alock.release();
3476 autoCaller.release();
3477 treeLock.release();
3478 bool ses = aMachine->i_isSessionOpenVM(sm, &ctl);
3479 treeLock.acquire();
3480 autoCaller.add();
3481 AssertComRCThrowRC(autoCaller.hrc());
3482 alock.acquire();
3483
3484 if (ses)
3485 throw setError(VBOX_E_INVALID_VM_STATE,
3486 tr("At least the VM '%s' to whom this medium '%s' attached has currently an opened session. Stop all VMs before relocating this medium"),
3487 id.toString().c_str(), i_getLocationFull().c_str());
3488 }
3489 ++currMachineID;
3490 }
3491
3492 /* Build the source lock list. */
3493 MediumLockList *pMediumLockList(new MediumLockList());
3494 alock.release();
3495 autoCaller.release();
3496 treeLock.release();
3497 hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
3498 this /* pToLockWrite */,
3499 true /* fMediumLockWriteAll */,
3500 NULL,
3501 *pMediumLockList);
3502 treeLock.acquire();
3503 autoCaller.add();
3504 AssertComRCThrowRC(autoCaller.hrc());
3505 alock.acquire();
3506 if (FAILED(hrc))
3507 {
3508 delete pMediumLockList;
3509 throw setError(hrc, tr("Failed to create medium lock list for '%s'"), i_getLocationFull().c_str());
3510 }
3511 alock.release();
3512 autoCaller.release();
3513 treeLock.release();
3514 hrc = pMediumLockList->Lock();
3515 treeLock.acquire();
3516 autoCaller.add();
3517 AssertComRCThrowRC(autoCaller.hrc());
3518 alock.acquire();
3519 if (FAILED(hrc))
3520 {
3521 delete pMediumLockList;
3522 throw setError(hrc, tr("Failed to lock media '%s'"), i_getLocationFull().c_str());
3523 }
3524
3525 pProgress.createObject();
3526 hrc = pProgress->init(m->pVirtualBox,
3527 static_cast <IMedium *>(this),
3528 BstrFmt(tr("Moving medium '%s'"), m->strLocationFull.c_str()).raw(),
3529 TRUE /* aCancelable */);
3530
3531 /* Do the disk moving. */
3532 if (SUCCEEDED(hrc))
3533 {
3534 ULONG mediumVariantFlags = i_getVariant();
3535
3536 /* setup task object to carry out the operation asynchronously */
3537 pTask = new Medium::MoveTask(this, pProgress,
3538 (MediumVariant_T)mediumVariantFlags,
3539 pMediumLockList);
3540 hrc = pTask->hrc();
3541 AssertComRC(hrc);
3542 if (FAILED(hrc))
3543 throw hrc;
3544 }
3545
3546 }
3547 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
3548
3549 if (SUCCEEDED(hrc))
3550 {
3551 hrc = pTask->createThread();
3552 pTask = NULL;
3553 if (SUCCEEDED(hrc))
3554 pProgress.queryInterfaceTo(aProgress.asOutParam());
3555 }
3556 else
3557 {
3558 if (pTask)
3559 delete pTask;
3560 }
3561
3562 return hrc;
3563}
3564
3565HRESULT Medium::setLocation(const com::Utf8Str &aLocation)
3566{
3567 HRESULT hrc = S_OK;
3568
3569 try
3570 {
3571 // locking: we need the tree lock first because we access parent pointers
3572 // and we need to write-lock the media involved
3573 AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
3574
3575 AutoCaller autoCaller(this);
3576 AssertComRCThrowRC(autoCaller.hrc());
3577
3578 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3579
3580 Utf8Str destPath(aLocation);
3581
3582 // some check for file based medium
3583 if (i_isMediumFormatFile())
3584 {
3585 /* Path must be absolute */
3586 if (!RTPathStartsWithRoot(destPath.c_str()))
3587 throw setError(VBOX_E_FILE_ERROR, tr("The given path '%s' is not fully qualified"), destPath.c_str());
3588
3589 /* Simple check for existence */
3590 if (!RTFileExists(destPath.c_str()))
3591 throw setError(VBOX_E_FILE_ERROR,
3592 tr("The given path '%s' is not an existing file. New location is invalid."),
3593 destPath.c_str());
3594 }
3595
3596 /* Check VMs which have this medium attached to*/
3597 std::vector<com::Guid> aMachineIds;
3598 hrc = getMachineIds(aMachineIds);
3599
3600 // switch locks only if there are machines with this medium attached
3601 if (!aMachineIds.empty())
3602 {
3603 std::vector<com::Guid>::const_iterator currMachineID = aMachineIds.begin();
3604 std::vector<com::Guid>::const_iterator lastMachineID = aMachineIds.end();
3605
3606 alock.release();
3607 autoCaller.release();
3608 treeLock.release();
3609
3610 while (currMachineID != lastMachineID)
3611 {
3612 Guid id(*currMachineID);
3613 ComObjPtr<Machine> aMachine;
3614 hrc = m->pVirtualBox->i_findMachine(id, false, true, &aMachine);
3615 if (SUCCEEDED(hrc))
3616 {
3617 ComObjPtr<SessionMachine> sm;
3618 ComPtr<IInternalSessionControl> ctl;
3619
3620 bool ses = aMachine->i_isSessionOpenVM(sm, &ctl);
3621 if (ses)
3622 {
3623 treeLock.acquire();
3624 autoCaller.add();
3625 AssertComRCThrowRC(autoCaller.hrc());
3626 alock.acquire();
3627
3628 throw setError(VBOX_E_INVALID_VM_STATE,
3629 tr("At least the VM '%s' to whom this medium '%s' attached has currently an opened session. Stop all VMs before set location for this medium"),
3630 id.toString().c_str(),
3631 i_getLocationFull().c_str());
3632 }
3633 }
3634 ++currMachineID;
3635 }
3636
3637 treeLock.acquire();
3638 autoCaller.add();
3639 AssertComRCThrowRC(autoCaller.hrc());
3640 alock.acquire();
3641 }
3642
3643 m->strLocationFull = destPath;
3644
3645 // save the settings
3646 alock.release();
3647 autoCaller.release();
3648 treeLock.release();
3649
3650 i_markRegistriesModified();
3651 m->pVirtualBox->i_saveModifiedRegistries();
3652
3653 MediumState_T mediumState;
3654 refreshState(autoCaller, &mediumState);
3655 m->pVirtualBox->i_onMediumConfigChanged(this);
3656 }
3657 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
3658
3659 return hrc;
3660}
3661
3662HRESULT Medium::compact(ComPtr<IProgress> &aProgress)
3663{
3664 HRESULT hrc = S_OK;
3665 ComObjPtr<Progress> pProgress;
3666 Medium::Task *pTask = NULL;
3667
3668 try
3669 {
3670 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3671
3672 /* Build the medium lock list. */
3673 MediumLockList *pMediumLockList(new MediumLockList());
3674 alock.release();
3675 hrc = i_createMediumLockList(true /* fFailIfInaccessible */ ,
3676 this /* pToLockWrite */,
3677 false /* fMediumLockWriteAll */,
3678 NULL,
3679 *pMediumLockList);
3680 alock.acquire();
3681 if (FAILED(hrc))
3682 {
3683 delete pMediumLockList;
3684 throw hrc;
3685 }
3686
3687 alock.release();
3688 hrc = pMediumLockList->Lock();
3689 alock.acquire();
3690 if (FAILED(hrc))
3691 {
3692 delete pMediumLockList;
3693 throw setError(hrc,
3694 tr("Failed to lock media when compacting '%s'"),
3695 i_getLocationFull().c_str());
3696 }
3697
3698 pProgress.createObject();
3699 hrc = pProgress->init(m->pVirtualBox,
3700 static_cast <IMedium *>(this),
3701 BstrFmt(tr("Compacting medium '%s'"), m->strLocationFull.c_str()).raw(),
3702 TRUE /* aCancelable */);
3703 if (FAILED(hrc))
3704 {
3705 delete pMediumLockList;
3706 throw hrc;
3707 }
3708
3709 /* setup task object to carry out the operation asynchronously */
3710 pTask = new Medium::CompactTask(this, pProgress, pMediumLockList);
3711 hrc = pTask->hrc();
3712 AssertComRC(hrc);
3713 if (FAILED(hrc))
3714 throw hrc;
3715 }
3716 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
3717
3718 if (SUCCEEDED(hrc))
3719 {
3720 hrc = pTask->createThread();
3721 pTask = NULL;
3722 if (SUCCEEDED(hrc))
3723 pProgress.queryInterfaceTo(aProgress.asOutParam());
3724 }
3725 else if (pTask != NULL)
3726 delete pTask;
3727
3728 return hrc;
3729}
3730
3731HRESULT Medium::resize(LONG64 aLogicalSize,
3732 ComPtr<IProgress> &aProgress)
3733{
3734 CheckComArgExpr(aLogicalSize, aLogicalSize > 0);
3735 HRESULT hrc = S_OK;
3736 ComObjPtr<Progress> pProgress;
3737
3738 /* Build the medium lock list. */
3739 MediumLockList *pMediumLockList(new MediumLockList());
3740
3741 try
3742 {
3743 const char *pszError = NULL;
3744
3745 hrc = i_createMediumLockList(true /* fFailIfInaccessible */ ,
3746 this /* pToLockWrite */,
3747 false /* fMediumLockWriteAll */,
3748 NULL,
3749 *pMediumLockList);
3750 if (FAILED(hrc))
3751 pszError = tr("Failed to create medium lock list when resizing '%s'");
3752 else
3753 {
3754 hrc = pMediumLockList->Lock();
3755 if (FAILED(hrc))
3756 pszError = tr("Failed to lock media when resizing '%s'");
3757 }
3758
3759
3760 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3761
3762 if (FAILED(hrc))
3763 {
3764 throw setError(hrc, pszError, i_getLocationFull().c_str());
3765 }
3766
3767 pProgress.createObject();
3768 hrc = pProgress->init(m->pVirtualBox,
3769 static_cast <IMedium *>(this),
3770 BstrFmt(tr("Resizing medium '%s'"), m->strLocationFull.c_str()).raw(),
3771 TRUE /* aCancelable */);
3772 if (FAILED(hrc))
3773 {
3774 throw hrc;
3775 }
3776 }
3777 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
3778
3779 if (SUCCEEDED(hrc))
3780 hrc = i_resize((uint64_t)aLogicalSize, pMediumLockList, &pProgress, false /* aWait */, true /* aNotify */);
3781
3782 if (SUCCEEDED(hrc))
3783 pProgress.queryInterfaceTo(aProgress.asOutParam());
3784 else
3785 delete pMediumLockList;
3786
3787 return hrc;
3788}
3789
3790HRESULT Medium::reset(AutoCaller &autoCaller, ComPtr<IProgress> &aProgress)
3791{
3792 HRESULT hrc = S_OK;
3793 ComObjPtr<Progress> pProgress;
3794 Medium::Task *pTask = NULL;
3795
3796 try
3797 {
3798 autoCaller.release();
3799
3800 /* It is possible that some previous/concurrent uninit has already
3801 * cleared the pVirtualBox reference, see #uninit(). */
3802 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
3803
3804 /* i_canClose() needs the tree lock */
3805 AutoMultiWriteLock2 multilock(!pVirtualBox.isNull() ? &pVirtualBox->i_getMediaTreeLockHandle() : NULL,
3806 this->lockHandle()
3807 COMMA_LOCKVAL_SRC_POS);
3808
3809 autoCaller.add();
3810 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
3811
3812 LogFlowThisFunc(("ENTER for medium %s\n", m->strLocationFull.c_str()));
3813
3814 if (m->pParent.isNull())
3815 throw setError(VBOX_E_NOT_SUPPORTED,
3816 tr("Medium type of '%s' is not differencing"),
3817 m->strLocationFull.c_str());
3818
3819 hrc = i_canClose();
3820 if (FAILED(hrc))
3821 throw hrc;
3822
3823 /* Build the medium lock list. */
3824 MediumLockList *pMediumLockList(new MediumLockList());
3825 multilock.release();
3826 hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
3827 this /* pToLockWrite */,
3828 false /* fMediumLockWriteAll */,
3829 NULL,
3830 *pMediumLockList);
3831 multilock.acquire();
3832 if (FAILED(hrc))
3833 {
3834 delete pMediumLockList;
3835 throw hrc;
3836 }
3837
3838 multilock.release();
3839 hrc = pMediumLockList->Lock();
3840 multilock.acquire();
3841 if (FAILED(hrc))
3842 {
3843 delete pMediumLockList;
3844 throw setError(hrc,
3845 tr("Failed to lock media when resetting '%s'"),
3846 i_getLocationFull().c_str());
3847 }
3848
3849 pProgress.createObject();
3850 hrc = pProgress->init(m->pVirtualBox,
3851 static_cast<IMedium*>(this),
3852 BstrFmt(tr("Resetting differencing medium '%s'"), m->strLocationFull.c_str()).raw(),
3853 FALSE /* aCancelable */);
3854 if (FAILED(hrc))
3855 throw hrc;
3856
3857 /* setup task object to carry out the operation asynchronously */
3858 pTask = new Medium::ResetTask(this, pProgress, pMediumLockList);
3859 hrc = pTask->hrc();
3860 AssertComRC(hrc);
3861 if (FAILED(hrc))
3862 throw hrc;
3863 }
3864 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
3865
3866 if (SUCCEEDED(hrc))
3867 {
3868 hrc = pTask->createThread();
3869 pTask = NULL;
3870 if (SUCCEEDED(hrc))
3871 pProgress.queryInterfaceTo(aProgress.asOutParam());
3872 }
3873 else if (pTask != NULL)
3874 delete pTask;
3875
3876 LogFlowThisFunc(("LEAVE, hrc=%Rhrc\n", hrc));
3877
3878 return hrc;
3879}
3880
3881HRESULT Medium::changeEncryption(const com::Utf8Str &aCurrentPassword, const com::Utf8Str &aCipher,
3882 const com::Utf8Str &aNewPassword, const com::Utf8Str &aNewPasswordId,
3883 ComPtr<IProgress> &aProgress)
3884{
3885 HRESULT hrc = S_OK;
3886 ComObjPtr<Progress> pProgress;
3887 Medium::Task *pTask = NULL;
3888
3889 try
3890 {
3891 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3892
3893 DeviceType_T devType = i_getDeviceType();
3894 /* Cannot encrypt DVD or floppy images so far. */
3895 if ( devType == DeviceType_DVD
3896 || devType == DeviceType_Floppy)
3897 return setError(VBOX_E_INVALID_OBJECT_STATE,
3898 tr("Cannot encrypt DVD or Floppy medium '%s'"),
3899 m->strLocationFull.c_str());
3900
3901 /* Cannot encrypt media which are attached to more than one virtual machine. */
3902 if (m->backRefs.size() > 1)
3903 return setError(VBOX_E_INVALID_OBJECT_STATE,
3904 tr("Cannot encrypt medium '%s' because it is attached to %d virtual machines", "", m->backRefs.size()),
3905 m->strLocationFull.c_str(), m->backRefs.size());
3906
3907 if (i_getChildren().size() != 0)
3908 return setError(VBOX_E_INVALID_OBJECT_STATE,
3909 tr("Cannot encrypt medium '%s' because it has %d children", "", i_getChildren().size()),
3910 m->strLocationFull.c_str(), i_getChildren().size());
3911
3912 /* Build the medium lock list. */
3913 MediumLockList *pMediumLockList(new MediumLockList());
3914 alock.release();
3915 hrc = i_createMediumLockList(true /* fFailIfInaccessible */ ,
3916 this /* pToLockWrite */,
3917 true /* fMediumLockAllWrite */,
3918 NULL,
3919 *pMediumLockList);
3920 alock.acquire();
3921 if (FAILED(hrc))
3922 {
3923 delete pMediumLockList;
3924 throw hrc;
3925 }
3926
3927 alock.release();
3928 hrc = pMediumLockList->Lock();
3929 alock.acquire();
3930 if (FAILED(hrc))
3931 {
3932 delete pMediumLockList;
3933 throw setError(hrc,
3934 tr("Failed to lock media for encryption '%s'"),
3935 i_getLocationFull().c_str());
3936 }
3937
3938 /*
3939 * Check all media in the chain to not contain any branches or references to
3940 * other virtual machines, we support encrypting only a list of differencing media at the moment.
3941 */
3942 MediumLockList::Base::const_iterator mediumListBegin = pMediumLockList->GetBegin();
3943 MediumLockList::Base::const_iterator mediumListEnd = pMediumLockList->GetEnd();
3944 for (MediumLockList::Base::const_iterator it = mediumListBegin;
3945 it != mediumListEnd;
3946 ++it)
3947 {
3948 const MediumLock &mediumLock = *it;
3949 const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
3950 AutoReadLock mediumReadLock(pMedium COMMA_LOCKVAL_SRC_POS);
3951
3952 Assert(pMedium->m->state == MediumState_LockedWrite);
3953
3954 if (pMedium->m->backRefs.size() > 1)
3955 {
3956 hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
3957 tr("Cannot encrypt medium '%s' because it is attached to %d virtual machines", "",
3958 pMedium->m->backRefs.size()),
3959 pMedium->m->strLocationFull.c_str(), pMedium->m->backRefs.size());
3960 break;
3961 }
3962 else if (pMedium->i_getChildren().size() > 1)
3963 {
3964 hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
3965 tr("Cannot encrypt medium '%s' because it has %d children", "", pMedium->i_getChildren().size()),
3966 pMedium->m->strLocationFull.c_str(), pMedium->i_getChildren().size());
3967 break;
3968 }
3969 }
3970
3971 if (FAILED(hrc))
3972 {
3973 delete pMediumLockList;
3974 throw hrc;
3975 }
3976
3977 const char *pszAction = tr("Encrypting medium");
3978 if ( aCurrentPassword.isNotEmpty()
3979 && aCipher.isEmpty())
3980 pszAction = tr("Decrypting medium");
3981
3982 pProgress.createObject();
3983 hrc = pProgress->init(m->pVirtualBox,
3984 static_cast <IMedium *>(this),
3985 BstrFmt("%s '%s'", pszAction, m->strLocationFull.c_str()).raw(),
3986 TRUE /* aCancelable */);
3987 if (FAILED(hrc))
3988 {
3989 delete pMediumLockList;
3990 throw hrc;
3991 }
3992
3993 /* setup task object to carry out the operation asynchronously */
3994 pTask = new Medium::EncryptTask(this, aNewPassword, aCurrentPassword,
3995 aCipher, aNewPasswordId, pProgress, pMediumLockList);
3996 hrc = pTask->hrc();
3997 AssertComRC(hrc);
3998 if (FAILED(hrc))
3999 throw hrc;
4000 }
4001 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
4002
4003 if (SUCCEEDED(hrc))
4004 {
4005 hrc = pTask->createThread();
4006 pTask = NULL;
4007 if (SUCCEEDED(hrc))
4008 pProgress.queryInterfaceTo(aProgress.asOutParam());
4009 }
4010 else if (pTask != NULL)
4011 delete pTask;
4012
4013 return hrc;
4014}
4015
4016HRESULT Medium::getEncryptionSettings(AutoCaller &autoCaller, com::Utf8Str &aCipher, com::Utf8Str &aPasswordId)
4017{
4018#ifndef VBOX_WITH_EXTPACK
4019 RT_NOREF(aCipher, aPasswordId);
4020#endif
4021 HRESULT hrc = S_OK;
4022
4023 try
4024 {
4025 autoCaller.release();
4026 ComObjPtr<Medium> pBase = i_getBase();
4027 autoCaller.add();
4028 if (FAILED(autoCaller.hrc()))
4029 throw hrc;
4030 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4031
4032 /* Check whether encryption is configured for this medium. */
4033 settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore");
4034 if (it == pBase->m->mapProperties.end())
4035 throw VBOX_E_NOT_SUPPORTED;
4036
4037# ifdef VBOX_WITH_EXTPACK
4038 ExtPackManager *pExtPackManager = m->pVirtualBox->i_getExtPackManager();
4039 if (pExtPackManager->i_isExtPackUsable(ORACLE_PUEL_EXTPACK_NAME))
4040 {
4041 /* Load the plugin */
4042 Utf8Str strPlugin;
4043 hrc = pExtPackManager->i_getLibraryPathForExtPack(g_szVDPlugin, ORACLE_PUEL_EXTPACK_NAME, &strPlugin);
4044 if (SUCCEEDED(hrc))
4045 {
4046 int vrc = VDPluginLoadFromFilename(strPlugin.c_str());
4047 if (RT_FAILURE(vrc))
4048 throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
4049 tr("Retrieving encryption settings of the image failed because the encryption plugin could not be loaded (%s)"),
4050 i_vdError(vrc).c_str());
4051 }
4052 else
4053 throw setError(VBOX_E_NOT_SUPPORTED,
4054 tr("Encryption is not supported because the extension pack '%s' is missing the encryption plugin (old extension pack installed?)"),
4055 ORACLE_PUEL_EXTPACK_NAME);
4056 }
4057 else
4058 throw setError(VBOX_E_NOT_SUPPORTED,
4059 tr("Encryption is not supported because the extension pack '%s' is missing"),
4060 ORACLE_PUEL_EXTPACK_NAME);
4061
4062 PVDISK pDisk = NULL;
4063 int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &pDisk);
4064 ComAssertRCThrow(vrc, E_FAIL);
4065
4066 MediumCryptoFilterSettings CryptoSettings;
4067
4068 i_taskEncryptSettingsSetup(&CryptoSettings, NULL, it->second.c_str(), NULL, false /* fCreateKeyStore */);
4069 vrc = VDFilterAdd(pDisk, "CRYPT", VD_FILTER_FLAGS_READ | VD_FILTER_FLAGS_INFO, CryptoSettings.vdFilterIfaces);
4070 if (RT_FAILURE(vrc))
4071 throw setErrorBoth(VBOX_E_INVALID_OBJECT_STATE, vrc,
4072 tr("Failed to load the encryption filter: %s"),
4073 i_vdError(vrc).c_str());
4074
4075 it = pBase->m->mapProperties.find("CRYPT/KeyId");
4076 if (it == pBase->m->mapProperties.end())
4077 throw setError(VBOX_E_INVALID_OBJECT_STATE,
4078 tr("Image is configured for encryption but doesn't has a KeyId set"));
4079
4080 aPasswordId = it->second.c_str();
4081 aCipher = CryptoSettings.pszCipherReturned;
4082 RTStrFree(CryptoSettings.pszCipherReturned);
4083
4084 VDDestroy(pDisk);
4085# else
4086 throw setError(VBOX_E_NOT_SUPPORTED,
4087 tr("Encryption is not supported because extension pack support is not built in"));
4088# endif
4089 }
4090 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
4091
4092 return hrc;
4093}
4094
4095HRESULT Medium::checkEncryptionPassword(const com::Utf8Str &aPassword)
4096{
4097 HRESULT hrc = S_OK;
4098
4099 try
4100 {
4101 ComObjPtr<Medium> pBase = i_getBase();
4102 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4103
4104 settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore");
4105 if (it == pBase->m->mapProperties.end())
4106 throw setError(VBOX_E_NOT_SUPPORTED,
4107 tr("The image is not configured for encryption"));
4108
4109 if (aPassword.isEmpty())
4110 throw setError(E_INVALIDARG,
4111 tr("The given password must not be empty"));
4112
4113# ifdef VBOX_WITH_EXTPACK
4114 ExtPackManager *pExtPackManager = m->pVirtualBox->i_getExtPackManager();
4115 if (pExtPackManager->i_isExtPackUsable(ORACLE_PUEL_EXTPACK_NAME))
4116 {
4117 /* Load the plugin */
4118 Utf8Str strPlugin;
4119 hrc = pExtPackManager->i_getLibraryPathForExtPack(g_szVDPlugin, ORACLE_PUEL_EXTPACK_NAME, &strPlugin);
4120 if (SUCCEEDED(hrc))
4121 {
4122 int vrc = VDPluginLoadFromFilename(strPlugin.c_str());
4123 if (RT_FAILURE(vrc))
4124 throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
4125 tr("Retrieving encryption settings of the image failed because the encryption plugin could not be loaded (%s)"),
4126 i_vdError(vrc).c_str());
4127 }
4128 else
4129 throw setError(VBOX_E_NOT_SUPPORTED,
4130 tr("Encryption is not supported because the extension pack '%s' is missing the encryption plugin (old extension pack installed?)"),
4131 ORACLE_PUEL_EXTPACK_NAME);
4132 }
4133 else
4134 throw setError(VBOX_E_NOT_SUPPORTED,
4135 tr("Encryption is not supported because the extension pack '%s' is missing"),
4136 ORACLE_PUEL_EXTPACK_NAME);
4137
4138 PVDISK pDisk = NULL;
4139 int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &pDisk);
4140 ComAssertRCThrow(vrc, E_FAIL);
4141
4142 MediumCryptoFilterSettings CryptoSettings;
4143
4144 i_taskEncryptSettingsSetup(&CryptoSettings, NULL, it->second.c_str(), aPassword.c_str(),
4145 false /* fCreateKeyStore */);
4146 vrc = VDFilterAdd(pDisk, "CRYPT", VD_FILTER_FLAGS_READ, CryptoSettings.vdFilterIfaces);
4147 if (vrc == VERR_VD_PASSWORD_INCORRECT)
4148 throw setError(VBOX_E_PASSWORD_INCORRECT,
4149 tr("The given password is incorrect"));
4150 else if (RT_FAILURE(vrc))
4151 throw setErrorBoth(VBOX_E_INVALID_OBJECT_STATE, vrc,
4152 tr("Failed to load the encryption filter: %s"),
4153 i_vdError(vrc).c_str());
4154
4155 VDDestroy(pDisk);
4156# else
4157 throw setError(VBOX_E_NOT_SUPPORTED,
4158 tr("Encryption is not supported because extension pack support is not built in"));
4159# endif
4160 }
4161 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
4162
4163 return hrc;
4164}
4165
4166HRESULT Medium::openForIO(BOOL aWritable, com::Utf8Str const &aPassword, ComPtr<IMediumIO> &aMediumIO)
4167{
4168 /*
4169 * Input validation.
4170 */
4171 if (aWritable && i_isReadOnly())
4172 return setError(E_ACCESSDENIED, tr("Write access denied: read-only"));
4173
4174 com::Utf8Str const strKeyId = i_getKeyId();
4175 if (strKeyId.isEmpty() && aPassword.isNotEmpty())
4176 return setError(E_INVALIDARG, tr("Password given for unencrypted medium"));
4177 if (strKeyId.isNotEmpty() && aPassword.isEmpty())
4178 return setError(E_INVALIDARG, tr("Password needed for encrypted medium"));
4179
4180 /*
4181 * Create IO object and return it.
4182 */
4183 ComObjPtr<MediumIO> ptrIO;
4184 HRESULT hrc = ptrIO.createObject();
4185 if (SUCCEEDED(hrc))
4186 {
4187 hrc = ptrIO->initForMedium(this, m->pVirtualBox, aWritable != FALSE, strKeyId, aPassword);
4188 if (SUCCEEDED(hrc))
4189 ptrIO.queryInterfaceTo(aMediumIO.asOutParam());
4190 }
4191 return hrc;
4192}
4193
4194
4195////////////////////////////////////////////////////////////////////////////////
4196//
4197// Medium public internal methods
4198//
4199////////////////////////////////////////////////////////////////////////////////
4200
4201/**
4202 * Internal method to return the medium's parent medium. Must have caller + locking!
4203 * @return
4204 */
4205const ComObjPtr<Medium>& Medium::i_getParent() const
4206{
4207 return m->pParent;
4208}
4209
4210/**
4211 * Internal method to return the medium's list of child media. Must have caller + locking!
4212 * @return
4213 */
4214const MediaList& Medium::i_getChildren() const
4215{
4216 return m->llChildren;
4217}
4218
4219/**
4220 * Internal method to return the medium's GUID. Must have caller + locking!
4221 * @return
4222 */
4223const Guid& Medium::i_getId() const
4224{
4225 return m->id;
4226}
4227
4228/**
4229 * Internal method to return the medium's state. Must have caller + locking!
4230 * @return
4231 */
4232MediumState_T Medium::i_getState() const
4233{
4234 return m->state;
4235}
4236
4237/**
4238 * Internal method to return the medium's variant. Must have caller + locking!
4239 * @return
4240 */
4241MediumVariant_T Medium::i_getVariant() const
4242{
4243 return m->variant;
4244}
4245
4246/**
4247 * Internal method which returns true if this medium represents a host drive.
4248 * @return
4249 */
4250bool Medium::i_isHostDrive() const
4251{
4252 return m->hostDrive;
4253}
4254
4255/**
4256 * Internal method which returns true if this medium is in the process of being closed.
4257 * @return
4258 */
4259bool Medium::i_isClosing() const
4260{
4261 return m->fClosing;
4262}
4263
4264/**
4265 * Internal method to return the medium's full location. Must have caller + locking!
4266 * @return
4267 */
4268const Utf8Str& Medium::i_getLocationFull() const
4269{
4270 return m->strLocationFull;
4271}
4272
4273/**
4274 * Internal method to return the medium's format string. Must have caller + locking!
4275 * @return
4276 */
4277const Utf8Str& Medium::i_getFormat() const
4278{
4279 return m->strFormat;
4280}
4281
4282/**
4283 * Internal method to return the medium's format object. Must have caller + locking!
4284 * @return
4285 */
4286const ComObjPtr<MediumFormat>& Medium::i_getMediumFormat() const
4287{
4288 return m->formatObj;
4289}
4290
4291/**
4292 * Internal method that returns true if the medium is represented by a file on the host disk
4293 * (and not iSCSI or something).
4294 * @return
4295 */
4296bool Medium::i_isMediumFormatFile() const
4297{
4298 if ( m->formatObj
4299 && (m->formatObj->i_getCapabilities() & MediumFormatCapabilities_File)
4300 )
4301 return true;
4302 return false;
4303}
4304
4305/**
4306 * Internal method to return the medium's size. Must have caller + locking!
4307 * @return
4308 */
4309uint64_t Medium::i_getSize() const
4310{
4311 return m->size;
4312}
4313
4314/**
4315 * Internal method to return the medium's size. Must have caller + locking!
4316 * @return
4317 */
4318uint64_t Medium::i_getLogicalSize() const
4319{
4320 return m->logicalSize;
4321}
4322
4323/**
4324 * Returns the medium device type. Must have caller + locking!
4325 * @return
4326 */
4327DeviceType_T Medium::i_getDeviceType() const
4328{
4329 return m->devType;
4330}
4331
4332/**
4333 * Returns the medium type. Must have caller + locking!
4334 * @return
4335 */
4336MediumType_T Medium::i_getType() const
4337{
4338 return m->type;
4339}
4340
4341/**
4342 * Returns a short version of the location attribute.
4343 *
4344 * @note Must be called from under this object's read or write lock.
4345 */
4346Utf8Str Medium::i_getName()
4347{
4348 Utf8Str name = RTPathFilename(m->strLocationFull.c_str());
4349 return name;
4350}
4351
4352/**
4353 * Same as i_addRegistry() except that we don't check the object state, making
4354 * it safe to call with initFromSettings() on the call stack.
4355 */
4356bool Medium::i_addRegistryNoCallerCheck(const Guid &id)
4357{
4358 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4359
4360 bool fAdd = true;
4361
4362 // hard disks cannot be in more than one registry
4363 if ( m->devType == DeviceType_HardDisk
4364 && m->llRegistryIDs.size() > 0)
4365 fAdd = false;
4366
4367 // no need to add the UUID twice
4368 if (fAdd)
4369 {
4370 for (GuidList::const_iterator it = m->llRegistryIDs.begin();
4371 it != m->llRegistryIDs.end();
4372 ++it)
4373 {
4374 if ((*it) == id)
4375 {
4376 fAdd = false;
4377 break;
4378 }
4379 }
4380 }
4381
4382 if (fAdd)
4383 m->llRegistryIDs.push_back(id);
4384
4385 return fAdd;
4386}
4387
4388/**
4389 * This adds the given UUID to the list of media registries in which this
4390 * medium should be registered. The UUID can either be a machine UUID,
4391 * to add a machine registry, or the global registry UUID as returned by
4392 * VirtualBox::getGlobalRegistryId().
4393 *
4394 * Note that for hard disks, this method does nothing if the medium is
4395 * already in another registry to avoid having hard disks in more than
4396 * one registry, which causes trouble with keeping diff images in sync.
4397 * See getFirstRegistryMachineId() for details.
4398 *
4399 * @param id
4400 * @return true if the registry was added; false if the given id was already on the list.
4401 */
4402bool Medium::i_addRegistry(const Guid &id)
4403{
4404 AutoCaller autoCaller(this);
4405 if (FAILED(autoCaller.hrc()))
4406 return false;
4407 return i_addRegistryNoCallerCheck(id);
4408}
4409
4410/**
4411 * This adds the given UUID to the list of media registries in which this
4412 * medium should be registered. The UUID can either be a machine UUID,
4413 * to add a machine registry, or the global registry UUID as returned by
4414 * VirtualBox::getGlobalRegistryId(). Thisis applied to all children.
4415 *
4416 * Note that for hard disks, this method does nothing if the medium is
4417 * already in another registry to avoid having hard disks in more than
4418 * one registry, which causes trouble with keeping diff images in sync.
4419 * See getFirstRegistryMachineId() for details.
4420 *
4421 * @note the caller must hold the media tree lock for reading.
4422 *
4423 * @param id
4424 * @return true if the registry was added; false if the given id was already on the list.
4425 */
4426bool Medium::i_addRegistryAll(const Guid &id)
4427{
4428 MediaList llMediaTodo;
4429 llMediaTodo.push_back(this);
4430
4431 bool fAdd = false;
4432
4433 while (!llMediaTodo.empty())
4434 {
4435 ComObjPtr<Medium> pMedium = llMediaTodo.front();
4436 llMediaTodo.pop_front();
4437
4438 AutoCaller mediumCaller(pMedium);
4439 if (FAILED(mediumCaller.hrc())) continue;
4440
4441 fAdd |= pMedium->i_addRegistryNoCallerCheck(id);
4442
4443 // protected by the medium tree lock held by our original caller
4444 MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
4445 MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
4446 for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
4447 llMediaTodo.push_back(*it);
4448 }
4449
4450 return fAdd;
4451}
4452
4453/**
4454 * Removes the given UUID from the list of media registry UUIDs of this medium.
4455 *
4456 * @param id
4457 * @return true if the UUID was found or false if not.
4458 */
4459bool Medium::i_removeRegistry(const Guid &id)
4460{
4461 AutoCaller autoCaller(this);
4462 if (FAILED(autoCaller.hrc()))
4463 return false;
4464 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4465
4466 bool fRemove = false;
4467
4468 /// @todo r=klaus eliminate this code, replace it by using find.
4469 for (GuidList::iterator it = m->llRegistryIDs.begin();
4470 it != m->llRegistryIDs.end();
4471 ++it)
4472 {
4473 if ((*it) == id)
4474 {
4475 // getting away with this as the iterator isn't used after
4476 m->llRegistryIDs.erase(it);
4477 fRemove = true;
4478 break;
4479 }
4480 }
4481
4482 return fRemove;
4483}
4484
4485/**
4486 * Removes the given UUID from the list of media registry UUIDs, for this
4487 * medium and all its children.
4488 *
4489 * @note the caller must hold the media tree lock for reading.
4490 *
4491 * @param id
4492 * @return true if the UUID was found or false if not.
4493 */
4494bool Medium::i_removeRegistryAll(const Guid &id)
4495{
4496 MediaList llMediaTodo;
4497 llMediaTodo.push_back(this);
4498
4499 bool fRemove = false;
4500
4501 while (!llMediaTodo.empty())
4502 {
4503 ComObjPtr<Medium> pMedium = llMediaTodo.front();
4504 llMediaTodo.pop_front();
4505
4506 AutoCaller mediumCaller(pMedium);
4507 if (FAILED(mediumCaller.hrc())) continue;
4508
4509 fRemove |= pMedium->i_removeRegistry(id);
4510
4511 // protected by the medium tree lock held by our original caller
4512 MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
4513 MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
4514 for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
4515 llMediaTodo.push_back(*it);
4516 }
4517
4518 return fRemove;
4519}
4520
4521/**
4522 * Returns true if id is in the list of media registries for this medium.
4523 *
4524 * Must have caller + read locking!
4525 *
4526 * @param id
4527 * @return
4528 */
4529bool Medium::i_isInRegistry(const Guid &id)
4530{
4531 /// @todo r=klaus eliminate this code, replace it by using find.
4532 for (GuidList::const_iterator it = m->llRegistryIDs.begin();
4533 it != m->llRegistryIDs.end();
4534 ++it)
4535 {
4536 if (*it == id)
4537 return true;
4538 }
4539
4540 return false;
4541}
4542
4543/**
4544 * Internal method to return the medium's first registry machine (i.e. the machine in whose
4545 * machine XML this medium is listed).
4546 *
4547 * Every attached medium must now (4.0) reside in at least one media registry, which is identified
4548 * by a UUID. This is either a machine UUID if the machine is from 4.0 or newer, in which case
4549 * machines have their own media registries, or it is the pseudo-UUID of the VirtualBox
4550 * object if the machine is old and still needs the global registry in VirtualBox.xml.
4551 *
4552 * By definition, hard disks may only be in one media registry, in which all its children
4553 * will be stored as well. Otherwise we run into problems with having keep multiple registries
4554 * in sync. (This is the "cloned VM" case in which VM1 may link to the disks of VM2; in this
4555 * case, only VM2's registry is used for the disk in question.)
4556 *
4557 * If there is no medium registry, particularly if the medium has not been attached yet, this
4558 * does not modify uuid and returns false.
4559 *
4560 * ISOs and RAWs, by contrast, can be in more than one repository to make things easier for
4561 * the user.
4562 *
4563 * Must have caller + locking!
4564 *
4565 * @param uuid Receives first registry machine UUID, if available.
4566 * @return true if uuid was set.
4567 */
4568bool Medium::i_getFirstRegistryMachineId(Guid &uuid) const
4569{
4570 if (m->llRegistryIDs.size())
4571 {
4572 uuid = m->llRegistryIDs.front();
4573 return true;
4574 }
4575 return false;
4576}
4577
4578/**
4579 * Marks all the registries in which this medium is registered as modified.
4580 */
4581void Medium::i_markRegistriesModified()
4582{
4583 AutoCaller autoCaller(this);
4584 if (FAILED(autoCaller.hrc())) return;
4585
4586 // Get local copy, as keeping the lock over VirtualBox::markRegistryModified
4587 // causes trouble with the lock order
4588 GuidList llRegistryIDs;
4589 {
4590 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4591 llRegistryIDs = m->llRegistryIDs;
4592 }
4593
4594 autoCaller.release();
4595
4596 /* Save the error information now, the implicit restore when this goes
4597 * out of scope will throw away spurious additional errors created below. */
4598 ErrorInfoKeeper eik;
4599 for (GuidList::const_iterator it = llRegistryIDs.begin();
4600 it != llRegistryIDs.end();
4601 ++it)
4602 {
4603 m->pVirtualBox->i_markRegistryModified(*it);
4604 }
4605}
4606
4607/**
4608 * Adds the given machine and optionally the snapshot to the list of the objects
4609 * this medium is attached to.
4610 *
4611 * @param aMachineId Machine ID.
4612 * @param aSnapshotId Snapshot ID; when non-empty, adds a snapshot attachment.
4613 */
4614HRESULT Medium::i_addBackReference(const Guid &aMachineId,
4615 const Guid &aSnapshotId /*= Guid::Empty*/)
4616{
4617 AssertReturn(aMachineId.isValid(), E_FAIL);
4618
4619 LogFlowThisFunc(("ENTER, aMachineId: {%RTuuid}, aSnapshotId: {%RTuuid}\n", aMachineId.raw(), aSnapshotId.raw()));
4620
4621 AutoCaller autoCaller(this);
4622 AssertComRCReturnRC(autoCaller.hrc());
4623
4624 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4625
4626 switch (m->state)
4627 {
4628 case MediumState_Created:
4629 case MediumState_Inaccessible:
4630 case MediumState_LockedRead:
4631 case MediumState_LockedWrite:
4632 break;
4633
4634 default:
4635 return i_setStateError();
4636 }
4637
4638 if (m->numCreateDiffTasks > 0)
4639 return setError(VBOX_E_OBJECT_IN_USE,
4640 tr("Cannot attach medium '%s' {%RTuuid}: %u differencing child media are being created", "",
4641 m->numCreateDiffTasks),
4642 m->strLocationFull.c_str(),
4643 m->id.raw(),
4644 m->numCreateDiffTasks);
4645
4646 BackRefList::iterator it = std::find_if(m->backRefs.begin(),
4647 m->backRefs.end(),
4648 BackRef::EqualsTo(aMachineId));
4649 if (it == m->backRefs.end())
4650 {
4651 BackRef ref(aMachineId, aSnapshotId);
4652 m->backRefs.push_back(ref);
4653
4654 return S_OK;
4655 }
4656 bool fDvd = false;
4657 {
4658 AutoReadLock arlock(this COMMA_LOCKVAL_SRC_POS);
4659 /*
4660 * Check the medium is DVD and readonly. It's for the case if DVD
4661 * will be able to be writable sometime in the future.
4662 */
4663 fDvd = m->type == MediumType_Readonly && m->devType == DeviceType_DVD;
4664 }
4665
4666 // if the caller has not supplied a snapshot ID, then we're attaching
4667 // to a machine a medium which represents the machine's current state,
4668 // so set the flag
4669
4670 if (aSnapshotId.isZero())
4671 {
4672 // Allow DVD having MediumType_Readonly to be attached twice.
4673 // (the medium already had been added to back reference)
4674 if (fDvd)
4675 {
4676 it->iRefCnt++;
4677 return S_OK;
4678 }
4679
4680 /* sanity: no duplicate attachments */
4681 if (it->fInCurState)
4682 return setError(VBOX_E_OBJECT_IN_USE,
4683 tr("Cannot attach medium '%s' {%RTuuid}: medium is already associated with the current state of machine uuid {%RTuuid}!"),
4684 m->strLocationFull.c_str(),
4685 m->id.raw(),
4686 aMachineId.raw());
4687 it->fInCurState = true;
4688
4689 return S_OK;
4690 }
4691
4692 // otherwise: a snapshot medium is being attached
4693
4694 /* sanity: no duplicate attachments */
4695 for (std::list<SnapshotRef>::iterator jt = it->llSnapshotIds.begin();
4696 jt != it->llSnapshotIds.end();
4697 ++jt)
4698 {
4699 const Guid &idOldSnapshot = jt->snapshotId;
4700
4701 if (idOldSnapshot == aSnapshotId)
4702 {
4703 if (fDvd)
4704 {
4705 jt->iRefCnt++;
4706 return S_OK;
4707 }
4708#ifdef DEBUG
4709 i_dumpBackRefs();
4710#endif
4711 return setError(VBOX_E_OBJECT_IN_USE,
4712 tr("Cannot attach medium '%s' {%RTuuid} from snapshot '%RTuuid': medium is already in use by this snapshot!"),
4713 m->strLocationFull.c_str(),
4714 m->id.raw(),
4715 aSnapshotId.raw());
4716 }
4717 }
4718
4719 it->llSnapshotIds.push_back(SnapshotRef(aSnapshotId));
4720 // Do not touch fInCurState, as the image may be attached to the current
4721 // state *and* a snapshot, otherwise we lose the current state association!
4722
4723 LogFlowThisFuncLeave();
4724
4725 return S_OK;
4726}
4727
4728/**
4729 * Removes the given machine and optionally the snapshot from the list of the
4730 * objects this medium is attached to.
4731 *
4732 * @param aMachineId Machine ID.
4733 * @param aSnapshotId Snapshot ID; when non-empty, removes the snapshot
4734 * attachment.
4735 */
4736HRESULT Medium::i_removeBackReference(const Guid &aMachineId,
4737 const Guid &aSnapshotId /*= Guid::Empty*/)
4738{
4739 AssertReturn(aMachineId.isValid(), E_FAIL);
4740
4741 AutoCaller autoCaller(this);
4742 AssertComRCReturnRC(autoCaller.hrc());
4743
4744 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4745
4746 BackRefList::iterator it =
4747 std::find_if(m->backRefs.begin(), m->backRefs.end(),
4748 BackRef::EqualsTo(aMachineId));
4749 AssertReturn(it != m->backRefs.end(), E_FAIL);
4750
4751 if (aSnapshotId.isZero())
4752 {
4753 it->iRefCnt--;
4754 if (it->iRefCnt > 0)
4755 return S_OK;
4756
4757 /* remove the current state attachment */
4758 it->fInCurState = false;
4759 }
4760 else
4761 {
4762 /* remove the snapshot attachment */
4763 std::list<SnapshotRef>::iterator jt =
4764 std::find_if(it->llSnapshotIds.begin(),
4765 it->llSnapshotIds.end(),
4766 SnapshotRef::EqualsTo(aSnapshotId));
4767
4768 AssertReturn(jt != it->llSnapshotIds.end(), E_FAIL);
4769
4770 jt->iRefCnt--;
4771 if (jt->iRefCnt > 0)
4772 return S_OK;
4773
4774 it->llSnapshotIds.erase(jt);
4775 }
4776
4777 /* if the backref becomes empty, remove it */
4778 if (it->fInCurState == false && it->llSnapshotIds.size() == 0)
4779 m->backRefs.erase(it);
4780
4781 return S_OK;
4782}
4783
4784/**
4785 * Internal method to return the medium's list of backrefs. Must have caller + locking!
4786 * @return
4787 */
4788const Guid* Medium::i_getFirstMachineBackrefId() const
4789{
4790 if (!m->backRefs.size())
4791 return NULL;
4792
4793 return &m->backRefs.front().machineId;
4794}
4795
4796/**
4797 * Internal method which returns a machine that either this medium or one of its children
4798 * is attached to. This is used for finding a replacement media registry when an existing
4799 * media registry is about to be deleted in VirtualBox::unregisterMachine().
4800 *
4801 * Must have caller + locking, *and* caller must hold the media tree lock!
4802 * @param aId Id to ignore when looking for backrefs.
4803 * @return
4804 */
4805const Guid* Medium::i_getAnyMachineBackref(const Guid &aId) const
4806{
4807 std::list<const Medium *> llMediaTodo;
4808 llMediaTodo.push_back(this);
4809
4810 while (!llMediaTodo.empty())
4811 {
4812 const Medium *pMedium = llMediaTodo.front();
4813 llMediaTodo.pop_front();
4814
4815 if (pMedium->m->backRefs.size())
4816 {
4817 if (pMedium->m->backRefs.front().machineId != aId)
4818 return &pMedium->m->backRefs.front().machineId;
4819 if (pMedium->m->backRefs.size() > 1)
4820 {
4821 BackRefList::const_iterator it = pMedium->m->backRefs.begin();
4822 ++it;
4823 return &it->machineId;
4824 }
4825 }
4826
4827 MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
4828 MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
4829 for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
4830 llMediaTodo.push_back(*it);
4831 }
4832
4833 return NULL;
4834}
4835
4836const Guid* Medium::i_getFirstMachineBackrefSnapshotId() const
4837{
4838 if (!m->backRefs.size())
4839 return NULL;
4840
4841 const BackRef &ref = m->backRefs.front();
4842 if (ref.llSnapshotIds.empty())
4843 return NULL;
4844
4845 return &ref.llSnapshotIds.front().snapshotId;
4846}
4847
4848size_t Medium::i_getMachineBackRefCount() const
4849{
4850 return m->backRefs.size();
4851}
4852
4853#ifdef DEBUG
4854/**
4855 * Debugging helper that gets called after VirtualBox initialization that writes all
4856 * machine backreferences to the debug log.
4857 */
4858void Medium::i_dumpBackRefs()
4859{
4860 AutoCaller autoCaller(this);
4861 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
4862
4863 LogFlowThisFunc(("Dumping backrefs for medium '%s':\n", m->strLocationFull.c_str()));
4864
4865 for (BackRefList::iterator it2 = m->backRefs.begin();
4866 it2 != m->backRefs.end();
4867 ++it2)
4868 {
4869 const BackRef &ref = *it2;
4870 LogFlowThisFunc((" Backref from machine {%RTuuid} (fInCurState: %d, iRefCnt: %d)\n", ref.machineId.raw(), ref.fInCurState, ref.iRefCnt));
4871
4872 for (std::list<SnapshotRef>::const_iterator jt2 = it2->llSnapshotIds.begin();
4873 jt2 != it2->llSnapshotIds.end();
4874 ++jt2)
4875 {
4876 const Guid &id = jt2->snapshotId;
4877 LogFlowThisFunc((" Backref from snapshot {%RTuuid} (iRefCnt = %d)\n", id.raw(), jt2->iRefCnt));
4878 }
4879 }
4880}
4881#endif
4882
4883/**
4884 * Checks if the given change of \a aOldPath to \a aNewPath affects the location
4885 * of this media and updates it if necessary to reflect the new location.
4886 *
4887 * @param strOldPath Old path (full).
4888 * @param strNewPath New path (full).
4889 *
4890 * @note Locks this object for writing.
4891 */
4892HRESULT Medium::i_updatePath(const Utf8Str &strOldPath, const Utf8Str &strNewPath)
4893{
4894 AssertReturn(!strOldPath.isEmpty(), E_FAIL);
4895 AssertReturn(!strNewPath.isEmpty(), E_FAIL);
4896
4897 AutoCaller autoCaller(this);
4898 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
4899
4900 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
4901
4902 LogFlowThisFunc(("locationFull.before='%s'\n", m->strLocationFull.c_str()));
4903
4904 const char *pcszMediumPath = m->strLocationFull.c_str();
4905
4906 if (RTPathStartsWith(pcszMediumPath, strOldPath.c_str()))
4907 {
4908 Utf8Str newPath(strNewPath);
4909 newPath.append(pcszMediumPath + strOldPath.length());
4910 unconst(m->strLocationFull) = newPath;
4911
4912 m->pVirtualBox->i_onMediumConfigChanged(this);
4913
4914 LogFlowThisFunc(("locationFull.after='%s'\n", m->strLocationFull.c_str()));
4915 // we changed something
4916 return S_OK;
4917 }
4918
4919 // no change was necessary, signal error which the caller needs to interpret
4920 return VBOX_E_FILE_ERROR;
4921}
4922
4923/**
4924 * Returns the base medium of the media chain this medium is part of.
4925 *
4926 * The base medium is found by walking up the parent-child relationship axis.
4927 * If the medium doesn't have a parent (i.e. it's a base medium), it
4928 * returns itself in response to this method.
4929 *
4930 * @param aLevel Where to store the number of ancestors of this medium
4931 * (zero for the base), may be @c NULL.
4932 *
4933 * @note Locks medium tree for reading.
4934 */
4935ComObjPtr<Medium> Medium::i_getBase(uint32_t *aLevel /*= NULL*/)
4936{
4937 ComObjPtr<Medium> pBase;
4938
4939 /* it is possible that some previous/concurrent uninit has already cleared
4940 * the pVirtualBox reference, and in this case we don't need to continue */
4941 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
4942 if (!pVirtualBox)
4943 return pBase;
4944
4945 /* we access m->pParent */
4946 AutoReadLock treeLock(pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
4947
4948 AutoCaller autoCaller(this);
4949 AssertReturn(autoCaller.isOk(), pBase);
4950
4951 pBase = this;
4952 uint32_t level = 0;
4953
4954 if (m->pParent)
4955 {
4956 for (;;)
4957 {
4958 AutoCaller baseCaller(pBase);
4959 AssertReturn(baseCaller.isOk(), pBase);
4960
4961 if (pBase->m->pParent.isNull())
4962 break;
4963
4964 pBase = pBase->m->pParent;
4965 ++level;
4966 }
4967 }
4968
4969 if (aLevel != NULL)
4970 *aLevel = level;
4971
4972 return pBase;
4973}
4974
4975/**
4976 * Returns the depth of this medium in the media chain.
4977 *
4978 * @note Locks medium tree for reading.
4979 */
4980uint32_t Medium::i_getDepth()
4981{
4982 /* it is possible that some previous/concurrent uninit has already cleared
4983 * the pVirtualBox reference, and in this case we don't need to continue */
4984 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
4985 if (!pVirtualBox)
4986 return 1;
4987
4988 /* we access m->pParent */
4989 AutoReadLock treeLock(pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
4990
4991 uint32_t cDepth = 0;
4992 ComObjPtr<Medium> pMedium(this);
4993 while (!pMedium.isNull())
4994 {
4995 AutoCaller autoCaller(this);
4996 AssertReturn(autoCaller.isOk(), cDepth + 1);
4997
4998 pMedium = pMedium->m->pParent;
4999 cDepth++;
5000 }
5001
5002 return cDepth;
5003}
5004
5005/**
5006 * Returns @c true if this medium cannot be modified because it has
5007 * dependents (children) or is part of the snapshot. Related to the medium
5008 * type and posterity, not to the current media state.
5009 *
5010 * @note Locks this object and medium tree for reading.
5011 */
5012bool Medium::i_isReadOnly()
5013{
5014 /* it is possible that some previous/concurrent uninit has already cleared
5015 * the pVirtualBox reference, and in this case we don't need to continue */
5016 ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
5017 if (!pVirtualBox)
5018 return false;
5019
5020 /* we access children */
5021 AutoReadLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
5022
5023 AutoCaller autoCaller(this);
5024 AssertComRCReturn(autoCaller.hrc(), false);
5025
5026 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
5027
5028 switch (m->type)
5029 {
5030 case MediumType_Normal:
5031 {
5032 if (i_getChildren().size() != 0)
5033 return true;
5034
5035 for (BackRefList::const_iterator it = m->backRefs.begin();
5036 it != m->backRefs.end(); ++it)
5037 if (it->llSnapshotIds.size() != 0)
5038 return true;
5039
5040 if (m->variant & MediumVariant_VmdkStreamOptimized)
5041 return true;
5042
5043 return false;
5044 }
5045 case MediumType_Immutable:
5046 case MediumType_MultiAttach:
5047 return true;
5048 case MediumType_Writethrough:
5049 case MediumType_Shareable:
5050 case MediumType_Readonly: /* explicit readonly media has no diffs */
5051 return false;
5052 default:
5053 break;
5054 }
5055
5056 AssertFailedReturn(false);
5057}
5058
5059/**
5060 * Internal method to update the medium's id. Must have caller + locking!
5061 */
5062void Medium::i_updateId(const Guid &id)
5063{
5064 unconst(m->id) = id;
5065}
5066
5067/**
5068 * Saves the settings of one medium.
5069 *
5070 * @note Caller MUST take care of the medium tree lock and caller.
5071 *
5072 * @param data Settings struct to be updated.
5073 * @param strHardDiskFolder Folder for which paths should be relative.
5074 */
5075void Medium::i_saveSettingsOne(settings::Medium &data, const Utf8Str &strHardDiskFolder)
5076{
5077 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
5078
5079 data.uuid = m->id;
5080
5081 // make path relative if needed
5082 if ( !strHardDiskFolder.isEmpty()
5083 && RTPathStartsWith(m->strLocationFull.c_str(), strHardDiskFolder.c_str())
5084 )
5085 data.strLocation = m->strLocationFull.substr(strHardDiskFolder.length() + 1);
5086 else
5087 data.strLocation = m->strLocationFull;
5088 data.strFormat = m->strFormat;
5089
5090 /* optional, only for diffs, default is false */
5091 if (m->pParent)
5092 data.fAutoReset = m->autoReset;
5093 else
5094 data.fAutoReset = false;
5095
5096 /* optional */
5097 data.strDescription = m->strDescription;
5098
5099 /* optional properties */
5100 data.properties.clear();
5101
5102 /* handle iSCSI initiator secrets transparently */
5103 bool fHaveInitiatorSecretEncrypted = false;
5104 Utf8Str strCiphertext;
5105 settings::StringsMap::const_iterator itPln = m->mapProperties.find("InitiatorSecret");
5106 if ( itPln != m->mapProperties.end()
5107 && !itPln->second.isEmpty())
5108 {
5109 /* Encrypt the plain secret. If that does not work (i.e. no or wrong settings key
5110 * specified), just use the encrypted secret (if there is any). */
5111 int vrc = m->pVirtualBox->i_encryptSetting(itPln->second, &strCiphertext);
5112 if (RT_SUCCESS(vrc))
5113 fHaveInitiatorSecretEncrypted = true;
5114 }
5115 for (settings::StringsMap::const_iterator it = m->mapProperties.begin();
5116 it != m->mapProperties.end();
5117 ++it)
5118 {
5119 /* only save properties that have non-default values */
5120 if (!it->second.isEmpty())
5121 {
5122 const Utf8Str &name = it->first;
5123 const Utf8Str &value = it->second;
5124 bool fCreateOnly = false;
5125 for (MediumFormat::PropertyArray::const_iterator itf = m->formatObj->i_getProperties().begin();
5126 itf != m->formatObj->i_getProperties().end();
5127 ++itf)
5128 {
5129 if ( itf->strName.equals(name)
5130 && (itf->flags & VD_CFGKEY_CREATEONLY))
5131 {
5132 fCreateOnly = true;
5133 break;
5134 }
5135 }
5136 if (!fCreateOnly)
5137 /* do NOT store the plain InitiatorSecret */
5138 if ( !fHaveInitiatorSecretEncrypted
5139 || !name.equals("InitiatorSecret"))
5140 data.properties[name] = value;
5141 }
5142 }
5143 if (fHaveInitiatorSecretEncrypted)
5144 data.properties["InitiatorSecretEncrypted"] = strCiphertext;
5145
5146 /* only for base media */
5147 if (m->pParent.isNull())
5148 data.hdType = m->type;
5149}
5150
5151/**
5152 * Saves medium data by putting it into the provided data structure.
5153 * The settings of all children is saved, too.
5154 *
5155 * @param data Settings struct to be updated.
5156 * @param strHardDiskFolder Folder for which paths should be relative.
5157 *
5158 * @note Locks this object, medium tree and children for reading.
5159 */
5160HRESULT Medium::i_saveSettings(settings::Medium &data,
5161 const Utf8Str &strHardDiskFolder)
5162{
5163 /* we access m->pParent */
5164 AutoReadLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
5165
5166 AutoCaller autoCaller(this);
5167 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
5168
5169 MediaList llMediaTodo;
5170 llMediaTodo.push_back(this);
5171 std::list<settings::Medium *> llSettingsTodo;
5172 llSettingsTodo.push_back(&data);
5173
5174 while (!llMediaTodo.empty())
5175 {
5176 ComObjPtr<Medium> pMedium = llMediaTodo.front();
5177 llMediaTodo.pop_front();
5178 settings::Medium *current = llSettingsTodo.front();
5179 llSettingsTodo.pop_front();
5180
5181 AutoCaller mediumCaller(pMedium);
5182 if (FAILED(mediumCaller.hrc())) return mediumCaller.hrc();
5183
5184 pMedium->i_saveSettingsOne(*current, strHardDiskFolder);
5185
5186 /* save all children */
5187 MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
5188 MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
5189 for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
5190 {
5191 llMediaTodo.push_back(*it);
5192 current->llChildren.push_back(settings::Medium::Empty);
5193 llSettingsTodo.push_back(&current->llChildren.back());
5194 }
5195 }
5196
5197 return S_OK;
5198}
5199
5200/**
5201 * Constructs a medium lock list for this medium. The lock is not taken.
5202 *
5203 * @note Caller MUST NOT hold the media tree or medium lock.
5204 *
5205 * @param fFailIfInaccessible If true, this fails with an error if a medium is inaccessible. If false,
5206 * inaccessible media are silently skipped and not locked (i.e. their state remains "Inaccessible");
5207 * this is necessary for a VM's removable media VM startup for which we do not want to fail.
5208 * @param pToLockWrite If not NULL, associate a write lock with this medium object.
5209 * @param fMediumLockWriteAll Whether to associate a write lock to all other media too.
5210 * @param pToBeParent Medium which will become the parent of this medium.
5211 * @param mediumLockList Where to store the resulting list.
5212 */
5213HRESULT Medium::i_createMediumLockList(bool fFailIfInaccessible,
5214 Medium *pToLockWrite,
5215 bool fMediumLockWriteAll,
5216 Medium *pToBeParent,
5217 MediumLockList &mediumLockList)
5218{
5219 /** @todo r=klaus this needs to be reworked, as the code below uses
5220 * i_getParent without holding the tree lock, and changing this is
5221 * a significant amount of effort. */
5222 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
5223 Assert(!isWriteLockOnCurrentThread());
5224
5225 AutoCaller autoCaller(this);
5226 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
5227
5228 HRESULT hrc = S_OK;
5229
5230 /* paranoid sanity checking if the medium has a to-be parent medium */
5231 if (pToBeParent)
5232 {
5233 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
5234 ComAssertRet(i_getParent().isNull(), E_FAIL);
5235 ComAssertRet(i_getChildren().size() == 0, E_FAIL);
5236 }
5237
5238 ErrorInfoKeeper eik;
5239 MultiResult mrc(S_OK);
5240
5241 ComObjPtr<Medium> pMedium = this;
5242 while (!pMedium.isNull())
5243 {
5244 AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
5245
5246 /* Accessibility check must be first, otherwise locking interferes
5247 * with getting the medium state. Lock lists are not created for
5248 * fun, and thus getting the medium status is no luxury. */
5249 MediumState_T mediumState = pMedium->i_getState();
5250 if (mediumState == MediumState_Inaccessible)
5251 {
5252 alock.release();
5253 hrc = pMedium->i_queryInfo(false /* fSetImageId */, false /* fSetParentId */, autoCaller);
5254 alock.acquire();
5255 if (FAILED(hrc)) return hrc;
5256
5257 mediumState = pMedium->i_getState();
5258 if (mediumState == MediumState_Inaccessible)
5259 {
5260 // ignore inaccessible ISO media and silently return S_OK,
5261 // otherwise VM startup (esp. restore) may fail without good reason
5262 if (!fFailIfInaccessible)
5263 return S_OK;
5264
5265 // otherwise report an error
5266 Bstr error;
5267 hrc = pMedium->COMGETTER(LastAccessError)(error.asOutParam());
5268 if (FAILED(hrc)) return hrc;
5269
5270 /* collect multiple errors */
5271 eik.restore();
5272 Assert(!error.isEmpty());
5273 mrc = setError(E_FAIL,
5274 "%ls",
5275 error.raw());
5276 // error message will be something like
5277 // "Could not open the medium ... VD: error VERR_FILE_NOT_FOUND opening image file ... (VERR_FILE_NOT_FOUND).
5278 eik.fetch();
5279 }
5280 }
5281
5282 if (pMedium == pToLockWrite)
5283 mediumLockList.Prepend(pMedium, true);
5284 else
5285 mediumLockList.Prepend(pMedium, fMediumLockWriteAll);
5286
5287 pMedium = pMedium->i_getParent();
5288 if (pMedium.isNull() && pToBeParent)
5289 {
5290 pMedium = pToBeParent;
5291 pToBeParent = NULL;
5292 }
5293 }
5294
5295 return mrc;
5296}
5297
5298/**
5299 * Creates a new differencing storage unit using the format of the given target
5300 * medium and the location. Note that @c aTarget must be NotCreated.
5301 *
5302 * The @a aMediumLockList parameter contains the associated medium lock list,
5303 * which must be in locked state. If @a aWait is @c true then the caller is
5304 * responsible for unlocking.
5305 *
5306 * If @a aProgress is not NULL but the object it points to is @c null then a
5307 * new progress object will be created and assigned to @a *aProgress on
5308 * success, otherwise the existing progress object is used. If @a aProgress is
5309 * NULL, then no progress object is created/used at all.
5310 *
5311 * When @a aWait is @c false, this method will create a thread to perform the
5312 * create operation asynchronously and will return immediately. Otherwise, it
5313 * will perform the operation on the calling thread and will not return to the
5314 * caller until the operation is completed. Note that @a aProgress cannot be
5315 * NULL when @a aWait is @c false (this method will assert in this case).
5316 *
5317 * @param aTarget Target medium.
5318 * @param aVariant Precise medium variant to create.
5319 * @param aMediumLockList List of media which should be locked.
5320 * @param aProgress Where to find/store a Progress object to track
5321 * operation completion.
5322 * @param aWait @c true if this method should block instead of
5323 * creating an asynchronous thread.
5324 * @param aNotify Notify about media for which metadata is changed
5325 * during execution of the function.
5326 *
5327 * @note Locks this object and @a aTarget for writing.
5328 */
5329HRESULT Medium::i_createDiffStorage(ComObjPtr<Medium> &aTarget,
5330 MediumVariant_T aVariant,
5331 MediumLockList *aMediumLockList,
5332 ComObjPtr<Progress> *aProgress,
5333 bool aWait,
5334 bool aNotify)
5335{
5336 AssertReturn(!aTarget.isNull(), E_FAIL);
5337 AssertReturn(aMediumLockList, E_FAIL);
5338 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
5339
5340 AutoCaller autoCaller(this);
5341 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
5342
5343 AutoCaller targetCaller(aTarget);
5344 if (FAILED(targetCaller.hrc())) return targetCaller.hrc();
5345
5346 HRESULT hrc = S_OK;
5347 ComObjPtr<Progress> pProgress;
5348 Medium::Task *pTask = NULL;
5349
5350 try
5351 {
5352 AutoMultiWriteLock2 alock(this, aTarget COMMA_LOCKVAL_SRC_POS);
5353
5354 ComAssertThrow( m->type != MediumType_Writethrough
5355 && m->type != MediumType_Shareable
5356 && m->type != MediumType_Readonly, E_FAIL);
5357 ComAssertThrow(m->state == MediumState_LockedRead, E_FAIL);
5358
5359 if (aTarget->m->state != MediumState_NotCreated)
5360 throw aTarget->i_setStateError();
5361
5362 /* Check that the medium is not attached to the current state of
5363 * any VM referring to it. */
5364 for (BackRefList::const_iterator it = m->backRefs.begin();
5365 it != m->backRefs.end();
5366 ++it)
5367 {
5368 if (it->fInCurState)
5369 {
5370 /* Note: when a VM snapshot is being taken, all normal media
5371 * attached to the VM in the current state will be, as an
5372 * exception, also associated with the snapshot which is about
5373 * to create (see SnapshotMachine::init()) before deassociating
5374 * them from the current state (which takes place only on
5375 * success in Machine::fixupHardDisks()), so that the size of
5376 * snapshotIds will be 1 in this case. The extra condition is
5377 * used to filter out this legal situation. */
5378 if (it->llSnapshotIds.size() == 0)
5379 throw setError(VBOX_E_INVALID_OBJECT_STATE,
5380 tr("Medium '%s' is attached to a virtual machine with UUID {%RTuuid}. No differencing media based on it may be created until it is detached"),
5381 m->strLocationFull.c_str(), it->machineId.raw());
5382
5383 Assert(it->llSnapshotIds.size() == 1);
5384 }
5385 }
5386
5387 if (aProgress != NULL)
5388 {
5389 /* use the existing progress object... */
5390 pProgress = *aProgress;
5391
5392 /* ...but create a new one if it is null */
5393 if (pProgress.isNull())
5394 {
5395 pProgress.createObject();
5396 hrc = pProgress->init(m->pVirtualBox,
5397 static_cast<IMedium*>(this),
5398 BstrFmt(tr("Creating differencing medium storage unit '%s'"),
5399 aTarget->m->strLocationFull.c_str()).raw(),
5400 TRUE /* aCancelable */);
5401 if (FAILED(hrc))
5402 throw hrc;
5403 }
5404 }
5405
5406 /* setup task object to carry out the operation sync/async */
5407 pTask = new Medium::CreateDiffTask(this, pProgress, aTarget, aVariant,
5408 aMediumLockList,
5409 aWait /* fKeepMediumLockList */,
5410 aNotify);
5411 hrc = pTask->hrc();
5412 AssertComRC(hrc);
5413 if (FAILED(hrc))
5414 throw hrc;
5415
5416 /* register a task (it will deregister itself when done) */
5417 ++m->numCreateDiffTasks;
5418 Assert(m->numCreateDiffTasks != 0); /* overflow? */
5419
5420 aTarget->m->state = MediumState_Creating;
5421 }
5422 catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
5423
5424 if (SUCCEEDED(hrc))
5425 {
5426 if (aWait)
5427 {
5428 hrc = pTask->runNow();
5429 delete pTask;
5430 }
5431 else
5432 hrc = pTask->createThread();
5433 pTask = NULL;
5434 if (SUCCEEDED(hrc) && aProgress != NULL)
5435 *aProgress = pProgress;
5436 }
5437 else if (pTask != NULL)
5438 delete pTask;
5439
5440 return hrc;
5441}
5442
5443/**
5444 * Returns a preferred format for differencing media.
5445 */
5446Utf8Str Medium::i_getPreferredDiffFormat()
5447{
5448 AutoCaller autoCaller(this);
5449 AssertComRCReturn(autoCaller.hrc(), Utf8Str::Empty);
5450
5451 /* check that our own format supports diffs */
5452 if (!(m->formatObj->i_getCapabilities() & MediumFormatCapabilities_Differencing))
5453 {
5454 /* use the default format if not */
5455 Utf8Str tmp;
5456 m->pVirtualBox->i_getDefaultHardDiskFormat(tmp);
5457 return tmp;
5458 }
5459
5460 /* m->strFormat is const, no need to lock */
5461 return m->strFormat;
5462}
5463
5464/**
5465 * Returns a preferred variant for differencing media.
5466 */
5467MediumVariant_T Medium::i_getPreferredDiffVariant()
5468{
5469 AutoCaller autoCaller(this);
5470 AssertComRCReturn(autoCaller.hrc(), MediumVariant_Standard);
5471
5472 /* check that our own format supports diffs */
5473 if (!(m->formatObj->i_getCapabilities() & MediumFormatCapabilities_Differencing))
5474 return MediumVariant_Standard;
5475
5476 /* m->variant is const, no need to lock */
5477 ULONG mediumVariantFlags = (ULONG)m->variant;
5478 mediumVariantFlags &= ~(ULONG)(MediumVariant_Fixed | MediumVariant_VmdkStreamOptimized | MediumVariant_VmdkESX | MediumVariant_VmdkRawDisk);
5479 mediumVariantFlags |= MediumVariant_Diff;
5480 return (MediumVariant_T)mediumVariantFlags;
5481}
5482
5483/**
5484 * Implementation for the public Medium::Close() with the exception of calling
5485 * VirtualBox::saveRegistries(), in case someone wants to call this for several
5486 * media.
5487 *
5488 * After this returns with success, uninit() has been called on the medium, and
5489 * the object is no longer usable ("not ready" state).
5490 *
5491 * @param autoCaller AutoCaller instance which must have been created on the caller's
5492 * stack for this medium. This gets released hereupon
5493 * which the Medium instance gets uninitialized.
5494 * @return
5495 */
5496HRESULT Medium::i_close(AutoCaller &autoCaller)
5497{
5498 // must temporarily drop the caller, need the tree lock first
5499 autoCaller.release();
5500
5501 // we're accessing parent/child and backrefs, so lock the tree first, then ourselves
5502 AutoMultiWriteLock2 multilock(&m->pVirtualBox->i_getMediaTreeLockHandle(),
5503 this->lockHandle()
5504 COMMA_LOCKVAL_SRC_POS);
5505
5506 autoCaller.add();
5507 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
5508
5509 /* Wait for a concurrently running Medium::i_queryInfo to complete. */
5510 while (m->queryInfoRunning)
5511 {
5512 autoCaller.release();
5513 multilock.release();
5514 /* Must not hold the media tree lock, as Medium::i_queryInfo needs
5515 * this lock and thus we would run into a deadlock here. */
5516 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
5517 /* must not hold the object lock now */
5518 Assert(!isWriteLockOnCurrentThread());
5519 {
5520 AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
5521 }
5522 multilock.acquire();
5523 autoCaller.add();
5524 if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
5525 }
5526
5527 LogFlowFunc(("ENTER for %s\n", i_getLocationFull().c_str()));
5528
5529 bool wasCreated = true;
5530
5531 switch (m->state)
5532 {
5533 case MediumState_NotCreated:
5534 wasCreated = false;
5535 break;
5536 case MediumState_Created:
5537 case MediumState_Inaccessible:
5538 break;
5539 default:
5540 return i_setStateError();
5541 }
5542
5543 if (m->fClosing)
5544 return setError(VBOX_E_OBJECT_IN_USE,
5545 tr("Medium '%s' cannot be closed because it is already in the process of being closed", ""),
5546 m->strLocationFull.c_str());
5547
5548 if (m->backRefs.size() != 0)
5549 return setError(VBOX_E_OBJECT_IN_USE,
5550 tr("Medium '%s' cannot be closed because it is still attached to %d virtual machines", "",
5551 m->backRefs.size()),
5552 m->strLocationFull.c_str(), m->backRefs.size());
5553
5554 // perform extra media-dependent close checks
5555 HRESULT hrc = i_canClose();
5556 if (FAILED(hrc)) return hrc;
5557
5558 m->fClosing = true;
5559
5560 if (wasCreated)
5561 {
5562 // remove from the list of known media before performing actual
5563 // uninitialization (to keep the media registry consistent on
5564 // failure to do so)
5565 hrc = i_unregisterWithVirtualBox();
5566 if (FAILED(hrc)) return hrc;
5567
5568 multilock.release();
5569 // Release the AutoCaller now, as otherwise uninit() will simply hang.
5570 // Needs to be done before mark the registries as modified and saving
5571 // the registry, as otherwise there may be a deadlock with someone else
5572 // closing this object while we're in i_saveModifiedRegistries(), which
5573 // needs the media tree lock, which the other thread holds until after
5574 // uninit() below.
5575 autoCaller.release();
5576 i_markRegistriesModified();
5577 m->pVirtualBox->i_saveModifiedRegistries();
5578 }
5579 else
5580 {
5581 multilock.release();
5582 // release the AutoCaller, as otherwise uninit() will simply hang
5583 autoCaller.release();
5584 }
5585
5586 uninit();
5587
5588 LogFlowFuncLeave();
5589
5590 return hrc;
5591}
5592
5593/**
5594 * Deletes the medium storage unit.
5595 *
5596 * If @a aProgress is not NULL but the object it points to is @c null then a new
5597 * progress object will be created and assigned to @a *aProgress on success,
5598 * otherwise the existing progress object is used. If Progress is NULL, then no
5599 * progress object is created/used at all.
5600 *
5601 * When @a aWait is @c false, this method will create a thread to perform the
5602 * delete operation asynchronously and will return immediately. Otherwise, it
5603 * will perform the operation on the calling thread and will not return to the
5604 * caller until the operation is completed. Note that @a aProgress cannot be
5605 * NULL when @a aWait is @c false (this method will assert in this case).
5606 *
5607 * @param aProgress Where to find/store a Progress object to track operation
5608 * completion.
5609 * @param aWait @c true if this method should block instead of creating
5610 * an asynchronous thread.
5611 * @param aNotify Notify about media for which metadata is changed
5612 * during execution of the function.
5613 *
5614 * @note Locks mVirtualBox and this object for writing. Locks medium tree for
5615 * writing.
5616 */
5617HRESULT Medium::i_deleteStorage(ComObjPtr<Progress> *aProgress,
5618 bool aWait, bool aNotify)
5619{
5620 AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
5621
5622 HRESULT hrc = S_OK;
5623 ComObjPtr<Progress> pProgress;
5624 Medium::Task *pTask = NULL;
5625
5626 try
5627 {
5628 /* we're accessing the media tree, and i_canClose() needs it too */
5629 AutoWriteLock treelock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
5630
5631 AutoCaller autoCaller(this);
5632 AssertComRCThrowRC(autoCaller.hrc());
5633
5634 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
5635
5636 LogFlowThisFunc(("aWait=%RTbool locationFull=%s\n", aWait, i_getLocationFull().c_str() ));
5637
5638 if ( !(m->formatObj->i_getCapabilities() & ( MediumFormatCapabilities_CreateDynamic
5639 | MediumFormatCapabilities_CreateFixed
5640 | MediumFormatCapabilities_File)))
5641 throw setError(VBOX_E_NOT_SUPPORTED,
5642 tr("Medium format '%s' does not support storage deletion"),
5643 m->strFormat.c_str());
5644
5645 /* Wait for a concurrently running Medium::i_queryInfo to complete. */
5646 /** @todo r=klaus would be great if this could be moved to the async
5647 * part of the operation as it can take quite a while */
5648 while (m->queryInfoRunning)
5649 {
5650 alock.release();
5651 autoCaller.release();
5652 treelock.release();
5653 /* Must not hold the media tree lock or the object lock, as
5654 * Medium::i_queryInfo needs this lock and thus we would run
5655 * into a deadlock here. */
5656 Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
5657 Assert(!isWriteLockOnCurrentThread());
5658 {
5659 AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
5660 }
5661 treelock.acquire();
5662 autoCaller.add();
5663 AssertComRCThrowRC(autoCaller.hrc());
5664 alock.acquire();
5665 }
5666
5667 /* Note that we are fine with Inaccessible state too: a) for symmetry
5668 * with create calls and b) because it doesn't really harm to try, if
5669 * it is really inaccessible, the delete operation will fail anyway.
5670 * Accepting Inaccessible state is especially important because all
5671 * registered media are initially Inaccessible upon VBoxSVC startup
5672 * until COMGETTER(RefreshState) is called. Accept Deleting state
5673 * because some callers need to put the medium in this state early
5674 * to prevent races. */
5675 switch (m->state)
5676 {
5677 case MediumState_Created:
5678 case MediumState_Deleting:
5679 case MediumState_Inaccessible:
5680 break;
5681 default:
5682 throw i_setStateError();
5683 }
5684
5685 if (m->backRefs.size() != 0)
5686 {
5687 Utf8Str strMachines;
5688 for (BackRefList::const_iterator it = m->backRefs.begin();
5689 it != m->backRefs.end();
5690 ++it)
5691 {
5692 const BackRef &b = *it;
5693 if (strMachines.length())
5694 strMachines.append(", ");
5695 strMachines.append(b.machineId.toString().c_str());
5696 }
5697#ifdef DEBUG
5698 i_dumpBackRefs();
5699#endif
5700 throw setError(VBOX_E_OBJECT_IN_USE,
5701 tr("Cannot delete storage: medium '%s' is still attached to the following %d virtual machine(s): %s",
5702 "", m->backRefs.size()),
5703 m->strLocationFull.c_str(),
5704 m->backRefs.size(),
5705 strMachines.c_str());
5706 }
5707
5708 hrc = i_canClose();
5709 if (FAILED(hrc))
5710 throw hrc;
5711
5712 /* go to Deleting state, so that the medium is not actually locked */
5713 if (m->state != MediumState_Deleting)
5714 {
5715 hrc = i_markForDeletion();
5716 if (FAILED(hrc))
5717 throw hrc;
5718 }
5719
5720 /* Build the medium lock list. */
5721 MediumLockList *pMediumLockList(new MediumLockList());
5722 alock.release();
5723 autoCaller.release();
5724 treelock.release();
5725 hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
5726 this /* pToLockWrite */,
5727 false /* fMediumLockWriteAll */,
5728 NULL,
5729 *pMediumLockList);
5730 treelock.acquire();
5731 autoCaller.add();
5732 AssertComRCThrowRC(autoCaller.hrc());
5733 alock.acquire();
5734 if (FAILED(hrc))
5735 {
5736 delete pMediumLockList;
5737 throw hrc;
5738 }
5739
5740 alock.release();
5741 autoCaller.release();
5742 treelock.release();
5743 hrc = pMediumLockList->Lock();
5744 treelock.acquire();
5745 autoCaller.add();
5746 AssertComRCThrowRC(autoCaller.hrc());
5747 alock.acquire();
5748 if (FAILED(hrc))
5749 {
5750 delete pMediumLockList;
5751 throw setError(hrc,
5752 tr("Failed to lock media when deleting '%s'"),
5753 i_getLocationFull().c_str());
5754 }
5755
5756 /* try to remove from the list of known media before performing
5757 * actual deletion (we favor the consistency of the media registry
5758 * which would have been broken if unregisterWithVirtualBox() failed
5759 * after we successfully deleted the storage) */
5760 hrc = i_unregisterWithVirtualBox();
5761 if (FAILED(hrc))
5762 throw hrc;
5763 // no longer need lock
5764 alock.release();
5765 autoCaller.release();
5766 treelock.release();
5767 i_markRegistriesModified();
5768
5769 if (aProgress != NULL)
5770 {
5771 /* use the existing progress object... */
5772 pProgress = *aProgress;
5773
5774 /* ...but create a new one if it is null */
5775 if (pProgress.isNull())
5776 {
5777 pProgress.createObject();
5778 hrc = pProgress->init(m->pVirtualBox,
5779 static_cast<IMedium*>(this),
5780 BstrFmt(tr("Deleting medium storage unit '%s'"), m->strLocationFull.c_str()).raw(),
5781 FALSE /* aCancelable */);
5782 if (FAILED(hrc))
5783 th