1 | /* $Id: ApplianceImplExport.cpp 80210 2019-08-09 12:36:04Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IAppliance and IVirtualSystem COM class implementations.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008-2019 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 | #define LOG_GROUP LOG_GROUP_MAIN_APPLIANCE
|
---|
19 | #include <iprt/path.h>
|
---|
20 | #include <iprt/dir.h>
|
---|
21 | #include <iprt/param.h>
|
---|
22 | #include <iprt/s3.h>
|
---|
23 | #include <iprt/manifest.h>
|
---|
24 | #include <iprt/stream.h>
|
---|
25 | #include <iprt/zip.h>
|
---|
26 |
|
---|
27 | #include <VBox/version.h>
|
---|
28 |
|
---|
29 | #include "ApplianceImpl.h"
|
---|
30 | #include "VirtualBoxImpl.h"
|
---|
31 | #include "ProgressImpl.h"
|
---|
32 | #include "MachineImpl.h"
|
---|
33 | #include "MediumImpl.h"
|
---|
34 | #include "LoggingNew.h"
|
---|
35 | #include "Global.h"
|
---|
36 | #include "MediumFormatImpl.h"
|
---|
37 | #include "SystemPropertiesImpl.h"
|
---|
38 |
|
---|
39 | #include "AutoCaller.h"
|
---|
40 |
|
---|
41 | #include "ApplianceImplPrivate.h"
|
---|
42 |
|
---|
43 | using namespace std;
|
---|
44 |
|
---|
45 | ////////////////////////////////////////////////////////////////////////////////
|
---|
46 | //
|
---|
47 | // IMachine public methods
|
---|
48 | //
|
---|
49 | ////////////////////////////////////////////////////////////////////////////////
|
---|
50 |
|
---|
51 | // This code is here so we won't have to include the appliance headers in the
|
---|
52 | // IMachine implementation, and we also need to access private appliance data.
|
---|
53 |
|
---|
54 | /**
|
---|
55 | * Public method implementation.
|
---|
56 | * @param aAppliance Appliance object.
|
---|
57 | * @param aLocation Where to store the appliance.
|
---|
58 | * @param aDescription Appliance description.
|
---|
59 | * @return
|
---|
60 | */
|
---|
61 | HRESULT Machine::exportTo(const ComPtr<IAppliance> &aAppliance, const com::Utf8Str &aLocation,
|
---|
62 | ComPtr<IVirtualSystemDescription> &aDescription)
|
---|
63 | {
|
---|
64 | HRESULT rc = S_OK;
|
---|
65 |
|
---|
66 | if (!aAppliance)
|
---|
67 | return E_POINTER;
|
---|
68 |
|
---|
69 | ComObjPtr<VirtualSystemDescription> pNewDesc;
|
---|
70 |
|
---|
71 | try
|
---|
72 | {
|
---|
73 | IAppliance *iAppliance = aAppliance;
|
---|
74 | Appliance *pAppliance = static_cast<Appliance*>(iAppliance);
|
---|
75 |
|
---|
76 | LocationInfo locInfo;
|
---|
77 | i_parseURI(aLocation, locInfo);
|
---|
78 |
|
---|
79 | Utf8Str strBasename(locInfo.strPath);
|
---|
80 | strBasename.stripPath().stripSuffix();
|
---|
81 | if (locInfo.strPath.endsWith(".tar.gz", Utf8Str::CaseSensitive))
|
---|
82 | strBasename.stripSuffix();
|
---|
83 |
|
---|
84 | // create a new virtual system to store in the appliance
|
---|
85 | rc = pNewDesc.createObject();
|
---|
86 | if (FAILED(rc)) throw rc;
|
---|
87 | rc = pNewDesc->init();
|
---|
88 | if (FAILED(rc)) throw rc;
|
---|
89 |
|
---|
90 | // store the machine object so we can dump the XML in Appliance::Write()
|
---|
91 | pNewDesc->m->pMachine = this;
|
---|
92 |
|
---|
93 | // first, call the COM methods, as they request locks
|
---|
94 | BOOL fUSBEnabled = FALSE;
|
---|
95 | com::SafeIfaceArray<IUSBController> usbControllers;
|
---|
96 | rc = COMGETTER(USBControllers)(ComSafeArrayAsOutParam(usbControllers));
|
---|
97 | if (SUCCEEDED(rc))
|
---|
98 | {
|
---|
99 | for (unsigned i = 0; i < usbControllers.size(); ++i)
|
---|
100 | {
|
---|
101 | USBControllerType_T enmType;
|
---|
102 |
|
---|
103 | rc = usbControllers[i]->COMGETTER(Type)(&enmType);
|
---|
104 | if (FAILED(rc)) throw rc;
|
---|
105 |
|
---|
106 | if (enmType == USBControllerType_OHCI)
|
---|
107 | fUSBEnabled = TRUE;
|
---|
108 | }
|
---|
109 | }
|
---|
110 |
|
---|
111 | // request the machine lock while accessing internal members
|
---|
112 | AutoReadLock alock1(this COMMA_LOCKVAL_SRC_POS);
|
---|
113 |
|
---|
114 | ComPtr<IAudioAdapter> pAudioAdapter = mAudioAdapter;
|
---|
115 | BOOL fAudioEnabled;
|
---|
116 | rc = pAudioAdapter->COMGETTER(Enabled)(&fAudioEnabled);
|
---|
117 | if (FAILED(rc)) throw rc;
|
---|
118 | AudioControllerType_T audioController;
|
---|
119 | rc = pAudioAdapter->COMGETTER(AudioController)(&audioController);
|
---|
120 | if (FAILED(rc)) throw rc;
|
---|
121 |
|
---|
122 | // get name
|
---|
123 | Utf8Str strVMName = mUserData->s.strName;
|
---|
124 | // get description
|
---|
125 | Utf8Str strDescription = mUserData->s.strDescription;
|
---|
126 | // get guest OS
|
---|
127 | Utf8Str strOsTypeVBox = mUserData->s.strOsType;
|
---|
128 | // CPU count
|
---|
129 | uint32_t cCPUs = mHWData->mCPUCount;
|
---|
130 | // memory size in MB
|
---|
131 | uint32_t ulMemSizeMB = mHWData->mMemorySize;
|
---|
132 | // VRAM size?
|
---|
133 | // BIOS settings?
|
---|
134 | // 3D acceleration enabled?
|
---|
135 | // hardware virtualization enabled?
|
---|
136 | // nested paging enabled?
|
---|
137 | // HWVirtExVPIDEnabled?
|
---|
138 | // PAEEnabled?
|
---|
139 | // Long mode enabled?
|
---|
140 | BOOL fLongMode;
|
---|
141 | rc = GetCPUProperty(CPUPropertyType_LongMode, &fLongMode);
|
---|
142 | if (FAILED(rc)) throw rc;
|
---|
143 |
|
---|
144 | // snapshotFolder?
|
---|
145 | // VRDPServer?
|
---|
146 |
|
---|
147 | /* Guest OS type */
|
---|
148 | ovf::CIMOSType_T cim = convertVBoxOSType2CIMOSType(strOsTypeVBox.c_str(), fLongMode);
|
---|
149 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_OS,
|
---|
150 | "",
|
---|
151 | Utf8StrFmt("%RI32", cim),
|
---|
152 | strOsTypeVBox);
|
---|
153 |
|
---|
154 | /* VM name */
|
---|
155 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_Name,
|
---|
156 | "",
|
---|
157 | strVMName,
|
---|
158 | strVMName);
|
---|
159 |
|
---|
160 | // description
|
---|
161 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_Description,
|
---|
162 | "",
|
---|
163 | strDescription,
|
---|
164 | strDescription);
|
---|
165 |
|
---|
166 | /* CPU count*/
|
---|
167 | Utf8Str strCpuCount = Utf8StrFmt("%RI32", cCPUs);
|
---|
168 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_CPU,
|
---|
169 | "",
|
---|
170 | strCpuCount,
|
---|
171 | strCpuCount);
|
---|
172 |
|
---|
173 | /* Memory */
|
---|
174 | Utf8Str strMemory = Utf8StrFmt("%RI64", (uint64_t)ulMemSizeMB * _1M);
|
---|
175 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_Memory,
|
---|
176 | "",
|
---|
177 | strMemory,
|
---|
178 | strMemory);
|
---|
179 |
|
---|
180 | // the one VirtualBox IDE controller has two channels with two ports each, which is
|
---|
181 | // considered two IDE controllers with two ports each by OVF, so export it as two
|
---|
182 | int32_t lIDEControllerPrimaryIndex = 0;
|
---|
183 | int32_t lIDEControllerSecondaryIndex = 0;
|
---|
184 | int32_t lSATAControllerIndex = 0;
|
---|
185 | int32_t lSCSIControllerIndex = 0;
|
---|
186 |
|
---|
187 | /* Fetch all available storage controllers */
|
---|
188 | com::SafeIfaceArray<IStorageController> nwControllers;
|
---|
189 | rc = COMGETTER(StorageControllers)(ComSafeArrayAsOutParam(nwControllers));
|
---|
190 | if (FAILED(rc)) throw rc;
|
---|
191 |
|
---|
192 | ComPtr<IStorageController> pIDEController;
|
---|
193 | ComPtr<IStorageController> pSATAController;
|
---|
194 | ComPtr<IStorageController> pSCSIController;
|
---|
195 | ComPtr<IStorageController> pSASController;
|
---|
196 | for (size_t j = 0; j < nwControllers.size(); ++j)
|
---|
197 | {
|
---|
198 | StorageBus_T eType;
|
---|
199 | rc = nwControllers[j]->COMGETTER(Bus)(&eType);
|
---|
200 | if (FAILED(rc)) throw rc;
|
---|
201 | if ( eType == StorageBus_IDE
|
---|
202 | && pIDEController.isNull())
|
---|
203 | pIDEController = nwControllers[j];
|
---|
204 | else if ( eType == StorageBus_SATA
|
---|
205 | && pSATAController.isNull())
|
---|
206 | pSATAController = nwControllers[j];
|
---|
207 | else if ( eType == StorageBus_SCSI
|
---|
208 | && pSATAController.isNull())
|
---|
209 | pSCSIController = nwControllers[j];
|
---|
210 | else if ( eType == StorageBus_SAS
|
---|
211 | && pSASController.isNull())
|
---|
212 | pSASController = nwControllers[j];
|
---|
213 | }
|
---|
214 |
|
---|
215 | // <const name="HardDiskControllerIDE" value="6" />
|
---|
216 | if (!pIDEController.isNull())
|
---|
217 | {
|
---|
218 | StorageControllerType_T ctlr;
|
---|
219 | rc = pIDEController->COMGETTER(ControllerType)(&ctlr);
|
---|
220 | if (FAILED(rc)) throw rc;
|
---|
221 |
|
---|
222 | Utf8Str strVBox;
|
---|
223 | switch (ctlr)
|
---|
224 | {
|
---|
225 | case StorageControllerType_PIIX3: strVBox = "PIIX3"; break;
|
---|
226 | case StorageControllerType_PIIX4: strVBox = "PIIX4"; break;
|
---|
227 | case StorageControllerType_ICH6: strVBox = "ICH6"; break;
|
---|
228 | default: break; /* Shut up MSC. */
|
---|
229 | }
|
---|
230 |
|
---|
231 | if (strVBox.length())
|
---|
232 | {
|
---|
233 | lIDEControllerPrimaryIndex = (int32_t)pNewDesc->m->maDescriptions.size();
|
---|
234 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_HardDiskControllerIDE,
|
---|
235 | Utf8StrFmt("%d", lIDEControllerPrimaryIndex), // strRef
|
---|
236 | strVBox, // aOvfValue
|
---|
237 | strVBox); // aVBoxValue
|
---|
238 | lIDEControllerSecondaryIndex = lIDEControllerPrimaryIndex + 1;
|
---|
239 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_HardDiskControllerIDE,
|
---|
240 | Utf8StrFmt("%d", lIDEControllerSecondaryIndex),
|
---|
241 | strVBox,
|
---|
242 | strVBox);
|
---|
243 | }
|
---|
244 | }
|
---|
245 |
|
---|
246 | // <const name="HardDiskControllerSATA" value="7" />
|
---|
247 | if (!pSATAController.isNull())
|
---|
248 | {
|
---|
249 | Utf8Str strVBox = "AHCI";
|
---|
250 | lSATAControllerIndex = (int32_t)pNewDesc->m->maDescriptions.size();
|
---|
251 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_HardDiskControllerSATA,
|
---|
252 | Utf8StrFmt("%d", lSATAControllerIndex),
|
---|
253 | strVBox,
|
---|
254 | strVBox);
|
---|
255 | }
|
---|
256 |
|
---|
257 | // <const name="HardDiskControllerSCSI" value="8" />
|
---|
258 | if (!pSCSIController.isNull())
|
---|
259 | {
|
---|
260 | StorageControllerType_T ctlr;
|
---|
261 | rc = pSCSIController->COMGETTER(ControllerType)(&ctlr);
|
---|
262 | if (SUCCEEDED(rc))
|
---|
263 | {
|
---|
264 | Utf8Str strVBox = "LsiLogic"; // the default in VBox
|
---|
265 | switch (ctlr)
|
---|
266 | {
|
---|
267 | case StorageControllerType_LsiLogic: strVBox = "LsiLogic"; break;
|
---|
268 | case StorageControllerType_BusLogic: strVBox = "BusLogic"; break;
|
---|
269 | default: break; /* Shut up MSC. */
|
---|
270 | }
|
---|
271 | lSCSIControllerIndex = (int32_t)pNewDesc->m->maDescriptions.size();
|
---|
272 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_HardDiskControllerSCSI,
|
---|
273 | Utf8StrFmt("%d", lSCSIControllerIndex),
|
---|
274 | strVBox,
|
---|
275 | strVBox);
|
---|
276 | }
|
---|
277 | else
|
---|
278 | throw rc;
|
---|
279 | }
|
---|
280 |
|
---|
281 | if (!pSASController.isNull())
|
---|
282 | {
|
---|
283 | // VirtualBox considers the SAS controller a class of its own but in OVF
|
---|
284 | // it should be a SCSI controller
|
---|
285 | Utf8Str strVBox = "LsiLogicSas";
|
---|
286 | lSCSIControllerIndex = (int32_t)pNewDesc->m->maDescriptions.size();
|
---|
287 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_HardDiskControllerSAS,
|
---|
288 | Utf8StrFmt("%d", lSCSIControllerIndex),
|
---|
289 | strVBox,
|
---|
290 | strVBox);
|
---|
291 | }
|
---|
292 |
|
---|
293 | // <const name="HardDiskImage" value="9" />
|
---|
294 | // <const name="Floppy" value="18" />
|
---|
295 | // <const name="CDROM" value="19" />
|
---|
296 |
|
---|
297 | for (MediumAttachmentList::const_iterator
|
---|
298 | it = mMediumAttachments->begin();
|
---|
299 | it != mMediumAttachments->end();
|
---|
300 | ++it)
|
---|
301 | {
|
---|
302 | ComObjPtr<MediumAttachment> pHDA = *it;
|
---|
303 |
|
---|
304 | // the attachment's data
|
---|
305 | ComPtr<IMedium> pMedium;
|
---|
306 | ComPtr<IStorageController> ctl;
|
---|
307 | Bstr controllerName;
|
---|
308 |
|
---|
309 | rc = pHDA->COMGETTER(Controller)(controllerName.asOutParam());
|
---|
310 | if (FAILED(rc)) throw rc;
|
---|
311 |
|
---|
312 | rc = GetStorageControllerByName(controllerName.raw(), ctl.asOutParam());
|
---|
313 | if (FAILED(rc)) throw rc;
|
---|
314 |
|
---|
315 | StorageBus_T storageBus;
|
---|
316 | DeviceType_T deviceType;
|
---|
317 | LONG lChannel;
|
---|
318 | LONG lDevice;
|
---|
319 |
|
---|
320 | rc = ctl->COMGETTER(Bus)(&storageBus);
|
---|
321 | if (FAILED(rc)) throw rc;
|
---|
322 |
|
---|
323 | rc = pHDA->COMGETTER(Type)(&deviceType);
|
---|
324 | if (FAILED(rc)) throw rc;
|
---|
325 |
|
---|
326 | rc = pHDA->COMGETTER(Port)(&lChannel);
|
---|
327 | if (FAILED(rc)) throw rc;
|
---|
328 |
|
---|
329 | rc = pHDA->COMGETTER(Device)(&lDevice);
|
---|
330 | if (FAILED(rc)) throw rc;
|
---|
331 |
|
---|
332 | rc = pHDA->COMGETTER(Medium)(pMedium.asOutParam());
|
---|
333 | if (FAILED(rc)) throw rc;
|
---|
334 | if (pMedium.isNull())
|
---|
335 | {
|
---|
336 | Utf8Str strStBus;
|
---|
337 | if ( storageBus == StorageBus_IDE)
|
---|
338 | strStBus = "IDE";
|
---|
339 | else if ( storageBus == StorageBus_SATA)
|
---|
340 | strStBus = "SATA";
|
---|
341 | else if ( storageBus == StorageBus_SCSI)
|
---|
342 | strStBus = "SCSI";
|
---|
343 | else if ( storageBus == StorageBus_SAS)
|
---|
344 | strStBus = "SAS";
|
---|
345 | LogRel(("Warning: skip the medium (bus: %s, slot: %d, port: %d). No storage device attached.\n",
|
---|
346 | strStBus.c_str(), lDevice, lChannel));
|
---|
347 | continue;
|
---|
348 | }
|
---|
349 |
|
---|
350 | Utf8Str strTargetImageName;
|
---|
351 | Utf8Str strLocation;
|
---|
352 | LONG64 llSize = 0;
|
---|
353 |
|
---|
354 | if ( deviceType == DeviceType_HardDisk
|
---|
355 | && pMedium)
|
---|
356 | {
|
---|
357 | Bstr bstrLocation;
|
---|
358 |
|
---|
359 | rc = pMedium->COMGETTER(Location)(bstrLocation.asOutParam());
|
---|
360 | if (FAILED(rc)) throw rc;
|
---|
361 | strLocation = bstrLocation;
|
---|
362 |
|
---|
363 | // find the source's base medium for two things:
|
---|
364 | // 1) we'll use its name to determine the name of the target disk, which is readable,
|
---|
365 | // as opposed to the UUID filename of a differencing image, if pMedium is one
|
---|
366 | // 2) we need the size of the base image so we can give it to addEntry(), and later
|
---|
367 | // on export, the progress will be based on that (and not the diff image)
|
---|
368 | ComPtr<IMedium> pBaseMedium;
|
---|
369 | rc = pMedium->COMGETTER(Base)(pBaseMedium.asOutParam());
|
---|
370 | // returns pMedium if there are no diff images
|
---|
371 | if (FAILED(rc)) throw rc;
|
---|
372 |
|
---|
373 | strTargetImageName = Utf8StrFmt("%s-disk%.3d.vmdk", strBasename.c_str(), ++pAppliance->m->cDisks);
|
---|
374 | if (strTargetImageName.length() > RTTAR_NAME_MAX)
|
---|
375 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
376 | tr("Cannot attach disk '%s' -- file name too long"), strTargetImageName.c_str());
|
---|
377 |
|
---|
378 | // force reading state, or else size will be returned as 0
|
---|
379 | MediumState_T ms;
|
---|
380 | rc = pBaseMedium->RefreshState(&ms);
|
---|
381 | if (FAILED(rc)) throw rc;
|
---|
382 |
|
---|
383 | rc = pBaseMedium->COMGETTER(Size)(&llSize);
|
---|
384 | if (FAILED(rc)) throw rc;
|
---|
385 |
|
---|
386 | /* If the medium is encrypted add the key identifier to the list. */
|
---|
387 | IMedium *iBaseMedium = pBaseMedium;
|
---|
388 | Medium *pBase = static_cast<Medium*>(iBaseMedium);
|
---|
389 | const com::Utf8Str strKeyId = pBase->i_getKeyId();
|
---|
390 | if (!strKeyId.isEmpty())
|
---|
391 | {
|
---|
392 | IMedium *iMedium = pMedium;
|
---|
393 | Medium *pMed = static_cast<Medium*>(iMedium);
|
---|
394 | com::Guid mediumUuid = pMed->i_getId();
|
---|
395 | bool fKnown = false;
|
---|
396 |
|
---|
397 | /* Check whether the ID is already in our sequence, add it otherwise. */
|
---|
398 | for (unsigned i = 0; i < pAppliance->m->m_vecPasswordIdentifiers.size(); i++)
|
---|
399 | {
|
---|
400 | if (strKeyId.equals(pAppliance->m->m_vecPasswordIdentifiers[i]))
|
---|
401 | {
|
---|
402 | fKnown = true;
|
---|
403 | break;
|
---|
404 | }
|
---|
405 | }
|
---|
406 |
|
---|
407 | if (!fKnown)
|
---|
408 | {
|
---|
409 | GUIDVEC vecMediumIds;
|
---|
410 |
|
---|
411 | vecMediumIds.push_back(mediumUuid);
|
---|
412 | pAppliance->m->m_vecPasswordIdentifiers.push_back(strKeyId);
|
---|
413 | pAppliance->m->m_mapPwIdToMediumIds.insert(std::pair<com::Utf8Str, GUIDVEC>(strKeyId, vecMediumIds));
|
---|
414 | }
|
---|
415 | else
|
---|
416 | {
|
---|
417 | std::map<com::Utf8Str, GUIDVEC>::iterator itMap = pAppliance->m->m_mapPwIdToMediumIds.find(strKeyId);
|
---|
418 | if (itMap == pAppliance->m->m_mapPwIdToMediumIds.end())
|
---|
419 | throw setError(E_FAIL, tr("Internal error adding a medium UUID to the map"));
|
---|
420 | itMap->second.push_back(mediumUuid);
|
---|
421 | }
|
---|
422 | }
|
---|
423 | }
|
---|
424 | else if ( deviceType == DeviceType_DVD
|
---|
425 | && pMedium)
|
---|
426 | {
|
---|
427 | /*
|
---|
428 | * check the minimal rules to grant access to export an image
|
---|
429 | * 1. no host drive CD/DVD image
|
---|
430 | * 2. the image must be accessible and readable
|
---|
431 | * 3. only ISO image is exported
|
---|
432 | */
|
---|
433 |
|
---|
434 | //1. no host drive CD/DVD image
|
---|
435 | BOOL fHostDrive = false;
|
---|
436 | rc = pMedium->COMGETTER(HostDrive)(&fHostDrive);
|
---|
437 | if (FAILED(rc)) throw rc;
|
---|
438 |
|
---|
439 | if(fHostDrive)
|
---|
440 | continue;
|
---|
441 |
|
---|
442 | //2. the image must be accessible and readable
|
---|
443 | MediumState_T ms;
|
---|
444 | rc = pMedium->RefreshState(&ms);
|
---|
445 | if (FAILED(rc)) throw rc;
|
---|
446 |
|
---|
447 | if (ms != MediumState_Created)
|
---|
448 | continue;
|
---|
449 |
|
---|
450 | //3. only ISO image is exported
|
---|
451 | Bstr bstrLocation;
|
---|
452 | rc = pMedium->COMGETTER(Location)(bstrLocation.asOutParam());
|
---|
453 | if (FAILED(rc)) throw rc;
|
---|
454 |
|
---|
455 | strLocation = bstrLocation;
|
---|
456 |
|
---|
457 | Utf8Str ext = strLocation;
|
---|
458 | ext.assignEx(RTPathSuffix(strLocation.c_str()));//returns extension with dot (".iso")
|
---|
459 |
|
---|
460 | int eq = ext.compare(".iso", Utf8Str::CaseInsensitive);
|
---|
461 | if (eq != 0)
|
---|
462 | continue;
|
---|
463 |
|
---|
464 | strTargetImageName = Utf8StrFmt("%s-disk%.3d.iso", strBasename.c_str(), ++pAppliance->m->cDisks);
|
---|
465 | if (strTargetImageName.length() > RTTAR_NAME_MAX)
|
---|
466 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
467 | tr("Cannot attach image '%s' -- file name too long"), strTargetImageName.c_str());
|
---|
468 |
|
---|
469 | rc = pMedium->COMGETTER(Size)(&llSize);
|
---|
470 | if (FAILED(rc)) throw rc;
|
---|
471 | }
|
---|
472 | // and how this translates to the virtual system
|
---|
473 | int32_t lControllerVsys = 0;
|
---|
474 | LONG lChannelVsys;
|
---|
475 |
|
---|
476 | switch (storageBus)
|
---|
477 | {
|
---|
478 | case StorageBus_IDE:
|
---|
479 | // this is the exact reverse to what we're doing in Appliance::taskThreadImportMachines,
|
---|
480 | // and it must be updated when that is changed!
|
---|
481 | // Before 3.2 we exported one IDE controller with channel 0-3, but we now maintain
|
---|
482 | // compatibility with what VMware does and export two IDE controllers with two channels each
|
---|
483 |
|
---|
484 | if (lChannel == 0 && lDevice == 0) // primary master
|
---|
485 | {
|
---|
486 | lControllerVsys = lIDEControllerPrimaryIndex;
|
---|
487 | lChannelVsys = 0;
|
---|
488 | }
|
---|
489 | else if (lChannel == 0 && lDevice == 1) // primary slave
|
---|
490 | {
|
---|
491 | lControllerVsys = lIDEControllerPrimaryIndex;
|
---|
492 | lChannelVsys = 1;
|
---|
493 | }
|
---|
494 | else if (lChannel == 1 && lDevice == 0) // secondary master; by default this is the CD-ROM but
|
---|
495 | // as of VirtualBox 3.1 that can change
|
---|
496 | {
|
---|
497 | lControllerVsys = lIDEControllerSecondaryIndex;
|
---|
498 | lChannelVsys = 0;
|
---|
499 | }
|
---|
500 | else if (lChannel == 1 && lDevice == 1) // secondary slave
|
---|
501 | {
|
---|
502 | lControllerVsys = lIDEControllerSecondaryIndex;
|
---|
503 | lChannelVsys = 1;
|
---|
504 | }
|
---|
505 | else
|
---|
506 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
507 | tr("Cannot handle medium attachment: channel is %d, device is %d"), lChannel, lDevice);
|
---|
508 | break;
|
---|
509 |
|
---|
510 | case StorageBus_SATA:
|
---|
511 | lChannelVsys = lChannel; // should be between 0 and 29
|
---|
512 | lControllerVsys = lSATAControllerIndex;
|
---|
513 | break;
|
---|
514 |
|
---|
515 | case StorageBus_SCSI:
|
---|
516 | case StorageBus_SAS:
|
---|
517 | lChannelVsys = lChannel; // should be between 0 and 15
|
---|
518 | lControllerVsys = lSCSIControllerIndex;
|
---|
519 | break;
|
---|
520 |
|
---|
521 | case StorageBus_Floppy:
|
---|
522 | lChannelVsys = 0;
|
---|
523 | lControllerVsys = 0;
|
---|
524 | break;
|
---|
525 |
|
---|
526 | default:
|
---|
527 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
528 | tr("Cannot handle medium attachment: storageBus is %d, channel is %d, device is %d"),
|
---|
529 | storageBus, lChannel, lDevice);
|
---|
530 | }
|
---|
531 |
|
---|
532 | Utf8StrFmt strExtra("controller=%RI32;channel=%RI32", lControllerVsys, lChannelVsys);
|
---|
533 | Utf8Str strEmpty;
|
---|
534 |
|
---|
535 | switch (deviceType)
|
---|
536 | {
|
---|
537 | case DeviceType_HardDisk:
|
---|
538 | Log(("Adding VirtualSystemDescriptionType_HardDiskImage, disk size: %RI64\n", llSize));
|
---|
539 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_HardDiskImage,
|
---|
540 | strTargetImageName, // disk ID: let's use the name
|
---|
541 | strTargetImageName, // OVF value:
|
---|
542 | strLocation, // vbox value: media path
|
---|
543 | (uint32_t)(llSize / _1M),
|
---|
544 | strExtra);
|
---|
545 | break;
|
---|
546 |
|
---|
547 | case DeviceType_DVD:
|
---|
548 | Log(("Adding VirtualSystemDescriptionType_CDROM, disk size: %RI64\n", llSize));
|
---|
549 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_CDROM,
|
---|
550 | strTargetImageName, // disk ID
|
---|
551 | strTargetImageName, // OVF value
|
---|
552 | strLocation, // vbox value
|
---|
553 | (uint32_t)(llSize / _1M),// ulSize
|
---|
554 | strExtra);
|
---|
555 | break;
|
---|
556 |
|
---|
557 | case DeviceType_Floppy:
|
---|
558 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_Floppy,
|
---|
559 | strEmpty, // disk ID
|
---|
560 | strEmpty, // OVF value
|
---|
561 | strEmpty, // vbox value
|
---|
562 | 1, // ulSize
|
---|
563 | strExtra);
|
---|
564 | break;
|
---|
565 |
|
---|
566 | default: break; /* Shut up MSC. */
|
---|
567 | }
|
---|
568 | }
|
---|
569 |
|
---|
570 | // <const name="NetworkAdapter" />
|
---|
571 | uint32_t maxNetworkAdapters = Global::getMaxNetworkAdapters(i_getChipsetType());
|
---|
572 | size_t a;
|
---|
573 | for (a = 0; a < maxNetworkAdapters; ++a)
|
---|
574 | {
|
---|
575 | ComPtr<INetworkAdapter> pNetworkAdapter;
|
---|
576 | BOOL fEnabled;
|
---|
577 | NetworkAdapterType_T adapterType;
|
---|
578 | NetworkAttachmentType_T attachmentType;
|
---|
579 |
|
---|
580 | rc = GetNetworkAdapter((ULONG)a, pNetworkAdapter.asOutParam());
|
---|
581 | if (FAILED(rc)) throw rc;
|
---|
582 | /* Enable the network card & set the adapter type */
|
---|
583 | rc = pNetworkAdapter->COMGETTER(Enabled)(&fEnabled);
|
---|
584 | if (FAILED(rc)) throw rc;
|
---|
585 |
|
---|
586 | if (fEnabled)
|
---|
587 | {
|
---|
588 | rc = pNetworkAdapter->COMGETTER(AdapterType)(&adapterType);
|
---|
589 | if (FAILED(rc)) throw rc;
|
---|
590 |
|
---|
591 | rc = pNetworkAdapter->COMGETTER(AttachmentType)(&attachmentType);
|
---|
592 | if (FAILED(rc)) throw rc;
|
---|
593 |
|
---|
594 | Utf8Str strAttachmentType = convertNetworkAttachmentTypeToString(attachmentType);
|
---|
595 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_NetworkAdapter,
|
---|
596 | "", // ref
|
---|
597 | strAttachmentType, // orig
|
---|
598 | Utf8StrFmt("%RI32", (uint32_t)adapterType), // conf
|
---|
599 | 0,
|
---|
600 | Utf8StrFmt("type=%s", strAttachmentType.c_str())); // extra conf
|
---|
601 | }
|
---|
602 | }
|
---|
603 |
|
---|
604 | // <const name="USBController" />
|
---|
605 | #ifdef VBOX_WITH_USB
|
---|
606 | if (fUSBEnabled)
|
---|
607 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_USBController, "", "", "");
|
---|
608 | #endif /* VBOX_WITH_USB */
|
---|
609 |
|
---|
610 | // <const name="SoundCard" />
|
---|
611 | if (fAudioEnabled)
|
---|
612 | pNewDesc->i_addEntry(VirtualSystemDescriptionType_SoundCard,
|
---|
613 | "",
|
---|
614 | "ensoniq1371", // this is what OVFTool writes and VMware supports
|
---|
615 | Utf8StrFmt("%RI32", audioController));
|
---|
616 |
|
---|
617 | /* We return the new description to the caller */
|
---|
618 | ComPtr<IVirtualSystemDescription> copy(pNewDesc);
|
---|
619 | copy.queryInterfaceTo(aDescription.asOutParam());
|
---|
620 |
|
---|
621 | AutoWriteLock alock(pAppliance COMMA_LOCKVAL_SRC_POS);
|
---|
622 | // finally, add the virtual system to the appliance
|
---|
623 | pAppliance->m->virtualSystemDescriptions.push_back(pNewDesc);
|
---|
624 | }
|
---|
625 | catch(HRESULT arc)
|
---|
626 | {
|
---|
627 | rc = arc;
|
---|
628 | }
|
---|
629 |
|
---|
630 | return rc;
|
---|
631 | }
|
---|
632 |
|
---|
633 | ////////////////////////////////////////////////////////////////////////////////
|
---|
634 | //
|
---|
635 | // IAppliance public methods
|
---|
636 | //
|
---|
637 | ////////////////////////////////////////////////////////////////////////////////
|
---|
638 |
|
---|
639 | /**
|
---|
640 | * Public method implementation.
|
---|
641 | * @param aFormat Appliance format.
|
---|
642 | * @param aOptions Export options.
|
---|
643 | * @param aPath Path to write the appliance to.
|
---|
644 | * @param aProgress Progress object.
|
---|
645 | * @return
|
---|
646 | */
|
---|
647 | HRESULT Appliance::write(const com::Utf8Str &aFormat,
|
---|
648 | const std::vector<ExportOptions_T> &aOptions,
|
---|
649 | const com::Utf8Str &aPath,
|
---|
650 | ComPtr<IProgress> &aProgress)
|
---|
651 | {
|
---|
652 | AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
|
---|
653 |
|
---|
654 | m->optListExport.clear();
|
---|
655 | if (aOptions.size())
|
---|
656 | {
|
---|
657 | for (size_t i = 0; i < aOptions.size(); ++i)
|
---|
658 | {
|
---|
659 | m->optListExport.insert(i, aOptions[i]);
|
---|
660 | }
|
---|
661 | }
|
---|
662 |
|
---|
663 | HRESULT rc = S_OK;
|
---|
664 | // AssertReturn(!(m->optListExport.contains(ExportOptions_CreateManifest)
|
---|
665 | // && m->optListExport.contains(ExportOptions_ExportDVDImages)), E_INVALIDARG);
|
---|
666 |
|
---|
667 | /* Parse all necessary info out of the URI */
|
---|
668 | i_parseURI(aPath, m->locInfo);
|
---|
669 |
|
---|
670 | if (m->locInfo.storageType == VFSType_Cloud)
|
---|
671 | {
|
---|
672 | rc = S_OK;
|
---|
673 | ComObjPtr<Progress> progress;
|
---|
674 | try
|
---|
675 | {
|
---|
676 | rc = i_writeCloudImpl(m->locInfo, progress);
|
---|
677 | }
|
---|
678 | catch (HRESULT aRC)
|
---|
679 | {
|
---|
680 | rc = aRC;
|
---|
681 | }
|
---|
682 |
|
---|
683 | if (SUCCEEDED(rc))
|
---|
684 | /* Return progress to the caller */
|
---|
685 | progress.queryInterfaceTo(aProgress.asOutParam());
|
---|
686 | }
|
---|
687 | else
|
---|
688 | {
|
---|
689 | m->fExportISOImages = m->optListExport.contains(ExportOptions_ExportDVDImages);
|
---|
690 |
|
---|
691 | if (!m->fExportISOImages)/* remove all ISO images from VirtualSystemDescription */
|
---|
692 | {
|
---|
693 | for (list<ComObjPtr<VirtualSystemDescription> >::const_iterator
|
---|
694 | it = m->virtualSystemDescriptions.begin();
|
---|
695 | it != m->virtualSystemDescriptions.end();
|
---|
696 | ++it)
|
---|
697 | {
|
---|
698 | ComObjPtr<VirtualSystemDescription> vsdescThis = *it;
|
---|
699 | std::list<VirtualSystemDescriptionEntry*> skipped = vsdescThis->i_findByType(VirtualSystemDescriptionType_CDROM);
|
---|
700 | std::list<VirtualSystemDescriptionEntry*>::const_iterator itSkipped = skipped.begin();
|
---|
701 | while (itSkipped != skipped.end())
|
---|
702 | {
|
---|
703 | (*itSkipped)->skipIt = true;
|
---|
704 | ++itSkipped;
|
---|
705 | }
|
---|
706 | }
|
---|
707 | }
|
---|
708 |
|
---|
709 | // do not allow entering this method if the appliance is busy reading or writing
|
---|
710 | if (!i_isApplianceIdle())
|
---|
711 | return E_ACCESSDENIED;
|
---|
712 |
|
---|
713 | // figure the export format. We exploit the unknown version value for oracle public cloud.
|
---|
714 | ovf::OVFVersion_T ovfF;
|
---|
715 | if (aFormat == "ovf-0.9")
|
---|
716 | ovfF = ovf::OVFVersion_0_9;
|
---|
717 | else if (aFormat == "ovf-1.0")
|
---|
718 | ovfF = ovf::OVFVersion_1_0;
|
---|
719 | else if (aFormat == "ovf-2.0")
|
---|
720 | ovfF = ovf::OVFVersion_2_0;
|
---|
721 | else if (aFormat == "opc-1.0")
|
---|
722 | ovfF = ovf::OVFVersion_unknown;
|
---|
723 | else
|
---|
724 | return setError(VBOX_E_FILE_ERROR,
|
---|
725 | tr("Invalid format \"%s\" specified"), aFormat.c_str());
|
---|
726 |
|
---|
727 | // Check the extension.
|
---|
728 | if (ovfF == ovf::OVFVersion_unknown)
|
---|
729 | {
|
---|
730 | if (!aPath.endsWith(".tar.gz", Utf8Str::CaseInsensitive))
|
---|
731 | return setError(VBOX_E_FILE_ERROR,
|
---|
732 | tr("OPC appliance file must have .tar.gz extension"));
|
---|
733 | }
|
---|
734 | else if ( !aPath.endsWith(".ovf", Utf8Str::CaseInsensitive)
|
---|
735 | && !aPath.endsWith(".ova", Utf8Str::CaseInsensitive))
|
---|
736 | return setError(VBOX_E_FILE_ERROR, tr("Appliance file must have .ovf or .ova extension"));
|
---|
737 |
|
---|
738 |
|
---|
739 | /* As of OVF 2.0 we have to use SHA-256 in the manifest. */
|
---|
740 | m->fManifest = m->optListExport.contains(ExportOptions_CreateManifest);
|
---|
741 | if (m->fManifest)
|
---|
742 | m->fDigestTypes = ovfF >= ovf::OVFVersion_2_0 ? RTMANIFEST_ATTR_SHA256 : RTMANIFEST_ATTR_SHA1;
|
---|
743 | Assert(m->hOurManifest == NIL_RTMANIFEST);
|
---|
744 |
|
---|
745 | /* Check whether all passwords are supplied or error out. */
|
---|
746 | if (m->m_cPwProvided < m->m_vecPasswordIdentifiers.size())
|
---|
747 | return setError(VBOX_E_INVALID_OBJECT_STATE,
|
---|
748 | tr("Appliance export failed because not all passwords were provided for all encrypted media"));
|
---|
749 |
|
---|
750 | ComObjPtr<Progress> progress;
|
---|
751 | rc = S_OK;
|
---|
752 | try
|
---|
753 | {
|
---|
754 | /* Parse all necessary info out of the URI */
|
---|
755 | i_parseURI(aPath, m->locInfo);
|
---|
756 |
|
---|
757 | switch (ovfF)
|
---|
758 | {
|
---|
759 | case ovf::OVFVersion_unknown:
|
---|
760 | rc = i_writeOPCImpl(ovfF, m->locInfo, progress);
|
---|
761 | break;
|
---|
762 | default:
|
---|
763 | rc = i_writeImpl(ovfF, m->locInfo, progress);
|
---|
764 | break;
|
---|
765 | }
|
---|
766 |
|
---|
767 | }
|
---|
768 | catch (HRESULT aRC)
|
---|
769 | {
|
---|
770 | rc = aRC;
|
---|
771 | }
|
---|
772 |
|
---|
773 | if (SUCCEEDED(rc))
|
---|
774 | /* Return progress to the caller */
|
---|
775 | progress.queryInterfaceTo(aProgress.asOutParam());
|
---|
776 | }
|
---|
777 |
|
---|
778 | return rc;
|
---|
779 | }
|
---|
780 |
|
---|
781 | ////////////////////////////////////////////////////////////////////////////////
|
---|
782 | //
|
---|
783 | // Appliance private methods
|
---|
784 | //
|
---|
785 | ////////////////////////////////////////////////////////////////////////////////
|
---|
786 |
|
---|
787 | /*******************************************************************************
|
---|
788 | * Export stuff
|
---|
789 | ******************************************************************************/
|
---|
790 |
|
---|
791 | /**
|
---|
792 | * Implementation for writing out the OVF to disk. This starts a new thread which will call
|
---|
793 | * Appliance::taskThreadWriteOVF().
|
---|
794 | *
|
---|
795 | * This is in a separate private method because it is used from two locations:
|
---|
796 | *
|
---|
797 | * 1) from the public Appliance::Write().
|
---|
798 | *
|
---|
799 | * 2) in a second worker thread; in that case, Appliance::Write() called Appliance::i_writeImpl(), which
|
---|
800 | * called Appliance::i_writeFSOVA(), which called Appliance::i_writeImpl(), which then called this again.
|
---|
801 | *
|
---|
802 | * @param aFormat
|
---|
803 | * @param aLocInfo
|
---|
804 | * @param aProgress
|
---|
805 | * @return
|
---|
806 | */
|
---|
807 | HRESULT Appliance::i_writeImpl(ovf::OVFVersion_T aFormat, const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress)
|
---|
808 | {
|
---|
809 | /* Prepare progress object: */
|
---|
810 | HRESULT hrc;
|
---|
811 | try
|
---|
812 | {
|
---|
813 | hrc = i_setUpProgress(aProgress,
|
---|
814 | Utf8StrFmt(tr("Export appliance '%s'"), aLocInfo.strPath.c_str()),
|
---|
815 | aLocInfo.storageType == VFSType_File ? WriteFile : WriteS3);
|
---|
816 | }
|
---|
817 | catch (std::bad_alloc &) /* only Utf8StrFmt */
|
---|
818 | {
|
---|
819 | hrc = E_OUTOFMEMORY;
|
---|
820 | }
|
---|
821 | if (SUCCEEDED(hrc))
|
---|
822 | {
|
---|
823 | /* Create our worker task: */
|
---|
824 | TaskOVF *pTask = NULL;
|
---|
825 | try
|
---|
826 | {
|
---|
827 | pTask = new TaskOVF(this, TaskOVF::Write, aLocInfo, aProgress);
|
---|
828 | }
|
---|
829 | catch (std::bad_alloc &)
|
---|
830 | {
|
---|
831 | return E_OUTOFMEMORY;
|
---|
832 | }
|
---|
833 |
|
---|
834 | /* The OVF version to produce: */
|
---|
835 | pTask->enFormat = aFormat;
|
---|
836 |
|
---|
837 | /* Start the thread: */
|
---|
838 | hrc = pTask->createThread();
|
---|
839 | pTask = NULL;
|
---|
840 | }
|
---|
841 | return hrc;
|
---|
842 | }
|
---|
843 |
|
---|
844 |
|
---|
845 | HRESULT Appliance::i_writeCloudImpl(const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress)
|
---|
846 | {
|
---|
847 | for (list<ComObjPtr<VirtualSystemDescription> >::const_iterator
|
---|
848 | it = m->virtualSystemDescriptions.begin();
|
---|
849 | it != m->virtualSystemDescriptions.end();
|
---|
850 | ++it)
|
---|
851 | {
|
---|
852 | ComObjPtr<VirtualSystemDescription> vsdescThis = *it;
|
---|
853 | std::list<VirtualSystemDescriptionEntry*> skipped = vsdescThis->i_findByType(VirtualSystemDescriptionType_CDROM);
|
---|
854 | std::list<VirtualSystemDescriptionEntry*>::const_iterator itSkipped = skipped.begin();
|
---|
855 | while (itSkipped != skipped.end())
|
---|
856 | {
|
---|
857 | (*itSkipped)->skipIt = true;
|
---|
858 | ++itSkipped;
|
---|
859 | }
|
---|
860 |
|
---|
861 | //remove all disks from the VirtualSystemDescription exept one
|
---|
862 | skipped = vsdescThis->i_findByType(VirtualSystemDescriptionType_HardDiskImage);
|
---|
863 | itSkipped = skipped.begin();
|
---|
864 |
|
---|
865 | Utf8Str strBootLocation;
|
---|
866 | while (itSkipped != skipped.end())
|
---|
867 | {
|
---|
868 | if (strBootLocation.isEmpty())
|
---|
869 | strBootLocation = (*itSkipped)->strVBoxCurrent;
|
---|
870 | else
|
---|
871 | (*itSkipped)->skipIt = true;
|
---|
872 | ++itSkipped;
|
---|
873 | }
|
---|
874 |
|
---|
875 | //just in case
|
---|
876 | if (vsdescThis->i_findByType(VirtualSystemDescriptionType_HardDiskImage).empty())
|
---|
877 | return setError(VBOX_E_OBJECT_NOT_FOUND, tr("There are no images to export to Cloud after preparation steps"));
|
---|
878 |
|
---|
879 | /*
|
---|
880 | * Fills out the OCI settings
|
---|
881 | */
|
---|
882 | std::list<VirtualSystemDescriptionEntry*> profileName
|
---|
883 | = vsdescThis->i_findByType(VirtualSystemDescriptionType_CloudProfileName);
|
---|
884 | if (profileName.size() > 1)
|
---|
885 | return setError(VBOX_E_OBJECT_NOT_FOUND, tr("Cloud: More than one profile name was found."));
|
---|
886 | if (profileName.empty())
|
---|
887 | return setError(VBOX_E_OBJECT_NOT_FOUND, tr("Cloud: Profile name wasn't specified."));
|
---|
888 |
|
---|
889 | if (profileName.front()->strVBoxCurrent.isEmpty())
|
---|
890 | return setError(VBOX_E_OBJECT_NOT_FOUND, tr("Cloud: Cloud user profile name is empty"));
|
---|
891 |
|
---|
892 | LogRel(("profile name: %s\n", profileName.front()->strVBoxCurrent.c_str()));
|
---|
893 | }
|
---|
894 |
|
---|
895 | // we need to do that as otherwise Task won't be created successfully
|
---|
896 | /// @todo r=bird: What's 'that' here exactly?
|
---|
897 | HRESULT hrc = aProgress.createObject();
|
---|
898 | if (SUCCEEDED(hrc))
|
---|
899 | {
|
---|
900 | if (aLocInfo.strProvider.equals("OCI"))
|
---|
901 | {
|
---|
902 | hrc = aProgress->init(mVirtualBox, static_cast<IAppliance *>(this),
|
---|
903 | Utf8Str(tr("Exporting VM to Cloud...")),
|
---|
904 | TRUE /* aCancelable */,
|
---|
905 | 5, // ULONG cOperations,
|
---|
906 | 1000, // ULONG ulTotalOperationsWeight,
|
---|
907 | Utf8Str(tr("Exporting VM to Cloud...")), // aFirstOperationDescription
|
---|
908 | 10); // ULONG ulFirstOperationWeight
|
---|
909 | }
|
---|
910 | else
|
---|
911 | hrc = setErrorVrc(VBOX_E_NOT_SUPPORTED,
|
---|
912 | tr("Only \"OCI\" cloud provider is supported for now. \"%s\" isn't supported."),
|
---|
913 | aLocInfo.strProvider.c_str());
|
---|
914 | if (SUCCEEDED(hrc))
|
---|
915 | {
|
---|
916 | /* Initialize the worker task: */
|
---|
917 | TaskCloud *pTask = NULL;
|
---|
918 | try
|
---|
919 | {
|
---|
920 | pTask = new Appliance::TaskCloud(this, TaskCloud::Export, aLocInfo, aProgress);
|
---|
921 | }
|
---|
922 | catch (std::bad_alloc &)
|
---|
923 | {
|
---|
924 | pTask = NULL;
|
---|
925 | hrc = E_OUTOFMEMORY;
|
---|
926 | }
|
---|
927 | if (SUCCEEDED(hrc))
|
---|
928 | {
|
---|
929 | /* Kick off the worker task: */
|
---|
930 | hrc = pTask->createThread();
|
---|
931 | pTask = NULL;
|
---|
932 | }
|
---|
933 | }
|
---|
934 | }
|
---|
935 | return hrc;
|
---|
936 | }
|
---|
937 |
|
---|
938 | HRESULT Appliance::i_writeOPCImpl(ovf::OVFVersion_T aFormat, const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress)
|
---|
939 | {
|
---|
940 | RT_NOREF(aFormat);
|
---|
941 |
|
---|
942 | /* Prepare progress object: */
|
---|
943 | HRESULT hrc;
|
---|
944 | try
|
---|
945 | {
|
---|
946 | hrc = i_setUpProgress(aProgress,
|
---|
947 | Utf8StrFmt(tr("Export appliance '%s'"), aLocInfo.strPath.c_str()),
|
---|
948 | aLocInfo.storageType == VFSType_File ? WriteFile : WriteS3);
|
---|
949 | }
|
---|
950 | catch (std::bad_alloc &) /* only Utf8StrFmt */
|
---|
951 | {
|
---|
952 | hrc = E_OUTOFMEMORY;
|
---|
953 | }
|
---|
954 | if (SUCCEEDED(hrc))
|
---|
955 | {
|
---|
956 | /* Create our worker task: */
|
---|
957 | TaskOPC *pTask = NULL;
|
---|
958 | try
|
---|
959 | {
|
---|
960 | pTask = new Appliance::TaskOPC(this, TaskOPC::Export, aLocInfo, aProgress);
|
---|
961 | }
|
---|
962 | catch (std::bad_alloc &)
|
---|
963 | {
|
---|
964 | return E_OUTOFMEMORY;
|
---|
965 | }
|
---|
966 |
|
---|
967 | /* Kick it off: */
|
---|
968 | hrc = pTask->createThread();
|
---|
969 | pTask = NULL;
|
---|
970 | }
|
---|
971 | return hrc;
|
---|
972 | }
|
---|
973 |
|
---|
974 |
|
---|
975 | /**
|
---|
976 | * Called from Appliance::i_writeFS() for creating a XML document for this
|
---|
977 | * Appliance.
|
---|
978 | *
|
---|
979 | * @param writeLock The current write lock.
|
---|
980 | * @param doc The xml document to fill.
|
---|
981 | * @param stack Structure for temporary private
|
---|
982 | * data shared with caller.
|
---|
983 | * @param strPath Path to the target OVF.
|
---|
984 | * instance for which to write XML.
|
---|
985 | * @param enFormat OVF format (0.9 or 1.0).
|
---|
986 | */
|
---|
987 | void Appliance::i_buildXML(AutoWriteLockBase& writeLock,
|
---|
988 | xml::Document &doc,
|
---|
989 | XMLStack &stack,
|
---|
990 | const Utf8Str &strPath,
|
---|
991 | ovf::OVFVersion_T enFormat)
|
---|
992 | {
|
---|
993 | xml::ElementNode *pelmRoot = doc.createRootElement("Envelope");
|
---|
994 |
|
---|
995 | pelmRoot->setAttribute("ovf:version", enFormat == ovf::OVFVersion_2_0 ? "2.0"
|
---|
996 | : enFormat == ovf::OVFVersion_1_0 ? "1.0"
|
---|
997 | : "0.9");
|
---|
998 | pelmRoot->setAttribute("xml:lang", "en-US");
|
---|
999 |
|
---|
1000 | Utf8Str strNamespace;
|
---|
1001 |
|
---|
1002 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1003 | {
|
---|
1004 | strNamespace = ovf::OVF09_URI_string;
|
---|
1005 | }
|
---|
1006 | else if (enFormat == ovf::OVFVersion_1_0)
|
---|
1007 | {
|
---|
1008 | strNamespace = ovf::OVF10_URI_string;
|
---|
1009 | }
|
---|
1010 | else
|
---|
1011 | {
|
---|
1012 | strNamespace = ovf::OVF20_URI_string;
|
---|
1013 | }
|
---|
1014 |
|
---|
1015 | pelmRoot->setAttribute("xmlns", strNamespace);
|
---|
1016 | pelmRoot->setAttribute("xmlns:ovf", strNamespace);
|
---|
1017 |
|
---|
1018 | // pelmRoot->setAttribute("xmlns:ovfstr", "http://schema.dmtf.org/ovf/strings/1");
|
---|
1019 | pelmRoot->setAttribute("xmlns:rasd", "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_ResourceAllocationSettingData");
|
---|
1020 | pelmRoot->setAttribute("xmlns:vssd", "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_VirtualSystemSettingData");
|
---|
1021 | pelmRoot->setAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
|
---|
1022 | pelmRoot->setAttribute("xmlns:vbox", "http://www.virtualbox.org/ovf/machine");
|
---|
1023 | // pelmRoot->setAttribute("xsi:schemaLocation", "http://schemas.dmtf.org/ovf/envelope/1 ../ovf-envelope.xsd");
|
---|
1024 |
|
---|
1025 | if (enFormat == ovf::OVFVersion_2_0)
|
---|
1026 | {
|
---|
1027 | pelmRoot->setAttribute("xmlns:epasd",
|
---|
1028 | "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_EthernetPortAllocationSettingData.xsd");
|
---|
1029 | pelmRoot->setAttribute("xmlns:sasd",
|
---|
1030 | "http://schemas.dmtf.org/wbem/wscim/1/cim-schema/2/CIM_StorageAllocationSettingData.xsd");
|
---|
1031 | }
|
---|
1032 |
|
---|
1033 | // <Envelope>/<References>
|
---|
1034 | xml::ElementNode *pelmReferences = pelmRoot->createChild("References"); // 0.9 and 1.0
|
---|
1035 |
|
---|
1036 | /* <Envelope>/<DiskSection>:
|
---|
1037 | <DiskSection>
|
---|
1038 | <Info>List of the virtual disks used in the package</Info>
|
---|
1039 | <Disk ovf:capacity="4294967296" ovf:diskId="lamp" ovf:format="..." ovf:populatedSize="1924967692"/>
|
---|
1040 | </DiskSection> */
|
---|
1041 | xml::ElementNode *pelmDiskSection;
|
---|
1042 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1043 | {
|
---|
1044 | // <Section xsi:type="ovf:DiskSection_Type">
|
---|
1045 | pelmDiskSection = pelmRoot->createChild("Section");
|
---|
1046 | pelmDiskSection->setAttribute("xsi:type", "ovf:DiskSection_Type");
|
---|
1047 | }
|
---|
1048 | else
|
---|
1049 | pelmDiskSection = pelmRoot->createChild("DiskSection");
|
---|
1050 |
|
---|
1051 | xml::ElementNode *pelmDiskSectionInfo = pelmDiskSection->createChild("Info");
|
---|
1052 | pelmDiskSectionInfo->addContent("List of the virtual disks used in the package");
|
---|
1053 |
|
---|
1054 | /* <Envelope>/<NetworkSection>:
|
---|
1055 | <NetworkSection>
|
---|
1056 | <Info>Logical networks used in the package</Info>
|
---|
1057 | <Network ovf:name="VM Network">
|
---|
1058 | <Description>The network that the LAMP Service will be available on</Description>
|
---|
1059 | </Network>
|
---|
1060 | </NetworkSection> */
|
---|
1061 | xml::ElementNode *pelmNetworkSection;
|
---|
1062 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1063 | {
|
---|
1064 | // <Section xsi:type="ovf:NetworkSection_Type">
|
---|
1065 | pelmNetworkSection = pelmRoot->createChild("Section");
|
---|
1066 | pelmNetworkSection->setAttribute("xsi:type", "ovf:NetworkSection_Type");
|
---|
1067 | }
|
---|
1068 | else
|
---|
1069 | pelmNetworkSection = pelmRoot->createChild("NetworkSection");
|
---|
1070 |
|
---|
1071 | xml::ElementNode *pelmNetworkSectionInfo = pelmNetworkSection->createChild("Info");
|
---|
1072 | pelmNetworkSectionInfo->addContent("Logical networks used in the package");
|
---|
1073 |
|
---|
1074 | // and here come the virtual systems:
|
---|
1075 |
|
---|
1076 | // write a collection if we have more than one virtual system _and_ we're
|
---|
1077 | // writing OVF 1.0; otherwise fail since ovftool can't import more than
|
---|
1078 | // one machine, it seems
|
---|
1079 | xml::ElementNode *pelmToAddVirtualSystemsTo;
|
---|
1080 | if (m->virtualSystemDescriptions.size() > 1)
|
---|
1081 | {
|
---|
1082 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1083 | throw setError(VBOX_E_FILE_ERROR,
|
---|
1084 | tr("Cannot export more than one virtual system with OVF 0.9, use OVF 1.0"));
|
---|
1085 |
|
---|
1086 | pelmToAddVirtualSystemsTo = pelmRoot->createChild("VirtualSystemCollection");
|
---|
1087 | pelmToAddVirtualSystemsTo->setAttribute("ovf:name", "ExportedVirtualBoxMachines"); // whatever
|
---|
1088 | }
|
---|
1089 | else
|
---|
1090 | pelmToAddVirtualSystemsTo = pelmRoot; // add virtual system directly under root element
|
---|
1091 |
|
---|
1092 | // this list receives pointers to the XML elements in the machine XML which
|
---|
1093 | // might have UUIDs that need fixing after we know the UUIDs of the exported images
|
---|
1094 | std::list<xml::ElementNode*> llElementsWithUuidAttributes;
|
---|
1095 | uint32_t ulFile = 1;
|
---|
1096 | /* Iterate through all virtual systems of that appliance */
|
---|
1097 | for (list<ComObjPtr<VirtualSystemDescription> >::const_iterator
|
---|
1098 | itV = m->virtualSystemDescriptions.begin();
|
---|
1099 | itV != m->virtualSystemDescriptions.end();
|
---|
1100 | ++itV)
|
---|
1101 | {
|
---|
1102 | ComObjPtr<VirtualSystemDescription> vsdescThis = *itV;
|
---|
1103 | i_buildXMLForOneVirtualSystem(writeLock,
|
---|
1104 | *pelmToAddVirtualSystemsTo,
|
---|
1105 | &llElementsWithUuidAttributes,
|
---|
1106 | vsdescThis,
|
---|
1107 | enFormat,
|
---|
1108 | stack); // disks and networks stack
|
---|
1109 |
|
---|
1110 | list<Utf8Str> diskList;
|
---|
1111 |
|
---|
1112 | for (list<Utf8Str>::const_iterator
|
---|
1113 | itDisk = stack.mapDiskSequenceForOneVM.begin();
|
---|
1114 | itDisk != stack.mapDiskSequenceForOneVM.end();
|
---|
1115 | ++itDisk)
|
---|
1116 | {
|
---|
1117 | const Utf8Str &strDiskID = *itDisk;
|
---|
1118 | const VirtualSystemDescriptionEntry *pDiskEntry = stack.mapDisks[strDiskID];
|
---|
1119 |
|
---|
1120 | // source path: where the VBox image is
|
---|
1121 | const Utf8Str &strSrcFilePath = pDiskEntry->strVBoxCurrent;
|
---|
1122 | Bstr bstrSrcFilePath(strSrcFilePath);
|
---|
1123 |
|
---|
1124 | //skip empty Medium. There are no information to add into section <References> or <DiskSection>
|
---|
1125 | if (strSrcFilePath.isEmpty() ||
|
---|
1126 | pDiskEntry->skipIt == true)
|
---|
1127 | continue;
|
---|
1128 |
|
---|
1129 | // Do NOT check here whether the file exists. FindMedium will figure
|
---|
1130 | // that out, and filesystem-based tests are simply wrong in the
|
---|
1131 | // general case (think of iSCSI).
|
---|
1132 |
|
---|
1133 | // We need some info from the source disks
|
---|
1134 | ComPtr<IMedium> pSourceDisk;
|
---|
1135 | //DeviceType_T deviceType = DeviceType_HardDisk;// by default
|
---|
1136 |
|
---|
1137 | Log(("Finding source disk \"%ls\"\n", bstrSrcFilePath.raw()));
|
---|
1138 |
|
---|
1139 | HRESULT rc;
|
---|
1140 |
|
---|
1141 | if (pDiskEntry->type == VirtualSystemDescriptionType_HardDiskImage)
|
---|
1142 | {
|
---|
1143 | rc = mVirtualBox->OpenMedium(bstrSrcFilePath.raw(),
|
---|
1144 | DeviceType_HardDisk,
|
---|
1145 | AccessMode_ReadWrite,
|
---|
1146 | FALSE /* fForceNewUuid */,
|
---|
1147 | pSourceDisk.asOutParam());
|
---|
1148 | if (FAILED(rc))
|
---|
1149 | throw rc;
|
---|
1150 | }
|
---|
1151 | else if (pDiskEntry->type == VirtualSystemDescriptionType_CDROM)//may be, this is CD/DVD
|
---|
1152 | {
|
---|
1153 | rc = mVirtualBox->OpenMedium(bstrSrcFilePath.raw(),
|
---|
1154 | DeviceType_DVD,
|
---|
1155 | AccessMode_ReadOnly,
|
---|
1156 | FALSE,
|
---|
1157 | pSourceDisk.asOutParam());
|
---|
1158 | if (FAILED(rc))
|
---|
1159 | throw rc;
|
---|
1160 | }
|
---|
1161 |
|
---|
1162 | Bstr uuidSource;
|
---|
1163 | rc = pSourceDisk->COMGETTER(Id)(uuidSource.asOutParam());
|
---|
1164 | if (FAILED(rc)) throw rc;
|
---|
1165 | Guid guidSource(uuidSource);
|
---|
1166 |
|
---|
1167 | // output filename
|
---|
1168 | const Utf8Str &strTargetFileNameOnly = pDiskEntry->strOvf;
|
---|
1169 |
|
---|
1170 | // target path needs to be composed from where the output OVF is
|
---|
1171 | Utf8Str strTargetFilePath(strPath);
|
---|
1172 | strTargetFilePath.stripFilename();
|
---|
1173 | strTargetFilePath.append("/");
|
---|
1174 | strTargetFilePath.append(strTargetFileNameOnly);
|
---|
1175 |
|
---|
1176 | // We are always exporting to VMDK stream optimized for now
|
---|
1177 | //Bstr bstrSrcFormat = L"VMDK";//not used
|
---|
1178 |
|
---|
1179 | diskList.push_back(strTargetFilePath);
|
---|
1180 |
|
---|
1181 | LONG64 cbCapacity = 0; // size reported to guest
|
---|
1182 | rc = pSourceDisk->COMGETTER(LogicalSize)(&cbCapacity);
|
---|
1183 | if (FAILED(rc)) throw rc;
|
---|
1184 | /// @todo r=poetzsch: wrong it is reported in bytes ...
|
---|
1185 | // capacity is reported in megabytes, so...
|
---|
1186 | //cbCapacity *= _1M;
|
---|
1187 |
|
---|
1188 | Guid guidTarget; /* Creates a new uniq number for the target disk. */
|
---|
1189 | guidTarget.create();
|
---|
1190 |
|
---|
1191 | // now handle the XML for the disk:
|
---|
1192 | Utf8StrFmt strFileRef("file%RI32", ulFile++);
|
---|
1193 | // <File ovf:href="WindowsXpProfessional-disk1.vmdk" ovf:id="file1" ovf:size="1710381056"/>
|
---|
1194 | xml::ElementNode *pelmFile = pelmReferences->createChild("File");
|
---|
1195 | pelmFile->setAttribute("ovf:id", strFileRef);
|
---|
1196 | pelmFile->setAttribute("ovf:href", strTargetFileNameOnly);
|
---|
1197 | /// @todo the actual size is not available at this point of time,
|
---|
1198 | // cause the disk will be compressed. The 1.0 standard says this is
|
---|
1199 | // optional! 1.1 isn't fully clear if the "gzip" format is used.
|
---|
1200 | // Need to be checked. */
|
---|
1201 | // pelmFile->setAttribute("ovf:size", Utf8StrFmt("%RI64", cbFile).c_str());
|
---|
1202 |
|
---|
1203 | // add disk to XML Disks section
|
---|
1204 | // <Disk ovf:capacity="8589934592" ovf:diskId="vmdisk1" ovf:fileRef="file1" ovf:format="..."/>
|
---|
1205 | xml::ElementNode *pelmDisk = pelmDiskSection->createChild("Disk");
|
---|
1206 | pelmDisk->setAttribute("ovf:capacity", Utf8StrFmt("%RI64", cbCapacity).c_str());
|
---|
1207 | pelmDisk->setAttribute("ovf:diskId", strDiskID);
|
---|
1208 | pelmDisk->setAttribute("ovf:fileRef", strFileRef);
|
---|
1209 |
|
---|
1210 | if (pDiskEntry->type == VirtualSystemDescriptionType_HardDiskImage)//deviceType == DeviceType_HardDisk
|
---|
1211 | {
|
---|
1212 | pelmDisk->setAttribute("ovf:format",
|
---|
1213 | (enFormat == ovf::OVFVersion_0_9)
|
---|
1214 | ? "http://www.vmware.com/specifications/vmdk.html#sparse" // must be sparse or ovftoo
|
---|
1215 | : "http://www.vmware.com/interfaces/specifications/vmdk.html#streamOptimized"
|
---|
1216 | // correct string as communicated to us by VMware (public bug #6612)
|
---|
1217 | );
|
---|
1218 | }
|
---|
1219 | else //pDiskEntry->type == VirtualSystemDescriptionType_CDROM, deviceType == DeviceType_DVD
|
---|
1220 | {
|
---|
1221 | pelmDisk->setAttribute("ovf:format",
|
---|
1222 | "http://www.ecma-international.org/publications/standards/Ecma-119.htm"
|
---|
1223 | );
|
---|
1224 | }
|
---|
1225 |
|
---|
1226 | // add the UUID of the newly target image to the OVF disk element, but in the
|
---|
1227 | // vbox: namespace since it's not part of the standard
|
---|
1228 | pelmDisk->setAttribute("vbox:uuid", Utf8StrFmt("%RTuuid", guidTarget.raw()).c_str());
|
---|
1229 |
|
---|
1230 | // now, we might have other XML elements from vbox:Machine pointing to this image,
|
---|
1231 | // but those would refer to the UUID of the _source_ image (which we created the
|
---|
1232 | // export image from); those UUIDs need to be fixed to the export image
|
---|
1233 | Utf8Str strGuidSourceCurly = guidSource.toStringCurly();
|
---|
1234 | for (std::list<xml::ElementNode*>::const_iterator
|
---|
1235 | it = llElementsWithUuidAttributes.begin();
|
---|
1236 | it != llElementsWithUuidAttributes.end();
|
---|
1237 | ++it)
|
---|
1238 | {
|
---|
1239 | xml::ElementNode *pelmImage = *it;
|
---|
1240 | Utf8Str strUUID;
|
---|
1241 | pelmImage->getAttributeValue("uuid", strUUID);
|
---|
1242 | if (strUUID == strGuidSourceCurly)
|
---|
1243 | // overwrite existing uuid attribute
|
---|
1244 | pelmImage->setAttribute("uuid", guidTarget.toStringCurly());
|
---|
1245 | }
|
---|
1246 | }
|
---|
1247 | llElementsWithUuidAttributes.clear();
|
---|
1248 | stack.mapDiskSequenceForOneVM.clear();
|
---|
1249 | }
|
---|
1250 |
|
---|
1251 | // now, fill in the network section we set up empty above according
|
---|
1252 | // to the networks we found with the hardware items
|
---|
1253 | for (map<Utf8Str, bool>::const_iterator
|
---|
1254 | it = stack.mapNetworks.begin();
|
---|
1255 | it != stack.mapNetworks.end();
|
---|
1256 | ++it)
|
---|
1257 | {
|
---|
1258 | const Utf8Str &strNetwork = it->first;
|
---|
1259 | xml::ElementNode *pelmNetwork = pelmNetworkSection->createChild("Network");
|
---|
1260 | pelmNetwork->setAttribute("ovf:name", strNetwork.c_str());
|
---|
1261 | pelmNetwork->createChild("Description")->addContent("Logical network used by this appliance.");
|
---|
1262 | }
|
---|
1263 |
|
---|
1264 | }
|
---|
1265 |
|
---|
1266 | /**
|
---|
1267 | * Called from Appliance::i_buildXML() for each virtual system (machine) that
|
---|
1268 | * needs XML written out.
|
---|
1269 | *
|
---|
1270 | * @param writeLock The current write lock.
|
---|
1271 | * @param elmToAddVirtualSystemsTo XML element to append elements to.
|
---|
1272 | * @param pllElementsWithUuidAttributes out: list of XML elements produced here
|
---|
1273 | * with UUID attributes for quick
|
---|
1274 | * fixing by caller later
|
---|
1275 | * @param vsdescThis The IVirtualSystemDescription
|
---|
1276 | * instance for which to write XML.
|
---|
1277 | * @param enFormat OVF format (0.9 or 1.0).
|
---|
1278 | * @param stack Structure for temporary private
|
---|
1279 | * data shared with caller.
|
---|
1280 | */
|
---|
1281 | void Appliance::i_buildXMLForOneVirtualSystem(AutoWriteLockBase& writeLock,
|
---|
1282 | xml::ElementNode &elmToAddVirtualSystemsTo,
|
---|
1283 | std::list<xml::ElementNode*> *pllElementsWithUuidAttributes,
|
---|
1284 | ComObjPtr<VirtualSystemDescription> &vsdescThis,
|
---|
1285 | ovf::OVFVersion_T enFormat,
|
---|
1286 | XMLStack &stack)
|
---|
1287 | {
|
---|
1288 | LogFlowFunc(("ENTER appliance %p\n", this));
|
---|
1289 |
|
---|
1290 | xml::ElementNode *pelmVirtualSystem;
|
---|
1291 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1292 | {
|
---|
1293 | // <Section xsi:type="ovf:NetworkSection_Type">
|
---|
1294 | pelmVirtualSystem = elmToAddVirtualSystemsTo.createChild("Content");
|
---|
1295 | pelmVirtualSystem->setAttribute("xsi:type", "ovf:VirtualSystem_Type");
|
---|
1296 | }
|
---|
1297 | else
|
---|
1298 | pelmVirtualSystem = elmToAddVirtualSystemsTo.createChild("VirtualSystem");
|
---|
1299 |
|
---|
1300 | /*xml::ElementNode *pelmVirtualSystemInfo =*/ pelmVirtualSystem->createChild("Info")->addContent("A virtual machine");
|
---|
1301 |
|
---|
1302 | std::list<VirtualSystemDescriptionEntry*> llName = vsdescThis->i_findByType(VirtualSystemDescriptionType_Name);
|
---|
1303 | if (llName.empty())
|
---|
1304 | throw setError(VBOX_E_NOT_SUPPORTED, tr("Missing VM name"));
|
---|
1305 | Utf8Str &strVMName = llName.back()->strVBoxCurrent;
|
---|
1306 | pelmVirtualSystem->setAttribute("ovf:id", strVMName);
|
---|
1307 |
|
---|
1308 | // product info
|
---|
1309 | std::list<VirtualSystemDescriptionEntry*> llProduct = vsdescThis->i_findByType(VirtualSystemDescriptionType_Product);
|
---|
1310 | std::list<VirtualSystemDescriptionEntry*> llProductUrl = vsdescThis->i_findByType(VirtualSystemDescriptionType_ProductUrl);
|
---|
1311 | std::list<VirtualSystemDescriptionEntry*> llVendor = vsdescThis->i_findByType(VirtualSystemDescriptionType_Vendor);
|
---|
1312 | std::list<VirtualSystemDescriptionEntry*> llVendorUrl = vsdescThis->i_findByType(VirtualSystemDescriptionType_VendorUrl);
|
---|
1313 | std::list<VirtualSystemDescriptionEntry*> llVersion = vsdescThis->i_findByType(VirtualSystemDescriptionType_Version);
|
---|
1314 | bool fProduct = llProduct.size() && !llProduct.back()->strVBoxCurrent.isEmpty();
|
---|
1315 | bool fProductUrl = llProductUrl.size() && !llProductUrl.back()->strVBoxCurrent.isEmpty();
|
---|
1316 | bool fVendor = llVendor.size() && !llVendor.back()->strVBoxCurrent.isEmpty();
|
---|
1317 | bool fVendorUrl = llVendorUrl.size() && !llVendorUrl.back()->strVBoxCurrent.isEmpty();
|
---|
1318 | bool fVersion = llVersion.size() && !llVersion.back()->strVBoxCurrent.isEmpty();
|
---|
1319 | if (fProduct || fProductUrl || fVendor || fVendorUrl || fVersion)
|
---|
1320 | {
|
---|
1321 | /* <Section ovf:required="false" xsi:type="ovf:ProductSection_Type">
|
---|
1322 | <Info>Meta-information about the installed software</Info>
|
---|
1323 | <Product>VAtest</Product>
|
---|
1324 | <Vendor>SUN Microsystems</Vendor>
|
---|
1325 | <Version>10.0</Version>
|
---|
1326 | <ProductUrl>http://blogs.sun.com/VirtualGuru</ProductUrl>
|
---|
1327 | <VendorUrl>http://www.sun.com</VendorUrl>
|
---|
1328 | </Section> */
|
---|
1329 | xml::ElementNode *pelmAnnotationSection;
|
---|
1330 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1331 | {
|
---|
1332 | // <Section ovf:required="false" xsi:type="ovf:ProductSection_Type">
|
---|
1333 | pelmAnnotationSection = pelmVirtualSystem->createChild("Section");
|
---|
1334 | pelmAnnotationSection->setAttribute("xsi:type", "ovf:ProductSection_Type");
|
---|
1335 | }
|
---|
1336 | else
|
---|
1337 | pelmAnnotationSection = pelmVirtualSystem->createChild("ProductSection");
|
---|
1338 |
|
---|
1339 | pelmAnnotationSection->createChild("Info")->addContent("Meta-information about the installed software");
|
---|
1340 | if (fProduct)
|
---|
1341 | pelmAnnotationSection->createChild("Product")->addContent(llProduct.back()->strVBoxCurrent);
|
---|
1342 | if (fVendor)
|
---|
1343 | pelmAnnotationSection->createChild("Vendor")->addContent(llVendor.back()->strVBoxCurrent);
|
---|
1344 | if (fVersion)
|
---|
1345 | pelmAnnotationSection->createChild("Version")->addContent(llVersion.back()->strVBoxCurrent);
|
---|
1346 | if (fProductUrl)
|
---|
1347 | pelmAnnotationSection->createChild("ProductUrl")->addContent(llProductUrl.back()->strVBoxCurrent);
|
---|
1348 | if (fVendorUrl)
|
---|
1349 | pelmAnnotationSection->createChild("VendorUrl")->addContent(llVendorUrl.back()->strVBoxCurrent);
|
---|
1350 | }
|
---|
1351 |
|
---|
1352 | // description
|
---|
1353 | std::list<VirtualSystemDescriptionEntry*> llDescription = vsdescThis->i_findByType(VirtualSystemDescriptionType_Description);
|
---|
1354 | if (llDescription.size() &&
|
---|
1355 | !llDescription.back()->strVBoxCurrent.isEmpty())
|
---|
1356 | {
|
---|
1357 | /* <Section ovf:required="false" xsi:type="ovf:AnnotationSection_Type">
|
---|
1358 | <Info>A human-readable annotation</Info>
|
---|
1359 | <Annotation>Plan 9</Annotation>
|
---|
1360 | </Section> */
|
---|
1361 | xml::ElementNode *pelmAnnotationSection;
|
---|
1362 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1363 | {
|
---|
1364 | // <Section ovf:required="false" xsi:type="ovf:AnnotationSection_Type">
|
---|
1365 | pelmAnnotationSection = pelmVirtualSystem->createChild("Section");
|
---|
1366 | pelmAnnotationSection->setAttribute("xsi:type", "ovf:AnnotationSection_Type");
|
---|
1367 | }
|
---|
1368 | else
|
---|
1369 | pelmAnnotationSection = pelmVirtualSystem->createChild("AnnotationSection");
|
---|
1370 |
|
---|
1371 | pelmAnnotationSection->createChild("Info")->addContent("A human-readable annotation");
|
---|
1372 | pelmAnnotationSection->createChild("Annotation")->addContent(llDescription.back()->strVBoxCurrent);
|
---|
1373 | }
|
---|
1374 |
|
---|
1375 | // license
|
---|
1376 | std::list<VirtualSystemDescriptionEntry*> llLicense = vsdescThis->i_findByType(VirtualSystemDescriptionType_License);
|
---|
1377 | if (llLicense.size() &&
|
---|
1378 | !llLicense.back()->strVBoxCurrent.isEmpty())
|
---|
1379 | {
|
---|
1380 | /* <EulaSection>
|
---|
1381 | <Info ovf:msgid="6">License agreement for the Virtual System.</Info>
|
---|
1382 | <License ovf:msgid="1">License terms can go in here.</License>
|
---|
1383 | </EulaSection> */
|
---|
1384 | xml::ElementNode *pelmEulaSection;
|
---|
1385 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1386 | {
|
---|
1387 | pelmEulaSection = pelmVirtualSystem->createChild("Section");
|
---|
1388 | pelmEulaSection->setAttribute("xsi:type", "ovf:EulaSection_Type");
|
---|
1389 | }
|
---|
1390 | else
|
---|
1391 | pelmEulaSection = pelmVirtualSystem->createChild("EulaSection");
|
---|
1392 |
|
---|
1393 | pelmEulaSection->createChild("Info")->addContent("License agreement for the virtual system");
|
---|
1394 | pelmEulaSection->createChild("License")->addContent(llLicense.back()->strVBoxCurrent);
|
---|
1395 | }
|
---|
1396 |
|
---|
1397 | // operating system
|
---|
1398 | std::list<VirtualSystemDescriptionEntry*> llOS = vsdescThis->i_findByType(VirtualSystemDescriptionType_OS);
|
---|
1399 | if (llOS.empty())
|
---|
1400 | throw setError(VBOX_E_NOT_SUPPORTED, tr("Missing OS type"));
|
---|
1401 | /* <OperatingSystemSection ovf:id="82">
|
---|
1402 | <Info>Guest Operating System</Info>
|
---|
1403 | <Description>Linux 2.6.x</Description>
|
---|
1404 | </OperatingSystemSection> */
|
---|
1405 | VirtualSystemDescriptionEntry *pvsdeOS = llOS.back();
|
---|
1406 | xml::ElementNode *pelmOperatingSystemSection;
|
---|
1407 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1408 | {
|
---|
1409 | pelmOperatingSystemSection = pelmVirtualSystem->createChild("Section");
|
---|
1410 | pelmOperatingSystemSection->setAttribute("xsi:type", "ovf:OperatingSystemSection_Type");
|
---|
1411 | }
|
---|
1412 | else
|
---|
1413 | pelmOperatingSystemSection = pelmVirtualSystem->createChild("OperatingSystemSection");
|
---|
1414 |
|
---|
1415 | pelmOperatingSystemSection->setAttribute("ovf:id", pvsdeOS->strOvf);
|
---|
1416 | pelmOperatingSystemSection->createChild("Info")->addContent("The kind of installed guest operating system");
|
---|
1417 | Utf8Str strOSDesc;
|
---|
1418 | convertCIMOSType2VBoxOSType(strOSDesc, (ovf::CIMOSType_T)pvsdeOS->strOvf.toInt32(), "");
|
---|
1419 | pelmOperatingSystemSection->createChild("Description")->addContent(strOSDesc);
|
---|
1420 | // add the VirtualBox ostype in a custom tag in a different namespace
|
---|
1421 | xml::ElementNode *pelmVBoxOSType = pelmOperatingSystemSection->createChild("vbox:OSType");
|
---|
1422 | pelmVBoxOSType->setAttribute("ovf:required", "false");
|
---|
1423 | pelmVBoxOSType->addContent(pvsdeOS->strVBoxCurrent);
|
---|
1424 |
|
---|
1425 | // <VirtualHardwareSection ovf:id="hw1" ovf:transport="iso">
|
---|
1426 | xml::ElementNode *pelmVirtualHardwareSection;
|
---|
1427 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1428 | {
|
---|
1429 | // <Section xsi:type="ovf:VirtualHardwareSection_Type">
|
---|
1430 | pelmVirtualHardwareSection = pelmVirtualSystem->createChild("Section");
|
---|
1431 | pelmVirtualHardwareSection->setAttribute("xsi:type", "ovf:VirtualHardwareSection_Type");
|
---|
1432 | }
|
---|
1433 | else
|
---|
1434 | pelmVirtualHardwareSection = pelmVirtualSystem->createChild("VirtualHardwareSection");
|
---|
1435 |
|
---|
1436 | pelmVirtualHardwareSection->createChild("Info")->addContent("Virtual hardware requirements for a virtual machine");
|
---|
1437 |
|
---|
1438 | /* <System>
|
---|
1439 | <vssd:Description>Description of the virtual hardware section.</vssd:Description>
|
---|
1440 | <vssd:ElementName>vmware</vssd:ElementName>
|
---|
1441 | <vssd:InstanceID>1</vssd:InstanceID>
|
---|
1442 | <vssd:VirtualSystemIdentifier>MyLampService</vssd:VirtualSystemIdentifier>
|
---|
1443 | <vssd:VirtualSystemType>vmx-4</vssd:VirtualSystemType>
|
---|
1444 | </System> */
|
---|
1445 | xml::ElementNode *pelmSystem = pelmVirtualHardwareSection->createChild("System");
|
---|
1446 |
|
---|
1447 | pelmSystem->createChild("vssd:ElementName")->addContent("Virtual Hardware Family"); // required OVF 1.0
|
---|
1448 |
|
---|
1449 | // <vssd:InstanceId>0</vssd:InstanceId>
|
---|
1450 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1451 | pelmSystem->createChild("vssd:InstanceId")->addContent("0");
|
---|
1452 | else // capitalization changed...
|
---|
1453 | pelmSystem->createChild("vssd:InstanceID")->addContent("0");
|
---|
1454 |
|
---|
1455 | // <vssd:VirtualSystemIdentifier>VAtest</vssd:VirtualSystemIdentifier>
|
---|
1456 | pelmSystem->createChild("vssd:VirtualSystemIdentifier")->addContent(strVMName);
|
---|
1457 | // <vssd:VirtualSystemType>vmx-4</vssd:VirtualSystemType>
|
---|
1458 | const char *pcszHardware = "virtualbox-2.2";
|
---|
1459 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1460 | // pretend to be vmware compatible then
|
---|
1461 | pcszHardware = "vmx-6";
|
---|
1462 | pelmSystem->createChild("vssd:VirtualSystemType")->addContent(pcszHardware);
|
---|
1463 |
|
---|
1464 | // loop thru all description entries twice; once to write out all
|
---|
1465 | // devices _except_ disk images, and a second time to assign the
|
---|
1466 | // disk images; this is because disk images need to reference
|
---|
1467 | // IDE controllers, and we can't know their instance IDs without
|
---|
1468 | // assigning them first
|
---|
1469 |
|
---|
1470 | uint32_t idIDEPrimaryController = 0;
|
---|
1471 | int32_t lIDEPrimaryControllerIndex = 0;
|
---|
1472 | uint32_t idIDESecondaryController = 0;
|
---|
1473 | int32_t lIDESecondaryControllerIndex = 0;
|
---|
1474 | uint32_t idSATAController = 0;
|
---|
1475 | int32_t lSATAControllerIndex = 0;
|
---|
1476 | uint32_t idSCSIController = 0;
|
---|
1477 | int32_t lSCSIControllerIndex = 0;
|
---|
1478 |
|
---|
1479 | uint32_t ulInstanceID = 1;
|
---|
1480 |
|
---|
1481 | uint32_t cDVDs = 0;
|
---|
1482 |
|
---|
1483 | for (size_t uLoop = 1; uLoop <= 2; ++uLoop)
|
---|
1484 | {
|
---|
1485 | int32_t lIndexThis = 0;
|
---|
1486 | for (vector<VirtualSystemDescriptionEntry>::const_iterator
|
---|
1487 | it = vsdescThis->m->maDescriptions.begin();
|
---|
1488 | it != vsdescThis->m->maDescriptions.end();
|
---|
1489 | ++it, ++lIndexThis)
|
---|
1490 | {
|
---|
1491 | const VirtualSystemDescriptionEntry &desc = *it;
|
---|
1492 |
|
---|
1493 | LogFlowFunc(("Loop %u: handling description entry ulIndex=%u, type=%s, strRef=%s, strOvf=%s, strVBox=%s, strExtraConfig=%s\n",
|
---|
1494 | uLoop,
|
---|
1495 | desc.ulIndex,
|
---|
1496 | ( desc.type == VirtualSystemDescriptionType_HardDiskControllerIDE ? "HardDiskControllerIDE"
|
---|
1497 | : desc.type == VirtualSystemDescriptionType_HardDiskControllerSATA ? "HardDiskControllerSATA"
|
---|
1498 | : desc.type == VirtualSystemDescriptionType_HardDiskControllerSCSI ? "HardDiskControllerSCSI"
|
---|
1499 | : desc.type == VirtualSystemDescriptionType_HardDiskControllerSAS ? "HardDiskControllerSAS"
|
---|
1500 | : desc.type == VirtualSystemDescriptionType_HardDiskImage ? "HardDiskImage"
|
---|
1501 | : Utf8StrFmt("%d", desc.type).c_str()),
|
---|
1502 | desc.strRef.c_str(),
|
---|
1503 | desc.strOvf.c_str(),
|
---|
1504 | desc.strVBoxCurrent.c_str(),
|
---|
1505 | desc.strExtraConfigCurrent.c_str()));
|
---|
1506 |
|
---|
1507 | ovf::ResourceType_T type = (ovf::ResourceType_T)0; // if this becomes != 0 then we do stuff
|
---|
1508 | Utf8Str strResourceSubType;
|
---|
1509 |
|
---|
1510 | Utf8Str strDescription; // results in <rasd:Description>...</rasd:Description> block
|
---|
1511 | Utf8Str strCaption; // results in <rasd:Caption>...</rasd:Caption> block
|
---|
1512 |
|
---|
1513 | uint32_t ulParent = 0;
|
---|
1514 |
|
---|
1515 | int32_t lVirtualQuantity = -1;
|
---|
1516 | Utf8Str strAllocationUnits;
|
---|
1517 |
|
---|
1518 | int32_t lAddress = -1;
|
---|
1519 | int32_t lBusNumber = -1;
|
---|
1520 | int32_t lAddressOnParent = -1;
|
---|
1521 |
|
---|
1522 | int32_t lAutomaticAllocation = -1; // 0 means "false", 1 means "true"
|
---|
1523 | Utf8Str strConnection; // results in <rasd:Connection>...</rasd:Connection> block
|
---|
1524 | Utf8Str strHostResource;
|
---|
1525 |
|
---|
1526 | uint64_t uTemp;
|
---|
1527 |
|
---|
1528 | ovf::VirtualHardwareItem vhi;
|
---|
1529 | ovf::StorageItem si;
|
---|
1530 | ovf::EthernetPortItem epi;
|
---|
1531 |
|
---|
1532 | switch (desc.type)
|
---|
1533 | {
|
---|
1534 | case VirtualSystemDescriptionType_CPU:
|
---|
1535 | /* <Item>
|
---|
1536 | <rasd:Caption>1 virtual CPU</rasd:Caption>
|
---|
1537 | <rasd:Description>Number of virtual CPUs</rasd:Description>
|
---|
1538 | <rasd:ElementName>virtual CPU</rasd:ElementName>
|
---|
1539 | <rasd:InstanceID>1</rasd:InstanceID>
|
---|
1540 | <rasd:ResourceType>3</rasd:ResourceType>
|
---|
1541 | <rasd:VirtualQuantity>1</rasd:VirtualQuantity>
|
---|
1542 | </Item> */
|
---|
1543 | if (uLoop == 1)
|
---|
1544 | {
|
---|
1545 | strDescription = "Number of virtual CPUs";
|
---|
1546 | type = ovf::ResourceType_Processor; // 3
|
---|
1547 | desc.strVBoxCurrent.toInt(uTemp);
|
---|
1548 | lVirtualQuantity = (int32_t)uTemp;
|
---|
1549 | strCaption = Utf8StrFmt("%d virtual CPU", lVirtualQuantity); // without this ovftool
|
---|
1550 | // won't eat the item
|
---|
1551 | }
|
---|
1552 | break;
|
---|
1553 |
|
---|
1554 | case VirtualSystemDescriptionType_Memory:
|
---|
1555 | /* <Item>
|
---|
1556 | <rasd:AllocationUnits>MegaBytes</rasd:AllocationUnits>
|
---|
1557 | <rasd:Caption>256 MB of memory</rasd:Caption>
|
---|
1558 | <rasd:Description>Memory Size</rasd:Description>
|
---|
1559 | <rasd:ElementName>Memory</rasd:ElementName>
|
---|
1560 | <rasd:InstanceID>2</rasd:InstanceID>
|
---|
1561 | <rasd:ResourceType>4</rasd:ResourceType>
|
---|
1562 | <rasd:VirtualQuantity>256</rasd:VirtualQuantity>
|
---|
1563 | </Item> */
|
---|
1564 | if (uLoop == 1)
|
---|
1565 | {
|
---|
1566 | strDescription = "Memory Size";
|
---|
1567 | type = ovf::ResourceType_Memory; // 4
|
---|
1568 | desc.strVBoxCurrent.toInt(uTemp);
|
---|
1569 | lVirtualQuantity = (int32_t)(uTemp / _1M);
|
---|
1570 | strAllocationUnits = "MegaBytes";
|
---|
1571 | strCaption = Utf8StrFmt("%d MB of memory", lVirtualQuantity); // without this ovftool
|
---|
1572 | // won't eat the item
|
---|
1573 | }
|
---|
1574 | break;
|
---|
1575 |
|
---|
1576 | case VirtualSystemDescriptionType_HardDiskControllerIDE:
|
---|
1577 | /* <Item>
|
---|
1578 | <rasd:Caption>ideController1</rasd:Caption>
|
---|
1579 | <rasd:Description>IDE Controller</rasd:Description>
|
---|
1580 | <rasd:InstanceId>5</rasd:InstanceId>
|
---|
1581 | <rasd:ResourceType>5</rasd:ResourceType>
|
---|
1582 | <rasd:Address>1</rasd:Address>
|
---|
1583 | <rasd:BusNumber>1</rasd:BusNumber>
|
---|
1584 | </Item> */
|
---|
1585 | if (uLoop == 1)
|
---|
1586 | {
|
---|
1587 | strDescription = "IDE Controller";
|
---|
1588 | type = ovf::ResourceType_IDEController; // 5
|
---|
1589 | strResourceSubType = desc.strVBoxCurrent;
|
---|
1590 |
|
---|
1591 | if (!lIDEPrimaryControllerIndex)
|
---|
1592 | {
|
---|
1593 | // first IDE controller:
|
---|
1594 | strCaption = "ideController0";
|
---|
1595 | lAddress = 0;
|
---|
1596 | lBusNumber = 0;
|
---|
1597 | // remember this ID
|
---|
1598 | idIDEPrimaryController = ulInstanceID;
|
---|
1599 | lIDEPrimaryControllerIndex = lIndexThis;
|
---|
1600 | }
|
---|
1601 | else
|
---|
1602 | {
|
---|
1603 | // second IDE controller:
|
---|
1604 | strCaption = "ideController1";
|
---|
1605 | lAddress = 1;
|
---|
1606 | lBusNumber = 1;
|
---|
1607 | // remember this ID
|
---|
1608 | idIDESecondaryController = ulInstanceID;
|
---|
1609 | lIDESecondaryControllerIndex = lIndexThis;
|
---|
1610 | }
|
---|
1611 | }
|
---|
1612 | break;
|
---|
1613 |
|
---|
1614 | case VirtualSystemDescriptionType_HardDiskControllerSATA:
|
---|
1615 | /* <Item>
|
---|
1616 | <rasd:Caption>sataController0</rasd:Caption>
|
---|
1617 | <rasd:Description>SATA Controller</rasd:Description>
|
---|
1618 | <rasd:InstanceId>4</rasd:InstanceId>
|
---|
1619 | <rasd:ResourceType>20</rasd:ResourceType>
|
---|
1620 | <rasd:ResourceSubType>ahci</rasd:ResourceSubType>
|
---|
1621 | <rasd:Address>0</rasd:Address>
|
---|
1622 | <rasd:BusNumber>0</rasd:BusNumber>
|
---|
1623 | </Item>
|
---|
1624 | */
|
---|
1625 | if (uLoop == 1)
|
---|
1626 | {
|
---|
1627 | strDescription = "SATA Controller";
|
---|
1628 | strCaption = "sataController0";
|
---|
1629 | type = ovf::ResourceType_OtherStorageDevice; // 20
|
---|
1630 | // it seems that OVFTool always writes these two, and since we can only
|
---|
1631 | // have one SATA controller, we'll use this as well
|
---|
1632 | lAddress = 0;
|
---|
1633 | lBusNumber = 0;
|
---|
1634 |
|
---|
1635 | if ( desc.strVBoxCurrent.isEmpty() // AHCI is the default in VirtualBox
|
---|
1636 | || (!desc.strVBoxCurrent.compare("ahci", Utf8Str::CaseInsensitive))
|
---|
1637 | )
|
---|
1638 | strResourceSubType = "AHCI";
|
---|
1639 | else
|
---|
1640 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
1641 | tr("Invalid config string \"%s\" in SATA controller"), desc.strVBoxCurrent.c_str());
|
---|
1642 |
|
---|
1643 | // remember this ID
|
---|
1644 | idSATAController = ulInstanceID;
|
---|
1645 | lSATAControllerIndex = lIndexThis;
|
---|
1646 | }
|
---|
1647 | break;
|
---|
1648 |
|
---|
1649 | case VirtualSystemDescriptionType_HardDiskControllerSCSI:
|
---|
1650 | case VirtualSystemDescriptionType_HardDiskControllerSAS:
|
---|
1651 | /* <Item>
|
---|
1652 | <rasd:Caption>scsiController0</rasd:Caption>
|
---|
1653 | <rasd:Description>SCSI Controller</rasd:Description>
|
---|
1654 | <rasd:InstanceId>4</rasd:InstanceId>
|
---|
1655 | <rasd:ResourceType>6</rasd:ResourceType>
|
---|
1656 | <rasd:ResourceSubType>buslogic</rasd:ResourceSubType>
|
---|
1657 | <rasd:Address>0</rasd:Address>
|
---|
1658 | <rasd:BusNumber>0</rasd:BusNumber>
|
---|
1659 | </Item>
|
---|
1660 | */
|
---|
1661 | if (uLoop == 1)
|
---|
1662 | {
|
---|
1663 | strDescription = "SCSI Controller";
|
---|
1664 | strCaption = "scsiController0";
|
---|
1665 | type = ovf::ResourceType_ParallelSCSIHBA; // 6
|
---|
1666 | // it seems that OVFTool always writes these two, and since we can only
|
---|
1667 | // have one SATA controller, we'll use this as well
|
---|
1668 | lAddress = 0;
|
---|
1669 | lBusNumber = 0;
|
---|
1670 |
|
---|
1671 | if ( desc.strVBoxCurrent.isEmpty() // LsiLogic is the default in VirtualBox
|
---|
1672 | || (!desc.strVBoxCurrent.compare("lsilogic", Utf8Str::CaseInsensitive))
|
---|
1673 | )
|
---|
1674 | strResourceSubType = "lsilogic";
|
---|
1675 | else if (!desc.strVBoxCurrent.compare("buslogic", Utf8Str::CaseInsensitive))
|
---|
1676 | strResourceSubType = "buslogic";
|
---|
1677 | else if (!desc.strVBoxCurrent.compare("lsilogicsas", Utf8Str::CaseInsensitive))
|
---|
1678 | strResourceSubType = "lsilogicsas";
|
---|
1679 | else
|
---|
1680 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
1681 | tr("Invalid config string \"%s\" in SCSI/SAS controller"),
|
---|
1682 | desc.strVBoxCurrent.c_str());
|
---|
1683 |
|
---|
1684 | // remember this ID
|
---|
1685 | idSCSIController = ulInstanceID;
|
---|
1686 | lSCSIControllerIndex = lIndexThis;
|
---|
1687 | }
|
---|
1688 | break;
|
---|
1689 |
|
---|
1690 | case VirtualSystemDescriptionType_HardDiskImage:
|
---|
1691 | /* <Item>
|
---|
1692 | <rasd:Caption>disk1</rasd:Caption>
|
---|
1693 | <rasd:InstanceId>8</rasd:InstanceId>
|
---|
1694 | <rasd:ResourceType>17</rasd:ResourceType>
|
---|
1695 | <rasd:HostResource>/disk/vmdisk1</rasd:HostResource>
|
---|
1696 | <rasd:Parent>4</rasd:Parent>
|
---|
1697 | <rasd:AddressOnParent>0</rasd:AddressOnParent>
|
---|
1698 | </Item> */
|
---|
1699 | if (uLoop == 2)
|
---|
1700 | {
|
---|
1701 | uint32_t cDisks = (uint32_t)stack.mapDisks.size();
|
---|
1702 | Utf8Str strDiskID = Utf8StrFmt("vmdisk%RI32", ++cDisks);
|
---|
1703 |
|
---|
1704 | strDescription = "Disk Image";
|
---|
1705 | strCaption = Utf8StrFmt("disk%RI32", cDisks); // this is not used for anything else
|
---|
1706 | type = ovf::ResourceType_HardDisk; // 17
|
---|
1707 |
|
---|
1708 | // the following references the "<Disks>" XML block
|
---|
1709 | strHostResource = Utf8StrFmt("/disk/%s", strDiskID.c_str());
|
---|
1710 |
|
---|
1711 | // controller=<index>;channel=<c>
|
---|
1712 | size_t pos1 = desc.strExtraConfigCurrent.find("controller=");
|
---|
1713 | size_t pos2 = desc.strExtraConfigCurrent.find("channel=");
|
---|
1714 | int32_t lControllerIndex = -1;
|
---|
1715 | if (pos1 != Utf8Str::npos)
|
---|
1716 | {
|
---|
1717 | RTStrToInt32Ex(desc.strExtraConfigCurrent.c_str() + pos1 + 11, NULL, 0, &lControllerIndex);
|
---|
1718 | if (lControllerIndex == lIDEPrimaryControllerIndex)
|
---|
1719 | ulParent = idIDEPrimaryController;
|
---|
1720 | else if (lControllerIndex == lIDESecondaryControllerIndex)
|
---|
1721 | ulParent = idIDESecondaryController;
|
---|
1722 | else if (lControllerIndex == lSCSIControllerIndex)
|
---|
1723 | ulParent = idSCSIController;
|
---|
1724 | else if (lControllerIndex == lSATAControllerIndex)
|
---|
1725 | ulParent = idSATAController;
|
---|
1726 | }
|
---|
1727 | if (pos2 != Utf8Str::npos)
|
---|
1728 | RTStrToInt32Ex(desc.strExtraConfigCurrent.c_str() + pos2 + 8, NULL, 0, &lAddressOnParent);
|
---|
1729 |
|
---|
1730 | LogFlowFunc(("HardDiskImage details: pos1=%d, pos2=%d, lControllerIndex=%d, lIDEPrimaryControllerIndex=%d, lIDESecondaryControllerIndex=%d, ulParent=%d, lAddressOnParent=%d\n",
|
---|
1731 | pos1, pos2, lControllerIndex, lIDEPrimaryControllerIndex, lIDESecondaryControllerIndex,
|
---|
1732 | ulParent, lAddressOnParent));
|
---|
1733 |
|
---|
1734 | if ( !ulParent
|
---|
1735 | || lAddressOnParent == -1
|
---|
1736 | )
|
---|
1737 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
1738 | tr("Missing or bad extra config string in hard disk image: \"%s\""),
|
---|
1739 | desc.strExtraConfigCurrent.c_str());
|
---|
1740 |
|
---|
1741 | stack.mapDisks[strDiskID] = &desc;
|
---|
1742 |
|
---|
1743 | //use the list stack.mapDiskSequence where the disks go as the "VirtualSystem" should be placed
|
---|
1744 | //in the OVF description file.
|
---|
1745 | stack.mapDiskSequence.push_back(strDiskID);
|
---|
1746 | stack.mapDiskSequenceForOneVM.push_back(strDiskID);
|
---|
1747 | }
|
---|
1748 | break;
|
---|
1749 |
|
---|
1750 | case VirtualSystemDescriptionType_Floppy:
|
---|
1751 | if (uLoop == 1)
|
---|
1752 | {
|
---|
1753 | strDescription = "Floppy Drive";
|
---|
1754 | strCaption = "floppy0"; // this is what OVFTool writes
|
---|
1755 | type = ovf::ResourceType_FloppyDrive; // 14
|
---|
1756 | lAutomaticAllocation = 0;
|
---|
1757 | lAddressOnParent = 0; // this is what OVFTool writes
|
---|
1758 | }
|
---|
1759 | break;
|
---|
1760 |
|
---|
1761 | case VirtualSystemDescriptionType_CDROM:
|
---|
1762 | /* <Item>
|
---|
1763 | <rasd:Caption>cdrom1</rasd:Caption>
|
---|
1764 | <rasd:InstanceId>8</rasd:InstanceId>
|
---|
1765 | <rasd:ResourceType>15</rasd:ResourceType>
|
---|
1766 | <rasd:HostResource>/disk/cdrom1</rasd:HostResource>
|
---|
1767 | <rasd:Parent>4</rasd:Parent>
|
---|
1768 | <rasd:AddressOnParent>0</rasd:AddressOnParent>
|
---|
1769 | </Item> */
|
---|
1770 | if (uLoop == 2)
|
---|
1771 | {
|
---|
1772 | uint32_t cDisks = (uint32_t)stack.mapDisks.size();
|
---|
1773 | Utf8Str strDiskID = Utf8StrFmt("iso%RI32", ++cDisks);
|
---|
1774 | ++cDVDs;
|
---|
1775 | strDescription = "CD-ROM Drive";
|
---|
1776 | strCaption = Utf8StrFmt("cdrom%RI32", cDVDs); // OVFTool starts with 1
|
---|
1777 | type = ovf::ResourceType_CDDrive; // 15
|
---|
1778 | lAutomaticAllocation = 1;
|
---|
1779 |
|
---|
1780 | //skip empty Medium. There are no information to add into section <References> or <DiskSection>
|
---|
1781 | if (desc.strVBoxCurrent.isNotEmpty() &&
|
---|
1782 | desc.skipIt == false)
|
---|
1783 | {
|
---|
1784 | // the following references the "<Disks>" XML block
|
---|
1785 | strHostResource = Utf8StrFmt("/disk/%s", strDiskID.c_str());
|
---|
1786 | }
|
---|
1787 |
|
---|
1788 | // controller=<index>;channel=<c>
|
---|
1789 | size_t pos1 = desc.strExtraConfigCurrent.find("controller=");
|
---|
1790 | size_t pos2 = desc.strExtraConfigCurrent.find("channel=");
|
---|
1791 | int32_t lControllerIndex = -1;
|
---|
1792 | if (pos1 != Utf8Str::npos)
|
---|
1793 | {
|
---|
1794 | RTStrToInt32Ex(desc.strExtraConfigCurrent.c_str() + pos1 + 11, NULL, 0, &lControllerIndex);
|
---|
1795 | if (lControllerIndex == lIDEPrimaryControllerIndex)
|
---|
1796 | ulParent = idIDEPrimaryController;
|
---|
1797 | else if (lControllerIndex == lIDESecondaryControllerIndex)
|
---|
1798 | ulParent = idIDESecondaryController;
|
---|
1799 | else if (lControllerIndex == lSCSIControllerIndex)
|
---|
1800 | ulParent = idSCSIController;
|
---|
1801 | else if (lControllerIndex == lSATAControllerIndex)
|
---|
1802 | ulParent = idSATAController;
|
---|
1803 | }
|
---|
1804 | if (pos2 != Utf8Str::npos)
|
---|
1805 | RTStrToInt32Ex(desc.strExtraConfigCurrent.c_str() + pos2 + 8, NULL, 0, &lAddressOnParent);
|
---|
1806 |
|
---|
1807 | LogFlowFunc(("DVD drive details: pos1=%d, pos2=%d, lControllerIndex=%d, lIDEPrimaryControllerIndex=%d, lIDESecondaryControllerIndex=%d, ulParent=%d, lAddressOnParent=%d\n",
|
---|
1808 | pos1, pos2, lControllerIndex, lIDEPrimaryControllerIndex,
|
---|
1809 | lIDESecondaryControllerIndex, ulParent, lAddressOnParent));
|
---|
1810 |
|
---|
1811 | if ( !ulParent
|
---|
1812 | || lAddressOnParent == -1
|
---|
1813 | )
|
---|
1814 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
1815 | tr("Missing or bad extra config string in DVD drive medium: \"%s\""),
|
---|
1816 | desc.strExtraConfigCurrent.c_str());
|
---|
1817 |
|
---|
1818 | stack.mapDisks[strDiskID] = &desc;
|
---|
1819 |
|
---|
1820 | //use the list stack.mapDiskSequence where the disks go as the "VirtualSystem" should be placed
|
---|
1821 | //in the OVF description file.
|
---|
1822 | stack.mapDiskSequence.push_back(strDiskID);
|
---|
1823 | stack.mapDiskSequenceForOneVM.push_back(strDiskID);
|
---|
1824 | // there is no DVD drive map to update because it is
|
---|
1825 | // handled completely with this entry.
|
---|
1826 | }
|
---|
1827 | break;
|
---|
1828 |
|
---|
1829 | case VirtualSystemDescriptionType_NetworkAdapter:
|
---|
1830 | /* <Item>
|
---|
1831 | <rasd:AutomaticAllocation>true</rasd:AutomaticAllocation>
|
---|
1832 | <rasd:Caption>Ethernet adapter on 'VM Network'</rasd:Caption>
|
---|
1833 | <rasd:Connection>VM Network</rasd:Connection>
|
---|
1834 | <rasd:ElementName>VM network</rasd:ElementName>
|
---|
1835 | <rasd:InstanceID>3</rasd:InstanceID>
|
---|
1836 | <rasd:ResourceType>10</rasd:ResourceType>
|
---|
1837 | </Item> */
|
---|
1838 | if (uLoop == 2)
|
---|
1839 | {
|
---|
1840 | lAutomaticAllocation = 1;
|
---|
1841 | strCaption = Utf8StrFmt("Ethernet adapter on '%s'", desc.strOvf.c_str());
|
---|
1842 | type = ovf::ResourceType_EthernetAdapter; // 10
|
---|
1843 | /* Set the hardware type to something useful.
|
---|
1844 | * To be compatible with vmware & others we set
|
---|
1845 | * PCNet32 for our PCNet types & E1000 for the
|
---|
1846 | * E1000 cards. */
|
---|
1847 | switch (desc.strVBoxCurrent.toInt32())
|
---|
1848 | {
|
---|
1849 | case NetworkAdapterType_Am79C970A:
|
---|
1850 | case NetworkAdapterType_Am79C973: strResourceSubType = "PCNet32"; break;
|
---|
1851 | #ifdef VBOX_WITH_E1000
|
---|
1852 | case NetworkAdapterType_I82540EM:
|
---|
1853 | case NetworkAdapterType_I82545EM:
|
---|
1854 | case NetworkAdapterType_I82543GC: strResourceSubType = "E1000"; break;
|
---|
1855 | #endif /* VBOX_WITH_E1000 */
|
---|
1856 | }
|
---|
1857 | strConnection = desc.strOvf;
|
---|
1858 |
|
---|
1859 | stack.mapNetworks[desc.strOvf] = true;
|
---|
1860 | }
|
---|
1861 | break;
|
---|
1862 |
|
---|
1863 | case VirtualSystemDescriptionType_USBController:
|
---|
1864 | /* <Item ovf:required="false">
|
---|
1865 | <rasd:Caption>usb</rasd:Caption>
|
---|
1866 | <rasd:Description>USB Controller</rasd:Description>
|
---|
1867 | <rasd:InstanceId>3</rasd:InstanceId>
|
---|
1868 | <rasd:ResourceType>23</rasd:ResourceType>
|
---|
1869 | <rasd:Address>0</rasd:Address>
|
---|
1870 | <rasd:BusNumber>0</rasd:BusNumber>
|
---|
1871 | </Item> */
|
---|
1872 | if (uLoop == 1)
|
---|
1873 | {
|
---|
1874 | strDescription = "USB Controller";
|
---|
1875 | strCaption = "usb";
|
---|
1876 | type = ovf::ResourceType_USBController; // 23
|
---|
1877 | lAddress = 0; // this is what OVFTool writes
|
---|
1878 | lBusNumber = 0; // this is what OVFTool writes
|
---|
1879 | }
|
---|
1880 | break;
|
---|
1881 |
|
---|
1882 | case VirtualSystemDescriptionType_SoundCard:
|
---|
1883 | /* <Item ovf:required="false">
|
---|
1884 | <rasd:Caption>sound</rasd:Caption>
|
---|
1885 | <rasd:Description>Sound Card</rasd:Description>
|
---|
1886 | <rasd:InstanceId>10</rasd:InstanceId>
|
---|
1887 | <rasd:ResourceType>35</rasd:ResourceType>
|
---|
1888 | <rasd:ResourceSubType>ensoniq1371</rasd:ResourceSubType>
|
---|
1889 | <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation>
|
---|
1890 | <rasd:AddressOnParent>3</rasd:AddressOnParent>
|
---|
1891 | </Item> */
|
---|
1892 | if (uLoop == 1)
|
---|
1893 | {
|
---|
1894 | strDescription = "Sound Card";
|
---|
1895 | strCaption = "sound";
|
---|
1896 | type = ovf::ResourceType_SoundCard; // 35
|
---|
1897 | strResourceSubType = desc.strOvf; // e.g. ensoniq1371
|
---|
1898 | lAutomaticAllocation = 0;
|
---|
1899 | lAddressOnParent = 3; // what gives? this is what OVFTool writes
|
---|
1900 | }
|
---|
1901 | break;
|
---|
1902 |
|
---|
1903 | default: break; /* Shut up MSC. */
|
---|
1904 | }
|
---|
1905 |
|
---|
1906 | if (type)
|
---|
1907 | {
|
---|
1908 | xml::ElementNode *pItem;
|
---|
1909 | xml::ElementNode *pItemHelper;
|
---|
1910 | RTCString itemElement;
|
---|
1911 | RTCString itemElementHelper;
|
---|
1912 |
|
---|
1913 | if (enFormat == ovf::OVFVersion_2_0)
|
---|
1914 | {
|
---|
1915 | if(uLoop == 2)
|
---|
1916 | {
|
---|
1917 | if (desc.type == VirtualSystemDescriptionType_NetworkAdapter)
|
---|
1918 | {
|
---|
1919 | itemElement = "epasd:";
|
---|
1920 | pItem = pelmVirtualHardwareSection->createChild("EthernetPortItem");
|
---|
1921 | }
|
---|
1922 | else if (desc.type == VirtualSystemDescriptionType_CDROM ||
|
---|
1923 | desc.type == VirtualSystemDescriptionType_HardDiskImage)
|
---|
1924 | {
|
---|
1925 | itemElement = "sasd:";
|
---|
1926 | pItem = pelmVirtualHardwareSection->createChild("StorageItem");
|
---|
1927 | }
|
---|
1928 | else
|
---|
1929 | pItem = NULL;
|
---|
1930 | }
|
---|
1931 | else
|
---|
1932 | {
|
---|
1933 | itemElement = "rasd:";
|
---|
1934 | pItem = pelmVirtualHardwareSection->createChild("Item");
|
---|
1935 | }
|
---|
1936 | }
|
---|
1937 | else
|
---|
1938 | {
|
---|
1939 | itemElement = "rasd:";
|
---|
1940 | pItem = pelmVirtualHardwareSection->createChild("Item");
|
---|
1941 | }
|
---|
1942 |
|
---|
1943 | // NOTE: DO NOT CHANGE THE ORDER of these items! The OVF standards prescribes that
|
---|
1944 | // the elements from the rasd: namespace must be sorted by letter, and VMware
|
---|
1945 | // actually requires this as well (see public bug #6612)
|
---|
1946 |
|
---|
1947 | if (lAddress != -1)
|
---|
1948 | {
|
---|
1949 | //pItem->createChild("rasd:Address")->addContent(Utf8StrFmt("%d", lAddress));
|
---|
1950 | itemElementHelper = itemElement;
|
---|
1951 | pItemHelper = pItem->createChild(itemElementHelper.append("Address").c_str());
|
---|
1952 | pItemHelper->addContent(Utf8StrFmt("%d", lAddress));
|
---|
1953 | }
|
---|
1954 |
|
---|
1955 | if (lAddressOnParent != -1)
|
---|
1956 | {
|
---|
1957 | //pItem->createChild("rasd:AddressOnParent")->addContent(Utf8StrFmt("%d", lAddressOnParent));
|
---|
1958 | itemElementHelper = itemElement;
|
---|
1959 | pItemHelper = pItem->createChild(itemElementHelper.append("AddressOnParent").c_str());
|
---|
1960 | pItemHelper->addContent(Utf8StrFmt("%d", lAddressOnParent));
|
---|
1961 | }
|
---|
1962 |
|
---|
1963 | if (!strAllocationUnits.isEmpty())
|
---|
1964 | {
|
---|
1965 | //pItem->createChild("rasd:AllocationUnits")->addContent(strAllocationUnits);
|
---|
1966 | itemElementHelper = itemElement;
|
---|
1967 | pItemHelper = pItem->createChild(itemElementHelper.append("AllocationUnits").c_str());
|
---|
1968 | pItemHelper->addContent(strAllocationUnits);
|
---|
1969 | }
|
---|
1970 |
|
---|
1971 | if (lAutomaticAllocation != -1)
|
---|
1972 | {
|
---|
1973 | //pItem->createChild("rasd:AutomaticAllocation")->addContent( (lAutomaticAllocation) ? "true" : "false" );
|
---|
1974 | itemElementHelper = itemElement;
|
---|
1975 | pItemHelper = pItem->createChild(itemElementHelper.append("AutomaticAllocation").c_str());
|
---|
1976 | pItemHelper->addContent((lAutomaticAllocation) ? "true" : "false" );
|
---|
1977 | }
|
---|
1978 |
|
---|
1979 | if (lBusNumber != -1)
|
---|
1980 | {
|
---|
1981 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
1982 | {
|
---|
1983 | // BusNumber is invalid OVF 1.0 so only write it in 0.9 mode for OVFTool
|
---|
1984 | //pItem->createChild("rasd:BusNumber")->addContent(Utf8StrFmt("%d", lBusNumber));
|
---|
1985 | itemElementHelper = itemElement;
|
---|
1986 | pItemHelper = pItem->createChild(itemElementHelper.append("BusNumber").c_str());
|
---|
1987 | pItemHelper->addContent(Utf8StrFmt("%d", lBusNumber));
|
---|
1988 | }
|
---|
1989 | }
|
---|
1990 |
|
---|
1991 | if (!strCaption.isEmpty())
|
---|
1992 | {
|
---|
1993 | //pItem->createChild("rasd:Caption")->addContent(strCaption);
|
---|
1994 | itemElementHelper = itemElement;
|
---|
1995 | pItemHelper = pItem->createChild(itemElementHelper.append("Caption").c_str());
|
---|
1996 | pItemHelper->addContent(strCaption);
|
---|
1997 | }
|
---|
1998 |
|
---|
1999 | if (!strConnection.isEmpty())
|
---|
2000 | {
|
---|
2001 | //pItem->createChild("rasd:Connection")->addContent(strConnection);
|
---|
2002 | itemElementHelper = itemElement;
|
---|
2003 | pItemHelper = pItem->createChild(itemElementHelper.append("Connection").c_str());
|
---|
2004 | pItemHelper->addContent(strConnection);
|
---|
2005 | }
|
---|
2006 |
|
---|
2007 | if (!strDescription.isEmpty())
|
---|
2008 | {
|
---|
2009 | //pItem->createChild("rasd:Description")->addContent(strDescription);
|
---|
2010 | itemElementHelper = itemElement;
|
---|
2011 | pItemHelper = pItem->createChild(itemElementHelper.append("Description").c_str());
|
---|
2012 | pItemHelper->addContent(strDescription);
|
---|
2013 | }
|
---|
2014 |
|
---|
2015 | if (!strCaption.isEmpty())
|
---|
2016 | {
|
---|
2017 | if (enFormat == ovf::OVFVersion_1_0)
|
---|
2018 | {
|
---|
2019 | //pItem->createChild("rasd:ElementName")->addContent(strCaption);
|
---|
2020 | itemElementHelper = itemElement;
|
---|
2021 | pItemHelper = pItem->createChild(itemElementHelper.append("ElementName").c_str());
|
---|
2022 | pItemHelper->addContent(strCaption);
|
---|
2023 | }
|
---|
2024 | }
|
---|
2025 |
|
---|
2026 | if (!strHostResource.isEmpty())
|
---|
2027 | {
|
---|
2028 | //pItem->createChild("rasd:HostResource")->addContent(strHostResource);
|
---|
2029 | itemElementHelper = itemElement;
|
---|
2030 | pItemHelper = pItem->createChild(itemElementHelper.append("HostResource").c_str());
|
---|
2031 | pItemHelper->addContent(strHostResource);
|
---|
2032 | }
|
---|
2033 |
|
---|
2034 | {
|
---|
2035 | // <rasd:InstanceID>1</rasd:InstanceID>
|
---|
2036 | itemElementHelper = itemElement;
|
---|
2037 | if (enFormat == ovf::OVFVersion_0_9)
|
---|
2038 | //pelmInstanceID = pItem->createChild("rasd:InstanceId");
|
---|
2039 | pItemHelper = pItem->createChild(itemElementHelper.append("InstanceId").c_str());
|
---|
2040 | else
|
---|
2041 | //pelmInstanceID = pItem->createChild("rasd:InstanceID"); // capitalization changed...
|
---|
2042 | pItemHelper = pItem->createChild(itemElementHelper.append("InstanceID").c_str());
|
---|
2043 |
|
---|
2044 | pItemHelper->addContent(Utf8StrFmt("%d", ulInstanceID++));
|
---|
2045 | }
|
---|
2046 |
|
---|
2047 | if (ulParent)
|
---|
2048 | {
|
---|
2049 | //pItem->createChild("rasd:Parent")->addContent(Utf8StrFmt("%d", ulParent));
|
---|
2050 | itemElementHelper = itemElement;
|
---|
2051 | pItemHelper = pItem->createChild(itemElementHelper.append("Parent").c_str());
|
---|
2052 | pItemHelper->addContent(Utf8StrFmt("%d", ulParent));
|
---|
2053 | }
|
---|
2054 |
|
---|
2055 | if (!strResourceSubType.isEmpty())
|
---|
2056 | {
|
---|
2057 | //pItem->createChild("rasd:ResourceSubType")->addContent(strResourceSubType);
|
---|
2058 | itemElementHelper = itemElement;
|
---|
2059 | pItemHelper = pItem->createChild(itemElementHelper.append("ResourceSubType").c_str());
|
---|
2060 | pItemHelper->addContent(strResourceSubType);
|
---|
2061 | }
|
---|
2062 |
|
---|
2063 | {
|
---|
2064 | // <rasd:ResourceType>3</rasd:ResourceType>
|
---|
2065 | //pItem->createChild("rasd:ResourceType")->addContent(Utf8StrFmt("%d", type));
|
---|
2066 | itemElementHelper = itemElement;
|
---|
2067 | pItemHelper = pItem->createChild(itemElementHelper.append("ResourceType").c_str());
|
---|
2068 | pItemHelper->addContent(Utf8StrFmt("%d", type));
|
---|
2069 | }
|
---|
2070 |
|
---|
2071 | // <rasd:VirtualQuantity>1</rasd:VirtualQuantity>
|
---|
2072 | if (lVirtualQuantity != -1)
|
---|
2073 | {
|
---|
2074 | //pItem->createChild("rasd:VirtualQuantity")->addContent(Utf8StrFmt("%d", lVirtualQuantity));
|
---|
2075 | itemElementHelper = itemElement;
|
---|
2076 | pItemHelper = pItem->createChild(itemElementHelper.append("VirtualQuantity").c_str());
|
---|
2077 | pItemHelper->addContent(Utf8StrFmt("%d", lVirtualQuantity));
|
---|
2078 | }
|
---|
2079 | }
|
---|
2080 | }
|
---|
2081 | } // for (size_t uLoop = 1; uLoop <= 2; ++uLoop)
|
---|
2082 |
|
---|
2083 | // now that we're done with the official OVF <Item> tags under <VirtualSystem>, write out VirtualBox XML
|
---|
2084 | // under the vbox: namespace
|
---|
2085 | xml::ElementNode *pelmVBoxMachine = pelmVirtualSystem->createChild("vbox:Machine");
|
---|
2086 | // ovf:required="false" tells other OVF parsers that they can ignore this thing
|
---|
2087 | pelmVBoxMachine->setAttribute("ovf:required", "false");
|
---|
2088 | // ovf:Info element is required or VMware will bail out on the vbox:Machine element
|
---|
2089 | pelmVBoxMachine->createChild("ovf:Info")->addContent("Complete VirtualBox machine configuration in VirtualBox format");
|
---|
2090 |
|
---|
2091 | // create an empty machine config
|
---|
2092 | // use the same settings version as the current VM settings file
|
---|
2093 | settings::MachineConfigFile *pConfig = new settings::MachineConfigFile(&vsdescThis->m->pMachine->i_getSettingsFileFull());
|
---|
2094 |
|
---|
2095 | writeLock.release();
|
---|
2096 | try
|
---|
2097 | {
|
---|
2098 | AutoWriteLock machineLock(vsdescThis->m->pMachine COMMA_LOCKVAL_SRC_POS);
|
---|
2099 | // fill the machine config
|
---|
2100 | vsdescThis->m->pMachine->i_copyMachineDataToSettings(*pConfig);
|
---|
2101 | pConfig->machineUserData.strName = strVMName;
|
---|
2102 |
|
---|
2103 | // Apply export tweaks to machine settings
|
---|
2104 | bool fStripAllMACs = m->optListExport.contains(ExportOptions_StripAllMACs);
|
---|
2105 | bool fStripAllNonNATMACs = m->optListExport.contains(ExportOptions_StripAllNonNATMACs);
|
---|
2106 | if (fStripAllMACs || fStripAllNonNATMACs)
|
---|
2107 | {
|
---|
2108 | for (settings::NetworkAdaptersList::iterator
|
---|
2109 | it = pConfig->hardwareMachine.llNetworkAdapters.begin();
|
---|
2110 | it != pConfig->hardwareMachine.llNetworkAdapters.end();
|
---|
2111 | ++it)
|
---|
2112 | {
|
---|
2113 | settings::NetworkAdapter &nic = *it;
|
---|
2114 | if (fStripAllMACs || (fStripAllNonNATMACs && nic.mode != NetworkAttachmentType_NAT))
|
---|
2115 | nic.strMACAddress.setNull();
|
---|
2116 | }
|
---|
2117 | }
|
---|
2118 |
|
---|
2119 | // write the machine config to the vbox:Machine element
|
---|
2120 | pConfig->buildMachineXML(*pelmVBoxMachine,
|
---|
2121 | settings::MachineConfigFile::BuildMachineXML_WriteVBoxVersionAttribute
|
---|
2122 | /*| settings::MachineConfigFile::BuildMachineXML_SkipRemovableMedia*/
|
---|
2123 | | settings::MachineConfigFile::BuildMachineXML_SuppressSavedState,
|
---|
2124 | // but not BuildMachineXML_IncludeSnapshots nor BuildMachineXML_MediaRegistry
|
---|
2125 | pllElementsWithUuidAttributes);
|
---|
2126 | delete pConfig;
|
---|
2127 | }
|
---|
2128 | catch (...)
|
---|
2129 | {
|
---|
2130 | writeLock.acquire();
|
---|
2131 | delete pConfig;
|
---|
2132 | throw;
|
---|
2133 | }
|
---|
2134 | writeLock.acquire();
|
---|
2135 | }
|
---|
2136 |
|
---|
2137 | /**
|
---|
2138 | * Actual worker code for writing out OVF/OVA to disk. This is called from Appliance::taskThreadWriteOVF()
|
---|
2139 | * and therefore runs on the OVF/OVA write worker thread.
|
---|
2140 | *
|
---|
2141 | * This runs in one context:
|
---|
2142 | *
|
---|
2143 | * 1) in a first worker thread; in that case, Appliance::Write() called Appliance::i_writeImpl();
|
---|
2144 | *
|
---|
2145 | * @param pTask
|
---|
2146 | * @return
|
---|
2147 | */
|
---|
2148 | HRESULT Appliance::i_writeFS(TaskOVF *pTask)
|
---|
2149 | {
|
---|
2150 | LogFlowFuncEnter();
|
---|
2151 | LogFlowFunc(("ENTER appliance %p\n", this));
|
---|
2152 |
|
---|
2153 | AutoCaller autoCaller(this);
|
---|
2154 | if (FAILED(autoCaller.rc())) return autoCaller.rc();
|
---|
2155 |
|
---|
2156 | HRESULT rc = S_OK;
|
---|
2157 |
|
---|
2158 | // Lock the media tree early to make sure nobody else tries to make changes
|
---|
2159 | // to the tree. Also lock the IAppliance object for writing.
|
---|
2160 | AutoMultiWriteLock2 multiLock(&mVirtualBox->i_getMediaTreeLockHandle(), this->lockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
2161 | // Additional protect the IAppliance object, cause we leave the lock
|
---|
2162 | // when starting the disk export and we don't won't block other
|
---|
2163 | // callers on this lengthy operations.
|
---|
2164 | m->state = ApplianceExporting;
|
---|
2165 |
|
---|
2166 | if (pTask->locInfo.strPath.endsWith(".ovf", Utf8Str::CaseInsensitive))
|
---|
2167 | rc = i_writeFSOVF(pTask, multiLock);
|
---|
2168 | else
|
---|
2169 | rc = i_writeFSOVA(pTask, multiLock);
|
---|
2170 |
|
---|
2171 | // reset the state so others can call methods again
|
---|
2172 | m->state = ApplianceIdle;
|
---|
2173 |
|
---|
2174 | LogFlowFunc(("rc=%Rhrc\n", rc));
|
---|
2175 | LogFlowFuncLeave();
|
---|
2176 | return rc;
|
---|
2177 | }
|
---|
2178 |
|
---|
2179 | HRESULT Appliance::i_writeFSOVF(TaskOVF *pTask, AutoWriteLockBase& writeLock)
|
---|
2180 | {
|
---|
2181 | LogFlowFuncEnter();
|
---|
2182 |
|
---|
2183 | /*
|
---|
2184 | * Create write-to-dir file system stream for the target directory.
|
---|
2185 | * This unifies the disk access with the TAR based OVA variant.
|
---|
2186 | */
|
---|
2187 | HRESULT hrc;
|
---|
2188 | int vrc;
|
---|
2189 | RTVFSFSSTREAM hVfsFss2Dir = NIL_RTVFSFSSTREAM;
|
---|
2190 | try
|
---|
2191 | {
|
---|
2192 | Utf8Str strTargetDir(pTask->locInfo.strPath);
|
---|
2193 | strTargetDir.stripFilename();
|
---|
2194 | vrc = RTVfsFsStrmToNormalDir(strTargetDir.c_str(), 0 /*fFlags*/, &hVfsFss2Dir);
|
---|
2195 | if (RT_SUCCESS(vrc))
|
---|
2196 | hrc = S_OK;
|
---|
2197 | else
|
---|
2198 | hrc = setErrorVrc(vrc, tr("Failed to open directory '%s' (%Rrc)"), strTargetDir.c_str(), vrc);
|
---|
2199 | }
|
---|
2200 | catch (std::bad_alloc &)
|
---|
2201 | {
|
---|
2202 | hrc = E_OUTOFMEMORY;
|
---|
2203 | }
|
---|
2204 | if (SUCCEEDED(hrc))
|
---|
2205 | {
|
---|
2206 | /*
|
---|
2207 | * Join i_writeFSOVA. On failure, delete (undo) anything we might
|
---|
2208 | * have written to the disk before failing.
|
---|
2209 | */
|
---|
2210 | hrc = i_writeFSImpl(pTask, writeLock, hVfsFss2Dir);
|
---|
2211 | if (FAILED(hrc))
|
---|
2212 | RTVfsFsStrmToDirUndo(hVfsFss2Dir);
|
---|
2213 | RTVfsFsStrmRelease(hVfsFss2Dir);
|
---|
2214 | }
|
---|
2215 |
|
---|
2216 | LogFlowFuncLeave();
|
---|
2217 | return hrc;
|
---|
2218 | }
|
---|
2219 |
|
---|
2220 | HRESULT Appliance::i_writeFSOVA(TaskOVF *pTask, AutoWriteLockBase &writeLock)
|
---|
2221 | {
|
---|
2222 | LogFlowFuncEnter();
|
---|
2223 |
|
---|
2224 | /*
|
---|
2225 | * Open the output file and attach a TAR creator to it.
|
---|
2226 | * The OVF 1.1.0 spec specifies the TAR format to be compatible with USTAR
|
---|
2227 | * according to POSIX 1003.1-2008. We use the 1988 spec here as it's the
|
---|
2228 | * only variant we currently implement.
|
---|
2229 | */
|
---|
2230 | HRESULT hrc;
|
---|
2231 | RTVFSIOSTREAM hVfsIosTar;
|
---|
2232 | int vrc = RTVfsIoStrmOpenNormal(pTask->locInfo.strPath.c_str(),
|
---|
2233 | RTFILE_O_CREATE | RTFILE_O_WRITE | RTFILE_O_DENY_WRITE,
|
---|
2234 | &hVfsIosTar);
|
---|
2235 | if (RT_SUCCESS(vrc))
|
---|
2236 | {
|
---|
2237 | RTVFSFSSTREAM hVfsFssTar;
|
---|
2238 | vrc = RTZipTarFsStreamToIoStream(hVfsIosTar, RTZIPTARFORMAT_USTAR, 0 /*fFlags*/, &hVfsFssTar);
|
---|
2239 | RTVfsIoStrmRelease(hVfsIosTar);
|
---|
2240 | if (RT_SUCCESS(vrc))
|
---|
2241 | {
|
---|
2242 | RTZipTarFsStreamSetFileMode(hVfsFssTar, 0660, 0440);
|
---|
2243 | RTZipTarFsStreamSetOwner(hVfsFssTar, VBOX_VERSION_MAJOR,
|
---|
2244 | pTask->enFormat == ovf::OVFVersion_0_9 ? "vboxovf09"
|
---|
2245 | : pTask->enFormat == ovf::OVFVersion_1_0 ? "vboxovf10"
|
---|
2246 | : pTask->enFormat == ovf::OVFVersion_2_0 ? "vboxovf20"
|
---|
2247 | : "vboxovf");
|
---|
2248 | RTZipTarFsStreamSetGroup(hVfsFssTar, VBOX_VERSION_MINOR,
|
---|
2249 | "vbox_v" RT_XSTR(VBOX_VERSION_MAJOR) "." RT_XSTR(VBOX_VERSION_MINOR) "."
|
---|
2250 | RT_XSTR(VBOX_VERSION_BUILD) "r" RT_XSTR(VBOX_SVN_REV));
|
---|
2251 |
|
---|
2252 | hrc = i_writeFSImpl(pTask, writeLock, hVfsFssTar);
|
---|
2253 | RTVfsFsStrmRelease(hVfsFssTar);
|
---|
2254 | }
|
---|
2255 | else
|
---|
2256 | hrc = setErrorVrc(vrc, tr("Failed create TAR creator for '%s' (%Rrc)"), pTask->locInfo.strPath.c_str(), vrc);
|
---|
2257 |
|
---|
2258 | /* Delete the OVA on failure. */
|
---|
2259 | if (FAILED(hrc))
|
---|
2260 | RTFileDelete(pTask->locInfo.strPath.c_str());
|
---|
2261 | }
|
---|
2262 | else
|
---|
2263 | hrc = setErrorVrc(vrc, tr("Failed to open '%s' for writing (%Rrc)"), pTask->locInfo.strPath.c_str(), vrc);
|
---|
2264 |
|
---|
2265 | LogFlowFuncLeave();
|
---|
2266 | return hrc;
|
---|
2267 | }
|
---|
2268 |
|
---|
2269 | /**
|
---|
2270 | * Upload the image to the OCI Storage service, next import the
|
---|
2271 | * uploaded image into internal OCI image format and launch an
|
---|
2272 | * instance with this image in the OCI Compute service.
|
---|
2273 | */
|
---|
2274 | HRESULT Appliance::i_exportCloudImpl(TaskCloud *pTask)
|
---|
2275 | {
|
---|
2276 | LogFlowFuncEnter();
|
---|
2277 |
|
---|
2278 | HRESULT hrc = S_OK;
|
---|
2279 | ComPtr<ICloudProviderManager> cpm;
|
---|
2280 | hrc = mVirtualBox->COMGETTER(CloudProviderManager)(cpm.asOutParam());
|
---|
2281 | if (FAILED(hrc))
|
---|
2282 | return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%: Cloud provider manager object wasn't found"), __FUNCTION__);
|
---|
2283 |
|
---|
2284 | Utf8Str strProviderName = pTask->locInfo.strProvider;
|
---|
2285 | ComPtr<ICloudProvider> cloudProvider;
|
---|
2286 | ComPtr<ICloudProfile> cloudProfile;
|
---|
2287 | hrc = cpm->GetProviderByShortName(Bstr(strProviderName.c_str()).raw(), cloudProvider.asOutParam());
|
---|
2288 |
|
---|
2289 | if (FAILED(hrc))
|
---|
2290 | return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud provider object wasn't found"), __FUNCTION__);
|
---|
2291 |
|
---|
2292 | ComPtr<IVirtualSystemDescription> vsd = m->virtualSystemDescriptions.front();
|
---|
2293 |
|
---|
2294 | com::SafeArray<VirtualSystemDescriptionType_T> retTypes;
|
---|
2295 | com::SafeArray<BSTR> aRefs;
|
---|
2296 | com::SafeArray<BSTR> aOvfValues;
|
---|
2297 | com::SafeArray<BSTR> aVBoxValues;
|
---|
2298 | com::SafeArray<BSTR> aExtraConfigValues;
|
---|
2299 |
|
---|
2300 | hrc = vsd->GetDescriptionByType(VirtualSystemDescriptionType_CloudProfileName,
|
---|
2301 | ComSafeArrayAsOutParam(retTypes),
|
---|
2302 | ComSafeArrayAsOutParam(aRefs),
|
---|
2303 | ComSafeArrayAsOutParam(aOvfValues),
|
---|
2304 | ComSafeArrayAsOutParam(aVBoxValues),
|
---|
2305 | ComSafeArrayAsOutParam(aExtraConfigValues));
|
---|
2306 | if (FAILED(hrc))
|
---|
2307 | return hrc;
|
---|
2308 |
|
---|
2309 | Utf8Str profileName(aVBoxValues[0]);
|
---|
2310 | if (profileName.isEmpty())
|
---|
2311 | return setErrorVrc(VBOX_E_OBJECT_NOT_FOUND, tr("%s: Cloud user profile name wasn't found"), __FUNCTION__);
|
---|
2312 |
|
---|
2313 | hrc = cloudProvider->GetProfileByName(aVBoxValues[0], cloudProfile.asOutParam());
|
---|
2314 | if (FAILED(hrc))
|
---|
2315 | return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud profile object wasn't found"), __FUNCTION__);
|
---|
2316 |
|
---|
2317 | ComObjPtr<ICloudClient> cloudClient;
|
---|
2318 | hrc = cloudProfile->CreateCloudClient(cloudClient.asOutParam());
|
---|
2319 | if (FAILED(hrc))
|
---|
2320 | return setErrorVrc(VERR_COM_OBJECT_NOT_FOUND, tr("%s: Cloud client object wasn't found"), __FUNCTION__);
|
---|
2321 |
|
---|
2322 | if (m->virtualSystemDescriptions.size() == 1)
|
---|
2323 | {
|
---|
2324 | ComPtr<IVirtualBox> VBox(mVirtualBox);
|
---|
2325 | hrc = cloudClient->ExportVM(m->virtualSystemDescriptions.front(), pTask->pProgress, VBox);
|
---|
2326 | }
|
---|
2327 | else
|
---|
2328 | hrc = setErrorVrc(VERR_MISMATCH, tr("Export to Cloud isn't supported for more than one VM instance."));
|
---|
2329 |
|
---|
2330 | LogFlowFuncLeave();
|
---|
2331 | return hrc;
|
---|
2332 | }
|
---|
2333 |
|
---|
2334 |
|
---|
2335 | /**
|
---|
2336 | * Writes the Oracle Public Cloud appliance.
|
---|
2337 | *
|
---|
2338 | * It expect raw disk images inside a gzipped tarball. We enable sparse files
|
---|
2339 | * to save diskspace on the target host system.
|
---|
2340 | */
|
---|
2341 | HRESULT Appliance::i_writeFSOPC(TaskOPC *pTask)
|
---|
2342 | {
|
---|
2343 | LogFlowFuncEnter();
|
---|
2344 | HRESULT hrc = S_OK;
|
---|
2345 |
|
---|
2346 | // Lock the media tree early to make sure nobody else tries to make changes
|
---|
2347 | // to the tree. Also lock the IAppliance object for writing.
|
---|
2348 | AutoMultiWriteLock2 multiLock(&mVirtualBox->i_getMediaTreeLockHandle(), this->lockHandle() COMMA_LOCKVAL_SRC_POS);
|
---|
2349 | // Additional protect the IAppliance object, cause we leave the lock
|
---|
2350 | // when starting the disk export and we don't won't block other
|
---|
2351 | // callers on this lengthy operations.
|
---|
2352 | m->state = ApplianceExporting;
|
---|
2353 |
|
---|
2354 | /*
|
---|
2355 | * We're duplicating parts of i_writeFSImpl here because that's simpler
|
---|
2356 | * and creates less spaghetti code.
|
---|
2357 | */
|
---|
2358 | std::list<Utf8Str> lstTarballs;
|
---|
2359 |
|
---|
2360 | /*
|
---|
2361 | * Use i_buildXML to build a stack of disk images. We don't care about the XML doc here.
|
---|
2362 | */
|
---|
2363 | XMLStack stack;
|
---|
2364 | {
|
---|
2365 | xml::Document doc;
|
---|
2366 | i_buildXML(multiLock, doc, stack, pTask->locInfo.strPath, ovf::OVFVersion_2_0);
|
---|
2367 | }
|
---|
2368 |
|
---|
2369 | /*
|
---|
2370 | * Process the disk images.
|
---|
2371 | */
|
---|
2372 | unsigned cTarballs = 0;
|
---|
2373 | for (list<Utf8Str>::const_iterator it = stack.mapDiskSequence.begin();
|
---|
2374 | it != stack.mapDiskSequence.end();
|
---|
2375 | ++it)
|
---|
2376 | {
|
---|
2377 | const Utf8Str &strDiskID = *it;
|
---|
2378 | const VirtualSystemDescriptionEntry *pDiskEntry = stack.mapDisks[strDiskID];
|
---|
2379 | const Utf8Str &strSrcFilePath = pDiskEntry->strVBoxCurrent; // where the VBox image is
|
---|
2380 |
|
---|
2381 | /*
|
---|
2382 | * Some skipping.
|
---|
2383 | */
|
---|
2384 | if (pDiskEntry->skipIt)
|
---|
2385 | continue;
|
---|
2386 |
|
---|
2387 | /* Skip empty media (DVD-ROM, floppy). */
|
---|
2388 | if (strSrcFilePath.isEmpty())
|
---|
2389 | continue;
|
---|
2390 |
|
---|
2391 | /* Only deal with harddisk and DVD-ROMs, skip any floppies for now. */
|
---|
2392 | if ( pDiskEntry->type != VirtualSystemDescriptionType_HardDiskImage
|
---|
2393 | && pDiskEntry->type != VirtualSystemDescriptionType_CDROM)
|
---|
2394 | continue;
|
---|
2395 |
|
---|
2396 | /*
|
---|
2397 | * Locate the Medium object for this entry (by location/path).
|
---|
2398 | */
|
---|
2399 | Log(("Finding source disk \"%s\"\n", strSrcFilePath.c_str()));
|
---|
2400 | ComObjPtr<Medium> ptrSourceDisk;
|
---|
2401 | if (pDiskEntry->type == VirtualSystemDescriptionType_HardDiskImage)
|
---|
2402 | hrc = mVirtualBox->i_findHardDiskByLocation(strSrcFilePath, true /*aSetError*/, &ptrSourceDisk);
|
---|
2403 | else
|
---|
2404 | hrc = mVirtualBox->i_findDVDOrFloppyImage(DeviceType_DVD, NULL /*aId*/, strSrcFilePath,
|
---|
2405 | true /*aSetError*/, &ptrSourceDisk);
|
---|
2406 | if (FAILED(hrc))
|
---|
2407 | break;
|
---|
2408 | if (strSrcFilePath.isEmpty())
|
---|
2409 | continue;
|
---|
2410 |
|
---|
2411 | /*
|
---|
2412 | * Figure out the names.
|
---|
2413 | */
|
---|
2414 |
|
---|
2415 | /* The name inside the tarball. Replace the suffix of harddisk images with ".img". */
|
---|
2416 | Utf8Str strInsideName = pDiskEntry->strOvf;
|
---|
2417 | if (pDiskEntry->type == VirtualSystemDescriptionType_HardDiskImage)
|
---|
2418 | strInsideName.stripSuffix().append(".img");
|
---|
2419 |
|
---|
2420 | /* The first tarball we create uses the specified name. Subsequent
|
---|
2421 | takes the name from the disk entry or something. */
|
---|
2422 | Utf8Str strTarballPath = pTask->locInfo.strPath;
|
---|
2423 | if (cTarballs > 0)
|
---|
2424 | {
|
---|
2425 | strTarballPath.stripFilename().append(RTPATH_SLASH_STR).append(pDiskEntry->strOvf);
|
---|
2426 | const char *pszExt = RTPathSuffix(pDiskEntry->strOvf.c_str());
|
---|
2427 | if (pszExt && pszExt[0] == '.' && pszExt[1] != '\0')
|
---|
2428 | {
|
---|
2429 | strTarballPath.stripSuffix();
|
---|
2430 | if (pDiskEntry->type != VirtualSystemDescriptionType_HardDiskImage)
|
---|
2431 | strTarballPath.append("_").append(&pszExt[1]);
|
---|
2432 | }
|
---|
2433 | strTarballPath.append(".tar.gz");
|
---|
2434 | }
|
---|
2435 | cTarballs++;
|
---|
2436 |
|
---|
2437 | /*
|
---|
2438 | * Create the tar output stream.
|
---|
2439 | */
|
---|
2440 | RTVFSIOSTREAM hVfsIosFile;
|
---|
2441 | int vrc = RTVfsIoStrmOpenNormal(strTarballPath.c_str(),
|
---|
2442 | RTFILE_O_CREATE | RTFILE_O_WRITE | RTFILE_O_DENY_WRITE,
|
---|
2443 | &hVfsIosFile);
|
---|
2444 | if (RT_SUCCESS(vrc))
|
---|
2445 | {
|
---|
2446 | RTVFSIOSTREAM hVfsIosGzip = NIL_RTVFSIOSTREAM;
|
---|
2447 | vrc = RTZipGzipCompressIoStream(hVfsIosFile, 0 /*fFlags*/, 6 /*uLevel*/, &hVfsIosGzip);
|
---|
2448 | RTVfsIoStrmRelease(hVfsIosFile);
|
---|
2449 |
|
---|
2450 | /** @todo insert I/O thread here between gzip and the tar creator. Needs
|
---|
2451 | * implementing. */
|
---|
2452 |
|
---|
2453 | RTVFSFSSTREAM hVfsFssTar = NIL_RTVFSFSSTREAM;
|
---|
2454 | if (RT_SUCCESS(vrc))
|
---|
2455 | vrc = RTZipTarFsStreamToIoStream(hVfsIosGzip, RTZIPTARFORMAT_GNU, RTZIPTAR_C_SPARSE, &hVfsFssTar);
|
---|
2456 | RTVfsIoStrmRelease(hVfsIosGzip);
|
---|
2457 | if (RT_SUCCESS(vrc))
|
---|
2458 | {
|
---|
2459 | RTZipTarFsStreamSetFileMode(hVfsFssTar, 0660, 0440);
|
---|
2460 | RTZipTarFsStreamSetOwner(hVfsFssTar, VBOX_VERSION_MAJOR, "vboxopc10");
|
---|
2461 | RTZipTarFsStreamSetGroup(hVfsFssTar, VBOX_VERSION_MINOR,
|
---|
2462 | "vbox_v" RT_XSTR(VBOX_VERSION_MAJOR) "." RT_XSTR(VBOX_VERSION_MINOR) "."
|
---|
2463 | RT_XSTR(VBOX_VERSION_BUILD) "r" RT_XSTR(VBOX_SVN_REV));
|
---|
2464 |
|
---|
2465 | /*
|
---|
2466 | * Let the Medium code do the heavy work.
|
---|
2467 | *
|
---|
2468 | * The exporting requests a lock on the media tree. So temporarily
|
---|
2469 | * leave the appliance lock.
|
---|
2470 | */
|
---|
2471 | multiLock.release();
|
---|
2472 |
|
---|
2473 | pTask->pProgress->SetNextOperation(BstrFmt(tr("Exporting to disk image '%Rbn'"), strTarballPath.c_str()).raw(),
|
---|
2474 | pDiskEntry->ulSizeMB); // operation's weight, as set up
|
---|
2475 | // with the IProgress originally
|
---|
2476 | hrc = ptrSourceDisk->i_addRawToFss(strInsideName.c_str(), m->m_pSecretKeyStore, hVfsFssTar,
|
---|
2477 | pTask->pProgress, true /*fSparse*/);
|
---|
2478 |
|
---|
2479 | multiLock.acquire();
|
---|
2480 | if (SUCCEEDED(hrc))
|
---|
2481 | {
|
---|
2482 | /*
|
---|
2483 | * Complete and close the tarball.
|
---|
2484 | */
|
---|
2485 | vrc = RTVfsFsStrmEnd(hVfsFssTar);
|
---|
2486 | RTVfsFsStrmRelease(hVfsFssTar);
|
---|
2487 | hVfsFssTar = NIL_RTVFSFSSTREAM;
|
---|
2488 | if (RT_SUCCESS(vrc))
|
---|
2489 | {
|
---|
2490 | /* Remember the tarball name for cleanup. */
|
---|
2491 | try
|
---|
2492 | {
|
---|
2493 | lstTarballs.push_back(strTarballPath.c_str());
|
---|
2494 | strTarballPath.setNull();
|
---|
2495 | }
|
---|
2496 | catch (std::bad_alloc &)
|
---|
2497 | { hrc = E_OUTOFMEMORY; }
|
---|
2498 | }
|
---|
2499 | else
|
---|
2500 | hrc = setErrorBoth(VBOX_E_FILE_ERROR, vrc,
|
---|
2501 | tr("Error completing TAR file '%s' (%Rrc)"), strTarballPath.c_str(), vrc);
|
---|
2502 | }
|
---|
2503 | }
|
---|
2504 | else
|
---|
2505 | hrc = setErrorVrc(vrc, tr("Failed to TAR creator instance for '%s' (%Rrc)"), strTarballPath.c_str(), vrc);
|
---|
2506 |
|
---|
2507 | if (FAILED(hrc) && strTarballPath.isNotEmpty())
|
---|
2508 | RTFileDelete(strTarballPath.c_str());
|
---|
2509 | }
|
---|
2510 | else
|
---|
2511 | hrc = setErrorVrc(vrc, tr("Failed to create '%s' (%Rrc)"), strTarballPath.c_str(), vrc);
|
---|
2512 | if (FAILED(hrc))
|
---|
2513 | break;
|
---|
2514 | }
|
---|
2515 |
|
---|
2516 | /*
|
---|
2517 | * Delete output files on failure.
|
---|
2518 | */
|
---|
2519 | if (FAILED(hrc))
|
---|
2520 | for (list<Utf8Str>::const_iterator it = lstTarballs.begin(); it != lstTarballs.end(); ++it)
|
---|
2521 | RTFileDelete(it->c_str());
|
---|
2522 |
|
---|
2523 | // reset the state so others can call methods again
|
---|
2524 | m->state = ApplianceIdle;
|
---|
2525 |
|
---|
2526 | LogFlowFuncLeave();
|
---|
2527 | return hrc;
|
---|
2528 |
|
---|
2529 | }
|
---|
2530 |
|
---|
2531 | HRESULT Appliance::i_writeFSImpl(TaskOVF *pTask, AutoWriteLockBase &writeLock, RTVFSFSSTREAM hVfsFssDst)
|
---|
2532 | {
|
---|
2533 | LogFlowFuncEnter();
|
---|
2534 |
|
---|
2535 | HRESULT rc = S_OK;
|
---|
2536 | int vrc;
|
---|
2537 | try
|
---|
2538 | {
|
---|
2539 | // the XML stack contains two maps for disks and networks, which allows us to
|
---|
2540 | // a) have a list of unique disk names (to make sure the same disk name is only added once)
|
---|
2541 | // and b) keep a list of all networks
|
---|
2542 | XMLStack stack;
|
---|
2543 | // Scope this to free the memory as soon as this is finished
|
---|
2544 | {
|
---|
2545 | /* Construct the OVF name. */
|
---|
2546 | Utf8Str strOvfFile(pTask->locInfo.strPath);
|
---|
2547 | strOvfFile.stripPath().stripSuffix().append(".ovf");
|
---|
2548 |
|
---|
2549 | /* Render a valid ovf document into a memory buffer. The unknown
|
---|
2550 | version upgrade relates to the OPC hack up in Appliance::write(). */
|
---|
2551 | xml::Document doc;
|
---|
2552 | i_buildXML(writeLock, doc, stack, pTask->locInfo.strPath,
|
---|
2553 | pTask->enFormat != ovf::OVFVersion_unknown ? pTask->enFormat : ovf::OVFVersion_2_0);
|
---|
2554 |
|
---|
2555 | void *pvBuf = NULL;
|
---|
2556 | size_t cbSize = 0;
|
---|
2557 | xml::XmlMemWriter writer;
|
---|
2558 | writer.write(doc, &pvBuf, &cbSize);
|
---|
2559 | if (RT_UNLIKELY(!pvBuf))
|
---|
2560 | throw setError(VBOX_E_FILE_ERROR, tr("Could not create OVF file '%s'"), strOvfFile.c_str());
|
---|
2561 |
|
---|
2562 | /* Write the ovf file to "disk". */
|
---|
2563 | rc = i_writeBufferToFile(hVfsFssDst, strOvfFile.c_str(), pvBuf, cbSize);
|
---|
2564 | if (FAILED(rc))
|
---|
2565 | throw rc;
|
---|
2566 | }
|
---|
2567 |
|
---|
2568 | // We need a proper format description
|
---|
2569 | ComObjPtr<MediumFormat> formatTemp;
|
---|
2570 |
|
---|
2571 | ComObjPtr<MediumFormat> format;
|
---|
2572 | // Scope for the AutoReadLock
|
---|
2573 | {
|
---|
2574 | SystemProperties *pSysProps = mVirtualBox->i_getSystemProperties();
|
---|
2575 | AutoReadLock propsLock(pSysProps COMMA_LOCKVAL_SRC_POS);
|
---|
2576 | // We are always exporting to VMDK stream optimized for now
|
---|
2577 | formatTemp = pSysProps->i_mediumFormatFromExtension("iso");
|
---|
2578 |
|
---|
2579 | format = pSysProps->i_mediumFormat("VMDK");
|
---|
2580 | if (format.isNull())
|
---|
2581 | throw setError(VBOX_E_NOT_SUPPORTED,
|
---|
2582 | tr("Invalid medium storage format"));
|
---|
2583 | }
|
---|
2584 |
|
---|
2585 | // Finally, write out the disks!
|
---|
2586 | //use the list stack.mapDiskSequence where the disks were put as the "VirtualSystem"s had been placed
|
---|
2587 | //in the OVF description file. I.e. we have one "VirtualSystem" in the OVF file, we extract all disks
|
---|
2588 | //attached to it. And these disks are stored in the stack.mapDiskSequence. Next we shift to the next
|
---|
2589 | //"VirtualSystem" and repeat the operation.
|
---|
2590 | //And here we go through the list and extract all disks in the same sequence
|
---|
2591 | for (list<Utf8Str>::const_iterator
|
---|
2592 | it = stack.mapDiskSequence.begin();
|
---|
2593 | it != stack.mapDiskSequence.end();
|
---|
2594 | ++it)
|
---|
2595 | {
|
---|
2596 | const Utf8Str &strDiskID = *it;
|
---|
2597 | const VirtualSystemDescriptionEntry *pDiskEntry = stack.mapDisks[strDiskID];
|
---|
2598 |
|
---|
2599 | // source path: where the VBox image is
|
---|
2600 | const Utf8Str &strSrcFilePath = pDiskEntry->strVBoxCurrent;
|
---|
2601 |
|
---|
2602 | //skip empty Medium. In common, It's may be empty CD/DVD
|
---|
2603 | if (strSrcFilePath.isEmpty() ||
|
---|
2604 | pDiskEntry->skipIt == true)
|
---|
2605 | continue;
|
---|
2606 |
|
---|
2607 | // Do NOT check here whether the file exists. findHardDisk will
|
---|
2608 | // figure that out, and filesystem-based tests are simply wrong
|
---|
2609 | // in the general case (think of iSCSI).
|
---|
2610 |
|
---|
2611 | // clone the disk:
|
---|
2612 | ComObjPtr<Medium> pSourceDisk;
|
---|
2613 |
|
---|
2614 | Log(("Finding source disk \"%s\"\n", strSrcFilePath.c_str()));
|
---|
2615 |
|
---|
2616 | if (pDiskEntry->type == VirtualSystemDescriptionType_HardDiskImage)
|
---|
2617 | {
|
---|
2618 | rc = mVirtualBox->i_findHardDiskByLocation(strSrcFilePath, true, &pSourceDisk);
|
---|
2619 | if (FAILED(rc)) throw rc;
|
---|
2620 | }
|
---|
2621 | else//may be CD or DVD
|
---|
2622 | {
|
---|
2623 | rc = mVirtualBox->i_findDVDOrFloppyImage(DeviceType_DVD,
|
---|
2624 | NULL,
|
---|
2625 | strSrcFilePath,
|
---|
2626 | true,
|
---|
2627 | &pSourceDisk);
|
---|
2628 | if (FAILED(rc)) throw rc;
|
---|
2629 | }
|
---|
2630 |
|
---|
2631 | Bstr uuidSource;
|
---|
2632 | rc = pSourceDisk->COMGETTER(Id)(uuidSource.asOutParam());
|
---|
2633 | if (FAILED(rc)) throw rc;
|
---|
2634 | Guid guidSource(uuidSource);
|
---|
2635 |
|
---|
2636 | // output filename
|
---|
2637 | const Utf8Str &strTargetFileNameOnly = pDiskEntry->strOvf;
|
---|
2638 |
|
---|
2639 | // target path needs to be composed from where the output OVF is
|
---|
2640 | const Utf8Str &strTargetFilePath = strTargetFileNameOnly;
|
---|
2641 |
|
---|
2642 | // The exporting requests a lock on the media tree. So leave our lock temporary.
|
---|
2643 | writeLock.release();
|
---|
2644 | try
|
---|
2645 | {
|
---|
2646 | // advance to the next operation
|
---|
2647 | pTask->pProgress->SetNextOperation(BstrFmt(tr("Exporting to disk image '%s'"),
|
---|
2648 | RTPathFilename(strTargetFilePath.c_str())).raw(),
|
---|
2649 | pDiskEntry->ulSizeMB); // operation's weight, as set up
|
---|
2650 | // with the IProgress originally
|
---|
2651 |
|
---|
2652 | // create a flat copy of the source disk image
|
---|
2653 | if (pDiskEntry->type == VirtualSystemDescriptionType_HardDiskImage)
|
---|
2654 | {
|
---|
2655 | /*
|
---|
2656 | * Export a disk image.
|
---|
2657 | */
|
---|
2658 | /* For compressed VMDK fun, we let i_exportFile produce the image bytes. */
|
---|
2659 | RTVFSIOSTREAM hVfsIosDst;
|
---|
2660 | vrc = RTVfsFsStrmPushFile(hVfsFssDst, strTargetFilePath.c_str(), UINT64_MAX,
|
---|
2661 | NULL /*paObjInfo*/, 0 /*cObjInfo*/, RTVFSFSSTRM_PUSH_F_STREAM, &hVfsIosDst);
|
---|
2662 | if (RT_FAILURE(vrc))
|
---|
2663 | throw setErrorVrc(vrc, tr("RTVfsFsStrmPushFile failed for '%s' (%Rrc)"), strTargetFilePath.c_str(), vrc);
|
---|
2664 | hVfsIosDst = i_manifestSetupDigestCalculationForGivenIoStream(hVfsIosDst, strTargetFilePath.c_str(),
|
---|
2665 | false /*fRead*/);
|
---|
2666 | if (hVfsIosDst == NIL_RTVFSIOSTREAM)
|
---|
2667 | throw setError(E_FAIL, "i_manifestSetupDigestCalculationForGivenIoStream(%s)", strTargetFilePath.c_str());
|
---|
2668 |
|
---|
2669 | rc = pSourceDisk->i_exportFile(strTargetFilePath.c_str(),
|
---|
2670 | format,
|
---|
2671 | MediumVariant_VmdkStreamOptimized,
|
---|
2672 | m->m_pSecretKeyStore,
|
---|
2673 | hVfsIosDst,
|
---|
2674 | pTask->pProgress);
|
---|
2675 | RTVfsIoStrmRelease(hVfsIosDst);
|
---|
2676 | }
|
---|
2677 | else
|
---|
2678 | {
|
---|
2679 | /*
|
---|
2680 | * Copy CD/DVD/floppy image.
|
---|
2681 | */
|
---|
2682 | Assert(pDiskEntry->type == VirtualSystemDescriptionType_CDROM);
|
---|
2683 | rc = pSourceDisk->i_addRawToFss(strTargetFilePath.c_str(), m->m_pSecretKeyStore, hVfsFssDst,
|
---|
2684 | pTask->pProgress, false /*fSparse*/);
|
---|
2685 | }
|
---|
2686 | if (FAILED(rc)) throw rc;
|
---|
2687 | }
|
---|
2688 | catch (HRESULT rc3)
|
---|
2689 | {
|
---|
2690 | writeLock.acquire();
|
---|
2691 | /// @todo file deletion on error? If not, we can remove that whole try/catch block.
|
---|
2692 | throw rc3;
|
---|
2693 | }
|
---|
2694 | // Finished, lock again (so nobody mess around with the medium tree
|
---|
2695 | // in the meantime)
|
---|
2696 | writeLock.acquire();
|
---|
2697 | }
|
---|
2698 |
|
---|
2699 | if (m->fManifest)
|
---|
2700 | {
|
---|
2701 | // Create & write the manifest file
|
---|
2702 | Utf8Str strMfFilePath = Utf8Str(pTask->locInfo.strPath).stripSuffix().append(".mf");
|
---|
2703 | Utf8Str strMfFileName = Utf8Str(strMfFilePath).stripPath();
|
---|
2704 | pTask->pProgress->SetNextOperation(BstrFmt(tr("Creating manifest file '%s'"), strMfFileName.c_str()).raw(),
|
---|
2705 | m->ulWeightForManifestOperation); // operation's weight, as set up
|
---|
2706 | // with the IProgress originally);
|
---|
2707 | /* Create a memory I/O stream and write the manifest to it. */
|
---|
2708 | RTVFSIOSTREAM hVfsIosManifest;
|
---|
2709 | vrc = RTVfsMemIoStrmCreate(NIL_RTVFSIOSTREAM, _1K, &hVfsIosManifest);
|
---|
2710 | if (RT_FAILURE(vrc))
|
---|
2711 | throw setErrorVrc(vrc, tr("RTVfsMemIoStrmCreate failed (%Rrc)"), vrc);
|
---|
2712 | if (m->hOurManifest != NIL_RTMANIFEST) /* In case it's empty. */
|
---|
2713 | vrc = RTManifestWriteStandard(m->hOurManifest, hVfsIosManifest);
|
---|
2714 | if (RT_SUCCESS(vrc))
|
---|
2715 | {
|
---|
2716 | /* Rewind the stream and add it to the output. */
|
---|
2717 | size_t cbIgnored;
|
---|
2718 | vrc = RTVfsIoStrmReadAt(hVfsIosManifest, 0 /*offset*/, &cbIgnored, 0, true /*fBlocking*/, &cbIgnored);
|
---|
2719 | if (RT_SUCCESS(vrc))
|
---|
2720 | {
|
---|
2721 | RTVFSOBJ hVfsObjManifest = RTVfsObjFromIoStream(hVfsIosManifest);
|
---|
2722 | vrc = RTVfsFsStrmAdd(hVfsFssDst, strMfFileName.c_str(), hVfsObjManifest, 0 /*fFlags*/);
|
---|
2723 | if (RT_SUCCESS(vrc))
|
---|
2724 | rc = S_OK;
|
---|
2725 | else
|
---|
2726 | rc = setErrorVrc(vrc, tr("RTVfsFsStrmAdd failed for the manifest (%Rrc)"), vrc);
|
---|
2727 | }
|
---|
2728 | else
|
---|
2729 | rc = setErrorVrc(vrc, tr("RTManifestWriteStandard failed (%Rrc)"), vrc);
|
---|
2730 | }
|
---|
2731 | else
|
---|
2732 | rc = setErrorVrc(vrc, tr("RTManifestWriteStandard failed (%Rrc)"), vrc);
|
---|
2733 | RTVfsIoStrmRelease(hVfsIosManifest);
|
---|
2734 | if (FAILED(rc))
|
---|
2735 | throw rc;
|
---|
2736 | }
|
---|
2737 | }
|
---|
2738 | catch (RTCError &x) // includes all XML exceptions
|
---|
2739 | {
|
---|
2740 | rc = setError(VBOX_E_FILE_ERROR,
|
---|
2741 | x.what());
|
---|
2742 | }
|
---|
2743 | catch (HRESULT aRC)
|
---|
2744 | {
|
---|
2745 | rc = aRC;
|
---|
2746 | }
|
---|
2747 |
|
---|
2748 | LogFlowFunc(("rc=%Rhrc\n", rc));
|
---|
2749 | LogFlowFuncLeave();
|
---|
2750 |
|
---|
2751 | return rc;
|
---|
2752 | }
|
---|
2753 |
|
---|
2754 |
|
---|
2755 | /**
|
---|
2756 | * Writes a memory buffer to a file in the output file system stream.
|
---|
2757 | *
|
---|
2758 | * @returns COM status code.
|
---|
2759 | * @param hVfsFssDst The file system stream to add the file to.
|
---|
2760 | * @param pszFilename The file name (w/ path if desired).
|
---|
2761 | * @param pvContent Pointer to buffer containing the file content.
|
---|
2762 | * @param cbContent Size of the content.
|
---|
2763 | */
|
---|
2764 | HRESULT Appliance::i_writeBufferToFile(RTVFSFSSTREAM hVfsFssDst, const char *pszFilename, const void *pvContent, size_t cbContent)
|
---|
2765 | {
|
---|
2766 | /*
|
---|
2767 | * Create a VFS file around the memory, converting it to a base VFS object handle.
|
---|
2768 | */
|
---|
2769 | HRESULT hrc;
|
---|
2770 | RTVFSIOSTREAM hVfsIosSrc;
|
---|
2771 | int vrc = RTVfsIoStrmFromBuffer(RTFILE_O_READ, pvContent, cbContent, &hVfsIosSrc);
|
---|
2772 | if (RT_SUCCESS(vrc))
|
---|
2773 | {
|
---|
2774 | hVfsIosSrc = i_manifestSetupDigestCalculationForGivenIoStream(hVfsIosSrc, pszFilename);
|
---|
2775 | AssertReturn(hVfsIosSrc != NIL_RTVFSIOSTREAM,
|
---|
2776 | setErrorVrc(vrc, "i_manifestSetupDigestCalculationForGivenIoStream"));
|
---|
2777 |
|
---|
2778 | RTVFSOBJ hVfsObj = RTVfsObjFromIoStream(hVfsIosSrc);
|
---|
2779 | RTVfsIoStrmRelease(hVfsIosSrc);
|
---|
2780 | AssertReturn(hVfsObj != NIL_RTVFSOBJ, E_FAIL);
|
---|
2781 |
|
---|
2782 | /*
|
---|
2783 | * Add it to the stream.
|
---|
2784 | */
|
---|
2785 | vrc = RTVfsFsStrmAdd(hVfsFssDst, pszFilename, hVfsObj, 0);
|
---|
2786 | RTVfsObjRelease(hVfsObj);
|
---|
2787 | if (RT_SUCCESS(vrc))
|
---|
2788 | hrc = S_OK;
|
---|
2789 | else
|
---|
2790 | hrc = setErrorVrc(vrc, tr("RTVfsFsStrmAdd failed for '%s' (%Rrc)"), pszFilename, vrc);
|
---|
2791 | }
|
---|
2792 | else
|
---|
2793 | hrc = setErrorVrc(vrc, "RTVfsIoStrmFromBuffer");
|
---|
2794 | return hrc;
|
---|
2795 | }
|
---|
2796 |
|
---|