VirtualBox

source: vbox/trunk/src/VBox/Main/src-server/MachineImplCloneVM.cpp@ 40257

Last change on this file since 40257 was 40257, checked in by vboxsync, 13 years ago

Main/Medium: rework locking scheme to solve lock order violations and long GUI start up time caused by too much locking
Main/all: Remove the enter and leave methods from write locks, they cause hard to find locking problems. Better solve them explicitly.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 58.1 KB
Line 
1/* $Id: MachineImplCloneVM.cpp 40257 2012-02-27 09:25:12Z vboxsync $ */
2/** @file
3 * Implementation of MachineCloneVM
4 */
5
6/*
7 * Copyright (C) 2011-2012 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 "MachineImplCloneVM.h"
19
20#include "VirtualBoxImpl.h"
21#include "MediumImpl.h"
22#include "HostImpl.h"
23
24#include <iprt/path.h>
25#include <iprt/dir.h>
26#include <iprt/cpp/utils.h>
27#ifdef DEBUG_poetzsch
28# include <iprt/stream.h>
29#endif
30
31#include <VBox/com/list.h>
32#include <VBox/com/MultiResult.h>
33
34// typedefs
35/////////////////////////////////////////////////////////////////////////////
36
37typedef struct
38{
39 Utf8Str strBaseName;
40 ComPtr<IMedium> pMedium;
41 uint32_t uIdx;
42 ULONG uWeight;
43} MEDIUMTASK;
44
45typedef struct
46{
47 RTCList<MEDIUMTASK> chain;
48 bool fCreateDiffs;
49 bool fAttachLinked;
50} MEDIUMTASKCHAIN;
51
52typedef struct
53{
54 Guid snapshotUuid;
55 Utf8Str strSaveStateFile;
56 ULONG uWeight;
57} SAVESTATETASK;
58
59// The private class
60/////////////////////////////////////////////////////////////////////////////
61
62struct MachineCloneVMPrivate
63{
64 MachineCloneVMPrivate(MachineCloneVM *a_q, ComObjPtr<Machine> &a_pSrcMachine, ComObjPtr<Machine> &a_pTrgMachine, CloneMode_T a_mode, const RTCList<CloneOptions_T> &opts)
65 : q_ptr(a_q)
66 , p(a_pSrcMachine)
67 , pSrcMachine(a_pSrcMachine)
68 , pTrgMachine(a_pTrgMachine)
69 , mode(a_mode)
70 , options(opts)
71 {}
72
73 /* Thread management */
74 int startWorker()
75 {
76 return RTThreadCreate(NULL,
77 MachineCloneVMPrivate::workerThread,
78 static_cast<void*>(this),
79 0,
80 RTTHREADTYPE_MAIN_WORKER,
81 0,
82 "MachineClone");
83 }
84
85 static int workerThread(RTTHREAD /* Thread */, void *pvUser)
86 {
87 MachineCloneVMPrivate *pTask = static_cast<MachineCloneVMPrivate*>(pvUser);
88 AssertReturn(pTask, VERR_INVALID_POINTER);
89
90 HRESULT rc = pTask->q_ptr->run();
91
92 pTask->pProgress->notifyComplete(rc);
93
94 pTask->q_ptr->destroy();
95
96 return VINF_SUCCESS;
97 }
98
99 /* Private helper methods */
100
101 /* MachineCloneVM::start helper: */
102 HRESULT createMachineList(const ComPtr<ISnapshot> &pSnapshot, RTCList< ComObjPtr<Machine> > &machineList) const;
103 inline void updateProgressStats(MEDIUMTASKCHAIN &mtc, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight) const;
104 inline HRESULT addSaveState(const ComObjPtr<Machine> &machine, ULONG &uCount, ULONG &uTotalWeight);
105 inline HRESULT queryBaseName(const ComPtr<IMedium> &pMedium, Utf8Str &strBaseName) const;
106 HRESULT queryMediasForMachineState(const RTCList<ComObjPtr<Machine> > &machineList, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight);
107 HRESULT queryMediasForMachineAndChildStates(const RTCList<ComObjPtr<Machine> > &machineList, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight);
108 HRESULT queryMediasForAllStates(const RTCList<ComObjPtr<Machine> > &machineList, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight);
109
110 /* MachineCloneVM::run helper: */
111 bool findSnapshot(const settings::SnapshotsList &snl, const Guid &id, settings::Snapshot &sn) const;
112 void updateMACAddresses(settings::NetworkAdaptersList &nwl) const;
113 void updateMACAddresses(settings::SnapshotsList &sl) const;
114 void updateStorageLists(settings::StorageControllersList &sc, const Bstr &bstrOldId, const Bstr &bstrNewId) const;
115 void updateSnapshotStorageLists(settings::SnapshotsList &sl, const Bstr &bstrOldId, const Bstr &bstrNewId) const;
116 void updateStateFile(settings::SnapshotsList &snl, const Guid &id, const Utf8Str &strFile) const;
117 HRESULT createDifferencingMedium(const ComObjPtr<Medium> &pParent, const Utf8Str &strSnapshotFolder, RTCList<ComObjPtr<Medium> > &newMedia, ComObjPtr<Medium> *ppDiff) const;
118 static int copyStateFileProgress(unsigned uPercentage, void *pvUser);
119
120 /* Private q and parent pointer */
121 MachineCloneVM *q_ptr;
122 ComObjPtr<Machine> p;
123
124 /* Private helper members */
125 ComObjPtr<Machine> pSrcMachine;
126 ComObjPtr<Machine> pTrgMachine;
127 ComPtr<IMachine> pOldMachineState;
128 ComObjPtr<Progress> pProgress;
129 Guid snapshotId;
130 CloneMode_T mode;
131 RTCList<CloneOptions_T> options;
132 RTCList<MEDIUMTASKCHAIN> llMedias;
133 RTCList<SAVESTATETASK> llSaveStateFiles; /* Snapshot UUID -> File path */
134};
135
136HRESULT MachineCloneVMPrivate::createMachineList(const ComPtr<ISnapshot> &pSnapshot, RTCList< ComObjPtr<Machine> > &machineList) const
137{
138 HRESULT rc = S_OK;
139 Bstr name;
140 rc = pSnapshot->COMGETTER(Name)(name.asOutParam());
141 if (FAILED(rc)) return rc;
142
143 ComPtr<IMachine> pMachine;
144 rc = pSnapshot->COMGETTER(Machine)(pMachine.asOutParam());
145 if (FAILED(rc)) return rc;
146 machineList.append((Machine*)(IMachine*)pMachine);
147
148 SafeIfaceArray<ISnapshot> sfaChilds;
149 rc = pSnapshot->COMGETTER(Children)(ComSafeArrayAsOutParam(sfaChilds));
150 if (FAILED(rc)) return rc;
151 for (size_t i = 0; i < sfaChilds.size(); ++i)
152 {
153 rc = createMachineList(sfaChilds[i], machineList);
154 if (FAILED(rc)) return rc;
155 }
156
157 return rc;
158}
159
160void MachineCloneVMPrivate::updateProgressStats(MEDIUMTASKCHAIN &mtc, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight) const
161{
162 if (fAttachLinked)
163 {
164 /* Implicit diff creation as part of attach is a pretty cheap
165 * operation, and does only need one operation per attachment. */
166 ++uCount;
167 uTotalWeight += 1; /* 1MB per attachment */
168 }
169 else
170 {
171 /* Currently the copying of diff images involves reading at least
172 * the biggest parent in the previous chain. So even if the new
173 * diff image is small in size, it could need some time to create
174 * it. Adding the biggest size in the chain should balance this a
175 * little bit more, i.e. the weight is the sum of the data which
176 * needs to be read and written. */
177 uint64_t uMaxSize = 0;
178 for (size_t e = mtc.chain.size(); e > 0; --e)
179 {
180 MEDIUMTASK &mt = mtc.chain.at(e - 1);
181 mt.uWeight += uMaxSize;
182
183 /* Calculate progress data */
184 ++uCount;
185 uTotalWeight += mt.uWeight;
186
187 /* Save the max size for better weighting of diff image
188 * creation. */
189 uMaxSize = RT_MAX(uMaxSize, mt.uWeight);
190 }
191 }
192}
193
194HRESULT MachineCloneVMPrivate::addSaveState(const ComObjPtr<Machine> &machine, ULONG &uCount, ULONG &uTotalWeight)
195{
196 Bstr bstrSrcSaveStatePath;
197 HRESULT rc = machine->COMGETTER(StateFilePath)(bstrSrcSaveStatePath.asOutParam());
198 if (FAILED(rc)) return rc;
199 if (!bstrSrcSaveStatePath.isEmpty())
200 {
201 SAVESTATETASK sst;
202 sst.snapshotUuid = machine->getSnapshotId();
203 sst.strSaveStateFile = bstrSrcSaveStatePath;
204 uint64_t cbSize;
205 int vrc = RTFileQuerySize(sst.strSaveStateFile.c_str(), &cbSize);
206 if (RT_FAILURE(vrc))
207 return p->setError(VBOX_E_IPRT_ERROR, p->tr("Could not query file size of '%s' (%Rrc)"), sst.strSaveStateFile.c_str(), vrc);
208 /* same rule as above: count both the data which needs to
209 * be read and written */
210 sst.uWeight = 2 * (cbSize + _1M - 1) / _1M;
211 llSaveStateFiles.append(sst);
212 ++uCount;
213 uTotalWeight += sst.uWeight;
214 }
215 return S_OK;
216}
217
218HRESULT MachineCloneVMPrivate::queryBaseName(const ComPtr<IMedium> &pMedium, Utf8Str &strBaseName) const
219{
220 ComPtr<IMedium> pBaseMedium;
221 HRESULT rc = pMedium->COMGETTER(Base)(pBaseMedium.asOutParam());
222 if (FAILED(rc)) return rc;
223 Bstr bstrBaseName;
224 rc = pBaseMedium->COMGETTER(Name)(bstrBaseName.asOutParam());
225 if (FAILED(rc)) return rc;
226 strBaseName = bstrBaseName;
227 return rc;
228}
229
230HRESULT MachineCloneVMPrivate::queryMediasForMachineState(const RTCList<ComObjPtr<Machine> > &machineList, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight)
231{
232 /* This mode is pretty straightforward. We didn't need to know about any
233 * parent/children relationship and therefor simply adding all directly
234 * attached images of the source VM as cloning targets. The IMedium code
235 * take than care to merge any (possibly) existing parents into the new
236 * image. */
237 HRESULT rc = S_OK;
238 for (size_t i = 0; i < machineList.size(); ++i)
239 {
240 const ComObjPtr<Machine> &machine = machineList.at(i);
241 /* If this is the Snapshot Machine we want to clone, we need to
242 * create a new diff file for the new "current state". */
243 const bool fCreateDiffs = (machine == pOldMachineState);
244 /* Add all attachments of the different machines to a worker list. */
245 SafeIfaceArray<IMediumAttachment> sfaAttachments;
246 rc = machine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(sfaAttachments));
247 if (FAILED(rc)) return rc;
248 for (size_t a = 0; a < sfaAttachments.size(); ++a)
249 {
250 const ComPtr<IMediumAttachment> &pAtt = sfaAttachments[a];
251 DeviceType_T type;
252 rc = pAtt->COMGETTER(Type)(&type);
253 if (FAILED(rc)) return rc;
254
255 /* Only harddisk's are of interest. */
256 if (type != DeviceType_HardDisk)
257 continue;
258
259 /* Valid medium attached? */
260 ComPtr<IMedium> pSrcMedium;
261 rc = pAtt->COMGETTER(Medium)(pSrcMedium.asOutParam());
262 if (FAILED(rc)) return rc;
263 if (pSrcMedium.isNull())
264 continue;
265
266 /* Create the medium task chain. In this case it will always
267 * contain one image only. */
268 MEDIUMTASKCHAIN mtc;
269 mtc.fCreateDiffs = fCreateDiffs;
270 mtc.fAttachLinked = fAttachLinked;
271
272 /* Refresh the state so that the file size get read. */
273 MediumState_T e;
274 rc = pSrcMedium->RefreshState(&e);
275 if (FAILED(rc)) return rc;
276 LONG64 lSize;
277 rc = pSrcMedium->COMGETTER(Size)(&lSize);
278 if (FAILED(rc)) return rc;
279
280 MEDIUMTASK mt;
281 mt.uIdx = UINT32_MAX; /* No read/write optimization possible. */
282
283 /* Save the base name. */
284 rc = queryBaseName(pSrcMedium, mt.strBaseName);
285 if (FAILED(rc)) return rc;
286
287 /* Save the current medium, for later cloning. */
288 mt.pMedium = pSrcMedium;
289 if (fAttachLinked)
290 mt.uWeight = 0; /* dummy */
291 else
292 mt.uWeight = (lSize + _1M - 1) / _1M;
293 mtc.chain.append(mt);
294
295 /* Update the progress info. */
296 updateProgressStats(mtc, fAttachLinked, uCount, uTotalWeight);
297 /* Append the list of images which have to be cloned. */
298 llMedias.append(mtc);
299 }
300 /* Add the save state files of this machine if there is one. */
301 rc = addSaveState(machine, uCount, uTotalWeight);
302 if (FAILED(rc)) return rc;
303 }
304
305 return rc;
306}
307
308HRESULT MachineCloneVMPrivate::queryMediasForMachineAndChildStates(const RTCList<ComObjPtr<Machine> > &machineList, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight)
309{
310 /* This is basically a three step approach. First select all medias
311 * directly or indirectly involved in the clone. Second create a histogram
312 * of the usage of all that medias. Third select the medias which are
313 * directly attached or have more than one directly/indirectly used child
314 * in the new clone. Step one and two are done in the first loop.
315 *
316 * Example of the histogram counts after going through 3 attachments from
317 * bottom to top:
318 *
319 * 3
320 * |
321 * -> 3
322 * / \
323 * 2 1 <-
324 * /
325 * -> 2
326 * / \
327 * -> 1 1
328 * \
329 * 1 <-
330 *
331 * Whenever the histogram count is changing compared to the previous one we
332 * need to include that image in the cloning step (Marked with <-). If we
333 * start at zero even the directly attached images are automatically
334 * included.
335 *
336 * Note: This still leads to media chains which can have the same medium
337 * included. This case is handled in "run" and therefor not critical, but
338 * it leads to wrong progress infos which isn't nice. */
339
340 HRESULT rc = S_OK;
341 std::map<ComPtr<IMedium>, uint32_t> mediaHist; /* Our usage histogram for the medias */
342 for (size_t i = 0; i < machineList.size(); ++i)
343 {
344 const ComObjPtr<Machine> &machine = machineList.at(i);
345 /* If this is the Snapshot Machine we want to clone, we need to
346 * create a new diff file for the new "current state". */
347 const bool fCreateDiffs = (machine == pOldMachineState);
348 /* Add all attachments (and their parents) of the different
349 * machines to a worker list. */
350 SafeIfaceArray<IMediumAttachment> sfaAttachments;
351 rc = machine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(sfaAttachments));
352 if (FAILED(rc)) return rc;
353 for (size_t a = 0; a < sfaAttachments.size(); ++a)
354 {
355 const ComPtr<IMediumAttachment> &pAtt = sfaAttachments[a];
356 DeviceType_T type;
357 rc = pAtt->COMGETTER(Type)(&type);
358 if (FAILED(rc)) return rc;
359
360 /* Only harddisk's are of interest. */
361 if (type != DeviceType_HardDisk)
362 continue;
363
364 /* Valid medium attached? */
365 ComPtr<IMedium> pSrcMedium;
366 rc = pAtt->COMGETTER(Medium)(pSrcMedium.asOutParam());
367 if (FAILED(rc)) return rc;
368
369 if (pSrcMedium.isNull())
370 continue;
371
372 MEDIUMTASKCHAIN mtc;
373 mtc.fCreateDiffs = fCreateDiffs;
374 mtc.fAttachLinked = fAttachLinked;
375
376 while (!pSrcMedium.isNull())
377 {
378 /* Build a histogram of used medias and the parent chain. */
379 ++mediaHist[pSrcMedium];
380
381 /* Refresh the state so that the file size get read. */
382 MediumState_T e;
383 rc = pSrcMedium->RefreshState(&e);
384 if (FAILED(rc)) return rc;
385 LONG64 lSize;
386 rc = pSrcMedium->COMGETTER(Size)(&lSize);
387 if (FAILED(rc)) return rc;
388
389 MEDIUMTASK mt;
390 mt.uIdx = UINT32_MAX;
391 mt.pMedium = pSrcMedium;
392 mt.uWeight = (lSize + _1M - 1) / _1M;
393 mtc.chain.append(mt);
394
395 /* Query next parent. */
396 rc = pSrcMedium->COMGETTER(Parent)(pSrcMedium.asOutParam());
397 if (FAILED(rc)) return rc;
398 }
399
400 llMedias.append(mtc);
401 }
402 /* Add the save state files of this machine if there is one. */
403 rc = addSaveState(machine, uCount, uTotalWeight);
404 if (FAILED(rc)) return rc;
405 }
406 /* Build up the index list of the image chain. Unfortunately we can't do
407 * that in the previous loop, cause there we go from child -> parent and
408 * didn't know how many are between. */
409 for (size_t i = 0; i < llMedias.size(); ++i)
410 {
411 uint32_t uIdx = 0;
412 MEDIUMTASKCHAIN &mtc = llMedias.at(i);
413 for (size_t a = mtc.chain.size(); a > 0; --a)
414 mtc.chain[a - 1].uIdx = uIdx++;
415 }
416#ifdef DEBUG_poetzsch
417 /* Print the histogram */
418 std::map<ComPtr<IMedium>, uint32_t>::iterator it;
419 for (it = mediaHist.begin(); it != mediaHist.end(); ++it)
420 {
421 Bstr bstrSrcName;
422 rc = (*it).first->COMGETTER(Name)(bstrSrcName.asOutParam());
423 if (FAILED(rc)) return rc;
424 RTPrintf("%ls: %d\n", bstrSrcName.raw(), (*it).second);
425 }
426#endif
427 /* Go over every medium in the list and check if it either a directly
428 * attached disk or has more than one children. If so it needs to be
429 * replicated. Also we have to make sure that any direct or indirect
430 * children knows of the new parent (which doesn't necessarily mean it
431 * is a direct children in the source chain). */
432 for (size_t i = 0; i < llMedias.size(); ++i)
433 {
434 MEDIUMTASKCHAIN &mtc = llMedias.at(i);
435 RTCList<MEDIUMTASK> newChain;
436 uint32_t used = 0;
437 for (size_t a = 0; a < mtc.chain.size(); ++a)
438 {
439 const MEDIUMTASK &mt = mtc.chain.at(a);
440 uint32_t hist = mediaHist[mt.pMedium];
441#ifdef DEBUG_poetzsch
442 Bstr bstrSrcName;
443 rc = mt.pMedium->COMGETTER(Name)(bstrSrcName.asOutParam());
444 if (FAILED(rc)) return rc;
445 RTPrintf("%ls: %d (%d)\n", bstrSrcName.raw(), hist, used);
446#endif
447 /* Check if there is a "step" in the histogram when going the chain
448 * upwards. If so, we need this image, cause there is another branch
449 * from here in the cloned VM. */
450 if (hist > used)
451 {
452 newChain.append(mt);
453 used = hist;
454 }
455 }
456 /* Make sure we always using the old base name as new base name, even
457 * if the base is a differencing image in the source VM (with the UUID
458 * as name). */
459 rc = queryBaseName(newChain.last().pMedium, newChain.last().strBaseName);
460 if (FAILED(rc)) return rc;
461 /* Update the old medium chain with the updated one. */
462 mtc.chain = newChain;
463 /* Update the progress info. */
464 updateProgressStats(mtc, fAttachLinked, uCount, uTotalWeight);
465 }
466
467 return rc;
468}
469
470HRESULT MachineCloneVMPrivate::queryMediasForAllStates(const RTCList<ComObjPtr<Machine> > &machineList, bool fAttachLinked, ULONG &uCount, ULONG &uTotalWeight)
471{
472 /* In this case we create a exact copy of the original VM. This means just
473 * adding all directly and indirectly attached disk images to the worker
474 * list. */
475 HRESULT rc = S_OK;
476 for (size_t i = 0; i < machineList.size(); ++i)
477 {
478 const ComObjPtr<Machine> &machine = machineList.at(i);
479 /* If this is the Snapshot Machine we want to clone, we need to
480 * create a new diff file for the new "current state". */
481 const bool fCreateDiffs = (machine == pOldMachineState);
482 /* Add all attachments (and their parents) of the different
483 * machines to a worker list. */
484 SafeIfaceArray<IMediumAttachment> sfaAttachments;
485 rc = machine->COMGETTER(MediumAttachments)(ComSafeArrayAsOutParam(sfaAttachments));
486 if (FAILED(rc)) return rc;
487 for (size_t a = 0; a < sfaAttachments.size(); ++a)
488 {
489 const ComPtr<IMediumAttachment> &pAtt = sfaAttachments[a];
490 DeviceType_T type;
491 rc = pAtt->COMGETTER(Type)(&type);
492 if (FAILED(rc)) return rc;
493
494 /* Only harddisk's are of interest. */
495 if (type != DeviceType_HardDisk)
496 continue;
497
498 /* Valid medium attached? */
499 ComPtr<IMedium> pSrcMedium;
500 rc = pAtt->COMGETTER(Medium)(pSrcMedium.asOutParam());
501 if (FAILED(rc)) return rc;
502 if (pSrcMedium.isNull())
503 continue;
504
505 /* Build up a child->parent list of this attachment. (Note: we are
506 * not interested of any child's not attached to this VM. So this
507 * will not create a full copy of the base/child relationship.) */
508 MEDIUMTASKCHAIN mtc;
509 mtc.fCreateDiffs = fCreateDiffs;
510 mtc.fAttachLinked = fAttachLinked;
511
512 while (!pSrcMedium.isNull())
513 {
514 /* Refresh the state so that the file size get read. */
515 MediumState_T e;
516 rc = pSrcMedium->RefreshState(&e);
517 if (FAILED(rc)) return rc;
518 LONG64 lSize;
519 rc = pSrcMedium->COMGETTER(Size)(&lSize);
520 if (FAILED(rc)) return rc;
521
522 /* Save the current medium, for later cloning. */
523 MEDIUMTASK mt;
524 mt.uIdx = UINT32_MAX;
525 mt.pMedium = pSrcMedium;
526 mt.uWeight = (lSize + _1M - 1) / _1M;
527 mtc.chain.append(mt);
528
529 /* Query next parent. */
530 rc = pSrcMedium->COMGETTER(Parent)(pSrcMedium.asOutParam());
531 if (FAILED(rc)) return rc;
532 }
533 /* Update the progress info. */
534 updateProgressStats(mtc, fAttachLinked, uCount, uTotalWeight);
535 /* Append the list of images which have to be cloned. */
536 llMedias.append(mtc);
537 }
538 /* Add the save state files of this machine if there is one. */
539 rc = addSaveState(machine, uCount, uTotalWeight);
540 if (FAILED(rc)) return rc;
541 }
542 /* Build up the index list of the image chain. Unfortunately we can't do
543 * that in the previous loop, cause there we go from child -> parent and
544 * didn't know how many are between. */
545 for (size_t i = 0; i < llMedias.size(); ++i)
546 {
547 uint32_t uIdx = 0;
548 MEDIUMTASKCHAIN &mtc = llMedias.at(i);
549 for (size_t a = mtc.chain.size(); a > 0; --a)
550 mtc.chain[a - 1].uIdx = uIdx++;
551 }
552
553 return rc;
554}
555
556bool MachineCloneVMPrivate::findSnapshot(const settings::SnapshotsList &snl, const Guid &id, settings::Snapshot &sn) const
557{
558 settings::SnapshotsList::const_iterator it;
559 for (it = snl.begin(); it != snl.end(); ++it)
560 {
561 if (it->uuid == id)
562 {
563 sn = (*it);
564 return true;
565 }
566 else if (!it->llChildSnapshots.empty())
567 {
568 if (findSnapshot(it->llChildSnapshots, id, sn))
569 return true;
570 }
571 }
572 return false;
573}
574
575void MachineCloneVMPrivate::updateMACAddresses(settings::NetworkAdaptersList &nwl) const
576{
577 const bool fNotNAT = options.contains(CloneOptions_KeepNATMACs);
578 settings::NetworkAdaptersList::iterator it;
579 for (it = nwl.begin(); it != nwl.end(); ++it)
580 {
581 if ( fNotNAT
582 && it->mode == NetworkAttachmentType_NAT)
583 continue;
584 Host::generateMACAddress(it->strMACAddress);
585 }
586}
587
588void MachineCloneVMPrivate::updateMACAddresses(settings::SnapshotsList &sl) const
589{
590 settings::SnapshotsList::iterator it;
591 for (it = sl.begin(); it != sl.end(); ++it)
592 {
593 updateMACAddresses(it->hardware.llNetworkAdapters);
594 if (!it->llChildSnapshots.empty())
595 updateMACAddresses(it->llChildSnapshots);
596 }
597}
598
599void MachineCloneVMPrivate::updateStorageLists(settings::StorageControllersList &sc, const Bstr &bstrOldId, const Bstr &bstrNewId) const
600{
601 settings::StorageControllersList::iterator it3;
602 for (it3 = sc.begin();
603 it3 != sc.end();
604 ++it3)
605 {
606 settings::AttachedDevicesList &llAttachments = it3->llAttachedDevices;
607 settings::AttachedDevicesList::iterator it4;
608 for (it4 = llAttachments.begin();
609 it4 != llAttachments.end();
610 ++it4)
611 {
612 if ( it4->deviceType == DeviceType_HardDisk
613 && it4->uuid == bstrOldId)
614 {
615 it4->uuid = bstrNewId;
616 }
617 }
618 }
619}
620
621void MachineCloneVMPrivate::updateSnapshotStorageLists(settings::SnapshotsList &sl, const Bstr &bstrOldId, const Bstr &bstrNewId) const
622{
623 settings::SnapshotsList::iterator it;
624 for ( it = sl.begin();
625 it != sl.end();
626 ++it)
627 {
628 updateStorageLists(it->storage.llStorageControllers, bstrOldId, bstrNewId);
629 if (!it->llChildSnapshots.empty())
630 updateSnapshotStorageLists(it->llChildSnapshots, bstrOldId, bstrNewId);
631 }
632}
633
634void MachineCloneVMPrivate::updateStateFile(settings::SnapshotsList &snl, const Guid &id, const Utf8Str &strFile) const
635{
636 settings::SnapshotsList::iterator it;
637 for (it = snl.begin(); it != snl.end(); ++it)
638 {
639 if (it->uuid == id)
640 it->strStateFile = strFile;
641 else if (!it->llChildSnapshots.empty())
642 updateStateFile(it->llChildSnapshots, id, strFile);
643 }
644}
645
646HRESULT MachineCloneVMPrivate::createDifferencingMedium(const ComObjPtr<Medium> &pParent, const Utf8Str &strSnapshotFolder, RTCList<ComObjPtr<Medium> > &newMedia, ComObjPtr<Medium> *ppDiff) const
647{
648 HRESULT rc = S_OK;
649 try
650 {
651 // check validity of parent object
652 {
653 AutoReadLock alock(pParent COMMA_LOCKVAL_SRC_POS);
654 Bstr bstrSrcId;
655 rc = pParent->COMGETTER(Id)(bstrSrcId.asOutParam());
656 if (FAILED(rc)) throw rc;
657 }
658 ComObjPtr<Medium> diff;
659 diff.createObject();
660 rc = diff->init(p->getVirtualBox(),
661 pParent->getPreferredDiffFormat(),
662 Utf8StrFmt("%s%c", strSnapshotFolder.c_str(), RTPATH_DELIMITER),
663 Guid::Empty, /* empty media registry */
664 NULL); /* pllRegistriesThatNeedSaving */
665 if (FAILED(rc)) throw rc;
666
667 MediumLockList *pMediumLockList(new MediumLockList());
668 rc = diff->createMediumLockList(true /* fFailIfInaccessible */,
669 true /* fMediumLockWrite */,
670 pParent,
671 *pMediumLockList);
672 if (FAILED(rc)) throw rc;
673 rc = pMediumLockList->Lock();
674 if (FAILED(rc)) throw rc;
675
676 /* this already registers the new diff image */
677 rc = pParent->createDiffStorage(diff, MediumVariant_Standard,
678 pMediumLockList,
679 NULL /* aProgress */,
680 true /* aWait */,
681 NULL); // pllRegistriesThatNeedSaving
682 delete pMediumLockList;
683 if (FAILED(rc)) throw rc;
684 /* Remember created medium. */
685 newMedia.append(diff);
686 *ppDiff = diff;
687 }
688 catch (HRESULT rc2)
689 {
690 rc = rc2;
691 }
692 catch (...)
693 {
694 rc = VirtualBox::handleUnexpectedExceptions(RT_SRC_POS);
695 }
696
697 return rc;
698}
699
700/* static */
701int MachineCloneVMPrivate::copyStateFileProgress(unsigned uPercentage, void *pvUser)
702{
703 ComObjPtr<Progress> pProgress = *static_cast< ComObjPtr<Progress>* >(pvUser);
704
705 BOOL fCanceled = false;
706 HRESULT rc = pProgress->COMGETTER(Canceled)(&fCanceled);
707 if (FAILED(rc)) return VERR_GENERAL_FAILURE;
708 /* If canceled by the user tell it to the copy operation. */
709 if (fCanceled) return VERR_CANCELLED;
710 /* Set the new process. */
711 rc = pProgress->SetCurrentOperationProgress(uPercentage);
712 if (FAILED(rc)) return VERR_GENERAL_FAILURE;
713
714 return VINF_SUCCESS;
715}
716
717// The public class
718/////////////////////////////////////////////////////////////////////////////
719
720MachineCloneVM::MachineCloneVM(ComObjPtr<Machine> pSrcMachine, ComObjPtr<Machine> pTrgMachine, CloneMode_T mode, const RTCList<CloneOptions_T> &opts)
721 : d_ptr(new MachineCloneVMPrivate(this, pSrcMachine, pTrgMachine, mode, opts))
722{
723}
724
725MachineCloneVM::~MachineCloneVM()
726{
727 delete d_ptr;
728}
729
730HRESULT MachineCloneVM::start(IProgress **pProgress)
731{
732 DPTR(MachineCloneVM);
733 ComObjPtr<Machine> &p = d->p;
734
735 HRESULT rc;
736 try
737 {
738 /** @todo r=klaus this code cannot deal with someone crazy specifying
739 * IMachine corresponding to a mutable machine as d->pSrcMachine */
740 if (d->pSrcMachine->isSessionMachine())
741 throw p->setError(E_INVALIDARG, "The source machine is mutable");
742
743 /* Handle the special case that someone is requesting a _full_ clone
744 * with all snapshots (and the current state), but uses a snapshot
745 * machine (and not the current one) as source machine. In this case we
746 * just replace the source (snapshot) machine with the current machine. */
747 if ( d->mode == CloneMode_AllStates
748 && d->pSrcMachine->isSnapshotMachine())
749 {
750 Bstr bstrSrcMachineId;
751 rc = d->pSrcMachine->COMGETTER(Id)(bstrSrcMachineId.asOutParam());
752 if (FAILED(rc)) throw rc;
753 ComPtr<IMachine> newSrcMachine;
754 rc = d->pSrcMachine->getVirtualBox()->FindMachine(bstrSrcMachineId.raw(), newSrcMachine.asOutParam());
755 if (FAILED(rc)) throw rc;
756 d->pSrcMachine = (Machine*)(IMachine*)newSrcMachine;
757 }
758 bool fSubtreeIncludesCurrent = false;
759 ComObjPtr<Machine> pCurrState;
760 if (d->mode == CloneMode_MachineAndChildStates)
761 {
762 if (d->pSrcMachine->isSnapshotMachine())
763 {
764 /* find machine object for current snapshot of current state */
765 Bstr bstrSrcMachineId;
766 rc = d->pSrcMachine->COMGETTER(Id)(bstrSrcMachineId.asOutParam());
767 if (FAILED(rc)) throw rc;
768 ComPtr<IMachine> pCurr;
769 rc = d->pSrcMachine->getVirtualBox()->FindMachine(bstrSrcMachineId.raw(), pCurr.asOutParam());
770 if (FAILED(rc)) throw rc;
771 if (pCurr.isNull())
772 throw p->setError(VBOX_E_OBJECT_NOT_FOUND);
773 pCurrState = (Machine *)(IMachine *)pCurr;
774 ComPtr<ISnapshot> pSnapshot;
775 rc = pCurrState->COMGETTER(CurrentSnapshot)(pSnapshot.asOutParam());
776 if (FAILED(rc)) throw rc;
777 if (pSnapshot.isNull())
778 throw p->setError(VBOX_E_OBJECT_NOT_FOUND);
779 ComPtr<IMachine> pCurrSnapMachine;
780 rc = pSnapshot->COMGETTER(Machine)(pCurrSnapMachine.asOutParam());
781 if (FAILED(rc)) throw rc;
782 if (pCurrSnapMachine.isNull())
783 throw p->setError(VBOX_E_OBJECT_NOT_FOUND);
784
785 /* now check if there is a parent chain which leads to the
786 * snapshot machine defining the subtree. */
787 while (!pSnapshot.isNull())
788 {
789 ComPtr<IMachine> pSnapMachine;
790 rc = pSnapshot->COMGETTER(Machine)(pSnapMachine.asOutParam());
791 if (FAILED(rc)) throw rc;
792 if (pSnapMachine.isNull())
793 throw p->setError(VBOX_E_OBJECT_NOT_FOUND);
794 if (pSnapMachine == d->pSrcMachine)
795 {
796 fSubtreeIncludesCurrent = true;
797 break;
798 }
799 rc = pSnapshot->COMGETTER(Parent)(pSnapshot.asOutParam());
800 if (FAILED(rc)) throw rc;
801 }
802 }
803 else
804 {
805 /* If the subtree is only the Current State simply use the
806 * 'machine' case for cloning. It is easier to understand. */
807 d->mode = CloneMode_MachineState;
808 }
809 }
810
811 /* Lock the target machine early (so nobody mess around with it in the meantime). */
812 AutoWriteLock trgLock(d->pTrgMachine COMMA_LOCKVAL_SRC_POS);
813
814 if (d->pSrcMachine->isSnapshotMachine())
815 d->snapshotId = d->pSrcMachine->getSnapshotId();
816
817 /* Add the current machine and all snapshot machines below this machine
818 * in a list for further processing. */
819 RTCList< ComObjPtr<Machine> > machineList;
820
821 /* Include current state? */
822 if ( d->mode == CloneMode_MachineState
823 || d->mode == CloneMode_AllStates)
824 machineList.append(d->pSrcMachine);
825 /* Should be done a depth copy with all child snapshots? */
826 if ( d->mode == CloneMode_MachineAndChildStates
827 || d->mode == CloneMode_AllStates)
828 {
829 ULONG cSnapshots = 0;
830 rc = d->pSrcMachine->COMGETTER(SnapshotCount)(&cSnapshots);
831 if (FAILED(rc)) throw rc;
832 if (cSnapshots > 0)
833 {
834 Utf8Str id;
835 if (d->mode == CloneMode_MachineAndChildStates)
836 id = d->snapshotId.toString();
837 ComPtr<ISnapshot> pSnapshot;
838 rc = d->pSrcMachine->FindSnapshot(Bstr(id).raw(), pSnapshot.asOutParam());
839 if (FAILED(rc)) throw rc;
840 rc = d->createMachineList(pSnapshot, machineList);
841 if (FAILED(rc)) throw rc;
842 if (d->mode == CloneMode_MachineAndChildStates)
843 {
844 if (fSubtreeIncludesCurrent)
845 {
846 if (pCurrState.isNull())
847 throw p->setError(VBOX_E_OBJECT_NOT_FOUND);
848 machineList.append(pCurrState);
849 }
850 else
851 {
852 rc = pSnapshot->COMGETTER(Machine)(d->pOldMachineState.asOutParam());
853 if (FAILED(rc)) throw rc;
854 }
855 }
856 }
857 }
858
859 /* We have different approaches for getting the medias which needs to
860 * be replicated based on the clone mode the user requested (this is
861 * mostly about the full clone mode).
862 * MachineState:
863 * - Only the images which are directly attached to an source VM will
864 * be cloned. Any parent disks in the original chain will be merged
865 * into the final cloned disk.
866 * MachineAndChildStates:
867 * - In this case we search for images which have more than one
868 * children in the cloned VM or are directly attached to the new VM.
869 * All others will be merged into the remaining images which are
870 * cloned.
871 * This case is the most complicated one and needs several iterations
872 * to make sure we are only cloning images which are really
873 * necessary.
874 * AllStates:
875 * - All disks which are directly or indirectly attached to the
876 * original VM are cloned.
877 *
878 * Note: If you change something generic in one of the methods its
879 * likely that it need to be changed in the others as well! */
880 ULONG uCount = 2; /* One init task and the machine creation. */
881 ULONG uTotalWeight = 2; /* The init task and the machine creation is worth one. */
882 bool fAttachLinked = d->options.contains(CloneOptions_Link); /* Linked clones requested? */
883 switch (d->mode)
884 {
885 case CloneMode_MachineState: d->queryMediasForMachineState(machineList, fAttachLinked, uCount, uTotalWeight); break;
886 case CloneMode_MachineAndChildStates: d->queryMediasForMachineAndChildStates(machineList, fAttachLinked, uCount, uTotalWeight); break;
887 case CloneMode_AllStates: d->queryMediasForAllStates(machineList, fAttachLinked, uCount, uTotalWeight); break;
888 }
889
890 /* Now create the progress project, so the user knows whats going on. */
891 rc = d->pProgress.createObject();
892 if (FAILED(rc)) throw rc;
893 rc = d->pProgress->init(p->getVirtualBox(),
894 static_cast<IMachine*>(d->pSrcMachine) /* aInitiator */,
895 Bstr(p->tr("Cloning Machine")).raw(),
896 true /* fCancellable */,
897 uCount,
898 uTotalWeight,
899 Bstr(p->tr("Initialize Cloning")).raw(),
900 1);
901 if (FAILED(rc)) throw rc;
902
903 int vrc = d->startWorker();
904
905 if (RT_FAILURE(vrc))
906 p->setError(VBOX_E_IPRT_ERROR, "Could not create machine clone thread (%Rrc)", vrc);
907 }
908 catch (HRESULT rc2)
909 {
910 rc = rc2;
911 }
912
913 if (SUCCEEDED(rc))
914 d->pProgress.queryInterfaceTo(pProgress);
915
916 return rc;
917}
918
919HRESULT MachineCloneVM::run()
920{
921 DPTR(MachineCloneVM);
922 ComObjPtr<Machine> &p = d->p;
923
924 AutoCaller autoCaller(p);
925 if (FAILED(autoCaller.rc())) return autoCaller.rc();
926
927 AutoReadLock srcLock(p COMMA_LOCKVAL_SRC_POS);
928 AutoWriteLock trgLock(d->pTrgMachine COMMA_LOCKVAL_SRC_POS);
929
930 HRESULT rc = S_OK;
931
932 /*
933 * Todo:
934 * - What about log files?
935 */
936
937 /* Where should all the media go? */
938 Utf8Str strTrgSnapshotFolder;
939 Utf8Str strTrgMachineFolder = d->pTrgMachine->getSettingsFileFull();
940 strTrgMachineFolder.stripFilename();
941
942 RTCList<ComObjPtr<Medium> > newMedia; /* All created images */
943 RTCList<Utf8Str> newFiles; /* All extra created files (save states, ...) */
944 try
945 {
946 /* Copy all the configuration from this machine to an empty
947 * configuration dataset. */
948 settings::MachineConfigFile trgMCF = *d->pSrcMachine->mData->pMachineConfigFile;
949
950 /* Reset media registry. */
951 trgMCF.mediaRegistry.llHardDisks.clear();
952 /* If we got a valid snapshot id, replace the hardware/storage section
953 * with the stuff from the snapshot. */
954 settings::Snapshot sn;
955 if (!d->snapshotId.isEmpty())
956 if (!d->findSnapshot(trgMCF.llFirstSnapshot, d->snapshotId, sn))
957 throw p->setError(E_FAIL,
958 p->tr("Could not find data to snapshots '%s'"), d->snapshotId.toString().c_str());
959
960
961
962 if (d->mode == CloneMode_MachineState)
963 {
964 if (!sn.uuid.isEmpty())
965 {
966 trgMCF.hardwareMachine = sn.hardware;
967 trgMCF.storageMachine = sn.storage;
968 }
969
970 /* Remove any hint on snapshots. */
971 trgMCF.llFirstSnapshot.clear();
972 trgMCF.uuidCurrentSnapshot.clear();
973 }
974 else if ( d->mode == CloneMode_MachineAndChildStates
975 && !sn.uuid.isEmpty())
976 {
977 if (!d->pOldMachineState.isNull())
978 {
979 /* Copy the snapshot data to the current machine. */
980 trgMCF.hardwareMachine = sn.hardware;
981 trgMCF.storageMachine = sn.storage;
982
983 /* Current state is under root snapshot. */
984 trgMCF.uuidCurrentSnapshot = sn.uuid;
985 /* There will be created a new differencing image based on this
986 * snapshot. So reset the modified state. */
987 trgMCF.fCurrentStateModified = false;
988 }
989 /* The snapshot will be the root one. */
990 trgMCF.llFirstSnapshot.clear();
991 trgMCF.llFirstSnapshot.push_back(sn);
992 }
993
994 /* Generate new MAC addresses for all machines when not forbidden. */
995 if (!d->options.contains(CloneOptions_KeepAllMACs))
996 {
997 d->updateMACAddresses(trgMCF.hardwareMachine.llNetworkAdapters);
998 d->updateMACAddresses(trgMCF.llFirstSnapshot);
999 }
1000
1001 /* When the current snapshot folder is absolute we reset it to the
1002 * default relative folder. */
1003 if (RTPathStartsWithRoot(trgMCF.machineUserData.strSnapshotFolder.c_str()))
1004 trgMCF.machineUserData.strSnapshotFolder = "Snapshots";
1005 trgMCF.strStateFile = "";
1006 /* Set the new name. */
1007 const Utf8Str strOldVMName = trgMCF.machineUserData.strName;
1008 trgMCF.machineUserData.strName = d->pTrgMachine->mUserData->s.strName;
1009 trgMCF.uuid = d->pTrgMachine->mData->mUuid;
1010
1011 Bstr bstrSrcSnapshotFolder;
1012 rc = d->pSrcMachine->COMGETTER(SnapshotFolder)(bstrSrcSnapshotFolder.asOutParam());
1013 if (FAILED(rc)) throw rc;
1014 /* The absolute name of the snapshot folder. */
1015 strTrgSnapshotFolder = Utf8StrFmt("%s%c%s", strTrgMachineFolder.c_str(), RTPATH_DELIMITER, trgMCF.machineUserData.strSnapshotFolder.c_str());
1016
1017 /* Should we rename the disk names. */
1018 bool fKeepDiskNames = d->options.contains(CloneOptions_KeepDiskNames);
1019
1020 /* We need to create a map with the already created medias. This is
1021 * necessary, cause different snapshots could have the same
1022 * parents/parent chain. If a medium is in this map already, it isn't
1023 * cloned a second time, but simply used. */
1024 typedef std::map<Utf8Str, ComObjPtr<Medium> > TStrMediumMap;
1025 typedef std::pair<Utf8Str, ComObjPtr<Medium> > TStrMediumPair;
1026 TStrMediumMap map;
1027 GuidList llRegistriesThatNeedSaving;
1028 size_t cDisks = 0;
1029 for (size_t i = 0; i < d->llMedias.size(); ++i)
1030 {
1031 const MEDIUMTASKCHAIN &mtc = d->llMedias.at(i);
1032 ComObjPtr<Medium> pNewParent;
1033 uint32_t uSrcParentIdx = UINT32_MAX;
1034 uint32_t uTrgParentIdx = UINT32_MAX;
1035 for (size_t a = mtc.chain.size(); a > 0; --a)
1036 {
1037 const MEDIUMTASK &mt = mtc.chain.at(a - 1);
1038 ComPtr<IMedium> pMedium = mt.pMedium;
1039
1040 Bstr bstrSrcName;
1041 rc = pMedium->COMGETTER(Name)(bstrSrcName.asOutParam());
1042 if (FAILED(rc)) throw rc;
1043
1044 rc = d->pProgress->SetNextOperation(BstrFmt(p->tr("Cloning Disk '%ls' ..."), bstrSrcName.raw()).raw(), mt.uWeight);
1045 if (FAILED(rc)) throw rc;
1046
1047 Bstr bstrSrcId;
1048 rc = pMedium->COMGETTER(Id)(bstrSrcId.asOutParam());
1049 if (FAILED(rc)) throw rc;
1050
1051 if (mtc.fAttachLinked)
1052 {
1053 IMedium *pTmp = pMedium;
1054 ComObjPtr<Medium> pLMedium = static_cast<Medium*>(pTmp);
1055 if (pLMedium.isNull())
1056 throw p->setError(VBOX_E_OBJECT_NOT_FOUND);
1057 ComObjPtr<Medium> pBase = pLMedium->getBase();
1058 if (pBase->isReadOnly())
1059 {
1060 ComObjPtr<Medium> pDiff;
1061 /* create the diff under the snapshot medium */
1062 rc = d->createDifferencingMedium(pLMedium, strTrgSnapshotFolder,
1063 newMedia, &pDiff);
1064 if (FAILED(rc)) throw rc;
1065 map.insert(TStrMediumPair(Utf8Str(bstrSrcId), pDiff));
1066 /* diff image has to be used... */
1067 pNewParent = pDiff;
1068 }
1069 else
1070 {
1071 /* Attach the medium directly, as its type is not
1072 * subject to diff creation. */
1073 newMedia.append(pLMedium);
1074 map.insert(TStrMediumPair(Utf8Str(bstrSrcId), pLMedium));
1075 pNewParent = pLMedium;
1076 }
1077 }
1078 else
1079 {
1080 /* Is a clone already there? */
1081 TStrMediumMap::iterator it = map.find(Utf8Str(bstrSrcId));
1082 if (it != map.end())
1083 pNewParent = it->second;
1084 else
1085 {
1086 ComPtr<IMediumFormat> pSrcFormat;
1087 rc = pMedium->COMGETTER(MediumFormat)(pSrcFormat.asOutParam());
1088 ULONG uSrcCaps = 0;
1089 rc = pSrcFormat->COMGETTER(Capabilities)(&uSrcCaps);
1090 if (FAILED(rc)) throw rc;
1091
1092 /* Default format? */
1093 Utf8Str strDefaultFormat;
1094 p->mParent->getDefaultHardDiskFormat(strDefaultFormat);
1095 Bstr bstrSrcFormat(strDefaultFormat);
1096 ULONG srcVar = MediumVariant_Standard;
1097 /* Is the source file based? */
1098 if ((uSrcCaps & MediumFormatCapabilities_File) == MediumFormatCapabilities_File)
1099 {
1100 /* Yes, just use the source format. Otherwise the defaults
1101 * will be used. */
1102 rc = pMedium->COMGETTER(Format)(bstrSrcFormat.asOutParam());
1103 if (FAILED(rc)) throw rc;
1104 rc = pMedium->COMGETTER(Variant)(&srcVar);
1105 if (FAILED(rc)) throw rc;
1106 }
1107
1108 Guid newId;
1109 newId.create();
1110 Utf8Str strNewName(bstrSrcName);
1111 if (!fKeepDiskNames)
1112 {
1113 Utf8Str strSrcTest = bstrSrcName;
1114 /* Check if we have to use another name. */
1115 if (!mt.strBaseName.isEmpty())
1116 strSrcTest = mt.strBaseName;
1117 strSrcTest.stripExt();
1118 /* If the old disk name was in {uuid} format we also
1119 * want the new name in this format, but with the
1120 * updated id of course. If the old disk was called
1121 * like the VM name, we change it to the new VM name.
1122 * For all other disks we rename them with this
1123 * template: "new name-disk1.vdi". */
1124 if (strSrcTest == strOldVMName)
1125 strNewName = Utf8StrFmt("%s%s", trgMCF.machineUserData.strName.c_str(), RTPathExt(Utf8Str(bstrSrcName).c_str()));
1126 else if ( strSrcTest.startsWith("{")
1127 && strSrcTest.endsWith("}"))
1128 {
1129 strSrcTest = strSrcTest.substr(1, strSrcTest.length() - 2);
1130 if (isValidGuid(strSrcTest))
1131 strNewName = Utf8StrFmt("%s%s", newId.toStringCurly().c_str(), RTPathExt(strNewName.c_str()));
1132 }
1133 else
1134 strNewName = Utf8StrFmt("%s-disk%d%s", trgMCF.machineUserData.strName.c_str(), ++cDisks, RTPathExt(Utf8Str(bstrSrcName).c_str()));
1135 }
1136
1137 /* Check if this medium comes from the snapshot folder, if
1138 * so, put it there in the cloned machine as well.
1139 * Otherwise it goes to the machine folder. */
1140 Bstr bstrSrcPath;
1141 Utf8Str strFile = Utf8StrFmt("%s%c%s", strTrgMachineFolder.c_str(), RTPATH_DELIMITER, strNewName.c_str());
1142 rc = pMedium->COMGETTER(Location)(bstrSrcPath.asOutParam());
1143 if (FAILED(rc)) throw rc;
1144 if ( !bstrSrcPath.isEmpty()
1145 && RTPathStartsWith(Utf8Str(bstrSrcPath).c_str(), Utf8Str(bstrSrcSnapshotFolder).c_str())
1146 && (fKeepDiskNames || mt.strBaseName.isEmpty()))
1147 strFile = Utf8StrFmt("%s%c%s", strTrgSnapshotFolder.c_str(), RTPATH_DELIMITER, strNewName.c_str());
1148
1149 /* Start creating the clone. */
1150 ComObjPtr<Medium> pTarget;
1151 rc = pTarget.createObject();
1152 if (FAILED(rc)) throw rc;
1153
1154 rc = pTarget->init(p->mParent,
1155 Utf8Str(bstrSrcFormat),
1156 strFile,
1157 Guid::Empty, /* empty media registry */
1158 NULL /* llRegistriesThatNeedSaving */);
1159 if (FAILED(rc)) throw rc;
1160
1161 /* Update the new uuid. */
1162 pTarget->updateId(newId);
1163
1164 srcLock.release();
1165 /* Do the disk cloning. */
1166 ComPtr<IProgress> progress2;
1167
1168 ComObjPtr<Medium> pLMedium = static_cast<Medium*>((IMedium*)pMedium);
1169 rc = pLMedium->cloneToEx(pTarget,
1170 srcVar,
1171 pNewParent,
1172 progress2.asOutParam(),
1173 uSrcParentIdx,
1174 uTrgParentIdx);
1175 if (FAILED(rc)) throw rc;
1176
1177 /* Wait until the async process has finished. */
1178 rc = d->pProgress->WaitForAsyncProgressCompletion(progress2);
1179 srcLock.acquire();
1180 if (FAILED(rc)) throw rc;
1181
1182 /* Check the result of the async process. */
1183 LONG iRc;
1184 rc = progress2->COMGETTER(ResultCode)(&iRc);
1185 if (FAILED(rc)) throw rc;
1186 /* If the thread of the progress object has an error, then
1187 * retrieve the error info from there, or it'll be lost. */
1188 if (FAILED(iRc))
1189 throw p->setError(ProgressErrorInfo(progress2));
1190 /* Remember created medium. */
1191 newMedia.append(pTarget);
1192 /* Get the medium type from the source and set it to the
1193 * new medium. */
1194 MediumType_T type;
1195 rc = pMedium->COMGETTER(Type)(&type);
1196 if (FAILED(rc)) throw rc;
1197 rc = pTarget->COMSETTER(Type)(type);
1198 if (FAILED(rc)) throw rc;
1199 map.insert(TStrMediumPair(Utf8Str(bstrSrcId), pTarget));
1200 /* register the new harddisk */
1201 {
1202 AutoWriteLock tlock(p->mParent->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1203 rc = p->mParent->registerMedium(pTarget, &pTarget,
1204 DeviceType_HardDisk,
1205 NULL /* pllRegistriesThatNeedSaving */);
1206 if (FAILED(rc)) throw rc;
1207 }
1208 /* This medium becomes the parent of the next medium in the
1209 * chain. */
1210 pNewParent = pTarget;
1211 }
1212 }
1213 /* Save the current source medium index as the new parent
1214 * medium index. */
1215 uSrcParentIdx = mt.uIdx;
1216 /* Simply increase the target index. */
1217 ++uTrgParentIdx;
1218 }
1219
1220 Bstr bstrSrcId;
1221 rc = mtc.chain.first().pMedium->COMGETTER(Id)(bstrSrcId.asOutParam());
1222 if (FAILED(rc)) throw rc;
1223 Bstr bstrTrgId;
1224 rc = pNewParent->COMGETTER(Id)(bstrTrgId.asOutParam());
1225 if (FAILED(rc)) throw rc;
1226 /* update snapshot configuration */
1227 d->updateSnapshotStorageLists(trgMCF.llFirstSnapshot, bstrSrcId, bstrTrgId);
1228
1229 /* create new 'Current State' diff for caller defined place */
1230 if (mtc.fCreateDiffs)
1231 {
1232 const MEDIUMTASK &mt = mtc.chain.first();
1233 ComObjPtr<Medium> pLMedium = static_cast<Medium*>((IMedium*)mt.pMedium);
1234 if (pLMedium.isNull())
1235 throw p->setError(VBOX_E_OBJECT_NOT_FOUND);
1236 ComObjPtr<Medium> pBase = pLMedium->getBase();
1237 if (pBase->isReadOnly())
1238 {
1239 ComObjPtr<Medium> pDiff;
1240 rc = d->createDifferencingMedium(pNewParent, strTrgSnapshotFolder,
1241 newMedia, &pDiff);
1242 if (FAILED(rc)) throw rc;
1243 /* diff image has to be used... */
1244 pNewParent = pDiff;
1245 }
1246 else
1247 {
1248 /* Attach the medium directly, as its type is not
1249 * subject to diff creation. */
1250 newMedia.append(pNewParent);
1251 }
1252
1253 rc = pNewParent->COMGETTER(Id)(bstrTrgId.asOutParam());
1254 if (FAILED(rc)) throw rc;
1255 }
1256 /* update 'Current State' configuration */
1257 d->updateStorageLists(trgMCF.storageMachine.llStorageControllers, bstrSrcId, bstrTrgId);
1258 }
1259 /* Make sure all disks know of the new machine uuid. We do this last to
1260 * be able to change the medium type above. */
1261 for (size_t i = newMedia.size(); i > 0; --i)
1262 {
1263 const ComObjPtr<Medium> &pMedium = newMedia.at(i - 1);
1264 AutoCaller mac(pMedium);
1265 if (FAILED(mac.rc())) throw mac.rc();
1266 AutoWriteLock mlock(pMedium COMMA_LOCKVAL_SRC_POS);
1267 Guid uuid = d->pTrgMachine->mData->mUuid;
1268 if (d->options.contains(CloneOptions_Link))
1269 {
1270 ComObjPtr<Medium> pParent = pMedium->getParent();
1271 mlock.release();
1272 if (!pParent.isNull())
1273 {
1274 AutoCaller mac2(pParent);
1275 if (FAILED(mac2.rc())) throw mac2.rc();
1276 AutoReadLock mlock2(pParent COMMA_LOCKVAL_SRC_POS);
1277 if (pParent->getFirstRegistryMachineId(uuid))
1278 VirtualBox::addGuidToListUniquely(llRegistriesThatNeedSaving, uuid);
1279 }
1280 mlock.acquire();
1281 }
1282 pMedium->addRegistry(uuid, false /* fRecurse */);
1283 }
1284 /* Check if a snapshot folder is necessary and if so doesn't already
1285 * exists. */
1286 if ( !d->llSaveStateFiles.isEmpty()
1287 && !RTDirExists(strTrgSnapshotFolder.c_str()))
1288 {
1289 int vrc = RTDirCreateFullPath(strTrgSnapshotFolder.c_str(), 0700);
1290 if (RT_FAILURE(vrc))
1291 throw p->setError(VBOX_E_IPRT_ERROR,
1292 p->tr("Could not create snapshots folder '%s' (%Rrc)"), strTrgSnapshotFolder.c_str(), vrc);
1293 }
1294 /* Clone all save state files. */
1295 for (size_t i = 0; i < d->llSaveStateFiles.size(); ++i)
1296 {
1297 SAVESTATETASK sst = d->llSaveStateFiles.at(i);
1298 const Utf8Str &strTrgSaveState = Utf8StrFmt("%s%c%s", strTrgSnapshotFolder.c_str(), RTPATH_DELIMITER, RTPathFilename(sst.strSaveStateFile.c_str()));
1299
1300 /* Move to next sub-operation. */
1301 rc = d->pProgress->SetNextOperation(BstrFmt(p->tr("Copy save state file '%s' ..."), RTPathFilename(sst.strSaveStateFile.c_str())).raw(), sst.uWeight);
1302 if (FAILED(rc)) throw rc;
1303 /* Copy the file only if it was not copied already. */
1304 if (!newFiles.contains(strTrgSaveState.c_str()))
1305 {
1306 int vrc = RTFileCopyEx(sst.strSaveStateFile.c_str(), strTrgSaveState.c_str(), 0, MachineCloneVMPrivate::copyStateFileProgress, &d->pProgress);
1307 if (RT_FAILURE(vrc))
1308 throw p->setError(VBOX_E_IPRT_ERROR,
1309 p->tr("Could not copy state file '%s' to '%s' (%Rrc)"), sst.strSaveStateFile.c_str(), strTrgSaveState.c_str(), vrc);
1310 newFiles.append(strTrgSaveState);
1311 }
1312 /* Update the path in the configuration either for the current
1313 * machine state or the snapshots. */
1314 if (sst.snapshotUuid.isEmpty())
1315 trgMCF.strStateFile = strTrgSaveState;
1316 else
1317 d->updateStateFile(trgMCF.llFirstSnapshot, sst.snapshotUuid, strTrgSaveState);
1318 }
1319
1320 {
1321 rc = d->pProgress->SetNextOperation(BstrFmt(p->tr("Create Machine Clone '%s' ..."), trgMCF.machineUserData.strName.c_str()).raw(), 1);
1322 if (FAILED(rc)) throw rc;
1323 /* After modifying the new machine config, we can copy the stuff
1324 * over to the new machine. The machine have to be mutable for
1325 * this. */
1326 rc = d->pTrgMachine->checkStateDependency(p->MutableStateDep);
1327 if (FAILED(rc)) throw rc;
1328 rc = d->pTrgMachine->loadMachineDataFromSettings(trgMCF,
1329 &d->pTrgMachine->mData->mUuid);
1330 if (FAILED(rc)) throw rc;
1331 /* save all VM data */
1332 bool fNeedsGlobalSaveSettings = false;
1333 rc = d->pTrgMachine->saveSettings(&fNeedsGlobalSaveSettings, Machine::SaveS_Force);
1334 if (FAILED(rc)) throw rc;
1335 /* Release all locks */
1336 trgLock.release();
1337 srcLock.release();
1338 if (fNeedsGlobalSaveSettings)
1339 {
1340 /* save the global settings; for that we should hold only the
1341 * VirtualBox lock */
1342 AutoWriteLock vlock(p->mParent COMMA_LOCKVAL_SRC_POS);
1343 rc = p->mParent->saveSettings();
1344 if (FAILED(rc)) throw rc;
1345 }
1346 }
1347
1348 /* Any additional machines need saving? */
1349 if (!llRegistriesThatNeedSaving.empty())
1350 {
1351 rc = p->mParent->saveRegistries(llRegistriesThatNeedSaving);
1352 if (FAILED(rc)) throw rc;
1353 }
1354 }
1355 catch (HRESULT rc2)
1356 {
1357 rc = rc2;
1358 }
1359 catch (...)
1360 {
1361 rc = VirtualBox::handleUnexpectedExceptions(RT_SRC_POS);
1362 }
1363
1364 MultiResult mrc(rc);
1365 /* Cleanup on failure (CANCEL also) */
1366 if (FAILED(rc))
1367 {
1368 int vrc = VINF_SUCCESS;
1369 /* Delete all created files. */
1370 for (size_t i = 0; i < newFiles.size(); ++i)
1371 {
1372 vrc = RTFileDelete(newFiles.at(i).c_str());
1373 if (RT_FAILURE(vrc))
1374 mrc = p->setError(VBOX_E_IPRT_ERROR, p->tr("Could not delete file '%s' (%Rrc)"), newFiles.at(i).c_str(), vrc);
1375 }
1376 /* Delete all already created medias. (Reverse, cause there could be
1377 * parent->child relations.) */
1378 for (size_t i = newMedia.size(); i > 0; --i)
1379 {
1380 const ComObjPtr<Medium> &pMedium = newMedia.at(i - 1);
1381 mrc = pMedium->deleteStorage(NULL /* aProgress */,
1382 true /* aWait */,
1383 NULL /* llRegistriesThatNeedSaving */);
1384 pMedium->Close();
1385 }
1386 /* Delete the snapshot folder when not empty. */
1387 if (!strTrgSnapshotFolder.isEmpty())
1388 RTDirRemove(strTrgSnapshotFolder.c_str());
1389 /* Delete the machine folder when not empty. */
1390 RTDirRemove(strTrgMachineFolder.c_str());
1391 }
1392
1393 return mrc;
1394}
1395
1396void MachineCloneVM::destroy()
1397{
1398 delete this;
1399}
1400
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette