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