VirtualBox

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

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

be more restrictive

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