Changeset 86650 in vbox
- Timestamp:
- Oct 20, 2020 2:26:02 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 141026
- Location:
- trunk/src
- Files:
-
- 2 deleted
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/vboxadd.sh
r86648 r86650 356 356 echo "KERNEL=${udev_fix}\"vboxuser\", NAME=\"vboxuser\", OWNER=\"vboxadd\", MODE=\"0666\"" >> /etc/udev/rules.d/60-vboxadd.rules 357 357 # Make sure the new rule is noticed. 358 udevadm control --reload -rules>/dev/null 2>&1 || true358 udevadm control --reload >/dev/null 2>&1 || true 359 359 udevcontrol reload_rules >/dev/null 2>&1 || true 360 360 fi -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r86648 r86650 1113 1113 case VirtualSystemDescriptionType_CloudPublicSSHKey: 1114 1114 case VirtualSystemDescriptionType_BootingFirmware: 1115 case VirtualSystemDescriptionType_CloudInstanceMetadata:1116 case VirtualSystemDescriptionType_CloudInstanceFreeFormTags:1117 case VirtualSystemDescriptionType_CloudImageFreeFormTags:1118 1119 1115 /** @todo VirtualSystemDescriptionType_Miscellaneous? */ 1120 1116 break; -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageCloud.cpp
r86648 r86650 123 123 int vrc = RTGetOptInit(&GetState, a->argc, a->argv, s_aOptions, RT_ELEMENTS(s_aOptions), iFirst, 0); 124 124 AssertRCReturn(vrc, RTEXITCODE_FAILURE); 125 if (a->argc == iFirst) 126 { 127 RTPrintf("Empty command parameter list, show help.\n"); 128 printHelp(g_pStdOut); 129 return RTEXITCODE_SUCCESS; 130 } 125 131 126 132 Utf8Str strCompartmentId; … … 289 295 int vrc = RTGetOptInit(&GetState, a->argc, a->argv, s_aOptions, RT_ELEMENTS(s_aOptions), iFirst, 0); 290 296 AssertRCReturn(vrc, RTEXITCODE_FAILURE); 297 if (a->argc == iFirst) 298 { 299 RTPrintf("Empty command parameter list, show help.\n"); 300 printHelp(g_pStdOut); 301 return RTEXITCODE_SUCCESS; 302 } 291 303 292 304 Utf8Str strCompartmentId; … … 530 542 531 543 Utf8Str strDisplayName, strImageId, strBootVolumeId, strPublicSSHKey; 532 bool fKeyPresented = false;533 544 int c; 534 545 while ((c = RTGetOpt(&GetState, &ValueUnion)) != 0) … … 592 603 pVSD->AddDescription(VirtualSystemDescriptionType_CloudPublicSSHKey, 593 604 Bstr(ValueUnion.psz).raw(), NULL); 594 fKeyPresented = true;595 605 break; 596 606 case 1001: … … 610 620 return RTEXITCODE_FAILURE; 611 621 612 if ( fKeyPresented ) 613 if (strPublicSSHKey.isEmpty()) 614 RTPrintf("Warning!!! The value of the passed public SSH key is empty...\n"); 615 else 616 return errorArgument("Parameter --public-ssh-key is absent. if there is no need to pass a key just use the form" 617 " '--public-ssh-key='."); 622 if (strPublicSSHKey.isEmpty()) 623 RTPrintf("Warning!!! Public SSH key doesn't present in the passed arguments...\n"); 618 624 619 625 if (strImageId.isNotEmpty() && strBootVolumeId.isNotEmpty()) … … 781 787 }; 782 788 783 const size_t vsdHReadableArraySize = 1 4;//the number of items in the vsdHReadableArray789 const size_t vsdHReadableArraySize = 12;//the number of items in the vsdHReadableArray 784 790 vsdHReadable vsdHReadableArray[vsdHReadableArraySize] = { 785 791 {VirtualSystemDescriptionType_CloudDomain, "Availability domain = %ls\n", "Availability domain wasn't found\n"}, … … 796 802 {VirtualSystemDescriptionType_CPU, "CPUs = %ls\n", "Numbers of CPUs weren't found\n"}, 797 803 {VirtualSystemDescriptionType_CloudPublicIP, "Instance public IP = %ls\n", "Public IP wasn't found\n"}, 798 {VirtualSystemDescriptionType_CloudInstanceMetadata, "%ls\n", "Metadata weren't found\n"}, 799 {VirtualSystemDescriptionType_CloudInstanceFreeFormTags, "%ls\n", "Instance free-form tags weren't found\n"}, 800 {VirtualSystemDescriptionType_CloudImageFreeFormTags, "%ls\n", "Image free-form tags weren't found\n"} 801 804 {VirtualSystemDescriptionType_Miscellaneous, "%ls\n", "Free-form tags or metadata weren't found\n"} 802 805 }; 803 806 -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r86648 r86650 363 363 } 364 364 #endif 365 break;366 }367 368 case VBoxEventType_OnProgressPercentageChanged:369 {370 ComPtr<IProgressPercentageChangedEvent> pV = aEvent;371 Assert(pV);372 LONG percent = 0;373 pV->COMGETTER(Percent)(&percent);374 {375 LogRel(("VBoxSDLEventListener: got the percent %d from the event "376 "VBoxEventType_OnProgressPercentageChanged.\n", percent));377 RTPrintf("VBoxSDLEventListener: got the percent %d from the event "378 "VBoxEventType_OnProgressPercentageChanged.\n", percent);379 }380 365 break; 381 366 } … … 612 597 } 613 598 #endif /* !RT_OS_DARWIN */ 614 break;615 }616 617 case VBoxEventType_OnProgressPercentageChanged:618 {619 ComPtr<IProgressPercentageChangedEvent> pV = aEvent;620 Assert(pV);621 LONG percent = 0;622 pV->COMGETTER(Percent)(&percent);623 {624 LogRel(("VBoxSDLConsoleEventListener: got the percent %d from the event "625 "VBoxEventType_OnProgressPercentageChanged.\n", percent));626 RTPrintf("VBoxSDLConsoleEventListener: got the percent %d from the event "627 "VBoxEventType_OnProgressPercentageChanged.\n", percent);628 }629 599 break; 630 600 } … … 2138 2108 com::SafeArray<VBoxEventType_T> eventTypes; 2139 2109 eventTypes.push_back(VBoxEventType_OnExtraDataChanged); 2140 2141 eventTypes.push_back(VBoxEventType_OnProgressPercentageChanged);2142 2110 CHECK_ERROR(pES, RegisterListener(pVBoxListener, ComSafeArrayAsInParam(eventTypes), true)); 2143 2111 } … … 2157 2125 eventTypes.push_back(VBoxEventType_OnCanShowWindow); 2158 2126 eventTypes.push_back(VBoxEventType_OnShowWindow); 2159 eventTypes.push_back(VBoxEventType_OnProgressPercentageChanged);2160 2127 CHECK_ERROR(pES, RegisterListener(pConsoleListener, ComSafeArrayAsInParam(eventTypes), true)); 2161 2128 // until we've tried to to start the VM, ignore power off events … … 2405 2372 case SDL_USER_EVENT_XPCOM_EVENTQUEUE: 2406 2373 { 2407 //LogFlow(("SDL_USER_EVENT_XPCOM_EVENTQUEUE: processing XPCOM event queue...\n"));2374 LogFlow(("SDL_USER_EVENT_XPCOM_EVENTQUEUE: processing XPCOM event queue...\n")); 2408 2375 eventQ->processEventQueue(0); 2409 2376 signalXPCOMEventQueueThread(); -
trunk/src/VBox/Main/UnattendedTemplates/ol_ks.cfg
r86648 r86650 82 82 glibc-headers 83 83 gcc 84 @@VBOX_ COND_GUEST_VERSION[>8.0.0]@@84 @@VBOX_GUEST_OS_COND_VERSION@@**8.0.0** 85 85 elfutils-libelf-devel 86 @@VBOX_ COND_END@@86 @@VBOX_GUEST_OS_COND_END@@ 87 87 dkms 88 88 make -
trunk/src/VBox/Main/UnattendedTemplates/ol_postinstall.sh
r86648 r86650 202 202 log_command_in_target yum -y install binutils 203 203 log_command_in_target yum -y install make 204 @@VBOX_ COND_GUEST_VERSION[>8.0.0]@@204 @@VBOX_GUEST_OS_COND_VERSION@@**8.0.0** 205 205 log_command_in_target yum -y install elfutils-libelf-devel 206 @@VBOX_ COND_END@@206 @@VBOX_GUEST_OS_COND_END@@ 207 207 log_command_in_target yum -y install dkms 208 208 log_command_in_target yum -y install make -
trunk/src/VBox/Main/UnattendedTemplates/redhat67_ks.cfg
r86648 r86650 82 82 glibc-headers 83 83 gcc 84 @@VBOX_ COND_GUEST_VERSION[>8.0.0]@@84 @@VBOX_GUEST_OS_COND_VERSION@@**8.0.0** 85 85 elfutils-libelf-devel 86 @@VBOX_ COND_END@@86 @@VBOX_GUEST_OS_COND_END@@ 87 87 dkms 88 88 make -
trunk/src/VBox/Main/UnattendedTemplates/redhat_postinstall.sh
r86648 r86650 178 178 log_command_in_target yum -y install binutils 179 179 log_command_in_target yum -y install make 180 @@VBOX_ COND_GUEST_VERSION[>8.0.0]@@180 @@VBOX_GUEST_OS_COND_VERSION@@**8.0.0** 181 181 log_command_in_target yum -y install elfutils-libelf-devel 182 @@VBOX_ COND_END@@182 @@VBOX_GUEST_OS_COND_END@@ 183 183 log_command_in_target yum -y install dkms 184 184 log_command_in_target yum -y install make -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r86648 r86650 4178 4178 <enum 4179 4179 name="VirtualSystemDescriptionType" 4180 uuid=" 70c5ca7b-65a8-49cc-9b19-e80192b9db1d"4180 uuid="6e18c6d7-e1b7-4cb0-9706-1f31d18248f8" 4181 4181 > 4182 4182 <desc>Used with <link to="IVirtualSystemDescription" /> to describe the type of … … 4246 4246 <const name="CloudPublicSSHKey" value="48" /> 4247 4247 <const name="BootingFirmware" value="49" /> 4248 <const name="CloudInstanceMetadata" value="50" />4249 <const name="CloudInstanceFreeFormTags" value="51" />4250 <const name="CloudImageFreeFormTags" value="52" />4251 4248 <const name="HardDiskControllerVirtioSCSI" value="60" /> 4252 4249 </enum> -
trunk/src/VBox/Main/include/ApplianceImpl.h
r86648 r86650 145 145 static void i_exportOPCThreadTask(TaskOPC *pTask); 146 146 static void i_importOrExportCloudThreadTask(TaskCloud *pTask); 147 148 HRESULT i_findFirstBootableImage(ComPtr<IMedium>& bootMedium, const ComPtr<IMachine> &pMachine);149 147 150 148 HRESULT i_initBackendNames(); -
trunk/src/VBox/Main/include/ProgressImpl.h
r86648 r86650 157 157 static DECLCALLBACK(int) i_vdProgressCallback(void *pvUser, unsigned uPercentage); 158 158 159 HRESULT i_addOperations(ULONG cOperations, ULONG ulTotalOperationsWeight);160 159 protected: 161 160 DECLARE_EMPTY_CTOR_DTOR(Progress) -
trunk/src/VBox/Main/include/UnattendedInstaller.h
r86648 r86650 520 520 /** 521 521 * RHEL 7 installer (same as RHEL 6). 522 * The class was added for better handling any possible subtle difference between RHEL6 and RHEL7.523 522 */ 524 523 class UnattendedRhel7Installer : public UnattendedRhel6Installer … … 541 540 /** 542 541 * RHEL 8 installer (same as RHEL 7). 543 * The class was added for better handling any possible subtle difference between RHEL7 and RHEL8.544 542 */ 545 543 class UnattendedRhel8Installer : public UnattendedRhel7Installer … … 607 605 608 606 /** 609 * Oracle Linux 6 installer. 610 * (same as RHEL 6, except for the templates). 611 * The reason of adding new class is to sepatate the RHEL from OL. 607 * Oracle Linux 6 installer. 612 608 */ 613 609 class UnattendedOracleLinux6Installer : public UnattendedRhel6Installer … … 625 621 626 622 /** 627 * Oracle Linux 7 installer. Same as OL 6. 628 * The class was added for better handling any possible subtle difference between OL6 and OL7. 623 * Oracle Linux 7 installer. 629 624 */ 630 625 class UnattendedOracleLinux7Installer : public UnattendedOracleLinux6Installer … … 646 641 647 642 /** 648 * Oracle Linux 8 installer. Same as OL 7. 649 * The class was added for better handling any possible subtle difference between OL7 and OL8. 643 * Oracle Linux 8 installer. 650 644 */ 651 645 class UnattendedOracleLinux8Installer : public UnattendedOracleLinux7Installer -
trunk/src/VBox/Main/include/UnattendedScript.h
r86648 r86650 96 96 virtual HRESULT getConditional(const char *pachPlaceholder, size_t cchPlaceholder, bool *pfOutputting); 97 97 98 99 /** 100 * Get the result of a conditional for special version of guest OS. 101 * 102 * @returns COM status code. 103 * @param pachPlaceholder The placholder string. Not zero terminated. 104 * @param cchPlaceholder The length of the placeholder. 105 * @param cchContent The length of placeholder content. 106 * @param pcchCorrect The length of part which must be excluded from the final content of 107 * the placeholder. 108 * @param pfOutputting Where to return the result of the conditional. 109 * This holds the current outputting state on input 110 * in case someone want to sanity check anything. 111 */ 112 virtual HRESULT getGuestOSConditional(const char *pachPlaceholder, 113 size_t cchPlaceholder, 114 size_t cchContent, 115 size_t *pcchCorrect, 116 bool *pfOutputting); 98 117 }; 99 118 -
trunk/src/VBox/Main/src-all/ProgressImpl.cpp
r86648 r86650 321 321 322 322 // public methods only for internal purposes 323 324 HRESULT Progress::i_addOperations(ULONG cOperations, ULONG ulTotalOperationsWeight)325 {326 m_cOperations += cOperations;327 m_ulTotalOperationsWeight += ulTotalOperationsWeight;328 return S_OK;329 }330 323 //////////////////////////////////////////////////////////////////////////////// 331 324 … … 1066 1059 m_ulOperationPercent = 0; 1067 1060 1068 Log Rel(("%s: aNextOperationsWeight = %d; m_ulCurrentOperation is now %d, m_ulOperationsCompletedWeight is now %d\n",1061 LogThisFunc(("%s: aNextOperationsWeight = %d; m_ulCurrentOperation is now %d, m_ulOperationsCompletedWeight is now %d\n", 1069 1062 m_operationDescription.c_str(), aNextOperationsWeight, m_ulCurrentOperation, m_ulOperationsCompletedWeight)); 1070 1063 -
trunk/src/VBox/Main/src-server/ApplianceImpl.cpp
r86648 r86650 26 26 #include <VBox/com/array.h> 27 27 #include <map> 28 #include <stack>29 28 30 29 #include "ApplianceImpl.h" … … 1410 1409 } 1411 1410 1412 HRESULT Appliance::i_findFirstBootableImage(ComPtr<IMedium>& bootMedium, const ComPtr<IMachine> &pMachine)1413 {1414 HRESULT hrc = S_OK;1415 LogFlowFuncEnter();1416 1417 const ComPtr<IMachine> &baseMachine = pMachine;1418 try1419 {1420 /* Fetch all available storage controllers */1421 com::SafeIfaceArray<IStorageController> aStorageControllers;1422 // AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);1423 hrc = baseMachine->COMGETTER(StorageControllers)(ComSafeArrayAsOutParam(aStorageControllers));1424 // alock.release();1425 bool fBootMediumFound = false;1426 ComPtr<IMedium> ptrBootMedium;1427 std::stack <StorageBus_T> aBuses;1428 //insert buses in priority StorageBus_IDE - highest, StorageBus_SAS - lowest1429 aBuses.push(StorageBus_SAS);1430 aBuses.push(StorageBus_SCSI);1431 aBuses.push(StorageBus_SATA);1432 aBuses.push(StorageBus_IDE);1433 1434 while (!aBuses.empty())1435 {1436 Bstr bstrControllerName;1437 Utf8Str strControllerName;1438 ComPtr<IStorageController> sc;1439 StorageBus_T eTargetStorageBusType = aBuses.top();1440 StorageBus_T eSourceStorageBusType;1441 bool f = false;1442 1443 for (size_t i=0; i<aStorageControllers.size(); ++i)1444 {1445 sc = aStorageControllers[i];1446 sc->COMGETTER(Name)(bstrControllerName.asOutParam());1447 sc->COMGETTER(Bus)(&eSourceStorageBusType);1448 if (eSourceStorageBusType == eTargetStorageBusType)1449 {1450 f = true;1451 break;1452 }1453 }1454 1455 if (!f)1456 {1457 aBuses.pop();1458 continue;1459 }1460 1461 com::SafeIfaceArray<IMediumAttachment> aMediumAttachments;1462 hrc = baseMachine->GetMediumAttachmentsOfController(bstrControllerName.raw(),1463 ComSafeArrayAsOutParam(aMediumAttachments));1464 1465 strControllerName = bstrControllerName;1466 AssertLogRelReturn(strControllerName.isNotEmpty(), setErrorBoth(E_UNEXPECTED, VERR_INTERNAL_ERROR_2));1467 1468 for (size_t j = 0; j < aMediumAttachments.size(); j++)1469 {1470 //some checks just in case1471 LONG iPort = -1;1472 hrc = aMediumAttachments[j]->COMGETTER(Port)(&iPort);1473 AssertComRCReturn(hrc, hrc);1474 1475 LONG iDevice = -1;1476 hrc = aMediumAttachments[j]->COMGETTER(Device)(&iDevice);1477 AssertComRCReturn(hrc, hrc);1478 1479 DeviceType_T enmType;1480 hrc = aMediumAttachments[j]->COMGETTER(Type)(&enmType);1481 AssertComRCReturn(hrc, hrc);1482 1483 if (enmType == DeviceType_HardDisk)1484 {1485 ComPtr<IMedium> ptrMedium;1486 hrc = aMediumAttachments[j]->COMGETTER(Medium)(ptrMedium.asOutParam());1487 AssertComRCReturn(hrc, hrc);1488 1489 if (ptrMedium.isNotNull())1490 {1491 ptrBootMedium = ptrMedium;1492 fBootMediumFound = true;1493 break;1494 }1495 }1496 }1497 1498 if (fBootMediumFound)1499 {1500 hrc = S_OK;1501 break;1502 }1503 else1504 aBuses.pop();1505 }1506 1507 if (ptrBootMedium != NULL && !ptrBootMedium.isNull())1508 ptrBootMedium.queryInterfaceTo(bootMedium.asOutParam());1509 }1510 catch (HRESULT erc)1511 {1512 hrc = setError(erc, tr("Exception during finding a bootable disk "));1513 }1514 1515 LogFlowFuncLeave();1516 return hrc;1517 }1518 1519 1411 void i_parseURI(Utf8Str strUri, LocationInfo &locInfo) 1520 1412 { -
trunk/src/VBox/Main/src-server/ApplianceImplExport.cpp
r86648 r86650 712 712 try 713 713 { 714 alock.release();715 714 rc = i_writeCloudImpl(m->locInfo, progress); 716 alock.acquire();717 715 } 718 716 catch (HRESULT aRC) … … 885 883 HRESULT Appliance::i_writeCloudImpl(const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress) 886 884 { 887 HRESULT hrc = S_OK;888 889 885 for (list<ComObjPtr<VirtualSystemDescription> >::const_iterator 890 886 it = m->virtualSystemDescriptions.begin(); … … 901 897 } 902 898 903 //Detect bootable disk and remove others from the VirtualSystemDescription 904 ComPtr<IMedium> pBootableMedium; 905 hrc = i_findFirstBootableImage(pBootableMedium, vsdescThis->m->pMachine); 906 907 if (FAILED(hrc)) 908 throw hrc; 909 if (pBootableMedium.isNull()) 910 throw hrc = setError(VBOX_E_OBJECT_NOT_FOUND, tr("Could not find any bootable disk")); 911 912 ComPtr<IMedium> pBootableBaseMedium; 913 // returns pBootableMedium if there are no diff images 914 hrc = pBootableMedium->COMGETTER(Base)(pBootableBaseMedium.asOutParam()); 915 if (FAILED(hrc)) 916 throw hrc; 917 918 //Get base bootable disk location 919 Bstr bstrBootLocation; 920 hrc = pBootableBaseMedium->COMGETTER(Location)(bstrBootLocation.asOutParam()); 921 if (FAILED(hrc)) throw hrc; 922 Utf8Str strBootLocation = bstrBootLocation; 923 899 //remove all disks from the VirtualSystemDescription exept one 924 900 skipped = vsdescThis->i_findByType(VirtualSystemDescriptionType_HardDiskImage); 925 901 itSkipped = skipped.begin(); 902 903 Utf8Str strBootLocation; 926 904 while (itSkipped != skipped.end()) 927 905 { 928 Utf8Str path = (*itSkipped)->strVBoxCurrent; 929 // Locate the Medium object for this entry (by location/path). 930 Log(("Finding disk \"%s\"\n", path.c_str())); 931 ComObjPtr<Medium> ptrSourceDisk; 932 hrc = mVirtualBox->i_findHardDiskByLocation(path, true , &ptrSourceDisk); 933 if (FAILED(hrc)) 934 throw hrc; 935 936 if (!path.equalsIgnoreCase(strBootLocation)) 906 if (strBootLocation.isEmpty()) 907 strBootLocation = (*itSkipped)->strVBoxCurrent; 908 else 937 909 (*itSkipped)->skipIt = true; 938 else939 LogRel(("Possible bootable disk \"%s\"\n", path.c_str()));940 941 910 ++itSkipped; 942 911 } … … 963 932 964 933 // Create a progress object here otherwise Task won't be created successfully 965 hrc = aProgress.createObject();934 HRESULT hrc = aProgress.createObject(); 966 935 if (SUCCEEDED(hrc)) 967 936 { -
trunk/src/VBox/Main/src-server/UnattendedScript.cpp
r86648 r86650 59 59 static const char s_szPrefixCond[] = "@@VBOX_COND_"; 60 60 static const char s_szPrefixCondEnd[] = "@@VBOX_COND_END@@"; 61 static const char s_szPrefixCondGuestOs[] = "@@VBOX_GUEST_OS_COND_"; 62 static const char s_szPrefixCondGuestOsEnd[] = "@@VBOX_GUEST_OS_COND_END@@"; 61 63 62 64 struct … … 69 71 size_t offTemplate = 0; 70 72 size_t cchTemplate = mStrScriptFullContent.length(); 73 size_t cchInternalCorrect = 0;//used in logic handling the placeholder @@VBOX_GUEST_OS_COND_XXX@@ 71 74 rStrDst.setNull(); 72 75 for (;;) … … 83 86 try 84 87 { 85 rStrDst.append(mStrScriptFullContent, offTemplate , cchToCopy);88 rStrDst.append(mStrScriptFullContent, offTemplate + cchInternalCorrect, cchToCopy - + cchInternalCorrect); 86 89 } 87 90 catch (std::bad_alloc &) … … 92 95 } 93 96 offTemplate += cchToCopy; 97 cchInternalCorrect = 0;//don't forget to reset 94 98 } 95 99 … … 107 111 while ( offPlaceholder + cchPlaceholder < cchTemplate 108 112 && (ch = pszPlaceholder[cchPlaceholder]) != '\0' 109 && ( ch == '_' || ch == '[' || ch == ']' || ch == '.' || ch == '>' || ch == '<'113 && ( ch == '_' 110 114 || RT_C_IS_UPPER(ch) 111 115 || RT_C_IS_DIGIT(ch)) ) … … 124 128 || pszPlaceholder[cchPlaceholder - 2] != '@' 125 129 || ( strncmp(pszPlaceholder, s_szPrefixInsert, sizeof(s_szPrefixInsert) - 1) != 0 126 && strncmp(pszPlaceholder, s_szPrefixCond, sizeof(s_szPrefixCond) - 1) != 0 ) ) 130 && strncmp(pszPlaceholder, s_szPrefixCond, sizeof(s_szPrefixCond) - 1) != 0 131 && strncmp(pszPlaceholder, s_szPrefixCondGuestOs, sizeof(s_szPrefixCondGuestOs) - 1) != 0) ) 127 132 { 128 133 hrc = mpSetError->setError(E_FAIL, mpSetError->tr("Malformed template placeholder '%.*s'"), … … 183 188 * one from the condition. 184 189 */ 185 else 186 { 187 Assert(strncmp(pszPlaceholder, s_szPrefixCond, sizeof(s_szPrefixCond) - 1) == 0); 190 else if ( strncmp(pszPlaceholder, s_szPrefixCond, sizeof(s_szPrefixCond) - 1U) == 0 ) 191 { 188 192 if (cConds + 1 < RT_ELEMENTS(aConds)) 189 193 { … … 191 195 bool fNewOutputting = fOutputting; 192 196 hrc = getConditional(pszPlaceholder, cchPlaceholder, &fNewOutputting); 197 if (SUCCEEDED(hrc)) 198 fOutputting = fOutputting && fNewOutputting; 199 else 200 break; 201 cConds++; 202 } 203 else 204 { 205 hrc = mpSetError->setErrorBoth(E_FAIL, VERR_PARSE_ERROR, 206 mpSetError->tr("Too deep conditional nesting at offset %zu (%#zx)"), 207 offPlaceholder, offPlaceholder); 208 break; 209 } 210 } 211 /* 212 * @@VBOX_GUEST_OS_COND_END@@: Pop one item of the conditional stack. 213 */ 214 else if ( strncmp(pszPlaceholder, s_szPrefixCondGuestOsEnd, sizeof(s_szPrefixCondGuestOsEnd) - 1U) == 0 ) 215 { 216 if (cConds > 0) 217 { 218 cConds--; 219 fOutputting = aConds[cConds].fSavedOutputting; 220 } 221 else 222 { 223 hrc = mpSetError->setErrorBoth(E_FAIL, VERR_PARSE_ERROR, 224 mpSetError->tr("%s without @@VBOX_GUEST_OS_COND_XXX@@ at offset %zu (%#zx)"), 225 s_szPrefixCondGuestOsEnd, offPlaceholder, offPlaceholder); 226 break; 227 } 228 } 229 /* 230 * @@VBOX_GUEST_OS_COND_XXX@@: Push the previous outputting state and combine it with the 231 * one from the condition. 232 */ 233 else 234 { 235 Assert(strncmp(pszPlaceholder, s_szPrefixCondGuestOs, sizeof(s_szPrefixCondGuestOs) - 1) == 0); 236 if (cConds + 1 < RT_ELEMENTS(aConds)) 237 { 238 aConds[cConds].fSavedOutputting = fOutputting; 239 bool fNewOutputting = fOutputting; 240 241 //offTemplate is the beginning of content, offEndContent is the end of content 242 //@@PLACEHOLDER_BEGIN@@Content@@PLACEHOLDER_END@@ 243 // ^ ^ 244 // | | 245 // offTemplate offEndContent 246 size_t offEndContent = mStrScriptFullContent.find(s_szPrefix, offTemplate); 247 size_t cchContent = offEndContent - offTemplate - 1; 248 hrc = getGuestOSConditional(pszPlaceholder, cchPlaceholder, cchContent, &cchInternalCorrect, &fNewOutputting); 193 249 if (SUCCEEDED(hrc)) 194 250 fOutputting = fOutputting && fNewOutputting; … … 443 499 } 444 500 501 HRESULT UnattendedScriptTemplate::getGuestOSConditional(const char *pachPlaceholder, 502 size_t cchPlaceholder, 503 size_t cchContent, 504 size_t *cchCorrect, 505 bool *pfOutputting) 506 { 507 #define IS_PLACEHOLDER_MATCH(a_szMatch) \ 508 ( cchPlaceholder == sizeof("@@VBOX_GUEST_OS_COND_" a_szMatch "@@") - 1U \ 509 && memcmp(pachPlaceholder, "@@VBOX_GUEST_OS_COND_" a_szMatch "@@", sizeof("@@VBOX_GUEST_OS_COND_" a_szMatch "@@") - 1U) == 0) 510 511 if ( IS_PLACEHOLDER_MATCH("VERSION") ) 512 { 513 Utf8Str strT(pachPlaceholder + cchPlaceholder, cchContent); 514 RTCList<RTCString> partList = strT.split("**"); 515 Utf8Str strRequiredOSVersion; 516 if (partList.size() == 2)//when the version is placed together with the placeholder in one line in the file 517 { 518 //The case when the string has been splitted on the 2 parts: 519 //1. OS version 520 //2. Actual content 521 strRequiredOSVersion.assign(partList.at(0)); 522 //cchCorrect = "**" + length of OS version string + "**" 523 *cchCorrect = 2 + partList.at(0).length() + 2;// must be subtracted from the cchContent 524 } 525 else if (partList.size() == 3)//when the version is placed on a standalone line in the file 526 { 527 //The case when the string has been splitted on the 3 parts: 528 //1. Empty string or string with only "\n" 529 //2. OS version 530 //3. Actual content 531 strRequiredOSVersion.assign(partList.at(1)); 532 *cchCorrect = 2 + partList.at(0).length() + partList.at(1).length() + 2;// must be subtracted from the cchContent 533 } 534 else//case with wrong string syntax 535 { 536 *cchCorrect = 0; 537 *pfOutputting = false; 538 LogRel(("Malformed content of the template @@VBOX_GUEST_OS_COND_VERSION@@\n")); 539 return S_OK; 540 } 541 542 if (strRequiredOSVersion.isEmpty()) 543 *pfOutputting = false; 544 else 545 { 546 Utf8Str strDetectedOSVersion = mpUnattended->i_getDetectedOSVersion(); 547 RTCList<RTCString> partListRequired = strRequiredOSVersion.split("."); 548 RTCList<RTCString> partListDetected = strDetectedOSVersion.split("."); 549 *pfOutputting = false;//initially is set to "false" 550 551 /** @todo r=vvp: Should we check the string with a requested OS version for digits? 552 * (with RTLocCIsDigit()) */ 553 //Major version must be presented 554 if ( partListDetected.at(0).toUInt32() >= partListRequired.at(0).toUInt32() )//comparison major versions 555 { 556 //OS major versions are equal or detected guest OS major version is greater. Go further. 557 if (partListDetected.size() > 1 && partListRequired.size() > 1)//comparison minor versions 558 { 559 if (partListDetected.at(1).toUInt32() >= partListRequired.at(1).toUInt32()) 560 //OS minor versions are equal or detected guest OS minor version is greater. Go further. 561 *pfOutputting = true; 562 else 563 //The detected guest OS minor version is less than the requested one. 564 *pfOutputting = false; 565 } 566 else 567 //OS minor versions are absent. 568 *pfOutputting = true; 569 } 570 else 571 //The detected guest OS major version is less than the requested one. 572 *pfOutputting = false; 573 } 574 } 575 else 576 return mpSetError->setErrorBoth(E_FAIL, VERR_NOT_FOUND, mpSetError->tr("Unknown conditional placeholder '%.*s'"), 577 cchPlaceholder, pachPlaceholder); 578 return S_OK; 579 #undef IS_PLACEHOLDER_MATCH 580 } 581 445 582 HRESULT UnattendedScriptTemplate::getConditional(const char *pachPlaceholder, size_t cchPlaceholder, bool *pfOutputting) 446 583 { … … 448 585 ( cchPlaceholder == sizeof("@@VBOX_COND_" a_szMatch "@@") - 1U \ 449 586 && memcmp(pachPlaceholder, "@@VBOX_COND_" a_szMatch "@@", sizeof("@@VBOX_COND_" a_szMatch "@@") - 1U) == 0) 450 451 #define IS_PLACEHOLDER_PARTIALLY_MATCH(a_szMatch) \452 (memcmp(pachPlaceholder, "@@VBOX_COND_" a_szMatch, sizeof("@@VBOX_COND_" a_szMatch) - 1U) == 0)453 587 454 588 /* Install Guest Additions: */ … … 489 623 else if (IS_PLACEHOLDER_MATCH("HAS_PROXY")) 490 624 *pfOutputting = mpUnattended->i_getProxy().isNotEmpty(); 491 else if (IS_PLACEHOLDER_PARTIALLY_MATCH("GUEST_VERSION"))492 {493 //parse the placeholder and extract the OS version from there494 RTCString strPlaceHolder(pachPlaceholder);495 size_t startPos = sizeof("@@VBOX_COND_GUEST_VERSION") - 1;//-1 is for '\n'496 size_t endPos = strPlaceHolder.find("@@", startPos + 2);497 //next part should look like [>8.0.0] for example where:498 // - "[,]" is just the brackets to wrap up the condition;499 // - ">" is "greater". Also possible comparison is "<";500 // - 8.0.0 is required guest OS version.501 //The end of placeholder is "@@" like for others.502 503 if ( strPlaceHolder[endPos] == '@'504 && strPlaceHolder[endPos+1] == '@' )505 {506 if ( strPlaceHolder[startPos++] == '[' && strPlaceHolder[--endPos] == ']' )507 {508 char chComp = strPlaceHolder[startPos++];509 RTCString strRequiredOSVersion = strPlaceHolder.substr(startPos, endPos - startPos);510 RTCString strDetectedOSVersion = mpUnattended->i_getDetectedOSVersion();511 int res = RTStrVersionCompare(strDetectedOSVersion.c_str(), strRequiredOSVersion.c_str());512 if ( res >= 0 && chComp == '>' )513 *pfOutputting = true;514 else if ( res < 0 && chComp == '<' )515 *pfOutputting = true;516 else517 *pfOutputting = false;518 }519 }520 else521 *pfOutputting = false;//initially is set to "false"522 }523 625 else 524 626 return mpSetError->setErrorBoth(E_FAIL, VERR_NOT_FOUND, mpSetError->tr("Unknown conditional placeholder '%.*s'"), -
trunk/src/VBox/Runtime/common/crypto/key-file.cpp
r86648 r86650 106 106 { g_aWords_PublicKey, RT_ELEMENTS(g_aWords_PublicKey) }, 107 107 { g_aWords_RsaPrivateKey, RT_ELEMENTS(g_aWords_RsaPrivateKey) }, 108 { g_aWords_EncryptedPrivateKey, RT_ELEMENTS(g_aWords_EncryptedPrivateKey) },109 108 { g_aWords_PrivateKey, RT_ELEMENTS(g_aWords_PrivateKey) }, 110 109 }; -
trunk/src/VBox/Runtime/generic/http-curl.cpp
r86648 r86650 404 404 405 405 *phHttp = (RTHTTP)pThis; 406 #if 0 // XXX: uwe 407 { 408 const char *verbose = getenv("CURL_VERBOSE"); 409 if (verbose != NULL && *verbose != '0') 410 curl_easy_setopt(pThis->pCurl, CURLOPT_VERBOSE, 1L); 411 } 412 #endif 406 413 407 return VINF_SUCCESS; 414 408 } … … 446 440 pThis->rcOutput = VINF_SUCCESS; 447 441 448 #if 0 // XXX: uwe 449 { 450 const char *verbose = getenv("CURL_VERBOSE"); 451 if (verbose != NULL && *verbose != '0') 452 curl_easy_setopt(pThis->pCurl, CURLOPT_VERBOSE, 1L); 453 } 454 #endif 442 /* Tell the proxy configuration code to reapply settings even if they 443 didn't change as cURL has forgotten them: */ 444 pThis->fReapplyProxyInfo = true; 455 445 456 446 return VINF_SUCCESS; … … 2646 2636 pThis->fDeleteCaFile = true; 2647 2637 pThis->pszCaFile = pszCaFile; 2648 2649 // RTPrintf("pszCaFile=\"%s\"\n", pszCaFile); // XXX: uwe2650 2651 2638 return VINF_SUCCESS; 2652 2639 } -
trunk/src/VBox/ValidationKit/tests/api/tdAppliance1.py
r86648 r86650 61 61 """ 62 62 fRc = True; 63 64 if not self.oTstDrv.importVBoxApi():65 return False66 63 67 64 # Import a set of simple OVAs. -
trunk/src/VBox/ValidationKit/tests/api/tdMoveVm1.py
r86648 r86650 145 145 fRc = True 146 146 try: 147 148 ## @todo r=bird: Too much unncessary crap inside try clause. Only oVM.moveTo needs to be here. 149 ## Though, you could make an argument for oVM.name too, perhaps. 150 147 151 # move machine 148 152 reporter.log('Moving machine "%s" to the "%s"' % (oVM.name, sLocation)) … … 232 236 233 237 reporter.log('####### Reference locations: #######') 234 for eachItem in a References:238 for eachItem in aActuals: 235 239 reporter.log(' "%s"' % (eachItem)) 236 240 -
trunk/src/libs/curl-7.64.0/lib/sendf.c
r86648 r86650 828 828 case CURLINFO_HEADER_OUT: 829 829 case CURLINFO_HEADER_IN: 830 case CURLINFO_DATA_IN: /* XXX: uwe */831 case CURLINFO_DATA_OUT: /* XXX: uwe */832 830 fwrite(s_infotype[type], 2, 1, data->set.err); 833 831 fwrite(ptr, size, 1, data->set.err); -
trunk/src/libs/xpcom18a4/python/Makefile.kmk
r86647 r86650 206 206 # Unversioned Python 2.x. 207 207 # 208 # Note! No python LIBS here as we don't want to depend on any specific python 209 # version in a generic extension module. 210 # 211 if (defined(VBOX_PYTHON27_INC) || defined(VBOX_PYTHON26_INC)) && "$(KBUILD_TARGET)" != "darwin" 212 208 if defined(VBOX_PYTHON27_INC) || defined(VBOX_PYTHON26_INC) 213 209 DLLS += VBoxPython2 214 210 VBoxPython2_EXTENDS = VBoxPythonBase … … 222 218 if defined(VBOX_PYTHON26_INC) 223 219 VBoxPython2_INCS = $(VBOX_PYTHON26_INC) 220 ifn1of ($(KBUILD_TARGET), linux) 221 VBoxPython2_LIBS = $(VBOX_PYTHON26_LIB) 222 endif 224 223 else 225 224 VBoxPython2_INCS = $(VBOX_PYTHON27_INC) 226 endif 227 228 if defined(VBOX_WITH_32_ON_64_MAIN_API) && (defined(VBOX_PYTHON26LIB_X86) || defined(VBOX_PYTHON27LIB_X86)) 225 ifn1of ($(KBUILD_TARGET), linux) 226 VBoxPython2_LIBS = $(VBOX_PYTHON27_LIB) 227 endif 228 endif 229 endif 230 231 if defined(VBOX_WITH_32_ON_64_MAIN_API) && (defined(VBOX_PYTHON27_LIB_X86) || defined(VBOX_PYTHON26_INC_X86)) 229 232 DLLS += VBoxPython2_x86 230 233 VBoxPython2_x86_EXTENDS = VBoxPythonBase_x86 231 234 VBoxPython2_x86_EXTENDS_BY = appending 232 VBoxPython2_x86_DEFS = VBOX_PYXPCOM_MAJOR_VERSIONED 233 235 VBoxPython2_x86_DEFS = VBOX_PYXPCOM_MAJOR_VERSIONED $(VBoxPythonBase_x86_DEFS) 236 ifdef KMK_WITH_VERSION_COMPARE 234 237 VBoxPython2_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" vle "10.7",OSX107,-x86) 235 238 else 236 239 VBoxPython2_x86_TEMPLATE = XPCOM$(if-expr "$(KBUILD_TARGET)" == "darwin" && "$(VBOX_DEF_MACOSX_VERSION_MIN)" <= "10.7" && "$(length-var VBOX_DEF_MACOSX_VERSION_MIN)" == "4",OSX107,-x86) 240 endif 241 if defined(VBOX_PYTHON26LIB_X86) 242 VBoxPython2_x86_INCS = $(VBOX_PYTHON26_INC) 243 ifn1of ($(KBUILD_TARGET), linux) 244 VBoxPython2_x86_LIBS = $(VBOX_PYTHON26_LIB_X86) 237 245 endif 238 if defined(VBOX_PYTHON26LIB_X86) 239 VBoxPython2_x86_INCS = $(VBOX_PYTHON26_INC) 240 else 246 else 241 247 VBoxPython2_x86_INCS = $(VBOX_PYTHON27_INC) 248 ifn1of ($(KBUILD_TARGET), linux) 249 VBoxPython2_x86_LIBS = $(VBOX_PYTHON27_LIB_X86) 242 250 endif 243 251 endif 244 245 endif # (defined(VBOX_PYTHON27_INC) || defined(VBOX_PYTHON26_INC)) && "$(KBUILD_TARGET)" != "darwin" 252 endif 246 253 247 254
Note:
See TracChangeset
for help on using the changeset viewer.