VirtualBox

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

Last change on this file since 38469 was 38428, checked in by vboxsync, 14 years ago

Main-CloneVM: wrong order

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 57.7 KB
Line 
1/* $Id: MachineImplCloneVM.cpp 38428 2011-08-12 10:21:10Z vboxsync $ */
2/** @file
3 * Implementation of MachineCloneVM
4 */
5
6/*
7 * Copyright (C) 2011 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. 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 Bstr bstrSrcId;
652 rc = pParent->COMGETTER(Id)(bstrSrcId.asOutParam());
653 if (FAILED(rc)) throw rc;
654 ComObjPtr<Medium> diff;
655 diff.createObject();
656 rc = diff->init(p->getVirtualBox(),
657 pParent->getPreferredDiffFormat(),
658 Utf8StrFmt("%s%c", strSnapshotFolder.c_str(), RTPATH_DELIMITER),
659 Guid::Empty, /* empty media registry */
660 NULL); /* pllRegistriesThatNeedSaving */
661 if (FAILED(rc)) throw rc;
662 MediumLockList *pMediumLockList(new MediumLockList());
663 rc = diff->createMediumLockList(true /* fFailIfInaccessible */,
664 true /* fMediumLockWrite */,
665 pParent,
666 *pMediumLockList);
667 if (FAILED(rc)) throw rc;
668 rc = pMediumLockList->Lock();
669 if (FAILED(rc)) throw rc;
670 /* this already registers the new diff image */
671 rc = pParent->createDiffStorage(diff, MediumVariant_Standard,
672 pMediumLockList,
673 NULL /* aProgress */,
674 true /* aWait */,
675 NULL); // pllRegistriesThatNeedSaving
676 delete pMediumLockList;
677 if (FAILED(rc)) throw rc;
678 /* Remember created medium. */
679 newMedia.append(diff);
680 *ppDiff = diff;
681 }
682 catch (HRESULT rc2)
683 {
684 rc = rc2;
685 }
686 catch (...)
687 {
688 rc = VirtualBox::handleUnexpectedExceptions(RT_SRC_POS);
689 }
690
691 return rc;
692}
693
694/* static */
695int MachineCloneVMPrivate::copyStateFileProgress(unsigned uPercentage, void *pvUser)
696{
697 ComObjPtr<Progress> pProgress = *static_cast< ComObjPtr<Progress>* >(pvUser);
698
699 BOOL fCanceled = false;
700 HRESULT rc = pProgress->COMGETTER(Canceled)(&fCanceled);
701 if (FAILED(rc)) return VERR_GENERAL_FAILURE;
702 /* If canceled by the user tell it to the copy operation. */
703 if (fCanceled) return VERR_CANCELLED;
704 /* Set the new process. */
705 rc = pProgress->SetCurrentOperationProgress(uPercentage);
706 if (FAILED(rc)) return VERR_GENERAL_FAILURE;
707
708 return VINF_SUCCESS;
709}
710
711// The public class
712/////////////////////////////////////////////////////////////////////////////
713
714MachineCloneVM::MachineCloneVM(ComObjPtr<Machine> pSrcMachine, ComObjPtr<Machine> pTrgMachine, CloneMode_T mode, const RTCList<CloneOptions_T> &opts)
715 : d_ptr(new MachineCloneVMPrivate(this, pSrcMachine, pTrgMachine, mode, opts))
716{
717}
718
719MachineCloneVM::~MachineCloneVM()
720{
721 delete d_ptr;
722}
723
724HRESULT MachineCloneVM::start(IProgress **pProgress)
725{
726 DPTR(MachineCloneVM);
727 ComObjPtr<Machine> &p = d->p;
728
729 HRESULT rc;
730 try
731 {
732 /** @todo r=klaus this code cannot deal with someone crazy specifying
733 * IMachine corresponding to a mutable machine as d->pSrcMachine */
734 if (d->pSrcMachine->isSessionMachine())
735 throw E_FAIL;
736
737 /* Handle the special case that someone is requesting a _full_ clone
738 * with all snapshots (and the current state), but uses a snapshot
739 * machine (and not the current one) as source machine. In this case we
740 * just replace the source (snapshot) machine with the current machine. */
741 if ( d->mode == CloneMode_AllStates
742 && d->pSrcMachine->isSnapshotMachine())
743 {
744 Bstr bstrSrcMachineId;
745 rc = d->pSrcMachine->COMGETTER(Id)(bstrSrcMachineId.asOutParam());
746 if (FAILED(rc)) throw rc;
747 ComPtr<IMachine> newSrcMachine;
748 rc = d->pSrcMachine->getVirtualBox()->FindMachine(bstrSrcMachineId.raw(), newSrcMachine.asOutParam());
749 if (FAILED(rc)) throw rc;
750 d->pSrcMachine = (Machine*)(IMachine*)newSrcMachine;
751 }
752
753 bool fSubtreeIncludesCurrent = false;
754 ComObjPtr<Machine> pCurrState;
755 if (d->mode == CloneMode_MachineAndChildStates)
756 {
757 if (d->pSrcMachine->isSnapshotMachine())
758 {
759 /* find machine object for current snapshot of current state */
760 Bstr bstrSrcMachineId;
761 rc = d->pSrcMachine->COMGETTER(Id)(bstrSrcMachineId.asOutParam());
762 if (FAILED(rc)) throw rc;
763 ComPtr<IMachine> pCurr;
764 rc = d->pSrcMachine->getVirtualBox()->FindMachine(bstrSrcMachineId.raw(), pCurr.asOutParam());
765 if (FAILED(rc)) throw rc;
766 if (pCurr.isNull())
767 throw E_FAIL;
768 pCurrState = (Machine *)(IMachine *)pCurr;
769 ComPtr<ISnapshot> pSnapshot;
770 rc = pCurrState->COMGETTER(CurrentSnapshot)(pSnapshot.asOutParam());
771 if (FAILED(rc)) throw rc;
772 if (pSnapshot.isNull())
773 throw E_FAIL;
774 ComPtr<IMachine> pCurrSnapMachine;
775 rc = pSnapshot->COMGETTER(Machine)(pCurrSnapMachine.asOutParam());
776 if (FAILED(rc)) throw rc;
777 if (pCurrSnapMachine.isNull())
778 throw E_FAIL;
779
780 /* now check if there is a parent chain which leads to the
781 * snapshot machine defining the subtree. */
782 while (!pSnapshot.isNull())
783 {
784 ComPtr<IMachine> pSnapMachine;
785 rc = pSnapshot->COMGETTER(Machine)(pSnapMachine.asOutParam());
786 if (FAILED(rc)) throw rc;
787 if (pSnapMachine.isNull())
788 throw E_FAIL;
789 if (pSnapMachine == d->pSrcMachine)
790 {
791 fSubtreeIncludesCurrent = true;
792 break;
793 }
794 rc = pSnapshot->COMGETTER(Parent)(pSnapshot.asOutParam());
795 if (FAILED(rc)) throw rc;
796 }
797 }
798 else
799 {
800 /* If the subtree is only the Current State simply use the
801 * 'machine' case for cloning. It is easier to understand. */
802 d->mode = CloneMode_MachineState;
803 }
804 }
805
806 /* Lock the target machine early (so nobody mess around with it in the meantime). */
807 AutoWriteLock trgLock(d->pTrgMachine COMMA_LOCKVAL_SRC_POS);
808
809 if (d->pSrcMachine->isSnapshotMachine())
810 d->snapshotId = d->pSrcMachine->getSnapshotId();
811
812 /* Add the current machine and all snapshot machines below this machine
813 * in a list for further processing. */
814 RTCList< ComObjPtr<Machine> > machineList;
815
816 /* Include current state? */
817 if ( d->mode == CloneMode_MachineState
818 || d->mode == CloneMode_AllStates)
819 machineList.append(d->pSrcMachine);
820 /* Should be done a depth copy with all child snapshots? */
821 if ( d->mode == CloneMode_MachineAndChildStates
822 || d->mode == CloneMode_AllStates)
823 {
824 ULONG cSnapshots = 0;
825 rc = d->pSrcMachine->COMGETTER(SnapshotCount)(&cSnapshots);
826 if (FAILED(rc)) throw rc;
827 if (cSnapshots > 0)
828 {
829 Utf8Str id;
830 if (d->mode == CloneMode_MachineAndChildStates)
831 id = d->snapshotId.toString();
832 ComPtr<ISnapshot> pSnapshot;
833 rc = d->pSrcMachine->FindSnapshot(Bstr(id).raw(), pSnapshot.asOutParam());
834 if (FAILED(rc)) throw rc;
835 rc = d->createMachineList(pSnapshot, machineList);
836 if (FAILED(rc)) throw rc;
837 if (d->mode == CloneMode_MachineAndChildStates)
838 {
839 if (fSubtreeIncludesCurrent)
840 {
841 if (pCurrState.isNull())
842 throw E_FAIL;
843 machineList.append(pCurrState);
844 }
845 else
846 {
847 rc = pSnapshot->COMGETTER(Machine)(d->pOldMachineState.asOutParam());
848 if (FAILED(rc)) throw rc;
849 }
850 }
851 }
852 }
853
854 /* We have different approaches for getting the medias which needs to
855 * be replicated based on the clone mode the user requested (this is
856 * mostly about the full clone mode).
857 * MachineState:
858 * - Only the images which are directly attached to an source VM will
859 * be cloned. Any parent disks in the original chain will be merged
860 * into the final cloned disk.
861 * MachineAndChildStates:
862 * - In this case we search for images which have more than one
863 * children in the cloned VM or are directly attached to the new VM.
864 * All others will be merged into the remaining images which are
865 * cloned.
866 * This case is the most complicated one and needs several iterations
867 * to make sure we are only cloning images which are really
868 * necessary.
869 * AllStates:
870 * - All disks which are directly or indirectly attached to the
871 * original VM are cloned.
872 *
873 * Note: If you change something generic in one of the methods its
874 * likely that it need to be changed in the others as well! */
875 ULONG uCount = 2; /* One init task and the machine creation. */
876 ULONG uTotalWeight = 2; /* The init task and the machine creation is worth one. */
877 bool fAttachLinked = d->options.contains(CloneOptions_Link); /* Linked clones requested? */
878 switch (d->mode)
879 {
880 case CloneMode_MachineState: d->queryMediasForMachineState(machineList, fAttachLinked, uCount, uTotalWeight); break;
881 case CloneMode_MachineAndChildStates: d->queryMediasForMachineAndChildStates(machineList, fAttachLinked, uCount, uTotalWeight); break;
882 case CloneMode_AllStates: d->queryMediasForAllStates(machineList, fAttachLinked, uCount, uTotalWeight); break;
883 }
884
885 /* Now create the progress project, so the user knows whats going on. */
886 rc = d->pProgress.createObject();
887 if (FAILED(rc)) throw rc;
888 rc = d->pProgress->init(p->getVirtualBox(),
889 static_cast<IMachine*>(d->pSrcMachine) /* aInitiator */,
890 Bstr(p->tr("Cloning Machine")).raw(),
891 true /* fCancellable */,
892 uCount,
893 uTotalWeight,
894 Bstr(p->tr("Initialize Cloning")).raw(),
895 1);
896 if (FAILED(rc)) throw rc;
897
898 int vrc = d->startWorker();
899
900 if (RT_FAILURE(vrc))
901 p->setError(VBOX_E_IPRT_ERROR, "Could not create machine clone thread (%Rrc)", vrc);
902 }
903 catch (HRESULT rc2)
904 {
905 rc = rc2;
906 }
907
908 if (SUCCEEDED(rc))
909 d->pProgress.queryInterfaceTo(pProgress);
910
911 return rc;
912}
913
914HRESULT MachineCloneVM::run()
915{
916 DPTR(MachineCloneVM);
917 ComObjPtr<Machine> &p = d->p;
918
919 AutoCaller autoCaller(p);
920 if (FAILED(autoCaller.rc())) return autoCaller.rc();
921
922 AutoReadLock srcLock(p COMMA_LOCKVAL_SRC_POS);
923 AutoWriteLock trgLock(d->pTrgMachine COMMA_LOCKVAL_SRC_POS);
924
925 HRESULT rc = S_OK;
926
927 /*
928 * Todo:
929 * - What about log files?
930 */
931
932 /* Where should all the media go? */
933 Utf8Str strTrgSnapshotFolder;
934 Utf8Str strTrgMachineFolder = d->pTrgMachine->getSettingsFileFull();
935 strTrgMachineFolder.stripFilename();
936
937 RTCList<ComObjPtr<Medium> > newMedia; /* All created images */
938 RTCList<Utf8Str> newFiles; /* All extra created files (save states, ...) */
939 try
940 {
941 /* Copy all the configuration from this machine to an empty
942 * configuration dataset. */
943 settings::MachineConfigFile trgMCF = *d->pSrcMachine->mData->pMachineConfigFile;
944
945 /* Reset media registry. */
946 trgMCF.mediaRegistry.llHardDisks.clear();
947 /* If we got a valid snapshot id, replace the hardware/storage section
948 * with the stuff from the snapshot. */
949 settings::Snapshot sn;
950 if (!d->snapshotId.isEmpty())
951 if (!d->findSnapshot(trgMCF.llFirstSnapshot, d->snapshotId, sn))
952 throw p->setError(E_FAIL,
953 p->tr("Could not find data to snapshots '%s'"), d->snapshotId.toString().c_str());
954
955
956
957 if (d->mode == CloneMode_MachineState)
958 {
959 if (!sn.uuid.isEmpty())
960 {
961 trgMCF.hardwareMachine = sn.hardware;
962 trgMCF.storageMachine = sn.storage;
963 }
964
965 /* Remove any hint on snapshots. */
966 trgMCF.llFirstSnapshot.clear();
967 trgMCF.uuidCurrentSnapshot.clear();
968 }
969 else if ( d->mode == CloneMode_MachineAndChildStates
970 && !sn.uuid.isEmpty())
971 {
972 if (!d->pOldMachineState.isNull())
973 {
974 /* Copy the snapshot data to the current machine. */
975 trgMCF.hardwareMachine = sn.hardware;
976 trgMCF.storageMachine = sn.storage;
977
978 /* Current state is under root snapshot. */
979 trgMCF.uuidCurrentSnapshot = sn.uuid;
980 /* There will be created a new differencing image based on this
981 * snapshot. So reset the modified state. */
982 trgMCF.fCurrentStateModified = false;
983 }
984 /* The snapshot will be the root one. */
985 trgMCF.llFirstSnapshot.clear();
986 trgMCF.llFirstSnapshot.push_back(sn);
987 }
988
989 /* Generate new MAC addresses for all machines when not forbidden. */
990 if (!d->options.contains(CloneOptions_KeepAllMACs))
991 {
992 d->updateMACAddresses(trgMCF.hardwareMachine.llNetworkAdapters);
993 d->updateMACAddresses(trgMCF.llFirstSnapshot);
994 }
995
996 /* When the current snapshot folder is absolute we reset it to the
997 * default relative folder. */
998 if (RTPathStartsWithRoot(trgMCF.machineUserData.strSnapshotFolder.c_str()))
999 trgMCF.machineUserData.strSnapshotFolder = "Snapshots";
1000 trgMCF.strStateFile = "";
1001 /* Set the new name. */
1002 const Utf8Str strOldVMName = trgMCF.machineUserData.strName;
1003 trgMCF.machineUserData.strName = d->pTrgMachine->mUserData->s.strName;
1004 trgMCF.uuid = d->pTrgMachine->mData->mUuid;
1005
1006 Bstr bstrSrcSnapshotFolder;
1007 rc = d->pSrcMachine->COMGETTER(SnapshotFolder)(bstrSrcSnapshotFolder.asOutParam());
1008 if (FAILED(rc)) throw rc;
1009 /* The absolute name of the snapshot folder. */
1010 strTrgSnapshotFolder = Utf8StrFmt("%s%c%s", strTrgMachineFolder.c_str(), RTPATH_DELIMITER, trgMCF.machineUserData.strSnapshotFolder.c_str());
1011
1012 /* Should we rename the disk names. */
1013 bool fKeepDiskNames = d->options.contains(CloneOptions_KeepDiskNames);
1014
1015 /* We need to create a map with the already created medias. This is
1016 * necessary, cause different snapshots could have the same
1017 * parents/parent chain. If a medium is in this map already, it isn't
1018 * cloned a second time, but simply used. */
1019 typedef std::map<Utf8Str, ComObjPtr<Medium> > TStrMediumMap;
1020 typedef std::pair<Utf8Str, ComObjPtr<Medium> > TStrMediumPair;
1021 TStrMediumMap map;
1022 GuidList llRegistriesThatNeedSaving;
1023 size_t cDisks = 0;
1024 for (size_t i = 0; i < d->llMedias.size(); ++i)
1025 {
1026 const MEDIUMTASKCHAIN &mtc = d->llMedias.at(i);
1027 ComObjPtr<Medium> pNewParent;
1028 uint32_t uSrcParentIdx = UINT32_MAX;
1029 uint32_t uTrgParentIdx = UINT32_MAX;
1030 for (size_t a = mtc.chain.size(); a > 0; --a)
1031 {
1032 const MEDIUMTASK &mt = mtc.chain.at(a - 1);
1033 ComPtr<IMedium> pMedium = mt.pMedium;
1034
1035 Bstr bstrSrcName;
1036 rc = pMedium->COMGETTER(Name)(bstrSrcName.asOutParam());
1037 if (FAILED(rc)) throw rc;
1038
1039 rc = d->pProgress->SetNextOperation(BstrFmt(p->tr("Cloning Disk '%ls' ..."), bstrSrcName.raw()).raw(), mt.uWeight);
1040 if (FAILED(rc)) throw rc;
1041
1042 Bstr bstrSrcId;
1043 rc = pMedium->COMGETTER(Id)(bstrSrcId.asOutParam());
1044 if (FAILED(rc)) throw rc;
1045
1046 if (mtc.fAttachLinked)
1047 {
1048 IMedium *pTmp = pMedium;
1049 ComObjPtr<Medium> pLMedium = static_cast<Medium*>(pTmp);
1050 if (pLMedium.isNull())
1051 throw E_POINTER;
1052 ComObjPtr<Medium> pBase = pLMedium->getBase();
1053 if (pBase->isReadOnly())
1054 {
1055 ComObjPtr<Medium> pDiff;
1056 /* create the diff under the snapshot medium */
1057 rc = d->createDifferencingMedium(pLMedium, strTrgSnapshotFolder,
1058 newMedia, &pDiff);
1059 if (FAILED(rc)) throw rc;
1060 map.insert(TStrMediumPair(Utf8Str(bstrSrcId), pDiff));
1061 /* diff image has to be used... */
1062 pNewParent = pDiff;
1063 }
1064 else
1065 {
1066 /* Attach the medium directly, as its type is not
1067 * subject to diff creation. */
1068 newMedia.append(pLMedium);
1069 map.insert(TStrMediumPair(Utf8Str(bstrSrcId), pLMedium));
1070 pNewParent = pLMedium;
1071 }
1072 }
1073 else
1074 {
1075 /* Is a clone already there? */
1076 TStrMediumMap::iterator it = map.find(Utf8Str(bstrSrcId));
1077 if (it != map.end())
1078 pNewParent = it->second;
1079 else
1080 {
1081 ComPtr<IMediumFormat> pSrcFormat;
1082 rc = pMedium->COMGETTER(MediumFormat)(pSrcFormat.asOutParam());
1083 ULONG uSrcCaps = 0;
1084 rc = pSrcFormat->COMGETTER(Capabilities)(&uSrcCaps);
1085 if (FAILED(rc)) throw rc;
1086
1087 /* Default format? */
1088 Utf8Str strDefaultFormat;
1089 p->mParent->getDefaultHardDiskFormat(strDefaultFormat);
1090 Bstr bstrSrcFormat(strDefaultFormat);
1091 ULONG srcVar = MediumVariant_Standard;
1092 /* Is the source file based? */
1093 if ((uSrcCaps & MediumFormatCapabilities_File) == MediumFormatCapabilities_File)
1094 {
1095 /* Yes, just use the source format. Otherwise the defaults
1096 * will be used. */
1097 rc = pMedium->COMGETTER(Format)(bstrSrcFormat.asOutParam());
1098 if (FAILED(rc)) throw rc;
1099 rc = pMedium->COMGETTER(Variant)(&srcVar);
1100 if (FAILED(rc)) throw rc;
1101 }
1102
1103 Guid newId;
1104 newId.create();
1105 Utf8Str strNewName(bstrSrcName);
1106 if (!fKeepDiskNames)
1107 {
1108 Utf8Str strSrcTest = bstrSrcName;
1109 /* Check if we have to use another name. */
1110 if (!mt.strBaseName.isEmpty())
1111 strSrcTest = mt.strBaseName;
1112 strSrcTest.stripExt();
1113 /* If the old disk name was in {uuid} format we also
1114 * want the new name in this format, but with the
1115 * updated id of course. If the old disk was called
1116 * like the VM name, we change it to the new VM name.
1117 * For all other disks we rename them with this
1118 * template: "new name-disk1.vdi". */
1119 if (strSrcTest == strOldVMName)
1120 strNewName = Utf8StrFmt("%s%s", trgMCF.machineUserData.strName.c_str(), RTPathExt(Utf8Str(bstrSrcName).c_str()));
1121 else if ( strSrcTest.startsWith("{")
1122 && strSrcTest.endsWith("}"))
1123 {
1124 strSrcTest = strSrcTest.substr(1, strSrcTest.length() - 2);
1125 if (isValidGuid(strSrcTest))
1126 strNewName = Utf8StrFmt("%s%s", newId.toStringCurly().c_str(), RTPathExt(strNewName.c_str()));
1127 }
1128 else
1129 strNewName = Utf8StrFmt("%s-disk%d%s", trgMCF.machineUserData.strName.c_str(), ++cDisks, RTPathExt(Utf8Str(bstrSrcName).c_str()));
1130 }
1131
1132 /* Check if this medium comes from the snapshot folder, if
1133 * so, put it there in the cloned machine as well.
1134 * Otherwise it goes to the machine folder. */
1135 Bstr bstrSrcPath;
1136 Utf8Str strFile = Utf8StrFmt("%s%c%s", strTrgMachineFolder.c_str(), RTPATH_DELIMITER, strNewName.c_str());
1137 rc = pMedium->COMGETTER(Location)(bstrSrcPath.asOutParam());
1138 if (FAILED(rc)) throw rc;
1139 if ( !bstrSrcPath.isEmpty()
1140 && RTPathStartsWith(Utf8Str(bstrSrcPath).c_str(), Utf8Str(bstrSrcSnapshotFolder).c_str())
1141 && (fKeepDiskNames || mt.strBaseName.isEmpty()))
1142 strFile = Utf8StrFmt("%s%c%s", strTrgSnapshotFolder.c_str(), RTPATH_DELIMITER, strNewName.c_str());
1143
1144 /* Start creating the clone. */
1145 ComObjPtr<Medium> pTarget;
1146 rc = pTarget.createObject();
1147 if (FAILED(rc)) throw rc;
1148
1149 rc = pTarget->init(p->mParent,
1150 Utf8Str(bstrSrcFormat),
1151 strFile,
1152 Guid::Empty, /* empty media registry */
1153 NULL /* llRegistriesThatNeedSaving */);
1154 if (FAILED(rc)) throw rc;
1155
1156 /* Update the new uuid. */
1157 pTarget->updateId(newId);
1158
1159 srcLock.release();
1160 /* Do the disk cloning. */
1161 ComPtr<IProgress> progress2;
1162
1163 ComObjPtr<Medium> pLMedium = static_cast<Medium*>((IMedium*)pMedium);
1164 rc = pLMedium->cloneToEx(pTarget,
1165 srcVar,
1166 pNewParent,
1167 progress2.asOutParam(),
1168 uSrcParentIdx,
1169 uTrgParentIdx);
1170 if (FAILED(rc)) throw rc;
1171
1172 /* Wait until the async process has finished. */
1173 rc = d->pProgress->WaitForAsyncProgressCompletion(progress2);
1174 srcLock.acquire();
1175 if (FAILED(rc)) throw rc;
1176
1177 /* Check the result of the async process. */
1178 LONG iRc;
1179 rc = progress2->COMGETTER(ResultCode)(&iRc);
1180 if (FAILED(rc)) throw rc;
1181 if (FAILED(iRc))
1182 {
1183 /* If the thread of the progress object has an error, then
1184 * retrieve the error info from there, or it'll be lost. */
1185 ProgressErrorInfo info(progress2);
1186 throw p->setError(iRc, Utf8Str(info.getText()).c_str());
1187 }
1188 /* Remember created medium. */
1189 newMedia.append(pTarget);
1190 /* Get the medium type from the source and set it to the
1191 * new medium. */
1192 MediumType_T type;
1193 rc = pMedium->COMGETTER(Type)(&type);
1194 if (FAILED(rc)) throw rc;
1195 rc = pTarget->COMSETTER(Type)(type);
1196 if (FAILED(rc)) throw rc;
1197 map.insert(TStrMediumPair(Utf8Str(bstrSrcId), pTarget));
1198 /* register the new harddisk */
1199 {
1200 AutoWriteLock tlock(p->mParent->getMediaTreeLockHandle() COMMA_LOCKVAL_SRC_POS);
1201 rc = p->mParent->registerHardDisk(pTarget, NULL /* pllRegistriesThatNeedSaving */);
1202 if (FAILED(rc)) throw rc;
1203 }
1204 /* This medium becomes the parent of the next medium in the
1205 * chain. */
1206 pNewParent = pTarget;
1207 }
1208 }
1209 /* Save the current source medium index as the new parent
1210 * medium index. */
1211 uSrcParentIdx = mt.uIdx;
1212 /* Simply increase the target index. */
1213 ++uTrgParentIdx;
1214 }
1215
1216 Bstr bstrSrcId;
1217 rc = mtc.chain.first().pMedium->COMGETTER(Id)(bstrSrcId.asOutParam());
1218 if (FAILED(rc)) throw rc;
1219 Bstr bstrTrgId;
1220 rc = pNewParent->COMGETTER(Id)(bstrTrgId.asOutParam());
1221 if (FAILED(rc)) throw rc;
1222 /* update snapshot configuration */
1223 d->updateSnapshotStorageLists(trgMCF.llFirstSnapshot, bstrSrcId, bstrTrgId);
1224
1225 /* create new 'Current State' diff for caller defined place */
1226 if (mtc.fCreateDiffs)
1227 {
1228 const MEDIUMTASK &mt = mtc.chain.first();
1229 ComObjPtr<Medium> pLMedium = static_cast<Medium*>((IMedium*)mt.pMedium);
1230 if (pLMedium.isNull())
1231 throw E_POINTER;
1232 ComObjPtr<Medium> pBase = pLMedium->getBase();
1233 if (pBase->isReadOnly())
1234 {
1235 ComObjPtr<Medium> pDiff;
1236 rc = d->createDifferencingMedium(pNewParent, strTrgSnapshotFolder,
1237 newMedia, &pDiff);
1238 if (FAILED(rc)) throw rc;
1239 /* diff image has to be used... */
1240 pNewParent = pDiff;
1241 }
1242 else
1243 {
1244 /* Attach the medium directly, as its type is not
1245 * subject to diff creation. */
1246 newMedia.append(pNewParent);
1247 }
1248
1249 rc = pNewParent->COMGETTER(Id)(bstrTrgId.asOutParam());
1250 if (FAILED(rc)) throw rc;
1251 }
1252 /* update 'Current State' configuration */
1253 d->updateStorageLists(trgMCF.storageMachine.llStorageControllers, bstrSrcId, bstrTrgId);
1254 }
1255 /* Make sure all disks know of the new machine uuid. We do this last to
1256 * be able to change the medium type above. */
1257 for (size_t i = newMedia.size(); i > 0; --i)
1258 {
1259 const ComObjPtr<Medium> &pMedium = newMedia.at(i - 1);
1260 AutoCaller mac(pMedium);
1261 if (FAILED(mac.rc())) throw mac.rc();
1262 AutoWriteLock mlock(pMedium COMMA_LOCKVAL_SRC_POS);
1263 Guid uuid = d->pTrgMachine->mData->mUuid;
1264 if (d->options.contains(CloneOptions_Link))
1265 {
1266 ComObjPtr<Medium> pParent = pMedium->getParent();
1267 mlock.release();
1268 if (!pParent.isNull())
1269 {
1270 AutoCaller mac2(pParent);
1271 if (FAILED(mac2.rc())) throw mac2.rc();
1272 AutoReadLock mlock2(pParent COMMA_LOCKVAL_SRC_POS);
1273 if (pParent->getFirstRegistryMachineId(uuid))
1274 VirtualBox::addGuidToListUniquely(llRegistriesThatNeedSaving, uuid);
1275 }
1276 mlock.acquire();
1277 }
1278 pMedium->addRegistry(uuid, false /* fRecurse */);
1279 }
1280 /* Check if a snapshot folder is necessary and if so doesn't already
1281 * exists. */
1282 if ( !d->llSaveStateFiles.isEmpty()
1283 && !RTDirExists(strTrgSnapshotFolder.c_str()))
1284 {
1285 int vrc = RTDirCreateFullPath(strTrgSnapshotFolder.c_str(), 0777);
1286 if (RT_FAILURE(vrc))
1287 throw p->setError(VBOX_E_IPRT_ERROR,
1288 p->tr("Could not create snapshots folder '%s' (%Rrc)"), strTrgSnapshotFolder.c_str(), vrc);
1289 }
1290 /* Clone all save state files. */
1291 for (size_t i = 0; i < d->llSaveStateFiles.size(); ++i)
1292 {
1293 SAVESTATETASK sst = d->llSaveStateFiles.at(i);
1294 const Utf8Str &strTrgSaveState = Utf8StrFmt("%s%c%s", strTrgSnapshotFolder.c_str(), RTPATH_DELIMITER, RTPathFilename(sst.strSaveStateFile.c_str()));
1295
1296 /* Move to next sub-operation. */
1297 rc = d->pProgress->SetNextOperation(BstrFmt(p->tr("Copy save state file '%s' ..."), RTPathFilename(sst.strSaveStateFile.c_str())).raw(), sst.uWeight);
1298 if (FAILED(rc)) throw rc;
1299 /* Copy the file only if it was not copied already. */
1300 if (!newFiles.contains(strTrgSaveState.c_str()))
1301 {
1302 int vrc = RTFileCopyEx(sst.strSaveStateFile.c_str(), strTrgSaveState.c_str(), 0, MachineCloneVMPrivate::copyStateFileProgress, &d->pProgress);
1303 if (RT_FAILURE(vrc))
1304 throw p->setError(VBOX_E_IPRT_ERROR,
1305 p->tr("Could not copy state file '%s' to '%s' (%Rrc)"), sst.strSaveStateFile.c_str(), strTrgSaveState.c_str(), vrc);
1306 newFiles.append(strTrgSaveState);
1307 }
1308 /* Update the path in the configuration either for the current
1309 * machine state or the snapshots. */
1310 if (sst.snapshotUuid.isEmpty())
1311 trgMCF.strStateFile = strTrgSaveState;
1312 else
1313 d->updateStateFile(trgMCF.llFirstSnapshot, sst.snapshotUuid, strTrgSaveState);
1314 }
1315
1316 {
1317 rc = d->pProgress->SetNextOperation(BstrFmt(p->tr("Create Machine Clone '%s' ..."), trgMCF.machineUserData.strName.c_str()).raw(), 1);
1318 if (FAILED(rc)) throw rc;
1319 /* After modifying the new machine config, we can copy the stuff
1320 * over to the new machine. The machine have to be mutable for
1321 * this. */
1322 rc = d->pTrgMachine->checkStateDependency(p->MutableStateDep);
1323 if (FAILED(rc)) throw rc;
1324 rc = d->pTrgMachine->loadMachineDataFromSettings(trgMCF,
1325 &d->pTrgMachine->mData->mUuid);
1326 if (FAILED(rc)) throw rc;
1327 /* save all VM data */
1328 bool fNeedsGlobalSaveSettings = false;
1329 rc = d->pTrgMachine->saveSettings(&fNeedsGlobalSaveSettings, Machine::SaveS_Force);
1330 if (FAILED(rc)) throw rc;
1331 /* Release all locks */
1332 trgLock.release();
1333 srcLock.release();
1334 if (fNeedsGlobalSaveSettings)
1335 {
1336 /* save the global settings; for that we should hold only the
1337 * VirtualBox lock */
1338 AutoWriteLock vlock(p->mParent COMMA_LOCKVAL_SRC_POS);
1339 rc = p->mParent->saveSettings();
1340 if (FAILED(rc)) throw rc;
1341 }
1342 }
1343
1344 /* Any additional machines need saving? */
1345 if (!llRegistriesThatNeedSaving.empty())
1346 {
1347 rc = p->mParent->saveRegistries(llRegistriesThatNeedSaving);
1348 if (FAILED(rc)) throw rc;
1349 }
1350 }
1351 catch (HRESULT rc2)
1352 {
1353 rc = rc2;
1354 }
1355 catch (...)
1356 {
1357 rc = VirtualBox::handleUnexpectedExceptions(RT_SRC_POS);
1358 }
1359
1360 MultiResult mrc(rc);
1361 /* Cleanup on failure (CANCEL also) */
1362 if (FAILED(rc))
1363 {
1364 int vrc = VINF_SUCCESS;
1365 /* Delete all created files. */
1366 for (size_t i = 0; i < newFiles.size(); ++i)
1367 {
1368 vrc = RTFileDelete(newFiles.at(i).c_str());
1369 if (RT_FAILURE(vrc))
1370 mrc = p->setError(VBOX_E_IPRT_ERROR, p->tr("Could not delete file '%s' (%Rrc)"), newFiles.at(i).c_str(), vrc);
1371 }
1372 /* Delete all already created medias. (Reverse, cause there could be
1373 * parent->child relations.) */
1374 for (size_t i = newMedia.size(); i > 0; --i)
1375 {
1376 const ComObjPtr<Medium> &pMedium = newMedia.at(i - 1);
1377 mrc = pMedium->deleteStorage(NULL /* aProgress */,
1378 true /* aWait */,
1379 NULL /* llRegistriesThatNeedSaving */);
1380 pMedium->Close();
1381 }
1382 /* Delete the snapshot folder when not empty. */
1383 if (!strTrgSnapshotFolder.isEmpty())
1384 RTDirRemove(strTrgSnapshotFolder.c_str());
1385 /* Delete the machine folder when not empty. */
1386 RTDirRemove(strTrgMachineFolder.c_str());
1387 }
1388
1389 return mrc;
1390}
1391
1392void MachineCloneVM::destroy()
1393{
1394 delete this;
1395}
1396
Note: See TracBrowser for help on using the repository browser.

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