summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add API method to obtain Libvirt test resource from test *.jar filedmsd-v3.10Manuel Bentele2021-05-251-0/+7
|
* Build and package tests and their resources as external *.jar fileManuel Bentele2021-05-251-0/+12
|
* Do not compare absolute non-static paths in Libvirt unit testManuel Bentele2021-05-212-1/+20
|
* Remove error printing in low level XML helper methodManuel Bentele2021-05-211-4/+9
| | | | | | | | The needless error printing during parsing of a XML document can be removed since an failed attempt to parse the document will be reported outside of the XML helper method. Fixes: #3855 (partly)
* Rename 'vm.disk' package to 'virtualization.disk'Manuel Bentele2021-05-1919-28/+28
|
* Merge branch 'feature/qemu-integration'Manuel Bentele2021-05-19119-1395/+71404
|\
| * Implements XML schema validation for VirtualBox configurationsManuel Bentele2021-05-1213-1568/+425Star
| |
| * Fixes the original XML schemas for VirtualBox configurationsManuel Bentele2021-05-124-3/+149
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original XML schemas for VirtualBox configurations do not prescribe all necessary XML elements and attributes. This patch extends the original schemas and specifies some of the missing XML elements and attributes shown in the following: Missing XML elements: Missing XML attributes: APIC Accelerate3D Autostart allowTracingToAccessVM CloudNetwork authLibrary CloudNetworks autoMountPoint Condition autostartDatabasePath Config autostop Cpu backend CPUCount codec CpuTree config CustomHardDisk CpuIdPortabilityLevel Debugging CpuProfile Default defaultFrontend Frontend defaultHardDiskFolder HardDiskAttachment defaultVRDELibrary HardDiskAttachments delay HardwareVirtExUseNativeApi Description HardwareVirtExVirtVmsaveVmload exclusive HostInterface executionCap IBPBOn file Iommu fileTransfersEnabled ISCSIHardDisk fixedAddress L1DFlushOn forcedOptions Lpt HWVirtExEnabled MDSClearOn icon NestedHWVirt inclusive SATAController Instance SpecCtrl LoggingLevel SpecCtrlByHost lun Tracing netAddress TripleFaultReset notificationPatterns Uart PCIBus USBDeviceSource PCIDevice USBDeviceSources PCIFunction VHDImage processPriority VideoRecording productid VirtualBox profile VirtualDiskImage proxyUrl VMDKImage remoteDisplayAuthLibrary Webcam scheduling X2APIC secDefaultLeaseTime secMaxLeaseTime secMinLeaseTime serialnumber snapshotFolder stateFile statisticsUpdateInterval StatisticsUpdateInterval subleaf suppressedOptions target uartType userName VBoxUpdateCount VBoxUpdateEnabled VBoxUpdateFrequency VBoxUpdateLastCheckDate VBoxUpdateTarget vendorid vmentry vmexit VMProcessPriority VRDEExtPack
| * Add validation schema from VirtualBox 6.1.22 for v1.18 configurationsManuel Bentele2021-05-101-0/+1503
| |
| * Add validation schema from VirtualBox 6.0.24 for v1.17 configurationsManuel Bentele2021-05-101-0/+1483
| |
| * Add validation schema from VirtualBox 5.2.44 for v1.16 configurationsManuel Bentele2021-05-101-0/+1483
| |
| * Add validation schema from VirtualBox 5.0.40 for v1.15 configurationsManuel Bentele2021-05-101-0/+1311
| |
| * Fix HDD detection in VirtualBox configurations newer or equal than v1.17Manuel Bentele2021-05-1010-4/+605
| |
| * Optimize OS detection for Libvirt/QEMU virtualization configurationsManuel Bentele2021-05-062-2/+108
| |
| * Update XML schema for VirtualBox virtualization configurationsManuel Bentele2021-05-053-44/+59
| |
| * Add OS detection for Libvirt/QEMU virtualization configurationsManuel Bentele2021-05-0518-85/+929
| |
| * Add libosinfo database and validation schema files for LibvirtManuel Bentele2021-05-042-0/+52441
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The libosinfo database consists of a single XML file aggreated from the original libosinfo database which is split accross multiple XML files. The aggregation is achieved by the following commands where the original data base files are located under /usr/share/osinfo/os: FILES=(/usr/share/osinfo/os/**/*.xml) START="$(sed -n '/^<libosinfo version=/,/>$/p' "${FILES[0]}")" END="</libosinfo>" for FILE in "${FILES[@]}"; do CONTENT+="$(sed -n '/<os/,/<\/os>/p' "${FILE}")"$'\n' done echo -e "${START}\n${CONTENT}${END}" > \ src/main/resources/libvirt/libosinfo/xml/osinfo.xml
| * Fix errors in Javadoc commentsManuel Bentele2021-04-3026-84/+109
| |
| * Add unit tests for transformation logic (dozmod-server --> stateless client)Manuel Bentele2021-04-3011-6/+400
| |
| * Add unit tests for transformation logic (dozmod-server --> dozmod-client)Manuel Bentele2021-04-3013-79/+512
| |
| * Add unit tests for transformation logic (dozmod-client --> dozmod-server)Manuel Bentele2021-04-2910-0/+558
| |
| * Document configuration transformation logics and their data containersManuel Bentele2021-04-287-0/+266
| |
| * Log failed instanciations of virtualization config files as debug infoManuel Bentele2021-04-261-8/+8
| |
| * Fix error while parsing Libvirt XML document from StringManuel Bentele2021-04-261-10/+2Star
| |
| * Add supported virtualizer versions for Libvirt/QEMUManuel Bentele2021-04-267-5/+550
| |
| * Refactors and abstracts version information in config logic and disk imageManuel Bentele2021-04-2325-374/+482
| |
| * Encapsulate transformation logic for virtualization configurationsManuel Bentele2021-04-2018-119/+506
| |
| * Add config file name extensions to virtualizer representationsManuel Bentele2021-04-165-5/+45
| |
| * Rename VmMetaData classesManuel Bentele2021-04-1613-350/+352
| |
| * Move VmMetaData classes to new virtualization config directoriesManuel Bentele2021-04-1513-29/+45
| |
| * Add generic transformation library to transform configsManuel Bentele2021-04-156-0/+343
| |
| * Add representation of used virtualization systemsManuel Bentele2021-04-155-0/+233
| |
| * Adjusts network bridge names for Libvirt networkingManuel Bentele2021-04-122-21/+21
| |
| * Fix issue in VmMetaData factory method wrt. QemuMetaData classManuel Bentele2021-04-124-22/+53
| |
| * Removed invalid symbol in function call syntaxManuel Bentele2021-04-121-19/+18Star
| |
| * Fix issues in filtering sources of Libvirt network interfacesManuel Bentele2021-03-263-23/+88
| |
| * Always filter device paths in QEMU VM config (privacy filters)Manuel Bentele2021-03-261-3/+4
| |
| * Do not remove UUID if QEMU VM config is requested by stateless clientManuel Bentele2021-03-261-3/+0Star
| |
| * Fix issues related to a XPath query used in the Libvirt device lookupManuel Bentele2021-03-251-6/+8
| | | | | | | | | | | | | | | | | | | | | | The issue occurs if a Libvirt device lookup via getDevices() takes place after a device node was removed. After the removal, a bunch of empty XML text nodes remain which leads to problems in the underlying XML element nodes. Those nodes are queried with the help of relative XPath expressions which depend on valid XML element nodes. This patch restricts queries of underlying child nodes to valid XML element nodes avoiding the occurence of XPath runtime exceptions.
| * Add shared folder support to Libvirt domain XML documentsManuel Bentele2021-03-244-0/+329
| |
| * Add parallel and serial devices to Libvirt domain XML documentsManuel Bentele2021-03-245-1/+389
| |
| * Add MAC address for network interfaces in Libvirt domain XML documentsManuel Bentele2021-03-241-3/+31
| |
| * Add support for emulator binary in Libvirt domain XML documentsManuel Bentele2021-03-232-0/+37
| |
| * Add implementation of Libvirt XML capabilities documentsManuel Bentele2021-03-1917-0/+6999
| |
* | Remove needless reference to internal/private Maven repositoryManuel Bentele2021-05-191-13/+0Star
| | | | | | | | | | | | The reference to the internal/private Maven repository for prebuild dependencies can be removed since all used dependencies are externally available.
* | Fix URL to the project's website in Maven configurationManuel Bentele2021-05-191-1/+1
| |
* | [Transfer] Better error messages and handling for downloadssuite-2.0Simon Rettberg2021-04-211-9/+5Star
| |
* | [thrift] Add allowStudentDownload to SatelliteConfigSimon Rettberg2021-04-212-5/+107
| |
* | [vm/DiskImage] Remove File constructor, make sure open file doesn't leakSimon Rettberg2021-04-144-89/+38Star
| |
* | [Feature] Adding Docker_Container as Featureralph isenmann2021-03-181-1/+5
|/