1 | /* $Id: MediumImpl.cpp 98352 2023-01-30 19:44:51Z 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 |
|
---|
64 | typedef std::list<Guid> GuidList;
|
---|
65 |
|
---|
66 |
|
---|
67 | #ifdef VBOX_WITH_EXTPACK
|
---|
68 | static 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 |
|
---|
82 | struct 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. */
|
---|
120 | struct 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 |
|
---|
164 | typedef std::list<BackRef> BackRefList;
|
---|
165 |
|
---|
166 | #if __cplusplus < 201700 && RT_GNUC_PREREQ(11,0)
|
---|
167 | # pragma GCC diagnostic pop
|
---|
168 | #endif
|
---|
169 |
|
---|
170 |
|
---|
171 | struct 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 |
|
---|
277 | typedef 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 | */
|
---|
298 | class Medium::Task : public ThreadTask
|
---|
299 | {
|
---|
300 | public:
|
---|
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 |
|
---|
395 | protected:
|
---|
396 | HRESULT mHrc;
|
---|
397 |
|
---|
398 | private:
|
---|
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 |
|
---|
415 | class Medium::CreateBaseTask : public Medium::Task
|
---|
416 | {
|
---|
417 | public:
|
---|
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 |
|
---|
433 | private:
|
---|
434 | HRESULT executeTask()
|
---|
435 | {
|
---|
436 | return mMedium->i_taskCreateBaseHandler(*this);
|
---|
437 | }
|
---|
438 | };
|
---|
439 |
|
---|
440 | class Medium::CreateDiffTask : public Medium::Task
|
---|
441 | {
|
---|
442 | public:
|
---|
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 |
|
---|
475 | private:
|
---|
476 | HRESULT executeTask()
|
---|
477 | {
|
---|
478 | return mMedium->i_taskCreateDiffHandler(*this);
|
---|
479 | }
|
---|
480 |
|
---|
481 | AutoCaller mTargetCaller;
|
---|
482 | bool mfKeepMediumLockList;
|
---|
483 | };
|
---|
484 |
|
---|
485 | class Medium::CloneTask : public Medium::Task
|
---|
486 | {
|
---|
487 | public:
|
---|
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 |
|
---|
545 | private:
|
---|
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 |
|
---|
557 | class Medium::MoveTask : public Medium::Task
|
---|
558 | {
|
---|
559 | public:
|
---|
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 |
|
---|
584 | private:
|
---|
585 | HRESULT executeTask()
|
---|
586 | {
|
---|
587 | return mMedium->i_taskMoveHandler(*this);
|
---|
588 | }
|
---|
589 |
|
---|
590 | bool mfKeepMediumLockList;
|
---|
591 | };
|
---|
592 |
|
---|
593 | class Medium::CompactTask : public Medium::Task
|
---|
594 | {
|
---|
595 | public:
|
---|
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 |
|
---|
617 | private:
|
---|
618 | HRESULT executeTask()
|
---|
619 | {
|
---|
620 | return mMedium->i_taskCompactHandler(*this);
|
---|
621 | }
|
---|
622 |
|
---|
623 | bool mfKeepMediumLockList;
|
---|
624 | };
|
---|
625 |
|
---|
626 | class Medium::ResizeTask : public Medium::Task
|
---|
627 | {
|
---|
628 | public:
|
---|
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 |
|
---|
653 | private:
|
---|
654 | HRESULT executeTask()
|
---|
655 | {
|
---|
656 | return mMedium->i_taskResizeHandler(*this);
|
---|
657 | }
|
---|
658 |
|
---|
659 | bool mfKeepMediumLockList;
|
---|
660 | };
|
---|
661 |
|
---|
662 | class Medium::ResetTask : public Medium::Task
|
---|
663 | {
|
---|
664 | public:
|
---|
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 |
|
---|
685 | private:
|
---|
686 | HRESULT executeTask()
|
---|
687 | {
|
---|
688 | return mMedium->i_taskResetHandler(*this);
|
---|
689 | }
|
---|
690 |
|
---|
691 | bool mfKeepMediumLockList;
|
---|
692 | };
|
---|
693 |
|
---|
694 | class Medium::DeleteTask : public Medium::Task
|
---|
695 | {
|
---|
696 | public:
|
---|
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 |
|
---|
717 | private:
|
---|
718 | HRESULT executeTask()
|
---|
719 | {
|
---|
720 | return mMedium->i_taskDeleteHandler(*this);
|
---|
721 | }
|
---|
722 |
|
---|
723 | bool mfKeepMediumLockList;
|
---|
724 | };
|
---|
725 |
|
---|
726 | class Medium::MergeTask : public Medium::Task
|
---|
727 | {
|
---|
728 | public:
|
---|
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 |
|
---|
768 | private:
|
---|
769 | HRESULT executeTask()
|
---|
770 | {
|
---|
771 | return mMedium->i_taskMergeHandler(*this);
|
---|
772 | }
|
---|
773 |
|
---|
774 | AutoCaller mTargetCaller;
|
---|
775 | AutoCaller mParentForTargetCaller;
|
---|
776 | bool mfKeepMediumLockList;
|
---|
777 | };
|
---|
778 |
|
---|
779 | class Medium::ImportTask : public Medium::Task
|
---|
780 | {
|
---|
781 | public:
|
---|
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 |
|
---|
839 | private:
|
---|
840 | HRESULT executeTask()
|
---|
841 | {
|
---|
842 | return mMedium->i_taskImportHandler(*this);
|
---|
843 | }
|
---|
844 |
|
---|
845 | AutoCaller mParentCaller;
|
---|
846 | bool mfKeepTargetMediumLockList;
|
---|
847 | };
|
---|
848 |
|
---|
849 | class Medium::EncryptTask : public Medium::Task
|
---|
850 | {
|
---|
851 | public:
|
---|
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 |
|
---|
895 | private:
|
---|
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 | */
|
---|
909 | static 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 | */
|
---|
925 | static 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 |
|
---|
950 | DEFINE_EMPTY_CTOR_DTOR(Medium)
|
---|
951 |
|
---|
952 | HRESULT 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 |
|
---|
991 | void 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 | */
|
---|
1025 | HRESULT 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 | */
|
---|
1134 | HRESULT 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 | */
|
---|
1248 | HRESULT 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 */
|
---|
1407 | HRESULT 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 (FAILED(hrc))
|
---|
1451 | break;
|
---|
1452 |
|
---|
1453 | if (pActualMedium == pMedium)
|
---|
1454 | {
|
---|
1455 | /* It is a truly new medium, remember details for cleanup. */
|
---|
1456 | autoInitSpan.setSucceeded();
|
---|
1457 | llMediaTocleanup.push_front(pMedium);
|
---|
1458 | }
|
---|
1459 | else
|
---|
1460 | {
|
---|
1461 | /* Since the newly created medium was replaced by an already
|
---|
1462 | * known one when merging medium trees, we can immediately mark
|
---|
1463 | * it as failed. */
|
---|
1464 | autoInitSpan.setFailed();
|
---|
1465 | mediaTreeLock.release();
|
---|
1466 | fReleasedMediaTreeLock = true;
|
---|
1467 | }
|
---|
1468 | }
|
---|
1469 | if (fReleasedMediaTreeLock)
|
---|
1470 | {
|
---|
1471 | /* With the InitSpan out of the way it's safe to let the refcount
|
---|
1472 | * drop to 0 without causing uninit trouble. */
|
---|
1473 | pMedium.setNull();
|
---|
1474 | mediaTreeLock.acquire();
|
---|
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 | MediaList::const_reverse_iterator itBegin = llMediaTocleanup.rbegin();
|
---|
1494 | MediaList::const_reverse_iterator itEnd = llMediaTocleanup.rend();
|
---|
1495 | for (MediaList::const_reverse_iterator it = itBegin; it != itEnd; --it)
|
---|
1496 | {
|
---|
1497 | ComObjPtr<Medium> pMedium = *it;
|
---|
1498 | AutoCaller mediumCaller(pMedium);
|
---|
1499 | if (FAILED(mediumCaller.hrc())) continue;
|
---|
1500 | const Guid &id = pMedium->i_getId();
|
---|
1501 | uIdsForNotify.push_back(std::pair<Guid, DeviceType_T>(id, aDeviceType));
|
---|
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 | */
|
---|
1541 | HRESULT 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 | */
|
---|
1597 | void 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 | */
|
---|
1695 | void 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 | */
|
---|
1718 | void 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 |
|
---|
1732 | HRESULT 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 |
|
---|
1741 | HRESULT 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 |
|
---|
1751 | HRESULT 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 |
|
---|
1816 | HRESULT 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 |
|
---|
1824 | HRESULT 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 |
|
---|
1836 | HRESULT 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 |
|
---|
1845 | HRESULT 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 |
|
---|
1854 | HRESULT 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 |
|
---|
1863 | HRESULT 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 |
|
---|
1872 | HRESULT 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 |
|
---|
1881 | HRESULT 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 |
|
---|
1889 | HRESULT 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 |
|
---|
1897 | HRESULT 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 |
|
---|
1907 | HRESULT 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 |
|
---|
2069 | HRESULT Medium::getAllowedTypes(std::vector<MediumType_T> &aAllowedTypes)
|
---|
2070 | {
|
---|
2071 | NOREF(aAllowedTypes);
|
---|
2072 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
2073 |
|
---|
2074 | ReturnComNotImplemented();
|
---|
2075 | }
|
---|
2076 |
|
---|
2077 | HRESULT 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 |
|
---|
2096 | HRESULT 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 |
|
---|
2118 | HRESULT 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 |
|
---|
2128 | HRESULT 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 |
|
---|
2138 | HRESULT 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 |
|
---|
2147 | HRESULT 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 |
|
---|
2159 | HRESULT 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 |
|
---|
2182 | HRESULT 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 |
|
---|
2191 | HRESULT 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 |
|
---|
2207 | HRESULT 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 |
|
---|
2294 | HRESULT 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 |
|
---|
2323 | HRESULT 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 |
|
---|
2359 | HRESULT 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 | */
|
---|
2430 | HRESULT 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 | }
|
---|
2474 | HRESULT 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 | */
|
---|
2536 | HRESULT 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 |
|
---|
2573 | HRESULT 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 |
|
---|
2590 | HRESULT 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 |
|
---|
2611 | HRESULT 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 |
|
---|
2679 | HRESULT 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 |
|
---|
2701 | HRESULT 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 |
|
---|
2759 | HRESULT 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 |
|
---|
2843 | HRESULT 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 |
|
---|
2859 | HRESULT 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 |
|
---|
2977 | HRESULT 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 |
|
---|
3007 | HRESULT 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 |
|
---|
3014 | HRESULT Medium::cloneTo(const ComPtr<IMedium> &aTarget,
|
---|
3015 | const std::vector<MediumVariant_T> &aVariant,
|
---|
3016 | const ComPtr<IMedium> &aParent,
|
---|
3017 | ComPtr<IProgress> &aProgress)
|
---|
3018 | {
|
---|
3019 | /** @todo r=jack: Remove redundancy. Call Medium::resizeAndCloneTo. */
|
---|
3020 |
|
---|
3021 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
3022 | * to lock order violations, it probably causes lock order issues related
|
---|
3023 | * to the AutoCaller usage. */
|
---|
3024 | ComAssertRet(aTarget != this, E_INVALIDARG);
|
---|
3025 |
|
---|
3026 | IMedium *aT = aTarget;
|
---|
3027 | ComObjPtr<Medium> pTarget = static_cast<Medium*>(aT);
|
---|
3028 | ComObjPtr<Medium> pParent;
|
---|
3029 | if (aParent)
|
---|
3030 | {
|
---|
3031 | IMedium *aP = aParent;
|
---|
3032 | pParent = static_cast<Medium*>(aP);
|
---|
3033 | }
|
---|
3034 |
|
---|
3035 | HRESULT hrc = S_OK;
|
---|
3036 | ComObjPtr<Progress> pProgress;
|
---|
3037 | Medium::Task *pTask = NULL;
|
---|
3038 |
|
---|
3039 | try
|
---|
3040 | {
|
---|
3041 | // locking: we need the tree lock first because we access parent pointers
|
---|
3042 | // and we need to write-lock the media involved
|
---|
3043 | uint32_t cHandles = 3;
|
---|
3044 | LockHandle* pHandles[4] = { &m->pVirtualBox->i_getMediaTreeLockHandle(),
|
---|
3045 | this->lockHandle(),
|
---|
3046 | pTarget->lockHandle() };
|
---|
3047 | /* Only add parent to the lock if it is not null */
|
---|
3048 | if (!pParent.isNull())
|
---|
3049 | pHandles[cHandles++] = pParent->lockHandle();
|
---|
3050 | AutoWriteLock alock(cHandles,
|
---|
3051 | pHandles
|
---|
3052 | COMMA_LOCKVAL_SRC_POS);
|
---|
3053 |
|
---|
3054 | if ( pTarget->m->state != MediumState_NotCreated
|
---|
3055 | && pTarget->m->state != MediumState_Created)
|
---|
3056 | throw pTarget->i_setStateError();
|
---|
3057 |
|
---|
3058 | /* Build the source lock list. */
|
---|
3059 | MediumLockList *pSourceMediumLockList(new MediumLockList());
|
---|
3060 | alock.release();
|
---|
3061 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
3062 | NULL /* pToLockWrite */,
|
---|
3063 | false /* fMediumLockWriteAll */,
|
---|
3064 | NULL,
|
---|
3065 | *pSourceMediumLockList);
|
---|
3066 | alock.acquire();
|
---|
3067 | if (FAILED(hrc))
|
---|
3068 | {
|
---|
3069 | delete pSourceMediumLockList;
|
---|
3070 | throw hrc;
|
---|
3071 | }
|
---|
3072 |
|
---|
3073 | /* Build the target lock list (including the to-be parent chain). */
|
---|
3074 | MediumLockList *pTargetMediumLockList(new MediumLockList());
|
---|
3075 | alock.release();
|
---|
3076 | hrc = pTarget->i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
3077 | pTarget /* pToLockWrite */,
|
---|
3078 | false /* fMediumLockWriteAll */,
|
---|
3079 | pParent,
|
---|
3080 | *pTargetMediumLockList);
|
---|
3081 | alock.acquire();
|
---|
3082 | if (FAILED(hrc))
|
---|
3083 | {
|
---|
3084 | delete pSourceMediumLockList;
|
---|
3085 | delete pTargetMediumLockList;
|
---|
3086 | throw hrc;
|
---|
3087 | }
|
---|
3088 |
|
---|
3089 | alock.release();
|
---|
3090 | hrc = pSourceMediumLockList->Lock();
|
---|
3091 | alock.acquire();
|
---|
3092 | if (FAILED(hrc))
|
---|
3093 | {
|
---|
3094 | delete pSourceMediumLockList;
|
---|
3095 | delete pTargetMediumLockList;
|
---|
3096 | throw setError(hrc,
|
---|
3097 | tr("Failed to lock source media '%s'"),
|
---|
3098 | i_getLocationFull().c_str());
|
---|
3099 | }
|
---|
3100 | alock.release();
|
---|
3101 | hrc = pTargetMediumLockList->Lock();
|
---|
3102 | alock.acquire();
|
---|
3103 | if (FAILED(hrc))
|
---|
3104 | {
|
---|
3105 | delete pSourceMediumLockList;
|
---|
3106 | delete pTargetMediumLockList;
|
---|
3107 | throw setError(hrc,
|
---|
3108 | tr("Failed to lock target media '%s'"),
|
---|
3109 | pTarget->i_getLocationFull().c_str());
|
---|
3110 | }
|
---|
3111 |
|
---|
3112 | pProgress.createObject();
|
---|
3113 | hrc = pProgress->init(m->pVirtualBox,
|
---|
3114 | static_cast <IMedium *>(this),
|
---|
3115 | BstrFmt(tr("Creating clone medium '%s'"), pTarget->m->strLocationFull.c_str()).raw(),
|
---|
3116 | TRUE /* aCancelable */);
|
---|
3117 | if (FAILED(hrc))
|
---|
3118 | {
|
---|
3119 | delete pSourceMediumLockList;
|
---|
3120 | delete pTargetMediumLockList;
|
---|
3121 | throw hrc;
|
---|
3122 | }
|
---|
3123 |
|
---|
3124 | ULONG mediumVariantFlags = 0;
|
---|
3125 |
|
---|
3126 | if (aVariant.size())
|
---|
3127 | {
|
---|
3128 | for (size_t i = 0; i < aVariant.size(); i++)
|
---|
3129 | mediumVariantFlags |= (ULONG)aVariant[i];
|
---|
3130 | }
|
---|
3131 |
|
---|
3132 | if (mediumVariantFlags & MediumVariant_Formatted)
|
---|
3133 | {
|
---|
3134 | delete pSourceMediumLockList;
|
---|
3135 | delete pTargetMediumLockList;
|
---|
3136 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
3137 | tr("Medium variant 'formatted' applies to floppy images only"));
|
---|
3138 | }
|
---|
3139 |
|
---|
3140 | /* setup task object to carry out the operation asynchronously */
|
---|
3141 | pTask = new Medium::CloneTask(this, pProgress, pTarget,
|
---|
3142 | (MediumVariant_T)mediumVariantFlags,
|
---|
3143 | pParent, UINT32_MAX, UINT32_MAX,
|
---|
3144 | pSourceMediumLockList, pTargetMediumLockList);
|
---|
3145 | hrc = pTask->hrc();
|
---|
3146 | AssertComRC(hrc);
|
---|
3147 | if (FAILED(hrc))
|
---|
3148 | throw hrc;
|
---|
3149 |
|
---|
3150 | if (pTarget->m->state == MediumState_NotCreated)
|
---|
3151 | pTarget->m->state = MediumState_Creating;
|
---|
3152 | }
|
---|
3153 | catch (HRESULT hrcXcpt)
|
---|
3154 | {
|
---|
3155 | hrc = hrcXcpt;
|
---|
3156 | }
|
---|
3157 |
|
---|
3158 | if (SUCCEEDED(hrc))
|
---|
3159 | {
|
---|
3160 | hrc = pTask->createThread();
|
---|
3161 | pTask = NULL;
|
---|
3162 | if (SUCCEEDED(hrc))
|
---|
3163 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
3164 | }
|
---|
3165 | else if (pTask != NULL)
|
---|
3166 | delete pTask;
|
---|
3167 |
|
---|
3168 | return hrc;
|
---|
3169 | }
|
---|
3170 |
|
---|
3171 | /**
|
---|
3172 | * This is a helper function that combines the functionality of
|
---|
3173 | * Medium::cloneTo() and Medium::resize(). The target medium will take the
|
---|
3174 | * contents of the calling medium.
|
---|
3175 | *
|
---|
3176 | * @param aTarget Medium to resize and clone to
|
---|
3177 | * @param aLogicalSize Desired size for targer medium
|
---|
3178 | * @param aVariant
|
---|
3179 | * @param aParent
|
---|
3180 | * @param aProgress
|
---|
3181 | * @return HRESULT
|
---|
3182 | */
|
---|
3183 | HRESULT Medium::resizeAndCloneTo(const ComPtr<IMedium> &aTarget,
|
---|
3184 | LONG64 aLogicalSize,
|
---|
3185 | const std::vector<MediumVariant_T> &aVariant,
|
---|
3186 | const ComPtr<IMedium> &aParent,
|
---|
3187 | ComPtr<IProgress> &aProgress)
|
---|
3188 | {
|
---|
3189 | /* Check for valid args */
|
---|
3190 | ComAssertRet(aTarget != this, E_INVALIDARG);
|
---|
3191 | CheckComArgExpr(aLogicalSize, aLogicalSize >= 0);
|
---|
3192 |
|
---|
3193 | /* Convert args to usable/needed types */
|
---|
3194 | IMedium *aT = aTarget;
|
---|
3195 | ComObjPtr<Medium> pTarget = static_cast<Medium*>(aT);
|
---|
3196 | ComObjPtr<Medium> pParent;
|
---|
3197 | if (aParent)
|
---|
3198 | {
|
---|
3199 | IMedium *aP = aParent;
|
---|
3200 | pParent = static_cast<Medium*>(aP);
|
---|
3201 | }
|
---|
3202 |
|
---|
3203 | /* Set up variables. Fetch needed data in lockable blocks */
|
---|
3204 | HRESULT hrc = S_OK;
|
---|
3205 | Medium::Task *pTask = NULL;
|
---|
3206 |
|
---|
3207 | Utf8Str strSourceName;
|
---|
3208 | {
|
---|
3209 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
3210 | strSourceName = i_getName();
|
---|
3211 | }
|
---|
3212 |
|
---|
3213 | uint64_t uTargetExistingSize = 0;
|
---|
3214 | Utf8Str strTargetName;
|
---|
3215 | {
|
---|
3216 | AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
3217 | uTargetExistingSize = pTarget->i_getLogicalSize();
|
---|
3218 | strTargetName = pTarget->i_getName();
|
---|
3219 | }
|
---|
3220 |
|
---|
3221 | /* Set up internal multi-subprocess progress object */
|
---|
3222 | ComObjPtr<Progress> pProgress;
|
---|
3223 | pProgress.createObject();
|
---|
3224 | hrc = pProgress->init(m->pVirtualBox,
|
---|
3225 | static_cast<IMedium*>(this),
|
---|
3226 | BstrFmt(tr("Resizing medium and cloning into it")).raw(),
|
---|
3227 | TRUE, /* aCancelable */
|
---|
3228 | 2, /* Number of opearations */
|
---|
3229 | BstrFmt(tr("Resizing medium before clone")).raw()
|
---|
3230 | );
|
---|
3231 | if (FAILED(hrc))
|
---|
3232 | return hrc;
|
---|
3233 |
|
---|
3234 | /* If target does not exist, handle resize. */
|
---|
3235 | if (pTarget->m->state != MediumState_NotCreated && aLogicalSize > 0)
|
---|
3236 | {
|
---|
3237 | if ((LONG64)uTargetExistingSize != aLogicalSize) {
|
---|
3238 | if (!i_isMediumFormatFile())
|
---|
3239 | {
|
---|
3240 | hrc = setError(VBOX_E_NOT_SUPPORTED,
|
---|
3241 | tr("Sizes of '%s' and '%s' are different and medium format does not support resing"),
|
---|
3242 | strSourceName.c_str(), strTargetName.c_str());
|
---|
3243 | return hrc;
|
---|
3244 | }
|
---|
3245 |
|
---|
3246 | /**
|
---|
3247 | * Need to lock the target medium as i_resize does do so
|
---|
3248 | * automatically.
|
---|
3249 | */
|
---|
3250 |
|
---|
3251 | ComPtr<IToken> pToken;
|
---|
3252 | hrc = pTarget->LockWrite(pToken.asOutParam());
|
---|
3253 |
|
---|
3254 | if (FAILED(hrc)) return hrc;
|
---|
3255 |
|
---|
3256 | /**
|
---|
3257 | * Have to make own lock list, because "resize" method resizes only
|
---|
3258 | * last image in the lock chain.
|
---|
3259 | */
|
---|
3260 |
|
---|
3261 | MediumLockList* pMediumLockListForResize = new MediumLockList();
|
---|
3262 | pMediumLockListForResize->Append(pTarget, pTarget->m->state == MediumState_LockedWrite);
|
---|
3263 |
|
---|
3264 | hrc = pMediumLockListForResize->Lock(true /* fSkipOverLockedMedia */);
|
---|
3265 | if (FAILED(hrc))
|
---|
3266 | {
|
---|
3267 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
3268 | hrc = setError(hrc,
|
---|
3269 | tr("Failed to lock the medium '%s' to resize before merge"),
|
---|
3270 | strTargetName.c_str());
|
---|
3271 | delete pMediumLockListForResize;
|
---|
3272 | return hrc;
|
---|
3273 | }
|
---|
3274 |
|
---|
3275 |
|
---|
3276 | hrc = pTarget->i_resize((uint64_t)aLogicalSize, pMediumLockListForResize, &pProgress, true, false);
|
---|
3277 | if (FAILED(hrc))
|
---|
3278 | {
|
---|
3279 | /* No need to setError becasue i_resize and i_taskResizeHandler handle this automatically. */
|
---|
3280 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
3281 | delete pMediumLockListForResize;
|
---|
3282 | return hrc;
|
---|
3283 | }
|
---|
3284 |
|
---|
3285 | delete pMediumLockListForResize;
|
---|
3286 |
|
---|
3287 | pTarget->m->logicalSize = (uint64_t)aLogicalSize;
|
---|
3288 |
|
---|
3289 | pToken->Abandon();
|
---|
3290 | pToken.setNull();
|
---|
3291 | }
|
---|
3292 | }
|
---|
3293 |
|
---|
3294 | /* Report progress to supplied progress argument */
|
---|
3295 | if (SUCCEEDED(hrc))
|
---|
3296 | {
|
---|
3297 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
3298 | }
|
---|
3299 |
|
---|
3300 | try
|
---|
3301 | {
|
---|
3302 | // locking: we need the tree lock first because we access parent pointers
|
---|
3303 | // and we need to write-lock the media involved
|
---|
3304 | uint32_t cHandles = 3;
|
---|
3305 | LockHandle* pHandles[4] = { &m->pVirtualBox->i_getMediaTreeLockHandle(),
|
---|
3306 | this->lockHandle(),
|
---|
3307 | pTarget->lockHandle() };
|
---|
3308 | /* Only add parent to the lock if it is not null */
|
---|
3309 | if (!pParent.isNull())
|
---|
3310 | pHandles[cHandles++] = pParent->lockHandle();
|
---|
3311 | AutoWriteLock alock(cHandles,
|
---|
3312 | pHandles
|
---|
3313 | COMMA_LOCKVAL_SRC_POS);
|
---|
3314 |
|
---|
3315 | if ( pTarget->m->state != MediumState_NotCreated
|
---|
3316 | && pTarget->m->state != MediumState_Created)
|
---|
3317 | throw pTarget->i_setStateError();
|
---|
3318 |
|
---|
3319 | /* Build the source lock list. */
|
---|
3320 | MediumLockList *pSourceMediumLockList(new MediumLockList());
|
---|
3321 | alock.release();
|
---|
3322 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
3323 | NULL /* pToLockWrite */,
|
---|
3324 | false /* fMediumLockWriteAll */,
|
---|
3325 | NULL,
|
---|
3326 | *pSourceMediumLockList);
|
---|
3327 | alock.acquire();
|
---|
3328 | if (FAILED(hrc))
|
---|
3329 | {
|
---|
3330 | delete pSourceMediumLockList;
|
---|
3331 | throw hrc;
|
---|
3332 | }
|
---|
3333 |
|
---|
3334 | /* Build the target lock list (including the to-be parent chain). */
|
---|
3335 | MediumLockList *pTargetMediumLockList(new MediumLockList());
|
---|
3336 | alock.release();
|
---|
3337 | hrc = pTarget->i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
3338 | pTarget /* pToLockWrite */,
|
---|
3339 | false /* fMediumLockWriteAll */,
|
---|
3340 | pParent,
|
---|
3341 | *pTargetMediumLockList);
|
---|
3342 | alock.acquire();
|
---|
3343 | if (FAILED(hrc))
|
---|
3344 | {
|
---|
3345 | delete pSourceMediumLockList;
|
---|
3346 | delete pTargetMediumLockList;
|
---|
3347 | throw hrc;
|
---|
3348 | }
|
---|
3349 |
|
---|
3350 | alock.release();
|
---|
3351 | hrc = pSourceMediumLockList->Lock();
|
---|
3352 | alock.acquire();
|
---|
3353 | if (FAILED(hrc))
|
---|
3354 | {
|
---|
3355 | delete pSourceMediumLockList;
|
---|
3356 | delete pTargetMediumLockList;
|
---|
3357 | throw setError(hrc,
|
---|
3358 | tr("Failed to lock source media '%s'"),
|
---|
3359 | i_getLocationFull().c_str());
|
---|
3360 | }
|
---|
3361 | alock.release();
|
---|
3362 | hrc = pTargetMediumLockList->Lock();
|
---|
3363 | alock.acquire();
|
---|
3364 | if (FAILED(hrc))
|
---|
3365 | {
|
---|
3366 | delete pSourceMediumLockList;
|
---|
3367 | delete pTargetMediumLockList;
|
---|
3368 | throw setError(hrc,
|
---|
3369 | tr("Failed to lock target media '%s'"),
|
---|
3370 | pTarget->i_getLocationFull().c_str());
|
---|
3371 | }
|
---|
3372 |
|
---|
3373 | ULONG mediumVariantFlags = 0;
|
---|
3374 |
|
---|
3375 | if (aVariant.size())
|
---|
3376 | {
|
---|
3377 | for (size_t i = 0; i < aVariant.size(); i++)
|
---|
3378 | mediumVariantFlags |= (ULONG)aVariant[i];
|
---|
3379 | }
|
---|
3380 |
|
---|
3381 | if (mediumVariantFlags & MediumVariant_Formatted)
|
---|
3382 | {
|
---|
3383 | delete pSourceMediumLockList;
|
---|
3384 | delete pTargetMediumLockList;
|
---|
3385 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
3386 | tr("Medium variant 'formatted' applies to floppy images only"));
|
---|
3387 | }
|
---|
3388 |
|
---|
3389 | if (pTarget->m->state != MediumState_NotCreated || aLogicalSize == 0)
|
---|
3390 | {
|
---|
3391 | /* setup task object to carry out the operation asynchronously */
|
---|
3392 | pTask = new Medium::CloneTask(this, pProgress, pTarget,
|
---|
3393 | (MediumVariant_T)mediumVariantFlags,
|
---|
3394 | pParent, UINT32_MAX, UINT32_MAX,
|
---|
3395 | pSourceMediumLockList, pTargetMediumLockList,
|
---|
3396 | false, false, true, 0);
|
---|
3397 | }
|
---|
3398 | else
|
---|
3399 | {
|
---|
3400 | /* setup task object to carry out the operation asynchronously */
|
---|
3401 | pTask = new Medium::CloneTask(this, pProgress, pTarget,
|
---|
3402 | (MediumVariant_T)mediumVariantFlags,
|
---|
3403 | pParent, UINT32_MAX, UINT32_MAX,
|
---|
3404 | pSourceMediumLockList, pTargetMediumLockList,
|
---|
3405 | false, false, true, (uint64_t)aLogicalSize);
|
---|
3406 | }
|
---|
3407 |
|
---|
3408 | hrc = pTask->hrc();
|
---|
3409 | AssertComRC(hrc);
|
---|
3410 | if (FAILED(hrc))
|
---|
3411 | throw hrc;
|
---|
3412 |
|
---|
3413 | if (pTarget->m->state == MediumState_NotCreated)
|
---|
3414 | pTarget->m->state = MediumState_Creating;
|
---|
3415 | }
|
---|
3416 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
3417 |
|
---|
3418 | if (SUCCEEDED(hrc))
|
---|
3419 | {
|
---|
3420 | hrc = pTask->createThread();
|
---|
3421 | pTask = NULL;
|
---|
3422 | if (SUCCEEDED(hrc))
|
---|
3423 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
3424 | }
|
---|
3425 | else if (pTask != NULL)
|
---|
3426 | delete pTask;
|
---|
3427 |
|
---|
3428 | return hrc;
|
---|
3429 | }
|
---|
3430 |
|
---|
3431 | HRESULT Medium::moveTo(AutoCaller &autoCaller, const com::Utf8Str &aLocation, ComPtr<IProgress> &aProgress)
|
---|
3432 | {
|
---|
3433 | ComObjPtr<Medium> pParent;
|
---|
3434 | ComObjPtr<Progress> pProgress;
|
---|
3435 | HRESULT hrc = S_OK;
|
---|
3436 | Medium::Task *pTask = NULL;
|
---|
3437 |
|
---|
3438 | try
|
---|
3439 | {
|
---|
3440 | /// @todo NEWMEDIA for file names, add the default extension if no extension
|
---|
3441 | /// is present (using the information from the VD backend which also implies
|
---|
3442 | /// that one more parameter should be passed to moveTo() requesting
|
---|
3443 | /// that functionality since it is only allowed when called from this method
|
---|
3444 |
|
---|
3445 | /// @todo NEWMEDIA rename the file and set m->location on success, then save
|
---|
3446 | /// the global registry (and local registries of portable VMs referring to
|
---|
3447 | /// this medium), this will also require to add the mRegistered flag to data
|
---|
3448 |
|
---|
3449 | autoCaller.release();
|
---|
3450 |
|
---|
3451 | // locking: we need the tree lock first because we access parent pointers
|
---|
3452 | // and we need to write-lock the media involved
|
---|
3453 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
3454 |
|
---|
3455 | autoCaller.add();
|
---|
3456 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3457 |
|
---|
3458 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
3459 |
|
---|
3460 | /* play with locations */
|
---|
3461 | {
|
---|
3462 | /* get source path and filename */
|
---|
3463 | Utf8Str sourcePath = i_getLocationFull();
|
---|
3464 | Utf8Str sourceFName = i_getName();
|
---|
3465 |
|
---|
3466 | if (aLocation.isEmpty())
|
---|
3467 | {
|
---|
3468 | hrc = setErrorVrc(VERR_PATH_ZERO_LENGTH,
|
---|
3469 | tr("Medium '%s' can't be moved. Destination path is empty."),
|
---|
3470 | i_getLocationFull().c_str());
|
---|
3471 | throw hrc;
|
---|
3472 | }
|
---|
3473 |
|
---|
3474 | /* extract destination path and filename */
|
---|
3475 | Utf8Str destPath(aLocation);
|
---|
3476 | Utf8Str destFName(destPath);
|
---|
3477 | destFName.stripPath();
|
---|
3478 |
|
---|
3479 | if (destFName.isNotEmpty() && !RTPathHasSuffix(destFName.c_str()))
|
---|
3480 | {
|
---|
3481 | /*
|
---|
3482 | * The target path has no filename: Either "/path/to/new/location" or
|
---|
3483 | * just "newname" (no trailing backslash or there is no filename extension).
|
---|
3484 | */
|
---|
3485 | if (destPath.equals(destFName))
|
---|
3486 | {
|
---|
3487 | /* new path contains only "newname", no path, no extension */
|
---|
3488 | destFName.append(RTPathSuffix(sourceFName.c_str()));
|
---|
3489 | destPath = destFName;
|
---|
3490 | }
|
---|
3491 | else
|
---|
3492 | {
|
---|
3493 | /* new path looks like "/path/to/new/location" */
|
---|
3494 | destFName.setNull();
|
---|
3495 | destPath.append(RTPATH_SLASH);
|
---|
3496 | }
|
---|
3497 | }
|
---|
3498 |
|
---|
3499 | if (destFName.isEmpty())
|
---|
3500 | {
|
---|
3501 | /* No target name */
|
---|
3502 | destPath.append(sourceFName);
|
---|
3503 | }
|
---|
3504 | else
|
---|
3505 | {
|
---|
3506 | if (destPath.equals(destFName))
|
---|
3507 | {
|
---|
3508 | /*
|
---|
3509 | * The target path contains of only a filename without a directory.
|
---|
3510 | * Move the medium within the source directory to the new name
|
---|
3511 | * (actually rename operation).
|
---|
3512 | * Scratches sourcePath!
|
---|
3513 | */
|
---|
3514 | destPath = sourcePath.stripFilename().append(RTPATH_SLASH).append(destFName);
|
---|
3515 | }
|
---|
3516 |
|
---|
3517 | const char *pszSuffix = RTPathSuffix(sourceFName.c_str());
|
---|
3518 |
|
---|
3519 | /* Suffix is empty and one is deduced from the medium format */
|
---|
3520 | if (pszSuffix == NULL)
|
---|
3521 | {
|
---|
3522 | Utf8Str strExt = i_getFormat();
|
---|
3523 | if (strExt.compare("RAW", Utf8Str::CaseInsensitive) == 0)
|
---|
3524 | {
|
---|
3525 | DeviceType_T devType = i_getDeviceType();
|
---|
3526 | switch (devType)
|
---|
3527 | {
|
---|
3528 | case DeviceType_DVD:
|
---|
3529 | strExt = "iso";
|
---|
3530 | break;
|
---|
3531 | case DeviceType_Floppy:
|
---|
3532 | strExt = "img";
|
---|
3533 | break;
|
---|
3534 | default:
|
---|
3535 | hrc = setErrorVrc(VERR_NOT_A_FILE, /** @todo r=bird: Mixing status codes again. */
|
---|
3536 | tr("Medium '%s' has RAW type. \"Move\" operation isn't supported for this type."),
|
---|
3537 | i_getLocationFull().c_str());
|
---|
3538 | throw hrc;
|
---|
3539 | }
|
---|
3540 | }
|
---|
3541 | else if (strExt.compare("Parallels", Utf8Str::CaseInsensitive) == 0)
|
---|
3542 | {
|
---|
3543 | strExt = "hdd";
|
---|
3544 | }
|
---|
3545 |
|
---|
3546 | /* Set the target extension like on the source. Any conversions are prohibited */
|
---|
3547 | strExt.toLower();
|
---|
3548 | destPath.stripSuffix().append('.').append(strExt);
|
---|
3549 | }
|
---|
3550 | else
|
---|
3551 | destPath.stripSuffix().append(pszSuffix);
|
---|
3552 | }
|
---|
3553 |
|
---|
3554 | /* Simple check for existence */
|
---|
3555 | if (RTFileExists(destPath.c_str()))
|
---|
3556 | throw setError(VBOX_E_FILE_ERROR,
|
---|
3557 | tr("The given path '%s' is an existing file. Delete or rename this file."),
|
---|
3558 | destPath.c_str());
|
---|
3559 |
|
---|
3560 | if (!i_isMediumFormatFile())
|
---|
3561 | throw setErrorVrc(VERR_NOT_A_FILE,
|
---|
3562 | tr("Medium '%s' isn't a file object. \"Move\" operation isn't supported."),
|
---|
3563 | i_getLocationFull().c_str());
|
---|
3564 | /* Path must be absolute */
|
---|
3565 | if (!RTPathStartsWithRoot(destPath.c_str()))
|
---|
3566 | throw setError(VBOX_E_FILE_ERROR,
|
---|
3567 | tr("The given path '%s' is not fully qualified"),
|
---|
3568 | destPath.c_str());
|
---|
3569 | /* Check path for a new file object */
|
---|
3570 | hrc = VirtualBox::i_ensureFilePathExists(destPath, true);
|
---|
3571 | if (FAILED(hrc))
|
---|
3572 | throw hrc;
|
---|
3573 |
|
---|
3574 | /* Set needed variables for "moving" procedure. It'll be used later in separate thread task */
|
---|
3575 | hrc = i_preparationForMoving(destPath);
|
---|
3576 | if (FAILED(hrc))
|
---|
3577 | throw setErrorVrc(VERR_NO_CHANGE,
|
---|
3578 | tr("Medium '%s' is already in the correct location"),
|
---|
3579 | i_getLocationFull().c_str());
|
---|
3580 | }
|
---|
3581 |
|
---|
3582 | /* Check VMs which have this medium attached to*/
|
---|
3583 | std::vector<com::Guid> aMachineIds;
|
---|
3584 | hrc = getMachineIds(aMachineIds);
|
---|
3585 | std::vector<com::Guid>::const_iterator currMachineID = aMachineIds.begin();
|
---|
3586 | std::vector<com::Guid>::const_iterator lastMachineID = aMachineIds.end();
|
---|
3587 |
|
---|
3588 | while (currMachineID != lastMachineID)
|
---|
3589 | {
|
---|
3590 | Guid id(*currMachineID);
|
---|
3591 | ComObjPtr<Machine> aMachine;
|
---|
3592 |
|
---|
3593 | alock.release();
|
---|
3594 | autoCaller.release();
|
---|
3595 | treeLock.release();
|
---|
3596 | hrc = m->pVirtualBox->i_findMachine(id, false, true, &aMachine);
|
---|
3597 | treeLock.acquire();
|
---|
3598 | autoCaller.add();
|
---|
3599 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3600 | alock.acquire();
|
---|
3601 |
|
---|
3602 | if (SUCCEEDED(hrc))
|
---|
3603 | {
|
---|
3604 | ComObjPtr<SessionMachine> sm;
|
---|
3605 | ComPtr<IInternalSessionControl> ctl;
|
---|
3606 |
|
---|
3607 | alock.release();
|
---|
3608 | autoCaller.release();
|
---|
3609 | treeLock.release();
|
---|
3610 | bool ses = aMachine->i_isSessionOpenVM(sm, &ctl);
|
---|
3611 | treeLock.acquire();
|
---|
3612 | autoCaller.add();
|
---|
3613 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3614 | alock.acquire();
|
---|
3615 |
|
---|
3616 | if (ses)
|
---|
3617 | throw setError(VBOX_E_INVALID_VM_STATE,
|
---|
3618 | tr("At least the VM '%s' to whom this medium '%s' attached has currently an opened session. Stop all VMs before relocating this medium"),
|
---|
3619 | id.toString().c_str(), i_getLocationFull().c_str());
|
---|
3620 | }
|
---|
3621 | ++currMachineID;
|
---|
3622 | }
|
---|
3623 |
|
---|
3624 | /* Build the source lock list. */
|
---|
3625 | MediumLockList *pMediumLockList(new MediumLockList());
|
---|
3626 | alock.release();
|
---|
3627 | autoCaller.release();
|
---|
3628 | treeLock.release();
|
---|
3629 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
3630 | this /* pToLockWrite */,
|
---|
3631 | true /* fMediumLockWriteAll */,
|
---|
3632 | NULL,
|
---|
3633 | *pMediumLockList);
|
---|
3634 | treeLock.acquire();
|
---|
3635 | autoCaller.add();
|
---|
3636 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3637 | alock.acquire();
|
---|
3638 | if (FAILED(hrc))
|
---|
3639 | {
|
---|
3640 | delete pMediumLockList;
|
---|
3641 | throw setError(hrc, tr("Failed to create medium lock list for '%s'"), i_getLocationFull().c_str());
|
---|
3642 | }
|
---|
3643 | alock.release();
|
---|
3644 | autoCaller.release();
|
---|
3645 | treeLock.release();
|
---|
3646 | hrc = pMediumLockList->Lock();
|
---|
3647 | treeLock.acquire();
|
---|
3648 | autoCaller.add();
|
---|
3649 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3650 | alock.acquire();
|
---|
3651 | if (FAILED(hrc))
|
---|
3652 | {
|
---|
3653 | delete pMediumLockList;
|
---|
3654 | throw setError(hrc, tr("Failed to lock media '%s'"), i_getLocationFull().c_str());
|
---|
3655 | }
|
---|
3656 |
|
---|
3657 | pProgress.createObject();
|
---|
3658 | hrc = pProgress->init(m->pVirtualBox,
|
---|
3659 | static_cast <IMedium *>(this),
|
---|
3660 | BstrFmt(tr("Moving medium '%s'"), m->strLocationFull.c_str()).raw(),
|
---|
3661 | TRUE /* aCancelable */);
|
---|
3662 |
|
---|
3663 | /* Do the disk moving. */
|
---|
3664 | if (SUCCEEDED(hrc))
|
---|
3665 | {
|
---|
3666 | ULONG mediumVariantFlags = i_getVariant();
|
---|
3667 |
|
---|
3668 | /* setup task object to carry out the operation asynchronously */
|
---|
3669 | pTask = new Medium::MoveTask(this, pProgress,
|
---|
3670 | (MediumVariant_T)mediumVariantFlags,
|
---|
3671 | pMediumLockList);
|
---|
3672 | hrc = pTask->hrc();
|
---|
3673 | AssertComRC(hrc);
|
---|
3674 | if (FAILED(hrc))
|
---|
3675 | throw hrc;
|
---|
3676 | }
|
---|
3677 |
|
---|
3678 | }
|
---|
3679 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
3680 |
|
---|
3681 | if (SUCCEEDED(hrc))
|
---|
3682 | {
|
---|
3683 | hrc = pTask->createThread();
|
---|
3684 | pTask = NULL;
|
---|
3685 | if (SUCCEEDED(hrc))
|
---|
3686 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
3687 | }
|
---|
3688 | else
|
---|
3689 | {
|
---|
3690 | if (pTask)
|
---|
3691 | delete pTask;
|
---|
3692 | }
|
---|
3693 |
|
---|
3694 | return hrc;
|
---|
3695 | }
|
---|
3696 |
|
---|
3697 | HRESULT Medium::setLocation(const com::Utf8Str &aLocation)
|
---|
3698 | {
|
---|
3699 | HRESULT hrc = S_OK;
|
---|
3700 |
|
---|
3701 | try
|
---|
3702 | {
|
---|
3703 | // locking: we need the tree lock first because we access parent pointers
|
---|
3704 | // and we need to write-lock the media involved
|
---|
3705 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
3706 |
|
---|
3707 | AutoCaller autoCaller(this);
|
---|
3708 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3709 |
|
---|
3710 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
3711 |
|
---|
3712 | Utf8Str destPath(aLocation);
|
---|
3713 |
|
---|
3714 | // some check for file based medium
|
---|
3715 | if (i_isMediumFormatFile())
|
---|
3716 | {
|
---|
3717 | /* Path must be absolute */
|
---|
3718 | if (!RTPathStartsWithRoot(destPath.c_str()))
|
---|
3719 | throw setError(VBOX_E_FILE_ERROR, tr("The given path '%s' is not fully qualified"), destPath.c_str());
|
---|
3720 |
|
---|
3721 | /* Simple check for existence */
|
---|
3722 | if (!RTFileExists(destPath.c_str()))
|
---|
3723 | throw setError(VBOX_E_FILE_ERROR,
|
---|
3724 | tr("The given path '%s' is not an existing file. New location is invalid."),
|
---|
3725 | destPath.c_str());
|
---|
3726 | }
|
---|
3727 |
|
---|
3728 | /* Check VMs which have this medium attached to*/
|
---|
3729 | std::vector<com::Guid> aMachineIds;
|
---|
3730 | hrc = getMachineIds(aMachineIds);
|
---|
3731 |
|
---|
3732 | // switch locks only if there are machines with this medium attached
|
---|
3733 | if (!aMachineIds.empty())
|
---|
3734 | {
|
---|
3735 | std::vector<com::Guid>::const_iterator currMachineID = aMachineIds.begin();
|
---|
3736 | std::vector<com::Guid>::const_iterator lastMachineID = aMachineIds.end();
|
---|
3737 |
|
---|
3738 | alock.release();
|
---|
3739 | autoCaller.release();
|
---|
3740 | treeLock.release();
|
---|
3741 |
|
---|
3742 | while (currMachineID != lastMachineID)
|
---|
3743 | {
|
---|
3744 | Guid id(*currMachineID);
|
---|
3745 | ComObjPtr<Machine> aMachine;
|
---|
3746 | hrc = m->pVirtualBox->i_findMachine(id, false, true, &aMachine);
|
---|
3747 | if (SUCCEEDED(hrc))
|
---|
3748 | {
|
---|
3749 | ComObjPtr<SessionMachine> sm;
|
---|
3750 | ComPtr<IInternalSessionControl> ctl;
|
---|
3751 |
|
---|
3752 | bool ses = aMachine->i_isSessionOpenVM(sm, &ctl);
|
---|
3753 | if (ses)
|
---|
3754 | {
|
---|
3755 | treeLock.acquire();
|
---|
3756 | autoCaller.add();
|
---|
3757 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3758 | alock.acquire();
|
---|
3759 |
|
---|
3760 | throw setError(VBOX_E_INVALID_VM_STATE,
|
---|
3761 | 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"),
|
---|
3762 | id.toString().c_str(),
|
---|
3763 | i_getLocationFull().c_str());
|
---|
3764 | }
|
---|
3765 | }
|
---|
3766 | ++currMachineID;
|
---|
3767 | }
|
---|
3768 |
|
---|
3769 | treeLock.acquire();
|
---|
3770 | autoCaller.add();
|
---|
3771 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
3772 | alock.acquire();
|
---|
3773 | }
|
---|
3774 |
|
---|
3775 | m->strLocationFull = destPath;
|
---|
3776 |
|
---|
3777 | // save the settings
|
---|
3778 | alock.release();
|
---|
3779 | autoCaller.release();
|
---|
3780 | treeLock.release();
|
---|
3781 |
|
---|
3782 | i_markRegistriesModified();
|
---|
3783 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
3784 |
|
---|
3785 | MediumState_T mediumState;
|
---|
3786 | refreshState(autoCaller, &mediumState);
|
---|
3787 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
3788 | }
|
---|
3789 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
3790 |
|
---|
3791 | return hrc;
|
---|
3792 | }
|
---|
3793 |
|
---|
3794 | HRESULT Medium::compact(ComPtr<IProgress> &aProgress)
|
---|
3795 | {
|
---|
3796 | HRESULT hrc = S_OK;
|
---|
3797 | ComObjPtr<Progress> pProgress;
|
---|
3798 | Medium::Task *pTask = NULL;
|
---|
3799 |
|
---|
3800 | try
|
---|
3801 | {
|
---|
3802 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
3803 |
|
---|
3804 | /* Build the medium lock list. */
|
---|
3805 | MediumLockList *pMediumLockList(new MediumLockList());
|
---|
3806 | alock.release();
|
---|
3807 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */ ,
|
---|
3808 | this /* pToLockWrite */,
|
---|
3809 | false /* fMediumLockWriteAll */,
|
---|
3810 | NULL,
|
---|
3811 | *pMediumLockList);
|
---|
3812 | alock.acquire();
|
---|
3813 | if (FAILED(hrc))
|
---|
3814 | {
|
---|
3815 | delete pMediumLockList;
|
---|
3816 | throw hrc;
|
---|
3817 | }
|
---|
3818 |
|
---|
3819 | alock.release();
|
---|
3820 | hrc = pMediumLockList->Lock();
|
---|
3821 | alock.acquire();
|
---|
3822 | if (FAILED(hrc))
|
---|
3823 | {
|
---|
3824 | delete pMediumLockList;
|
---|
3825 | throw setError(hrc,
|
---|
3826 | tr("Failed to lock media when compacting '%s'"),
|
---|
3827 | i_getLocationFull().c_str());
|
---|
3828 | }
|
---|
3829 |
|
---|
3830 | pProgress.createObject();
|
---|
3831 | hrc = pProgress->init(m->pVirtualBox,
|
---|
3832 | static_cast <IMedium *>(this),
|
---|
3833 | BstrFmt(tr("Compacting medium '%s'"), m->strLocationFull.c_str()).raw(),
|
---|
3834 | TRUE /* aCancelable */);
|
---|
3835 | if (FAILED(hrc))
|
---|
3836 | {
|
---|
3837 | delete pMediumLockList;
|
---|
3838 | throw hrc;
|
---|
3839 | }
|
---|
3840 |
|
---|
3841 | /* setup task object to carry out the operation asynchronously */
|
---|
3842 | pTask = new Medium::CompactTask(this, pProgress, pMediumLockList);
|
---|
3843 | hrc = pTask->hrc();
|
---|
3844 | AssertComRC(hrc);
|
---|
3845 | if (FAILED(hrc))
|
---|
3846 | throw hrc;
|
---|
3847 | }
|
---|
3848 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
3849 |
|
---|
3850 | if (SUCCEEDED(hrc))
|
---|
3851 | {
|
---|
3852 | hrc = pTask->createThread();
|
---|
3853 | pTask = NULL;
|
---|
3854 | if (SUCCEEDED(hrc))
|
---|
3855 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
3856 | }
|
---|
3857 | else if (pTask != NULL)
|
---|
3858 | delete pTask;
|
---|
3859 |
|
---|
3860 | return hrc;
|
---|
3861 | }
|
---|
3862 |
|
---|
3863 | HRESULT Medium::resize(LONG64 aLogicalSize,
|
---|
3864 | ComPtr<IProgress> &aProgress)
|
---|
3865 | {
|
---|
3866 | CheckComArgExpr(aLogicalSize, aLogicalSize > 0);
|
---|
3867 | HRESULT hrc = S_OK;
|
---|
3868 | ComObjPtr<Progress> pProgress;
|
---|
3869 |
|
---|
3870 | /* Build the medium lock list. */
|
---|
3871 | MediumLockList *pMediumLockList(new MediumLockList());
|
---|
3872 |
|
---|
3873 | try
|
---|
3874 | {
|
---|
3875 | const char *pszError = NULL;
|
---|
3876 |
|
---|
3877 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */ ,
|
---|
3878 | this /* pToLockWrite */,
|
---|
3879 | false /* fMediumLockWriteAll */,
|
---|
3880 | NULL,
|
---|
3881 | *pMediumLockList);
|
---|
3882 | if (FAILED(hrc))
|
---|
3883 | pszError = tr("Failed to create medium lock list when resizing '%s'");
|
---|
3884 | else
|
---|
3885 | {
|
---|
3886 | hrc = pMediumLockList->Lock();
|
---|
3887 | if (FAILED(hrc))
|
---|
3888 | pszError = tr("Failed to lock media when resizing '%s'");
|
---|
3889 | }
|
---|
3890 |
|
---|
3891 |
|
---|
3892 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
3893 |
|
---|
3894 | if (FAILED(hrc))
|
---|
3895 | {
|
---|
3896 | throw setError(hrc, pszError, i_getLocationFull().c_str());
|
---|
3897 | }
|
---|
3898 |
|
---|
3899 | pProgress.createObject();
|
---|
3900 | hrc = pProgress->init(m->pVirtualBox,
|
---|
3901 | static_cast <IMedium *>(this),
|
---|
3902 | BstrFmt(tr("Resizing medium '%s'"), m->strLocationFull.c_str()).raw(),
|
---|
3903 | TRUE /* aCancelable */);
|
---|
3904 | if (FAILED(hrc))
|
---|
3905 | {
|
---|
3906 | throw hrc;
|
---|
3907 | }
|
---|
3908 | }
|
---|
3909 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
3910 |
|
---|
3911 | if (SUCCEEDED(hrc))
|
---|
3912 | hrc = i_resize((uint64_t)aLogicalSize, pMediumLockList, &pProgress, false /* aWait */, true /* aNotify */);
|
---|
3913 |
|
---|
3914 | if (SUCCEEDED(hrc))
|
---|
3915 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
3916 | else
|
---|
3917 | delete pMediumLockList;
|
---|
3918 |
|
---|
3919 | return hrc;
|
---|
3920 | }
|
---|
3921 |
|
---|
3922 | HRESULT Medium::reset(AutoCaller &autoCaller, ComPtr<IProgress> &aProgress)
|
---|
3923 | {
|
---|
3924 | HRESULT hrc = S_OK;
|
---|
3925 | ComObjPtr<Progress> pProgress;
|
---|
3926 | Medium::Task *pTask = NULL;
|
---|
3927 |
|
---|
3928 | try
|
---|
3929 | {
|
---|
3930 | autoCaller.release();
|
---|
3931 |
|
---|
3932 | /* It is possible that some previous/concurrent uninit has already
|
---|
3933 | * cleared the pVirtualBox reference, see #uninit(). */
|
---|
3934 | ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
|
---|
3935 |
|
---|
3936 | /* i_canClose() needs the tree lock */
|
---|
3937 | AutoMultiWriteLock2 multilock(!pVirtualBox.isNull() ? &pVirtualBox->i_getMediaTreeLockHandle() : NULL,
|
---|
3938 | this->lockHandle()
|
---|
3939 | COMMA_LOCKVAL_SRC_POS);
|
---|
3940 |
|
---|
3941 | autoCaller.add();
|
---|
3942 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
3943 |
|
---|
3944 | LogFlowThisFunc(("ENTER for medium %s\n", m->strLocationFull.c_str()));
|
---|
3945 |
|
---|
3946 | if (m->pParent.isNull())
|
---|
3947 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
3948 | tr("Medium type of '%s' is not differencing"),
|
---|
3949 | m->strLocationFull.c_str());
|
---|
3950 |
|
---|
3951 | hrc = i_canClose();
|
---|
3952 | if (FAILED(hrc))
|
---|
3953 | throw hrc;
|
---|
3954 |
|
---|
3955 | /* Build the medium lock list. */
|
---|
3956 | MediumLockList *pMediumLockList(new MediumLockList());
|
---|
3957 | multilock.release();
|
---|
3958 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
3959 | this /* pToLockWrite */,
|
---|
3960 | false /* fMediumLockWriteAll */,
|
---|
3961 | NULL,
|
---|
3962 | *pMediumLockList);
|
---|
3963 | multilock.acquire();
|
---|
3964 | if (FAILED(hrc))
|
---|
3965 | {
|
---|
3966 | delete pMediumLockList;
|
---|
3967 | throw hrc;
|
---|
3968 | }
|
---|
3969 |
|
---|
3970 | multilock.release();
|
---|
3971 | hrc = pMediumLockList->Lock();
|
---|
3972 | multilock.acquire();
|
---|
3973 | if (FAILED(hrc))
|
---|
3974 | {
|
---|
3975 | delete pMediumLockList;
|
---|
3976 | throw setError(hrc,
|
---|
3977 | tr("Failed to lock media when resetting '%s'"),
|
---|
3978 | i_getLocationFull().c_str());
|
---|
3979 | }
|
---|
3980 |
|
---|
3981 | pProgress.createObject();
|
---|
3982 | hrc = pProgress->init(m->pVirtualBox,
|
---|
3983 | static_cast<IMedium*>(this),
|
---|
3984 | BstrFmt(tr("Resetting differencing medium '%s'"), m->strLocationFull.c_str()).raw(),
|
---|
3985 | FALSE /* aCancelable */);
|
---|
3986 | if (FAILED(hrc))
|
---|
3987 | throw hrc;
|
---|
3988 |
|
---|
3989 | /* setup task object to carry out the operation asynchronously */
|
---|
3990 | pTask = new Medium::ResetTask(this, pProgress, pMediumLockList);
|
---|
3991 | hrc = pTask->hrc();
|
---|
3992 | AssertComRC(hrc);
|
---|
3993 | if (FAILED(hrc))
|
---|
3994 | throw hrc;
|
---|
3995 | }
|
---|
3996 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
3997 |
|
---|
3998 | if (SUCCEEDED(hrc))
|
---|
3999 | {
|
---|
4000 | hrc = pTask->createThread();
|
---|
4001 | pTask = NULL;
|
---|
4002 | if (SUCCEEDED(hrc))
|
---|
4003 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
4004 | }
|
---|
4005 | else if (pTask != NULL)
|
---|
4006 | delete pTask;
|
---|
4007 |
|
---|
4008 | LogFlowThisFunc(("LEAVE, hrc=%Rhrc\n", hrc));
|
---|
4009 |
|
---|
4010 | return hrc;
|
---|
4011 | }
|
---|
4012 |
|
---|
4013 | HRESULT Medium::changeEncryption(const com::Utf8Str &aCurrentPassword, const com::Utf8Str &aCipher,
|
---|
4014 | const com::Utf8Str &aNewPassword, const com::Utf8Str &aNewPasswordId,
|
---|
4015 | ComPtr<IProgress> &aProgress)
|
---|
4016 | {
|
---|
4017 | HRESULT hrc = S_OK;
|
---|
4018 | ComObjPtr<Progress> pProgress;
|
---|
4019 | Medium::Task *pTask = NULL;
|
---|
4020 |
|
---|
4021 | try
|
---|
4022 | {
|
---|
4023 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4024 |
|
---|
4025 | DeviceType_T devType = i_getDeviceType();
|
---|
4026 | /* Cannot encrypt DVD or floppy images so far. */
|
---|
4027 | if ( devType == DeviceType_DVD
|
---|
4028 | || devType == DeviceType_Floppy)
|
---|
4029 | return setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
4030 | tr("Cannot encrypt DVD or Floppy medium '%s'"),
|
---|
4031 | m->strLocationFull.c_str());
|
---|
4032 |
|
---|
4033 | /* Cannot encrypt media which are attached to more than one virtual machine. */
|
---|
4034 | if (m->backRefs.size() > 1)
|
---|
4035 | return setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
4036 | tr("Cannot encrypt medium '%s' because it is attached to %d virtual machines", "", m->backRefs.size()),
|
---|
4037 | m->strLocationFull.c_str(), m->backRefs.size());
|
---|
4038 |
|
---|
4039 | if (i_getChildren().size() != 0)
|
---|
4040 | return setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
4041 | tr("Cannot encrypt medium '%s' because it has %d children", "", i_getChildren().size()),
|
---|
4042 | m->strLocationFull.c_str(), i_getChildren().size());
|
---|
4043 |
|
---|
4044 | /* Build the medium lock list. */
|
---|
4045 | MediumLockList *pMediumLockList(new MediumLockList());
|
---|
4046 | alock.release();
|
---|
4047 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */ ,
|
---|
4048 | this /* pToLockWrite */,
|
---|
4049 | true /* fMediumLockAllWrite */,
|
---|
4050 | NULL,
|
---|
4051 | *pMediumLockList);
|
---|
4052 | alock.acquire();
|
---|
4053 | if (FAILED(hrc))
|
---|
4054 | {
|
---|
4055 | delete pMediumLockList;
|
---|
4056 | throw hrc;
|
---|
4057 | }
|
---|
4058 |
|
---|
4059 | alock.release();
|
---|
4060 | hrc = pMediumLockList->Lock();
|
---|
4061 | alock.acquire();
|
---|
4062 | if (FAILED(hrc))
|
---|
4063 | {
|
---|
4064 | delete pMediumLockList;
|
---|
4065 | throw setError(hrc,
|
---|
4066 | tr("Failed to lock media for encryption '%s'"),
|
---|
4067 | i_getLocationFull().c_str());
|
---|
4068 | }
|
---|
4069 |
|
---|
4070 | /*
|
---|
4071 | * Check all media in the chain to not contain any branches or references to
|
---|
4072 | * other virtual machines, we support encrypting only a list of differencing media at the moment.
|
---|
4073 | */
|
---|
4074 | MediumLockList::Base::const_iterator mediumListBegin = pMediumLockList->GetBegin();
|
---|
4075 | MediumLockList::Base::const_iterator mediumListEnd = pMediumLockList->GetEnd();
|
---|
4076 | for (MediumLockList::Base::const_iterator it = mediumListBegin;
|
---|
4077 | it != mediumListEnd;
|
---|
4078 | ++it)
|
---|
4079 | {
|
---|
4080 | const MediumLock &mediumLock = *it;
|
---|
4081 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
4082 | AutoReadLock mediumReadLock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
4083 |
|
---|
4084 | Assert(pMedium->m->state == MediumState_LockedWrite);
|
---|
4085 |
|
---|
4086 | if (pMedium->m->backRefs.size() > 1)
|
---|
4087 | {
|
---|
4088 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
4089 | tr("Cannot encrypt medium '%s' because it is attached to %d virtual machines", "",
|
---|
4090 | pMedium->m->backRefs.size()),
|
---|
4091 | pMedium->m->strLocationFull.c_str(), pMedium->m->backRefs.size());
|
---|
4092 | break;
|
---|
4093 | }
|
---|
4094 | else if (pMedium->i_getChildren().size() > 1)
|
---|
4095 | {
|
---|
4096 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
4097 | tr("Cannot encrypt medium '%s' because it has %d children", "", pMedium->i_getChildren().size()),
|
---|
4098 | pMedium->m->strLocationFull.c_str(), pMedium->i_getChildren().size());
|
---|
4099 | break;
|
---|
4100 | }
|
---|
4101 | }
|
---|
4102 |
|
---|
4103 | if (FAILED(hrc))
|
---|
4104 | {
|
---|
4105 | delete pMediumLockList;
|
---|
4106 | throw hrc;
|
---|
4107 | }
|
---|
4108 |
|
---|
4109 | const char *pszAction = tr("Encrypting medium");
|
---|
4110 | if ( aCurrentPassword.isNotEmpty()
|
---|
4111 | && aCipher.isEmpty())
|
---|
4112 | pszAction = tr("Decrypting medium");
|
---|
4113 |
|
---|
4114 | pProgress.createObject();
|
---|
4115 | hrc = pProgress->init(m->pVirtualBox,
|
---|
4116 | static_cast <IMedium *>(this),
|
---|
4117 | BstrFmt("%s '%s'", pszAction, m->strLocationFull.c_str()).raw(),
|
---|
4118 | TRUE /* aCancelable */);
|
---|
4119 | if (FAILED(hrc))
|
---|
4120 | {
|
---|
4121 | delete pMediumLockList;
|
---|
4122 | throw hrc;
|
---|
4123 | }
|
---|
4124 |
|
---|
4125 | /* setup task object to carry out the operation asynchronously */
|
---|
4126 | pTask = new Medium::EncryptTask(this, aNewPassword, aCurrentPassword,
|
---|
4127 | aCipher, aNewPasswordId, pProgress, pMediumLockList);
|
---|
4128 | hrc = pTask->hrc();
|
---|
4129 | AssertComRC(hrc);
|
---|
4130 | if (FAILED(hrc))
|
---|
4131 | throw hrc;
|
---|
4132 | }
|
---|
4133 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
4134 |
|
---|
4135 | if (SUCCEEDED(hrc))
|
---|
4136 | {
|
---|
4137 | hrc = pTask->createThread();
|
---|
4138 | pTask = NULL;
|
---|
4139 | if (SUCCEEDED(hrc))
|
---|
4140 | pProgress.queryInterfaceTo(aProgress.asOutParam());
|
---|
4141 | }
|
---|
4142 | else if (pTask != NULL)
|
---|
4143 | delete pTask;
|
---|
4144 |
|
---|
4145 | return hrc;
|
---|
4146 | }
|
---|
4147 |
|
---|
4148 | HRESULT Medium::getEncryptionSettings(AutoCaller &autoCaller, com::Utf8Str &aCipher, com::Utf8Str &aPasswordId)
|
---|
4149 | {
|
---|
4150 | #ifndef VBOX_WITH_EXTPACK
|
---|
4151 | RT_NOREF(aCipher, aPasswordId);
|
---|
4152 | #endif
|
---|
4153 | HRESULT hrc = S_OK;
|
---|
4154 |
|
---|
4155 | try
|
---|
4156 | {
|
---|
4157 | autoCaller.release();
|
---|
4158 | ComObjPtr<Medium> pBase = i_getBase();
|
---|
4159 | autoCaller.add();
|
---|
4160 | if (FAILED(autoCaller.hrc()))
|
---|
4161 | throw hrc;
|
---|
4162 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4163 |
|
---|
4164 | /* Check whether encryption is configured for this medium. */
|
---|
4165 | settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore");
|
---|
4166 | if (it == pBase->m->mapProperties.end())
|
---|
4167 | throw VBOX_E_NOT_SUPPORTED;
|
---|
4168 |
|
---|
4169 | # ifdef VBOX_WITH_EXTPACK
|
---|
4170 | ExtPackManager *pExtPackManager = m->pVirtualBox->i_getExtPackManager();
|
---|
4171 | if (pExtPackManager->i_isExtPackUsable(ORACLE_PUEL_EXTPACK_NAME))
|
---|
4172 | {
|
---|
4173 | /* Load the plugin */
|
---|
4174 | Utf8Str strPlugin;
|
---|
4175 | hrc = pExtPackManager->i_getLibraryPathForExtPack(g_szVDPlugin, ORACLE_PUEL_EXTPACK_NAME, &strPlugin);
|
---|
4176 | if (SUCCEEDED(hrc))
|
---|
4177 | {
|
---|
4178 | int vrc = VDPluginLoadFromFilename(strPlugin.c_str());
|
---|
4179 | if (RT_FAILURE(vrc))
|
---|
4180 | throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
|
---|
4181 | tr("Retrieving encryption settings of the image failed because the encryption plugin could not be loaded (%s)"),
|
---|
4182 | i_vdError(vrc).c_str());
|
---|
4183 | }
|
---|
4184 | else
|
---|
4185 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
4186 | tr("Encryption is not supported because the extension pack '%s' is missing the encryption plugin (old extension pack installed?)"),
|
---|
4187 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
4188 | }
|
---|
4189 | else
|
---|
4190 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
4191 | tr("Encryption is not supported because the extension pack '%s' is missing"),
|
---|
4192 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
4193 |
|
---|
4194 | PVDISK pDisk = NULL;
|
---|
4195 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &pDisk);
|
---|
4196 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
4197 |
|
---|
4198 | MediumCryptoFilterSettings CryptoSettings;
|
---|
4199 |
|
---|
4200 | i_taskEncryptSettingsSetup(&CryptoSettings, NULL, it->second.c_str(), NULL, false /* fCreateKeyStore */);
|
---|
4201 | vrc = VDFilterAdd(pDisk, "CRYPT", VD_FILTER_FLAGS_READ | VD_FILTER_FLAGS_INFO, CryptoSettings.vdFilterIfaces);
|
---|
4202 | if (RT_FAILURE(vrc))
|
---|
4203 | throw setErrorBoth(VBOX_E_INVALID_OBJECT_STATE, vrc,
|
---|
4204 | tr("Failed to load the encryption filter: %s"),
|
---|
4205 | i_vdError(vrc).c_str());
|
---|
4206 |
|
---|
4207 | it = pBase->m->mapProperties.find("CRYPT/KeyId");
|
---|
4208 | if (it == pBase->m->mapProperties.end())
|
---|
4209 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
4210 | tr("Image is configured for encryption but doesn't has a KeyId set"));
|
---|
4211 |
|
---|
4212 | aPasswordId = it->second.c_str();
|
---|
4213 | aCipher = CryptoSettings.pszCipherReturned;
|
---|
4214 | RTStrFree(CryptoSettings.pszCipherReturned);
|
---|
4215 |
|
---|
4216 | VDDestroy(pDisk);
|
---|
4217 | # else
|
---|
4218 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
4219 | tr("Encryption is not supported because extension pack support is not built in"));
|
---|
4220 | # endif
|
---|
4221 | }
|
---|
4222 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
4223 |
|
---|
4224 | return hrc;
|
---|
4225 | }
|
---|
4226 |
|
---|
4227 | HRESULT Medium::checkEncryptionPassword(const com::Utf8Str &aPassword)
|
---|
4228 | {
|
---|
4229 | HRESULT hrc = S_OK;
|
---|
4230 |
|
---|
4231 | try
|
---|
4232 | {
|
---|
4233 | ComObjPtr<Medium> pBase = i_getBase();
|
---|
4234 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4235 |
|
---|
4236 | settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore");
|
---|
4237 | if (it == pBase->m->mapProperties.end())
|
---|
4238 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
4239 | tr("The image is not configured for encryption"));
|
---|
4240 |
|
---|
4241 | if (aPassword.isEmpty())
|
---|
4242 | throw setError(E_INVALIDARG,
|
---|
4243 | tr("The given password must not be empty"));
|
---|
4244 |
|
---|
4245 | # ifdef VBOX_WITH_EXTPACK
|
---|
4246 | ExtPackManager *pExtPackManager = m->pVirtualBox->i_getExtPackManager();
|
---|
4247 | if (pExtPackManager->i_isExtPackUsable(ORACLE_PUEL_EXTPACK_NAME))
|
---|
4248 | {
|
---|
4249 | /* Load the plugin */
|
---|
4250 | Utf8Str strPlugin;
|
---|
4251 | hrc = pExtPackManager->i_getLibraryPathForExtPack(g_szVDPlugin, ORACLE_PUEL_EXTPACK_NAME, &strPlugin);
|
---|
4252 | if (SUCCEEDED(hrc))
|
---|
4253 | {
|
---|
4254 | int vrc = VDPluginLoadFromFilename(strPlugin.c_str());
|
---|
4255 | if (RT_FAILURE(vrc))
|
---|
4256 | throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
|
---|
4257 | tr("Retrieving encryption settings of the image failed because the encryption plugin could not be loaded (%s)"),
|
---|
4258 | i_vdError(vrc).c_str());
|
---|
4259 | }
|
---|
4260 | else
|
---|
4261 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
4262 | tr("Encryption is not supported because the extension pack '%s' is missing the encryption plugin (old extension pack installed?)"),
|
---|
4263 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
4264 | }
|
---|
4265 | else
|
---|
4266 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
4267 | tr("Encryption is not supported because the extension pack '%s' is missing"),
|
---|
4268 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
4269 |
|
---|
4270 | PVDISK pDisk = NULL;
|
---|
4271 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &pDisk);
|
---|
4272 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
4273 |
|
---|
4274 | MediumCryptoFilterSettings CryptoSettings;
|
---|
4275 |
|
---|
4276 | i_taskEncryptSettingsSetup(&CryptoSettings, NULL, it->second.c_str(), aPassword.c_str(),
|
---|
4277 | false /* fCreateKeyStore */);
|
---|
4278 | vrc = VDFilterAdd(pDisk, "CRYPT", VD_FILTER_FLAGS_READ, CryptoSettings.vdFilterIfaces);
|
---|
4279 | if (vrc == VERR_VD_PASSWORD_INCORRECT)
|
---|
4280 | throw setError(VBOX_E_PASSWORD_INCORRECT,
|
---|
4281 | tr("The given password is incorrect"));
|
---|
4282 | else if (RT_FAILURE(vrc))
|
---|
4283 | throw setErrorBoth(VBOX_E_INVALID_OBJECT_STATE, vrc,
|
---|
4284 | tr("Failed to load the encryption filter: %s"),
|
---|
4285 | i_vdError(vrc).c_str());
|
---|
4286 |
|
---|
4287 | VDDestroy(pDisk);
|
---|
4288 | # else
|
---|
4289 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
4290 | tr("Encryption is not supported because extension pack support is not built in"));
|
---|
4291 | # endif
|
---|
4292 | }
|
---|
4293 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
4294 |
|
---|
4295 | return hrc;
|
---|
4296 | }
|
---|
4297 |
|
---|
4298 | HRESULT Medium::openForIO(BOOL aWritable, com::Utf8Str const &aPassword, ComPtr<IMediumIO> &aMediumIO)
|
---|
4299 | {
|
---|
4300 | /*
|
---|
4301 | * Input validation.
|
---|
4302 | */
|
---|
4303 | if (aWritable && i_isReadOnly())
|
---|
4304 | return setError(E_ACCESSDENIED, tr("Write access denied: read-only"));
|
---|
4305 |
|
---|
4306 | com::Utf8Str const strKeyId = i_getKeyId();
|
---|
4307 | if (strKeyId.isEmpty() && aPassword.isNotEmpty())
|
---|
4308 | return setError(E_INVALIDARG, tr("Password given for unencrypted medium"));
|
---|
4309 | if (strKeyId.isNotEmpty() && aPassword.isEmpty())
|
---|
4310 | return setError(E_INVALIDARG, tr("Password needed for encrypted medium"));
|
---|
4311 |
|
---|
4312 | /*
|
---|
4313 | * Create IO object and return it.
|
---|
4314 | */
|
---|
4315 | ComObjPtr<MediumIO> ptrIO;
|
---|
4316 | HRESULT hrc = ptrIO.createObject();
|
---|
4317 | if (SUCCEEDED(hrc))
|
---|
4318 | {
|
---|
4319 | hrc = ptrIO->initForMedium(this, m->pVirtualBox, aWritable != FALSE, strKeyId, aPassword);
|
---|
4320 | if (SUCCEEDED(hrc))
|
---|
4321 | ptrIO.queryInterfaceTo(aMediumIO.asOutParam());
|
---|
4322 | }
|
---|
4323 | return hrc;
|
---|
4324 | }
|
---|
4325 |
|
---|
4326 |
|
---|
4327 | ////////////////////////////////////////////////////////////////////////////////
|
---|
4328 | //
|
---|
4329 | // Medium public internal methods
|
---|
4330 | //
|
---|
4331 | ////////////////////////////////////////////////////////////////////////////////
|
---|
4332 |
|
---|
4333 | /**
|
---|
4334 | * Internal method to return the medium's parent medium. Must have caller + locking!
|
---|
4335 | * @return
|
---|
4336 | */
|
---|
4337 | const ComObjPtr<Medium>& Medium::i_getParent() const
|
---|
4338 | {
|
---|
4339 | return m->pParent;
|
---|
4340 | }
|
---|
4341 |
|
---|
4342 | /**
|
---|
4343 | * Internal method to return the medium's list of child media. Must have caller + locking!
|
---|
4344 | * @return
|
---|
4345 | */
|
---|
4346 | const MediaList& Medium::i_getChildren() const
|
---|
4347 | {
|
---|
4348 | return m->llChildren;
|
---|
4349 | }
|
---|
4350 |
|
---|
4351 | /**
|
---|
4352 | * Internal method to return the medium's GUID. Must have caller + locking!
|
---|
4353 | * @return
|
---|
4354 | */
|
---|
4355 | const Guid& Medium::i_getId() const
|
---|
4356 | {
|
---|
4357 | return m->id;
|
---|
4358 | }
|
---|
4359 |
|
---|
4360 | /**
|
---|
4361 | * Internal method to return the medium's state. Must have caller + locking!
|
---|
4362 | * @return
|
---|
4363 | */
|
---|
4364 | MediumState_T Medium::i_getState() const
|
---|
4365 | {
|
---|
4366 | return m->state;
|
---|
4367 | }
|
---|
4368 |
|
---|
4369 | /**
|
---|
4370 | * Internal method to return the medium's variant. Must have caller + locking!
|
---|
4371 | * @return
|
---|
4372 | */
|
---|
4373 | MediumVariant_T Medium::i_getVariant() const
|
---|
4374 | {
|
---|
4375 | return m->variant;
|
---|
4376 | }
|
---|
4377 |
|
---|
4378 | /**
|
---|
4379 | * Internal method which returns true if this medium represents a host drive.
|
---|
4380 | * @return
|
---|
4381 | */
|
---|
4382 | bool Medium::i_isHostDrive() const
|
---|
4383 | {
|
---|
4384 | return m->hostDrive;
|
---|
4385 | }
|
---|
4386 |
|
---|
4387 | /**
|
---|
4388 | * Internal method to return the medium's full location. Must have caller + locking!
|
---|
4389 | * @return
|
---|
4390 | */
|
---|
4391 | const Utf8Str& Medium::i_getLocationFull() const
|
---|
4392 | {
|
---|
4393 | return m->strLocationFull;
|
---|
4394 | }
|
---|
4395 |
|
---|
4396 | /**
|
---|
4397 | * Internal method to return the medium's format string. Must have caller + locking!
|
---|
4398 | * @return
|
---|
4399 | */
|
---|
4400 | const Utf8Str& Medium::i_getFormat() const
|
---|
4401 | {
|
---|
4402 | return m->strFormat;
|
---|
4403 | }
|
---|
4404 |
|
---|
4405 | /**
|
---|
4406 | * Internal method to return the medium's format object. Must have caller + locking!
|
---|
4407 | * @return
|
---|
4408 | */
|
---|
4409 | const ComObjPtr<MediumFormat>& Medium::i_getMediumFormat() const
|
---|
4410 | {
|
---|
4411 | return m->formatObj;
|
---|
4412 | }
|
---|
4413 |
|
---|
4414 | /**
|
---|
4415 | * Internal method that returns true if the medium is represented by a file on the host disk
|
---|
4416 | * (and not iSCSI or something).
|
---|
4417 | * @return
|
---|
4418 | */
|
---|
4419 | bool Medium::i_isMediumFormatFile() const
|
---|
4420 | {
|
---|
4421 | if ( m->formatObj
|
---|
4422 | && (m->formatObj->i_getCapabilities() & MediumFormatCapabilities_File)
|
---|
4423 | )
|
---|
4424 | return true;
|
---|
4425 | return false;
|
---|
4426 | }
|
---|
4427 |
|
---|
4428 | /**
|
---|
4429 | * Internal method to return the medium's size. Must have caller + locking!
|
---|
4430 | * @return
|
---|
4431 | */
|
---|
4432 | uint64_t Medium::i_getSize() const
|
---|
4433 | {
|
---|
4434 | return m->size;
|
---|
4435 | }
|
---|
4436 |
|
---|
4437 | /**
|
---|
4438 | * Internal method to return the medium's size. Must have caller + locking!
|
---|
4439 | * @return
|
---|
4440 | */
|
---|
4441 | uint64_t Medium::i_getLogicalSize() const
|
---|
4442 | {
|
---|
4443 | return m->logicalSize;
|
---|
4444 | }
|
---|
4445 |
|
---|
4446 | /**
|
---|
4447 | * Returns the medium device type. Must have caller + locking!
|
---|
4448 | * @return
|
---|
4449 | */
|
---|
4450 | DeviceType_T Medium::i_getDeviceType() const
|
---|
4451 | {
|
---|
4452 | return m->devType;
|
---|
4453 | }
|
---|
4454 |
|
---|
4455 | /**
|
---|
4456 | * Returns the medium type. Must have caller + locking!
|
---|
4457 | * @return
|
---|
4458 | */
|
---|
4459 | MediumType_T Medium::i_getType() const
|
---|
4460 | {
|
---|
4461 | return m->type;
|
---|
4462 | }
|
---|
4463 |
|
---|
4464 | /**
|
---|
4465 | * Returns a short version of the location attribute.
|
---|
4466 | *
|
---|
4467 | * @note Must be called from under this object's read or write lock.
|
---|
4468 | */
|
---|
4469 | Utf8Str Medium::i_getName()
|
---|
4470 | {
|
---|
4471 | Utf8Str name = RTPathFilename(m->strLocationFull.c_str());
|
---|
4472 | return name;
|
---|
4473 | }
|
---|
4474 |
|
---|
4475 | /**
|
---|
4476 | * Same as i_addRegistry() except that we don't check the object state, making
|
---|
4477 | * it safe to call with initFromSettings() on the call stack.
|
---|
4478 | */
|
---|
4479 | bool Medium::i_addRegistryNoCallerCheck(const Guid &id)
|
---|
4480 | {
|
---|
4481 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4482 |
|
---|
4483 | bool fAdd = true;
|
---|
4484 |
|
---|
4485 | // hard disks cannot be in more than one registry
|
---|
4486 | if ( m->devType == DeviceType_HardDisk
|
---|
4487 | && m->llRegistryIDs.size() > 0)
|
---|
4488 | fAdd = false;
|
---|
4489 |
|
---|
4490 | // no need to add the UUID twice
|
---|
4491 | if (fAdd)
|
---|
4492 | {
|
---|
4493 | for (GuidList::const_iterator it = m->llRegistryIDs.begin();
|
---|
4494 | it != m->llRegistryIDs.end();
|
---|
4495 | ++it)
|
---|
4496 | {
|
---|
4497 | if ((*it) == id)
|
---|
4498 | {
|
---|
4499 | fAdd = false;
|
---|
4500 | break;
|
---|
4501 | }
|
---|
4502 | }
|
---|
4503 | }
|
---|
4504 |
|
---|
4505 | if (fAdd)
|
---|
4506 | m->llRegistryIDs.push_back(id);
|
---|
4507 |
|
---|
4508 | return fAdd;
|
---|
4509 | }
|
---|
4510 |
|
---|
4511 | /**
|
---|
4512 | * This adds the given UUID to the list of media registries in which this
|
---|
4513 | * medium should be registered. The UUID can either be a machine UUID,
|
---|
4514 | * to add a machine registry, or the global registry UUID as returned by
|
---|
4515 | * VirtualBox::getGlobalRegistryId().
|
---|
4516 | *
|
---|
4517 | * Note that for hard disks, this method does nothing if the medium is
|
---|
4518 | * already in another registry to avoid having hard disks in more than
|
---|
4519 | * one registry, which causes trouble with keeping diff images in sync.
|
---|
4520 | * See getFirstRegistryMachineId() for details.
|
---|
4521 | *
|
---|
4522 | * @param id
|
---|
4523 | * @return true if the registry was added; false if the given id was already on the list.
|
---|
4524 | */
|
---|
4525 | bool Medium::i_addRegistry(const Guid &id)
|
---|
4526 | {
|
---|
4527 | AutoCaller autoCaller(this);
|
---|
4528 | if (FAILED(autoCaller.hrc()))
|
---|
4529 | return false;
|
---|
4530 | return i_addRegistryNoCallerCheck(id);
|
---|
4531 | }
|
---|
4532 |
|
---|
4533 | /**
|
---|
4534 | * This adds the given UUID to the list of media registries in which this
|
---|
4535 | * medium should be registered. The UUID can either be a machine UUID,
|
---|
4536 | * to add a machine registry, or the global registry UUID as returned by
|
---|
4537 | * VirtualBox::getGlobalRegistryId(). Thisis applied to all children.
|
---|
4538 | *
|
---|
4539 | * Note that for hard disks, this method does nothing if the medium is
|
---|
4540 | * already in another registry to avoid having hard disks in more than
|
---|
4541 | * one registry, which causes trouble with keeping diff images in sync.
|
---|
4542 | * See getFirstRegistryMachineId() for details.
|
---|
4543 | *
|
---|
4544 | * @note the caller must hold the media tree lock for reading.
|
---|
4545 | *
|
---|
4546 | * @param id
|
---|
4547 | * @return true if the registry was added; false if the given id was already on the list.
|
---|
4548 | */
|
---|
4549 | bool Medium::i_addRegistryAll(const Guid &id)
|
---|
4550 | {
|
---|
4551 | MediaList llMediaTodo;
|
---|
4552 | llMediaTodo.push_back(this);
|
---|
4553 |
|
---|
4554 | bool fAdd = false;
|
---|
4555 |
|
---|
4556 | while (!llMediaTodo.empty())
|
---|
4557 | {
|
---|
4558 | ComObjPtr<Medium> pMedium = llMediaTodo.front();
|
---|
4559 | llMediaTodo.pop_front();
|
---|
4560 |
|
---|
4561 | AutoCaller mediumCaller(pMedium);
|
---|
4562 | if (FAILED(mediumCaller.hrc())) continue;
|
---|
4563 |
|
---|
4564 | fAdd |= pMedium->i_addRegistryNoCallerCheck(id);
|
---|
4565 |
|
---|
4566 | // protected by the medium tree lock held by our original caller
|
---|
4567 | MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
|
---|
4568 | MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
|
---|
4569 | for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
|
---|
4570 | llMediaTodo.push_back(*it);
|
---|
4571 | }
|
---|
4572 |
|
---|
4573 | return fAdd;
|
---|
4574 | }
|
---|
4575 |
|
---|
4576 | /**
|
---|
4577 | * Removes the given UUID from the list of media registry UUIDs of this medium.
|
---|
4578 | *
|
---|
4579 | * @param id
|
---|
4580 | * @return true if the UUID was found or false if not.
|
---|
4581 | */
|
---|
4582 | bool Medium::i_removeRegistry(const Guid &id)
|
---|
4583 | {
|
---|
4584 | AutoCaller autoCaller(this);
|
---|
4585 | if (FAILED(autoCaller.hrc()))
|
---|
4586 | return false;
|
---|
4587 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4588 |
|
---|
4589 | bool fRemove = false;
|
---|
4590 |
|
---|
4591 | /// @todo r=klaus eliminate this code, replace it by using find.
|
---|
4592 | for (GuidList::iterator it = m->llRegistryIDs.begin();
|
---|
4593 | it != m->llRegistryIDs.end();
|
---|
4594 | ++it)
|
---|
4595 | {
|
---|
4596 | if ((*it) == id)
|
---|
4597 | {
|
---|
4598 | // getting away with this as the iterator isn't used after
|
---|
4599 | m->llRegistryIDs.erase(it);
|
---|
4600 | fRemove = true;
|
---|
4601 | break;
|
---|
4602 | }
|
---|
4603 | }
|
---|
4604 |
|
---|
4605 | return fRemove;
|
---|
4606 | }
|
---|
4607 |
|
---|
4608 | /**
|
---|
4609 | * Removes the given UUID from the list of media registry UUIDs, for this
|
---|
4610 | * medium and all its children.
|
---|
4611 | *
|
---|
4612 | * @note the caller must hold the media tree lock for reading.
|
---|
4613 | *
|
---|
4614 | * @param id
|
---|
4615 | * @return true if the UUID was found or false if not.
|
---|
4616 | */
|
---|
4617 | bool Medium::i_removeRegistryAll(const Guid &id)
|
---|
4618 | {
|
---|
4619 | MediaList llMediaTodo;
|
---|
4620 | llMediaTodo.push_back(this);
|
---|
4621 |
|
---|
4622 | bool fRemove = false;
|
---|
4623 |
|
---|
4624 | while (!llMediaTodo.empty())
|
---|
4625 | {
|
---|
4626 | ComObjPtr<Medium> pMedium = llMediaTodo.front();
|
---|
4627 | llMediaTodo.pop_front();
|
---|
4628 |
|
---|
4629 | AutoCaller mediumCaller(pMedium);
|
---|
4630 | if (FAILED(mediumCaller.hrc())) continue;
|
---|
4631 |
|
---|
4632 | fRemove |= pMedium->i_removeRegistry(id);
|
---|
4633 |
|
---|
4634 | // protected by the medium tree lock held by our original caller
|
---|
4635 | MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
|
---|
4636 | MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
|
---|
4637 | for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
|
---|
4638 | llMediaTodo.push_back(*it);
|
---|
4639 | }
|
---|
4640 |
|
---|
4641 | return fRemove;
|
---|
4642 | }
|
---|
4643 |
|
---|
4644 | /**
|
---|
4645 | * Returns true if id is in the list of media registries for this medium.
|
---|
4646 | *
|
---|
4647 | * Must have caller + read locking!
|
---|
4648 | *
|
---|
4649 | * @param id
|
---|
4650 | * @return
|
---|
4651 | */
|
---|
4652 | bool Medium::i_isInRegistry(const Guid &id)
|
---|
4653 | {
|
---|
4654 | /// @todo r=klaus eliminate this code, replace it by using find.
|
---|
4655 | for (GuidList::const_iterator it = m->llRegistryIDs.begin();
|
---|
4656 | it != m->llRegistryIDs.end();
|
---|
4657 | ++it)
|
---|
4658 | {
|
---|
4659 | if (*it == id)
|
---|
4660 | return true;
|
---|
4661 | }
|
---|
4662 |
|
---|
4663 | return false;
|
---|
4664 | }
|
---|
4665 |
|
---|
4666 | /**
|
---|
4667 | * Internal method to return the medium's first registry machine (i.e. the machine in whose
|
---|
4668 | * machine XML this medium is listed).
|
---|
4669 | *
|
---|
4670 | * Every attached medium must now (4.0) reside in at least one media registry, which is identified
|
---|
4671 | * by a UUID. This is either a machine UUID if the machine is from 4.0 or newer, in which case
|
---|
4672 | * machines have their own media registries, or it is the pseudo-UUID of the VirtualBox
|
---|
4673 | * object if the machine is old and still needs the global registry in VirtualBox.xml.
|
---|
4674 | *
|
---|
4675 | * By definition, hard disks may only be in one media registry, in which all its children
|
---|
4676 | * will be stored as well. Otherwise we run into problems with having keep multiple registries
|
---|
4677 | * in sync. (This is the "cloned VM" case in which VM1 may link to the disks of VM2; in this
|
---|
4678 | * case, only VM2's registry is used for the disk in question.)
|
---|
4679 | *
|
---|
4680 | * If there is no medium registry, particularly if the medium has not been attached yet, this
|
---|
4681 | * does not modify uuid and returns false.
|
---|
4682 | *
|
---|
4683 | * ISOs and RAWs, by contrast, can be in more than one repository to make things easier for
|
---|
4684 | * the user.
|
---|
4685 | *
|
---|
4686 | * Must have caller + locking!
|
---|
4687 | *
|
---|
4688 | * @param uuid Receives first registry machine UUID, if available.
|
---|
4689 | * @return true if uuid was set.
|
---|
4690 | */
|
---|
4691 | bool Medium::i_getFirstRegistryMachineId(Guid &uuid) const
|
---|
4692 | {
|
---|
4693 | if (m->llRegistryIDs.size())
|
---|
4694 | {
|
---|
4695 | uuid = m->llRegistryIDs.front();
|
---|
4696 | return true;
|
---|
4697 | }
|
---|
4698 | return false;
|
---|
4699 | }
|
---|
4700 |
|
---|
4701 | /**
|
---|
4702 | * Marks all the registries in which this medium is registered as modified.
|
---|
4703 | */
|
---|
4704 | void Medium::i_markRegistriesModified()
|
---|
4705 | {
|
---|
4706 | AutoCaller autoCaller(this);
|
---|
4707 | if (FAILED(autoCaller.hrc())) return;
|
---|
4708 |
|
---|
4709 | // Get local copy, as keeping the lock over VirtualBox::markRegistryModified
|
---|
4710 | // causes trouble with the lock order
|
---|
4711 | GuidList llRegistryIDs;
|
---|
4712 | {
|
---|
4713 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4714 | llRegistryIDs = m->llRegistryIDs;
|
---|
4715 | }
|
---|
4716 |
|
---|
4717 | autoCaller.release();
|
---|
4718 |
|
---|
4719 | /* Save the error information now, the implicit restore when this goes
|
---|
4720 | * out of scope will throw away spurious additional errors created below. */
|
---|
4721 | ErrorInfoKeeper eik;
|
---|
4722 | for (GuidList::const_iterator it = llRegistryIDs.begin();
|
---|
4723 | it != llRegistryIDs.end();
|
---|
4724 | ++it)
|
---|
4725 | {
|
---|
4726 | m->pVirtualBox->i_markRegistryModified(*it);
|
---|
4727 | }
|
---|
4728 | }
|
---|
4729 |
|
---|
4730 | /**
|
---|
4731 | * Adds the given machine and optionally the snapshot to the list of the objects
|
---|
4732 | * this medium is attached to.
|
---|
4733 | *
|
---|
4734 | * @param aMachineId Machine ID.
|
---|
4735 | * @param aSnapshotId Snapshot ID; when non-empty, adds a snapshot attachment.
|
---|
4736 | */
|
---|
4737 | HRESULT Medium::i_addBackReference(const Guid &aMachineId,
|
---|
4738 | const Guid &aSnapshotId /*= Guid::Empty*/)
|
---|
4739 | {
|
---|
4740 | AssertReturn(aMachineId.isValid(), E_FAIL);
|
---|
4741 |
|
---|
4742 | LogFlowThisFunc(("ENTER, aMachineId: {%RTuuid}, aSnapshotId: {%RTuuid}\n", aMachineId.raw(), aSnapshotId.raw()));
|
---|
4743 |
|
---|
4744 | AutoCaller autoCaller(this);
|
---|
4745 | AssertComRCReturnRC(autoCaller.hrc());
|
---|
4746 |
|
---|
4747 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4748 |
|
---|
4749 | switch (m->state)
|
---|
4750 | {
|
---|
4751 | case MediumState_Created:
|
---|
4752 | case MediumState_Inaccessible:
|
---|
4753 | case MediumState_LockedRead:
|
---|
4754 | case MediumState_LockedWrite:
|
---|
4755 | break;
|
---|
4756 |
|
---|
4757 | default:
|
---|
4758 | return i_setStateError();
|
---|
4759 | }
|
---|
4760 |
|
---|
4761 | if (m->numCreateDiffTasks > 0)
|
---|
4762 | return setError(VBOX_E_OBJECT_IN_USE,
|
---|
4763 | tr("Cannot attach medium '%s' {%RTuuid}: %u differencing child media are being created", "",
|
---|
4764 | m->numCreateDiffTasks),
|
---|
4765 | m->strLocationFull.c_str(),
|
---|
4766 | m->id.raw(),
|
---|
4767 | m->numCreateDiffTasks);
|
---|
4768 |
|
---|
4769 | BackRefList::iterator it = std::find_if(m->backRefs.begin(),
|
---|
4770 | m->backRefs.end(),
|
---|
4771 | BackRef::EqualsTo(aMachineId));
|
---|
4772 | if (it == m->backRefs.end())
|
---|
4773 | {
|
---|
4774 | BackRef ref(aMachineId, aSnapshotId);
|
---|
4775 | m->backRefs.push_back(ref);
|
---|
4776 |
|
---|
4777 | return S_OK;
|
---|
4778 | }
|
---|
4779 | bool fDvd = false;
|
---|
4780 | {
|
---|
4781 | AutoReadLock arlock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4782 | /*
|
---|
4783 | * Check the medium is DVD and readonly. It's for the case if DVD
|
---|
4784 | * will be able to be writable sometime in the future.
|
---|
4785 | */
|
---|
4786 | fDvd = m->type == MediumType_Readonly && m->devType == DeviceType_DVD;
|
---|
4787 | }
|
---|
4788 |
|
---|
4789 | // if the caller has not supplied a snapshot ID, then we're attaching
|
---|
4790 | // to a machine a medium which represents the machine's current state,
|
---|
4791 | // so set the flag
|
---|
4792 |
|
---|
4793 | if (aSnapshotId.isZero())
|
---|
4794 | {
|
---|
4795 | // Allow DVD having MediumType_Readonly to be attached twice.
|
---|
4796 | // (the medium already had been added to back reference)
|
---|
4797 | if (fDvd)
|
---|
4798 | {
|
---|
4799 | it->iRefCnt++;
|
---|
4800 | return S_OK;
|
---|
4801 | }
|
---|
4802 |
|
---|
4803 | /* sanity: no duplicate attachments */
|
---|
4804 | if (it->fInCurState)
|
---|
4805 | return setError(VBOX_E_OBJECT_IN_USE,
|
---|
4806 | tr("Cannot attach medium '%s' {%RTuuid}: medium is already associated with the current state of machine uuid {%RTuuid}!"),
|
---|
4807 | m->strLocationFull.c_str(),
|
---|
4808 | m->id.raw(),
|
---|
4809 | aMachineId.raw());
|
---|
4810 | it->fInCurState = true;
|
---|
4811 |
|
---|
4812 | return S_OK;
|
---|
4813 | }
|
---|
4814 |
|
---|
4815 | // otherwise: a snapshot medium is being attached
|
---|
4816 |
|
---|
4817 | /* sanity: no duplicate attachments */
|
---|
4818 | for (std::list<SnapshotRef>::iterator jt = it->llSnapshotIds.begin();
|
---|
4819 | jt != it->llSnapshotIds.end();
|
---|
4820 | ++jt)
|
---|
4821 | {
|
---|
4822 | const Guid &idOldSnapshot = jt->snapshotId;
|
---|
4823 |
|
---|
4824 | if (idOldSnapshot == aSnapshotId)
|
---|
4825 | {
|
---|
4826 | if (fDvd)
|
---|
4827 | {
|
---|
4828 | jt->iRefCnt++;
|
---|
4829 | return S_OK;
|
---|
4830 | }
|
---|
4831 | #ifdef DEBUG
|
---|
4832 | i_dumpBackRefs();
|
---|
4833 | #endif
|
---|
4834 | return setError(VBOX_E_OBJECT_IN_USE,
|
---|
4835 | tr("Cannot attach medium '%s' {%RTuuid} from snapshot '%RTuuid': medium is already in use by this snapshot!"),
|
---|
4836 | m->strLocationFull.c_str(),
|
---|
4837 | m->id.raw(),
|
---|
4838 | aSnapshotId.raw());
|
---|
4839 | }
|
---|
4840 | }
|
---|
4841 |
|
---|
4842 | it->llSnapshotIds.push_back(SnapshotRef(aSnapshotId));
|
---|
4843 | // Do not touch fInCurState, as the image may be attached to the current
|
---|
4844 | // state *and* a snapshot, otherwise we lose the current state association!
|
---|
4845 |
|
---|
4846 | LogFlowThisFuncLeave();
|
---|
4847 |
|
---|
4848 | return S_OK;
|
---|
4849 | }
|
---|
4850 |
|
---|
4851 | /**
|
---|
4852 | * Removes the given machine and optionally the snapshot from the list of the
|
---|
4853 | * objects this medium is attached to.
|
---|
4854 | *
|
---|
4855 | * @param aMachineId Machine ID.
|
---|
4856 | * @param aSnapshotId Snapshot ID; when non-empty, removes the snapshot
|
---|
4857 | * attachment.
|
---|
4858 | */
|
---|
4859 | HRESULT Medium::i_removeBackReference(const Guid &aMachineId,
|
---|
4860 | const Guid &aSnapshotId /*= Guid::Empty*/)
|
---|
4861 | {
|
---|
4862 | AssertReturn(aMachineId.isValid(), E_FAIL);
|
---|
4863 |
|
---|
4864 | AutoCaller autoCaller(this);
|
---|
4865 | AssertComRCReturnRC(autoCaller.hrc());
|
---|
4866 |
|
---|
4867 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4868 |
|
---|
4869 | BackRefList::iterator it =
|
---|
4870 | std::find_if(m->backRefs.begin(), m->backRefs.end(),
|
---|
4871 | BackRef::EqualsTo(aMachineId));
|
---|
4872 | AssertReturn(it != m->backRefs.end(), E_FAIL);
|
---|
4873 |
|
---|
4874 | if (aSnapshotId.isZero())
|
---|
4875 | {
|
---|
4876 | it->iRefCnt--;
|
---|
4877 | if (it->iRefCnt > 0)
|
---|
4878 | return S_OK;
|
---|
4879 |
|
---|
4880 | /* remove the current state attachment */
|
---|
4881 | it->fInCurState = false;
|
---|
4882 | }
|
---|
4883 | else
|
---|
4884 | {
|
---|
4885 | /* remove the snapshot attachment */
|
---|
4886 | std::list<SnapshotRef>::iterator jt =
|
---|
4887 | std::find_if(it->llSnapshotIds.begin(),
|
---|
4888 | it->llSnapshotIds.end(),
|
---|
4889 | SnapshotRef::EqualsTo(aSnapshotId));
|
---|
4890 |
|
---|
4891 | AssertReturn(jt != it->llSnapshotIds.end(), E_FAIL);
|
---|
4892 |
|
---|
4893 | jt->iRefCnt--;
|
---|
4894 | if (jt->iRefCnt > 0)
|
---|
4895 | return S_OK;
|
---|
4896 |
|
---|
4897 | it->llSnapshotIds.erase(jt);
|
---|
4898 | }
|
---|
4899 |
|
---|
4900 | /* if the backref becomes empty, remove it */
|
---|
4901 | if (it->fInCurState == false && it->llSnapshotIds.size() == 0)
|
---|
4902 | m->backRefs.erase(it);
|
---|
4903 |
|
---|
4904 | return S_OK;
|
---|
4905 | }
|
---|
4906 |
|
---|
4907 | /**
|
---|
4908 | * Internal method to return the medium's list of backrefs. Must have caller + locking!
|
---|
4909 | * @return
|
---|
4910 | */
|
---|
4911 | const Guid* Medium::i_getFirstMachineBackrefId() const
|
---|
4912 | {
|
---|
4913 | if (!m->backRefs.size())
|
---|
4914 | return NULL;
|
---|
4915 |
|
---|
4916 | return &m->backRefs.front().machineId;
|
---|
4917 | }
|
---|
4918 |
|
---|
4919 | /**
|
---|
4920 | * Internal method which returns a machine that either this medium or one of its children
|
---|
4921 | * is attached to. This is used for finding a replacement media registry when an existing
|
---|
4922 | * media registry is about to be deleted in VirtualBox::unregisterMachine().
|
---|
4923 | *
|
---|
4924 | * Must have caller + locking, *and* caller must hold the media tree lock!
|
---|
4925 | * @param aId Id to ignore when looking for backrefs.
|
---|
4926 | * @return
|
---|
4927 | */
|
---|
4928 | const Guid* Medium::i_getAnyMachineBackref(const Guid &aId) const
|
---|
4929 | {
|
---|
4930 | std::list<const Medium *> llMediaTodo;
|
---|
4931 | llMediaTodo.push_back(this);
|
---|
4932 |
|
---|
4933 | while (!llMediaTodo.empty())
|
---|
4934 | {
|
---|
4935 | const Medium *pMedium = llMediaTodo.front();
|
---|
4936 | llMediaTodo.pop_front();
|
---|
4937 |
|
---|
4938 | if (pMedium->m->backRefs.size())
|
---|
4939 | {
|
---|
4940 | if (pMedium->m->backRefs.front().machineId != aId)
|
---|
4941 | return &pMedium->m->backRefs.front().machineId;
|
---|
4942 | if (pMedium->m->backRefs.size() > 1)
|
---|
4943 | {
|
---|
4944 | BackRefList::const_iterator it = pMedium->m->backRefs.begin();
|
---|
4945 | ++it;
|
---|
4946 | return &it->machineId;
|
---|
4947 | }
|
---|
4948 | }
|
---|
4949 |
|
---|
4950 | MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
|
---|
4951 | MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
|
---|
4952 | for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
|
---|
4953 | llMediaTodo.push_back(*it);
|
---|
4954 | }
|
---|
4955 |
|
---|
4956 | return NULL;
|
---|
4957 | }
|
---|
4958 |
|
---|
4959 | const Guid* Medium::i_getFirstMachineBackrefSnapshotId() const
|
---|
4960 | {
|
---|
4961 | if (!m->backRefs.size())
|
---|
4962 | return NULL;
|
---|
4963 |
|
---|
4964 | const BackRef &ref = m->backRefs.front();
|
---|
4965 | if (ref.llSnapshotIds.empty())
|
---|
4966 | return NULL;
|
---|
4967 |
|
---|
4968 | return &ref.llSnapshotIds.front().snapshotId;
|
---|
4969 | }
|
---|
4970 |
|
---|
4971 | size_t Medium::i_getMachineBackRefCount() const
|
---|
4972 | {
|
---|
4973 | return m->backRefs.size();
|
---|
4974 | }
|
---|
4975 |
|
---|
4976 | #ifdef DEBUG
|
---|
4977 | /**
|
---|
4978 | * Debugging helper that gets called after VirtualBox initialization that writes all
|
---|
4979 | * machine backreferences to the debug log.
|
---|
4980 | */
|
---|
4981 | void Medium::i_dumpBackRefs()
|
---|
4982 | {
|
---|
4983 | AutoCaller autoCaller(this);
|
---|
4984 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
4985 |
|
---|
4986 | LogFlowThisFunc(("Dumping backrefs for medium '%s':\n", m->strLocationFull.c_str()));
|
---|
4987 |
|
---|
4988 | for (BackRefList::iterator it2 = m->backRefs.begin();
|
---|
4989 | it2 != m->backRefs.end();
|
---|
4990 | ++it2)
|
---|
4991 | {
|
---|
4992 | const BackRef &ref = *it2;
|
---|
4993 | LogFlowThisFunc((" Backref from machine {%RTuuid} (fInCurState: %d, iRefCnt: %d)\n", ref.machineId.raw(), ref.fInCurState, ref.iRefCnt));
|
---|
4994 |
|
---|
4995 | for (std::list<SnapshotRef>::const_iterator jt2 = it2->llSnapshotIds.begin();
|
---|
4996 | jt2 != it2->llSnapshotIds.end();
|
---|
4997 | ++jt2)
|
---|
4998 | {
|
---|
4999 | const Guid &id = jt2->snapshotId;
|
---|
5000 | LogFlowThisFunc((" Backref from snapshot {%RTuuid} (iRefCnt = %d)\n", id.raw(), jt2->iRefCnt));
|
---|
5001 | }
|
---|
5002 | }
|
---|
5003 | }
|
---|
5004 | #endif
|
---|
5005 |
|
---|
5006 | /**
|
---|
5007 | * Checks if the given change of \a aOldPath to \a aNewPath affects the location
|
---|
5008 | * of this media and updates it if necessary to reflect the new location.
|
---|
5009 | *
|
---|
5010 | * @param strOldPath Old path (full).
|
---|
5011 | * @param strNewPath New path (full).
|
---|
5012 | *
|
---|
5013 | * @note Locks this object for writing.
|
---|
5014 | */
|
---|
5015 | HRESULT Medium::i_updatePath(const Utf8Str &strOldPath, const Utf8Str &strNewPath)
|
---|
5016 | {
|
---|
5017 | AssertReturn(!strOldPath.isEmpty(), E_FAIL);
|
---|
5018 | AssertReturn(!strNewPath.isEmpty(), E_FAIL);
|
---|
5019 |
|
---|
5020 | AutoCaller autoCaller(this);
|
---|
5021 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
5022 |
|
---|
5023 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
5024 |
|
---|
5025 | LogFlowThisFunc(("locationFull.before='%s'\n", m->strLocationFull.c_str()));
|
---|
5026 |
|
---|
5027 | const char *pcszMediumPath = m->strLocationFull.c_str();
|
---|
5028 |
|
---|
5029 | if (RTPathStartsWith(pcszMediumPath, strOldPath.c_str()))
|
---|
5030 | {
|
---|
5031 | Utf8Str newPath(strNewPath);
|
---|
5032 | newPath.append(pcszMediumPath + strOldPath.length());
|
---|
5033 | unconst(m->strLocationFull) = newPath;
|
---|
5034 |
|
---|
5035 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
5036 |
|
---|
5037 | LogFlowThisFunc(("locationFull.after='%s'\n", m->strLocationFull.c_str()));
|
---|
5038 | // we changed something
|
---|
5039 | return S_OK;
|
---|
5040 | }
|
---|
5041 |
|
---|
5042 | // no change was necessary, signal error which the caller needs to interpret
|
---|
5043 | return VBOX_E_FILE_ERROR;
|
---|
5044 | }
|
---|
5045 |
|
---|
5046 | /**
|
---|
5047 | * Returns the base medium of the media chain this medium is part of.
|
---|
5048 | *
|
---|
5049 | * The base medium is found by walking up the parent-child relationship axis.
|
---|
5050 | * If the medium doesn't have a parent (i.e. it's a base medium), it
|
---|
5051 | * returns itself in response to this method.
|
---|
5052 | *
|
---|
5053 | * @param aLevel Where to store the number of ancestors of this medium
|
---|
5054 | * (zero for the base), may be @c NULL.
|
---|
5055 | *
|
---|
5056 | * @note Locks medium tree for reading.
|
---|
5057 | */
|
---|
5058 | ComObjPtr<Medium> Medium::i_getBase(uint32_t *aLevel /*= NULL*/)
|
---|
5059 | {
|
---|
5060 | ComObjPtr<Medium> pBase;
|
---|
5061 |
|
---|
5062 | /* it is possible that some previous/concurrent uninit has already cleared
|
---|
5063 | * the pVirtualBox reference, and in this case we don't need to continue */
|
---|
5064 | ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
|
---|
5065 | if (!pVirtualBox)
|
---|
5066 | return pBase;
|
---|
5067 |
|
---|
5068 | /* we access m->pParent */
|
---|
5069 | AutoReadLock treeLock(pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
5070 |
|
---|
5071 | AutoCaller autoCaller(this);
|
---|
5072 | AssertReturn(autoCaller.isOk(), pBase);
|
---|
5073 |
|
---|
5074 | pBase = this;
|
---|
5075 | uint32_t level = 0;
|
---|
5076 |
|
---|
5077 | if (m->pParent)
|
---|
5078 | {
|
---|
5079 | for (;;)
|
---|
5080 | {
|
---|
5081 | AutoCaller baseCaller(pBase);
|
---|
5082 | AssertReturn(baseCaller.isOk(), pBase);
|
---|
5083 |
|
---|
5084 | if (pBase->m->pParent.isNull())
|
---|
5085 | break;
|
---|
5086 |
|
---|
5087 | pBase = pBase->m->pParent;
|
---|
5088 | ++level;
|
---|
5089 | }
|
---|
5090 | }
|
---|
5091 |
|
---|
5092 | if (aLevel != NULL)
|
---|
5093 | *aLevel = level;
|
---|
5094 |
|
---|
5095 | return pBase;
|
---|
5096 | }
|
---|
5097 |
|
---|
5098 | /**
|
---|
5099 | * Returns the depth of this medium in the media chain.
|
---|
5100 | *
|
---|
5101 | * @note Locks medium tree for reading.
|
---|
5102 | */
|
---|
5103 | uint32_t Medium::i_getDepth()
|
---|
5104 | {
|
---|
5105 | /* it is possible that some previous/concurrent uninit has already cleared
|
---|
5106 | * the pVirtualBox reference, and in this case we don't need to continue */
|
---|
5107 | ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
|
---|
5108 | if (!pVirtualBox)
|
---|
5109 | return 1;
|
---|
5110 |
|
---|
5111 | /* we access m->pParent */
|
---|
5112 | AutoReadLock treeLock(pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
5113 |
|
---|
5114 | uint32_t cDepth = 0;
|
---|
5115 | ComObjPtr<Medium> pMedium(this);
|
---|
5116 | while (!pMedium.isNull())
|
---|
5117 | {
|
---|
5118 | AutoCaller autoCaller(this);
|
---|
5119 | AssertReturn(autoCaller.isOk(), cDepth + 1);
|
---|
5120 |
|
---|
5121 | pMedium = pMedium->m->pParent;
|
---|
5122 | cDepth++;
|
---|
5123 | }
|
---|
5124 |
|
---|
5125 | return cDepth;
|
---|
5126 | }
|
---|
5127 |
|
---|
5128 | /**
|
---|
5129 | * Returns @c true if this medium cannot be modified because it has
|
---|
5130 | * dependents (children) or is part of the snapshot. Related to the medium
|
---|
5131 | * type and posterity, not to the current media state.
|
---|
5132 | *
|
---|
5133 | * @note Locks this object and medium tree for reading.
|
---|
5134 | */
|
---|
5135 | bool Medium::i_isReadOnly()
|
---|
5136 | {
|
---|
5137 | /* it is possible that some previous/concurrent uninit has already cleared
|
---|
5138 | * the pVirtualBox reference, and in this case we don't need to continue */
|
---|
5139 | ComObjPtr<VirtualBox> pVirtualBox(m->pVirtualBox);
|
---|
5140 | if (!pVirtualBox)
|
---|
5141 | return false;
|
---|
5142 |
|
---|
5143 | /* we access children */
|
---|
5144 | AutoReadLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
5145 |
|
---|
5146 | AutoCaller autoCaller(this);
|
---|
5147 | AssertComRCReturn(autoCaller.hrc(), false);
|
---|
5148 |
|
---|
5149 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
5150 |
|
---|
5151 | switch (m->type)
|
---|
5152 | {
|
---|
5153 | case MediumType_Normal:
|
---|
5154 | {
|
---|
5155 | if (i_getChildren().size() != 0)
|
---|
5156 | return true;
|
---|
5157 |
|
---|
5158 | for (BackRefList::const_iterator it = m->backRefs.begin();
|
---|
5159 | it != m->backRefs.end(); ++it)
|
---|
5160 | if (it->llSnapshotIds.size() != 0)
|
---|
5161 | return true;
|
---|
5162 |
|
---|
5163 | if (m->variant & MediumVariant_VmdkStreamOptimized)
|
---|
5164 | return true;
|
---|
5165 |
|
---|
5166 | return false;
|
---|
5167 | }
|
---|
5168 | case MediumType_Immutable:
|
---|
5169 | case MediumType_MultiAttach:
|
---|
5170 | return true;
|
---|
5171 | case MediumType_Writethrough:
|
---|
5172 | case MediumType_Shareable:
|
---|
5173 | case MediumType_Readonly: /* explicit readonly media has no diffs */
|
---|
5174 | return false;
|
---|
5175 | default:
|
---|
5176 | break;
|
---|
5177 | }
|
---|
5178 |
|
---|
5179 | AssertFailedReturn(false);
|
---|
5180 | }
|
---|
5181 |
|
---|
5182 | /**
|
---|
5183 | * Internal method to update the medium's id. Must have caller + locking!
|
---|
5184 | * @return
|
---|
5185 | */
|
---|
5186 | void Medium::i_updateId(const Guid &id)
|
---|
5187 | {
|
---|
5188 | unconst(m->id) = id;
|
---|
5189 | }
|
---|
5190 |
|
---|
5191 | /**
|
---|
5192 | * Saves the settings of one medium.
|
---|
5193 | *
|
---|
5194 | * @note Caller MUST take care of the medium tree lock and caller.
|
---|
5195 | *
|
---|
5196 | * @param data Settings struct to be updated.
|
---|
5197 | * @param strHardDiskFolder Folder for which paths should be relative.
|
---|
5198 | */
|
---|
5199 | void Medium::i_saveSettingsOne(settings::Medium &data, const Utf8Str &strHardDiskFolder)
|
---|
5200 | {
|
---|
5201 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
5202 |
|
---|
5203 | data.uuid = m->id;
|
---|
5204 |
|
---|
5205 | // make path relative if needed
|
---|
5206 | if ( !strHardDiskFolder.isEmpty()
|
---|
5207 | && RTPathStartsWith(m->strLocationFull.c_str(), strHardDiskFolder.c_str())
|
---|
5208 | )
|
---|
5209 | data.strLocation = m->strLocationFull.substr(strHardDiskFolder.length() + 1);
|
---|
5210 | else
|
---|
5211 | data.strLocation = m->strLocationFull;
|
---|
5212 | data.strFormat = m->strFormat;
|
---|
5213 |
|
---|
5214 | /* optional, only for diffs, default is false */
|
---|
5215 | if (m->pParent)
|
---|
5216 | data.fAutoReset = m->autoReset;
|
---|
5217 | else
|
---|
5218 | data.fAutoReset = false;
|
---|
5219 |
|
---|
5220 | /* optional */
|
---|
5221 | data.strDescription = m->strDescription;
|
---|
5222 |
|
---|
5223 | /* optional properties */
|
---|
5224 | data.properties.clear();
|
---|
5225 |
|
---|
5226 | /* handle iSCSI initiator secrets transparently */
|
---|
5227 | bool fHaveInitiatorSecretEncrypted = false;
|
---|
5228 | Utf8Str strCiphertext;
|
---|
5229 | settings::StringsMap::const_iterator itPln = m->mapProperties.find("InitiatorSecret");
|
---|
5230 | if ( itPln != m->mapProperties.end()
|
---|
5231 | && !itPln->second.isEmpty())
|
---|
5232 | {
|
---|
5233 | /* Encrypt the plain secret. If that does not work (i.e. no or wrong settings key
|
---|
5234 | * specified), just use the encrypted secret (if there is any). */
|
---|
5235 | int vrc = m->pVirtualBox->i_encryptSetting(itPln->second, &strCiphertext);
|
---|
5236 | if (RT_SUCCESS(vrc))
|
---|
5237 | fHaveInitiatorSecretEncrypted = true;
|
---|
5238 | }
|
---|
5239 | for (settings::StringsMap::const_iterator it = m->mapProperties.begin();
|
---|
5240 | it != m->mapProperties.end();
|
---|
5241 | ++it)
|
---|
5242 | {
|
---|
5243 | /* only save properties that have non-default values */
|
---|
5244 | if (!it->second.isEmpty())
|
---|
5245 | {
|
---|
5246 | const Utf8Str &name = it->first;
|
---|
5247 | const Utf8Str &value = it->second;
|
---|
5248 | bool fCreateOnly = false;
|
---|
5249 | for (MediumFormat::PropertyArray::const_iterator itf = m->formatObj->i_getProperties().begin();
|
---|
5250 | itf != m->formatObj->i_getProperties().end();
|
---|
5251 | ++itf)
|
---|
5252 | {
|
---|
5253 | if ( itf->strName.equals(name)
|
---|
5254 | && (itf->flags & VD_CFGKEY_CREATEONLY))
|
---|
5255 | {
|
---|
5256 | fCreateOnly = true;
|
---|
5257 | break;
|
---|
5258 | }
|
---|
5259 | }
|
---|
5260 | if (!fCreateOnly)
|
---|
5261 | /* do NOT store the plain InitiatorSecret */
|
---|
5262 | if ( !fHaveInitiatorSecretEncrypted
|
---|
5263 | || !name.equals("InitiatorSecret"))
|
---|
5264 | data.properties[name] = value;
|
---|
5265 | }
|
---|
5266 | }
|
---|
5267 | if (fHaveInitiatorSecretEncrypted)
|
---|
5268 | data.properties["InitiatorSecretEncrypted"] = strCiphertext;
|
---|
5269 |
|
---|
5270 | /* only for base media */
|
---|
5271 | if (m->pParent.isNull())
|
---|
5272 | data.hdType = m->type;
|
---|
5273 | }
|
---|
5274 |
|
---|
5275 | /**
|
---|
5276 | * Saves medium data by putting it into the provided data structure.
|
---|
5277 | * The settings of all children is saved, too.
|
---|
5278 | *
|
---|
5279 | * @param data Settings struct to be updated.
|
---|
5280 | * @param strHardDiskFolder Folder for which paths should be relative.
|
---|
5281 | *
|
---|
5282 | * @note Locks this object, medium tree and children for reading.
|
---|
5283 | */
|
---|
5284 | HRESULT Medium::i_saveSettings(settings::Medium &data,
|
---|
5285 | const Utf8Str &strHardDiskFolder)
|
---|
5286 | {
|
---|
5287 | /* we access m->pParent */
|
---|
5288 | AutoReadLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
5289 |
|
---|
5290 | AutoCaller autoCaller(this);
|
---|
5291 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
5292 |
|
---|
5293 | MediaList llMediaTodo;
|
---|
5294 | llMediaTodo.push_back(this);
|
---|
5295 | std::list<settings::Medium *> llSettingsTodo;
|
---|
5296 | llSettingsTodo.push_back(&data);
|
---|
5297 |
|
---|
5298 | while (!llMediaTodo.empty())
|
---|
5299 | {
|
---|
5300 | ComObjPtr<Medium> pMedium = llMediaTodo.front();
|
---|
5301 | llMediaTodo.pop_front();
|
---|
5302 | settings::Medium *current = llSettingsTodo.front();
|
---|
5303 | llSettingsTodo.pop_front();
|
---|
5304 |
|
---|
5305 | AutoCaller mediumCaller(pMedium);
|
---|
5306 | if (FAILED(mediumCaller.hrc())) return mediumCaller.hrc();
|
---|
5307 |
|
---|
5308 | pMedium->i_saveSettingsOne(*current, strHardDiskFolder);
|
---|
5309 |
|
---|
5310 | /* save all children */
|
---|
5311 | MediaList::const_iterator itBegin = pMedium->i_getChildren().begin();
|
---|
5312 | MediaList::const_iterator itEnd = pMedium->i_getChildren().end();
|
---|
5313 | for (MediaList::const_iterator it = itBegin; it != itEnd; ++it)
|
---|
5314 | {
|
---|
5315 | llMediaTodo.push_back(*it);
|
---|
5316 | current->llChildren.push_back(settings::Medium::Empty);
|
---|
5317 | llSettingsTodo.push_back(¤t->llChildren.back());
|
---|
5318 | }
|
---|
5319 | }
|
---|
5320 |
|
---|
5321 | return S_OK;
|
---|
5322 | }
|
---|
5323 |
|
---|
5324 | /**
|
---|
5325 | * Constructs a medium lock list for this medium. The lock is not taken.
|
---|
5326 | *
|
---|
5327 | * @note Caller MUST NOT hold the media tree or medium lock.
|
---|
5328 | *
|
---|
5329 | * @param fFailIfInaccessible If true, this fails with an error if a medium is inaccessible. If false,
|
---|
5330 | * inaccessible media are silently skipped and not locked (i.e. their state remains "Inaccessible");
|
---|
5331 | * this is necessary for a VM's removable media VM startup for which we do not want to fail.
|
---|
5332 | * @param pToLockWrite If not NULL, associate a write lock with this medium object.
|
---|
5333 | * @param fMediumLockWriteAll Whether to associate a write lock to all other media too.
|
---|
5334 | * @param pToBeParent Medium which will become the parent of this medium.
|
---|
5335 | * @param mediumLockList Where to store the resulting list.
|
---|
5336 | */
|
---|
5337 | HRESULT Medium::i_createMediumLockList(bool fFailIfInaccessible,
|
---|
5338 | Medium *pToLockWrite,
|
---|
5339 | bool fMediumLockWriteAll,
|
---|
5340 | Medium *pToBeParent,
|
---|
5341 | MediumLockList &mediumLockList)
|
---|
5342 | {
|
---|
5343 | /** @todo r=klaus this needs to be reworked, as the code below uses
|
---|
5344 | * i_getParent without holding the tree lock, and changing this is
|
---|
5345 | * a significant amount of effort. */
|
---|
5346 | Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
|
---|
5347 | Assert(!isWriteLockOnCurrentThread());
|
---|
5348 |
|
---|
5349 | AutoCaller autoCaller(this);
|
---|
5350 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
5351 |
|
---|
5352 | HRESULT hrc = S_OK;
|
---|
5353 |
|
---|
5354 | /* paranoid sanity checking if the medium has a to-be parent medium */
|
---|
5355 | if (pToBeParent)
|
---|
5356 | {
|
---|
5357 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
5358 | ComAssertRet(i_getParent().isNull(), E_FAIL);
|
---|
5359 | ComAssertRet(i_getChildren().size() == 0, E_FAIL);
|
---|
5360 | }
|
---|
5361 |
|
---|
5362 | ErrorInfoKeeper eik;
|
---|
5363 | MultiResult mrc(S_OK);
|
---|
5364 |
|
---|
5365 | ComObjPtr<Medium> pMedium = this;
|
---|
5366 | while (!pMedium.isNull())
|
---|
5367 | {
|
---|
5368 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
5369 |
|
---|
5370 | /* Accessibility check must be first, otherwise locking interferes
|
---|
5371 | * with getting the medium state. Lock lists are not created for
|
---|
5372 | * fun, and thus getting the medium status is no luxury. */
|
---|
5373 | MediumState_T mediumState = pMedium->i_getState();
|
---|
5374 | if (mediumState == MediumState_Inaccessible)
|
---|
5375 | {
|
---|
5376 | alock.release();
|
---|
5377 | hrc = pMedium->i_queryInfo(false /* fSetImageId */, false /* fSetParentId */, autoCaller);
|
---|
5378 | alock.acquire();
|
---|
5379 | if (FAILED(hrc)) return hrc;
|
---|
5380 |
|
---|
5381 | mediumState = pMedium->i_getState();
|
---|
5382 | if (mediumState == MediumState_Inaccessible)
|
---|
5383 | {
|
---|
5384 | // ignore inaccessible ISO media and silently return S_OK,
|
---|
5385 | // otherwise VM startup (esp. restore) may fail without good reason
|
---|
5386 | if (!fFailIfInaccessible)
|
---|
5387 | return S_OK;
|
---|
5388 |
|
---|
5389 | // otherwise report an error
|
---|
5390 | Bstr error;
|
---|
5391 | hrc = pMedium->COMGETTER(LastAccessError)(error.asOutParam());
|
---|
5392 | if (FAILED(hrc)) return hrc;
|
---|
5393 |
|
---|
5394 | /* collect multiple errors */
|
---|
5395 | eik.restore();
|
---|
5396 | Assert(!error.isEmpty());
|
---|
5397 | mrc = setError(E_FAIL,
|
---|
5398 | "%ls",
|
---|
5399 | error.raw());
|
---|
5400 | // error message will be something like
|
---|
5401 | // "Could not open the medium ... VD: error VERR_FILE_NOT_FOUND opening image file ... (VERR_FILE_NOT_FOUND).
|
---|
5402 | eik.fetch();
|
---|
5403 | }
|
---|
5404 | }
|
---|
5405 |
|
---|
5406 | if (pMedium == pToLockWrite)
|
---|
5407 | mediumLockList.Prepend(pMedium, true);
|
---|
5408 | else
|
---|
5409 | mediumLockList.Prepend(pMedium, fMediumLockWriteAll);
|
---|
5410 |
|
---|
5411 | pMedium = pMedium->i_getParent();
|
---|
5412 | if (pMedium.isNull() && pToBeParent)
|
---|
5413 | {
|
---|
5414 | pMedium = pToBeParent;
|
---|
5415 | pToBeParent = NULL;
|
---|
5416 | }
|
---|
5417 | }
|
---|
5418 |
|
---|
5419 | return mrc;
|
---|
5420 | }
|
---|
5421 |
|
---|
5422 | /**
|
---|
5423 | * Creates a new differencing storage unit using the format of the given target
|
---|
5424 | * medium and the location. Note that @c aTarget must be NotCreated.
|
---|
5425 | *
|
---|
5426 | * The @a aMediumLockList parameter contains the associated medium lock list,
|
---|
5427 | * which must be in locked state. If @a aWait is @c true then the caller is
|
---|
5428 | * responsible for unlocking.
|
---|
5429 | *
|
---|
5430 | * If @a aProgress is not NULL but the object it points to is @c null then a
|
---|
5431 | * new progress object will be created and assigned to @a *aProgress on
|
---|
5432 | * success, otherwise the existing progress object is used. If @a aProgress is
|
---|
5433 | * NULL, then no progress object is created/used at all.
|
---|
5434 | *
|
---|
5435 | * When @a aWait is @c false, this method will create a thread to perform the
|
---|
5436 | * create operation asynchronously and will return immediately. Otherwise, it
|
---|
5437 | * will perform the operation on the calling thread and will not return to the
|
---|
5438 | * caller until the operation is completed. Note that @a aProgress cannot be
|
---|
5439 | * NULL when @a aWait is @c false (this method will assert in this case).
|
---|
5440 | *
|
---|
5441 | * @param aTarget Target medium.
|
---|
5442 | * @param aVariant Precise medium variant to create.
|
---|
5443 | * @param aMediumLockList List of media which should be locked.
|
---|
5444 | * @param aProgress Where to find/store a Progress object to track
|
---|
5445 | * operation completion.
|
---|
5446 | * @param aWait @c true if this method should block instead of
|
---|
5447 | * creating an asynchronous thread.
|
---|
5448 | * @param aNotify Notify about media for which metadata is changed
|
---|
5449 | * during execution of the function.
|
---|
5450 | *
|
---|
5451 | * @note Locks this object and @a aTarget for writing.
|
---|
5452 | */
|
---|
5453 | HRESULT Medium::i_createDiffStorage(ComObjPtr<Medium> &aTarget,
|
---|
5454 | MediumVariant_T aVariant,
|
---|
5455 | MediumLockList *aMediumLockList,
|
---|
5456 | ComObjPtr<Progress> *aProgress,
|
---|
5457 | bool aWait,
|
---|
5458 | bool aNotify)
|
---|
5459 | {
|
---|
5460 | AssertReturn(!aTarget.isNull(), E_FAIL);
|
---|
5461 | AssertReturn(aMediumLockList, E_FAIL);
|
---|
5462 | AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
|
---|
5463 |
|
---|
5464 | AutoCaller autoCaller(this);
|
---|
5465 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
5466 |
|
---|
5467 | AutoCaller targetCaller(aTarget);
|
---|
5468 | if (FAILED(targetCaller.hrc())) return targetCaller.hrc();
|
---|
5469 |
|
---|
5470 | HRESULT hrc = S_OK;
|
---|
5471 | ComObjPtr<Progress> pProgress;
|
---|
5472 | Medium::Task *pTask = NULL;
|
---|
5473 |
|
---|
5474 | try
|
---|
5475 | {
|
---|
5476 | AutoMultiWriteLock2 alock(this, aTarget COMMA_LOCKVAL_SRC_POS);
|
---|
5477 |
|
---|
5478 | ComAssertThrow( m->type != MediumType_Writethrough
|
---|
5479 | && m->type != MediumType_Shareable
|
---|
5480 | && m->type != MediumType_Readonly, E_FAIL);
|
---|
5481 | ComAssertThrow(m->state == MediumState_LockedRead, E_FAIL);
|
---|
5482 |
|
---|
5483 | if (aTarget->m->state != MediumState_NotCreated)
|
---|
5484 | throw aTarget->i_setStateError();
|
---|
5485 |
|
---|
5486 | /* Check that the medium is not attached to the current state of
|
---|
5487 | * any VM referring to it. */
|
---|
5488 | for (BackRefList::const_iterator it = m->backRefs.begin();
|
---|
5489 | it != m->backRefs.end();
|
---|
5490 | ++it)
|
---|
5491 | {
|
---|
5492 | if (it->fInCurState)
|
---|
5493 | {
|
---|
5494 | /* Note: when a VM snapshot is being taken, all normal media
|
---|
5495 | * attached to the VM in the current state will be, as an
|
---|
5496 | * exception, also associated with the snapshot which is about
|
---|
5497 | * to create (see SnapshotMachine::init()) before deassociating
|
---|
5498 | * them from the current state (which takes place only on
|
---|
5499 | * success in Machine::fixupHardDisks()), so that the size of
|
---|
5500 | * snapshotIds will be 1 in this case. The extra condition is
|
---|
5501 | * used to filter out this legal situation. */
|
---|
5502 | if (it->llSnapshotIds.size() == 0)
|
---|
5503 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
5504 | 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"),
|
---|
5505 | m->strLocationFull.c_str(), it->machineId.raw());
|
---|
5506 |
|
---|
5507 | Assert(it->llSnapshotIds.size() == 1);
|
---|
5508 | }
|
---|
5509 | }
|
---|
5510 |
|
---|
5511 | if (aProgress != NULL)
|
---|
5512 | {
|
---|
5513 | /* use the existing progress object... */
|
---|
5514 | pProgress = *aProgress;
|
---|
5515 |
|
---|
5516 | /* ...but create a new one if it is null */
|
---|
5517 | if (pProgress.isNull())
|
---|
5518 | {
|
---|
5519 | pProgress.createObject();
|
---|
5520 | hrc = pProgress->init(m->pVirtualBox,
|
---|
5521 | static_cast<IMedium*>(this),
|
---|
5522 | BstrFmt(tr("Creating differencing medium storage unit '%s'"),
|
---|
5523 | aTarget->m->strLocationFull.c_str()).raw(),
|
---|
5524 | TRUE /* aCancelable */);
|
---|
5525 | if (FAILED(hrc))
|
---|
5526 | throw hrc;
|
---|
5527 | }
|
---|
5528 | }
|
---|
5529 |
|
---|
5530 | /* setup task object to carry out the operation sync/async */
|
---|
5531 | pTask = new Medium::CreateDiffTask(this, pProgress, aTarget, aVariant,
|
---|
5532 | aMediumLockList,
|
---|
5533 | aWait /* fKeepMediumLockList */,
|
---|
5534 | aNotify);
|
---|
5535 | hrc = pTask->hrc();
|
---|
5536 | AssertComRC(hrc);
|
---|
5537 | if (FAILED(hrc))
|
---|
5538 | throw hrc;
|
---|
5539 |
|
---|
5540 | /* register a task (it will deregister itself when done) */
|
---|
5541 | ++m->numCreateDiffTasks;
|
---|
5542 | Assert(m->numCreateDiffTasks != 0); /* overflow? */
|
---|
5543 |
|
---|
5544 | aTarget->m->state = MediumState_Creating;
|
---|
5545 | }
|
---|
5546 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
5547 |
|
---|
5548 | if (SUCCEEDED(hrc))
|
---|
5549 | {
|
---|
5550 | if (aWait)
|
---|
5551 | {
|
---|
5552 | hrc = pTask->runNow();
|
---|
5553 | delete pTask;
|
---|
5554 | }
|
---|
5555 | else
|
---|
5556 | hrc = pTask->createThread();
|
---|
5557 | pTask = NULL;
|
---|
5558 | if (SUCCEEDED(hrc) && aProgress != NULL)
|
---|
5559 | *aProgress = pProgress;
|
---|
5560 | }
|
---|
5561 | else if (pTask != NULL)
|
---|
5562 | delete pTask;
|
---|
5563 |
|
---|
5564 | return hrc;
|
---|
5565 | }
|
---|
5566 |
|
---|
5567 | /**
|
---|
5568 | * Returns a preferred format for differencing media.
|
---|
5569 | */
|
---|
5570 | Utf8Str Medium::i_getPreferredDiffFormat()
|
---|
5571 | {
|
---|
5572 | AutoCaller autoCaller(this);
|
---|
5573 | AssertComRCReturn(autoCaller.hrc(), Utf8Str::Empty);
|
---|
5574 |
|
---|
5575 | /* check that our own format supports diffs */
|
---|
5576 | if (!(m->formatObj->i_getCapabilities() & MediumFormatCapabilities_Differencing))
|
---|
5577 | {
|
---|
5578 | /* use the default format if not */
|
---|
5579 | Utf8Str tmp;
|
---|
5580 | m->pVirtualBox->i_getDefaultHardDiskFormat(tmp);
|
---|
5581 | return tmp;
|
---|
5582 | }
|
---|
5583 |
|
---|
5584 | /* m->strFormat is const, no need to lock */
|
---|
5585 | return m->strFormat;
|
---|
5586 | }
|
---|
5587 |
|
---|
5588 | /**
|
---|
5589 | * Returns a preferred variant for differencing media.
|
---|
5590 | */
|
---|
5591 | MediumVariant_T Medium::i_getPreferredDiffVariant()
|
---|
5592 | {
|
---|
5593 | AutoCaller autoCaller(this);
|
---|
5594 | AssertComRCReturn(autoCaller.hrc(), MediumVariant_Standard);
|
---|
5595 |
|
---|
5596 | /* check that our own format supports diffs */
|
---|
5597 | if (!(m->formatObj->i_getCapabilities() & MediumFormatCapabilities_Differencing))
|
---|
5598 | return MediumVariant_Standard;
|
---|
5599 |
|
---|
5600 | /* m->variant is const, no need to lock */
|
---|
5601 | ULONG mediumVariantFlags = (ULONG)m->variant;
|
---|
5602 | mediumVariantFlags &= ~(ULONG)(MediumVariant_Fixed | MediumVariant_VmdkStreamOptimized | MediumVariant_VmdkESX | MediumVariant_VmdkRawDisk);
|
---|
5603 | mediumVariantFlags |= MediumVariant_Diff;
|
---|
5604 | return (MediumVariant_T)mediumVariantFlags;
|
---|
5605 | }
|
---|
5606 |
|
---|
5607 | /**
|
---|
5608 | * Implementation for the public Medium::Close() with the exception of calling
|
---|
5609 | * VirtualBox::saveRegistries(), in case someone wants to call this for several
|
---|
5610 | * media.
|
---|
5611 | *
|
---|
5612 | * After this returns with success, uninit() has been called on the medium, and
|
---|
5613 | * the object is no longer usable ("not ready" state).
|
---|
5614 | *
|
---|
5615 | * @param autoCaller AutoCaller instance which must have been created on the caller's
|
---|
5616 | * stack for this medium. This gets released hereupon
|
---|
5617 | * which the Medium instance gets uninitialized.
|
---|
5618 | * @return
|
---|
5619 | */
|
---|
5620 | HRESULT Medium::i_close(AutoCaller &autoCaller)
|
---|
5621 | {
|
---|
5622 | // must temporarily drop the caller, need the tree lock first
|
---|
5623 | autoCaller.release();
|
---|
5624 |
|
---|
5625 | // we're accessing parent/child and backrefs, so lock the tree first, then ourselves
|
---|
5626 | AutoMultiWriteLock2 multilock(&m->pVirtualBox->i_getMediaTreeLockHandle(),
|
---|
5627 | this->lockHandle()
|
---|
5628 | COMMA_LOCKVAL_SRC_POS);
|
---|
5629 |
|
---|
5630 | autoCaller.add();
|
---|
5631 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
5632 |
|
---|
5633 | /* Wait for a concurrently running Medium::i_queryInfo to complete. */
|
---|
5634 | while (m->queryInfoRunning)
|
---|
5635 | {
|
---|
5636 | autoCaller.release();
|
---|
5637 | multilock.release();
|
---|
5638 | /* Must not hold the media tree lock, as Medium::i_queryInfo needs
|
---|
5639 | * this lock and thus we would run into a deadlock here. */
|
---|
5640 | Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
|
---|
5641 | /* must not hold the object lock now */
|
---|
5642 | Assert(!isWriteLockOnCurrentThread());
|
---|
5643 | {
|
---|
5644 | AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
|
---|
5645 | }
|
---|
5646 | multilock.acquire();
|
---|
5647 | autoCaller.add();
|
---|
5648 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
5649 | }
|
---|
5650 |
|
---|
5651 | LogFlowFunc(("ENTER for %s\n", i_getLocationFull().c_str()));
|
---|
5652 |
|
---|
5653 | bool wasCreated = true;
|
---|
5654 |
|
---|
5655 | switch (m->state)
|
---|
5656 | {
|
---|
5657 | case MediumState_NotCreated:
|
---|
5658 | wasCreated = false;
|
---|
5659 | break;
|
---|
5660 | case MediumState_Created:
|
---|
5661 | case MediumState_Inaccessible:
|
---|
5662 | break;
|
---|
5663 | default:
|
---|
5664 | return i_setStateError();
|
---|
5665 | }
|
---|
5666 |
|
---|
5667 | if (m->backRefs.size() != 0)
|
---|
5668 | return setError(VBOX_E_OBJECT_IN_USE,
|
---|
5669 | tr("Medium '%s' cannot be closed because it is still attached to %d virtual machines", "",
|
---|
5670 | m->backRefs.size()),
|
---|
5671 | m->strLocationFull.c_str(), m->backRefs.size());
|
---|
5672 |
|
---|
5673 | // perform extra media-dependent close checks
|
---|
5674 | HRESULT hrc = i_canClose();
|
---|
5675 | if (FAILED(hrc)) return hrc;
|
---|
5676 |
|
---|
5677 | m->fClosing = true;
|
---|
5678 |
|
---|
5679 | if (wasCreated)
|
---|
5680 | {
|
---|
5681 | // remove from the list of known media before performing actual
|
---|
5682 | // uninitialization (to keep the media registry consistent on
|
---|
5683 | // failure to do so)
|
---|
5684 | hrc = i_unregisterWithVirtualBox();
|
---|
5685 | if (FAILED(hrc)) return hrc;
|
---|
5686 |
|
---|
5687 | multilock.release();
|
---|
5688 | // Release the AutoCaller now, as otherwise uninit() will simply hang.
|
---|
5689 | // Needs to be done before mark the registries as modified and saving
|
---|
5690 | // the registry, as otherwise there may be a deadlock with someone else
|
---|
5691 | // closing this object while we're in i_saveModifiedRegistries(), which
|
---|
5692 | // needs the media tree lock, which the other thread holds until after
|
---|
5693 | // uninit() below.
|
---|
5694 | autoCaller.release();
|
---|
5695 | i_markRegistriesModified();
|
---|
5696 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
5697 | }
|
---|
5698 | else
|
---|
5699 | {
|
---|
5700 | multilock.release();
|
---|
5701 | // release the AutoCaller, as otherwise uninit() will simply hang
|
---|
5702 | autoCaller.release();
|
---|
5703 | }
|
---|
5704 |
|
---|
5705 | // Keep the locks held until after uninit, as otherwise the consistency
|
---|
5706 | // of the medium tree cannot be guaranteed.
|
---|
5707 | uninit();
|
---|
5708 |
|
---|
5709 | LogFlowFuncLeave();
|
---|
5710 |
|
---|
5711 | return hrc;
|
---|
5712 | }
|
---|
5713 |
|
---|
5714 | /**
|
---|
5715 | * Deletes the medium storage unit.
|
---|
5716 | *
|
---|
5717 | * If @a aProgress is not NULL but the object it points to is @c null then a new
|
---|
5718 | * progress object will be created and assigned to @a *aProgress on success,
|
---|
5719 | * otherwise the existing progress object is used. If Progress is NULL, then no
|
---|
5720 | * progress object is created/used at all.
|
---|
5721 | *
|
---|
5722 | * When @a aWait is @c false, this method will create a thread to perform the
|
---|
5723 | * delete operation asynchronously and will return immediately. Otherwise, it
|
---|
5724 | * will perform the operation on the calling thread and will not return to the
|
---|
5725 | * caller until the operation is completed. Note that @a aProgress cannot be
|
---|
5726 | * NULL when @a aWait is @c false (this method will assert in this case).
|
---|
5727 | *
|
---|
5728 | * @param aProgress Where to find/store a Progress object to track operation
|
---|
5729 | * completion.
|
---|
5730 | * @param aWait @c true if this method should block instead of creating
|
---|
5731 | * an asynchronous thread.
|
---|
5732 | * @param aNotify Notify about media for which metadata is changed
|
---|
5733 | * during execution of the function.
|
---|
5734 | *
|
---|
5735 | * @note Locks mVirtualBox and this object for writing. Locks medium tree for
|
---|
5736 | * writing.
|
---|
5737 | */
|
---|
5738 | HRESULT Medium::i_deleteStorage(ComObjPtr<Progress> *aProgress,
|
---|
5739 | bool aWait, bool aNotify)
|
---|
5740 | {
|
---|
5741 | AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
|
---|
5742 |
|
---|
5743 | HRESULT hrc = S_OK;
|
---|
5744 | ComObjPtr<Progress> pProgress;
|
---|
5745 | Medium::Task *pTask = NULL;
|
---|
5746 |
|
---|
5747 | try
|
---|
5748 | {
|
---|
5749 | /* we're accessing the media tree, and i_canClose() needs it too */
|
---|
5750 | AutoWriteLock treelock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
5751 |
|
---|
5752 | AutoCaller autoCaller(this);
|
---|
5753 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
5754 |
|
---|
5755 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
5756 |
|
---|
5757 | LogFlowThisFunc(("aWait=%RTbool locationFull=%s\n", aWait, i_getLocationFull().c_str() ));
|
---|
5758 |
|
---|
5759 | if ( !(m->formatObj->i_getCapabilities() & ( MediumFormatCapabilities_CreateDynamic
|
---|
5760 | | MediumFormatCapabilities_CreateFixed)))
|
---|
5761 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
5762 | tr("Medium format '%s' does not support storage deletion"),
|
---|
5763 | m->strFormat.c_str());
|
---|
5764 |
|
---|
5765 | /* Wait for a concurrently running Medium::i_queryInfo to complete. */
|
---|
5766 | /** @todo r=klaus would be great if this could be moved to the async
|
---|
5767 | * part of the operation as it can take quite a while */
|
---|
5768 | while (m->queryInfoRunning)
|
---|
5769 | {
|
---|
5770 | alock.release();
|
---|
5771 | autoCaller.release();
|
---|
5772 | treelock.release();
|
---|
5773 | /* Must not hold the media tree lock or the object lock, as
|
---|
5774 | * Medium::i_queryInfo needs this lock and thus we would run
|
---|
5775 | * into a deadlock here. */
|
---|
5776 | Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
|
---|
5777 | Assert(!isWriteLockOnCurrentThread());
|
---|
5778 | {
|
---|
5779 | AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
|
---|
5780 | }
|
---|
5781 | treelock.acquire();
|
---|
5782 | autoCaller.add();
|
---|
5783 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
5784 | alock.acquire();
|
---|
5785 | }
|
---|
5786 |
|
---|
5787 | /* Note that we are fine with Inaccessible state too: a) for symmetry
|
---|
5788 | * with create calls and b) because it doesn't really harm to try, if
|
---|
5789 | * it is really inaccessible, the delete operation will fail anyway.
|
---|
5790 | * Accepting Inaccessible state is especially important because all
|
---|
5791 | * registered media are initially Inaccessible upon VBoxSVC startup
|
---|
5792 | * until COMGETTER(RefreshState) is called. Accept Deleting state
|
---|
5793 | * because some callers need to put the medium in this state early
|
---|
5794 | * to prevent races. */
|
---|
5795 | switch (m->state)
|
---|
5796 | {
|
---|
5797 | case MediumState_Created:
|
---|
5798 | case MediumState_Deleting:
|
---|
5799 | case MediumState_Inaccessible:
|
---|
5800 | break;
|
---|
5801 | default:
|
---|
5802 | throw i_setStateError();
|
---|
5803 | }
|
---|
5804 |
|
---|
5805 | if (m->backRefs.size() != 0)
|
---|
5806 | {
|
---|
5807 | Utf8Str strMachines;
|
---|
5808 | for (BackRefList::const_iterator it = m->backRefs.begin();
|
---|
5809 | it != m->backRefs.end();
|
---|
5810 | ++it)
|
---|
5811 | {
|
---|
5812 | const BackRef &b = *it;
|
---|
5813 | if (strMachines.length())
|
---|
5814 | strMachines.append(", ");
|
---|
5815 | strMachines.append(b.machineId.toString().c_str());
|
---|
5816 | }
|
---|
5817 | #ifdef DEBUG
|
---|
5818 | i_dumpBackRefs();
|
---|
5819 | #endif
|
---|
5820 | throw setError(VBOX_E_OBJECT_IN_USE,
|
---|
5821 | tr("Cannot delete storage: medium '%s' is still attached to the following %d virtual machine(s): %s",
|
---|
5822 | "", m->backRefs.size()),
|
---|
5823 | m->strLocationFull.c_str(),
|
---|
5824 | m->backRefs.size(),
|
---|
5825 | strMachines.c_str());
|
---|
5826 | }
|
---|
5827 |
|
---|
5828 | hrc = i_canClose();
|
---|
5829 | if (FAILED(hrc))
|
---|
5830 | throw hrc;
|
---|
5831 |
|
---|
5832 | /* go to Deleting state, so that the medium is not actually locked */
|
---|
5833 | if (m->state != MediumState_Deleting)
|
---|
5834 | {
|
---|
5835 | hrc = i_markForDeletion();
|
---|
5836 | if (FAILED(hrc))
|
---|
5837 | throw hrc;
|
---|
5838 | }
|
---|
5839 |
|
---|
5840 | /* Build the medium lock list. */
|
---|
5841 | MediumLockList *pMediumLockList(new MediumLockList());
|
---|
5842 | alock.release();
|
---|
5843 | autoCaller.release();
|
---|
5844 | treelock.release();
|
---|
5845 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
5846 | this /* pToLockWrite */,
|
---|
5847 | false /* fMediumLockWriteAll */,
|
---|
5848 | NULL,
|
---|
5849 | *pMediumLockList);
|
---|
5850 | treelock.acquire();
|
---|
5851 | autoCaller.add();
|
---|
5852 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
5853 | alock.acquire();
|
---|
5854 | if (FAILED(hrc))
|
---|
5855 | {
|
---|
5856 | delete pMediumLockList;
|
---|
5857 | throw hrc;
|
---|
5858 | }
|
---|
5859 |
|
---|
5860 | alock.release();
|
---|
5861 | autoCaller.release();
|
---|
5862 | treelock.release();
|
---|
5863 | hrc = pMediumLockList->Lock();
|
---|
5864 | treelock.acquire();
|
---|
5865 | autoCaller.add();
|
---|
5866 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
5867 | alock.acquire();
|
---|
5868 | if (FAILED(hrc))
|
---|
5869 | {
|
---|
5870 | delete pMediumLockList;
|
---|
5871 | throw setError(hrc,
|
---|
5872 | tr("Failed to lock media when deleting '%s'"),
|
---|
5873 | i_getLocationFull().c_str());
|
---|
5874 | }
|
---|
5875 |
|
---|
5876 | /* try to remove from the list of known media before performing
|
---|
5877 | * actual deletion (we favor the consistency of the media registry
|
---|
5878 | * which would have been broken if unregisterWithVirtualBox() failed
|
---|
5879 | * after we successfully deleted the storage) */
|
---|
5880 | hrc = i_unregisterWithVirtualBox();
|
---|
5881 | if (FAILED(hrc))
|
---|
5882 | throw hrc;
|
---|
5883 | // no longer need lock
|
---|
5884 | alock.release();
|
---|
5885 | autoCaller.release();
|
---|
5886 | treelock.release();
|
---|
5887 | i_markRegistriesModified();
|
---|
5888 |
|
---|
5889 | if (aProgress != NULL)
|
---|
5890 | {
|
---|
5891 | /* use the existing progress object... */
|
---|
5892 | pProgress = *aProgress;
|
---|
5893 |
|
---|
5894 | /* ...but create a new one if it is null */
|
---|
5895 | if (pProgress.isNull())
|
---|
5896 | {
|
---|
5897 | pProgress.createObject();
|
---|
5898 | hrc = pProgress->init(m->pVirtualBox,
|
---|
5899 | static_cast<IMedium*>(this),
|
---|
5900 | BstrFmt(tr("Deleting medium storage unit '%s'"), m->strLocationFull.c_str()).raw(),
|
---|
5901 | FALSE /* aCancelable */);
|
---|
5902 | if (FAILED(hrc))
|
---|
5903 | throw hrc;
|
---|
5904 | }
|
---|
5905 | }
|
---|
5906 |
|
---|
5907 | /* setup task object to carry out the operation sync/async */
|
---|
5908 | pTask = new Medium::DeleteTask(this, pProgress, pMediumLockList, false, aNotify);
|
---|
5909 | hrc = pTask->hrc();
|
---|
5910 | AssertComRC(hrc);
|
---|
5911 | if (FAILED(hrc))
|
---|
5912 | throw hrc;
|
---|
5913 | }
|
---|
5914 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
5915 |
|
---|
5916 | if (SUCCEEDED(hrc))
|
---|
5917 | {
|
---|
5918 | if (aWait)
|
---|
5919 | {
|
---|
5920 | hrc = pTask->runNow();
|
---|
5921 | delete pTask;
|
---|
5922 | }
|
---|
5923 | else
|
---|
5924 | hrc = pTask->createThread();
|
---|
5925 | pTask = NULL;
|
---|
5926 | if (SUCCEEDED(hrc) && aProgress != NULL)
|
---|
5927 | *aProgress = pProgress;
|
---|
5928 | }
|
---|
5929 | else
|
---|
5930 | {
|
---|
5931 | if (pTask)
|
---|
5932 | delete pTask;
|
---|
5933 |
|
---|
5934 | /* Undo deleting state if necessary. */
|
---|
5935 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
5936 | /* Make sure that any error signalled by unmarkForDeletion() is not
|
---|
5937 | * ending up in the error list (if the caller uses MultiResult). It
|
---|
5938 | * usually is spurious, as in most cases the medium hasn't been marked
|
---|
5939 | * for deletion when the error was thrown above. */
|
---|
5940 | ErrorInfoKeeper eik;
|
---|
5941 | i_unmarkForDeletion();
|
---|
5942 | }
|
---|
5943 |
|
---|
5944 | return hrc;
|
---|
5945 | }
|
---|
5946 |
|
---|
5947 | /**
|
---|
5948 | * Mark a medium for deletion.
|
---|
5949 | *
|
---|
5950 | * @note Caller must hold the write lock on this medium!
|
---|
5951 | */
|
---|
5952 | HRESULT Medium::i_markForDeletion()
|
---|
5953 | {
|
---|
5954 | ComAssertRet(isWriteLockOnCurrentThread(), E_FAIL);
|
---|
5955 | switch (m->state)
|
---|
5956 | {
|
---|
5957 | case MediumState_Created:
|
---|
5958 | case MediumState_Inaccessible:
|
---|
5959 | m->preLockState = m->state;
|
---|
5960 | m->state = MediumState_Deleting;
|
---|
5961 | return S_OK;
|
---|
5962 | default:
|
---|
5963 | return i_setStateError();
|
---|
5964 | }
|
---|
5965 | }
|
---|
5966 |
|
---|
5967 | /**
|
---|
5968 | * Removes the "mark for deletion".
|
---|
5969 | *
|
---|
5970 | * @note Caller must hold the write lock on this medium!
|
---|
5971 | */
|
---|
5972 | HRESULT Medium::i_unmarkForDeletion()
|
---|
5973 | {
|
---|
5974 | ComAssertRet(isWriteLockOnCurrentThread(), E_FAIL);
|
---|
5975 | switch (m->state)
|
---|
5976 | {
|
---|
5977 | case MediumState_Deleting:
|
---|
5978 | m->state = m->preLockState;
|
---|
5979 | return S_OK;
|
---|
5980 | default:
|
---|
5981 | return i_setStateError();
|
---|
5982 | }
|
---|
5983 | }
|
---|
5984 |
|
---|
5985 | /**
|
---|
5986 | * Mark a medium for deletion which is in locked state.
|
---|
5987 | *
|
---|
5988 | * @note Caller must hold the write lock on this medium!
|
---|
5989 | */
|
---|
5990 | HRESULT Medium::i_markLockedForDeletion()
|
---|
5991 | {
|
---|
5992 | ComAssertRet(isWriteLockOnCurrentThread(), E_FAIL);
|
---|
5993 | if ( ( m->state == MediumState_LockedRead
|
---|
5994 | || m->state == MediumState_LockedWrite)
|
---|
5995 | && m->preLockState == MediumState_Created)
|
---|
5996 | {
|
---|
5997 | m->preLockState = MediumState_Deleting;
|
---|
5998 | return S_OK;
|
---|
5999 | }
|
---|
6000 | else
|
---|
6001 | return i_setStateError();
|
---|
6002 | }
|
---|
6003 |
|
---|
6004 | /**
|
---|
6005 | * Removes the "mark for deletion" for a medium in locked state.
|
---|
6006 | *
|
---|
6007 | * @note Caller must hold the write lock on this medium!
|
---|
6008 | */
|
---|
6009 | HRESULT Medium::i_unmarkLockedForDeletion()
|
---|
6010 | {
|
---|
6011 | ComAssertRet(isWriteLockOnCurrentThread(), E_FAIL);
|
---|
6012 | if ( ( m->state == MediumState_LockedRead
|
---|
6013 | || m->state == MediumState_LockedWrite)
|
---|
6014 | && m->preLockState == MediumState_Deleting)
|
---|
6015 | {
|
---|
6016 | m->preLockState = MediumState_Created;
|
---|
6017 | return S_OK;
|
---|
6018 | }
|
---|
6019 | else
|
---|
6020 | return i_setStateError();
|
---|
6021 | }
|
---|
6022 |
|
---|
6023 | /**
|
---|
6024 | * Queries the preferred merge direction from this to the other medium, i.e.
|
---|
6025 | * the one which requires the least amount of I/O and therefore time and
|
---|
6026 | * disk consumption.
|
---|
6027 | *
|
---|
6028 | * @returns Status code.
|
---|
6029 | * @retval E_FAIL in case determining the merge direction fails for some reason,
|
---|
6030 | * for example if getting the size of the media fails. There is no
|
---|
6031 | * error set though and the caller is free to continue to find out
|
---|
6032 | * what was going wrong later. Leaves fMergeForward unset.
|
---|
6033 | * @retval VBOX_E_INVALID_OBJECT_STATE if both media are not related to each other
|
---|
6034 | * An error is set.
|
---|
6035 | * @param pOther The other medium to merge with.
|
---|
6036 | * @param fMergeForward Resulting preferred merge direction (out).
|
---|
6037 | */
|
---|
6038 | HRESULT Medium::i_queryPreferredMergeDirection(const ComObjPtr<Medium> &pOther,
|
---|
6039 | bool &fMergeForward)
|
---|
6040 | {
|
---|
6041 | AssertReturn(pOther != NULL, E_FAIL);
|
---|
6042 | AssertReturn(pOther != this, E_FAIL);
|
---|
6043 |
|
---|
6044 | HRESULT hrc = S_OK;
|
---|
6045 | bool fThisParent = false; /**<< Flag whether this medium is the parent of pOther. */
|
---|
6046 |
|
---|
6047 | try
|
---|
6048 | {
|
---|
6049 | // locking: we need the tree lock first because we access parent pointers
|
---|
6050 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
6051 |
|
---|
6052 | AutoCaller autoCaller(this);
|
---|
6053 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
6054 |
|
---|
6055 | AutoCaller otherCaller(pOther);
|
---|
6056 | AssertComRCThrowRC(otherCaller.hrc());
|
---|
6057 |
|
---|
6058 | /* more sanity checking and figuring out the current merge direction */
|
---|
6059 | ComObjPtr<Medium> pMedium = i_getParent();
|
---|
6060 | while (!pMedium.isNull() && pMedium != pOther)
|
---|
6061 | pMedium = pMedium->i_getParent();
|
---|
6062 | if (pMedium == pOther)
|
---|
6063 | fThisParent = false;
|
---|
6064 | else
|
---|
6065 | {
|
---|
6066 | pMedium = pOther->i_getParent();
|
---|
6067 | while (!pMedium.isNull() && pMedium != this)
|
---|
6068 | pMedium = pMedium->i_getParent();
|
---|
6069 | if (pMedium == this)
|
---|
6070 | fThisParent = true;
|
---|
6071 | else
|
---|
6072 | {
|
---|
6073 | Utf8Str tgtLoc;
|
---|
6074 | {
|
---|
6075 | AutoReadLock alock(pOther COMMA_LOCKVAL_SRC_POS);
|
---|
6076 | tgtLoc = pOther->i_getLocationFull();
|
---|
6077 | }
|
---|
6078 |
|
---|
6079 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
6080 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
6081 | tr("Media '%s' and '%s' are unrelated"),
|
---|
6082 | m->strLocationFull.c_str(), tgtLoc.c_str());
|
---|
6083 | }
|
---|
6084 | }
|
---|
6085 |
|
---|
6086 | /*
|
---|
6087 | * Figure out the preferred merge direction. The current way is to
|
---|
6088 | * get the current sizes of file based images and select the merge
|
---|
6089 | * direction depending on the size.
|
---|
6090 | *
|
---|
6091 | * Can't use the VD API to get current size here as the media might
|
---|
6092 | * be write locked by a running VM. Resort to RTFileQuerySize().
|
---|
6093 | */
|
---|
6094 | int vrc = VINF_SUCCESS;
|
---|
6095 | uint64_t cbMediumThis = 0;
|
---|
6096 | uint64_t cbMediumOther = 0;
|
---|
6097 |
|
---|
6098 | if (i_isMediumFormatFile() && pOther->i_isMediumFormatFile())
|
---|
6099 | {
|
---|
6100 | vrc = RTFileQuerySizeByPath(this->i_getLocationFull().c_str(), &cbMediumThis);
|
---|
6101 | if (RT_SUCCESS(vrc))
|
---|
6102 | {
|
---|
6103 | vrc = RTFileQuerySizeByPath(pOther->i_getLocationFull().c_str(),
|
---|
6104 | &cbMediumOther);
|
---|
6105 | }
|
---|
6106 |
|
---|
6107 | if (RT_FAILURE(vrc))
|
---|
6108 | hrc = E_FAIL;
|
---|
6109 | else
|
---|
6110 | {
|
---|
6111 | /*
|
---|
6112 | * Check which merge direction might be more optimal.
|
---|
6113 | * This method is not bullet proof of course as there might
|
---|
6114 | * be overlapping blocks in the images so the file size is
|
---|
6115 | * not the best indicator but it is good enough for our purpose
|
---|
6116 | * and everything else is too complicated, especially when the
|
---|
6117 | * media are used by a running VM.
|
---|
6118 | */
|
---|
6119 |
|
---|
6120 | uint32_t mediumVariants = MediumVariant_Fixed | MediumVariant_VmdkStreamOptimized;
|
---|
6121 | uint32_t mediumCaps = MediumFormatCapabilities_CreateDynamic | MediumFormatCapabilities_File;
|
---|
6122 |
|
---|
6123 | bool fDynamicOther = pOther->i_getMediumFormat()->i_getCapabilities() & mediumCaps
|
---|
6124 | && pOther->i_getVariant() & ~mediumVariants;
|
---|
6125 | bool fDynamicThis = i_getMediumFormat()->i_getCapabilities() & mediumCaps
|
---|
6126 | && i_getVariant() & ~mediumVariants;
|
---|
6127 | bool fMergeIntoThis = (fDynamicThis && !fDynamicOther)
|
---|
6128 | || (fDynamicThis == fDynamicOther && cbMediumThis > cbMediumOther);
|
---|
6129 | fMergeForward = fMergeIntoThis != fThisParent;
|
---|
6130 | }
|
---|
6131 | }
|
---|
6132 | }
|
---|
6133 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
6134 |
|
---|
6135 | return hrc;
|
---|
6136 | }
|
---|
6137 |
|
---|
6138 | /**
|
---|
6139 | * Prepares this (source) medium, target medium and all intermediate media
|
---|
6140 | * for the merge operation.
|
---|
6141 | *
|
---|
6142 | * This method is to be called prior to calling the #mergeTo() to perform
|
---|
6143 | * necessary consistency checks and place involved media to appropriate
|
---|
6144 | * states. If #mergeTo() is not called or fails, the state modifications
|
---|
6145 | * performed by this method must be undone by #i_cancelMergeTo().
|
---|
6146 | *
|
---|
6147 | * See #mergeTo() for more information about merging.
|
---|
6148 | *
|
---|
6149 | * @param pTarget Target medium.
|
---|
6150 | * @param aMachineId Allowed machine attachment. NULL means do not check.
|
---|
6151 | * @param aSnapshotId Allowed snapshot attachment. NULL or empty UUID means
|
---|
6152 | * do not check.
|
---|
6153 | * @param fLockMedia Flag whether to lock the medium lock list or not.
|
---|
6154 | * If set to false and the medium lock list locking fails
|
---|
6155 | * later you must call #i_cancelMergeTo().
|
---|
6156 | * @param fMergeForward Resulting merge direction (out).
|
---|
6157 | * @param pParentForTarget New parent for target medium after merge (out).
|
---|
6158 | * @param aChildrenToReparent Medium lock list containing all children of the
|
---|
6159 | * source which will have to be reparented to the target
|
---|
6160 | * after merge (out).
|
---|
6161 | * @param aMediumLockList Medium locking information (out).
|
---|
6162 | *
|
---|
6163 | * @note Locks medium tree for reading. Locks this object, aTarget and all
|
---|
6164 | * intermediate media for writing.
|
---|
6165 | */
|
---|
6166 | HRESULT Medium::i_prepareMergeTo(const ComObjPtr<Medium> &pTarget,
|
---|
6167 | const Guid *aMachineId,
|
---|
6168 | const Guid *aSnapshotId,
|
---|
6169 | bool fLockMedia,
|
---|
6170 | bool &fMergeForward,
|
---|
6171 | ComObjPtr<Medium> &pParentForTarget,
|
---|
6172 | MediumLockList * &aChildrenToReparent,
|
---|
6173 | MediumLockList * &aMediumLockList)
|
---|
6174 | {
|
---|
6175 | AssertReturn(pTarget != NULL, E_FAIL);
|
---|
6176 | AssertReturn(pTarget != this, E_FAIL);
|
---|
6177 |
|
---|
6178 | HRESULT hrc = S_OK;
|
---|
6179 | fMergeForward = false;
|
---|
6180 | pParentForTarget.setNull();
|
---|
6181 | Assert(aChildrenToReparent == NULL);
|
---|
6182 | aChildrenToReparent = NULL;
|
---|
6183 | Assert(aMediumLockList == NULL);
|
---|
6184 | aMediumLockList = NULL;
|
---|
6185 |
|
---|
6186 | try
|
---|
6187 | {
|
---|
6188 | // locking: we need the tree lock first because we access parent pointers
|
---|
6189 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
6190 |
|
---|
6191 | AutoCaller autoCaller(this);
|
---|
6192 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
6193 |
|
---|
6194 | AutoCaller targetCaller(pTarget);
|
---|
6195 | AssertComRCThrowRC(targetCaller.hrc());
|
---|
6196 |
|
---|
6197 | /* more sanity checking and figuring out the merge direction */
|
---|
6198 | ComObjPtr<Medium> pMedium = i_getParent();
|
---|
6199 | while (!pMedium.isNull() && pMedium != pTarget)
|
---|
6200 | pMedium = pMedium->i_getParent();
|
---|
6201 | if (pMedium == pTarget)
|
---|
6202 | fMergeForward = false;
|
---|
6203 | else
|
---|
6204 | {
|
---|
6205 | pMedium = pTarget->i_getParent();
|
---|
6206 | while (!pMedium.isNull() && pMedium != this)
|
---|
6207 | pMedium = pMedium->i_getParent();
|
---|
6208 | if (pMedium == this)
|
---|
6209 | fMergeForward = true;
|
---|
6210 | else
|
---|
6211 | {
|
---|
6212 | Utf8Str tgtLoc;
|
---|
6213 | {
|
---|
6214 | AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
6215 | tgtLoc = pTarget->i_getLocationFull();
|
---|
6216 | }
|
---|
6217 |
|
---|
6218 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
6219 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
6220 | tr("Media '%s' and '%s' are unrelated"),
|
---|
6221 | m->strLocationFull.c_str(), tgtLoc.c_str());
|
---|
6222 | }
|
---|
6223 | }
|
---|
6224 |
|
---|
6225 | /* Build the lock list. */
|
---|
6226 | aMediumLockList = new MediumLockList();
|
---|
6227 | targetCaller.release();
|
---|
6228 | autoCaller.release();
|
---|
6229 | treeLock.release();
|
---|
6230 | if (fMergeForward)
|
---|
6231 | hrc = pTarget->i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
6232 | pTarget /* pToLockWrite */,
|
---|
6233 | false /* fMediumLockWriteAll */,
|
---|
6234 | NULL,
|
---|
6235 | *aMediumLockList);
|
---|
6236 | else
|
---|
6237 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
6238 | pTarget /* pToLockWrite */,
|
---|
6239 | false /* fMediumLockWriteAll */,
|
---|
6240 | NULL,
|
---|
6241 | *aMediumLockList);
|
---|
6242 | treeLock.acquire();
|
---|
6243 | autoCaller.add();
|
---|
6244 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
6245 | targetCaller.add();
|
---|
6246 | AssertComRCThrowRC(targetCaller.hrc());
|
---|
6247 | if (FAILED(hrc))
|
---|
6248 | throw hrc;
|
---|
6249 |
|
---|
6250 | /* Sanity checking, must be after lock list creation as it depends on
|
---|
6251 | * valid medium states. The medium objects must be accessible. Only
|
---|
6252 | * do this if immediate locking is requested, otherwise it fails when
|
---|
6253 | * we construct a medium lock list for an already running VM. Snapshot
|
---|
6254 | * deletion uses this to simplify its life. */
|
---|
6255 | if (fLockMedia)
|
---|
6256 | {
|
---|
6257 | {
|
---|
6258 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
6259 | if (m->state != MediumState_Created)
|
---|
6260 | throw i_setStateError();
|
---|
6261 | }
|
---|
6262 | {
|
---|
6263 | AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
6264 | if (pTarget->m->state != MediumState_Created)
|
---|
6265 | throw pTarget->i_setStateError();
|
---|
6266 | }
|
---|
6267 | }
|
---|
6268 |
|
---|
6269 | /* check medium attachment and other sanity conditions */
|
---|
6270 | if (fMergeForward)
|
---|
6271 | {
|
---|
6272 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
6273 | if (i_getChildren().size() > 1)
|
---|
6274 | {
|
---|
6275 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
6276 | tr("Medium '%s' involved in the merge operation has more than one child medium (%d)"),
|
---|
6277 | m->strLocationFull.c_str(), i_getChildren().size());
|
---|
6278 | }
|
---|
6279 | /* One backreference is only allowed if the machine ID is not empty
|
---|
6280 | * and it matches the machine the medium is attached to (including
|
---|
6281 | * the snapshot ID if not empty). */
|
---|
6282 | if ( m->backRefs.size() != 0
|
---|
6283 | && ( !aMachineId
|
---|
6284 | || m->backRefs.size() != 1
|
---|
6285 | || aMachineId->isZero()
|
---|
6286 | || *i_getFirstMachineBackrefId() != *aMachineId
|
---|
6287 | || ( (!aSnapshotId || !aSnapshotId->isZero())
|
---|
6288 | && *i_getFirstMachineBackrefSnapshotId() != *aSnapshotId)))
|
---|
6289 | throw setError(VBOX_E_OBJECT_IN_USE,
|
---|
6290 | tr("Medium '%s' is attached to %d virtual machines", "", m->backRefs.size()),
|
---|
6291 | m->strLocationFull.c_str(), m->backRefs.size());
|
---|
6292 | if (m->type == MediumType_Immutable)
|
---|
6293 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
6294 | tr("Medium '%s' is immutable"),
|
---|
6295 | m->strLocationFull.c_str());
|
---|
6296 | if (m->type == MediumType_MultiAttach)
|
---|
6297 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
6298 | tr("Medium '%s' is multi-attach"),
|
---|
6299 | m->strLocationFull.c_str());
|
---|
6300 | }
|
---|
6301 | else
|
---|
6302 | {
|
---|
6303 | AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
6304 | if (pTarget->i_getChildren().size() > 1)
|
---|
6305 | {
|
---|
6306 | throw setError(VBOX_E_OBJECT_IN_USE,
|
---|
6307 | tr("Medium '%s' involved in the merge operation has more than one child medium (%d)"),
|
---|
6308 | pTarget->m->strLocationFull.c_str(),
|
---|
6309 | pTarget->i_getChildren().size());
|
---|
6310 | }
|
---|
6311 | if (pTarget->m->type == MediumType_Immutable)
|
---|
6312 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
6313 | tr("Medium '%s' is immutable"),
|
---|
6314 | pTarget->m->strLocationFull.c_str());
|
---|
6315 | if (pTarget->m->type == MediumType_MultiAttach)
|
---|
6316 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
6317 | tr("Medium '%s' is multi-attach"),
|
---|
6318 | pTarget->m->strLocationFull.c_str());
|
---|
6319 | }
|
---|
6320 | ComObjPtr<Medium> pLast(fMergeForward ? (Medium *)pTarget : this);
|
---|
6321 | ComObjPtr<Medium> pLastIntermediate = pLast->i_getParent();
|
---|
6322 | for (pLast = pLastIntermediate;
|
---|
6323 | !pLast.isNull() && pLast != pTarget && pLast != this;
|
---|
6324 | pLast = pLast->i_getParent())
|
---|
6325 | {
|
---|
6326 | AutoReadLock alock(pLast COMMA_LOCKVAL_SRC_POS);
|
---|
6327 | if (pLast->i_getChildren().size() > 1)
|
---|
6328 | {
|
---|
6329 | throw setError(VBOX_E_OBJECT_IN_USE,
|
---|
6330 | tr("Medium '%s' involved in the merge operation has more than one child medium (%d)"),
|
---|
6331 | pLast->m->strLocationFull.c_str(),
|
---|
6332 | pLast->i_getChildren().size());
|
---|
6333 | }
|
---|
6334 | if (pLast->m->backRefs.size() != 0)
|
---|
6335 | throw setError(VBOX_E_OBJECT_IN_USE,
|
---|
6336 | tr("Medium '%s' is attached to %d virtual machines", "", pLast->m->backRefs.size()),
|
---|
6337 | pLast->m->strLocationFull.c_str(),
|
---|
6338 | pLast->m->backRefs.size());
|
---|
6339 |
|
---|
6340 | }
|
---|
6341 |
|
---|
6342 | /* Update medium states appropriately */
|
---|
6343 | {
|
---|
6344 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
6345 |
|
---|
6346 | if (m->state == MediumState_Created)
|
---|
6347 | {
|
---|
6348 | hrc = i_markForDeletion();
|
---|
6349 | if (FAILED(hrc))
|
---|
6350 | throw hrc;
|
---|
6351 | }
|
---|
6352 | else
|
---|
6353 | {
|
---|
6354 | if (fLockMedia)
|
---|
6355 | throw i_setStateError();
|
---|
6356 | else if ( m->state == MediumState_LockedWrite
|
---|
6357 | || m->state == MediumState_LockedRead)
|
---|
6358 | {
|
---|
6359 | /* Either mark it for deletion in locked state or allow
|
---|
6360 | * others to have done so. */
|
---|
6361 | if (m->preLockState == MediumState_Created)
|
---|
6362 | i_markLockedForDeletion();
|
---|
6363 | else if (m->preLockState != MediumState_Deleting)
|
---|
6364 | throw i_setStateError();
|
---|
6365 | }
|
---|
6366 | else
|
---|
6367 | throw i_setStateError();
|
---|
6368 | }
|
---|
6369 | }
|
---|
6370 |
|
---|
6371 | if (fMergeForward)
|
---|
6372 | {
|
---|
6373 | /* we will need parent to reparent target */
|
---|
6374 | pParentForTarget = i_getParent();
|
---|
6375 | }
|
---|
6376 | else
|
---|
6377 | {
|
---|
6378 | /* we will need to reparent children of the source */
|
---|
6379 | aChildrenToReparent = new MediumLockList();
|
---|
6380 | for (MediaList::const_iterator it = i_getChildren().begin();
|
---|
6381 | it != i_getChildren().end();
|
---|
6382 | ++it)
|
---|
6383 | {
|
---|
6384 | pMedium = *it;
|
---|
6385 | aChildrenToReparent->Append(pMedium, true /* fLockWrite */);
|
---|
6386 | }
|
---|
6387 | if (fLockMedia && aChildrenToReparent)
|
---|
6388 | {
|
---|
6389 | targetCaller.release();
|
---|
6390 | autoCaller.release();
|
---|
6391 | treeLock.release();
|
---|
6392 | hrc = aChildrenToReparent->Lock();
|
---|
6393 | treeLock.acquire();
|
---|
6394 | autoCaller.add();
|
---|
6395 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
6396 | targetCaller.add();
|
---|
6397 | AssertComRCThrowRC(targetCaller.hrc());
|
---|
6398 | if (FAILED(hrc))
|
---|
6399 | throw hrc;
|
---|
6400 | }
|
---|
6401 | }
|
---|
6402 | for (pLast = pLastIntermediate;
|
---|
6403 | !pLast.isNull() && pLast != pTarget && pLast != this;
|
---|
6404 | pLast = pLast->i_getParent())
|
---|
6405 | {
|
---|
6406 | AutoWriteLock alock(pLast COMMA_LOCKVAL_SRC_POS);
|
---|
6407 | if (pLast->m->state == MediumState_Created)
|
---|
6408 | {
|
---|
6409 | hrc = pLast->i_markForDeletion();
|
---|
6410 | if (FAILED(hrc))
|
---|
6411 | throw hrc;
|
---|
6412 | }
|
---|
6413 | else
|
---|
6414 | throw pLast->i_setStateError();
|
---|
6415 | }
|
---|
6416 |
|
---|
6417 | /* Tweak the lock list in the backward merge case, as the target
|
---|
6418 | * isn't marked to be locked for writing yet. */
|
---|
6419 | if (!fMergeForward)
|
---|
6420 | {
|
---|
6421 | MediumLockList::Base::iterator lockListBegin =
|
---|
6422 | aMediumLockList->GetBegin();
|
---|
6423 | MediumLockList::Base::iterator lockListEnd =
|
---|
6424 | aMediumLockList->GetEnd();
|
---|
6425 | ++lockListEnd;
|
---|
6426 | for (MediumLockList::Base::iterator it = lockListBegin;
|
---|
6427 | it != lockListEnd;
|
---|
6428 | ++it)
|
---|
6429 | {
|
---|
6430 | MediumLock &mediumLock = *it;
|
---|
6431 | if (mediumLock.GetMedium() == pTarget)
|
---|
6432 | {
|
---|
6433 | HRESULT hrc2 = mediumLock.UpdateLock(true);
|
---|
6434 | AssertComRC(hrc2);
|
---|
6435 | break;
|
---|
6436 | }
|
---|
6437 | }
|
---|
6438 | }
|
---|
6439 |
|
---|
6440 | if (fLockMedia)
|
---|
6441 | {
|
---|
6442 | targetCaller.release();
|
---|
6443 | autoCaller.release();
|
---|
6444 | treeLock.release();
|
---|
6445 | hrc = aMediumLockList->Lock();
|
---|
6446 | treeLock.acquire();
|
---|
6447 | autoCaller.add();
|
---|
6448 | AssertComRCThrowRC(autoCaller.hrc());
|
---|
6449 | targetCaller.add();
|
---|
6450 | AssertComRCThrowRC(targetCaller.hrc());
|
---|
6451 | if (FAILED(hrc))
|
---|
6452 | {
|
---|
6453 | AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
6454 | throw setError(hrc,
|
---|
6455 | tr("Failed to lock media when merging to '%s'"),
|
---|
6456 | pTarget->i_getLocationFull().c_str());
|
---|
6457 | }
|
---|
6458 | }
|
---|
6459 | }
|
---|
6460 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
6461 |
|
---|
6462 | if (FAILED(hrc))
|
---|
6463 | {
|
---|
6464 | if (aMediumLockList)
|
---|
6465 | {
|
---|
6466 | delete aMediumLockList;
|
---|
6467 | aMediumLockList = NULL;
|
---|
6468 | }
|
---|
6469 | if (aChildrenToReparent)
|
---|
6470 | {
|
---|
6471 | delete aChildrenToReparent;
|
---|
6472 | aChildrenToReparent = NULL;
|
---|
6473 | }
|
---|
6474 | }
|
---|
6475 |
|
---|
6476 | return hrc;
|
---|
6477 | }
|
---|
6478 |
|
---|
6479 | /**
|
---|
6480 | * Merges this medium to the specified medium which must be either its
|
---|
6481 | * direct ancestor or descendant.
|
---|
6482 | *
|
---|
6483 | * Given this medium is SOURCE and the specified medium is TARGET, we will
|
---|
6484 | * get two variants of the merge operation:
|
---|
6485 | *
|
---|
6486 | * forward merge
|
---|
6487 | * ------------------------->
|
---|
6488 | * [Extra] <- SOURCE <- Intermediate <- TARGET
|
---|
6489 | * Any Del Del LockWr
|
---|
6490 | *
|
---|
6491 | *
|
---|
6492 | * backward merge
|
---|
6493 | * <-------------------------
|
---|
6494 | * TARGET <- Intermediate <- SOURCE <- [Extra]
|
---|
6495 | * LockWr Del Del LockWr
|
---|
6496 | *
|
---|
6497 | * Each diagram shows the involved media on the media chain where
|
---|
6498 | * SOURCE and TARGET belong. Under each medium there is a state value which
|
---|
6499 | * the medium must have at a time of the mergeTo() call.
|
---|
6500 | *
|
---|
6501 | * The media in the square braces may be absent (e.g. when the forward
|
---|
6502 | * operation takes place and SOURCE is the base medium, or when the backward
|
---|
6503 | * merge operation takes place and TARGET is the last child in the chain) but if
|
---|
6504 | * they present they are involved too as shown.
|
---|
6505 | *
|
---|
6506 | * Neither the source medium nor intermediate media may be attached to
|
---|
6507 | * any VM directly or in the snapshot, otherwise this method will assert.
|
---|
6508 | *
|
---|
6509 | * The #i_prepareMergeTo() method must be called prior to this method to place
|
---|
6510 | * all involved to necessary states and perform other consistency checks.
|
---|
6511 | *
|
---|
6512 | * If @a aWait is @c true then this method will perform the operation on the
|
---|
6513 | * calling thread and will not return to the caller until the operation is
|
---|
6514 | * completed. When this method succeeds, all intermediate medium objects in
|
---|
6515 | * the chain will be uninitialized, the state of the target medium (and all
|
---|
6516 | * involved extra media) will be restored. @a aMediumLockList will not be
|
---|
6517 | * deleted, whether the operation is successful or not. The caller has to do
|
---|
6518 | * this if appropriate. Note that this (source) medium is not uninitialized
|
---|
6519 | * because of possible AutoCaller instances held by the caller of this method
|
---|
6520 | * on the current thread. It's therefore the responsibility of the caller to
|
---|
6521 | * call Medium::uninit() after releasing all callers.
|
---|
6522 | *
|
---|
6523 | * If @a aWait is @c false then this method will create a thread to perform the
|
---|
6524 | * operation asynchronously and will return immediately. If the operation
|
---|
6525 | * succeeds, the thread will uninitialize the source medium object and all
|
---|
6526 | * intermediate medium objects in the chain, reset the state of the target
|
---|
6527 | * medium (and all involved extra media) and delete @a aMediumLockList.
|
---|
6528 | * If the operation fails, the thread will only reset the states of all
|
---|
6529 | * involved media and delete @a aMediumLockList.
|
---|
6530 | *
|
---|
6531 | * When this method fails (regardless of the @a aWait mode), it is a caller's
|
---|
6532 | * responsibility to undo state changes and delete @a aMediumLockList using
|
---|
6533 | * #i_cancelMergeTo().
|
---|
6534 | *
|
---|
6535 | * If @a aProgress is not NULL but the object it points to is @c null then a new
|
---|
6536 | * progress object will be created and assigned to @a *aProgress on success,
|
---|
6537 | * otherwise the existing progress object is used. If Progress is NULL, then no
|
---|
6538 | * progress object is created/used at all. Note that @a aProgress cannot be
|
---|
6539 | * NULL when @a aWait is @c false (this method will assert in this case).
|
---|
6540 | *
|
---|
6541 | * @param pTarget Target medium.
|
---|
6542 | * @param fMergeForward Merge direction.
|
---|
6543 | * @param pParentForTarget New parent for target medium after merge.
|
---|
6544 | * @param aChildrenToReparent List of children of the source which will have
|
---|
6545 | * to be reparented to the target after merge.
|
---|
6546 | * @param aMediumLockList Medium locking information.
|
---|
6547 | * @param aProgress Where to find/store a Progress object to track operation
|
---|
6548 | * completion.
|
---|
6549 | * @param aWait @c true if this method should block instead of creating
|
---|
6550 | * an asynchronous thread.
|
---|
6551 | * @param aNotify Notify about media for which metadata is changed
|
---|
6552 | * during execution of the function.
|
---|
6553 | *
|
---|
6554 | * @note Locks the tree lock for writing. Locks the media from the chain
|
---|
6555 | * for writing.
|
---|
6556 | */
|
---|
6557 | HRESULT Medium::i_mergeTo(const ComObjPtr<Medium> &pTarget,
|
---|
6558 | bool fMergeForward,
|
---|
6559 | const ComObjPtr<Medium> &pParentForTarget,
|
---|
6560 | MediumLockList *aChildrenToReparent,
|
---|
6561 | MediumLockList *aMediumLockList,
|
---|
6562 | ComObjPtr<Progress> *aProgress,
|
---|
6563 | bool aWait, bool aNotify)
|
---|
6564 | {
|
---|
6565 | AssertReturn(pTarget != NULL, E_FAIL);
|
---|
6566 | AssertReturn(pTarget != this, E_FAIL);
|
---|
6567 | AssertReturn(aMediumLockList != NULL, E_FAIL);
|
---|
6568 | AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
|
---|
6569 |
|
---|
6570 | AutoCaller autoCaller(this);
|
---|
6571 | AssertComRCReturnRC(autoCaller.hrc());
|
---|
6572 |
|
---|
6573 | AutoCaller targetCaller(pTarget);
|
---|
6574 | AssertComRCReturnRC(targetCaller.hrc());
|
---|
6575 |
|
---|
6576 | HRESULT hrc = S_OK;
|
---|
6577 | ComObjPtr<Progress> pProgress;
|
---|
6578 | Medium::Task *pTask = NULL;
|
---|
6579 |
|
---|
6580 | try
|
---|
6581 | {
|
---|
6582 | if (aProgress != NULL)
|
---|
6583 | {
|
---|
6584 | /* use the existing progress object... */
|
---|
6585 | pProgress = *aProgress;
|
---|
6586 |
|
---|
6587 | /* ...but create a new one if it is null */
|
---|
6588 | if (pProgress.isNull())
|
---|
6589 | {
|
---|
6590 | Utf8Str tgtName;
|
---|
6591 | {
|
---|
6592 | AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
6593 | tgtName = pTarget->i_getName();
|
---|
6594 | }
|
---|
6595 |
|
---|
6596 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
6597 |
|
---|
6598 | pProgress.createObject();
|
---|
6599 | hrc = pProgress->init(m->pVirtualBox,
|
---|
6600 | static_cast<IMedium*>(this),
|
---|
6601 | BstrFmt(tr("Merging medium '%s' to '%s'"),
|
---|
6602 | i_getName().c_str(),
|
---|
6603 | tgtName.c_str()).raw(),
|
---|
6604 | TRUE, /* aCancelable */
|
---|
6605 | 2, /* Number of opearations */
|
---|
6606 | BstrFmt(tr("Resizing medium '%s' before merge"),
|
---|
6607 | tgtName.c_str()).raw()
|
---|
6608 | );
|
---|
6609 | if (FAILED(hrc))
|
---|
6610 | throw hrc;
|
---|
6611 | }
|
---|
6612 | }
|
---|
6613 |
|
---|
6614 | /* setup task object to carry out the operation sync/async */
|
---|
6615 | pTask = new Medium::MergeTask(this, pTarget, fMergeForward,
|
---|
6616 | pParentForTarget, aChildrenToReparent,
|
---|
6617 | pProgress, aMediumLockList,
|
---|
6618 | aWait /* fKeepMediumLockList */,
|
---|
6619 | aNotify);
|
---|
6620 | hrc = pTask->hrc();
|
---|
6621 | AssertComRC(hrc);
|
---|
6622 | if (FAILED(hrc))
|
---|
6623 | throw hrc;
|
---|
6624 | }
|
---|
6625 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
6626 |
|
---|
6627 | if (SUCCEEDED(hrc))
|
---|
6628 | {
|
---|
6629 | if (aWait)
|
---|
6630 | {
|
---|
6631 | hrc = pTask->runNow();
|
---|
6632 | delete pTask;
|
---|
6633 | }
|
---|
6634 | else
|
---|
6635 | hrc = pTask->createThread();
|
---|
6636 | pTask = NULL;
|
---|
6637 | if (SUCCEEDED(hrc) && aProgress != NULL)
|
---|
6638 | *aProgress = pProgress;
|
---|
6639 | }
|
---|
6640 | else if (pTask != NULL)
|
---|
6641 | delete pTask;
|
---|
6642 |
|
---|
6643 | return hrc;
|
---|
6644 | }
|
---|
6645 |
|
---|
6646 | /**
|
---|
6647 | * Undoes what #i_prepareMergeTo() did. Must be called if #mergeTo() is not
|
---|
6648 | * called or fails. Frees memory occupied by @a aMediumLockList and unlocks
|
---|
6649 | * the medium objects in @a aChildrenToReparent.
|
---|
6650 | *
|
---|
6651 | * @param aChildrenToReparent List of children of the source which will have
|
---|
6652 | * to be reparented to the target after merge.
|
---|
6653 | * @param aMediumLockList Medium locking information.
|
---|
6654 | *
|
---|
6655 | * @note Locks the tree lock for writing. Locks the media from the chain
|
---|
6656 | * for writing.
|
---|
6657 | */
|
---|
6658 | void Medium::i_cancelMergeTo(MediumLockList *aChildrenToReparent,
|
---|
6659 | MediumLockList *aMediumLockList)
|
---|
6660 | {
|
---|
6661 | AutoCaller autoCaller(this);
|
---|
6662 | AssertComRCReturnVoid(autoCaller.hrc());
|
---|
6663 |
|
---|
6664 | AssertReturnVoid(aMediumLockList != NULL);
|
---|
6665 |
|
---|
6666 | /* Revert media marked for deletion to previous state. */
|
---|
6667 | MediumLockList::Base::const_iterator mediumListBegin =
|
---|
6668 | aMediumLockList->GetBegin();
|
---|
6669 | MediumLockList::Base::const_iterator mediumListEnd =
|
---|
6670 | aMediumLockList->GetEnd();
|
---|
6671 | for (MediumLockList::Base::const_iterator it = mediumListBegin;
|
---|
6672 | it != mediumListEnd;
|
---|
6673 | ++it)
|
---|
6674 | {
|
---|
6675 | const MediumLock &mediumLock = *it;
|
---|
6676 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
6677 | AutoWriteLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
6678 |
|
---|
6679 | if (pMedium->m->state == MediumState_Deleting)
|
---|
6680 | {
|
---|
6681 | HRESULT hrc = pMedium->i_unmarkForDeletion();
|
---|
6682 | AssertComRC(hrc);
|
---|
6683 | }
|
---|
6684 | else if ( ( pMedium->m->state == MediumState_LockedWrite
|
---|
6685 | || pMedium->m->state == MediumState_LockedRead)
|
---|
6686 | && pMedium->m->preLockState == MediumState_Deleting)
|
---|
6687 | {
|
---|
6688 | HRESULT hrc = pMedium->i_unmarkLockedForDeletion();
|
---|
6689 | AssertComRC(hrc);
|
---|
6690 | }
|
---|
6691 | }
|
---|
6692 |
|
---|
6693 | /* the destructor will do the work */
|
---|
6694 | delete aMediumLockList;
|
---|
6695 |
|
---|
6696 | /* unlock the children which had to be reparented, the destructor will do
|
---|
6697 | * the work */
|
---|
6698 | if (aChildrenToReparent)
|
---|
6699 | delete aChildrenToReparent;
|
---|
6700 | }
|
---|
6701 |
|
---|
6702 | /**
|
---|
6703 | * Resizes the media.
|
---|
6704 | *
|
---|
6705 | * If @a aWait is @c true then this method will perform the operation on the
|
---|
6706 | * calling thread and will not return to the caller until the operation is
|
---|
6707 | * completed. When this method succeeds, the state of the target medium (and all
|
---|
6708 | * involved extra media) will be restored. @a aMediumLockList will not be
|
---|
6709 | * deleted, whether the operation is successful or not. The caller has to do
|
---|
6710 | * this if appropriate.
|
---|
6711 | *
|
---|
6712 | * If @a aWait is @c false then this method will create a thread to perform the
|
---|
6713 | * operation asynchronously and will return immediately. The thread will reset
|
---|
6714 | * the state of the target medium (and all involved extra media) and delete
|
---|
6715 | * @a aMediumLockList.
|
---|
6716 | *
|
---|
6717 | * When this method fails (regardless of the @a aWait mode), it is a caller's
|
---|
6718 | * responsibility to undo state changes and delete @a aMediumLockList.
|
---|
6719 | *
|
---|
6720 | * If @a aProgress is not NULL but the object it points to is @c null then a new
|
---|
6721 | * progress object will be created and assigned to @a *aProgress on success,
|
---|
6722 | * otherwise the existing progress object is used. If Progress is NULL, then no
|
---|
6723 | * progress object is created/used at all. Note that @a aProgress cannot be
|
---|
6724 | * NULL when @a aWait is @c false (this method will assert in this case).
|
---|
6725 | *
|
---|
6726 | * @param aLogicalSize New nominal capacity of the medium in bytes.
|
---|
6727 | * @param aMediumLockList Medium locking information.
|
---|
6728 | * @param aProgress Where to find/store a Progress object to track operation
|
---|
6729 | * completion.
|
---|
6730 | * @param aWait @c true if this method should block instead of creating
|
---|
6731 | * an asynchronous thread.
|
---|
6732 | * @param aNotify Notify about media for which metadata is changed
|
---|
6733 | * during execution of the function.
|
---|
6734 | *
|
---|
6735 | * @note Locks the media from the chain for writing.
|
---|
6736 | */
|
---|
6737 |
|
---|
6738 | HRESULT Medium::i_resize(uint64_t aLogicalSize,
|
---|
6739 | MediumLockList *aMediumLockList,
|
---|
6740 | ComObjPtr<Progress> *aProgress,
|
---|
6741 | bool aWait,
|
---|
6742 | bool aNotify)
|
---|
6743 | {
|
---|
6744 | AssertReturn(aMediumLockList != NULL, E_FAIL);
|
---|
6745 | AssertReturn(aProgress != NULL || aWait == true, E_FAIL);
|
---|
6746 |
|
---|
6747 | AutoCaller autoCaller(this);
|
---|
6748 | AssertComRCReturnRC(autoCaller.hrc());
|
---|
6749 |
|
---|
6750 | HRESULT hrc = S_OK;
|
---|
6751 | ComObjPtr<Progress> pProgress;
|
---|
6752 | Medium::Task *pTask = NULL;
|
---|
6753 |
|
---|
6754 | try
|
---|
6755 | {
|
---|
6756 | if (aProgress != NULL)
|
---|
6757 | {
|
---|
6758 | /* use the existing progress object... */
|
---|
6759 | pProgress = *aProgress;
|
---|
6760 |
|
---|
6761 | /* ...but create a new one if it is null */
|
---|
6762 | if (pProgress.isNull())
|
---|
6763 | {
|
---|
6764 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
6765 |
|
---|
6766 | pProgress.createObject();
|
---|
6767 | hrc = pProgress->init(m->pVirtualBox,
|
---|
6768 | static_cast <IMedium *>(this),
|
---|
6769 | BstrFmt(tr("Resizing medium '%s'"), m->strLocationFull.c_str()).raw(),
|
---|
6770 | TRUE /* aCancelable */);
|
---|
6771 | if (FAILED(hrc))
|
---|
6772 | throw hrc;
|
---|
6773 | }
|
---|
6774 | }
|
---|
6775 |
|
---|
6776 | /* setup task object to carry out the operation asynchronously */
|
---|
6777 | pTask = new Medium::ResizeTask(this,
|
---|
6778 | aLogicalSize,
|
---|
6779 | pProgress,
|
---|
6780 | aMediumLockList,
|
---|
6781 | aWait /* fKeepMediumLockList */,
|
---|
6782 | aNotify);
|
---|
6783 | hrc = pTask->hrc();
|
---|
6784 | AssertComRC(hrc);
|
---|
6785 | if (FAILED(hrc))
|
---|
6786 | throw hrc;
|
---|
6787 | }
|
---|
6788 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
6789 |
|
---|
6790 | if (SUCCEEDED(hrc))
|
---|
6791 | {
|
---|
6792 | if (aWait)
|
---|
6793 | {
|
---|
6794 | hrc = pTask->runNow();
|
---|
6795 | delete pTask;
|
---|
6796 | }
|
---|
6797 | else
|
---|
6798 | hrc = pTask->createThread();
|
---|
6799 | pTask = NULL;
|
---|
6800 | if (SUCCEEDED(hrc) && aProgress != NULL)
|
---|
6801 | *aProgress = pProgress;
|
---|
6802 | }
|
---|
6803 | else if (pTask != NULL)
|
---|
6804 | delete pTask;
|
---|
6805 |
|
---|
6806 | return hrc;
|
---|
6807 | }
|
---|
6808 |
|
---|
6809 | /**
|
---|
6810 | * Fix the parent UUID of all children to point to this medium as their
|
---|
6811 | * parent.
|
---|
6812 | */
|
---|
6813 | HRESULT Medium::i_fixParentUuidOfChildren(MediumLockList *pChildrenToReparent)
|
---|
6814 | {
|
---|
6815 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
6816 | * to lock order violations, it probably causes lock order issues related
|
---|
6817 | * to the AutoCaller usage. Likewise the code using this method seems
|
---|
6818 | * problematic. */
|
---|
6819 | Assert(!isWriteLockOnCurrentThread());
|
---|
6820 | Assert(!m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
|
---|
6821 | MediumLockList mediumLockList;
|
---|
6822 | HRESULT hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
6823 | NULL /* pToLockWrite */,
|
---|
6824 | false /* fMediumLockWriteAll */,
|
---|
6825 | this,
|
---|
6826 | mediumLockList);
|
---|
6827 | AssertComRCReturnRC(hrc);
|
---|
6828 |
|
---|
6829 | try
|
---|
6830 | {
|
---|
6831 | PVDISK hdd;
|
---|
6832 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
6833 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
6834 |
|
---|
6835 | try
|
---|
6836 | {
|
---|
6837 | MediumLockList::Base::iterator lockListBegin =
|
---|
6838 | mediumLockList.GetBegin();
|
---|
6839 | MediumLockList::Base::iterator lockListEnd =
|
---|
6840 | mediumLockList.GetEnd();
|
---|
6841 | for (MediumLockList::Base::iterator it = lockListBegin;
|
---|
6842 | it != lockListEnd;
|
---|
6843 | ++it)
|
---|
6844 | {
|
---|
6845 | MediumLock &mediumLock = *it;
|
---|
6846 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
6847 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
6848 |
|
---|
6849 | // open the medium
|
---|
6850 | vrc = VDOpen(hdd,
|
---|
6851 | pMedium->m->strFormat.c_str(),
|
---|
6852 | pMedium->m->strLocationFull.c_str(),
|
---|
6853 | VD_OPEN_FLAGS_READONLY | m->uOpenFlagsDef,
|
---|
6854 | pMedium->m->vdImageIfaces);
|
---|
6855 | if (RT_FAILURE(vrc))
|
---|
6856 | throw vrc;
|
---|
6857 | }
|
---|
6858 |
|
---|
6859 | MediumLockList::Base::iterator childrenBegin = pChildrenToReparent->GetBegin();
|
---|
6860 | MediumLockList::Base::iterator childrenEnd = pChildrenToReparent->GetEnd();
|
---|
6861 | for (MediumLockList::Base::iterator it = childrenBegin;
|
---|
6862 | it != childrenEnd;
|
---|
6863 | ++it)
|
---|
6864 | {
|
---|
6865 | Medium *pMedium = it->GetMedium();
|
---|
6866 | /* VD_OPEN_FLAGS_INFO since UUID is wrong yet */
|
---|
6867 | vrc = VDOpen(hdd,
|
---|
6868 | pMedium->m->strFormat.c_str(),
|
---|
6869 | pMedium->m->strLocationFull.c_str(),
|
---|
6870 | VD_OPEN_FLAGS_INFO | m->uOpenFlagsDef,
|
---|
6871 | pMedium->m->vdImageIfaces);
|
---|
6872 | if (RT_FAILURE(vrc))
|
---|
6873 | throw vrc;
|
---|
6874 |
|
---|
6875 | vrc = VDSetParentUuid(hdd, VD_LAST_IMAGE, m->id.raw());
|
---|
6876 | if (RT_FAILURE(vrc))
|
---|
6877 | throw vrc;
|
---|
6878 |
|
---|
6879 | vrc = VDClose(hdd, false /* fDelete */);
|
---|
6880 | if (RT_FAILURE(vrc))
|
---|
6881 | throw vrc;
|
---|
6882 | }
|
---|
6883 | }
|
---|
6884 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
6885 | catch (int vrcXcpt)
|
---|
6886 | {
|
---|
6887 | hrc = setErrorBoth(E_FAIL, vrcXcpt,
|
---|
6888 | tr("Could not update medium UUID references to parent '%s' (%s)"),
|
---|
6889 | m->strLocationFull.c_str(),
|
---|
6890 | i_vdError(vrcXcpt).c_str());
|
---|
6891 | }
|
---|
6892 |
|
---|
6893 | VDDestroy(hdd);
|
---|
6894 | }
|
---|
6895 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
6896 |
|
---|
6897 | return hrc;
|
---|
6898 | }
|
---|
6899 |
|
---|
6900 | /**
|
---|
6901 | *
|
---|
6902 | * @note Similar code exists in i_taskExportHandler.
|
---|
6903 | */
|
---|
6904 | HRESULT Medium::i_addRawToFss(const char *aFilename, SecretKeyStore *pKeyStore, RTVFSFSSTREAM hVfsFssDst,
|
---|
6905 | const ComObjPtr<Progress> &aProgress, bool fSparse)
|
---|
6906 | {
|
---|
6907 | AutoCaller autoCaller(this);
|
---|
6908 | HRESULT hrc = autoCaller.hrc();
|
---|
6909 | if (SUCCEEDED(hrc))
|
---|
6910 | {
|
---|
6911 | /*
|
---|
6912 | * Get a readonly hdd for this medium.
|
---|
6913 | */
|
---|
6914 | MediumCryptoFilterSettings CryptoSettingsRead;
|
---|
6915 | MediumLockList SourceMediumLockList;
|
---|
6916 | PVDISK pHdd;
|
---|
6917 | hrc = i_openForIO(false /*fWritable*/, pKeyStore, &pHdd, &SourceMediumLockList, &CryptoSettingsRead);
|
---|
6918 | if (SUCCEEDED(hrc))
|
---|
6919 | {
|
---|
6920 | /*
|
---|
6921 | * Create a VFS file interface to the HDD and attach a progress wrapper
|
---|
6922 | * that monitors the progress reading of the raw image. The image will
|
---|
6923 | * be read twice if hVfsFssDst does sparse processing.
|
---|
6924 | */
|
---|
6925 | RTVFSFILE hVfsFileDisk = NIL_RTVFSFILE;
|
---|
6926 | int vrc = VDCreateVfsFileFromDisk(pHdd, 0 /*fFlags*/, &hVfsFileDisk);
|
---|
6927 | if (RT_SUCCESS(vrc))
|
---|
6928 | {
|
---|
6929 | RTVFSFILE hVfsFileProgress = NIL_RTVFSFILE;
|
---|
6930 | vrc = RTVfsCreateProgressForFile(hVfsFileDisk, aProgress->i_iprtProgressCallback, &*aProgress,
|
---|
6931 | RTVFSPROGRESS_F_CANCELABLE | RTVFSPROGRESS_F_FORWARD_SEEK_AS_READ,
|
---|
6932 | VDGetSize(pHdd, VD_LAST_IMAGE) * (fSparse ? 2 : 1) /*cbExpectedRead*/,
|
---|
6933 | 0 /*cbExpectedWritten*/, &hVfsFileProgress);
|
---|
6934 | RTVfsFileRelease(hVfsFileDisk);
|
---|
6935 | if (RT_SUCCESS(vrc))
|
---|
6936 | {
|
---|
6937 | RTVFSOBJ hVfsObj = RTVfsObjFromFile(hVfsFileProgress);
|
---|
6938 | RTVfsFileRelease(hVfsFileProgress);
|
---|
6939 |
|
---|
6940 | vrc = RTVfsFsStrmAdd(hVfsFssDst, aFilename, hVfsObj, 0 /*fFlags*/);
|
---|
6941 | RTVfsObjRelease(hVfsObj);
|
---|
6942 | if (RT_FAILURE(vrc))
|
---|
6943 | hrc = setErrorBoth(VBOX_E_FILE_ERROR, vrc, tr("Failed to add '%s' to output (%Rrc)"), aFilename, vrc);
|
---|
6944 | }
|
---|
6945 | else
|
---|
6946 | hrc = setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
6947 | tr("RTVfsCreateProgressForFile failed when processing '%s' (%Rrc)"), aFilename, vrc);
|
---|
6948 | }
|
---|
6949 | else
|
---|
6950 | hrc = setErrorBoth(VBOX_E_FILE_ERROR, vrc, tr("VDCreateVfsFileFromDisk failed for '%s' (%Rrc)"), aFilename, vrc);
|
---|
6951 | VDDestroy(pHdd);
|
---|
6952 | }
|
---|
6953 | }
|
---|
6954 | return hrc;
|
---|
6955 | }
|
---|
6956 |
|
---|
6957 | /**
|
---|
6958 | * Used by IAppliance to export disk images.
|
---|
6959 | *
|
---|
6960 | * @param aFilename Filename to create (UTF8).
|
---|
6961 | * @param aFormat Medium format for creating @a aFilename.
|
---|
6962 | * @param aVariant Which exact image format variant to use for the
|
---|
6963 | * destination image.
|
---|
6964 | * @param pKeyStore The optional key store for decrypting the data for
|
---|
6965 | * encrypted media during the export.
|
---|
6966 | * @param hVfsIosDst The destination I/O stream object.
|
---|
6967 | * @param aProgress Progress object to use.
|
---|
6968 | * @return
|
---|
6969 | *
|
---|
6970 | * @note The source format is defined by the Medium instance.
|
---|
6971 | */
|
---|
6972 | HRESULT Medium::i_exportFile(const char *aFilename,
|
---|
6973 | const ComObjPtr<MediumFormat> &aFormat,
|
---|
6974 | MediumVariant_T aVariant,
|
---|
6975 | SecretKeyStore *pKeyStore,
|
---|
6976 | RTVFSIOSTREAM hVfsIosDst,
|
---|
6977 | const ComObjPtr<Progress> &aProgress)
|
---|
6978 | {
|
---|
6979 | AssertPtrReturn(aFilename, E_INVALIDARG);
|
---|
6980 | AssertReturn(aFormat.isNotNull(), E_INVALIDARG);
|
---|
6981 | AssertReturn(aProgress.isNotNull(), E_INVALIDARG);
|
---|
6982 |
|
---|
6983 | AutoCaller autoCaller(this);
|
---|
6984 | HRESULT hrc = autoCaller.hrc();
|
---|
6985 | if (SUCCEEDED(hrc))
|
---|
6986 | {
|
---|
6987 | /*
|
---|
6988 | * Setup VD interfaces.
|
---|
6989 | */
|
---|
6990 | PVDINTERFACE pVDImageIfaces = m->vdImageIfaces;
|
---|
6991 | PVDINTERFACEIO pVfsIoIf;
|
---|
6992 | int vrc = VDIfCreateFromVfsStream(hVfsIosDst, RTFILE_O_WRITE, &pVfsIoIf);
|
---|
6993 | if (RT_SUCCESS(vrc))
|
---|
6994 | {
|
---|
6995 | vrc = VDInterfaceAdd(&pVfsIoIf->Core, "Medium::ExportTaskVfsIos", VDINTERFACETYPE_IO,
|
---|
6996 | pVfsIoIf, sizeof(VDINTERFACEIO), &pVDImageIfaces);
|
---|
6997 | if (RT_SUCCESS(vrc))
|
---|
6998 | {
|
---|
6999 | /*
|
---|
7000 | * Get a readonly hdd for this medium (source).
|
---|
7001 | */
|
---|
7002 | MediumCryptoFilterSettings CryptoSettingsRead;
|
---|
7003 | MediumLockList SourceMediumLockList;
|
---|
7004 | PVDISK pSrcHdd;
|
---|
7005 | hrc = i_openForIO(false /*fWritable*/, pKeyStore, &pSrcHdd, &SourceMediumLockList, &CryptoSettingsRead);
|
---|
7006 | if (SUCCEEDED(hrc))
|
---|
7007 | {
|
---|
7008 | /*
|
---|
7009 | * Create the target medium.
|
---|
7010 | */
|
---|
7011 | Utf8Str strDstFormat(aFormat->i_getId());
|
---|
7012 |
|
---|
7013 | /* ensure the target directory exists */
|
---|
7014 | uint64_t fDstCapabilities = aFormat->i_getCapabilities();
|
---|
7015 | if (fDstCapabilities & MediumFormatCapabilities_File)
|
---|
7016 | {
|
---|
7017 | Utf8Str strDstLocation(aFilename);
|
---|
7018 | hrc = VirtualBox::i_ensureFilePathExists(strDstLocation.c_str(),
|
---|
7019 | !(aVariant & MediumVariant_NoCreateDir) /* fCreate */);
|
---|
7020 | }
|
---|
7021 | if (SUCCEEDED(hrc))
|
---|
7022 | {
|
---|
7023 | PVDISK pDstHdd;
|
---|
7024 | vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &pDstHdd);
|
---|
7025 | if (RT_SUCCESS(vrc))
|
---|
7026 | {
|
---|
7027 | /*
|
---|
7028 | * Create an interface for getting progress callbacks.
|
---|
7029 | */
|
---|
7030 | VDINTERFACEPROGRESS ProgressIf = VDINTERFACEPROGRESS_INITALIZER(aProgress->i_vdProgressCallback);
|
---|
7031 | PVDINTERFACE pProgress = NULL;
|
---|
7032 | vrc = VDInterfaceAdd(&ProgressIf.Core, "export-progress", VDINTERFACETYPE_PROGRESS,
|
---|
7033 | &*aProgress, sizeof(ProgressIf), &pProgress);
|
---|
7034 | AssertRC(vrc);
|
---|
7035 |
|
---|
7036 | /*
|
---|
7037 | * Do the exporting.
|
---|
7038 | */
|
---|
7039 | vrc = VDCopy(pSrcHdd,
|
---|
7040 | VD_LAST_IMAGE,
|
---|
7041 | pDstHdd,
|
---|
7042 | strDstFormat.c_str(),
|
---|
7043 | aFilename,
|
---|
7044 | false /* fMoveByRename */,
|
---|
7045 | 0 /* cbSize */,
|
---|
7046 | aVariant & ~(MediumVariant_NoCreateDir | MediumVariant_Formatted | MediumVariant_VmdkESX | MediumVariant_VmdkRawDisk),
|
---|
7047 | NULL /* pDstUuid */,
|
---|
7048 | VD_OPEN_FLAGS_NORMAL | VD_OPEN_FLAGS_SEQUENTIAL,
|
---|
7049 | pProgress,
|
---|
7050 | pVDImageIfaces,
|
---|
7051 | NULL);
|
---|
7052 | if (RT_SUCCESS(vrc))
|
---|
7053 | hrc = S_OK;
|
---|
7054 | else
|
---|
7055 | hrc = setErrorBoth(VBOX_E_FILE_ERROR, vrc, tr("Could not create the exported medium '%s'%s"),
|
---|
7056 | aFilename, i_vdError(vrc).c_str());
|
---|
7057 | VDDestroy(pDstHdd);
|
---|
7058 | }
|
---|
7059 | else
|
---|
7060 | hrc = setErrorVrc(vrc);
|
---|
7061 | }
|
---|
7062 | }
|
---|
7063 | VDDestroy(pSrcHdd);
|
---|
7064 | }
|
---|
7065 | else
|
---|
7066 | hrc = setErrorVrc(vrc, "VDInterfaceAdd -> %Rrc", vrc);
|
---|
7067 | VDIfDestroyFromVfsStream(pVfsIoIf);
|
---|
7068 | }
|
---|
7069 | else
|
---|
7070 | hrc = setErrorVrc(vrc, "VDIfCreateFromVfsStream -> %Rrc", vrc);
|
---|
7071 | }
|
---|
7072 | return hrc;
|
---|
7073 | }
|
---|
7074 |
|
---|
7075 | /**
|
---|
7076 | * Used by IAppliance to import disk images.
|
---|
7077 | *
|
---|
7078 | * @param aFilename Filename to read (UTF8).
|
---|
7079 | * @param aFormat Medium format for reading @a aFilename.
|
---|
7080 | * @param aVariant Which exact image format variant to use
|
---|
7081 | * for the destination image.
|
---|
7082 | * @param aVfsIosSrc Handle to the source I/O stream.
|
---|
7083 | * @param aParent Parent medium. May be NULL.
|
---|
7084 | * @param aProgress Progress object to use.
|
---|
7085 | * @param aNotify Notify about media for which metadata is changed
|
---|
7086 | * during execution of the function.
|
---|
7087 | * @return
|
---|
7088 | * @note The destination format is defined by the Medium instance.
|
---|
7089 | *
|
---|
7090 | * @todo The only consumer of this method (Appliance::i_importOneDiskImage) is
|
---|
7091 | * already on a worker thread, so perhaps consider bypassing the thread
|
---|
7092 | * here and run in the task synchronously? VBoxSVC has enough threads as
|
---|
7093 | * it is...
|
---|
7094 | */
|
---|
7095 | HRESULT Medium::i_importFile(const char *aFilename,
|
---|
7096 | const ComObjPtr<MediumFormat> &aFormat,
|
---|
7097 | MediumVariant_T aVariant,
|
---|
7098 | RTVFSIOSTREAM aVfsIosSrc,
|
---|
7099 | const ComObjPtr<Medium> &aParent,
|
---|
7100 | const ComObjPtr<Progress> &aProgress,
|
---|
7101 | bool aNotify)
|
---|
7102 | {
|
---|
7103 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
7104 | * to lock order violations, it probably causes lock order issues related
|
---|
7105 | * to the AutoCaller usage. */
|
---|
7106 | AssertPtrReturn(aFilename, E_INVALIDARG);
|
---|
7107 | AssertReturn(!aFormat.isNull(), E_INVALIDARG);
|
---|
7108 | AssertReturn(!aProgress.isNull(), E_INVALIDARG);
|
---|
7109 |
|
---|
7110 | AutoCaller autoCaller(this);
|
---|
7111 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
7112 |
|
---|
7113 | HRESULT hrc = S_OK;
|
---|
7114 | Medium::Task *pTask = NULL;
|
---|
7115 |
|
---|
7116 | try
|
---|
7117 | {
|
---|
7118 | // locking: we need the tree lock first because we access parent pointers
|
---|
7119 | // and we need to write-lock the media involved
|
---|
7120 | uint32_t cHandles = 2;
|
---|
7121 | LockHandle* pHandles[3] = { &m->pVirtualBox->i_getMediaTreeLockHandle(),
|
---|
7122 | this->lockHandle() };
|
---|
7123 | /* Only add parent to the lock if it is not null */
|
---|
7124 | if (!aParent.isNull())
|
---|
7125 | pHandles[cHandles++] = aParent->lockHandle();
|
---|
7126 | AutoWriteLock alock(cHandles,
|
---|
7127 | pHandles
|
---|
7128 | COMMA_LOCKVAL_SRC_POS);
|
---|
7129 |
|
---|
7130 | if ( m->state != MediumState_NotCreated
|
---|
7131 | && m->state != MediumState_Created)
|
---|
7132 | throw i_setStateError();
|
---|
7133 |
|
---|
7134 | /* Build the target lock list. */
|
---|
7135 | MediumLockList *pTargetMediumLockList(new MediumLockList());
|
---|
7136 | alock.release();
|
---|
7137 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
7138 | this /* pToLockWrite */,
|
---|
7139 | false /* fMediumLockWriteAll */,
|
---|
7140 | aParent,
|
---|
7141 | *pTargetMediumLockList);
|
---|
7142 | alock.acquire();
|
---|
7143 | if (FAILED(hrc))
|
---|
7144 | {
|
---|
7145 | delete pTargetMediumLockList;
|
---|
7146 | throw hrc;
|
---|
7147 | }
|
---|
7148 |
|
---|
7149 | alock.release();
|
---|
7150 | hrc = pTargetMediumLockList->Lock();
|
---|
7151 | alock.acquire();
|
---|
7152 | if (FAILED(hrc))
|
---|
7153 | {
|
---|
7154 | delete pTargetMediumLockList;
|
---|
7155 | throw setError(hrc,
|
---|
7156 | tr("Failed to lock target media '%s'"),
|
---|
7157 | i_getLocationFull().c_str());
|
---|
7158 | }
|
---|
7159 |
|
---|
7160 | /* setup task object to carry out the operation asynchronously */
|
---|
7161 | pTask = new Medium::ImportTask(this, aProgress, aFilename, aFormat, aVariant,
|
---|
7162 | aVfsIosSrc, aParent, pTargetMediumLockList, false, aNotify);
|
---|
7163 | hrc = pTask->hrc();
|
---|
7164 | AssertComRC(hrc);
|
---|
7165 | if (FAILED(hrc))
|
---|
7166 | throw hrc;
|
---|
7167 |
|
---|
7168 | if (m->state == MediumState_NotCreated)
|
---|
7169 | m->state = MediumState_Creating;
|
---|
7170 | }
|
---|
7171 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
7172 |
|
---|
7173 | if (SUCCEEDED(hrc))
|
---|
7174 | {
|
---|
7175 | hrc = pTask->createThread();
|
---|
7176 | pTask = NULL;
|
---|
7177 | }
|
---|
7178 | else if (pTask != NULL)
|
---|
7179 | delete pTask;
|
---|
7180 |
|
---|
7181 | return hrc;
|
---|
7182 | }
|
---|
7183 |
|
---|
7184 | /**
|
---|
7185 | * Internal version of the public CloneTo API which allows to enable certain
|
---|
7186 | * optimizations to improve speed during VM cloning.
|
---|
7187 | *
|
---|
7188 | * @param aTarget Target medium
|
---|
7189 | * @param aVariant Which exact image format variant to use
|
---|
7190 | * for the destination image.
|
---|
7191 | * @param aParent Parent medium. May be NULL.
|
---|
7192 | * @param aProgress Progress object to use.
|
---|
7193 | * @param idxSrcImageSame The last image in the source chain which has the
|
---|
7194 | * same content as the given image in the destination
|
---|
7195 | * chain. Use UINT32_MAX to disable this optimization.
|
---|
7196 | * @param idxDstImageSame The last image in the destination chain which has the
|
---|
7197 | * same content as the given image in the source chain.
|
---|
7198 | * Use UINT32_MAX to disable this optimization.
|
---|
7199 | * @param aNotify Notify about media for which metadata is changed
|
---|
7200 | * during execution of the function.
|
---|
7201 | * @return
|
---|
7202 | */
|
---|
7203 | HRESULT Medium::i_cloneToEx(const ComObjPtr<Medium> &aTarget, MediumVariant_T aVariant,
|
---|
7204 | const ComObjPtr<Medium> &aParent, IProgress **aProgress,
|
---|
7205 | uint32_t idxSrcImageSame, uint32_t idxDstImageSame, bool aNotify)
|
---|
7206 | {
|
---|
7207 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
7208 | * to lock order violations, it probably causes lock order issues related
|
---|
7209 | * to the AutoCaller usage. */
|
---|
7210 | CheckComArgNotNull(aTarget);
|
---|
7211 | CheckComArgOutPointerValid(aProgress);
|
---|
7212 | ComAssertRet(aTarget != this, E_INVALIDARG);
|
---|
7213 |
|
---|
7214 | AutoCaller autoCaller(this);
|
---|
7215 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
7216 |
|
---|
7217 | HRESULT hrc = S_OK;
|
---|
7218 | ComObjPtr<Progress> pProgress;
|
---|
7219 | Medium::Task *pTask = NULL;
|
---|
7220 |
|
---|
7221 | try
|
---|
7222 | {
|
---|
7223 | // locking: we need the tree lock first because we access parent pointers
|
---|
7224 | // and we need to write-lock the media involved
|
---|
7225 | uint32_t cHandles = 3;
|
---|
7226 | LockHandle* pHandles[4] = { &m->pVirtualBox->i_getMediaTreeLockHandle(),
|
---|
7227 | this->lockHandle(),
|
---|
7228 | aTarget->lockHandle() };
|
---|
7229 | /* Only add parent to the lock if it is not null */
|
---|
7230 | if (!aParent.isNull())
|
---|
7231 | pHandles[cHandles++] = aParent->lockHandle();
|
---|
7232 | AutoWriteLock alock(cHandles,
|
---|
7233 | pHandles
|
---|
7234 | COMMA_LOCKVAL_SRC_POS);
|
---|
7235 |
|
---|
7236 | if ( aTarget->m->state != MediumState_NotCreated
|
---|
7237 | && aTarget->m->state != MediumState_Created)
|
---|
7238 | throw aTarget->i_setStateError();
|
---|
7239 |
|
---|
7240 | /* Build the source lock list. */
|
---|
7241 | MediumLockList *pSourceMediumLockList(new MediumLockList());
|
---|
7242 | alock.release();
|
---|
7243 | hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
7244 | NULL /* pToLockWrite */,
|
---|
7245 | false /* fMediumLockWriteAll */,
|
---|
7246 | NULL,
|
---|
7247 | *pSourceMediumLockList);
|
---|
7248 | alock.acquire();
|
---|
7249 | if (FAILED(hrc))
|
---|
7250 | {
|
---|
7251 | delete pSourceMediumLockList;
|
---|
7252 | throw hrc;
|
---|
7253 | }
|
---|
7254 |
|
---|
7255 | /* Build the target lock list (including the to-be parent chain). */
|
---|
7256 | MediumLockList *pTargetMediumLockList(new MediumLockList());
|
---|
7257 | alock.release();
|
---|
7258 | hrc = aTarget->i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
7259 | aTarget /* pToLockWrite */,
|
---|
7260 | false /* fMediumLockWriteAll */,
|
---|
7261 | aParent,
|
---|
7262 | *pTargetMediumLockList);
|
---|
7263 | alock.acquire();
|
---|
7264 | if (FAILED(hrc))
|
---|
7265 | {
|
---|
7266 | delete pSourceMediumLockList;
|
---|
7267 | delete pTargetMediumLockList;
|
---|
7268 | throw hrc;
|
---|
7269 | }
|
---|
7270 |
|
---|
7271 | alock.release();
|
---|
7272 | hrc = pSourceMediumLockList->Lock();
|
---|
7273 | alock.acquire();
|
---|
7274 | if (FAILED(hrc))
|
---|
7275 | {
|
---|
7276 | delete pSourceMediumLockList;
|
---|
7277 | delete pTargetMediumLockList;
|
---|
7278 | throw setError(hrc,
|
---|
7279 | tr("Failed to lock source media '%s'"),
|
---|
7280 | i_getLocationFull().c_str());
|
---|
7281 | }
|
---|
7282 | alock.release();
|
---|
7283 | hrc = pTargetMediumLockList->Lock();
|
---|
7284 | alock.acquire();
|
---|
7285 | if (FAILED(hrc))
|
---|
7286 | {
|
---|
7287 | delete pSourceMediumLockList;
|
---|
7288 | delete pTargetMediumLockList;
|
---|
7289 | throw setError(hrc,
|
---|
7290 | tr("Failed to lock target media '%s'"),
|
---|
7291 | aTarget->i_getLocationFull().c_str());
|
---|
7292 | }
|
---|
7293 |
|
---|
7294 | pProgress.createObject();
|
---|
7295 | hrc = pProgress->init(m->pVirtualBox,
|
---|
7296 | static_cast <IMedium *>(this),
|
---|
7297 | BstrFmt(tr("Creating clone medium '%s'"), aTarget->m->strLocationFull.c_str()).raw(),
|
---|
7298 | TRUE /* aCancelable */);
|
---|
7299 | if (FAILED(hrc))
|
---|
7300 | {
|
---|
7301 | delete pSourceMediumLockList;
|
---|
7302 | delete pTargetMediumLockList;
|
---|
7303 | throw hrc;
|
---|
7304 | }
|
---|
7305 |
|
---|
7306 | /* setup task object to carry out the operation asynchronously */
|
---|
7307 | pTask = new Medium::CloneTask(this, pProgress, aTarget, aVariant,
|
---|
7308 | aParent, idxSrcImageSame,
|
---|
7309 | idxDstImageSame, pSourceMediumLockList,
|
---|
7310 | pTargetMediumLockList, false, false, aNotify);
|
---|
7311 | hrc = pTask->hrc();
|
---|
7312 | AssertComRC(hrc);
|
---|
7313 | if (FAILED(hrc))
|
---|
7314 | throw hrc;
|
---|
7315 |
|
---|
7316 | if (aTarget->m->state == MediumState_NotCreated)
|
---|
7317 | aTarget->m->state = MediumState_Creating;
|
---|
7318 | }
|
---|
7319 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
7320 |
|
---|
7321 | if (SUCCEEDED(hrc))
|
---|
7322 | {
|
---|
7323 | hrc = pTask->createThread();
|
---|
7324 | pTask = NULL;
|
---|
7325 | if (SUCCEEDED(hrc))
|
---|
7326 | pProgress.queryInterfaceTo(aProgress);
|
---|
7327 | }
|
---|
7328 | else if (pTask != NULL)
|
---|
7329 | delete pTask;
|
---|
7330 |
|
---|
7331 | return hrc;
|
---|
7332 | }
|
---|
7333 |
|
---|
7334 | /**
|
---|
7335 | * Returns the key identifier for this medium if encryption is configured.
|
---|
7336 | *
|
---|
7337 | * @returns Key identifier or empty string if no encryption is configured.
|
---|
7338 | */
|
---|
7339 | const Utf8Str& Medium::i_getKeyId()
|
---|
7340 | {
|
---|
7341 | ComObjPtr<Medium> pBase = i_getBase();
|
---|
7342 |
|
---|
7343 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
7344 |
|
---|
7345 | settings::StringsMap::const_iterator it = pBase->m->mapProperties.find("CRYPT/KeyId");
|
---|
7346 | if (it == pBase->m->mapProperties.end())
|
---|
7347 | return Utf8Str::Empty;
|
---|
7348 |
|
---|
7349 | return it->second;
|
---|
7350 | }
|
---|
7351 |
|
---|
7352 |
|
---|
7353 | /**
|
---|
7354 | * Returns all filter related properties.
|
---|
7355 | *
|
---|
7356 | * @returns COM status code.
|
---|
7357 | * @param aReturnNames Where to store the properties names on success.
|
---|
7358 | * @param aReturnValues Where to store the properties values on success.
|
---|
7359 | */
|
---|
7360 | HRESULT Medium::i_getFilterProperties(std::vector<com::Utf8Str> &aReturnNames,
|
---|
7361 | std::vector<com::Utf8Str> &aReturnValues)
|
---|
7362 | {
|
---|
7363 | std::vector<com::Utf8Str> aPropNames;
|
---|
7364 | std::vector<com::Utf8Str> aPropValues;
|
---|
7365 | HRESULT hrc = getProperties(Utf8Str(""), aPropNames, aPropValues);
|
---|
7366 |
|
---|
7367 | if (SUCCEEDED(hrc))
|
---|
7368 | {
|
---|
7369 | unsigned cReturnSize = 0;
|
---|
7370 | aReturnNames.resize(0);
|
---|
7371 | aReturnValues.resize(0);
|
---|
7372 | for (unsigned idx = 0; idx < aPropNames.size(); idx++)
|
---|
7373 | {
|
---|
7374 | if (i_isPropertyForFilter(aPropNames[idx]))
|
---|
7375 | {
|
---|
7376 | aReturnNames.resize(cReturnSize + 1);
|
---|
7377 | aReturnValues.resize(cReturnSize + 1);
|
---|
7378 | aReturnNames[cReturnSize] = aPropNames[idx];
|
---|
7379 | aReturnValues[cReturnSize] = aPropValues[idx];
|
---|
7380 | cReturnSize++;
|
---|
7381 | }
|
---|
7382 | }
|
---|
7383 | }
|
---|
7384 |
|
---|
7385 | return hrc;
|
---|
7386 | }
|
---|
7387 |
|
---|
7388 | /**
|
---|
7389 | * Preparation to move this medium to a new location
|
---|
7390 | *
|
---|
7391 | * @param aLocation Location of the storage unit. If the location is a FS-path,
|
---|
7392 | * then it can be relative to the VirtualBox home directory.
|
---|
7393 | *
|
---|
7394 | * @note Must be called from under this object's write lock.
|
---|
7395 | */
|
---|
7396 | HRESULT Medium::i_preparationForMoving(const Utf8Str &aLocation)
|
---|
7397 | {
|
---|
7398 | HRESULT hrc = E_FAIL;
|
---|
7399 |
|
---|
7400 | if (i_getLocationFull() != aLocation)
|
---|
7401 | {
|
---|
7402 | m->strNewLocationFull = aLocation;
|
---|
7403 | m->fMoveThisMedium = true;
|
---|
7404 | hrc = S_OK;
|
---|
7405 | }
|
---|
7406 |
|
---|
7407 | return hrc;
|
---|
7408 | }
|
---|
7409 |
|
---|
7410 | /**
|
---|
7411 | * Checking whether current operation "moving" or not
|
---|
7412 | */
|
---|
7413 | bool Medium::i_isMoveOperation(const ComObjPtr<Medium> &aTarget) const
|
---|
7414 | {
|
---|
7415 | RT_NOREF(aTarget);
|
---|
7416 | return m->fMoveThisMedium;
|
---|
7417 | }
|
---|
7418 |
|
---|
7419 | bool Medium::i_resetMoveOperationData()
|
---|
7420 | {
|
---|
7421 | m->strNewLocationFull.setNull();
|
---|
7422 | m->fMoveThisMedium = false;
|
---|
7423 | return true;
|
---|
7424 | }
|
---|
7425 |
|
---|
7426 | Utf8Str Medium::i_getNewLocationForMoving() const
|
---|
7427 | {
|
---|
7428 | if (m->fMoveThisMedium == true)
|
---|
7429 | return m->strNewLocationFull;
|
---|
7430 | else
|
---|
7431 | return Utf8Str();
|
---|
7432 | }
|
---|
7433 | ////////////////////////////////////////////////////////////////////////////////
|
---|
7434 | //
|
---|
7435 | // Private methods
|
---|
7436 | //
|
---|
7437 | ////////////////////////////////////////////////////////////////////////////////
|
---|
7438 |
|
---|
7439 | /**
|
---|
7440 | * Queries information from the medium.
|
---|
7441 | *
|
---|
7442 | * As a result of this call, the accessibility state and data members such as
|
---|
7443 | * size and description will be updated with the current information.
|
---|
7444 | *
|
---|
7445 | * @note This method may block during a system I/O call that checks storage
|
---|
7446 | * accessibility.
|
---|
7447 | *
|
---|
7448 | * @note Caller MUST NOT hold the media tree or medium lock.
|
---|
7449 | *
|
---|
7450 | * @note Locks m->pParent for reading. Locks this object for writing.
|
---|
7451 | *
|
---|
7452 | * @param fSetImageId Whether to reset the UUID contained in the image file
|
---|
7453 | * to the UUID in the medium instance data (see SetIDs())
|
---|
7454 | * @param fSetParentId Whether to reset the parent UUID contained in the image
|
---|
7455 | * file to the parent UUID in the medium instance data (see
|
---|
7456 | * SetIDs())
|
---|
7457 | * @param autoCaller
|
---|
7458 | * @return
|
---|
7459 | */
|
---|
7460 | HRESULT Medium::i_queryInfo(bool fSetImageId, bool fSetParentId, AutoCaller &autoCaller)
|
---|
7461 | {
|
---|
7462 | Assert(!isWriteLockOnCurrentThread());
|
---|
7463 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
7464 |
|
---|
7465 | if ( ( m->state != MediumState_Created
|
---|
7466 | && m->state != MediumState_Inaccessible
|
---|
7467 | && m->state != MediumState_LockedRead)
|
---|
7468 | || m->fClosing)
|
---|
7469 | return E_FAIL;
|
---|
7470 |
|
---|
7471 | HRESULT hrc = S_OK;
|
---|
7472 |
|
---|
7473 | int vrc = VINF_SUCCESS;
|
---|
7474 |
|
---|
7475 | /* check if a blocking i_queryInfo() call is in progress on some other thread,
|
---|
7476 | * and wait for it to finish if so instead of querying data ourselves */
|
---|
7477 | if (m->queryInfoRunning)
|
---|
7478 | {
|
---|
7479 | Assert( m->state == MediumState_LockedRead
|
---|
7480 | || m->state == MediumState_LockedWrite);
|
---|
7481 |
|
---|
7482 | while (m->queryInfoRunning)
|
---|
7483 | {
|
---|
7484 | alock.release();
|
---|
7485 | /* must not hold the object lock now */
|
---|
7486 | Assert(!isWriteLockOnCurrentThread());
|
---|
7487 | {
|
---|
7488 | AutoReadLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
|
---|
7489 | }
|
---|
7490 | alock.acquire();
|
---|
7491 | }
|
---|
7492 |
|
---|
7493 | return S_OK;
|
---|
7494 | }
|
---|
7495 |
|
---|
7496 | bool success = false;
|
---|
7497 | Utf8Str lastAccessError;
|
---|
7498 |
|
---|
7499 | /* are we dealing with a new medium constructed using the existing
|
---|
7500 | * location? */
|
---|
7501 | bool isImport = m->id.isZero();
|
---|
7502 | unsigned uOpenFlags = VD_OPEN_FLAGS_INFO;
|
---|
7503 |
|
---|
7504 | /* Note that we don't use VD_OPEN_FLAGS_READONLY when opening new
|
---|
7505 | * media because that would prevent necessary modifications
|
---|
7506 | * when opening media of some third-party formats for the first
|
---|
7507 | * time in VirtualBox (such as VMDK for which VDOpen() needs to
|
---|
7508 | * generate an UUID if it is missing) */
|
---|
7509 | if ( m->hddOpenMode == OpenReadOnly
|
---|
7510 | || m->type == MediumType_Readonly
|
---|
7511 | || (!isImport && !fSetImageId && !fSetParentId)
|
---|
7512 | )
|
---|
7513 | uOpenFlags |= VD_OPEN_FLAGS_READONLY;
|
---|
7514 |
|
---|
7515 | /* Open shareable medium with the appropriate flags */
|
---|
7516 | if (m->type == MediumType_Shareable)
|
---|
7517 | uOpenFlags |= VD_OPEN_FLAGS_SHAREABLE;
|
---|
7518 |
|
---|
7519 | /* Lock the medium, which makes the behavior much more consistent, must be
|
---|
7520 | * done before dropping the object lock and setting queryInfoRunning. */
|
---|
7521 | ComPtr<IToken> pToken;
|
---|
7522 | if (uOpenFlags & (VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_SHAREABLE))
|
---|
7523 | hrc = LockRead(pToken.asOutParam());
|
---|
7524 | else
|
---|
7525 | hrc = LockWrite(pToken.asOutParam());
|
---|
7526 | if (FAILED(hrc)) return hrc;
|
---|
7527 |
|
---|
7528 | /* Copies of the input state fields which are not read-only,
|
---|
7529 | * as we're dropping the lock. CAUTION: be extremely careful what
|
---|
7530 | * you do with the contents of this medium object, as you will
|
---|
7531 | * create races if there are concurrent changes. */
|
---|
7532 | Utf8Str format(m->strFormat);
|
---|
7533 | Utf8Str location(m->strLocationFull);
|
---|
7534 | ComObjPtr<MediumFormat> formatObj = m->formatObj;
|
---|
7535 |
|
---|
7536 | /* "Output" values which can't be set because the lock isn't held
|
---|
7537 | * at the time the values are determined. */
|
---|
7538 | Guid mediumId = m->id;
|
---|
7539 | uint64_t mediumSize = 0;
|
---|
7540 | uint64_t mediumLogicalSize = 0;
|
---|
7541 |
|
---|
7542 | /* Flag whether a base image has a non-zero parent UUID and thus
|
---|
7543 | * need repairing after it was closed again. */
|
---|
7544 | bool fRepairImageZeroParentUuid = false;
|
---|
7545 |
|
---|
7546 | ComObjPtr<VirtualBox> pVirtualBox = m->pVirtualBox;
|
---|
7547 |
|
---|
7548 | /* must be set before leaving the object lock the first time */
|
---|
7549 | m->queryInfoRunning = true;
|
---|
7550 |
|
---|
7551 | /* must leave object lock now, because a lock from a higher lock class
|
---|
7552 | * is needed and also a lengthy operation is coming */
|
---|
7553 | alock.release();
|
---|
7554 | autoCaller.release();
|
---|
7555 |
|
---|
7556 | /* Note that taking the queryInfoSem after leaving the object lock above
|
---|
7557 | * can lead to short spinning of the loops waiting for i_queryInfo() to
|
---|
7558 | * complete. This is unavoidable since the other order causes a lock order
|
---|
7559 | * violation: here it would be requesting the object lock (at the beginning
|
---|
7560 | * of the method), then queryInfoSem, and below the other way round. */
|
---|
7561 | AutoWriteLock qlock(m->queryInfoSem COMMA_LOCKVAL_SRC_POS);
|
---|
7562 |
|
---|
7563 | /* take the opportunity to have a media tree lock, released initially */
|
---|
7564 | Assert(!isWriteLockOnCurrentThread());
|
---|
7565 | Assert(!pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
|
---|
7566 | AutoWriteLock treeLock(pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
7567 | treeLock.release();
|
---|
7568 |
|
---|
7569 | /* re-take the caller, but not the object lock, to keep uninit away */
|
---|
7570 | autoCaller.add();
|
---|
7571 | if (FAILED(autoCaller.hrc()))
|
---|
7572 | {
|
---|
7573 | m->queryInfoRunning = false;
|
---|
7574 | return autoCaller.hrc();
|
---|
7575 | }
|
---|
7576 |
|
---|
7577 | try
|
---|
7578 | {
|
---|
7579 | /* skip accessibility checks for host drives */
|
---|
7580 | if (m->hostDrive)
|
---|
7581 | {
|
---|
7582 | success = true;
|
---|
7583 | throw S_OK;
|
---|
7584 | }
|
---|
7585 |
|
---|
7586 | PVDISK hdd;
|
---|
7587 | vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
7588 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
7589 |
|
---|
7590 | try
|
---|
7591 | {
|
---|
7592 | /** @todo This kind of opening of media is assuming that diff
|
---|
7593 | * media can be opened as base media. Should be documented that
|
---|
7594 | * it must work for all medium format backends. */
|
---|
7595 | vrc = VDOpen(hdd,
|
---|
7596 | format.c_str(),
|
---|
7597 | location.c_str(),
|
---|
7598 | uOpenFlags | m->uOpenFlagsDef,
|
---|
7599 | m->vdImageIfaces);
|
---|
7600 | if (RT_FAILURE(vrc))
|
---|
7601 | {
|
---|
7602 | lastAccessError = Utf8StrFmt(tr("Could not open the medium '%s'%s"),
|
---|
7603 | location.c_str(), i_vdError(vrc).c_str());
|
---|
7604 | throw S_OK;
|
---|
7605 | }
|
---|
7606 |
|
---|
7607 | if (formatObj->i_getCapabilities() & MediumFormatCapabilities_Uuid)
|
---|
7608 | {
|
---|
7609 | /* Modify the UUIDs if necessary. The associated fields are
|
---|
7610 | * not modified by other code, so no need to copy. */
|
---|
7611 | if (fSetImageId)
|
---|
7612 | {
|
---|
7613 | alock.acquire();
|
---|
7614 | vrc = VDSetUuid(hdd, 0, m->uuidImage.raw());
|
---|
7615 | alock.release();
|
---|
7616 | if (RT_FAILURE(vrc))
|
---|
7617 | {
|
---|
7618 | lastAccessError = Utf8StrFmt(tr("Could not update the UUID of medium '%s'%s"),
|
---|
7619 | location.c_str(), i_vdError(vrc).c_str());
|
---|
7620 | throw S_OK;
|
---|
7621 | }
|
---|
7622 | mediumId = m->uuidImage;
|
---|
7623 | }
|
---|
7624 | if (fSetParentId)
|
---|
7625 | {
|
---|
7626 | alock.acquire();
|
---|
7627 | vrc = VDSetParentUuid(hdd, 0, m->uuidParentImage.raw());
|
---|
7628 | alock.release();
|
---|
7629 | if (RT_FAILURE(vrc))
|
---|
7630 | {
|
---|
7631 | lastAccessError = Utf8StrFmt(tr("Could not update the parent UUID of medium '%s'%s"),
|
---|
7632 | location.c_str(), i_vdError(vrc).c_str());
|
---|
7633 | throw S_OK;
|
---|
7634 | }
|
---|
7635 | }
|
---|
7636 | /* zap the information, these are no long-term members */
|
---|
7637 | alock.acquire();
|
---|
7638 | unconst(m->uuidImage).clear();
|
---|
7639 | unconst(m->uuidParentImage).clear();
|
---|
7640 | alock.release();
|
---|
7641 |
|
---|
7642 | /* check the UUID */
|
---|
7643 | RTUUID uuid;
|
---|
7644 | vrc = VDGetUuid(hdd, 0, &uuid);
|
---|
7645 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
7646 |
|
---|
7647 | if (isImport)
|
---|
7648 | {
|
---|
7649 | mediumId = uuid;
|
---|
7650 |
|
---|
7651 | if (mediumId.isZero() && (m->hddOpenMode == OpenReadOnly))
|
---|
7652 | // only when importing a VDMK that has no UUID, create one in memory
|
---|
7653 | mediumId.create();
|
---|
7654 | }
|
---|
7655 | else
|
---|
7656 | {
|
---|
7657 | Assert(!mediumId.isZero());
|
---|
7658 |
|
---|
7659 | if (mediumId != uuid)
|
---|
7660 | {
|
---|
7661 | /** @todo r=klaus this always refers to VirtualBox.xml as the medium registry, even for new VMs */
|
---|
7662 | lastAccessError = Utf8StrFmt(
|
---|
7663 | tr("UUID {%RTuuid} of the medium '%s' does not match the value {%RTuuid} stored in the media registry ('%s')"),
|
---|
7664 | &uuid,
|
---|
7665 | location.c_str(),
|
---|
7666 | mediumId.raw(),
|
---|
7667 | pVirtualBox->i_settingsFilePath().c_str());
|
---|
7668 | throw S_OK;
|
---|
7669 | }
|
---|
7670 | }
|
---|
7671 | }
|
---|
7672 | else
|
---|
7673 | {
|
---|
7674 | /* the backend does not support storing UUIDs within the
|
---|
7675 | * underlying storage so use what we store in XML */
|
---|
7676 |
|
---|
7677 | if (fSetImageId)
|
---|
7678 | {
|
---|
7679 | /* set the UUID if an API client wants to change it */
|
---|
7680 | alock.acquire();
|
---|
7681 | mediumId = m->uuidImage;
|
---|
7682 | alock.release();
|
---|
7683 | }
|
---|
7684 | else if (isImport)
|
---|
7685 | {
|
---|
7686 | /* generate an UUID for an imported UUID-less medium */
|
---|
7687 | mediumId.create();
|
---|
7688 | }
|
---|
7689 | }
|
---|
7690 |
|
---|
7691 | /* set the image uuid before the below parent uuid handling code
|
---|
7692 | * might place it somewhere in the media tree, so that the medium
|
---|
7693 | * UUID is valid at this point */
|
---|
7694 | alock.acquire();
|
---|
7695 | if (isImport || fSetImageId)
|
---|
7696 | unconst(m->id) = mediumId;
|
---|
7697 | alock.release();
|
---|
7698 |
|
---|
7699 | /* get the medium variant */
|
---|
7700 | unsigned uImageFlags;
|
---|
7701 | vrc = VDGetImageFlags(hdd, 0, &uImageFlags);
|
---|
7702 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
7703 | alock.acquire();
|
---|
7704 | m->variant = (MediumVariant_T)uImageFlags;
|
---|
7705 | alock.release();
|
---|
7706 |
|
---|
7707 | /* check/get the parent uuid and update corresponding state */
|
---|
7708 | if (uImageFlags & VD_IMAGE_FLAGS_DIFF)
|
---|
7709 | {
|
---|
7710 | RTUUID parentId;
|
---|
7711 | vrc = VDGetParentUuid(hdd, 0, &parentId);
|
---|
7712 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
7713 |
|
---|
7714 | /* streamOptimized VMDK images are only accepted as base
|
---|
7715 | * images, as this allows automatic repair of OVF appliances.
|
---|
7716 | * Since such images don't support random writes they will not
|
---|
7717 | * be created for diff images. Only an overly smart user might
|
---|
7718 | * manually create this case. Too bad for him. */
|
---|
7719 | if ( (isImport || fSetParentId)
|
---|
7720 | && !(uImageFlags & VD_VMDK_IMAGE_FLAGS_STREAM_OPTIMIZED))
|
---|
7721 | {
|
---|
7722 | /* the parent must be known to us. Note that we freely
|
---|
7723 | * call locking methods of mVirtualBox and parent, as all
|
---|
7724 | * relevant locks must be already held. There may be no
|
---|
7725 | * concurrent access to the just opened medium on other
|
---|
7726 | * threads yet (and init() will fail if this method reports
|
---|
7727 | * MediumState_Inaccessible) */
|
---|
7728 |
|
---|
7729 | ComObjPtr<Medium> pParent;
|
---|
7730 | if (RTUuidIsNull(&parentId))
|
---|
7731 | hrc = VBOX_E_OBJECT_NOT_FOUND;
|
---|
7732 | else
|
---|
7733 | hrc = pVirtualBox->i_findHardDiskById(Guid(parentId), false /* aSetError */, &pParent);
|
---|
7734 | if (FAILED(hrc))
|
---|
7735 | {
|
---|
7736 | if (fSetImageId && !fSetParentId)
|
---|
7737 | {
|
---|
7738 | /* If the image UUID gets changed for an existing
|
---|
7739 | * image then the parent UUID can be stale. In such
|
---|
7740 | * cases clear the parent information. The parent
|
---|
7741 | * information may/will be re-set later if the
|
---|
7742 | * API client wants to adjust a complete medium
|
---|
7743 | * hierarchy one by one. */
|
---|
7744 | hrc = S_OK;
|
---|
7745 | alock.acquire();
|
---|
7746 | RTUuidClear(&parentId);
|
---|
7747 | vrc = VDSetParentUuid(hdd, 0, &parentId);
|
---|
7748 | alock.release();
|
---|
7749 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
7750 | }
|
---|
7751 | else
|
---|
7752 | {
|
---|
7753 | lastAccessError = Utf8StrFmt(tr("Parent medium with UUID {%RTuuid} of the medium '%s' is not found in the media registry ('%s')"),
|
---|
7754 | &parentId, location.c_str(),
|
---|
7755 | pVirtualBox->i_settingsFilePath().c_str());
|
---|
7756 | throw S_OK;
|
---|
7757 | }
|
---|
7758 | }
|
---|
7759 |
|
---|
7760 | /* must drop the caller before taking the tree lock */
|
---|
7761 | autoCaller.release();
|
---|
7762 | /* we set m->pParent & children() */
|
---|
7763 | treeLock.acquire();
|
---|
7764 | autoCaller.add();
|
---|
7765 | if (FAILED(autoCaller.hrc()))
|
---|
7766 | throw autoCaller.hrc();
|
---|
7767 |
|
---|
7768 | if (m->pParent)
|
---|
7769 | i_deparent();
|
---|
7770 |
|
---|
7771 | if (!pParent.isNull())
|
---|
7772 | if (pParent->i_getDepth() >= SETTINGS_MEDIUM_DEPTH_MAX)
|
---|
7773 | {
|
---|
7774 | AutoReadLock plock(pParent COMMA_LOCKVAL_SRC_POS);
|
---|
7775 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
7776 | tr("Cannot open differencing image for medium '%s', because it exceeds the medium tree depth limit. Please merge some images which you no longer need"),
|
---|
7777 | pParent->m->strLocationFull.c_str());
|
---|
7778 | }
|
---|
7779 | i_setParent(pParent);
|
---|
7780 |
|
---|
7781 | treeLock.release();
|
---|
7782 | }
|
---|
7783 | else
|
---|
7784 | {
|
---|
7785 | /* must drop the caller before taking the tree lock */
|
---|
7786 | autoCaller.release();
|
---|
7787 | /* we access m->pParent */
|
---|
7788 | treeLock.acquire();
|
---|
7789 | autoCaller.add();
|
---|
7790 | if (FAILED(autoCaller.hrc()))
|
---|
7791 | throw autoCaller.hrc();
|
---|
7792 |
|
---|
7793 | /* check that parent UUIDs match. Note that there's no need
|
---|
7794 | * for the parent's AutoCaller (our lifetime is bound to
|
---|
7795 | * it) */
|
---|
7796 |
|
---|
7797 | if (m->pParent.isNull())
|
---|
7798 | {
|
---|
7799 | /* Due to a bug in VDCopy() in VirtualBox 3.0.0-3.0.14
|
---|
7800 | * and 3.1.0-3.1.8 there are base images out there
|
---|
7801 | * which have a non-zero parent UUID. No point in
|
---|
7802 | * complaining about them, instead automatically
|
---|
7803 | * repair the problem. Later we can bring back the
|
---|
7804 | * error message, but we should wait until really
|
---|
7805 | * most users have repaired their images, either with
|
---|
7806 | * VBoxFixHdd or this way. */
|
---|
7807 | #if 1
|
---|
7808 | fRepairImageZeroParentUuid = true;
|
---|
7809 | #else /* 0 */
|
---|
7810 | lastAccessError = Utf8StrFmt(
|
---|
7811 | tr("Medium type of '%s' is differencing but it is not associated with any parent medium in the media registry ('%s')"),
|
---|
7812 | location.c_str(),
|
---|
7813 | pVirtualBox->settingsFilePath().c_str());
|
---|
7814 | treeLock.release();
|
---|
7815 | throw S_OK;
|
---|
7816 | #endif /* 0 */
|
---|
7817 | }
|
---|
7818 |
|
---|
7819 | {
|
---|
7820 | autoCaller.release();
|
---|
7821 | AutoReadLock parentLock(m->pParent COMMA_LOCKVAL_SRC_POS);
|
---|
7822 | autoCaller.add();
|
---|
7823 | if (FAILED(autoCaller.hrc()))
|
---|
7824 | throw autoCaller.hrc();
|
---|
7825 |
|
---|
7826 | if ( !fRepairImageZeroParentUuid
|
---|
7827 | && m->pParent->i_getState() != MediumState_Inaccessible
|
---|
7828 | && m->pParent->i_getId() != parentId)
|
---|
7829 | {
|
---|
7830 | /** @todo r=klaus this always refers to VirtualBox.xml as the medium registry, even for new VMs */
|
---|
7831 | lastAccessError = Utf8StrFmt(
|
---|
7832 | tr("Parent UUID {%RTuuid} of the medium '%s' does not match UUID {%RTuuid} of its parent medium stored in the media registry ('%s')"),
|
---|
7833 | &parentId, location.c_str(),
|
---|
7834 | m->pParent->i_getId().raw(),
|
---|
7835 | pVirtualBox->i_settingsFilePath().c_str());
|
---|
7836 | parentLock.release();
|
---|
7837 | treeLock.release();
|
---|
7838 | throw S_OK;
|
---|
7839 | }
|
---|
7840 | }
|
---|
7841 |
|
---|
7842 | /// @todo NEWMEDIA what to do if the parent is not
|
---|
7843 | /// accessible while the diff is? Probably nothing. The
|
---|
7844 | /// real code will detect the mismatch anyway.
|
---|
7845 |
|
---|
7846 | treeLock.release();
|
---|
7847 | }
|
---|
7848 | }
|
---|
7849 |
|
---|
7850 | mediumSize = VDGetFileSize(hdd, 0);
|
---|
7851 | mediumLogicalSize = VDGetSize(hdd, 0);
|
---|
7852 |
|
---|
7853 | success = true;
|
---|
7854 | }
|
---|
7855 | catch (HRESULT hrcXcpt)
|
---|
7856 | {
|
---|
7857 | hrc = hrcXcpt;
|
---|
7858 | }
|
---|
7859 |
|
---|
7860 | vrc = VDDestroy(hdd);
|
---|
7861 | if (RT_FAILURE(vrc))
|
---|
7862 | {
|
---|
7863 | lastAccessError.printf(tr("Could not update and close the medium '%s'%s"),
|
---|
7864 | location.c_str(), i_vdError(vrc).c_str());
|
---|
7865 | success = false;
|
---|
7866 | throw S_OK;
|
---|
7867 | }
|
---|
7868 | }
|
---|
7869 | catch (HRESULT hrcXcpt)
|
---|
7870 | {
|
---|
7871 | hrc = hrcXcpt;
|
---|
7872 | }
|
---|
7873 |
|
---|
7874 | autoCaller.release();
|
---|
7875 | treeLock.acquire();
|
---|
7876 | autoCaller.add();
|
---|
7877 | if (FAILED(autoCaller.hrc()))
|
---|
7878 | {
|
---|
7879 | m->queryInfoRunning = false;
|
---|
7880 | return autoCaller.hrc();
|
---|
7881 | }
|
---|
7882 | alock.acquire();
|
---|
7883 |
|
---|
7884 | if (success)
|
---|
7885 | {
|
---|
7886 | m->size = mediumSize;
|
---|
7887 | m->logicalSize = mediumLogicalSize;
|
---|
7888 | m->strLastAccessError.setNull();
|
---|
7889 | }
|
---|
7890 | else
|
---|
7891 | {
|
---|
7892 | m->strLastAccessError = lastAccessError;
|
---|
7893 | Log1WarningFunc(("'%s' is not accessible (error='%s', hrc=%Rhrc, vrc=%Rrc)\n",
|
---|
7894 | location.c_str(), m->strLastAccessError.c_str(), hrc, vrc));
|
---|
7895 | }
|
---|
7896 |
|
---|
7897 | /* Set the proper state according to the result of the check */
|
---|
7898 | if (success)
|
---|
7899 | m->preLockState = MediumState_Created;
|
---|
7900 | else
|
---|
7901 | m->preLockState = MediumState_Inaccessible;
|
---|
7902 |
|
---|
7903 | /* unblock anyone waiting for the i_queryInfo results */
|
---|
7904 | qlock.release();
|
---|
7905 | m->queryInfoRunning = false;
|
---|
7906 |
|
---|
7907 | pToken->Abandon();
|
---|
7908 | pToken.setNull();
|
---|
7909 |
|
---|
7910 | if (FAILED(hrc))
|
---|
7911 | return hrc;
|
---|
7912 |
|
---|
7913 | /* If this is a base image which incorrectly has a parent UUID set,
|
---|
7914 | * repair the image now by zeroing the parent UUID. This is only done
|
---|
7915 | * when we have structural information from a config file, on import
|
---|
7916 | * this is not possible. If someone would accidentally call openMedium
|
---|
7917 | * with a diff image before the base is registered this would destroy
|
---|
7918 | * the diff. Not acceptable. */
|
---|
7919 | do
|
---|
7920 | {
|
---|
7921 | if (fRepairImageZeroParentUuid)
|
---|
7922 | {
|
---|
7923 | hrc = LockWrite(pToken.asOutParam());
|
---|
7924 | if (FAILED(hrc))
|
---|
7925 | break;
|
---|
7926 |
|
---|
7927 | alock.release();
|
---|
7928 |
|
---|
7929 | try
|
---|
7930 | {
|
---|
7931 | PVDISK hdd;
|
---|
7932 | vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
7933 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
7934 |
|
---|
7935 | try
|
---|
7936 | {
|
---|
7937 | vrc = VDOpen(hdd,
|
---|
7938 | format.c_str(),
|
---|
7939 | location.c_str(),
|
---|
7940 | (uOpenFlags & ~VD_OPEN_FLAGS_READONLY) | m->uOpenFlagsDef,
|
---|
7941 | m->vdImageIfaces);
|
---|
7942 | if (RT_FAILURE(vrc))
|
---|
7943 | throw S_OK;
|
---|
7944 |
|
---|
7945 | RTUUID zeroParentUuid;
|
---|
7946 | RTUuidClear(&zeroParentUuid);
|
---|
7947 | vrc = VDSetParentUuid(hdd, 0, &zeroParentUuid);
|
---|
7948 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
7949 | }
|
---|
7950 | catch (HRESULT hrcXcpt)
|
---|
7951 | {
|
---|
7952 | hrc = hrcXcpt;
|
---|
7953 | }
|
---|
7954 |
|
---|
7955 | VDDestroy(hdd);
|
---|
7956 | }
|
---|
7957 | catch (HRESULT hrcXcpt)
|
---|
7958 | {
|
---|
7959 | hrc = hrcXcpt;
|
---|
7960 | }
|
---|
7961 |
|
---|
7962 | pToken->Abandon();
|
---|
7963 | pToken.setNull();
|
---|
7964 | if (FAILED(hrc))
|
---|
7965 | break;
|
---|
7966 | }
|
---|
7967 | } while(0);
|
---|
7968 |
|
---|
7969 | return hrc;
|
---|
7970 | }
|
---|
7971 |
|
---|
7972 | /**
|
---|
7973 | * Performs extra checks if the medium can be closed and returns S_OK in
|
---|
7974 | * this case. Otherwise, returns a respective error message. Called by
|
---|
7975 | * Close() under the medium tree lock and the medium lock.
|
---|
7976 | *
|
---|
7977 | * @note Also reused by Medium::Reset().
|
---|
7978 | *
|
---|
7979 | * @note Caller must hold the media tree write lock!
|
---|
7980 | */
|
---|
7981 | HRESULT Medium::i_canClose()
|
---|
7982 | {
|
---|
7983 | Assert(m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
|
---|
7984 |
|
---|
7985 | if (i_getChildren().size() != 0)
|
---|
7986 | return setError(VBOX_E_OBJECT_IN_USE,
|
---|
7987 | tr("Cannot close medium '%s' because it has %d child media", "", i_getChildren().size()),
|
---|
7988 | m->strLocationFull.c_str(), i_getChildren().size());
|
---|
7989 |
|
---|
7990 | return S_OK;
|
---|
7991 | }
|
---|
7992 |
|
---|
7993 | /**
|
---|
7994 | * Unregisters this medium with mVirtualBox. Called by close() under the medium tree lock.
|
---|
7995 | *
|
---|
7996 | * @note Caller must have locked the media tree lock for writing!
|
---|
7997 | */
|
---|
7998 | HRESULT Medium::i_unregisterWithVirtualBox()
|
---|
7999 | {
|
---|
8000 | /* Note that we need to de-associate ourselves from the parent to let
|
---|
8001 | * VirtualBox::i_unregisterMedium() properly save the registry */
|
---|
8002 |
|
---|
8003 | /* we modify m->pParent and access children */
|
---|
8004 | Assert(m->pVirtualBox->i_getMediaTreeLockHandle().isWriteLockOnCurrentThread());
|
---|
8005 |
|
---|
8006 | Medium *pParentBackup = m->pParent;
|
---|
8007 | AssertReturn(i_getChildren().size() == 0, E_FAIL);
|
---|
8008 | if (m->pParent)
|
---|
8009 | i_deparent();
|
---|
8010 |
|
---|
8011 | HRESULT hrc = m->pVirtualBox->i_unregisterMedium(this);
|
---|
8012 | if (FAILED(hrc))
|
---|
8013 | {
|
---|
8014 | if (pParentBackup)
|
---|
8015 | {
|
---|
8016 | // re-associate with the parent as we are still relatives in the registry
|
---|
8017 | i_setParent(pParentBackup);
|
---|
8018 | }
|
---|
8019 | }
|
---|
8020 |
|
---|
8021 | return hrc;
|
---|
8022 | }
|
---|
8023 |
|
---|
8024 | /**
|
---|
8025 | * Like SetProperty but do not trigger a settings store. Only for internal use!
|
---|
8026 | */
|
---|
8027 | HRESULT Medium::i_setPropertyDirect(const Utf8Str &aName, const Utf8Str &aValue)
|
---|
8028 | {
|
---|
8029 | AutoCaller autoCaller(this);
|
---|
8030 | if (FAILED(autoCaller.hrc())) return autoCaller.hrc();
|
---|
8031 |
|
---|
8032 | AutoWriteLock mlock(this COMMA_LOCKVAL_SRC_POS);
|
---|
8033 |
|
---|
8034 | switch (m->state)
|
---|
8035 | {
|
---|
8036 | case MediumState_Created:
|
---|
8037 | case MediumState_Inaccessible:
|
---|
8038 | break;
|
---|
8039 | default:
|
---|
8040 | return i_setStateError();
|
---|
8041 | }
|
---|
8042 |
|
---|
8043 | m->mapProperties[aName] = aValue;
|
---|
8044 |
|
---|
8045 | return S_OK;
|
---|
8046 | }
|
---|
8047 |
|
---|
8048 | /**
|
---|
8049 | * Sets the extended error info according to the current media state.
|
---|
8050 | *
|
---|
8051 | * @note Must be called from under this object's write or read lock.
|
---|
8052 | */
|
---|
8053 | HRESULT Medium::i_setStateError()
|
---|
8054 | {
|
---|
8055 | HRESULT hrc;
|
---|
8056 |
|
---|
8057 | switch (m->state)
|
---|
8058 | {
|
---|
8059 | case MediumState_NotCreated:
|
---|
8060 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8061 | tr("Storage for the medium '%s' is not created"),
|
---|
8062 | m->strLocationFull.c_str());
|
---|
8063 | break;
|
---|
8064 | case MediumState_Created:
|
---|
8065 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8066 | tr("Storage for the medium '%s' is already created"),
|
---|
8067 | m->strLocationFull.c_str());
|
---|
8068 | break;
|
---|
8069 | case MediumState_LockedRead:
|
---|
8070 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8071 | tr("Medium '%s' is locked for reading by another task"),
|
---|
8072 | m->strLocationFull.c_str());
|
---|
8073 | break;
|
---|
8074 | case MediumState_LockedWrite:
|
---|
8075 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8076 | tr("Medium '%s' is locked for writing by another task"),
|
---|
8077 | m->strLocationFull.c_str());
|
---|
8078 | break;
|
---|
8079 | case MediumState_Inaccessible:
|
---|
8080 | /* be in sync with Console::powerUpThread() */
|
---|
8081 | if (!m->strLastAccessError.isEmpty())
|
---|
8082 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8083 | tr("Medium '%s' is not accessible. %s"),
|
---|
8084 | m->strLocationFull.c_str(), m->strLastAccessError.c_str());
|
---|
8085 | else
|
---|
8086 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8087 | tr("Medium '%s' is not accessible"),
|
---|
8088 | m->strLocationFull.c_str());
|
---|
8089 | break;
|
---|
8090 | case MediumState_Creating:
|
---|
8091 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8092 | tr("Storage for the medium '%s' is being created"),
|
---|
8093 | m->strLocationFull.c_str());
|
---|
8094 | break;
|
---|
8095 | case MediumState_Deleting:
|
---|
8096 | hrc = setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8097 | tr("Storage for the medium '%s' is being deleted"),
|
---|
8098 | m->strLocationFull.c_str());
|
---|
8099 | break;
|
---|
8100 | default:
|
---|
8101 | AssertFailed();
|
---|
8102 | hrc = E_FAIL;
|
---|
8103 | break;
|
---|
8104 | }
|
---|
8105 |
|
---|
8106 | return hrc;
|
---|
8107 | }
|
---|
8108 |
|
---|
8109 | /**
|
---|
8110 | * Sets the value of m->strLocationFull. The given location must be a fully
|
---|
8111 | * qualified path; relative paths are not supported here.
|
---|
8112 | *
|
---|
8113 | * As a special exception, if the specified location is a file path that ends with '/'
|
---|
8114 | * then the file name part will be generated by this method automatically in the format
|
---|
8115 | * '{\<uuid\>}.\<ext\>' where \<uuid\> is a fresh UUID that this method will generate
|
---|
8116 | * and assign to this medium, and \<ext\> is the default extension for this
|
---|
8117 | * medium's storage format. Note that this procedure requires the media state to
|
---|
8118 | * be NotCreated and will return a failure otherwise.
|
---|
8119 | *
|
---|
8120 | * @param aLocation Location of the storage unit. If the location is a FS-path,
|
---|
8121 | * then it can be relative to the VirtualBox home directory.
|
---|
8122 | * @param aFormat Optional fallback format if it is an import and the format
|
---|
8123 | * cannot be determined.
|
---|
8124 | *
|
---|
8125 | * @note Must be called from under this object's write lock.
|
---|
8126 | */
|
---|
8127 | HRESULT Medium::i_setLocation(const Utf8Str &aLocation,
|
---|
8128 | const Utf8Str &aFormat /* = Utf8Str::Empty */)
|
---|
8129 | {
|
---|
8130 | AssertReturn(!aLocation.isEmpty(), E_FAIL);
|
---|
8131 |
|
---|
8132 | AutoCaller autoCaller(this);
|
---|
8133 | AssertComRCReturnRC(autoCaller.hrc());
|
---|
8134 |
|
---|
8135 | /* formatObj may be null only when initializing from an existing path and
|
---|
8136 | * no format is known yet */
|
---|
8137 | AssertReturn( (!m->strFormat.isEmpty() && !m->formatObj.isNull())
|
---|
8138 | || ( getObjectState().getState() == ObjectState::InInit
|
---|
8139 | && m->state != MediumState_NotCreated
|
---|
8140 | && m->id.isZero()
|
---|
8141 | && m->strFormat.isEmpty()
|
---|
8142 | && m->formatObj.isNull()),
|
---|
8143 | E_FAIL);
|
---|
8144 |
|
---|
8145 | /* are we dealing with a new medium constructed using the existing
|
---|
8146 | * location? */
|
---|
8147 | bool isImport = m->strFormat.isEmpty();
|
---|
8148 |
|
---|
8149 | if ( isImport
|
---|
8150 | || ( (m->formatObj->i_getCapabilities() & MediumFormatCapabilities_File)
|
---|
8151 | && !m->hostDrive))
|
---|
8152 | {
|
---|
8153 | Guid id;
|
---|
8154 |
|
---|
8155 | Utf8Str locationFull(aLocation);
|
---|
8156 |
|
---|
8157 | if (m->state == MediumState_NotCreated)
|
---|
8158 | {
|
---|
8159 | /* must be a file (formatObj must be already known) */
|
---|
8160 | Assert(m->formatObj->i_getCapabilities() & MediumFormatCapabilities_File);
|
---|
8161 |
|
---|
8162 | if (RTPathFilename(aLocation.c_str()) == NULL)
|
---|
8163 | {
|
---|
8164 | /* no file name is given (either an empty string or ends with a
|
---|
8165 | * slash), generate a new UUID + file name if the state allows
|
---|
8166 | * this */
|
---|
8167 |
|
---|
8168 | ComAssertMsgRet(!m->formatObj->i_getFileExtensions().empty(),
|
---|
8169 | (tr("Must be at least one extension if it is MediumFormatCapabilities_File\n")),
|
---|
8170 | E_FAIL);
|
---|
8171 |
|
---|
8172 | Utf8Str strExt = m->formatObj->i_getFileExtensions().front();
|
---|
8173 | ComAssertMsgRet(!strExt.isEmpty(),
|
---|
8174 | (tr("Default extension must not be empty\n")),
|
---|
8175 | E_FAIL);
|
---|
8176 |
|
---|
8177 | id.create();
|
---|
8178 |
|
---|
8179 | locationFull = Utf8StrFmt("%s{%RTuuid}.%s",
|
---|
8180 | aLocation.c_str(), id.raw(), strExt.c_str());
|
---|
8181 | }
|
---|
8182 | }
|
---|
8183 |
|
---|
8184 | // we must always have full paths now (if it refers to a file)
|
---|
8185 | if ( ( m->formatObj.isNull()
|
---|
8186 | || m->formatObj->i_getCapabilities() & MediumFormatCapabilities_File)
|
---|
8187 | && !RTPathStartsWithRoot(locationFull.c_str()))
|
---|
8188 | return setError(VBOX_E_FILE_ERROR,
|
---|
8189 | tr("The given path '%s' is not fully qualified"),
|
---|
8190 | locationFull.c_str());
|
---|
8191 |
|
---|
8192 | /* detect the backend from the storage unit if importing */
|
---|
8193 | if (isImport)
|
---|
8194 | {
|
---|
8195 | VDTYPE const enmDesiredType = i_convertDeviceType();
|
---|
8196 | VDTYPE enmType = VDTYPE_INVALID;
|
---|
8197 | char *backendName = NULL;
|
---|
8198 |
|
---|
8199 | /* is it a file? */
|
---|
8200 | RTFILE hFile;
|
---|
8201 | int vrc = RTFileOpen(&hFile, locationFull.c_str(), RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
|
---|
8202 | if (RT_SUCCESS(vrc))
|
---|
8203 | {
|
---|
8204 | RTFileClose(hFile);
|
---|
8205 | vrc = VDGetFormat(NULL /* pVDIfsDisk */, NULL /* pVDIfsImage */,
|
---|
8206 | locationFull.c_str(), enmDesiredType, &backendName, &enmType);
|
---|
8207 | }
|
---|
8208 | else if ( vrc != VERR_FILE_NOT_FOUND
|
---|
8209 | && vrc != VERR_PATH_NOT_FOUND
|
---|
8210 | && vrc != VERR_ACCESS_DENIED
|
---|
8211 | && locationFull != aLocation)
|
---|
8212 | {
|
---|
8213 | /* assume it's not a file, restore the original location */
|
---|
8214 | locationFull = aLocation;
|
---|
8215 | vrc = VDGetFormat(NULL /* pVDIfsDisk */, NULL /* pVDIfsImage */,
|
---|
8216 | locationFull.c_str(), enmDesiredType, &backendName, &enmType);
|
---|
8217 | }
|
---|
8218 |
|
---|
8219 | if (RT_FAILURE(vrc))
|
---|
8220 | {
|
---|
8221 | if (vrc == VERR_ACCESS_DENIED)
|
---|
8222 | return setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
8223 | tr("Permission problem accessing the file for the medium '%s' (%Rrc)"),
|
---|
8224 | locationFull.c_str(), vrc);
|
---|
8225 | if (vrc == VERR_FILE_NOT_FOUND || vrc == VERR_PATH_NOT_FOUND)
|
---|
8226 | return setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
8227 | tr("Could not find file for the medium '%s' (%Rrc)"),
|
---|
8228 | locationFull.c_str(), vrc);
|
---|
8229 | if (aFormat.isEmpty())
|
---|
8230 | return setErrorBoth(VBOX_E_IPRT_ERROR, vrc,
|
---|
8231 | tr("Could not get the storage format of the medium '%s' (%Rrc)"),
|
---|
8232 | locationFull.c_str(), vrc);
|
---|
8233 | HRESULT hrc = i_setFormat(aFormat);
|
---|
8234 | /* setFormat() must not fail since we've just used the backend so
|
---|
8235 | * the format object must be there */
|
---|
8236 | AssertComRCReturnRC(hrc);
|
---|
8237 | }
|
---|
8238 | else if ( enmType == VDTYPE_INVALID
|
---|
8239 | || m->devType != i_convertToDeviceType(enmType))
|
---|
8240 | {
|
---|
8241 | /*
|
---|
8242 | * The user tried to use a image as a device which is not supported
|
---|
8243 | * by the backend.
|
---|
8244 | */
|
---|
8245 | RTStrFree(backendName);
|
---|
8246 | return setError(E_FAIL,
|
---|
8247 | tr("The medium '%s' can't be used as the requested device type (%s, detected %s)"),
|
---|
8248 | locationFull.c_str(), getDeviceTypeName(m->devType), getVDTypeName(enmType));
|
---|
8249 | }
|
---|
8250 | else
|
---|
8251 | {
|
---|
8252 | ComAssertRet(backendName != NULL && *backendName != '\0', E_FAIL);
|
---|
8253 |
|
---|
8254 | HRESULT hrc = i_setFormat(backendName);
|
---|
8255 | RTStrFree(backendName);
|
---|
8256 |
|
---|
8257 | /* setFormat() must not fail since we've just used the backend so
|
---|
8258 | * the format object must be there */
|
---|
8259 | AssertComRCReturnRC(hrc);
|
---|
8260 | }
|
---|
8261 | }
|
---|
8262 |
|
---|
8263 | m->strLocationFull = locationFull;
|
---|
8264 |
|
---|
8265 | /* is it still a file? */
|
---|
8266 | if ( (m->formatObj->i_getCapabilities() & MediumFormatCapabilities_File)
|
---|
8267 | && (m->state == MediumState_NotCreated)
|
---|
8268 | )
|
---|
8269 | /* assign a new UUID (this UUID will be used when calling
|
---|
8270 | * VDCreateBase/VDCreateDiff as a wanted UUID). Note that we
|
---|
8271 | * also do that if we didn't generate it to make sure it is
|
---|
8272 | * either generated by us or reset to null */
|
---|
8273 | unconst(m->id) = id;
|
---|
8274 | }
|
---|
8275 | else
|
---|
8276 | m->strLocationFull = aLocation;
|
---|
8277 |
|
---|
8278 | return S_OK;
|
---|
8279 | }
|
---|
8280 |
|
---|
8281 | /**
|
---|
8282 | * Checks that the format ID is valid and sets it on success.
|
---|
8283 | *
|
---|
8284 | * Note that this method will caller-reference the format object on success!
|
---|
8285 | * This reference must be released somewhere to let the MediumFormat object be
|
---|
8286 | * uninitialized.
|
---|
8287 | *
|
---|
8288 | * @note Must be called from under this object's write lock.
|
---|
8289 | */
|
---|
8290 | HRESULT Medium::i_setFormat(const Utf8Str &aFormat)
|
---|
8291 | {
|
---|
8292 | /* get the format object first */
|
---|
8293 | {
|
---|
8294 | SystemProperties *pSysProps = m->pVirtualBox->i_getSystemProperties();
|
---|
8295 | AutoReadLock propsLock(pSysProps COMMA_LOCKVAL_SRC_POS);
|
---|
8296 |
|
---|
8297 | unconst(m->formatObj) = pSysProps->i_mediumFormat(aFormat);
|
---|
8298 | if (m->formatObj.isNull())
|
---|
8299 | return setError(E_INVALIDARG,
|
---|
8300 | tr("Invalid medium storage format '%s'"),
|
---|
8301 | aFormat.c_str());
|
---|
8302 |
|
---|
8303 | /* get properties (preinsert them as keys in the map). Note that the
|
---|
8304 | * map doesn't grow over the object life time since the set of
|
---|
8305 | * properties is meant to be constant. */
|
---|
8306 |
|
---|
8307 | Assert(m->mapProperties.empty());
|
---|
8308 |
|
---|
8309 | for (MediumFormat::PropertyArray::const_iterator it = m->formatObj->i_getProperties().begin();
|
---|
8310 | it != m->formatObj->i_getProperties().end();
|
---|
8311 | ++it)
|
---|
8312 | {
|
---|
8313 | m->mapProperties.insert(std::make_pair(it->strName, Utf8Str::Empty));
|
---|
8314 | }
|
---|
8315 | }
|
---|
8316 |
|
---|
8317 | unconst(m->strFormat) = aFormat;
|
---|
8318 |
|
---|
8319 | return S_OK;
|
---|
8320 | }
|
---|
8321 |
|
---|
8322 | /**
|
---|
8323 | * Converts the Medium device type to the VD type.
|
---|
8324 | */
|
---|
8325 | VDTYPE Medium::i_convertDeviceType()
|
---|
8326 | {
|
---|
8327 | VDTYPE enmType;
|
---|
8328 |
|
---|
8329 | switch (m->devType)
|
---|
8330 | {
|
---|
8331 | case DeviceType_HardDisk:
|
---|
8332 | enmType = VDTYPE_HDD;
|
---|
8333 | break;
|
---|
8334 | case DeviceType_DVD:
|
---|
8335 | enmType = VDTYPE_OPTICAL_DISC;
|
---|
8336 | break;
|
---|
8337 | case DeviceType_Floppy:
|
---|
8338 | enmType = VDTYPE_FLOPPY;
|
---|
8339 | break;
|
---|
8340 | default:
|
---|
8341 | ComAssertFailedRet(VDTYPE_INVALID);
|
---|
8342 | }
|
---|
8343 |
|
---|
8344 | return enmType;
|
---|
8345 | }
|
---|
8346 |
|
---|
8347 | /**
|
---|
8348 | * Converts from the VD type to the medium type.
|
---|
8349 | */
|
---|
8350 | DeviceType_T Medium::i_convertToDeviceType(VDTYPE enmType)
|
---|
8351 | {
|
---|
8352 | DeviceType_T devType;
|
---|
8353 |
|
---|
8354 | switch (enmType)
|
---|
8355 | {
|
---|
8356 | case VDTYPE_HDD:
|
---|
8357 | devType = DeviceType_HardDisk;
|
---|
8358 | break;
|
---|
8359 | case VDTYPE_OPTICAL_DISC:
|
---|
8360 | devType = DeviceType_DVD;
|
---|
8361 | break;
|
---|
8362 | case VDTYPE_FLOPPY:
|
---|
8363 | devType = DeviceType_Floppy;
|
---|
8364 | break;
|
---|
8365 | default:
|
---|
8366 | ComAssertFailedRet(DeviceType_Null);
|
---|
8367 | }
|
---|
8368 |
|
---|
8369 | return devType;
|
---|
8370 | }
|
---|
8371 |
|
---|
8372 | /**
|
---|
8373 | * Internal method which checks whether a property name is for a filter plugin.
|
---|
8374 | */
|
---|
8375 | bool Medium::i_isPropertyForFilter(const com::Utf8Str &aName)
|
---|
8376 | {
|
---|
8377 | /* If the name contains "/" use the part before as a filter name and lookup the filter. */
|
---|
8378 | size_t offSlash;
|
---|
8379 | if ((offSlash = aName.find("/", 0)) != aName.npos)
|
---|
8380 | {
|
---|
8381 | com::Utf8Str strFilter;
|
---|
8382 | com::Utf8Str strKey;
|
---|
8383 |
|
---|
8384 | HRESULT hrc = strFilter.assignEx(aName, 0, offSlash);
|
---|
8385 | if (FAILED(hrc))
|
---|
8386 | return false;
|
---|
8387 |
|
---|
8388 | hrc = strKey.assignEx(aName, offSlash + 1, aName.length() - offSlash - 1); /* Skip slash */
|
---|
8389 | if (FAILED(hrc))
|
---|
8390 | return false;
|
---|
8391 |
|
---|
8392 | VDFILTERINFO FilterInfo;
|
---|
8393 | int vrc = VDFilterInfoOne(strFilter.c_str(), &FilterInfo);
|
---|
8394 | if (RT_SUCCESS(vrc))
|
---|
8395 | {
|
---|
8396 | /* Check that the property exists. */
|
---|
8397 | PCVDCONFIGINFO paConfig = FilterInfo.paConfigInfo;
|
---|
8398 | while (paConfig->pszKey)
|
---|
8399 | {
|
---|
8400 | if (strKey.equals(paConfig->pszKey))
|
---|
8401 | return true;
|
---|
8402 | paConfig++;
|
---|
8403 | }
|
---|
8404 | }
|
---|
8405 | }
|
---|
8406 |
|
---|
8407 | return false;
|
---|
8408 | }
|
---|
8409 |
|
---|
8410 | /**
|
---|
8411 | * Returns the last error message collected by the i_vdErrorCall callback and
|
---|
8412 | * resets it.
|
---|
8413 | *
|
---|
8414 | * The error message is returned prepended with a dot and a space, like this:
|
---|
8415 | * <code>
|
---|
8416 | * ". <error_text> (%Rrc)"
|
---|
8417 | * </code>
|
---|
8418 | * to make it easily appendable to a more general error message. The @c %Rrc
|
---|
8419 | * format string is given @a aVRC as an argument.
|
---|
8420 | *
|
---|
8421 | * If there is no last error message collected by i_vdErrorCall or if it is a
|
---|
8422 | * null or empty string, then this function returns the following text:
|
---|
8423 | * <code>
|
---|
8424 | * " (%Rrc)"
|
---|
8425 | * </code>
|
---|
8426 | *
|
---|
8427 | * @note Doesn't do any object locking; it is assumed that the caller makes sure
|
---|
8428 | * the callback isn't called by more than one thread at a time.
|
---|
8429 | *
|
---|
8430 | * @param aVRC VBox error code to use when no error message is provided.
|
---|
8431 | */
|
---|
8432 | Utf8Str Medium::i_vdError(int aVRC)
|
---|
8433 | {
|
---|
8434 | Utf8Str error;
|
---|
8435 |
|
---|
8436 | if (m->vdError.isEmpty())
|
---|
8437 | error.printf(" (%Rrc)", aVRC);
|
---|
8438 | else
|
---|
8439 | error.printf(".\n%s", m->vdError.c_str());
|
---|
8440 |
|
---|
8441 | m->vdError.setNull();
|
---|
8442 |
|
---|
8443 | return error;
|
---|
8444 | }
|
---|
8445 |
|
---|
8446 | /**
|
---|
8447 | * Error message callback.
|
---|
8448 | *
|
---|
8449 | * Puts the reported error message to the m->vdError field.
|
---|
8450 | *
|
---|
8451 | * @note Doesn't do any object locking; it is assumed that the caller makes sure
|
---|
8452 | * the callback isn't called by more than one thread at a time.
|
---|
8453 | *
|
---|
8454 | * @param pvUser The opaque data passed on container creation.
|
---|
8455 | * @param vrc The VBox error code.
|
---|
8456 | * @param SRC_POS Use RT_SRC_POS.
|
---|
8457 | * @param pszFormat Error message format string.
|
---|
8458 | * @param va Error message arguments.
|
---|
8459 | */
|
---|
8460 | /*static*/
|
---|
8461 | DECLCALLBACK(void) Medium::i_vdErrorCall(void *pvUser, int vrc, RT_SRC_POS_DECL,
|
---|
8462 | const char *pszFormat, va_list va)
|
---|
8463 | {
|
---|
8464 | NOREF(pszFile); NOREF(iLine); NOREF(pszFunction); /* RT_SRC_POS_DECL */
|
---|
8465 |
|
---|
8466 | Medium *that = static_cast<Medium*>(pvUser);
|
---|
8467 | AssertReturnVoid(that != NULL);
|
---|
8468 |
|
---|
8469 | va_list vaCopy; /* For gcc */
|
---|
8470 | va_copy(vaCopy, va);
|
---|
8471 | if (that->m->vdError.isEmpty())
|
---|
8472 | that->m->vdError.printf("%N (%Rrc)", pszFormat, &vaCopy, vrc);
|
---|
8473 | else
|
---|
8474 | that->m->vdError.appendPrintf(".\n%N (%Rrc)", pszFormat, &vaCopy, vrc);
|
---|
8475 | va_end(vaCopy);
|
---|
8476 | }
|
---|
8477 |
|
---|
8478 | /* static */
|
---|
8479 | DECLCALLBACK(bool) Medium::i_vdConfigAreKeysValid(void *pvUser,
|
---|
8480 | const char * /* pszzValid */)
|
---|
8481 | {
|
---|
8482 | Medium *that = static_cast<Medium*>(pvUser);
|
---|
8483 | AssertReturn(that != NULL, false);
|
---|
8484 |
|
---|
8485 | /* we always return true since the only keys we have are those found in
|
---|
8486 | * VDBACKENDINFO */
|
---|
8487 | return true;
|
---|
8488 | }
|
---|
8489 |
|
---|
8490 | /* static */
|
---|
8491 | DECLCALLBACK(int) Medium::i_vdConfigQuerySize(void *pvUser,
|
---|
8492 | const char *pszName,
|
---|
8493 | size_t *pcbValue)
|
---|
8494 | {
|
---|
8495 | AssertPtrReturn(pcbValue, VERR_INVALID_POINTER);
|
---|
8496 |
|
---|
8497 | Medium *that = static_cast<Medium*>(pvUser);
|
---|
8498 | AssertReturn(that != NULL, VERR_GENERAL_FAILURE);
|
---|
8499 |
|
---|
8500 | settings::StringsMap::const_iterator it = that->m->mapProperties.find(Utf8Str(pszName));
|
---|
8501 | if (it == that->m->mapProperties.end())
|
---|
8502 | return VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8503 |
|
---|
8504 | /* we interpret null values as "no value" in Medium */
|
---|
8505 | if (it->second.isEmpty())
|
---|
8506 | return VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8507 |
|
---|
8508 | *pcbValue = it->second.length() + 1 /* include terminator */;
|
---|
8509 |
|
---|
8510 | return VINF_SUCCESS;
|
---|
8511 | }
|
---|
8512 |
|
---|
8513 | /* static */
|
---|
8514 | DECLCALLBACK(int) Medium::i_vdConfigQuery(void *pvUser,
|
---|
8515 | const char *pszName,
|
---|
8516 | char *pszValue,
|
---|
8517 | size_t cchValue)
|
---|
8518 | {
|
---|
8519 | AssertPtrReturn(pszValue, VERR_INVALID_POINTER);
|
---|
8520 |
|
---|
8521 | Medium *that = static_cast<Medium*>(pvUser);
|
---|
8522 | AssertReturn(that != NULL, VERR_GENERAL_FAILURE);
|
---|
8523 |
|
---|
8524 | settings::StringsMap::const_iterator it = that->m->mapProperties.find(Utf8Str(pszName));
|
---|
8525 | if (it == that->m->mapProperties.end())
|
---|
8526 | return VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8527 |
|
---|
8528 | /* we interpret null values as "no value" in Medium */
|
---|
8529 | if (it->second.isEmpty())
|
---|
8530 | return VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8531 |
|
---|
8532 | const Utf8Str &value = it->second;
|
---|
8533 | if (value.length() >= cchValue)
|
---|
8534 | return VERR_CFGM_NOT_ENOUGH_SPACE;
|
---|
8535 |
|
---|
8536 | memcpy(pszValue, value.c_str(), value.length() + 1);
|
---|
8537 |
|
---|
8538 | return VINF_SUCCESS;
|
---|
8539 | }
|
---|
8540 |
|
---|
8541 | DECLCALLBACK(bool) Medium::i_vdCryptoConfigAreKeysValid(void *pvUser, const char *pszzValid)
|
---|
8542 | {
|
---|
8543 | /* Just return always true here. */
|
---|
8544 | NOREF(pvUser);
|
---|
8545 | NOREF(pszzValid);
|
---|
8546 | return true;
|
---|
8547 | }
|
---|
8548 |
|
---|
8549 | DECLCALLBACK(int) Medium::i_vdCryptoConfigQuerySize(void *pvUser, const char *pszName, size_t *pcbValue)
|
---|
8550 | {
|
---|
8551 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8552 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8553 | AssertPtrReturn(pcbValue, VERR_INVALID_POINTER);
|
---|
8554 |
|
---|
8555 | size_t cbValue = 0;
|
---|
8556 | if (!strcmp(pszName, "Algorithm"))
|
---|
8557 | cbValue = strlen(pSettings->pszCipher) + 1;
|
---|
8558 | else if (!strcmp(pszName, "KeyId"))
|
---|
8559 | cbValue = sizeof("irrelevant");
|
---|
8560 | else if (!strcmp(pszName, "KeyStore"))
|
---|
8561 | {
|
---|
8562 | if (!pSettings->pszKeyStoreLoad)
|
---|
8563 | return VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8564 | cbValue = strlen(pSettings->pszKeyStoreLoad) + 1;
|
---|
8565 | }
|
---|
8566 | else if (!strcmp(pszName, "CreateKeyStore"))
|
---|
8567 | cbValue = 2; /* Single digit + terminator. */
|
---|
8568 | else
|
---|
8569 | return VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8570 |
|
---|
8571 | *pcbValue = cbValue + 1 /* include terminator */;
|
---|
8572 |
|
---|
8573 | return VINF_SUCCESS;
|
---|
8574 | }
|
---|
8575 |
|
---|
8576 | DECLCALLBACK(int) Medium::i_vdCryptoConfigQuery(void *pvUser, const char *pszName,
|
---|
8577 | char *pszValue, size_t cchValue)
|
---|
8578 | {
|
---|
8579 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8580 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8581 | AssertPtrReturn(pszValue, VERR_INVALID_POINTER);
|
---|
8582 |
|
---|
8583 | const char *psz = NULL;
|
---|
8584 | if (!strcmp(pszName, "Algorithm"))
|
---|
8585 | psz = pSettings->pszCipher;
|
---|
8586 | else if (!strcmp(pszName, "KeyId"))
|
---|
8587 | psz = "irrelevant";
|
---|
8588 | else if (!strcmp(pszName, "KeyStore"))
|
---|
8589 | psz = pSettings->pszKeyStoreLoad;
|
---|
8590 | else if (!strcmp(pszName, "CreateKeyStore"))
|
---|
8591 | {
|
---|
8592 | if (pSettings->fCreateKeyStore)
|
---|
8593 | psz = "1";
|
---|
8594 | else
|
---|
8595 | psz = "0";
|
---|
8596 | }
|
---|
8597 | else
|
---|
8598 | return VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8599 |
|
---|
8600 | size_t cch = strlen(psz);
|
---|
8601 | if (cch >= cchValue)
|
---|
8602 | return VERR_CFGM_NOT_ENOUGH_SPACE;
|
---|
8603 |
|
---|
8604 | memcpy(pszValue, psz, cch + 1);
|
---|
8605 | return VINF_SUCCESS;
|
---|
8606 | }
|
---|
8607 |
|
---|
8608 | DECLCALLBACK(int) Medium::i_vdConfigUpdate(void *pvUser,
|
---|
8609 | bool fCreate,
|
---|
8610 | const char *pszName,
|
---|
8611 | const char *pszValue)
|
---|
8612 | {
|
---|
8613 | Medium *that = (Medium *)pvUser;
|
---|
8614 |
|
---|
8615 | // Detect if this runs inside i_queryInfo() on the current thread.
|
---|
8616 | // Skip if not. Check does not need synchronization.
|
---|
8617 | if (!that->m || !that->m->queryInfoRunning || !that->m->queryInfoSem.isWriteLockOnCurrentThread())
|
---|
8618 | return VINF_SUCCESS;
|
---|
8619 |
|
---|
8620 | // It's guaranteed that this code is executing inside Medium::i_queryInfo,
|
---|
8621 | // can assume it took care of synchronization.
|
---|
8622 | int rv = VINF_SUCCESS;
|
---|
8623 | Utf8Str strName(pszName);
|
---|
8624 | settings::StringsMap::const_iterator it = that->m->mapProperties.find(strName);
|
---|
8625 | if (it == that->m->mapProperties.end() && !fCreate)
|
---|
8626 | rv = VERR_CFGM_VALUE_NOT_FOUND;
|
---|
8627 | else
|
---|
8628 | that->m->mapProperties[strName] = Utf8Str(pszValue);
|
---|
8629 | return rv;
|
---|
8630 | }
|
---|
8631 |
|
---|
8632 | DECLCALLBACK(int) Medium::i_vdCryptoKeyRetain(void *pvUser, const char *pszId,
|
---|
8633 | const uint8_t **ppbKey, size_t *pcbKey)
|
---|
8634 | {
|
---|
8635 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8636 | NOREF(pszId);
|
---|
8637 | NOREF(ppbKey);
|
---|
8638 | NOREF(pcbKey);
|
---|
8639 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8640 | AssertMsgFailedReturn(("This method should not be called here!\n"), VERR_INVALID_STATE);
|
---|
8641 | }
|
---|
8642 |
|
---|
8643 | DECLCALLBACK(int) Medium::i_vdCryptoKeyRelease(void *pvUser, const char *pszId)
|
---|
8644 | {
|
---|
8645 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8646 | NOREF(pszId);
|
---|
8647 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8648 | AssertMsgFailedReturn(("This method should not be called here!\n"), VERR_INVALID_STATE);
|
---|
8649 | }
|
---|
8650 |
|
---|
8651 | DECLCALLBACK(int) Medium::i_vdCryptoKeyStorePasswordRetain(void *pvUser, const char *pszId, const char **ppszPassword)
|
---|
8652 | {
|
---|
8653 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8654 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8655 |
|
---|
8656 | NOREF(pszId);
|
---|
8657 | *ppszPassword = pSettings->pszPassword;
|
---|
8658 | return VINF_SUCCESS;
|
---|
8659 | }
|
---|
8660 |
|
---|
8661 | DECLCALLBACK(int) Medium::i_vdCryptoKeyStorePasswordRelease(void *pvUser, const char *pszId)
|
---|
8662 | {
|
---|
8663 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8664 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8665 | NOREF(pszId);
|
---|
8666 | return VINF_SUCCESS;
|
---|
8667 | }
|
---|
8668 |
|
---|
8669 | DECLCALLBACK(int) Medium::i_vdCryptoKeyStoreSave(void *pvUser, const void *pvKeyStore, size_t cbKeyStore)
|
---|
8670 | {
|
---|
8671 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8672 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8673 |
|
---|
8674 | pSettings->pszKeyStore = (char *)RTMemAllocZ(cbKeyStore);
|
---|
8675 | if (!pSettings->pszKeyStore)
|
---|
8676 | return VERR_NO_MEMORY;
|
---|
8677 |
|
---|
8678 | memcpy(pSettings->pszKeyStore, pvKeyStore, cbKeyStore);
|
---|
8679 | return VINF_SUCCESS;
|
---|
8680 | }
|
---|
8681 |
|
---|
8682 | DECLCALLBACK(int) Medium::i_vdCryptoKeyStoreReturnParameters(void *pvUser, const char *pszCipher,
|
---|
8683 | const uint8_t *pbDek, size_t cbDek)
|
---|
8684 | {
|
---|
8685 | MediumCryptoFilterSettings *pSettings = (MediumCryptoFilterSettings *)pvUser;
|
---|
8686 | AssertPtrReturn(pSettings, VERR_GENERAL_FAILURE);
|
---|
8687 |
|
---|
8688 | pSettings->pszCipherReturned = RTStrDup(pszCipher);
|
---|
8689 | pSettings->pbDek = pbDek;
|
---|
8690 | pSettings->cbDek = cbDek;
|
---|
8691 |
|
---|
8692 | return pSettings->pszCipherReturned ? VINF_SUCCESS : VERR_NO_MEMORY;
|
---|
8693 | }
|
---|
8694 |
|
---|
8695 | /**
|
---|
8696 | * Creates a VDISK instance for this medium.
|
---|
8697 | *
|
---|
8698 | * @note Caller should not hold any medium related locks as this method will
|
---|
8699 | * acquire the medium lock for writing and others (VirtualBox).
|
---|
8700 | *
|
---|
8701 | * @returns COM status code.
|
---|
8702 | * @param fWritable Whether to return a writable VDISK instance
|
---|
8703 | * (true) or a read-only one (false).
|
---|
8704 | * @param pKeyStore The key store.
|
---|
8705 | * @param ppHdd Where to return the pointer to the VDISK on
|
---|
8706 | * success.
|
---|
8707 | * @param pMediumLockList The lock list to populate and lock. Caller
|
---|
8708 | * is responsible for calling the destructor or
|
---|
8709 | * MediumLockList::Clear() after destroying
|
---|
8710 | * @a *ppHdd
|
---|
8711 | * @param pCryptoSettings The crypto settings to use for setting up
|
---|
8712 | * decryption/encryption of the VDISK. This object
|
---|
8713 | * must be alive until the VDISK is destroyed!
|
---|
8714 | */
|
---|
8715 | HRESULT Medium::i_openForIO(bool fWritable, SecretKeyStore *pKeyStore, PVDISK *ppHdd, MediumLockList *pMediumLockList,
|
---|
8716 | MediumCryptoFilterSettings *pCryptoSettings)
|
---|
8717 | {
|
---|
8718 | /*
|
---|
8719 | * Create the media lock list and lock the media.
|
---|
8720 | */
|
---|
8721 | HRESULT hrc = i_createMediumLockList(true /* fFailIfInaccessible */,
|
---|
8722 | fWritable ? this : NULL /* pToLockWrite */,
|
---|
8723 | false /* fMediumLockWriteAll */,
|
---|
8724 | NULL,
|
---|
8725 | *pMediumLockList);
|
---|
8726 | if (SUCCEEDED(hrc))
|
---|
8727 | hrc = pMediumLockList->Lock();
|
---|
8728 | if (FAILED(hrc))
|
---|
8729 | return hrc;
|
---|
8730 |
|
---|
8731 | /*
|
---|
8732 | * Get the base medium before write locking this medium.
|
---|
8733 | */
|
---|
8734 | ComObjPtr<Medium> pBase = i_getBase();
|
---|
8735 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
8736 |
|
---|
8737 | /*
|
---|
8738 | * Create the VDISK instance.
|
---|
8739 | */
|
---|
8740 | PVDISK pHdd;
|
---|
8741 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &pHdd);
|
---|
8742 | AssertRCReturn(vrc, E_FAIL);
|
---|
8743 |
|
---|
8744 | /*
|
---|
8745 | * Goto avoidance using try/catch/throw(HRESULT).
|
---|
8746 | */
|
---|
8747 | try
|
---|
8748 | {
|
---|
8749 | settings::StringsMap::iterator itKeyStore = pBase->m->mapProperties.find("CRYPT/KeyStore");
|
---|
8750 | if (itKeyStore != pBase->m->mapProperties.end())
|
---|
8751 | {
|
---|
8752 | #ifdef VBOX_WITH_EXTPACK
|
---|
8753 | settings::StringsMap::iterator itKeyId = pBase->m->mapProperties.find("CRYPT/KeyId");
|
---|
8754 |
|
---|
8755 | ExtPackManager *pExtPackManager = m->pVirtualBox->i_getExtPackManager();
|
---|
8756 | if (pExtPackManager->i_isExtPackUsable(ORACLE_PUEL_EXTPACK_NAME))
|
---|
8757 | {
|
---|
8758 | /* Load the plugin */
|
---|
8759 | Utf8Str strPlugin;
|
---|
8760 | hrc = pExtPackManager->i_getLibraryPathForExtPack(g_szVDPlugin, ORACLE_PUEL_EXTPACK_NAME, &strPlugin);
|
---|
8761 | if (SUCCEEDED(hrc))
|
---|
8762 | {
|
---|
8763 | vrc = VDPluginLoadFromFilename(strPlugin.c_str());
|
---|
8764 | if (RT_FAILURE(vrc))
|
---|
8765 | throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
|
---|
8766 | tr("Retrieving encryption settings of the image failed because the encryption plugin could not be loaded (%s)"),
|
---|
8767 | i_vdError(vrc).c_str());
|
---|
8768 | }
|
---|
8769 | else
|
---|
8770 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
8771 | tr("Encryption is not supported because the extension pack '%s' is missing the encryption plugin (old extension pack installed?)"),
|
---|
8772 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
8773 | }
|
---|
8774 | else
|
---|
8775 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
8776 | tr("Encryption is not supported because the extension pack '%s' is missing"),
|
---|
8777 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
8778 |
|
---|
8779 | if (itKeyId == pBase->m->mapProperties.end())
|
---|
8780 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8781 | tr("Image '%s' is configured for encryption but doesn't has a key identifier set"),
|
---|
8782 | pBase->m->strLocationFull.c_str());
|
---|
8783 |
|
---|
8784 | /* Find the proper secret key in the key store. */
|
---|
8785 | if (!pKeyStore)
|
---|
8786 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
8787 | tr("Image '%s' is configured for encryption but there is no key store to retrieve the password from"),
|
---|
8788 | pBase->m->strLocationFull.c_str());
|
---|
8789 |
|
---|
8790 | SecretKey *pKey = NULL;
|
---|
8791 | vrc = pKeyStore->retainSecretKey(itKeyId->second, &pKey);
|
---|
8792 | if (RT_FAILURE(vrc))
|
---|
8793 | throw setErrorBoth(VBOX_E_INVALID_OBJECT_STATE, vrc,
|
---|
8794 | tr("Failed to retrieve the secret key with ID \"%s\" from the store (%Rrc)"),
|
---|
8795 | itKeyId->second.c_str(), vrc);
|
---|
8796 |
|
---|
8797 | i_taskEncryptSettingsSetup(pCryptoSettings, NULL, itKeyStore->second.c_str(), (const char *)pKey->getKeyBuffer(),
|
---|
8798 | false /* fCreateKeyStore */);
|
---|
8799 | vrc = VDFilterAdd(pHdd, "CRYPT", VD_FILTER_FLAGS_DEFAULT, pCryptoSettings->vdFilterIfaces);
|
---|
8800 | pKeyStore->releaseSecretKey(itKeyId->second);
|
---|
8801 | if (vrc == VERR_VD_PASSWORD_INCORRECT)
|
---|
8802 | throw setErrorBoth(VBOX_E_PASSWORD_INCORRECT, vrc, tr("The password to decrypt the image is incorrect"));
|
---|
8803 | if (RT_FAILURE(vrc))
|
---|
8804 | throw setErrorBoth(VBOX_E_INVALID_OBJECT_STATE, vrc, tr("Failed to load the decryption filter: %s"),
|
---|
8805 | i_vdError(vrc).c_str());
|
---|
8806 | #else
|
---|
8807 | RT_NOREF(pKeyStore, pCryptoSettings);
|
---|
8808 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
8809 | tr("Encryption is not supported because extension pack support is not built in"));
|
---|
8810 | #endif /* VBOX_WITH_EXTPACK */
|
---|
8811 | }
|
---|
8812 |
|
---|
8813 | /*
|
---|
8814 | * Open all media in the source chain.
|
---|
8815 | */
|
---|
8816 | MediumLockList::Base::const_iterator sourceListBegin = pMediumLockList->GetBegin();
|
---|
8817 | MediumLockList::Base::const_iterator sourceListEnd = pMediumLockList->GetEnd();
|
---|
8818 | MediumLockList::Base::const_iterator mediumListLast = sourceListEnd;
|
---|
8819 | --mediumListLast;
|
---|
8820 |
|
---|
8821 | for (MediumLockList::Base::const_iterator it = sourceListBegin; it != sourceListEnd; ++it)
|
---|
8822 | {
|
---|
8823 | const MediumLock &mediumLock = *it;
|
---|
8824 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
8825 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
8826 |
|
---|
8827 | /* sanity check */
|
---|
8828 | Assert(pMedium->m->state == (fWritable && it == mediumListLast ? MediumState_LockedWrite : MediumState_LockedRead));
|
---|
8829 |
|
---|
8830 | /* Open all media in read-only mode. */
|
---|
8831 | vrc = VDOpen(pHdd,
|
---|
8832 | pMedium->m->strFormat.c_str(),
|
---|
8833 | pMedium->m->strLocationFull.c_str(),
|
---|
8834 | m->uOpenFlagsDef | (fWritable && it == mediumListLast ? VD_OPEN_FLAGS_NORMAL : VD_OPEN_FLAGS_READONLY),
|
---|
8835 | pMedium->m->vdImageIfaces);
|
---|
8836 | if (RT_FAILURE(vrc))
|
---|
8837 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
8838 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
8839 | pMedium->m->strLocationFull.c_str(),
|
---|
8840 | i_vdError(vrc).c_str());
|
---|
8841 | }
|
---|
8842 |
|
---|
8843 | Assert(m->state == (fWritable ? MediumState_LockedWrite : MediumState_LockedRead));
|
---|
8844 |
|
---|
8845 | /*
|
---|
8846 | * Done!
|
---|
8847 | */
|
---|
8848 | *ppHdd = pHdd;
|
---|
8849 | return S_OK;
|
---|
8850 | }
|
---|
8851 | catch (HRESULT hrc2)
|
---|
8852 | {
|
---|
8853 | hrc = hrc2;
|
---|
8854 | }
|
---|
8855 |
|
---|
8856 | VDDestroy(pHdd);
|
---|
8857 | return hrc;
|
---|
8858 |
|
---|
8859 | }
|
---|
8860 |
|
---|
8861 | /**
|
---|
8862 | * Implementation code for the "create base" task.
|
---|
8863 | *
|
---|
8864 | * This only gets started from Medium::CreateBaseStorage() and always runs
|
---|
8865 | * asynchronously. As a result, we always save the VirtualBox.xml file when
|
---|
8866 | * we're done here.
|
---|
8867 | *
|
---|
8868 | * @param task
|
---|
8869 | * @return
|
---|
8870 | */
|
---|
8871 | HRESULT Medium::i_taskCreateBaseHandler(Medium::CreateBaseTask &task)
|
---|
8872 | {
|
---|
8873 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
8874 | * to lock order violations, it probably causes lock order issues related
|
---|
8875 | * to the AutoCaller usage. */
|
---|
8876 | HRESULT hrc = S_OK;
|
---|
8877 |
|
---|
8878 | /* these parameters we need after creation */
|
---|
8879 | uint64_t size = 0, logicalSize = 0;
|
---|
8880 | MediumVariant_T variant = MediumVariant_Standard;
|
---|
8881 | bool fGenerateUuid = false;
|
---|
8882 |
|
---|
8883 | try
|
---|
8884 | {
|
---|
8885 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
8886 |
|
---|
8887 | /* The object may request a specific UUID (through a special form of
|
---|
8888 | * the moveTo() argument). Otherwise we have to generate it */
|
---|
8889 | Guid id = m->id;
|
---|
8890 |
|
---|
8891 | fGenerateUuid = id.isZero();
|
---|
8892 | if (fGenerateUuid)
|
---|
8893 | {
|
---|
8894 | id.create();
|
---|
8895 | /* VirtualBox::i_registerMedium() will need UUID */
|
---|
8896 | unconst(m->id) = id;
|
---|
8897 | }
|
---|
8898 |
|
---|
8899 | Utf8Str format(m->strFormat);
|
---|
8900 | Utf8Str location(m->strLocationFull);
|
---|
8901 | uint64_t capabilities = m->formatObj->i_getCapabilities();
|
---|
8902 | ComAssertThrow(capabilities & ( MediumFormatCapabilities_CreateFixed
|
---|
8903 | | MediumFormatCapabilities_CreateDynamic), E_FAIL);
|
---|
8904 | Assert(m->state == MediumState_Creating);
|
---|
8905 |
|
---|
8906 | PVDISK hdd;
|
---|
8907 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
8908 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
8909 |
|
---|
8910 | /* unlock before the potentially lengthy operation */
|
---|
8911 | thisLock.release();
|
---|
8912 |
|
---|
8913 | try
|
---|
8914 | {
|
---|
8915 | /* ensure the directory exists */
|
---|
8916 | if (capabilities & MediumFormatCapabilities_File)
|
---|
8917 | {
|
---|
8918 | hrc = VirtualBox::i_ensureFilePathExists(location, !(task.mVariant & MediumVariant_NoCreateDir) /* fCreate */);
|
---|
8919 | if (FAILED(hrc))
|
---|
8920 | throw hrc;
|
---|
8921 | }
|
---|
8922 |
|
---|
8923 | VDGEOMETRY geo = { 0, 0, 0 }; /* auto-detect */
|
---|
8924 |
|
---|
8925 | vrc = VDCreateBase(hdd,
|
---|
8926 | format.c_str(),
|
---|
8927 | location.c_str(),
|
---|
8928 | task.mSize,
|
---|
8929 | task.mVariant & ~(MediumVariant_NoCreateDir | MediumVariant_Formatted),
|
---|
8930 | NULL,
|
---|
8931 | &geo,
|
---|
8932 | &geo,
|
---|
8933 | id.raw(),
|
---|
8934 | VD_OPEN_FLAGS_NORMAL | m->uOpenFlagsDef,
|
---|
8935 | m->vdImageIfaces,
|
---|
8936 | task.mVDOperationIfaces);
|
---|
8937 | if (RT_FAILURE(vrc))
|
---|
8938 | {
|
---|
8939 | if (vrc == VERR_VD_INVALID_TYPE)
|
---|
8940 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
8941 | tr("Parameters for creating the medium storage unit '%s' are invalid%s"),
|
---|
8942 | location.c_str(), i_vdError(vrc).c_str());
|
---|
8943 | else
|
---|
8944 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
8945 | tr("Could not create the medium storage unit '%s'%s"),
|
---|
8946 | location.c_str(), i_vdError(vrc).c_str());
|
---|
8947 | }
|
---|
8948 |
|
---|
8949 | if (task.mVariant & MediumVariant_Formatted)
|
---|
8950 | {
|
---|
8951 | RTVFSFILE hVfsFile;
|
---|
8952 | vrc = VDCreateVfsFileFromDisk(hdd, 0 /*fFlags*/, &hVfsFile);
|
---|
8953 | if (RT_FAILURE(vrc))
|
---|
8954 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc, tr("Opening medium storage unit '%s' failed%s"),
|
---|
8955 | location.c_str(), i_vdError(vrc).c_str());
|
---|
8956 | RTERRINFOSTATIC ErrInfo;
|
---|
8957 | vrc = RTFsFatVolFormat(hVfsFile, 0 /* offVol */, 0 /* cbVol */, RTFSFATVOL_FMT_F_FULL,
|
---|
8958 | 0 /* cbSector */, 0 /* cbSectorPerCluster */, RTFSFATTYPE_INVALID,
|
---|
8959 | 0 /* cHeads */, 0 /* cSectorsPerTrack*/, 0 /* bMedia */,
|
---|
8960 | 0 /* cRootDirEntries */, 0 /* cHiddenSectors */,
|
---|
8961 | RTErrInfoInitStatic(&ErrInfo));
|
---|
8962 | RTVfsFileRelease(hVfsFile);
|
---|
8963 | if (RT_FAILURE(vrc) && RTErrInfoIsSet(&ErrInfo.Core))
|
---|
8964 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc, tr("Formatting medium storage unit '%s' failed: %s"),
|
---|
8965 | location.c_str(), ErrInfo.Core.pszMsg);
|
---|
8966 | if (RT_FAILURE(vrc))
|
---|
8967 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc, tr("Formatting medium storage unit '%s' failed%s"),
|
---|
8968 | location.c_str(), i_vdError(vrc).c_str());
|
---|
8969 | }
|
---|
8970 |
|
---|
8971 | size = VDGetFileSize(hdd, 0);
|
---|
8972 | logicalSize = VDGetSize(hdd, 0);
|
---|
8973 | unsigned uImageFlags;
|
---|
8974 | vrc = VDGetImageFlags(hdd, 0, &uImageFlags);
|
---|
8975 | if (RT_SUCCESS(vrc))
|
---|
8976 | variant = (MediumVariant_T)uImageFlags;
|
---|
8977 | }
|
---|
8978 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
8979 |
|
---|
8980 | VDDestroy(hdd);
|
---|
8981 | }
|
---|
8982 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
8983 |
|
---|
8984 | if (SUCCEEDED(hrc))
|
---|
8985 | {
|
---|
8986 | /* register with mVirtualBox as the last step and move to
|
---|
8987 | * Created state only on success (leaving an orphan file is
|
---|
8988 | * better than breaking media registry consistency) */
|
---|
8989 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
8990 | ComObjPtr<Medium> pMedium;
|
---|
8991 | hrc = m->pVirtualBox->i_registerMedium(this, &pMedium, treeLock);
|
---|
8992 | Assert(pMedium == NULL || this == pMedium);
|
---|
8993 | }
|
---|
8994 |
|
---|
8995 | // re-acquire the lock before changing state
|
---|
8996 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
8997 |
|
---|
8998 | if (SUCCEEDED(hrc))
|
---|
8999 | {
|
---|
9000 | m->state = MediumState_Created;
|
---|
9001 |
|
---|
9002 | m->size = size;
|
---|
9003 | m->logicalSize = logicalSize;
|
---|
9004 | m->variant = variant;
|
---|
9005 |
|
---|
9006 | thisLock.release();
|
---|
9007 | i_markRegistriesModified();
|
---|
9008 | if (task.isAsync())
|
---|
9009 | {
|
---|
9010 | // in asynchronous mode, save settings now
|
---|
9011 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
9012 | }
|
---|
9013 | }
|
---|
9014 | else
|
---|
9015 | {
|
---|
9016 | /* back to NotCreated on failure */
|
---|
9017 | m->state = MediumState_NotCreated;
|
---|
9018 |
|
---|
9019 | /* reset UUID to prevent it from being reused next time */
|
---|
9020 | if (fGenerateUuid)
|
---|
9021 | unconst(m->id).clear();
|
---|
9022 | }
|
---|
9023 |
|
---|
9024 | if (task.NotifyAboutChanges() && SUCCEEDED(hrc))
|
---|
9025 | {
|
---|
9026 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
9027 | m->pVirtualBox->i_onMediumRegistered(m->id, m->devType, TRUE);
|
---|
9028 | }
|
---|
9029 |
|
---|
9030 | return hrc;
|
---|
9031 | }
|
---|
9032 |
|
---|
9033 | /**
|
---|
9034 | * Implementation code for the "create diff" task.
|
---|
9035 | *
|
---|
9036 | * This task always gets started from Medium::createDiffStorage() and can run
|
---|
9037 | * synchronously or asynchronously depending on the "wait" parameter passed to
|
---|
9038 | * that function. If we run synchronously, the caller expects the medium
|
---|
9039 | * registry modification to be set before returning; otherwise (in asynchronous
|
---|
9040 | * mode), we save the settings ourselves.
|
---|
9041 | *
|
---|
9042 | * @param task
|
---|
9043 | * @return
|
---|
9044 | */
|
---|
9045 | HRESULT Medium::i_taskCreateDiffHandler(Medium::CreateDiffTask &task)
|
---|
9046 | {
|
---|
9047 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
9048 | * to lock order violations, it probably causes lock order issues related
|
---|
9049 | * to the AutoCaller usage. */
|
---|
9050 | HRESULT hrcTmp = S_OK;
|
---|
9051 |
|
---|
9052 | const ComObjPtr<Medium> &pTarget = task.mTarget;
|
---|
9053 |
|
---|
9054 | uint64_t size = 0, logicalSize = 0;
|
---|
9055 | MediumVariant_T variant = MediumVariant_Standard;
|
---|
9056 | bool fGenerateUuid = false;
|
---|
9057 |
|
---|
9058 | try
|
---|
9059 | {
|
---|
9060 | if (i_getDepth() >= SETTINGS_MEDIUM_DEPTH_MAX)
|
---|
9061 | {
|
---|
9062 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
9063 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
9064 | tr("Cannot create differencing image for medium '%s', because it exceeds the medium tree depth limit. Please merge some images which you no longer need"),
|
---|
9065 | m->strLocationFull.c_str());
|
---|
9066 | }
|
---|
9067 |
|
---|
9068 | /* Lock both in {parent,child} order. */
|
---|
9069 | AutoMultiWriteLock2 mediaLock(this, pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
9070 |
|
---|
9071 | /* The object may request a specific UUID (through a special form of
|
---|
9072 | * the moveTo() argument). Otherwise we have to generate it */
|
---|
9073 | Guid targetId = pTarget->m->id;
|
---|
9074 |
|
---|
9075 | fGenerateUuid = targetId.isZero();
|
---|
9076 | if (fGenerateUuid)
|
---|
9077 | {
|
---|
9078 | targetId.create();
|
---|
9079 | /* VirtualBox::i_registerMedium() will need UUID */
|
---|
9080 | unconst(pTarget->m->id) = targetId;
|
---|
9081 | }
|
---|
9082 |
|
---|
9083 | Guid id = m->id;
|
---|
9084 |
|
---|
9085 | Utf8Str targetFormat(pTarget->m->strFormat);
|
---|
9086 | Utf8Str targetLocation(pTarget->m->strLocationFull);
|
---|
9087 | uint64_t capabilities = pTarget->m->formatObj->i_getCapabilities();
|
---|
9088 | ComAssertThrow(capabilities & MediumFormatCapabilities_CreateDynamic, E_FAIL);
|
---|
9089 |
|
---|
9090 | Assert(pTarget->m->state == MediumState_Creating);
|
---|
9091 | Assert(m->state == MediumState_LockedRead);
|
---|
9092 |
|
---|
9093 | PVDISK hdd;
|
---|
9094 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
9095 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
9096 |
|
---|
9097 | /* the two media are now protected by their non-default states;
|
---|
9098 | * unlock the media before the potentially lengthy operation */
|
---|
9099 | mediaLock.release();
|
---|
9100 |
|
---|
9101 | try
|
---|
9102 | {
|
---|
9103 | /* Open all media in the target chain but the last. */
|
---|
9104 | MediumLockList::Base::const_iterator targetListBegin =
|
---|
9105 | task.mpMediumLockList->GetBegin();
|
---|
9106 | MediumLockList::Base::const_iterator targetListEnd =
|
---|
9107 | task.mpMediumLockList->GetEnd();
|
---|
9108 | for (MediumLockList::Base::const_iterator it = targetListBegin;
|
---|
9109 | it != targetListEnd;
|
---|
9110 | ++it)
|
---|
9111 | {
|
---|
9112 | const MediumLock &mediumLock = *it;
|
---|
9113 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
9114 |
|
---|
9115 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
9116 |
|
---|
9117 | /* Skip over the target diff medium */
|
---|
9118 | if (pMedium->m->state == MediumState_Creating)
|
---|
9119 | continue;
|
---|
9120 |
|
---|
9121 | /* sanity check */
|
---|
9122 | Assert(pMedium->m->state == MediumState_LockedRead);
|
---|
9123 |
|
---|
9124 | /* Open all media in appropriate mode. */
|
---|
9125 | vrc = VDOpen(hdd,
|
---|
9126 | pMedium->m->strFormat.c_str(),
|
---|
9127 | pMedium->m->strLocationFull.c_str(),
|
---|
9128 | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO | m->uOpenFlagsDef,
|
---|
9129 | pMedium->m->vdImageIfaces);
|
---|
9130 | if (RT_FAILURE(vrc))
|
---|
9131 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
9132 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
9133 | pMedium->m->strLocationFull.c_str(),
|
---|
9134 | i_vdError(vrc).c_str());
|
---|
9135 | }
|
---|
9136 |
|
---|
9137 | /* ensure the target directory exists */
|
---|
9138 | if (capabilities & MediumFormatCapabilities_File)
|
---|
9139 | {
|
---|
9140 | HRESULT hrc = VirtualBox::i_ensureFilePathExists(targetLocation,
|
---|
9141 | !(task.mVariant & MediumVariant_NoCreateDir) /* fCreate */);
|
---|
9142 | if (FAILED(hrc))
|
---|
9143 | throw hrc;
|
---|
9144 | }
|
---|
9145 |
|
---|
9146 | vrc = VDCreateDiff(hdd,
|
---|
9147 | targetFormat.c_str(),
|
---|
9148 | targetLocation.c_str(),
|
---|
9149 | (task.mVariant & ~(MediumVariant_NoCreateDir | MediumVariant_Formatted | MediumVariant_VmdkESX | MediumVariant_VmdkRawDisk))
|
---|
9150 | | VD_IMAGE_FLAGS_DIFF,
|
---|
9151 | NULL,
|
---|
9152 | targetId.raw(),
|
---|
9153 | id.raw(),
|
---|
9154 | VD_OPEN_FLAGS_NORMAL | m->uOpenFlagsDef,
|
---|
9155 | pTarget->m->vdImageIfaces,
|
---|
9156 | task.mVDOperationIfaces);
|
---|
9157 | if (RT_FAILURE(vrc))
|
---|
9158 | {
|
---|
9159 | if (vrc == VERR_VD_INVALID_TYPE)
|
---|
9160 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
9161 | tr("Parameters for creating the differencing medium storage unit '%s' are invalid%s"),
|
---|
9162 | targetLocation.c_str(), i_vdError(vrc).c_str());
|
---|
9163 | else
|
---|
9164 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
9165 | tr("Could not create the differencing medium storage unit '%s'%s"),
|
---|
9166 | targetLocation.c_str(), i_vdError(vrc).c_str());
|
---|
9167 | }
|
---|
9168 |
|
---|
9169 | size = VDGetFileSize(hdd, VD_LAST_IMAGE);
|
---|
9170 | logicalSize = VDGetSize(hdd, VD_LAST_IMAGE);
|
---|
9171 | unsigned uImageFlags;
|
---|
9172 | vrc = VDGetImageFlags(hdd, 0, &uImageFlags);
|
---|
9173 | if (RT_SUCCESS(vrc))
|
---|
9174 | variant = (MediumVariant_T)uImageFlags;
|
---|
9175 | }
|
---|
9176 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
9177 |
|
---|
9178 | VDDestroy(hdd);
|
---|
9179 | }
|
---|
9180 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
9181 |
|
---|
9182 | MultiResult mrc(hrcTmp);
|
---|
9183 |
|
---|
9184 | if (SUCCEEDED(mrc))
|
---|
9185 | {
|
---|
9186 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
9187 |
|
---|
9188 | Assert(pTarget->m->pParent.isNull());
|
---|
9189 |
|
---|
9190 | /* associate child with the parent, maximum depth was checked above */
|
---|
9191 | pTarget->i_setParent(this);
|
---|
9192 |
|
---|
9193 | /* diffs for immutable media are auto-reset by default */
|
---|
9194 | bool fAutoReset;
|
---|
9195 | {
|
---|
9196 | ComObjPtr<Medium> pBase = i_getBase();
|
---|
9197 | AutoReadLock block(pBase COMMA_LOCKVAL_SRC_POS);
|
---|
9198 | fAutoReset = (pBase->m->type == MediumType_Immutable);
|
---|
9199 | }
|
---|
9200 | {
|
---|
9201 | AutoWriteLock tlock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
9202 | pTarget->m->autoReset = fAutoReset;
|
---|
9203 | }
|
---|
9204 |
|
---|
9205 | /* register with mVirtualBox as the last step and move to
|
---|
9206 | * Created state only on success (leaving an orphan file is
|
---|
9207 | * better than breaking media registry consistency) */
|
---|
9208 | ComObjPtr<Medium> pMedium;
|
---|
9209 | mrc = m->pVirtualBox->i_registerMedium(pTarget, &pMedium, treeLock);
|
---|
9210 | Assert(pTarget == pMedium);
|
---|
9211 |
|
---|
9212 | if (FAILED(mrc))
|
---|
9213 | /* break the parent association on failure to register */
|
---|
9214 | i_deparent();
|
---|
9215 | }
|
---|
9216 |
|
---|
9217 | AutoMultiWriteLock2 mediaLock(this, pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
9218 |
|
---|
9219 | if (SUCCEEDED(mrc))
|
---|
9220 | {
|
---|
9221 | pTarget->m->state = MediumState_Created;
|
---|
9222 |
|
---|
9223 | pTarget->m->size = size;
|
---|
9224 | pTarget->m->logicalSize = logicalSize;
|
---|
9225 | pTarget->m->variant = variant;
|
---|
9226 | }
|
---|
9227 | else
|
---|
9228 | {
|
---|
9229 | /* back to NotCreated on failure */
|
---|
9230 | pTarget->m->state = MediumState_NotCreated;
|
---|
9231 |
|
---|
9232 | pTarget->m->autoReset = false;
|
---|
9233 |
|
---|
9234 | /* reset UUID to prevent it from being reused next time */
|
---|
9235 | if (fGenerateUuid)
|
---|
9236 | unconst(pTarget->m->id).clear();
|
---|
9237 | }
|
---|
9238 |
|
---|
9239 | // deregister the task registered in createDiffStorage()
|
---|
9240 | Assert(m->numCreateDiffTasks != 0);
|
---|
9241 | --m->numCreateDiffTasks;
|
---|
9242 |
|
---|
9243 | mediaLock.release();
|
---|
9244 | i_markRegistriesModified();
|
---|
9245 | if (task.isAsync())
|
---|
9246 | {
|
---|
9247 | // in asynchronous mode, save settings now
|
---|
9248 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
9249 | }
|
---|
9250 |
|
---|
9251 | /* Note that in sync mode, it's the caller's responsibility to
|
---|
9252 | * unlock the medium. */
|
---|
9253 |
|
---|
9254 | if (task.NotifyAboutChanges() && SUCCEEDED(mrc))
|
---|
9255 | {
|
---|
9256 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
9257 | m->pVirtualBox->i_onMediumRegistered(m->id, m->devType, TRUE);
|
---|
9258 | }
|
---|
9259 |
|
---|
9260 | return mrc;
|
---|
9261 | }
|
---|
9262 |
|
---|
9263 | /**
|
---|
9264 | * Implementation code for the "merge" task.
|
---|
9265 | *
|
---|
9266 | * This task always gets started from Medium::mergeTo() and can run
|
---|
9267 | * synchronously or asynchronously depending on the "wait" parameter passed to
|
---|
9268 | * that function. If we run synchronously, the caller expects the medium
|
---|
9269 | * registry modification to be set before returning; otherwise (in asynchronous
|
---|
9270 | * mode), we save the settings ourselves.
|
---|
9271 | *
|
---|
9272 | * @param task
|
---|
9273 | * @return
|
---|
9274 | */
|
---|
9275 | HRESULT Medium::i_taskMergeHandler(Medium::MergeTask &task)
|
---|
9276 | {
|
---|
9277 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
9278 | * to lock order violations, it probably causes lock order issues related
|
---|
9279 | * to the AutoCaller usage. */
|
---|
9280 | HRESULT hrcTmp = S_OK;
|
---|
9281 |
|
---|
9282 | const ComObjPtr<Medium> &pTarget = task.mTarget;
|
---|
9283 |
|
---|
9284 | try
|
---|
9285 | {
|
---|
9286 | if (!task.mParentForTarget.isNull())
|
---|
9287 | if (task.mParentForTarget->i_getDepth() >= SETTINGS_MEDIUM_DEPTH_MAX)
|
---|
9288 | {
|
---|
9289 | AutoReadLock plock(task.mParentForTarget COMMA_LOCKVAL_SRC_POS);
|
---|
9290 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
9291 | tr("Cannot merge image for medium '%s', because it exceeds the medium tree depth limit. Please merge some images which you no longer need"),
|
---|
9292 | task.mParentForTarget->m->strLocationFull.c_str());
|
---|
9293 | }
|
---|
9294 |
|
---|
9295 | // Resize target to source size, if possible. Otherwise throw an error.
|
---|
9296 | // It's offline resizing. Online resizing will be called in the
|
---|
9297 | // SessionMachine::onlineMergeMedium.
|
---|
9298 |
|
---|
9299 | uint64_t sourceSize = 0;
|
---|
9300 | Utf8Str sourceName;
|
---|
9301 | {
|
---|
9302 | AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
9303 | sourceSize = i_getLogicalSize();
|
---|
9304 | sourceName = i_getName();
|
---|
9305 | }
|
---|
9306 | uint64_t targetSize = 0;
|
---|
9307 | Utf8Str targetName;
|
---|
9308 | {
|
---|
9309 | AutoReadLock alock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
9310 | targetSize = pTarget->i_getLogicalSize();
|
---|
9311 | targetName = pTarget->i_getName();
|
---|
9312 | }
|
---|
9313 |
|
---|
9314 | //reducing vm disks are not implemented yet
|
---|
9315 | if (sourceSize > targetSize)
|
---|
9316 | {
|
---|
9317 | if (i_isMediumFormatFile())
|
---|
9318 | {
|
---|
9319 | /// @todo r=klaus Can this use the standard code for creating a medium lock list?
|
---|
9320 | // Have to make own lock list, because "resize" method resizes the last image
|
---|
9321 | // in the lock chain only. The lock chain is already in the task.mpMediumLockList,
|
---|
9322 | // so just make new lock list based on it, with the right last medium. The own
|
---|
9323 | // lock list skips double locking and therefore does not affect the general lock
|
---|
9324 | // state after the "resize" method.
|
---|
9325 | MediumLockList* pMediumLockListForResize = new MediumLockList();
|
---|
9326 |
|
---|
9327 | for (MediumLockList::Base::iterator it = task.mpMediumLockList->GetBegin();
|
---|
9328 | it != task.mpMediumLockList->GetEnd();
|
---|
9329 | ++it)
|
---|
9330 | {
|
---|
9331 | ComObjPtr<Medium> pMedium = it->GetMedium();
|
---|
9332 | pMediumLockListForResize->Append(pMedium, pMedium->m->state == MediumState_LockedWrite);
|
---|
9333 | if (pMedium == pTarget)
|
---|
9334 | break;
|
---|
9335 | }
|
---|
9336 |
|
---|
9337 | // just to switch internal state of the lock list to avoid errors during list deletion,
|
---|
9338 | // because all media in the list already locked by task.mpMediumLockList
|
---|
9339 | HRESULT hrc = pMediumLockListForResize->Lock(true /* fSkipOverLockedMedia */);
|
---|
9340 | if (FAILED(hrc))
|
---|
9341 | {
|
---|
9342 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
9343 | delete pMediumLockListForResize;
|
---|
9344 | throw setError(hrc,
|
---|
9345 | tr("Failed to lock the medium '%s' to resize before merge"),
|
---|
9346 | targetName.c_str());
|
---|
9347 | }
|
---|
9348 |
|
---|
9349 | ComObjPtr<Progress> pProgress(task.GetProgressObject());
|
---|
9350 | hrc = pTarget->i_resize(sourceSize, pMediumLockListForResize, &pProgress, true, false);
|
---|
9351 | if (FAILED(hrc))
|
---|
9352 | {
|
---|
9353 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
9354 | delete pMediumLockListForResize;
|
---|
9355 | throw setError(hrc,
|
---|
9356 | tr("Failed to set size of '%s' to size of '%s'"),
|
---|
9357 | targetName.c_str(), sourceName.c_str());
|
---|
9358 | }
|
---|
9359 | delete pMediumLockListForResize;
|
---|
9360 | }
|
---|
9361 | else
|
---|
9362 | {
|
---|
9363 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
9364 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
9365 | tr("Sizes of '%s' and '%s' are different and medium format does not support resing"),
|
---|
9366 | sourceName.c_str(), targetName.c_str());
|
---|
9367 | }
|
---|
9368 | }
|
---|
9369 |
|
---|
9370 | task.GetProgressObject()->SetNextOperation(BstrFmt(tr("Merging medium '%s' to '%s'"),
|
---|
9371 | i_getName().c_str(),
|
---|
9372 | targetName.c_str()).raw(),
|
---|
9373 | 1);
|
---|
9374 |
|
---|
9375 | PVDISK hdd;
|
---|
9376 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
9377 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
9378 |
|
---|
9379 | try
|
---|
9380 | {
|
---|
9381 | // Similar code appears in SessionMachine::onlineMergeMedium, so
|
---|
9382 | // if you make any changes below check whether they are applicable
|
---|
9383 | // in that context as well.
|
---|
9384 |
|
---|
9385 | unsigned uTargetIdx = VD_LAST_IMAGE;
|
---|
9386 | unsigned uSourceIdx = VD_LAST_IMAGE;
|
---|
9387 | /* Open all media in the chain. */
|
---|
9388 | MediumLockList::Base::iterator lockListBegin =
|
---|
9389 | task.mpMediumLockList->GetBegin();
|
---|
9390 | MediumLockList::Base::iterator lockListEnd =
|
---|
9391 | task.mpMediumLockList->GetEnd();
|
---|
9392 | unsigned i = 0;
|
---|
9393 | for (MediumLockList::Base::iterator it = lockListBegin;
|
---|
9394 | it != lockListEnd;
|
---|
9395 | ++it)
|
---|
9396 | {
|
---|
9397 | MediumLock &mediumLock = *it;
|
---|
9398 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
9399 |
|
---|
9400 | if (pMedium == this)
|
---|
9401 | uSourceIdx = i;
|
---|
9402 | else if (pMedium == pTarget)
|
---|
9403 | uTargetIdx = i;
|
---|
9404 |
|
---|
9405 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
9406 |
|
---|
9407 | /*
|
---|
9408 | * complex sanity (sane complexity)
|
---|
9409 | *
|
---|
9410 | * The current medium must be in the Deleting (medium is merged)
|
---|
9411 | * or LockedRead (parent medium) state if it is not the target.
|
---|
9412 | * If it is the target it must be in the LockedWrite state.
|
---|
9413 | */
|
---|
9414 | Assert( ( pMedium != pTarget
|
---|
9415 | && ( pMedium->m->state == MediumState_Deleting
|
---|
9416 | || pMedium->m->state == MediumState_LockedRead))
|
---|
9417 | || ( pMedium == pTarget
|
---|
9418 | && pMedium->m->state == MediumState_LockedWrite));
|
---|
9419 | /*
|
---|
9420 | * Medium must be the target, in the LockedRead state
|
---|
9421 | * or Deleting state where it is not allowed to be attached
|
---|
9422 | * to a virtual machine.
|
---|
9423 | */
|
---|
9424 | Assert( pMedium == pTarget
|
---|
9425 | || pMedium->m->state == MediumState_LockedRead
|
---|
9426 | || ( pMedium->m->backRefs.size() == 0
|
---|
9427 | && pMedium->m->state == MediumState_Deleting));
|
---|
9428 | /* The source medium must be in Deleting state. */
|
---|
9429 | Assert( pMedium != this
|
---|
9430 | || pMedium->m->state == MediumState_Deleting);
|
---|
9431 |
|
---|
9432 | unsigned uOpenFlags = VD_OPEN_FLAGS_NORMAL;
|
---|
9433 |
|
---|
9434 | if ( pMedium->m->state == MediumState_LockedRead
|
---|
9435 | || pMedium->m->state == MediumState_Deleting)
|
---|
9436 | uOpenFlags = VD_OPEN_FLAGS_READONLY;
|
---|
9437 | if (pMedium->m->type == MediumType_Shareable)
|
---|
9438 | uOpenFlags |= VD_OPEN_FLAGS_SHAREABLE;
|
---|
9439 |
|
---|
9440 | /* Open the medium */
|
---|
9441 | vrc = VDOpen(hdd,
|
---|
9442 | pMedium->m->strFormat.c_str(),
|
---|
9443 | pMedium->m->strLocationFull.c_str(),
|
---|
9444 | uOpenFlags | m->uOpenFlagsDef,
|
---|
9445 | pMedium->m->vdImageIfaces);
|
---|
9446 | if (RT_FAILURE(vrc))
|
---|
9447 | throw vrc;
|
---|
9448 |
|
---|
9449 | i++;
|
---|
9450 | }
|
---|
9451 |
|
---|
9452 | ComAssertThrow( uSourceIdx != VD_LAST_IMAGE
|
---|
9453 | && uTargetIdx != VD_LAST_IMAGE, E_FAIL);
|
---|
9454 |
|
---|
9455 | vrc = VDMerge(hdd, uSourceIdx, uTargetIdx,
|
---|
9456 | task.mVDOperationIfaces);
|
---|
9457 | if (RT_FAILURE(vrc))
|
---|
9458 | throw vrc;
|
---|
9459 |
|
---|
9460 | /* update parent UUIDs */
|
---|
9461 | if (!task.mfMergeForward)
|
---|
9462 | {
|
---|
9463 | /* we need to update UUIDs of all source's children
|
---|
9464 | * which cannot be part of the container at once so
|
---|
9465 | * add each one in there individually */
|
---|
9466 | if (task.mpChildrenToReparent)
|
---|
9467 | {
|
---|
9468 | MediumLockList::Base::iterator childrenBegin = task.mpChildrenToReparent->GetBegin();
|
---|
9469 | MediumLockList::Base::iterator childrenEnd = task.mpChildrenToReparent->GetEnd();
|
---|
9470 | for (MediumLockList::Base::iterator it = childrenBegin;
|
---|
9471 | it != childrenEnd;
|
---|
9472 | ++it)
|
---|
9473 | {
|
---|
9474 | Medium *pMedium = it->GetMedium();
|
---|
9475 | /* VD_OPEN_FLAGS_INFO since UUID is wrong yet */
|
---|
9476 | vrc = VDOpen(hdd,
|
---|
9477 | pMedium->m->strFormat.c_str(),
|
---|
9478 | pMedium->m->strLocationFull.c_str(),
|
---|
9479 | VD_OPEN_FLAGS_INFO | m->uOpenFlagsDef,
|
---|
9480 | pMedium->m->vdImageIfaces);
|
---|
9481 | if (RT_FAILURE(vrc))
|
---|
9482 | throw vrc;
|
---|
9483 |
|
---|
9484 | vrc = VDSetParentUuid(hdd, VD_LAST_IMAGE,
|
---|
9485 | pTarget->m->id.raw());
|
---|
9486 | if (RT_FAILURE(vrc))
|
---|
9487 | throw vrc;
|
---|
9488 |
|
---|
9489 | vrc = VDClose(hdd, false /* fDelete */);
|
---|
9490 | if (RT_FAILURE(vrc))
|
---|
9491 | throw vrc;
|
---|
9492 | }
|
---|
9493 | }
|
---|
9494 | }
|
---|
9495 | }
|
---|
9496 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
9497 | catch (int aVRC)
|
---|
9498 | {
|
---|
9499 | hrcTmp = setErrorBoth(VBOX_E_FILE_ERROR, aVRC,
|
---|
9500 | tr("Could not merge the medium '%s' to '%s'%s"),
|
---|
9501 | m->strLocationFull.c_str(),
|
---|
9502 | pTarget->m->strLocationFull.c_str(),
|
---|
9503 | i_vdError(aVRC).c_str());
|
---|
9504 | }
|
---|
9505 |
|
---|
9506 | VDDestroy(hdd);
|
---|
9507 | }
|
---|
9508 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
9509 |
|
---|
9510 | ErrorInfoKeeper eik;
|
---|
9511 | MultiResult mrc(hrcTmp);
|
---|
9512 | HRESULT hrc2;
|
---|
9513 |
|
---|
9514 | std::set<ComObjPtr<Medium> > pMediaForNotify;
|
---|
9515 | std::map<Guid, DeviceType_T> uIdsForNotify;
|
---|
9516 |
|
---|
9517 | if (SUCCEEDED(mrc))
|
---|
9518 | {
|
---|
9519 | /* all media but the target were successfully deleted by
|
---|
9520 | * VDMerge; reparent the last one and uninitialize deleted media. */
|
---|
9521 |
|
---|
9522 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
9523 |
|
---|
9524 | if (task.mfMergeForward)
|
---|
9525 | {
|
---|
9526 | /* first, unregister the target since it may become a base
|
---|
9527 | * medium which needs re-registration */
|
---|
9528 | hrc2 = m->pVirtualBox->i_unregisterMedium(pTarget);
|
---|
9529 | AssertComRC(hrc2);
|
---|
9530 |
|
---|
9531 | /* then, reparent it and disconnect the deleted branch at both ends
|
---|
9532 | * (chain->parent() is source's parent). Depth check above. */
|
---|
9533 | pTarget->i_deparent();
|
---|
9534 | pTarget->i_setParent(task.mParentForTarget);
|
---|
9535 | if (task.mParentForTarget)
|
---|
9536 | {
|
---|
9537 | i_deparent();
|
---|
9538 | if (task.NotifyAboutChanges())
|
---|
9539 | pMediaForNotify.insert(task.mParentForTarget);
|
---|
9540 | }
|
---|
9541 |
|
---|
9542 | /* then, register again */
|
---|
9543 | ComObjPtr<Medium> pMedium;
|
---|
9544 | hrc2 = m->pVirtualBox->i_registerMedium(pTarget, &pMedium, treeLock);
|
---|
9545 | AssertComRC(hrc2);
|
---|
9546 | }
|
---|
9547 | else
|
---|
9548 | {
|
---|
9549 | Assert(pTarget->i_getChildren().size() == 1);
|
---|
9550 | Medium *targetChild = pTarget->i_getChildren().front();
|
---|
9551 |
|
---|
9552 | /* disconnect the deleted branch at the elder end */
|
---|
9553 | targetChild->i_deparent();
|
---|
9554 |
|
---|
9555 | /* reparent source's children and disconnect the deleted
|
---|
9556 | * branch at the younger end */
|
---|
9557 | if (task.mpChildrenToReparent)
|
---|
9558 | {
|
---|
9559 | /* obey {parent,child} lock order */
|
---|
9560 | AutoWriteLock sourceLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
9561 |
|
---|
9562 | MediumLockList::Base::iterator childrenBegin = task.mpChildrenToReparent->GetBegin();
|
---|
9563 | MediumLockList::Base::iterator childrenEnd = task.mpChildrenToReparent->GetEnd();
|
---|
9564 | for (MediumLockList::Base::iterator it = childrenBegin;
|
---|
9565 | it != childrenEnd;
|
---|
9566 | ++it)
|
---|
9567 | {
|
---|
9568 | Medium *pMedium = it->GetMedium();
|
---|
9569 | AutoWriteLock childLock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
9570 |
|
---|
9571 | pMedium->i_deparent(); // removes pMedium from source
|
---|
9572 | // no depth check, reduces depth
|
---|
9573 | pMedium->i_setParent(pTarget);
|
---|
9574 |
|
---|
9575 | if (task.NotifyAboutChanges())
|
---|
9576 | pMediaForNotify.insert(pMedium);
|
---|
9577 | }
|
---|
9578 | }
|
---|
9579 | pMediaForNotify.insert(pTarget);
|
---|
9580 | }
|
---|
9581 |
|
---|
9582 | /* unregister and uninitialize all media removed by the merge */
|
---|
9583 | MediumLockList::Base::iterator lockListBegin =
|
---|
9584 | task.mpMediumLockList->GetBegin();
|
---|
9585 | MediumLockList::Base::iterator lockListEnd =
|
---|
9586 | task.mpMediumLockList->GetEnd();
|
---|
9587 | for (MediumLockList::Base::iterator it = lockListBegin;
|
---|
9588 | it != lockListEnd;
|
---|
9589 | )
|
---|
9590 | {
|
---|
9591 | MediumLock &mediumLock = *it;
|
---|
9592 | /* Create a real copy of the medium pointer, as the medium
|
---|
9593 | * lock deletion below would invalidate the referenced object. */
|
---|
9594 | const ComObjPtr<Medium> pMedium = mediumLock.GetMedium();
|
---|
9595 |
|
---|
9596 | /* The target and all media not merged (readonly) are skipped */
|
---|
9597 | if ( pMedium == pTarget
|
---|
9598 | || pMedium->m->state == MediumState_LockedRead)
|
---|
9599 | {
|
---|
9600 | ++it;
|
---|
9601 | continue;
|
---|
9602 | }
|
---|
9603 |
|
---|
9604 | uIdsForNotify[pMedium->i_getId()] = pMedium->i_getDeviceType();
|
---|
9605 | hrc2 = pMedium->m->pVirtualBox->i_unregisterMedium(pMedium);
|
---|
9606 | AssertComRC(hrc2);
|
---|
9607 |
|
---|
9608 | /* now, uninitialize the deleted medium (note that
|
---|
9609 | * due to the Deleting state, uninit() will not touch
|
---|
9610 | * the parent-child relationship so we need to
|
---|
9611 | * uninitialize each disk individually) */
|
---|
9612 |
|
---|
9613 | /* note that the operation initiator medium (which is
|
---|
9614 | * normally also the source medium) is a special case
|
---|
9615 | * -- there is one more caller added by Task to it which
|
---|
9616 | * we must release. Also, if we are in sync mode, the
|
---|
9617 | * caller may still hold an AutoCaller instance for it
|
---|
9618 | * and therefore we cannot uninit() it (it's therefore
|
---|
9619 | * the caller's responsibility) */
|
---|
9620 | if (pMedium == this)
|
---|
9621 | {
|
---|
9622 | Assert(i_getChildren().size() == 0);
|
---|
9623 | Assert(m->backRefs.size() == 0);
|
---|
9624 | task.mMediumCaller.release();
|
---|
9625 | }
|
---|
9626 |
|
---|
9627 | /* Delete the medium lock list entry, which also releases the
|
---|
9628 | * caller added by MergeChain before uninit() and updates the
|
---|
9629 | * iterator to point to the right place. */
|
---|
9630 | hrc2 = task.mpMediumLockList->RemoveByIterator(it);
|
---|
9631 | AssertComRC(hrc2);
|
---|
9632 |
|
---|
9633 | if (task.isAsync() || pMedium != this)
|
---|
9634 | {
|
---|
9635 | treeLock.release();
|
---|
9636 | pMedium->uninit();
|
---|
9637 | treeLock.acquire();
|
---|
9638 | }
|
---|
9639 | }
|
---|
9640 | }
|
---|
9641 |
|
---|
9642 | i_markRegistriesModified();
|
---|
9643 | if (task.isAsync())
|
---|
9644 | {
|
---|
9645 | // in asynchronous mode, save settings now
|
---|
9646 | eik.restore();
|
---|
9647 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
9648 | eik.fetch();
|
---|
9649 | }
|
---|
9650 |
|
---|
9651 | if (FAILED(mrc))
|
---|
9652 | {
|
---|
9653 | /* Here we come if either VDMerge() failed (in which case we
|
---|
9654 | * assume that it tried to do everything to make a further
|
---|
9655 | * retry possible -- e.g. not deleted intermediate media
|
---|
9656 | * and so on) or VirtualBox::saveRegistries() failed (where we
|
---|
9657 | * should have the original tree but with intermediate storage
|
---|
9658 | * units deleted by VDMerge()). We have to only restore states
|
---|
9659 | * (through the MergeChain dtor) unless we are run synchronously
|
---|
9660 | * in which case it's the responsibility of the caller as stated
|
---|
9661 | * in the mergeTo() docs. The latter also implies that we
|
---|
9662 | * don't own the merge chain, so release it in this case. */
|
---|
9663 | if (task.isAsync())
|
---|
9664 | i_cancelMergeTo(task.mpChildrenToReparent, task.mpMediumLockList);
|
---|
9665 | }
|
---|
9666 | else if (task.NotifyAboutChanges())
|
---|
9667 | {
|
---|
9668 | for (std::set<ComObjPtr<Medium> >::const_iterator it = pMediaForNotify.begin();
|
---|
9669 | it != pMediaForNotify.end();
|
---|
9670 | ++it)
|
---|
9671 | {
|
---|
9672 | if (it->isNotNull())
|
---|
9673 | m->pVirtualBox->i_onMediumConfigChanged(*it);
|
---|
9674 | }
|
---|
9675 | for (std::map<Guid, DeviceType_T>::const_iterator it = uIdsForNotify.begin();
|
---|
9676 | it != uIdsForNotify.end();
|
---|
9677 | ++it)
|
---|
9678 | {
|
---|
9679 | m->pVirtualBox->i_onMediumRegistered(it->first, it->second, FALSE);
|
---|
9680 | }
|
---|
9681 | }
|
---|
9682 |
|
---|
9683 | return mrc;
|
---|
9684 | }
|
---|
9685 |
|
---|
9686 | /**
|
---|
9687 | * Implementation code for the "clone" task.
|
---|
9688 | *
|
---|
9689 | * This only gets started from Medium::CloneTo() and always runs asynchronously.
|
---|
9690 | * As a result, we always save the VirtualBox.xml file when we're done here.
|
---|
9691 | *
|
---|
9692 | * @param task
|
---|
9693 | * @return
|
---|
9694 | */
|
---|
9695 | HRESULT Medium::i_taskCloneHandler(Medium::CloneTask &task)
|
---|
9696 | {
|
---|
9697 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
9698 | * to lock order violations, it probably causes lock order issues related
|
---|
9699 | * to the AutoCaller usage. */
|
---|
9700 | HRESULT hrcTmp = S_OK;
|
---|
9701 |
|
---|
9702 | const ComObjPtr<Medium> &pTarget = task.mTarget;
|
---|
9703 | const ComObjPtr<Medium> &pParent = task.mParent;
|
---|
9704 |
|
---|
9705 | bool fCreatingTarget = false;
|
---|
9706 |
|
---|
9707 | uint64_t size = 0, logicalSize = 0;
|
---|
9708 | MediumVariant_T variant = MediumVariant_Standard;
|
---|
9709 | bool fGenerateUuid = false;
|
---|
9710 |
|
---|
9711 | try
|
---|
9712 | {
|
---|
9713 | if (!pParent.isNull())
|
---|
9714 | {
|
---|
9715 |
|
---|
9716 | if (pParent->i_getDepth() >= SETTINGS_MEDIUM_DEPTH_MAX)
|
---|
9717 | {
|
---|
9718 | AutoReadLock plock(pParent COMMA_LOCKVAL_SRC_POS);
|
---|
9719 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
9720 | tr("Cannot clone image for medium '%s', because it exceeds the medium tree depth limit. Please merge some images which you no longer need"),
|
---|
9721 | pParent->m->strLocationFull.c_str());
|
---|
9722 | }
|
---|
9723 | }
|
---|
9724 |
|
---|
9725 | /* Lock all in {parent,child} order. The lock is also used as a
|
---|
9726 | * signal from the task initiator (which releases it only after
|
---|
9727 | * RTThreadCreate()) that we can start the job. */
|
---|
9728 | AutoMultiWriteLock3 thisLock(this, pTarget, pParent COMMA_LOCKVAL_SRC_POS);
|
---|
9729 |
|
---|
9730 | fCreatingTarget = pTarget->m->state == MediumState_Creating;
|
---|
9731 |
|
---|
9732 | /* The object may request a specific UUID (through a special form of
|
---|
9733 | * the moveTo() argument). Otherwise we have to generate it */
|
---|
9734 | Guid targetId = pTarget->m->id;
|
---|
9735 |
|
---|
9736 | fGenerateUuid = targetId.isZero();
|
---|
9737 | if (fGenerateUuid)
|
---|
9738 | {
|
---|
9739 | targetId.create();
|
---|
9740 | /* VirtualBox::registerMedium() will need UUID */
|
---|
9741 | unconst(pTarget->m->id) = targetId;
|
---|
9742 | }
|
---|
9743 |
|
---|
9744 | PVDISK hdd;
|
---|
9745 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
9746 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
9747 |
|
---|
9748 | try
|
---|
9749 | {
|
---|
9750 | /* Open all media in the source chain. */
|
---|
9751 | MediumLockList::Base::const_iterator sourceListBegin =
|
---|
9752 | task.mpSourceMediumLockList->GetBegin();
|
---|
9753 | MediumLockList::Base::const_iterator sourceListEnd =
|
---|
9754 | task.mpSourceMediumLockList->GetEnd();
|
---|
9755 | for (MediumLockList::Base::const_iterator it = sourceListBegin;
|
---|
9756 | it != sourceListEnd;
|
---|
9757 | ++it)
|
---|
9758 | {
|
---|
9759 | const MediumLock &mediumLock = *it;
|
---|
9760 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
9761 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
9762 |
|
---|
9763 | /* sanity check */
|
---|
9764 | Assert(pMedium->m->state == MediumState_LockedRead);
|
---|
9765 |
|
---|
9766 | /** Open all media in read-only mode. */
|
---|
9767 | vrc = VDOpen(hdd,
|
---|
9768 | pMedium->m->strFormat.c_str(),
|
---|
9769 | pMedium->m->strLocationFull.c_str(),
|
---|
9770 | VD_OPEN_FLAGS_READONLY | m->uOpenFlagsDef,
|
---|
9771 | pMedium->m->vdImageIfaces);
|
---|
9772 | if (RT_FAILURE(vrc))
|
---|
9773 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
9774 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
9775 | pMedium->m->strLocationFull.c_str(),
|
---|
9776 | i_vdError(vrc).c_str());
|
---|
9777 | }
|
---|
9778 |
|
---|
9779 | Utf8Str targetFormat(pTarget->m->strFormat);
|
---|
9780 | Utf8Str targetLocation(pTarget->m->strLocationFull);
|
---|
9781 | uint64_t capabilities = pTarget->m->formatObj->i_getCapabilities();
|
---|
9782 |
|
---|
9783 | Assert( pTarget->m->state == MediumState_Creating
|
---|
9784 | || pTarget->m->state == MediumState_LockedWrite);
|
---|
9785 | Assert(m->state == MediumState_LockedRead);
|
---|
9786 | Assert( pParent.isNull()
|
---|
9787 | || pParent->m->state == MediumState_LockedRead);
|
---|
9788 |
|
---|
9789 | /* unlock before the potentially lengthy operation */
|
---|
9790 | thisLock.release();
|
---|
9791 |
|
---|
9792 | /* ensure the target directory exists */
|
---|
9793 | if (capabilities & MediumFormatCapabilities_File)
|
---|
9794 | {
|
---|
9795 | HRESULT hrc = VirtualBox::i_ensureFilePathExists(targetLocation,
|
---|
9796 | !(task.mVariant & MediumVariant_NoCreateDir) /* fCreate */);
|
---|
9797 | if (FAILED(hrc))
|
---|
9798 | throw hrc;
|
---|
9799 | }
|
---|
9800 |
|
---|
9801 | PVDISK targetHdd;
|
---|
9802 | vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &targetHdd);
|
---|
9803 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
9804 |
|
---|
9805 | try
|
---|
9806 | {
|
---|
9807 | /* Open all media in the target chain. */
|
---|
9808 | MediumLockList::Base::const_iterator targetListBegin =
|
---|
9809 | task.mpTargetMediumLockList->GetBegin();
|
---|
9810 | MediumLockList::Base::const_iterator targetListEnd =
|
---|
9811 | task.mpTargetMediumLockList->GetEnd();
|
---|
9812 | for (MediumLockList::Base::const_iterator it = targetListBegin;
|
---|
9813 | it != targetListEnd;
|
---|
9814 | ++it)
|
---|
9815 | {
|
---|
9816 | const MediumLock &mediumLock = *it;
|
---|
9817 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
9818 |
|
---|
9819 | /* If the target medium is not created yet there's no
|
---|
9820 | * reason to open it. */
|
---|
9821 | if (pMedium == pTarget && fCreatingTarget)
|
---|
9822 | continue;
|
---|
9823 |
|
---|
9824 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
9825 |
|
---|
9826 | /* sanity check */
|
---|
9827 | Assert( pMedium->m->state == MediumState_LockedRead
|
---|
9828 | || pMedium->m->state == MediumState_LockedWrite);
|
---|
9829 |
|
---|
9830 | unsigned uOpenFlags = VD_OPEN_FLAGS_NORMAL;
|
---|
9831 | if (pMedium->m->state != MediumState_LockedWrite)
|
---|
9832 | uOpenFlags = VD_OPEN_FLAGS_READONLY;
|
---|
9833 | if (pMedium->m->type == MediumType_Shareable)
|
---|
9834 | uOpenFlags |= VD_OPEN_FLAGS_SHAREABLE;
|
---|
9835 |
|
---|
9836 | /* Open all media in appropriate mode. */
|
---|
9837 | vrc = VDOpen(targetHdd,
|
---|
9838 | pMedium->m->strFormat.c_str(),
|
---|
9839 | pMedium->m->strLocationFull.c_str(),
|
---|
9840 | uOpenFlags | m->uOpenFlagsDef,
|
---|
9841 | pMedium->m->vdImageIfaces);
|
---|
9842 | if (RT_FAILURE(vrc))
|
---|
9843 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
9844 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
9845 | pMedium->m->strLocationFull.c_str(),
|
---|
9846 | i_vdError(vrc).c_str());
|
---|
9847 | }
|
---|
9848 |
|
---|
9849 | /* target isn't locked, but no changing data is accessed */
|
---|
9850 | if (task.midxSrcImageSame == UINT32_MAX)
|
---|
9851 | {
|
---|
9852 | vrc = VDCopy(hdd,
|
---|
9853 | VD_LAST_IMAGE,
|
---|
9854 | targetHdd,
|
---|
9855 | targetFormat.c_str(),
|
---|
9856 | (fCreatingTarget) ? targetLocation.c_str() : (char *)NULL,
|
---|
9857 | false /* fMoveByRename */,
|
---|
9858 | task.mTargetLogicalSize /* cbSize */,
|
---|
9859 | task.mVariant & ~(MediumVariant_NoCreateDir | MediumVariant_Formatted | MediumVariant_VmdkESX | MediumVariant_VmdkRawDisk),
|
---|
9860 | targetId.raw(),
|
---|
9861 | VD_OPEN_FLAGS_NORMAL | m->uOpenFlagsDef,
|
---|
9862 | NULL /* pVDIfsOperation */,
|
---|
9863 | pTarget->m->vdImageIfaces,
|
---|
9864 | task.mVDOperationIfaces);
|
---|
9865 | }
|
---|
9866 | else
|
---|
9867 | {
|
---|
9868 | vrc = VDCopyEx(hdd,
|
---|
9869 | VD_LAST_IMAGE,
|
---|
9870 | targetHdd,
|
---|
9871 | targetFormat.c_str(),
|
---|
9872 | (fCreatingTarget) ? targetLocation.c_str() : (char *)NULL,
|
---|
9873 | false /* fMoveByRename */,
|
---|
9874 | task.mTargetLogicalSize /* cbSize */,
|
---|
9875 | task.midxSrcImageSame,
|
---|
9876 | task.midxDstImageSame,
|
---|
9877 | task.mVariant & ~(MediumVariant_NoCreateDir | MediumVariant_Formatted | MediumVariant_VmdkESX | MediumVariant_VmdkRawDisk),
|
---|
9878 | targetId.raw(),
|
---|
9879 | VD_OPEN_FLAGS_NORMAL | m->uOpenFlagsDef,
|
---|
9880 | NULL /* pVDIfsOperation */,
|
---|
9881 | pTarget->m->vdImageIfaces,
|
---|
9882 | task.mVDOperationIfaces);
|
---|
9883 | }
|
---|
9884 | if (RT_FAILURE(vrc))
|
---|
9885 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
9886 | tr("Could not create the clone medium '%s'%s"),
|
---|
9887 | targetLocation.c_str(), i_vdError(vrc).c_str());
|
---|
9888 |
|
---|
9889 | size = VDGetFileSize(targetHdd, VD_LAST_IMAGE);
|
---|
9890 | logicalSize = VDGetSize(targetHdd, VD_LAST_IMAGE);
|
---|
9891 | unsigned uImageFlags;
|
---|
9892 | vrc = VDGetImageFlags(targetHdd, 0, &uImageFlags);
|
---|
9893 | if (RT_SUCCESS(vrc))
|
---|
9894 | variant = (MediumVariant_T)uImageFlags;
|
---|
9895 | }
|
---|
9896 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
9897 |
|
---|
9898 | VDDestroy(targetHdd);
|
---|
9899 | }
|
---|
9900 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
9901 |
|
---|
9902 | VDDestroy(hdd);
|
---|
9903 | }
|
---|
9904 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
9905 |
|
---|
9906 | ErrorInfoKeeper eik;
|
---|
9907 | MultiResult mrc(hrcTmp);
|
---|
9908 |
|
---|
9909 | /* Only do the parent changes for newly created media. */
|
---|
9910 | if (SUCCEEDED(mrc) && fCreatingTarget)
|
---|
9911 | {
|
---|
9912 | /* we set m->pParent & children() */
|
---|
9913 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
9914 |
|
---|
9915 | Assert(pTarget->m->pParent.isNull());
|
---|
9916 |
|
---|
9917 | if (pParent)
|
---|
9918 | {
|
---|
9919 | /* Associate the clone with the parent and deassociate
|
---|
9920 | * from VirtualBox. Depth check above. */
|
---|
9921 | pTarget->i_setParent(pParent);
|
---|
9922 |
|
---|
9923 | /* register with mVirtualBox as the last step and move to
|
---|
9924 | * Created state only on success (leaving an orphan file is
|
---|
9925 | * better than breaking media registry consistency) */
|
---|
9926 | eik.restore();
|
---|
9927 | ComObjPtr<Medium> pMedium;
|
---|
9928 | mrc = pParent->m->pVirtualBox->i_registerMedium(pTarget, &pMedium,
|
---|
9929 | treeLock);
|
---|
9930 | Assert( FAILED(mrc)
|
---|
9931 | || pTarget == pMedium);
|
---|
9932 | eik.fetch();
|
---|
9933 |
|
---|
9934 | if (FAILED(mrc))
|
---|
9935 | /* break parent association on failure to register */
|
---|
9936 | pTarget->i_deparent(); // removes target from parent
|
---|
9937 | }
|
---|
9938 | else
|
---|
9939 | {
|
---|
9940 | /* just register */
|
---|
9941 | eik.restore();
|
---|
9942 | ComObjPtr<Medium> pMedium;
|
---|
9943 | mrc = m->pVirtualBox->i_registerMedium(pTarget, &pMedium,
|
---|
9944 | treeLock);
|
---|
9945 | Assert( FAILED(mrc)
|
---|
9946 | || pTarget == pMedium);
|
---|
9947 | eik.fetch();
|
---|
9948 | }
|
---|
9949 | }
|
---|
9950 |
|
---|
9951 | if (fCreatingTarget)
|
---|
9952 | {
|
---|
9953 | AutoWriteLock mLock(pTarget COMMA_LOCKVAL_SRC_POS);
|
---|
9954 |
|
---|
9955 | if (SUCCEEDED(mrc))
|
---|
9956 | {
|
---|
9957 | pTarget->m->state = MediumState_Created;
|
---|
9958 |
|
---|
9959 | pTarget->m->size = size;
|
---|
9960 | pTarget->m->logicalSize = logicalSize;
|
---|
9961 | pTarget->m->variant = variant;
|
---|
9962 | }
|
---|
9963 | else
|
---|
9964 | {
|
---|
9965 | /* back to NotCreated on failure */
|
---|
9966 | pTarget->m->state = MediumState_NotCreated;
|
---|
9967 |
|
---|
9968 | /* reset UUID to prevent it from being reused next time */
|
---|
9969 | if (fGenerateUuid)
|
---|
9970 | unconst(pTarget->m->id).clear();
|
---|
9971 | }
|
---|
9972 | }
|
---|
9973 |
|
---|
9974 | /* Copy any filter related settings over to the target. */
|
---|
9975 | if (SUCCEEDED(mrc))
|
---|
9976 | {
|
---|
9977 | /* Copy any filter related settings over. */
|
---|
9978 | ComObjPtr<Medium> pBase = i_getBase();
|
---|
9979 | ComObjPtr<Medium> pTargetBase = pTarget->i_getBase();
|
---|
9980 | std::vector<com::Utf8Str> aFilterPropNames;
|
---|
9981 | std::vector<com::Utf8Str> aFilterPropValues;
|
---|
9982 | mrc = pBase->i_getFilterProperties(aFilterPropNames, aFilterPropValues);
|
---|
9983 | if (SUCCEEDED(mrc))
|
---|
9984 | {
|
---|
9985 | /* Go through the properties and add them to the target medium. */
|
---|
9986 | for (unsigned idx = 0; idx < aFilterPropNames.size(); idx++)
|
---|
9987 | {
|
---|
9988 | mrc = pTargetBase->i_setPropertyDirect(aFilterPropNames[idx], aFilterPropValues[idx]);
|
---|
9989 | if (FAILED(mrc)) break;
|
---|
9990 | }
|
---|
9991 |
|
---|
9992 | // now, at the end of this task (always asynchronous), save the settings
|
---|
9993 | if (SUCCEEDED(mrc))
|
---|
9994 | {
|
---|
9995 | // save the settings
|
---|
9996 | i_markRegistriesModified();
|
---|
9997 | /* collect multiple errors */
|
---|
9998 | eik.restore();
|
---|
9999 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
10000 | eik.fetch();
|
---|
10001 |
|
---|
10002 | if (task.NotifyAboutChanges())
|
---|
10003 | {
|
---|
10004 | if (!fCreatingTarget)
|
---|
10005 | {
|
---|
10006 | if (!aFilterPropNames.empty())
|
---|
10007 | m->pVirtualBox->i_onMediumConfigChanged(pTargetBase);
|
---|
10008 | if (pParent)
|
---|
10009 | m->pVirtualBox->i_onMediumConfigChanged(pParent);
|
---|
10010 | }
|
---|
10011 | else
|
---|
10012 | {
|
---|
10013 | m->pVirtualBox->i_onMediumRegistered(pTarget->i_getId(), pTarget->i_getDeviceType(), TRUE);
|
---|
10014 | }
|
---|
10015 | }
|
---|
10016 | }
|
---|
10017 | }
|
---|
10018 | }
|
---|
10019 |
|
---|
10020 | /* Everything is explicitly unlocked when the task exits,
|
---|
10021 | * as the task destruction also destroys the source chain. */
|
---|
10022 |
|
---|
10023 | /* Make sure the source chain is released early. It could happen
|
---|
10024 | * that we get a deadlock in Appliance::Import when Medium::Close
|
---|
10025 | * is called & the source chain is released at the same time. */
|
---|
10026 | task.mpSourceMediumLockList->Clear();
|
---|
10027 |
|
---|
10028 | return mrc;
|
---|
10029 | }
|
---|
10030 |
|
---|
10031 | /**
|
---|
10032 | * Implementation code for the "move" task.
|
---|
10033 | *
|
---|
10034 | * This only gets started from Medium::MoveTo() and always
|
---|
10035 | * runs asynchronously.
|
---|
10036 | *
|
---|
10037 | * @param task
|
---|
10038 | * @return
|
---|
10039 | */
|
---|
10040 | HRESULT Medium::i_taskMoveHandler(Medium::MoveTask &task)
|
---|
10041 | {
|
---|
10042 | LogFlowFuncEnter();
|
---|
10043 | HRESULT hrcOut = S_OK;
|
---|
10044 |
|
---|
10045 | /* pTarget is equal "this" in our case */
|
---|
10046 | const ComObjPtr<Medium> &pTarget = task.mMedium;
|
---|
10047 |
|
---|
10048 | uint64_t size = 0; NOREF(size);
|
---|
10049 | uint64_t logicalSize = 0; NOREF(logicalSize);
|
---|
10050 | MediumVariant_T variant = MediumVariant_Standard; NOREF(variant);
|
---|
10051 |
|
---|
10052 | /*
|
---|
10053 | * it's exactly moving, not cloning
|
---|
10054 | */
|
---|
10055 | if (!i_isMoveOperation(pTarget))
|
---|
10056 | {
|
---|
10057 | LogFlowFunc(("LEAVE: hrc=VBOX_E_FILE_ERROR (early)\n"));
|
---|
10058 | return setError(VBOX_E_FILE_ERROR,
|
---|
10059 | tr("Wrong preconditions for moving the medium %s"),
|
---|
10060 | pTarget->m->strLocationFull.c_str());
|
---|
10061 | }
|
---|
10062 |
|
---|
10063 | try
|
---|
10064 | {
|
---|
10065 | /* Lock all in {parent,child} order. The lock is also used as a
|
---|
10066 | * signal from the task initiator (which releases it only after
|
---|
10067 | * RTThreadCreate()) that we can start the job. */
|
---|
10068 |
|
---|
10069 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10070 |
|
---|
10071 | PVDISK hdd;
|
---|
10072 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
10073 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
10074 |
|
---|
10075 | try
|
---|
10076 | {
|
---|
10077 | /* Open all media in the source chain. */
|
---|
10078 | MediumLockList::Base::const_iterator sourceListBegin =
|
---|
10079 | task.mpMediumLockList->GetBegin();
|
---|
10080 | MediumLockList::Base::const_iterator sourceListEnd =
|
---|
10081 | task.mpMediumLockList->GetEnd();
|
---|
10082 | for (MediumLockList::Base::const_iterator it = sourceListBegin;
|
---|
10083 | it != sourceListEnd;
|
---|
10084 | ++it)
|
---|
10085 | {
|
---|
10086 | const MediumLock &mediumLock = *it;
|
---|
10087 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
10088 | AutoWriteLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
10089 |
|
---|
10090 | /* sanity check */
|
---|
10091 | Assert(pMedium->m->state == MediumState_LockedWrite);
|
---|
10092 |
|
---|
10093 | vrc = VDOpen(hdd,
|
---|
10094 | pMedium->m->strFormat.c_str(),
|
---|
10095 | pMedium->m->strLocationFull.c_str(),
|
---|
10096 | VD_OPEN_FLAGS_NORMAL,
|
---|
10097 | pMedium->m->vdImageIfaces);
|
---|
10098 | if (RT_FAILURE(vrc))
|
---|
10099 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10100 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
10101 | pMedium->m->strLocationFull.c_str(),
|
---|
10102 | i_vdError(vrc).c_str());
|
---|
10103 | }
|
---|
10104 |
|
---|
10105 | /* we can directly use pTarget->m->"variables" but for better reading we use local copies */
|
---|
10106 | Guid targetId = pTarget->m->id;
|
---|
10107 | Utf8Str targetFormat(pTarget->m->strFormat);
|
---|
10108 | uint64_t targetCapabilities = pTarget->m->formatObj->i_getCapabilities();
|
---|
10109 |
|
---|
10110 | /*
|
---|
10111 | * change target location
|
---|
10112 | * m->strNewLocationFull has been set already together with m->fMoveThisMedium in
|
---|
10113 | * i_preparationForMoving()
|
---|
10114 | */
|
---|
10115 | Utf8Str targetLocation = i_getNewLocationForMoving();
|
---|
10116 |
|
---|
10117 | /* unlock before the potentially lengthy operation */
|
---|
10118 | thisLock.release();
|
---|
10119 |
|
---|
10120 | /* ensure the target directory exists */
|
---|
10121 | if (targetCapabilities & MediumFormatCapabilities_File)
|
---|
10122 | {
|
---|
10123 | HRESULT hrc = VirtualBox::i_ensureFilePathExists(targetLocation,
|
---|
10124 | !(task.mVariant & MediumVariant_NoCreateDir) /* fCreate */);
|
---|
10125 | if (FAILED(hrc))
|
---|
10126 | throw hrc;
|
---|
10127 | }
|
---|
10128 |
|
---|
10129 | try
|
---|
10130 | {
|
---|
10131 | vrc = VDCopy(hdd,
|
---|
10132 | VD_LAST_IMAGE,
|
---|
10133 | hdd,
|
---|
10134 | targetFormat.c_str(),
|
---|
10135 | targetLocation.c_str(),
|
---|
10136 | true /* fMoveByRename */,
|
---|
10137 | 0 /* cbSize */,
|
---|
10138 | VD_IMAGE_FLAGS_NONE,
|
---|
10139 | targetId.raw(),
|
---|
10140 | VD_OPEN_FLAGS_NORMAL,
|
---|
10141 | NULL /* pVDIfsOperation */,
|
---|
10142 | pTarget->m->vdImageIfaces,
|
---|
10143 | task.mVDOperationIfaces);
|
---|
10144 | if (RT_FAILURE(vrc))
|
---|
10145 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10146 | tr("Could not move medium '%s'%s"),
|
---|
10147 | targetLocation.c_str(), i_vdError(vrc).c_str());
|
---|
10148 | size = VDGetFileSize(hdd, VD_LAST_IMAGE);
|
---|
10149 | logicalSize = VDGetSize(hdd, VD_LAST_IMAGE);
|
---|
10150 | unsigned uImageFlags;
|
---|
10151 | vrc = VDGetImageFlags(hdd, 0, &uImageFlags);
|
---|
10152 | if (RT_SUCCESS(vrc))
|
---|
10153 | variant = (MediumVariant_T)uImageFlags;
|
---|
10154 |
|
---|
10155 | /*
|
---|
10156 | * set current location, because VDCopy\VDCopyEx doesn't do it.
|
---|
10157 | * also reset moving flag
|
---|
10158 | */
|
---|
10159 | i_resetMoveOperationData();
|
---|
10160 | m->strLocationFull = targetLocation;
|
---|
10161 |
|
---|
10162 | }
|
---|
10163 | catch (HRESULT hrcXcpt) { hrcOut = hrcXcpt; }
|
---|
10164 |
|
---|
10165 | }
|
---|
10166 | catch (HRESULT hrcXcpt) { hrcOut = hrcXcpt; }
|
---|
10167 |
|
---|
10168 | VDDestroy(hdd);
|
---|
10169 | }
|
---|
10170 | catch (HRESULT hrcXcpt) { hrcOut = hrcXcpt; }
|
---|
10171 |
|
---|
10172 | ErrorInfoKeeper eik;
|
---|
10173 | MultiResult mrc(hrcOut);
|
---|
10174 |
|
---|
10175 | // now, at the end of this task (always asynchronous), save the settings
|
---|
10176 | if (SUCCEEDED(mrc))
|
---|
10177 | {
|
---|
10178 | // save the settings
|
---|
10179 | i_markRegistriesModified();
|
---|
10180 | /* collect multiple errors */
|
---|
10181 | eik.restore();
|
---|
10182 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
10183 | eik.fetch();
|
---|
10184 | }
|
---|
10185 |
|
---|
10186 | /* Everything is explicitly unlocked when the task exits,
|
---|
10187 | * as the task destruction also destroys the source chain. */
|
---|
10188 |
|
---|
10189 | task.mpMediumLockList->Clear();
|
---|
10190 |
|
---|
10191 | if (task.NotifyAboutChanges() && SUCCEEDED(mrc))
|
---|
10192 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
10193 |
|
---|
10194 | LogFlowFunc(("LEAVE: mrc=%Rhrc\n", (HRESULT)mrc));
|
---|
10195 | return mrc;
|
---|
10196 | }
|
---|
10197 |
|
---|
10198 | /**
|
---|
10199 | * Implementation code for the "delete" task.
|
---|
10200 | *
|
---|
10201 | * This task always gets started from Medium::deleteStorage() and can run
|
---|
10202 | * synchronously or asynchronously depending on the "wait" parameter passed to
|
---|
10203 | * that function.
|
---|
10204 | *
|
---|
10205 | * @param task
|
---|
10206 | * @return
|
---|
10207 | */
|
---|
10208 | HRESULT Medium::i_taskDeleteHandler(Medium::DeleteTask &task)
|
---|
10209 | {
|
---|
10210 | NOREF(task);
|
---|
10211 | HRESULT hrc = S_OK;
|
---|
10212 |
|
---|
10213 | try
|
---|
10214 | {
|
---|
10215 | /* The lock is also used as a signal from the task initiator (which
|
---|
10216 | * releases it only after RTThreadCreate()) that we can start the job */
|
---|
10217 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10218 |
|
---|
10219 | PVDISK hdd;
|
---|
10220 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
10221 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
10222 |
|
---|
10223 | Utf8Str format(m->strFormat);
|
---|
10224 | Utf8Str location(m->strLocationFull);
|
---|
10225 |
|
---|
10226 | /* unlock before the potentially lengthy operation */
|
---|
10227 | Assert(m->state == MediumState_Deleting);
|
---|
10228 | thisLock.release();
|
---|
10229 |
|
---|
10230 | try
|
---|
10231 | {
|
---|
10232 | vrc = VDOpen(hdd,
|
---|
10233 | format.c_str(),
|
---|
10234 | location.c_str(),
|
---|
10235 | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO | m->uOpenFlagsDef,
|
---|
10236 | m->vdImageIfaces);
|
---|
10237 | if (RT_SUCCESS(vrc))
|
---|
10238 | vrc = VDClose(hdd, true /* fDelete */);
|
---|
10239 |
|
---|
10240 | if (RT_FAILURE(vrc) && vrc != VERR_FILE_NOT_FOUND)
|
---|
10241 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10242 | tr("Could not delete the medium storage unit '%s'%s"),
|
---|
10243 | location.c_str(), i_vdError(vrc).c_str());
|
---|
10244 |
|
---|
10245 | }
|
---|
10246 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10247 |
|
---|
10248 | VDDestroy(hdd);
|
---|
10249 | }
|
---|
10250 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10251 |
|
---|
10252 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10253 |
|
---|
10254 | /* go to the NotCreated state even on failure since the storage
|
---|
10255 | * may have been already partially deleted and cannot be used any
|
---|
10256 | * more. One will be able to manually re-open the storage if really
|
---|
10257 | * needed to re-register it. */
|
---|
10258 | m->state = MediumState_NotCreated;
|
---|
10259 |
|
---|
10260 | /* Reset UUID to prevent Create* from reusing it again */
|
---|
10261 | com::Guid uOldId = m->id;
|
---|
10262 | unconst(m->id).clear();
|
---|
10263 |
|
---|
10264 | if (task.NotifyAboutChanges() && SUCCEEDED(hrc))
|
---|
10265 | {
|
---|
10266 | if (m->pParent.isNotNull())
|
---|
10267 | m->pVirtualBox->i_onMediumConfigChanged(m->pParent);
|
---|
10268 | m->pVirtualBox->i_onMediumRegistered(uOldId, m->devType, FALSE);
|
---|
10269 | }
|
---|
10270 |
|
---|
10271 | return hrc;
|
---|
10272 | }
|
---|
10273 |
|
---|
10274 | /**
|
---|
10275 | * Implementation code for the "reset" task.
|
---|
10276 | *
|
---|
10277 | * This always gets started asynchronously from Medium::Reset().
|
---|
10278 | *
|
---|
10279 | * @param task
|
---|
10280 | * @return
|
---|
10281 | */
|
---|
10282 | HRESULT Medium::i_taskResetHandler(Medium::ResetTask &task)
|
---|
10283 | {
|
---|
10284 | HRESULT hrc = S_OK;
|
---|
10285 |
|
---|
10286 | uint64_t size = 0, logicalSize = 0;
|
---|
10287 | MediumVariant_T variant = MediumVariant_Standard;
|
---|
10288 |
|
---|
10289 | try
|
---|
10290 | {
|
---|
10291 | /* The lock is also used as a signal from the task initiator (which
|
---|
10292 | * releases it only after RTThreadCreate()) that we can start the job */
|
---|
10293 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10294 |
|
---|
10295 | /// @todo Below we use a pair of delete/create operations to reset
|
---|
10296 | /// the diff contents but the most efficient way will of course be
|
---|
10297 | /// to add a VDResetDiff() API call
|
---|
10298 |
|
---|
10299 | PVDISK hdd;
|
---|
10300 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
10301 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
10302 |
|
---|
10303 | Guid id = m->id;
|
---|
10304 | Utf8Str format(m->strFormat);
|
---|
10305 | Utf8Str location(m->strLocationFull);
|
---|
10306 |
|
---|
10307 | Medium *pParent = m->pParent;
|
---|
10308 | Guid parentId = pParent->m->id;
|
---|
10309 | Utf8Str parentFormat(pParent->m->strFormat);
|
---|
10310 | Utf8Str parentLocation(pParent->m->strLocationFull);
|
---|
10311 |
|
---|
10312 | Assert(m->state == MediumState_LockedWrite);
|
---|
10313 |
|
---|
10314 | /* unlock before the potentially lengthy operation */
|
---|
10315 | thisLock.release();
|
---|
10316 |
|
---|
10317 | try
|
---|
10318 | {
|
---|
10319 | /* Open all media in the target chain but the last. */
|
---|
10320 | MediumLockList::Base::const_iterator targetListBegin =
|
---|
10321 | task.mpMediumLockList->GetBegin();
|
---|
10322 | MediumLockList::Base::const_iterator targetListEnd =
|
---|
10323 | task.mpMediumLockList->GetEnd();
|
---|
10324 | for (MediumLockList::Base::const_iterator it = targetListBegin;
|
---|
10325 | it != targetListEnd;
|
---|
10326 | ++it)
|
---|
10327 | {
|
---|
10328 | const MediumLock &mediumLock = *it;
|
---|
10329 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
10330 |
|
---|
10331 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
10332 |
|
---|
10333 | /* sanity check, "this" is checked above */
|
---|
10334 | Assert( pMedium == this
|
---|
10335 | || pMedium->m->state == MediumState_LockedRead);
|
---|
10336 |
|
---|
10337 | /* Open all media in appropriate mode. */
|
---|
10338 | vrc = VDOpen(hdd,
|
---|
10339 | pMedium->m->strFormat.c_str(),
|
---|
10340 | pMedium->m->strLocationFull.c_str(),
|
---|
10341 | VD_OPEN_FLAGS_READONLY | m->uOpenFlagsDef,
|
---|
10342 | pMedium->m->vdImageIfaces);
|
---|
10343 | if (RT_FAILURE(vrc))
|
---|
10344 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10345 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
10346 | pMedium->m->strLocationFull.c_str(),
|
---|
10347 | i_vdError(vrc).c_str());
|
---|
10348 |
|
---|
10349 | /* Done when we hit the media which should be reset */
|
---|
10350 | if (pMedium == this)
|
---|
10351 | break;
|
---|
10352 | }
|
---|
10353 |
|
---|
10354 | /* first, delete the storage unit */
|
---|
10355 | vrc = VDClose(hdd, true /* fDelete */);
|
---|
10356 | if (RT_FAILURE(vrc))
|
---|
10357 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10358 | tr("Could not delete the medium storage unit '%s'%s"),
|
---|
10359 | location.c_str(), i_vdError(vrc).c_str());
|
---|
10360 |
|
---|
10361 | /* next, create it again */
|
---|
10362 | vrc = VDOpen(hdd,
|
---|
10363 | parentFormat.c_str(),
|
---|
10364 | parentLocation.c_str(),
|
---|
10365 | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_INFO | m->uOpenFlagsDef,
|
---|
10366 | m->vdImageIfaces);
|
---|
10367 | if (RT_FAILURE(vrc))
|
---|
10368 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10369 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
10370 | parentLocation.c_str(), i_vdError(vrc).c_str());
|
---|
10371 |
|
---|
10372 | vrc = VDCreateDiff(hdd,
|
---|
10373 | format.c_str(),
|
---|
10374 | location.c_str(),
|
---|
10375 | /// @todo use the same medium variant as before
|
---|
10376 | VD_IMAGE_FLAGS_NONE,
|
---|
10377 | NULL,
|
---|
10378 | id.raw(),
|
---|
10379 | parentId.raw(),
|
---|
10380 | VD_OPEN_FLAGS_NORMAL,
|
---|
10381 | m->vdImageIfaces,
|
---|
10382 | task.mVDOperationIfaces);
|
---|
10383 | if (RT_FAILURE(vrc))
|
---|
10384 | {
|
---|
10385 | if (vrc == VERR_VD_INVALID_TYPE)
|
---|
10386 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10387 | tr("Parameters for creating the differencing medium storage unit '%s' are invalid%s"),
|
---|
10388 | location.c_str(), i_vdError(vrc).c_str());
|
---|
10389 | else
|
---|
10390 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10391 | tr("Could not create the differencing medium storage unit '%s'%s"),
|
---|
10392 | location.c_str(), i_vdError(vrc).c_str());
|
---|
10393 | }
|
---|
10394 |
|
---|
10395 | size = VDGetFileSize(hdd, VD_LAST_IMAGE);
|
---|
10396 | logicalSize = VDGetSize(hdd, VD_LAST_IMAGE);
|
---|
10397 | unsigned uImageFlags;
|
---|
10398 | vrc = VDGetImageFlags(hdd, 0, &uImageFlags);
|
---|
10399 | if (RT_SUCCESS(vrc))
|
---|
10400 | variant = (MediumVariant_T)uImageFlags;
|
---|
10401 | }
|
---|
10402 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10403 |
|
---|
10404 | VDDestroy(hdd);
|
---|
10405 | }
|
---|
10406 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10407 |
|
---|
10408 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10409 |
|
---|
10410 | m->size = size;
|
---|
10411 | m->logicalSize = logicalSize;
|
---|
10412 | m->variant = variant;
|
---|
10413 |
|
---|
10414 | if (task.NotifyAboutChanges() && SUCCEEDED(hrc))
|
---|
10415 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
10416 |
|
---|
10417 | /* Everything is explicitly unlocked when the task exits,
|
---|
10418 | * as the task destruction also destroys the media chain. */
|
---|
10419 |
|
---|
10420 | return hrc;
|
---|
10421 | }
|
---|
10422 |
|
---|
10423 | /**
|
---|
10424 | * Implementation code for the "compact" task.
|
---|
10425 | *
|
---|
10426 | * @param task
|
---|
10427 | * @return
|
---|
10428 | */
|
---|
10429 | HRESULT Medium::i_taskCompactHandler(Medium::CompactTask &task)
|
---|
10430 | {
|
---|
10431 | HRESULT hrc = S_OK;
|
---|
10432 |
|
---|
10433 | /* Lock all in {parent,child} order. The lock is also used as a
|
---|
10434 | * signal from the task initiator (which releases it only after
|
---|
10435 | * RTThreadCreate()) that we can start the job. */
|
---|
10436 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10437 |
|
---|
10438 | try
|
---|
10439 | {
|
---|
10440 | PVDISK hdd;
|
---|
10441 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
10442 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
10443 |
|
---|
10444 | try
|
---|
10445 | {
|
---|
10446 | /* Open all media in the chain. */
|
---|
10447 | MediumLockList::Base::const_iterator mediumListBegin =
|
---|
10448 | task.mpMediumLockList->GetBegin();
|
---|
10449 | MediumLockList::Base::const_iterator mediumListEnd =
|
---|
10450 | task.mpMediumLockList->GetEnd();
|
---|
10451 | MediumLockList::Base::const_iterator mediumListLast =
|
---|
10452 | mediumListEnd;
|
---|
10453 | --mediumListLast;
|
---|
10454 | for (MediumLockList::Base::const_iterator it = mediumListBegin;
|
---|
10455 | it != mediumListEnd;
|
---|
10456 | ++it)
|
---|
10457 | {
|
---|
10458 | const MediumLock &mediumLock = *it;
|
---|
10459 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
10460 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
10461 |
|
---|
10462 | /* sanity check */
|
---|
10463 | if (it == mediumListLast)
|
---|
10464 | Assert(pMedium->m->state == MediumState_LockedWrite);
|
---|
10465 | else
|
---|
10466 | Assert(pMedium->m->state == MediumState_LockedRead);
|
---|
10467 |
|
---|
10468 | /* Open all media but last in read-only mode. Do not handle
|
---|
10469 | * shareable media, as compaction and sharing are mutually
|
---|
10470 | * exclusive. */
|
---|
10471 | vrc = VDOpen(hdd,
|
---|
10472 | pMedium->m->strFormat.c_str(),
|
---|
10473 | pMedium->m->strLocationFull.c_str(),
|
---|
10474 | m->uOpenFlagsDef | (it == mediumListLast ? VD_OPEN_FLAGS_NORMAL : VD_OPEN_FLAGS_READONLY),
|
---|
10475 | pMedium->m->vdImageIfaces);
|
---|
10476 | if (RT_FAILURE(vrc))
|
---|
10477 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10478 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
10479 | pMedium->m->strLocationFull.c_str(),
|
---|
10480 | i_vdError(vrc).c_str());
|
---|
10481 | }
|
---|
10482 |
|
---|
10483 | Assert(m->state == MediumState_LockedWrite);
|
---|
10484 |
|
---|
10485 | Utf8Str location(m->strLocationFull);
|
---|
10486 |
|
---|
10487 | /* unlock before the potentially lengthy operation */
|
---|
10488 | thisLock.release();
|
---|
10489 |
|
---|
10490 | vrc = VDCompact(hdd, VD_LAST_IMAGE, task.mVDOperationIfaces);
|
---|
10491 | if (RT_FAILURE(vrc))
|
---|
10492 | {
|
---|
10493 | if (vrc == VERR_NOT_SUPPORTED)
|
---|
10494 | throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
|
---|
10495 | tr("Compacting is not yet supported for medium '%s'"),
|
---|
10496 | location.c_str());
|
---|
10497 | else if (vrc == VERR_NOT_IMPLEMENTED)
|
---|
10498 | throw setErrorBoth(E_NOTIMPL, vrc,
|
---|
10499 | tr("Compacting is not implemented, medium '%s'"),
|
---|
10500 | location.c_str());
|
---|
10501 | else
|
---|
10502 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10503 | tr("Could not compact medium '%s'%s"),
|
---|
10504 | location.c_str(),
|
---|
10505 | i_vdError(vrc).c_str());
|
---|
10506 | }
|
---|
10507 | }
|
---|
10508 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10509 |
|
---|
10510 | VDDestroy(hdd);
|
---|
10511 | }
|
---|
10512 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10513 |
|
---|
10514 | if (task.NotifyAboutChanges() && SUCCEEDED(hrc))
|
---|
10515 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
10516 |
|
---|
10517 | /* Everything is explicitly unlocked when the task exits,
|
---|
10518 | * as the task destruction also destroys the media chain. */
|
---|
10519 |
|
---|
10520 | return hrc;
|
---|
10521 | }
|
---|
10522 |
|
---|
10523 | /**
|
---|
10524 | * Implementation code for the "resize" task.
|
---|
10525 | *
|
---|
10526 | * @param task
|
---|
10527 | * @return
|
---|
10528 | */
|
---|
10529 | HRESULT Medium::i_taskResizeHandler(Medium::ResizeTask &task)
|
---|
10530 | {
|
---|
10531 | HRESULT hrc = S_OK;
|
---|
10532 |
|
---|
10533 | uint64_t size = 0, logicalSize = 0;
|
---|
10534 |
|
---|
10535 | try
|
---|
10536 | {
|
---|
10537 | /* The lock is also used as a signal from the task initiator (which
|
---|
10538 | * releases it only after RTThreadCreate()) that we can start the job */
|
---|
10539 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10540 |
|
---|
10541 | PVDISK hdd;
|
---|
10542 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
10543 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
10544 |
|
---|
10545 | try
|
---|
10546 | {
|
---|
10547 | /* Open all media in the chain. */
|
---|
10548 | MediumLockList::Base::const_iterator mediumListBegin =
|
---|
10549 | task.mpMediumLockList->GetBegin();
|
---|
10550 | MediumLockList::Base::const_iterator mediumListEnd =
|
---|
10551 | task.mpMediumLockList->GetEnd();
|
---|
10552 | MediumLockList::Base::const_iterator mediumListLast =
|
---|
10553 | mediumListEnd;
|
---|
10554 | --mediumListLast;
|
---|
10555 | for (MediumLockList::Base::const_iterator it = mediumListBegin;
|
---|
10556 | it != mediumListEnd;
|
---|
10557 | ++it)
|
---|
10558 | {
|
---|
10559 | const MediumLock &mediumLock = *it;
|
---|
10560 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
10561 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
10562 |
|
---|
10563 | /* sanity check */
|
---|
10564 | if (it == mediumListLast)
|
---|
10565 | Assert(pMedium->m->state == MediumState_LockedWrite);
|
---|
10566 | else
|
---|
10567 | Assert(pMedium->m->state == MediumState_LockedRead ||
|
---|
10568 | // Allow resize the target image during mergeTo in case
|
---|
10569 | // of direction from parent to child because all intermediate
|
---|
10570 | // images are marked to MediumState_Deleting and will be
|
---|
10571 | // destroyed after successful merge
|
---|
10572 | pMedium->m->state == MediumState_Deleting);
|
---|
10573 |
|
---|
10574 | /* Open all media but last in read-only mode. Do not handle
|
---|
10575 | * shareable media, as compaction and sharing are mutually
|
---|
10576 | * exclusive. */
|
---|
10577 | vrc = VDOpen(hdd,
|
---|
10578 | pMedium->m->strFormat.c_str(),
|
---|
10579 | pMedium->m->strLocationFull.c_str(),
|
---|
10580 | m->uOpenFlagsDef | (it == mediumListLast ? VD_OPEN_FLAGS_NORMAL : VD_OPEN_FLAGS_READONLY),
|
---|
10581 | pMedium->m->vdImageIfaces);
|
---|
10582 | if (RT_FAILURE(vrc))
|
---|
10583 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10584 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
10585 | pMedium->m->strLocationFull.c_str(),
|
---|
10586 | i_vdError(vrc).c_str());
|
---|
10587 | }
|
---|
10588 |
|
---|
10589 | Assert(m->state == MediumState_LockedWrite);
|
---|
10590 |
|
---|
10591 | Utf8Str location(m->strLocationFull);
|
---|
10592 |
|
---|
10593 | /* unlock before the potentially lengthy operation */
|
---|
10594 | thisLock.release();
|
---|
10595 |
|
---|
10596 | VDGEOMETRY geo = {0, 0, 0}; /* auto */
|
---|
10597 | vrc = VDResize(hdd, task.mSize, &geo, &geo, task.mVDOperationIfaces);
|
---|
10598 | if (RT_FAILURE(vrc))
|
---|
10599 | {
|
---|
10600 | if (vrc == VERR_VD_SHRINK_NOT_SUPPORTED)
|
---|
10601 | throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
|
---|
10602 | tr("Shrinking is not yet supported for medium '%s'"),
|
---|
10603 | location.c_str());
|
---|
10604 | if (vrc == VERR_NOT_SUPPORTED)
|
---|
10605 | throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
|
---|
10606 | tr("Resizing to new size %llu is not yet supported for medium '%s'"),
|
---|
10607 | task.mSize, location.c_str());
|
---|
10608 | else if (vrc == VERR_NOT_IMPLEMENTED)
|
---|
10609 | throw setErrorBoth(E_NOTIMPL, vrc,
|
---|
10610 | tr("Resizing is not implemented, medium '%s'"),
|
---|
10611 | location.c_str());
|
---|
10612 | else
|
---|
10613 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10614 | tr("Could not resize medium '%s'%s"),
|
---|
10615 | location.c_str(),
|
---|
10616 | i_vdError(vrc).c_str());
|
---|
10617 | }
|
---|
10618 | size = VDGetFileSize(hdd, VD_LAST_IMAGE);
|
---|
10619 | logicalSize = VDGetSize(hdd, VD_LAST_IMAGE);
|
---|
10620 | }
|
---|
10621 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10622 |
|
---|
10623 | VDDestroy(hdd);
|
---|
10624 | }
|
---|
10625 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
10626 |
|
---|
10627 | if (SUCCEEDED(hrc))
|
---|
10628 | {
|
---|
10629 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10630 | m->size = size;
|
---|
10631 | m->logicalSize = logicalSize;
|
---|
10632 |
|
---|
10633 | if (task.NotifyAboutChanges())
|
---|
10634 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
10635 | }
|
---|
10636 |
|
---|
10637 | /* Everything is explicitly unlocked when the task exits,
|
---|
10638 | * as the task destruction also destroys the media chain. */
|
---|
10639 |
|
---|
10640 | return hrc;
|
---|
10641 | }
|
---|
10642 |
|
---|
10643 | /**
|
---|
10644 | * Implementation code for the "import" task.
|
---|
10645 | *
|
---|
10646 | * This only gets started from Medium::importFile() and always runs
|
---|
10647 | * asynchronously. It potentially touches the media registry, so we
|
---|
10648 | * always save the VirtualBox.xml file when we're done here.
|
---|
10649 | *
|
---|
10650 | * @param task
|
---|
10651 | * @return
|
---|
10652 | */
|
---|
10653 | HRESULT Medium::i_taskImportHandler(Medium::ImportTask &task)
|
---|
10654 | {
|
---|
10655 | /** @todo r=klaus The code below needs to be double checked with regard
|
---|
10656 | * to lock order violations, it probably causes lock order issues related
|
---|
10657 | * to the AutoCaller usage. */
|
---|
10658 | HRESULT hrcTmp = S_OK;
|
---|
10659 |
|
---|
10660 | const ComObjPtr<Medium> &pParent = task.mParent;
|
---|
10661 |
|
---|
10662 | bool fCreatingTarget = false;
|
---|
10663 |
|
---|
10664 | uint64_t size = 0, logicalSize = 0;
|
---|
10665 | MediumVariant_T variant = MediumVariant_Standard;
|
---|
10666 | bool fGenerateUuid = false;
|
---|
10667 |
|
---|
10668 | try
|
---|
10669 | {
|
---|
10670 | if (!pParent.isNull())
|
---|
10671 | if (pParent->i_getDepth() >= SETTINGS_MEDIUM_DEPTH_MAX)
|
---|
10672 | {
|
---|
10673 | AutoReadLock plock(pParent COMMA_LOCKVAL_SRC_POS);
|
---|
10674 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
10675 | tr("Cannot import image for medium '%s', because it exceeds the medium tree depth limit. Please merge some images which you no longer need"),
|
---|
10676 | pParent->m->strLocationFull.c_str());
|
---|
10677 | }
|
---|
10678 |
|
---|
10679 | /* Lock all in {parent,child} order. The lock is also used as a
|
---|
10680 | * signal from the task initiator (which releases it only after
|
---|
10681 | * RTThreadCreate()) that we can start the job. */
|
---|
10682 | AutoMultiWriteLock2 thisLock(this, pParent COMMA_LOCKVAL_SRC_POS);
|
---|
10683 |
|
---|
10684 | fCreatingTarget = m->state == MediumState_Creating;
|
---|
10685 |
|
---|
10686 | /* The object may request a specific UUID (through a special form of
|
---|
10687 | * the moveTo() argument). Otherwise we have to generate it */
|
---|
10688 | Guid targetId = m->id;
|
---|
10689 |
|
---|
10690 | fGenerateUuid = targetId.isZero();
|
---|
10691 | if (fGenerateUuid)
|
---|
10692 | {
|
---|
10693 | targetId.create();
|
---|
10694 | /* VirtualBox::i_registerMedium() will need UUID */
|
---|
10695 | unconst(m->id) = targetId;
|
---|
10696 | }
|
---|
10697 |
|
---|
10698 |
|
---|
10699 | PVDISK hdd;
|
---|
10700 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &hdd);
|
---|
10701 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
10702 |
|
---|
10703 | try
|
---|
10704 | {
|
---|
10705 | /* Open source medium. */
|
---|
10706 | vrc = VDOpen(hdd,
|
---|
10707 | task.mFormat->i_getId().c_str(),
|
---|
10708 | task.mFilename.c_str(),
|
---|
10709 | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_SEQUENTIAL | m->uOpenFlagsDef,
|
---|
10710 | task.mVDImageIfaces);
|
---|
10711 | if (RT_FAILURE(vrc))
|
---|
10712 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10713 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
10714 | task.mFilename.c_str(),
|
---|
10715 | i_vdError(vrc).c_str());
|
---|
10716 |
|
---|
10717 | Utf8Str targetFormat(m->strFormat);
|
---|
10718 | Utf8Str targetLocation(m->strLocationFull);
|
---|
10719 | uint64_t capabilities = task.mFormat->i_getCapabilities();
|
---|
10720 |
|
---|
10721 | Assert( m->state == MediumState_Creating
|
---|
10722 | || m->state == MediumState_LockedWrite);
|
---|
10723 | Assert( pParent.isNull()
|
---|
10724 | || pParent->m->state == MediumState_LockedRead);
|
---|
10725 |
|
---|
10726 | /* unlock before the potentially lengthy operation */
|
---|
10727 | thisLock.release();
|
---|
10728 |
|
---|
10729 | /* ensure the target directory exists */
|
---|
10730 | if (capabilities & MediumFormatCapabilities_File)
|
---|
10731 | {
|
---|
10732 | HRESULT hrc = VirtualBox::i_ensureFilePathExists(targetLocation,
|
---|
10733 | !(task.mVariant & MediumVariant_NoCreateDir) /* fCreate */);
|
---|
10734 | if (FAILED(hrc))
|
---|
10735 | throw hrc;
|
---|
10736 | }
|
---|
10737 |
|
---|
10738 | PVDISK targetHdd;
|
---|
10739 | vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &targetHdd);
|
---|
10740 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
10741 |
|
---|
10742 | try
|
---|
10743 | {
|
---|
10744 | /* Open all media in the target chain. */
|
---|
10745 | MediumLockList::Base::const_iterator targetListBegin =
|
---|
10746 | task.mpTargetMediumLockList->GetBegin();
|
---|
10747 | MediumLockList::Base::const_iterator targetListEnd =
|
---|
10748 | task.mpTargetMediumLockList->GetEnd();
|
---|
10749 | for (MediumLockList::Base::const_iterator it = targetListBegin;
|
---|
10750 | it != targetListEnd;
|
---|
10751 | ++it)
|
---|
10752 | {
|
---|
10753 | const MediumLock &mediumLock = *it;
|
---|
10754 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
10755 |
|
---|
10756 | /* If the target medium is not created yet there's no
|
---|
10757 | * reason to open it. */
|
---|
10758 | if (pMedium == this && fCreatingTarget)
|
---|
10759 | continue;
|
---|
10760 |
|
---|
10761 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
10762 |
|
---|
10763 | /* sanity check */
|
---|
10764 | Assert( pMedium->m->state == MediumState_LockedRead
|
---|
10765 | || pMedium->m->state == MediumState_LockedWrite);
|
---|
10766 |
|
---|
10767 | unsigned uOpenFlags = VD_OPEN_FLAGS_NORMAL;
|
---|
10768 | if (pMedium->m->state != MediumState_LockedWrite)
|
---|
10769 | uOpenFlags = VD_OPEN_FLAGS_READONLY;
|
---|
10770 | if (pMedium->m->type == MediumType_Shareable)
|
---|
10771 | uOpenFlags |= VD_OPEN_FLAGS_SHAREABLE;
|
---|
10772 |
|
---|
10773 | /* Open all media in appropriate mode. */
|
---|
10774 | vrc = VDOpen(targetHdd,
|
---|
10775 | pMedium->m->strFormat.c_str(),
|
---|
10776 | pMedium->m->strLocationFull.c_str(),
|
---|
10777 | uOpenFlags | m->uOpenFlagsDef,
|
---|
10778 | pMedium->m->vdImageIfaces);
|
---|
10779 | if (RT_FAILURE(vrc))
|
---|
10780 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10781 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
10782 | pMedium->m->strLocationFull.c_str(),
|
---|
10783 | i_vdError(vrc).c_str());
|
---|
10784 | }
|
---|
10785 |
|
---|
10786 | vrc = VDCopy(hdd,
|
---|
10787 | VD_LAST_IMAGE,
|
---|
10788 | targetHdd,
|
---|
10789 | targetFormat.c_str(),
|
---|
10790 | (fCreatingTarget) ? targetLocation.c_str() : (char *)NULL,
|
---|
10791 | false /* fMoveByRename */,
|
---|
10792 | 0 /* cbSize */,
|
---|
10793 | task.mVariant & ~(MediumVariant_NoCreateDir | MediumVariant_Formatted | MediumVariant_VmdkESX | MediumVariant_VmdkRawDisk),
|
---|
10794 | targetId.raw(),
|
---|
10795 | VD_OPEN_FLAGS_NORMAL,
|
---|
10796 | NULL /* pVDIfsOperation */,
|
---|
10797 | m->vdImageIfaces,
|
---|
10798 | task.mVDOperationIfaces);
|
---|
10799 | if (RT_FAILURE(vrc))
|
---|
10800 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
10801 | tr("Could not create the imported medium '%s'%s"),
|
---|
10802 | targetLocation.c_str(), i_vdError(vrc).c_str());
|
---|
10803 |
|
---|
10804 | size = VDGetFileSize(targetHdd, VD_LAST_IMAGE);
|
---|
10805 | logicalSize = VDGetSize(targetHdd, VD_LAST_IMAGE);
|
---|
10806 | unsigned uImageFlags;
|
---|
10807 | vrc = VDGetImageFlags(targetHdd, 0, &uImageFlags);
|
---|
10808 | if (RT_SUCCESS(vrc))
|
---|
10809 | variant = (MediumVariant_T)uImageFlags;
|
---|
10810 | }
|
---|
10811 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
10812 |
|
---|
10813 | VDDestroy(targetHdd);
|
---|
10814 | }
|
---|
10815 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
10816 |
|
---|
10817 | VDDestroy(hdd);
|
---|
10818 | }
|
---|
10819 | catch (HRESULT hrcXcpt) { hrcTmp = hrcXcpt; }
|
---|
10820 |
|
---|
10821 | ErrorInfoKeeper eik;
|
---|
10822 | MultiResult mrc(hrcTmp);
|
---|
10823 |
|
---|
10824 | /* Only do the parent changes for newly created media. */
|
---|
10825 | if (SUCCEEDED(mrc) && fCreatingTarget)
|
---|
10826 | {
|
---|
10827 | /* we set m->pParent & children() */
|
---|
10828 | AutoWriteLock treeLock(m->pVirtualBox->i_getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
10829 |
|
---|
10830 | Assert(m->pParent.isNull());
|
---|
10831 |
|
---|
10832 | if (pParent)
|
---|
10833 | {
|
---|
10834 | /* Associate the imported medium with the parent and deassociate
|
---|
10835 | * from VirtualBox. Depth check above. */
|
---|
10836 | i_setParent(pParent);
|
---|
10837 |
|
---|
10838 | /* register with mVirtualBox as the last step and move to
|
---|
10839 | * Created state only on success (leaving an orphan file is
|
---|
10840 | * better than breaking media registry consistency) */
|
---|
10841 | eik.restore();
|
---|
10842 | ComObjPtr<Medium> pMedium;
|
---|
10843 | mrc = pParent->m->pVirtualBox->i_registerMedium(this, &pMedium,
|
---|
10844 | treeLock);
|
---|
10845 | Assert(this == pMedium);
|
---|
10846 | eik.fetch();
|
---|
10847 |
|
---|
10848 | if (FAILED(mrc))
|
---|
10849 | /* break parent association on failure to register */
|
---|
10850 | this->i_deparent(); // removes target from parent
|
---|
10851 | }
|
---|
10852 | else
|
---|
10853 | {
|
---|
10854 | /* just register */
|
---|
10855 | eik.restore();
|
---|
10856 | ComObjPtr<Medium> pMedium;
|
---|
10857 | mrc = m->pVirtualBox->i_registerMedium(this, &pMedium, treeLock);
|
---|
10858 | Assert(this == pMedium);
|
---|
10859 | eik.fetch();
|
---|
10860 | }
|
---|
10861 | }
|
---|
10862 |
|
---|
10863 | if (fCreatingTarget)
|
---|
10864 | {
|
---|
10865 | AutoWriteLock mLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10866 |
|
---|
10867 | if (SUCCEEDED(mrc))
|
---|
10868 | {
|
---|
10869 | m->state = MediumState_Created;
|
---|
10870 |
|
---|
10871 | m->size = size;
|
---|
10872 | m->logicalSize = logicalSize;
|
---|
10873 | m->variant = variant;
|
---|
10874 | }
|
---|
10875 | else
|
---|
10876 | {
|
---|
10877 | /* back to NotCreated on failure */
|
---|
10878 | m->state = MediumState_NotCreated;
|
---|
10879 |
|
---|
10880 | /* reset UUID to prevent it from being reused next time */
|
---|
10881 | if (fGenerateUuid)
|
---|
10882 | unconst(m->id).clear();
|
---|
10883 | }
|
---|
10884 | }
|
---|
10885 |
|
---|
10886 | // now, at the end of this task (always asynchronous), save the settings
|
---|
10887 | {
|
---|
10888 | // save the settings
|
---|
10889 | i_markRegistriesModified();
|
---|
10890 | /* collect multiple errors */
|
---|
10891 | eik.restore();
|
---|
10892 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
10893 | eik.fetch();
|
---|
10894 | }
|
---|
10895 |
|
---|
10896 | /* Everything is explicitly unlocked when the task exits,
|
---|
10897 | * as the task destruction also destroys the target chain. */
|
---|
10898 |
|
---|
10899 | /* Make sure the target chain is released early, otherwise it can
|
---|
10900 | * lead to deadlocks with concurrent IAppliance activities. */
|
---|
10901 | task.mpTargetMediumLockList->Clear();
|
---|
10902 |
|
---|
10903 | if (task.NotifyAboutChanges() && SUCCEEDED(mrc))
|
---|
10904 | {
|
---|
10905 | if (pParent)
|
---|
10906 | m->pVirtualBox->i_onMediumConfigChanged(pParent);
|
---|
10907 | if (fCreatingTarget)
|
---|
10908 | m->pVirtualBox->i_onMediumConfigChanged(this);
|
---|
10909 | else
|
---|
10910 | m->pVirtualBox->i_onMediumRegistered(m->id, m->devType, TRUE);
|
---|
10911 | }
|
---|
10912 |
|
---|
10913 | return mrc;
|
---|
10914 | }
|
---|
10915 |
|
---|
10916 | /**
|
---|
10917 | * Sets up the encryption settings for a filter.
|
---|
10918 | */
|
---|
10919 | void Medium::i_taskEncryptSettingsSetup(MediumCryptoFilterSettings *pSettings, const char *pszCipher,
|
---|
10920 | const char *pszKeyStore, const char *pszPassword,
|
---|
10921 | bool fCreateKeyStore)
|
---|
10922 | {
|
---|
10923 | pSettings->pszCipher = pszCipher;
|
---|
10924 | pSettings->pszPassword = pszPassword;
|
---|
10925 | pSettings->pszKeyStoreLoad = pszKeyStore;
|
---|
10926 | pSettings->fCreateKeyStore = fCreateKeyStore;
|
---|
10927 | pSettings->pbDek = NULL;
|
---|
10928 | pSettings->cbDek = 0;
|
---|
10929 | pSettings->vdFilterIfaces = NULL;
|
---|
10930 |
|
---|
10931 | pSettings->vdIfCfg.pfnAreKeysValid = i_vdCryptoConfigAreKeysValid;
|
---|
10932 | pSettings->vdIfCfg.pfnQuerySize = i_vdCryptoConfigQuerySize;
|
---|
10933 | pSettings->vdIfCfg.pfnQuery = i_vdCryptoConfigQuery;
|
---|
10934 | pSettings->vdIfCfg.pfnQueryBytes = NULL;
|
---|
10935 |
|
---|
10936 | pSettings->vdIfCrypto.pfnKeyRetain = i_vdCryptoKeyRetain;
|
---|
10937 | pSettings->vdIfCrypto.pfnKeyRelease = i_vdCryptoKeyRelease;
|
---|
10938 | pSettings->vdIfCrypto.pfnKeyStorePasswordRetain = i_vdCryptoKeyStorePasswordRetain;
|
---|
10939 | pSettings->vdIfCrypto.pfnKeyStorePasswordRelease = i_vdCryptoKeyStorePasswordRelease;
|
---|
10940 | pSettings->vdIfCrypto.pfnKeyStoreSave = i_vdCryptoKeyStoreSave;
|
---|
10941 | pSettings->vdIfCrypto.pfnKeyStoreReturnParameters = i_vdCryptoKeyStoreReturnParameters;
|
---|
10942 |
|
---|
10943 | int vrc = VDInterfaceAdd(&pSettings->vdIfCfg.Core,
|
---|
10944 | "Medium::vdInterfaceCfgCrypto",
|
---|
10945 | VDINTERFACETYPE_CONFIG, pSettings,
|
---|
10946 | sizeof(VDINTERFACECONFIG), &pSettings->vdFilterIfaces);
|
---|
10947 | AssertRC(vrc);
|
---|
10948 |
|
---|
10949 | vrc = VDInterfaceAdd(&pSettings->vdIfCrypto.Core,
|
---|
10950 | "Medium::vdInterfaceCrypto",
|
---|
10951 | VDINTERFACETYPE_CRYPTO, pSettings,
|
---|
10952 | sizeof(VDINTERFACECRYPTO), &pSettings->vdFilterIfaces);
|
---|
10953 | AssertRC(vrc);
|
---|
10954 | }
|
---|
10955 |
|
---|
10956 | /**
|
---|
10957 | * Implementation code for the "encrypt" task.
|
---|
10958 | *
|
---|
10959 | * @param task
|
---|
10960 | * @return
|
---|
10961 | */
|
---|
10962 | HRESULT Medium::i_taskEncryptHandler(Medium::EncryptTask &task)
|
---|
10963 | {
|
---|
10964 | # ifndef VBOX_WITH_EXTPACK
|
---|
10965 | RT_NOREF(task);
|
---|
10966 | # endif
|
---|
10967 | HRESULT hrc = S_OK;
|
---|
10968 |
|
---|
10969 | /* Lock all in {parent,child} order. The lock is also used as a
|
---|
10970 | * signal from the task initiator (which releases it only after
|
---|
10971 | * RTThreadCreate()) that we can start the job. */
|
---|
10972 | ComObjPtr<Medium> pBase = i_getBase();
|
---|
10973 | AutoWriteLock thisLock(this COMMA_LOCKVAL_SRC_POS);
|
---|
10974 |
|
---|
10975 | try
|
---|
10976 | {
|
---|
10977 | # ifdef VBOX_WITH_EXTPACK
|
---|
10978 | ExtPackManager *pExtPackManager = m->pVirtualBox->i_getExtPackManager();
|
---|
10979 | if (pExtPackManager->i_isExtPackUsable(ORACLE_PUEL_EXTPACK_NAME))
|
---|
10980 | {
|
---|
10981 | /* Load the plugin */
|
---|
10982 | Utf8Str strPlugin;
|
---|
10983 | hrc = pExtPackManager->i_getLibraryPathForExtPack(g_szVDPlugin, ORACLE_PUEL_EXTPACK_NAME, &strPlugin);
|
---|
10984 | if (SUCCEEDED(hrc))
|
---|
10985 | {
|
---|
10986 | int vrc = VDPluginLoadFromFilename(strPlugin.c_str());
|
---|
10987 | if (RT_FAILURE(vrc))
|
---|
10988 | throw setErrorBoth(VBOX_E_NOT_SUPPORTED, vrc,
|
---|
10989 | tr("Encrypting the image failed because the encryption plugin could not be loaded (%s)"),
|
---|
10990 | i_vdError(vrc).c_str());
|
---|
10991 | }
|
---|
10992 | else
|
---|
10993 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
10994 | tr("Encryption is not supported because the extension pack '%s' is missing the encryption plugin (old extension pack installed?)"),
|
---|
10995 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
10996 | }
|
---|
10997 | else
|
---|
10998 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
10999 | tr("Encryption is not supported because the extension pack '%s' is missing"),
|
---|
11000 | ORACLE_PUEL_EXTPACK_NAME);
|
---|
11001 |
|
---|
11002 | PVDISK pDisk = NULL;
|
---|
11003 | int vrc = VDCreate(m->vdDiskIfaces, i_convertDeviceType(), &pDisk);
|
---|
11004 | ComAssertRCThrow(vrc, E_FAIL);
|
---|
11005 |
|
---|
11006 | MediumCryptoFilterSettings CryptoSettingsRead;
|
---|
11007 | MediumCryptoFilterSettings CryptoSettingsWrite;
|
---|
11008 |
|
---|
11009 | void *pvBuf = NULL;
|
---|
11010 | const char *pszPasswordNew = NULL;
|
---|
11011 | try
|
---|
11012 | {
|
---|
11013 | /* Set up disk encryption filters. */
|
---|
11014 | if (task.mstrCurrentPassword.isEmpty())
|
---|
11015 | {
|
---|
11016 | /*
|
---|
11017 | * Query whether the medium property indicating that encryption is
|
---|
11018 | * configured is existing.
|
---|
11019 | */
|
---|
11020 | settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore");
|
---|
11021 | if (it != pBase->m->mapProperties.end())
|
---|
11022 | throw setError(VBOX_E_PASSWORD_INCORRECT,
|
---|
11023 | tr("The password given for the encrypted image is incorrect"));
|
---|
11024 | }
|
---|
11025 | else
|
---|
11026 | {
|
---|
11027 | settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore");
|
---|
11028 | if (it == pBase->m->mapProperties.end())
|
---|
11029 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
11030 | tr("The image is not configured for encryption"));
|
---|
11031 |
|
---|
11032 | i_taskEncryptSettingsSetup(&CryptoSettingsRead, NULL, it->second.c_str(), task.mstrCurrentPassword.c_str(),
|
---|
11033 | false /* fCreateKeyStore */);
|
---|
11034 | vrc = VDFilterAdd(pDisk, "CRYPT", VD_FILTER_FLAGS_READ, CryptoSettingsRead.vdFilterIfaces);
|
---|
11035 | if (vrc == VERR_VD_PASSWORD_INCORRECT)
|
---|
11036 | throw setError(VBOX_E_PASSWORD_INCORRECT,
|
---|
11037 | tr("The password to decrypt the image is incorrect"));
|
---|
11038 | else if (RT_FAILURE(vrc))
|
---|
11039 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
11040 | tr("Failed to load the decryption filter: %s"),
|
---|
11041 | i_vdError(vrc).c_str());
|
---|
11042 | }
|
---|
11043 |
|
---|
11044 | if (task.mstrCipher.isNotEmpty())
|
---|
11045 | {
|
---|
11046 | if ( task.mstrNewPassword.isEmpty()
|
---|
11047 | && task.mstrNewPasswordId.isEmpty()
|
---|
11048 | && task.mstrCurrentPassword.isNotEmpty())
|
---|
11049 | {
|
---|
11050 | /* An empty password and password ID will default to the current password. */
|
---|
11051 | pszPasswordNew = task.mstrCurrentPassword.c_str();
|
---|
11052 | }
|
---|
11053 | else if (task.mstrNewPassword.isEmpty())
|
---|
11054 | throw setError(VBOX_E_OBJECT_NOT_FOUND,
|
---|
11055 | tr("A password must be given for the image encryption"));
|
---|
11056 | else if (task.mstrNewPasswordId.isEmpty())
|
---|
11057 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
11058 | tr("A valid identifier for the password must be given"));
|
---|
11059 | else
|
---|
11060 | pszPasswordNew = task.mstrNewPassword.c_str();
|
---|
11061 |
|
---|
11062 | i_taskEncryptSettingsSetup(&CryptoSettingsWrite, task.mstrCipher.c_str(), NULL,
|
---|
11063 | pszPasswordNew, true /* fCreateKeyStore */);
|
---|
11064 | vrc = VDFilterAdd(pDisk, "CRYPT", VD_FILTER_FLAGS_WRITE, CryptoSettingsWrite.vdFilterIfaces);
|
---|
11065 | if (RT_FAILURE(vrc))
|
---|
11066 | throw setErrorBoth(VBOX_E_INVALID_OBJECT_STATE, vrc,
|
---|
11067 | tr("Failed to load the encryption filter: %s"),
|
---|
11068 | i_vdError(vrc).c_str());
|
---|
11069 | }
|
---|
11070 | else if (task.mstrNewPasswordId.isNotEmpty() || task.mstrNewPassword.isNotEmpty())
|
---|
11071 | throw setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
11072 | tr("The password and password identifier must be empty if the output should be unencrypted"));
|
---|
11073 |
|
---|
11074 | /* Open all media in the chain. */
|
---|
11075 | MediumLockList::Base::const_iterator mediumListBegin =
|
---|
11076 | task.mpMediumLockList->GetBegin();
|
---|
11077 | MediumLockList::Base::const_iterator mediumListEnd =
|
---|
11078 | task.mpMediumLockList->GetEnd();
|
---|
11079 | MediumLockList::Base::const_iterator mediumListLast =
|
---|
11080 | mediumListEnd;
|
---|
11081 | --mediumListLast;
|
---|
11082 | for (MediumLockList::Base::const_iterator it = mediumListBegin;
|
---|
11083 | it != mediumListEnd;
|
---|
11084 | ++it)
|
---|
11085 | {
|
---|
11086 | const MediumLock &mediumLock = *it;
|
---|
11087 | const ComObjPtr<Medium> &pMedium = mediumLock.GetMedium();
|
---|
11088 | AutoReadLock alock(pMedium COMMA_LOCKVAL_SRC_POS);
|
---|
11089 |
|
---|
11090 | Assert(pMedium->m->state == MediumState_LockedWrite);
|
---|
11091 |
|
---|
11092 | /* Open all media but last in read-only mode. Do not handle
|
---|
11093 | * shareable media, as compaction and sharing are mutually
|
---|
11094 | * exclusive. */
|
---|
11095 | vrc = VDOpen(pDisk,
|
---|
11096 | pMedium->m->strFormat.c_str(),
|
---|
11097 | pMedium->m->strLocationFull.c_str(),
|
---|
11098 | m->uOpenFlagsDef | (it == mediumListLast ? VD_OPEN_FLAGS_NORMAL : VD_OPEN_FLAGS_READONLY),
|
---|
11099 | pMedium->m->vdImageIfaces);
|
---|
11100 | if (RT_FAILURE(vrc))
|
---|
11101 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
11102 | tr("Could not open the medium storage unit '%s'%s"),
|
---|
11103 | pMedium->m->strLocationFull.c_str(),
|
---|
11104 | i_vdError(vrc).c_str());
|
---|
11105 | }
|
---|
11106 |
|
---|
11107 | Assert(m->state == MediumState_LockedWrite);
|
---|
11108 |
|
---|
11109 | Utf8Str location(m->strLocationFull);
|
---|
11110 |
|
---|
11111 | /* unlock before the potentially lengthy operation */
|
---|
11112 | thisLock.release();
|
---|
11113 |
|
---|
11114 | vrc = VDPrepareWithFilters(pDisk, task.mVDOperationIfaces);
|
---|
11115 | if (RT_FAILURE(vrc))
|
---|
11116 | throw setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
11117 | tr("Could not prepare disk images for encryption (%Rrc): %s"),
|
---|
11118 | vrc, i_vdError(vrc).c_str());
|
---|
11119 |
|
---|
11120 | thisLock.acquire();
|
---|
11121 | /* If everything went well set the new key store. */
|
---|
11122 | settings::StringsMap::iterator it = pBase->m->mapProperties.find("CRYPT/KeyStore");
|
---|
11123 | if (it != pBase->m->mapProperties.end())
|
---|
11124 | pBase->m->mapProperties.erase(it);
|
---|
11125 |
|
---|
11126 | /* Delete KeyId if encryption is removed or the password did change. */
|
---|
11127 | if ( task.mstrNewPasswordId.isNotEmpty()
|
---|
11128 | || task.mstrCipher.isEmpty())
|
---|
11129 | {
|
---|
11130 | it = pBase->m->mapProperties.find("CRYPT/KeyId");
|
---|
11131 | if (it != pBase->m->mapProperties.end())
|
---|
11132 | pBase->m->mapProperties.erase(it);
|
---|
11133 | }
|
---|
11134 |
|
---|
11135 | if (CryptoSettingsWrite.pszKeyStore)
|
---|
11136 | {
|
---|
11137 | pBase->m->mapProperties["CRYPT/KeyStore"] = Utf8Str(CryptoSettingsWrite.pszKeyStore);
|
---|
11138 | if (task.mstrNewPasswordId.isNotEmpty())
|
---|
11139 | pBase->m->mapProperties["CRYPT/KeyId"] = task.mstrNewPasswordId;
|
---|
11140 | }
|
---|
11141 |
|
---|
11142 | if (CryptoSettingsRead.pszCipherReturned)
|
---|
11143 | RTStrFree(CryptoSettingsRead.pszCipherReturned);
|
---|
11144 |
|
---|
11145 | if (CryptoSettingsWrite.pszCipherReturned)
|
---|
11146 | RTStrFree(CryptoSettingsWrite.pszCipherReturned);
|
---|
11147 |
|
---|
11148 | thisLock.release();
|
---|
11149 | pBase->i_markRegistriesModified();
|
---|
11150 | m->pVirtualBox->i_saveModifiedRegistries();
|
---|
11151 | }
|
---|
11152 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
11153 |
|
---|
11154 | if (pvBuf)
|
---|
11155 | RTMemFree(pvBuf);
|
---|
11156 |
|
---|
11157 | VDDestroy(pDisk);
|
---|
11158 | # else
|
---|
11159 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
11160 | tr("Encryption is not supported because extension pack support is not built in"));
|
---|
11161 | # endif
|
---|
11162 | }
|
---|
11163 | catch (HRESULT hrcXcpt) { hrc = hrcXcpt; }
|
---|
11164 |
|
---|
11165 | /* Everything is explicitly unlocked when the task exits,
|
---|
11166 | * as the task destruction also destroys the media chain. */
|
---|
11167 |
|
---|
11168 | return hrc;
|
---|
11169 | }
|
---|
11170 |
|
---|
11171 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|